diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 238f93661..1cc4ce81d 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -82,19 +82,19 @@ class Activity { } static function fetch_profile($x) { - $r = q("select * from xchan where xchan_url like '%s' limit 1", - dbesc($x['id'] . '/%') + $r = q("select * from xchan left join hubloc on xchan_hash = hubloc_hash where hubloc_id_url = '%s' limit 1", + dbesc($x['id']) ); if (! $r) { $r = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($x['id']) ); - } + } if (! $r) { return []; } - + return self::encode_person($r[0],false); } @@ -288,6 +288,10 @@ class Activity { $ret['commentPolicy'] = map_scope(PermissionLimits::Get($i['uid'],'post_comments')); } + if (intval($i['item_private']) === 2) { + $ret['directMessage'] = true; + } + if (array_key_exists('comments_closed',$i) && $i['comments_closed'] !== EMPTY_STR && $i['comments_closed'] !== NULL_DATE) { if($ret['commentPolicy']) { $ret['commentPolicy'] .= ' '; @@ -1877,16 +1881,24 @@ class Activity { } $obj_actor = ((isset($act->obj['actor'])) ? $act->obj['actor'] : $act->get_actor('attributedTo', $act->obj)); + + // if the object is an actor it is not really a response activity, reset a couple of things + + if (ActivityStreams::is_an_actor($act->obj['type'])) { + $obj_actor = $act->actor; + $s['parent_mid'] = $s['mid']; + } + // ensure we store the original actor self::actor_store($obj_actor['id'],$obj_actor); $mention = self::get_actor_bbmention($obj_actor['id']); if ($act->type === 'Like') { - $content['content'] = sprintf( t('Likes %1$s\'s %2$s'),$mention,$act->obj['type']) . EOL . EOL . $content['content']; + $content['content'] = sprintf( t('Likes %1$s\'s %2$s'),$mention, ((ActivityStreams::is_an_actor($act->obj['type'])) ? t('Profile') : $act->obj['type'])) . EOL . EOL . $content['content']; } if ($act->type === 'Dislike') { - $content['content'] = sprintf( t('Doesn\'t like %1$s\'s %2$s'),$mention,$act->obj['type']) . EOL . EOL . $content['content']; + $content['content'] = sprintf( t('Doesn\'t like %1$s\'s %2$s'),$mention, ((ActivityStreams::is_an_actor($act->obj['type'])) ? t('Profile') : $act->obj['type'])) . EOL . EOL . $content['content']; } if ($act->type === 'Accept' && $act->obj['type'] === 'Event' ) { $content['content'] = sprintf( t('Will attend %1$s\'s %2$s'),$mention,$act->obj['type']) . EOL . EOL . $content['content']; @@ -1932,6 +1944,8 @@ class Activity { $s['item_deleted'] = 1; } + + $s['verb'] = self::activity_mapper($act->type); @@ -2170,6 +2184,11 @@ class Activity { if ($act->recips && (! in_array(ACTIVITY_PUBLIC_INBOX,$act->recips))) $s['item_private'] = 1; + + if (array_key_exists('directMessage',$act->obj) && intval($act->obj['directMessage'])) { + $s['item_private'] = 2; + } + set_iconfig($s,'activitypub','recips',$act->raw_recips); if ($parent) { @@ -2314,30 +2333,35 @@ class Activity { intval($item['uid']) ); if (! $p) { - $a = false; - if (PConfig::Get($channel['channel_id'],'system','hyperdrive',true) || $act->type === 'Announce') { - $a = (($fetch_parents) ? self::fetch_and_store_parents($channel,$observer_hash,$act,$item) : false); - } - if ($a) { - $p = q("select parent_mid from item where mid = '%s' and uid = %d limit 1", - dbesc($item['parent_mid']), - intval($item['uid']) - ); + if (defined('NOMADIC')) { + return; } else { - - // if no parent was fetched, turn into a top-level post - - // @TODO we maybe could accept these is we formatted the body correctly with share_bb() - // or at least provided a link to the object - if (in_array($act->type,[ 'Like','Dislike','Announce' ])) { - return; + $a = false; + if (PConfig::Get($channel['channel_id'],'system','hyperdrive',true) || $act->type === 'Announce') { + $a = (($fetch_parents) ? self::fetch_and_store_parents($channel,$observer_hash,$act,$item) : false); + } + if ($a) { + $p = q("select parent_mid from item where mid = '%s' and uid = %d limit 1", + dbesc($item['parent_mid']), + intval($item['uid']) + ); + } + else { + // if no parent was fetched, turn into a top-level post + + // @TODO we maybe could accept these is we formatted the body correctly with share_bb() + // or at least provided a link to the object + if (in_array($act->type,[ 'Like','Dislike','Announce' ])) { + return; + } + // turn into a top level post + $item['parent_mid'] = $item['mid']; + $item['thr_parent'] = $item['mid']; } - // turn into a top level post - $item['parent_mid'] = $item['mid']; - $item['thr_parent'] = $item['mid']; } } + if ($p[0]['parent_mid'] !== $item['parent_mid']) { $item['thr_parent'] = $item['parent_mid']; } diff --git a/Zotlabs/Lib/Apps.php b/Zotlabs/Lib/Apps.php index b6f5b7cf8..ddbf48a18 100644 --- a/Zotlabs/Lib/Apps.php +++ b/Zotlabs/Lib/Apps.php @@ -331,6 +331,7 @@ class Apps { 'Suggest Channels' => t('Suggest Channels'), 'Login' => t('Login'), 'Channel Manager' => t('Channel Manager'), + 'Notes' => t('Notes'), 'Network' => t('Stream'), 'Settings' => t('Settings'), 'Files' => t('Files'), diff --git a/Zotlabs/Lib/Libsync.php b/Zotlabs/Lib/Libsync.php index 3ef724760..9f400b38e 100644 --- a/Zotlabs/Lib/Libsync.php +++ b/Zotlabs/Lib/Libsync.php @@ -399,6 +399,9 @@ class Libsync { } + $columns = db_columns('channel'); + + $disallowed = [ 'channel_id', 'channel_account_id', 'channel_primary', 'channel_prvkey', 'channel_address', 'channel_notifyflags', 'channel_removed', 'channel_deleted', @@ -409,17 +412,15 @@ class Libsync { 'channel_a_delegate', 'channel_moved' ]; - $clean = array(); foreach($arr['channel'] as $k => $v) { - if(in_array($k,$disallowed)) + if (in_array($k,$disallowed)) { continue; - $clean[$k] = $v; - } - if(count($clean)) { - foreach($clean as $k => $v) { - $r = dbq("UPDATE channel set " . dbesc($k) . " = '" . dbesc($v) - . "' where channel_id = " . intval($channel['channel_id']) ); } + if (! in_array($k,$columns)) { + continue; + } + $r = dbq("UPDATE channel set " . dbesc($k) . " = '" . dbesc($v) + . "' where channel_id = " . intval($channel['channel_id']) ); } } diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index d9b3a7768..4917e3a85 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1289,8 +1289,8 @@ class Libzot { $arr['owner_xchan'] = $env['sender']; } - if ($private) { - $arr['item_private'] = true; + if ($private && (! intval($arr['item_private']))) { + $arr['item_private'] = 1; } if ($arr['mid'] === $arr['parent_mid']) { if (is_array($AS->obj) && array_key_exists('commentPolicy',$AS->obj)) { diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php index cea628750..3554726bc 100644 --- a/Zotlabs/Lib/Libzotdir.php +++ b/Zotlabs/Lib/Libzotdir.php @@ -148,7 +148,7 @@ class Libzotdir { $current_order = (($_REQUEST['order']) ? $_REQUEST['order'] : $directory_sort_order); $suggest = (($_REQUEST['suggest']) ? '&suggest=' . $_REQUEST['suggest'] : ''); - $url = 'directory?f='; + $url = 'directory?f=&'; $tmp = array_merge($_GET,$_POST); unset($tmp['suggest']); diff --git a/Zotlabs/Lib/System.php b/Zotlabs/Lib/System.php index c285d9bc6..015291565 100644 --- a/Zotlabs/Lib/System.php +++ b/Zotlabs/Lib/System.php @@ -68,7 +68,7 @@ class System { static public function get_project_link() { if(is_array(App::$config) && is_array(App::$config['system']) && App::$config['system']['project_link']) return App::$config['system']['project_link']; - return 'https://framagit.org/zot/zap'; + return 'https://zotlabs.com/zap'; } static public function get_project_srclink() { diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index a1374ed05..0b41631c6 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -116,7 +116,7 @@ class ThreadItem { // logger('parent: ' . $item['thr_parent']); } - $lock = ((($item['item_private'] == 1) || (($item['uid'] == local_channel()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) + $lock = (((intval($item['item_private'])) || (($item['uid'] == local_channel()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])))) ? t('Private Message') : false); @@ -132,7 +132,7 @@ class ThreadItem { $privacy_warning = true; } - if(($item['item_private'] == 1) && ($item['owner']['xchan_network'] === 'activitypub')) { + if(intval($item['item_private']) && ($item['owner']['xchan_network'] === 'activitypub')) { $recips = get_iconfig($item['parent'], 'activitypub', 'recips'); diff --git a/Zotlabs/Module/Activity.php b/Zotlabs/Module/Activity.php index 04eec7e76..68d8b883c 100644 --- a/Zotlabs/Module/Activity.php +++ b/Zotlabs/Module/Activity.php @@ -1,28 +1,32 @@ [ + $x = array_merge( ['@context' => [ ACTIVITYSTREAMS_JSONLD_REV, 'https://w3id.org/security/v1', z_root() . ZOT_APSCHEMA_REV - ]], ZActivity::encode_activity($items[0])); + ]], ZlibActivity::encode_activity($items[0])); diff --git a/Zotlabs/Module/Admin/Accounts.php b/Zotlabs/Module/Admin/Accounts.php index 0c7e089be..dabad21d8 100644 --- a/Zotlabs/Module/Admin/Accounts.php +++ b/Zotlabs/Module/Admin/Accounts.php @@ -2,7 +2,7 @@ namespace Zotlabs\Module\Admin; - +use App; class Accounts { @@ -23,19 +23,20 @@ class Accounts { check_form_security_token_redirectOnErr('/admin/accounts', 'admin_accounts'); - // change to switch structure? + // account block/unblock button was submitted if (x($_POST, 'page_accounts_block')) { for ($i = 0; $i < count($users); $i++) { // if account is blocked remove blocked bit-flag, otherwise add blocked bit-flag $op = ($blocked[$i]) ? '& ~' : '| '; - q("UPDATE account SET account_flags = (account_flags $op%d) WHERE account_id = %d", + q("UPDATE account SET account_flags = (account_flags $op %d) WHERE account_id = %d", intval(ACCOUNT_BLOCKED), intval($users[$i]) ); } notice( sprintf( tt("%s account blocked/unblocked", "%s account blocked/unblocked", count($users)), count($users)) ); } + // account delete button was submitted if (x($_POST, 'page_accounts_delete')) { foreach ($users as $uid){ @@ -43,12 +44,14 @@ class Accounts { } notice( sprintf( tt("%s account deleted", "%s accounts deleted", count($users)), count($users)) ); } + // registration approved button was submitted if (x($_POST, 'page_accounts_approve')) { foreach ($pending as $hash) { account_allow($hash); } } + // registration deny button was submitted if (x($_POST, 'page_accounts_deny')) { foreach ($pending as $hash) { @@ -83,7 +86,7 @@ class Accounts { check_form_security_token_redirectOnErr('/admin/accounts', 'admin_accounts', 't'); - switch (argv(2)){ + switch (argv(2)) { case 'delete': // delete user account_remove($uid,true,false); @@ -99,9 +102,9 @@ class Accounts { notice( sprintf( t("Account '%s' blocked") , $account[0]['account_email']) . EOL); break; case 'unblock': - q("UPDATE account SET account_flags = ( account_flags & ~%d ) WHERE account_id = %d", - intval(ACCOUNT_BLOCKED), - intval($uid) + q("UPDATE account SET account_flags = ( account_flags & ~ %d ) WHERE account_id = %d", + intval(ACCOUNT_BLOCKED), + intval($uid) ); notice( sprintf( t("Account '%s' unblocked"), $account[0]['account_email']) . EOL); @@ -112,7 +115,7 @@ class Accounts { } /* get pending */ - $pending = q("SELECT account.*, register.hash from account left join register on account_id = register.uid where (account_flags & %d )>0 ", + $pending = q("SELECT account.*, register.hash from account left join register on account_id = register.uid where (account_flags & %d ) != 0 ", intval(ACCOUNT_PENDING) ); @@ -120,17 +123,18 @@ class Accounts { $total = q("SELECT count(*) as total FROM account"); if (count($total)) { - \App::set_pager_total($total[0]['total']); - \App::set_pager_itemspage(100); + App::set_pager_total($total[0]['total']); + App::set_pager_itemspage(100); } $serviceclass = (($_REQUEST['class']) ? " and account_service_class = '" . dbesc($_REQUEST['class']) . "' " : ''); $key = (($_REQUEST['key']) ? dbesc($_REQUEST['key']) : 'account_id'); $dir = 'asc'; - if(array_key_exists('dir',$_REQUEST)) + if (array_key_exists('dir',$_REQUEST)) { $dir = ((intval($_REQUEST['dir'])) ? 'asc' : 'desc'); - + } + $base = z_root() . '/admin/accounts?f='; $odir = (($dir === 'asc') ? '0' : '1'); @@ -140,29 +144,25 @@ class Accounts { intval(ACCOUNT_BLOCKED), db_concat('ch.channel_address', ' '), intval(ACCOUNT_BLOCKED | ACCOUNT_PENDING), - intval(\App::$pager['itemspage']), - intval(\App::$pager['start']) + intval(App::$pager['itemspage']), + intval(App::$pager['start']) ); - - // function _setup_users($e){ - // $accounts = Array( - // t('Normal Account'), - // t('Soapbox Account'), - // t('Community/Celebrity Account'), - // t('Automatic Friend Account') - // ); - - // $e['page_flags'] = $accounts[$e['page-flags']]; - // $e['register_date'] = relative_date($e['register_date']); - // $e['login_date'] = relative_date($e['login_date']); - // $e['lastitem_date'] = relative_date($e['lastitem_date']); - // return $e; - // } - // $users = array_map("_setup_users", $users); - - $t = get_markup_template('admin_accounts.tpl'); - $o = replace_macros($t, array( - // strings // + + if ($users) { + for($x = 0; $x < count($users); $x ++) { + $channel_arr = explode(' ',$users[$x]['channels']); + if ($channel_arr) { + $linked = []; + foreach ( $channel_arr as $c) { + $linked[] = '' . $c . ''; + } + $users[$x]['channels'] = implode(' ',$linked); + } + } + } + + $t = + $o = replace_macros(get_markup_template('admin_accounts.tpl'), [ '$title' => t('Administration'), '$page' => t('Accounts'), '$submit' => t('Submit'), @@ -178,30 +178,25 @@ class Accounts { '$odir' => $odir, '$base' => $base, '$h_users' => t('Accounts'), - '$th_users' => array( + '$th_users' => [ [ t('ID'), 'account_id' ], [ t('Email'), 'account_email' ], [ t('All Channels'), 'channels' ], [ t('Register date'), 'account_created' ], [ t('Last login'), 'account_lastlog' ], [ t('Expires'), 'account_expires' ], - [ t('Service Class'), 'account_service_class'] ), - + [ t('Service Class'), 'account_service_class'] + ], '$confirm_delete_multi' => t('Selected accounts will be deleted!\n\nEverything these accounts had posted on this site will be permanently deleted!\n\nAre you sure?'), '$confirm_delete' => t('The account {0} will be deleted!\n\nEverything this account has posted on this site will be permanently deleted!\n\nAre you sure?'), - '$form_security_token' => get_form_security_token("admin_accounts"), - - // values // '$baseurl' => z_root(), - '$pending' => $pending, '$users' => $users, - )); + ]); + $o .= paginate($a); return $o; } - - } diff --git a/Zotlabs/Module/Admin/Channels.php b/Zotlabs/Module/Admin/Channels.php index e0f26112d..d3f1d3fe9 100644 --- a/Zotlabs/Module/Admin/Channels.php +++ b/Zotlabs/Module/Admin/Channels.php @@ -2,6 +2,8 @@ namespace Zotlabs\Module\Admin; +use Zotlabs\Daemon\Master; + /** * @brief Admin Module for Channels. * @@ -26,7 +28,7 @@ class Channels { intval(PAGE_CENSORED), intval( $uid ) ); - \Zotlabs\Daemon\Master::Summon(array('Directory', $uid, 'nopush')); + Master::Summon( [ 'Directory', $uid, 'nopush' ] ); } notice( sprintf( tt("%s channel censored/uncensored", "%s channels censored/uncensored", count($channels)), count($channels)) ); } @@ -82,7 +84,7 @@ class Channels { intval($pflags), intval( $uid ) ); - \Zotlabs\Daemon\Master::Summon(array('Directory',$uid,'nopush')); + Master::Summon( [ 'Directory', $uid, 'nopush' ]); notice( sprintf( (($pflags & PAGE_CENSORED) ? t("Channel '%s' censored"): t("Channel '%s' uncensored")) , $channel[0]['channel_name'] . ' (' . $channel[0]['channel_address'] . ')' ) . EOL); }; break; diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 88d002a76..a4278cb83 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -177,10 +177,10 @@ class Site { /* Installed langs */ $lang_choices = array(); - $langs = glob('view/*/hstrings.php'); + $langs = glob('view/*/strings.php'); if (is_array($langs) && count($langs)) { - if (! in_array('view/en/hstrings.php',$langs)) + if (! in_array('view/en/strings.php',$langs)) $langs[] = 'view/en/'; asort($langs); foreach ($langs as $l) { diff --git a/Zotlabs/Module/Appman.php b/Zotlabs/Module/Appman.php index 50de90ac2..eecf1f95b 100644 --- a/Zotlabs/Module/Appman.php +++ b/Zotlabs/Module/Appman.php @@ -1,116 +1,113 @@ - intval($_REQUEST['uid']), - 'url' => escape_tags($_REQUEST['url']), - 'guid' => escape_tags($_REQUEST['guid']), - 'author' => escape_tags($_REQUEST['author']), - 'addr' => escape_tags($_REQUEST['addr']), - 'name' => escape_tags($_REQUEST['name']), - 'desc' => escape_tags($_REQUEST['desc']), - 'photo' => escape_tags($_REQUEST['photo']), - 'version' => escape_tags($_REQUEST['version']), - 'price' => escape_tags($_REQUEST['price']), - 'page' => escape_tags($_REQUEST['page']), - 'requires' => escape_tags($_REQUEST['requires']), - 'system' => intval($_REQUEST['system']), - 'plugin' => escape_tags($_REQUEST['plugin']), - 'sig' => escape_tags($_REQUEST['sig']), + if ($_POST['url']) { + $arr = [ + 'uid' => intval($_REQUEST['uid']), + 'url' => escape_tags($_REQUEST['url']), + 'guid' => escape_tags($_REQUEST['guid']), + 'author' => escape_tags($_REQUEST['author']), + 'addr' => escape_tags($_REQUEST['addr']), + 'name' => escape_tags($_REQUEST['name']), + 'desc' => escape_tags($_REQUEST['desc']), + 'photo' => escape_tags($_REQUEST['photo']), + 'version' => escape_tags($_REQUEST['version']), + 'price' => escape_tags($_REQUEST['price']), + 'page' => escape_tags($_REQUEST['sellpage']), // do not use 'page' as a request variable here as it conflicts with pagination + 'requires' => escape_tags($_REQUEST['requires']), + 'system' => intval($_REQUEST['system']), + 'plugin' => escape_tags($_REQUEST['plugin']), + 'sig' => escape_tags($_REQUEST['sig']), 'categories' => escape_tags($_REQUEST['categories']) - ); + ]; - $_REQUEST['appid'] = Zlib\Apps::app_install(local_channel(),$arr); + $_REQUEST['appid'] = Apps::app_install(local_channel(),$arr); - if(Zlib\Apps::app_installed(local_channel(),$arr)) + if (Apps::app_installed(local_channel(),$arr)) { info( t('App installed.') . EOL); + } goaway(z_root() . '/apps'); - return; //not reached } - $papp = Zlib\Apps::app_decode($_POST['papp']); + $papp = Apps::app_decode($_POST['papp']); - if(! is_array($papp)) { + if (! is_array($papp)) { notice( t('Malformed app.') . EOL); return; } - if($_POST['install']) { - Zlib\Apps::app_install(local_channel(),$papp); - if(Zlib\Apps::app_installed(local_channel(),$papp)) + if ($_POST['install']) { + Apps::app_install(local_channel(),$papp); + if (Apps::app_installed(local_channel(),$papp)) info( t('App installed.') . EOL); } - if($_POST['delete']) { - Zlib\Apps::app_destroy(local_channel(),$papp); + if ($_POST['delete']) { + Apps::app_destroy(local_channel(),$papp); } - if($_POST['edit']) { + if ($_POST['edit']) { return; } - if($_POST['feature']) { - Zlib\Apps::app_feature(local_channel(), $papp, $_POST['feature']); + if ($_POST['feature']) { + Apps::app_feature(local_channel(), $papp, $_POST['feature']); } - if($_POST['pin']) { - Zlib\Apps::app_feature(local_channel(), $papp, $_POST['pin']); + if ($_POST['pin']) { + Apps::app_feature(local_channel(), $papp, $_POST['pin']); } - if($_SESSION['return_url']) + if ($_SESSION['return_url']) { goaway(z_root() . '/' . $_SESSION['return_url']); - + } + goaway(z_root() . '/apps'); - - } function get() { - if(! local_channel()) { + if (! local_channel()) { notice( t('Permission denied.') . EOL); return; } - $channel = \App::get_channel(); + $channel = App::get_channel(); - if(argc() > 3) { + if (argc() > 3) { if(argv(2) === 'moveup') { - Zlib\Apps::moveup(local_channel(),argv(1),argv(3)); + Apps::moveup(local_channel(),argv(1),argv(3)); } if(argv(2) === 'movedown') { - Zlib\Apps::movedown(local_channel(),argv(1),argv(3)); + Apps::movedown(local_channel(),argv(1),argv(3)); } goaway(z_root() . '/apporder'); } - - - $app = null; $embed = null; - if($_REQUEST['appid']) { + if ($_REQUEST['appid']) { $r = q("select * from app where app_id = '%s' and app_channel = %d limit 1", dbesc($_REQUEST['appid']), dbesc(local_channel()) ); - if($r) { + if ($r) { $app = $r[0]; $term = q("select * from term where otype = %d and oid = %d and uid = %d", @@ -118,41 +115,34 @@ class Appman extends \Zotlabs\Web\Controller { intval($r[0]['id']), intval(local_channel()) ); - if($term) { - $app['categories'] = ''; - foreach($term as $t) { - if($app['categories']) - $app['categories'] .= ','; - $app['categories'] .= $t['term']; - } + if ($term) { + $app['categories'] = array_elm_to_str($term,'term'); } } - $embed = array('embed', t('Embed code'), Zlib\Apps::app_encode($app,true),'', 'onclick="this.select();"'); - + $embed = [ 'embed', t('Embed code'), Apps::app_encode($app,true), EMPTY_STR, 'onclick="this.select();"' ]; } - return replace_macros(get_markup_template('app_create.tpl'), array( - - '$banner' => (($app) ? t('Edit App') : t('Create App')), - '$app' => $app, - '$guid' => (($app) ? $app['app_id'] : ''), - '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), - '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), - '$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')), - '$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')), - '$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''), - '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : ''), t('80 x 80 pixels - optional')), - '$categories' => array('categories',t('Categories (optional, comma separated list)'),(($app) ? $app['categories'] : ''),''), - '$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''), - '$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''), - '$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''), - '$system' => (($app) ? intval($app['app_system']) : 0), - '$plugin' => (($app) ? $app['app_plugin'] : ''), - '$requires' => (($app) ? $app['app_requires'] : ''), - '$embed' => $embed, - '$submit' => t('Submit') - )); + return replace_macros(get_markup_template('app_create.tpl'), [ + '$banner' => (($app) ? t('Edit App') : t('Create App')), + '$app' => $app, + '$guid' => (($app) ? $app['app_id'] : EMPTY_STR), + '$author' => (($app) ? $app['app_author'] : $channel['channel_hash']), + '$addr' => (($app) ? $app['app_addr'] : $channel['xchan_addr']), + '$name' => [ 'name', t('Name of app'),(($app) ? $app['app_name'] : EMPTY_STR), t('Required') ], + '$url' => [ 'url', t('Location (URL) of app'),(($app) ? $app['app_url'] : EMPTY_STR), t('Required') ], + '$desc' => [ 'desc', t('Description'),(($app) ? $app['app_desc'] : EMPTY_STR), EMPTY_STR], + '$photo' => [ 'photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : EMPTY_STR), t('80 x 80 pixels - optional') ], + '$categories' => [ 'categories',t('Categories (optional, comma separated list)'),(($app) ? $app['categories'] : EMPTY_STR), EMPTY_STR ], + '$version' => [ 'version', t('Version ID'),(($app) ? $app['app_version'] : EMPTY_STR), EMPTY_STR ], + '$price' => [ 'price', t('Price of app'),(($app) ? $app['app_price'] : EMPTY_STR), EMPTY_STR ], + '$page' => [ 'sellpage', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : EMPTY_STR), EMPTY_STR ], + '$system' => (($app) ? intval($app['app_system']) : 0), + '$plugin' => (($app) ? $app['app_plugin'] : EMPTY_STR), + '$requires' => (($app) ? $app['app_requires'] : EMPTY_STR), + '$embed' => $embed, + '$submit' => t('Submit') + ]); } diff --git a/Zotlabs/Module/Apporder.php b/Zotlabs/Module/Apporder.php index eac1abc2d..59af940f4 100644 --- a/Zotlabs/Module/Apporder.php +++ b/Zotlabs/Module/Apporder.php @@ -2,53 +2,51 @@ namespace Zotlabs\Module; -use \Zotlabs\Lib as Zlib; +use Zotlabs\Web\Controller; +use Zotlabs\Lib\Apps; class Apporder extends \Zotlabs\Web\Controller { - function post() { - - } function get() { - if(! local_channel()) + if (! local_channel()) { return; + } nav_set_selected('Order Apps'); - foreach( [ 'nav_featured_app', 'nav_pinned_app' ] as $l ) { + foreach ( [ 'nav_featured_app', 'nav_pinned_app' ] as $l ) { $syslist = []; - $list = Zlib\Apps::app_list(local_channel(), false, [ $l ]); - if($list) { - foreach($list as $li) { - $syslist[] = Zlib\Apps::app_encode($li); + $list = Apps::app_list(local_channel(), false, [ $l ]); + if ($list) { + foreach ($list as $li) { + $syslist[] = Apps::app_encode($li); } } - Zlib\Apps::translate_system_apps($syslist); + Apps::translate_system_apps($syslist); usort($syslist,'Zotlabs\\Lib\\Apps::app_name_compare'); - $syslist = Zlib\Apps::app_order(local_channel(),$syslist, $l); + $syslist = Apps::app_order(local_channel(),$syslist, $l); - foreach($syslist as $app) { - if($l === 'nav_pinned_app') { - $navbar_apps[] = Zlib\Apps::app_render($app,'nav-order'); + foreach ($syslist as $app) { + if ($l === 'nav_pinned_app') { + $navbar_apps[] = Apps::app_render($app,'nav-order'); } - elseif(strpos($app['categories'],'nav_pinned_app') === false) { - $nav_apps[] = Zlib\Apps::app_render($app,'nav-order'); + elseif (strpos($app['categories'],'nav_pinned_app') === false) { + $nav_apps[] = Apps::app_render($app,'nav-order'); } } } - return replace_macros(get_markup_template('apporder.tpl'), - [ - '$header' => [t('Change Order of Pinned Navbar Apps'), t('Change Order of App Tray Apps')], - '$desc' => [t('Use arrows to move the corresponding app left (top) or right (bottom) in the navbar'), t('Use arrows to move the corresponding app up or down in the app tray')], - '$nav_apps' => $nav_apps, + return replace_macros(get_markup_template('apporder.tpl'), [ + '$header' => [ t('Change Order of Pinned Navbar Apps'), t('Change Order of App Tray Apps') ], + '$desc' => [ t('Use arrows to move the corresponding app left (top) or right (bottom) in the navbar'), + t('Use arrows to move the corresponding app up or down in the app tray') ], + '$nav_apps' => $nav_apps, '$navbar_apps' => $navbar_apps - ] - ); + ]); } } diff --git a/Zotlabs/Module/Apschema.php b/Zotlabs/Module/Apschema.php index 996e0c0ee..8e0c6a10c 100644 --- a/Zotlabs/Module/Apschema.php +++ b/Zotlabs/Module/Apschema.php @@ -23,6 +23,7 @@ class Apschema extends \Zotlabs\Web\Controller { 'eventRepeat' => 'zot:eventRepeat', 'emojiReaction' => 'zot:emojiReaction', 'expires' => 'zot:expires', + 'directMessage' => 'zot:directMessage', ] ]; diff --git a/Zotlabs/Module/Calendar.php b/Zotlabs/Module/Calendar.php index 6d39483bb..128ffff0b 100644 --- a/Zotlabs/Module/Calendar.php +++ b/Zotlabs/Module/Calendar.php @@ -429,12 +429,12 @@ class Calendar extends Controller { 'end' => $end, 'drop' => $drop, 'allDay' => $allDay, - 'title' => htmlentities($rr['summary'], ENT_COMPAT, 'UTF-8'), + 'title' => html_entity_decode($rr['summary'], ENT_COMPAT, 'UTF-8'), 'editable' => $edit ? true : false, 'item' => $rr, 'plink' => [ $rr['plink'], t('Link to source') ], - 'description' => htmlentities($rr['description'], ENT_COMPAT, 'UTF-8'), - 'location' => htmlentities($rr['location'], ENT_COMPAT, 'UTF-8'), + 'description' => htmlentities($rr['description'], ENT_COMPAT, 'UTF-8',false), + 'location' => htmlentities($rr['location'], ENT_COMPAT, 'UTF-8',false), 'allow_cid' => expand_acl($rr['allow_cid']), 'allow_gid' => expand_acl($rr['allow_gid']), 'deny_cid' => expand_acl($rr['deny_cid']), @@ -443,7 +443,7 @@ class Calendar extends Controller { ]; } } - + if ($export) { header('Content-type: text/calendar'); header('content-disposition: attachment; filename="' . t('calendar') . '-' . $channel['channel_address'] . '.ics"' ); diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index 217506582..b7c0895f1 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -440,6 +440,7 @@ class Channel extends Controller { '$nouveau' => '0', '$wall' => '1', '$fh' => '0', + '$dm' => '0', '$static' => $static, '$page' => ((App::$pager['page'] != 1) ? App::$pager['page'] : 1), '$search' => $search, diff --git a/Zotlabs/Module/Directory.php b/Zotlabs/Module/Directory.php index e52931ca7..aa2cc8a24 100644 --- a/Zotlabs/Module/Directory.php +++ b/Zotlabs/Module/Directory.php @@ -18,14 +18,13 @@ class Directory extends Controller { function init() { App::set_pager_itemspage(DIRECTORY_PAGESIZE); - if(x($_GET,'ignore') && local_channel()) { + if (x($_GET,'ignore') && local_channel()) { q("insert into xign ( uid, xchan ) values ( %d, '%s' ) ", intval(local_channel()), dbesc($_GET['ignore']) ); - Libsync::build_sync_packet(local_channel(), [ 'xign' => [ [ 'uid' => local_channel(), 'xchan' => $_GET['ignore'] ]]] ); - + Libsync::build_sync_packet(local_channel(), [ 'xign' => [ [ 'uid' => local_channel(), 'xchan' => $_GET['ignore'] ]]] ); goaway(z_root() . '/directory?f=&suggest=1'); } @@ -34,62 +33,63 @@ class Directory extends Controller { $safe_changed = false; $type_changed = false; - - - if(array_key_exists('global',$_REQUEST)) { + if (array_key_exists('global',$_REQUEST)) { $globaldir = intval($_REQUEST['global']); - if(get_config('system','localdir_hide')) { + if (get_config('system','localdir_hide')) { $globaldir = 1; } $global_changed = true; } - if($global_changed) { + if ($global_changed) { $_SESSION['globaldir'] = $globaldir; - if($observer) + if ($observer) { set_xconfig($observer,'directory','globaldir',$globaldir); + } } - if(array_key_exists('safe',$_REQUEST)) { + if (array_key_exists('safe',$_REQUEST)) { $safemode = intval($_REQUEST['safe']); $safe_changed = true; } - if($safe_changed) { + if ($safe_changed) { $_SESSION['safemode'] = $safemode; - if($observer) + if ($observer) { set_xconfig($observer,'directory','safemode',$safemode); + } } - - if(array_key_exists('type',$_REQUEST)) { + if (array_key_exists('type',$_REQUEST)) { $type = intval($_REQUEST['type']); $type_changed = true; } - if($type_changed) { + if ($type_changed) { $_SESSION['chantype'] = $type; - if($observer) + if ($observer) { set_xconfig($observer,'directory','chantype',$type); + } } } function get() { - if(observer_prohibited()) { + if (observer_prohibited()) { notice( t('Public access denied.') . EOL); return; } - - if(get_config('system','block_public_directory',false) && (! get_observer_hash())) { + + $observer = get_observer_hash(); + + if (get_config('system','block_public_directory',false) && (! $observer)) { notice( t('Public access denied.') . EOL); return; } - $observer = get_observer_hash(); - $globaldir = Libzotdir::get_directory_setting($observer, 'globaldir'); // override your personal global search pref if we're doing a navbar search of the directory - if(intval($_REQUEST['navsearch'])) + if (intval($_REQUEST['navsearch'])) { $globaldir = 1; + } $safe_mode = Libzotdir::get_directory_setting($observer, 'safemode'); @@ -98,21 +98,23 @@ class Directory extends Controller { $o = ''; nav_set_selected('Directory'); - if(x($_POST,'search')) + if (x($_POST,'search')) { $search = notags(trim($_POST['search'])); - else + } + else { $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); + } - - if(strpos($search,'=') && local_channel() && feature_enabled(local_channel(), 'advanced_dirsearch')) + if (strpos($search,'=')) { $advanced = $search; + } $keywords = (($_GET['keywords']) ? $_GET['keywords'] : ''); // Suggest channels if no search terms or keywords are given $suggest = (local_channel() && x($_REQUEST,'suggest')) ? $_REQUEST['suggest'] : ''; - if($suggest) { + if ($suggest) { // the directory options have no effect in suggestion mode @@ -120,14 +122,13 @@ class Directory extends Controller { $safe_mode = 1; $type = 0; - // only return DIRECTORY_PAGESIZE suggestions as the suggestion sorting // only works if the suggestion query and the directory query have the // same number of results $r = suggestion_query(local_channel(),get_observer_hash(),0,DIRECTORY_PAGESIZE); - if(! $r) { + if (! $r) { notice( t('No default suggestions were found.') . EOL); return; } @@ -136,14 +137,14 @@ class Directory extends Controller { $addresses = array(); $common = array(); $index = 0; - foreach($r as $rr) { + foreach ($r as $rr) { $common[$rr['xchan_addr']] = ((intval($rr['total']) > 0) ? intval($rr['total']) - 1 : 0); $addresses[$rr['xchan_addr']] = $index++; } // Build query to get info about suggested people $advanced = ''; - foreach(array_keys($addresses) as $address) { + foreach (array_keys($addresses) as $address) { $advanced .= "address=\"$address\" "; } // Remove last space in the advanced query @@ -172,76 +173,85 @@ class Directory extends Controller { } $token = get_config('system','realm_token'); - - + logger('mod_directory: URL = ' . $url, LOGGER_DEBUG); $contacts = array(); - if(local_channel()) { + if (local_channel()) { $x = q("select abook_xchan from abook where abook_channel = %d", intval(local_channel()) ); - if($x) { - foreach($x as $xx) + if ($x) { + foreach ($x as $xx) { $contacts[] = $xx['abook_xchan']; + } } } - if($url) { + if ($url) { $numtags = get_config('system','directorytags'); $kw = ((intval($numtags) > 0) ? intval($numtags) : 50); - if(get_config('system','disable_directory_keywords')) + if (get_config('system','disable_directory_keywords')) { $kw = 0; + } $query = $url . '?f=&kw=' . $kw . (($safe_mode != 1) ? '&safe=' . $safe_mode : ''); - if($token) + if ($token) { $query .= '&t=' . $token; - - if(! $globaldir) + } + + if (! $globaldir) { $query .= '&hub=' . App::get_hostname(); - - if($search) + } + if ($search) { $query .= '&name=' . urlencode($search) . '&keywords=' . urlencode($search); - if(strpos($search,'@')) + } + if (strpos($search,'@')) { $query .= '&address=' . urlencode($search); - if($keywords) + } + if ($keywords) { $query .= '&keywords=' . urlencode($keywords); - if($advanced) + } + if ($advanced) { $query .= '&query=' . urlencode($advanced); - if(! is_null($type)) + } + if (! is_null($type)) { $query .= '&type=' . intval($type); - + } $directory_sort_order = get_config('system','directory_sort_order'); - if(! $directory_sort_order) + if (! $directory_sort_order) { $directory_sort_order = 'date'; + } $sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : $directory_sort_order); - if($sort_order) + if ($sort_order) { $query .= '&order=' . urlencode($sort_order); + } - if(App::$pager['page'] != 1) + if (App::$pager['page'] != 1) { $query .= '&p=' . App::$pager['page']; + } logger('mod_directory: query: ' . $query); $x = z_fetch_url($query); // logger('directory: return from upstream: ' . print_r($x,true), LOGGER_DATA); - if($x['success']) { + if ($x['success']) { $t = 0; $j = json_decode($x['body'],true); - if($j) { + if ($j) { - if($j['results']) { + if ($j['results']) { $results = $j['results']; - if($suggest) { + if ($suggest) { // change order to "number of common friends descending" $results = self::reorder_results($results,$addresses); } @@ -250,7 +260,7 @@ class Directory extends Controller { $photo = 'thumb'; - foreach($results as $rr) { + foreach ($results as $rr) { $profile_link = chanlink_url($rr['url']); @@ -261,54 +271,52 @@ class Directory extends Controller { //$online = remote_online_status($rr['address']); $online = ''; - if(in_array($rr['hash'],$contacts)) + if (in_array($rr['hash'],$contacts)) { $connect_link = ''; + } $location = ''; - if(strlen($rr['locale'])) + if (strlen($rr['locale'])) { $location .= $rr['locale']; - if(strlen($rr['region'])) { - if(strlen($rr['locale'])) + } + if (strlen($rr['region'])) { + if (strlen($rr['locale'])) { $location .= ', '; + } $location .= $rr['region']; } - if(strlen($rr['country'])) { - if(strlen($location)) + if (strlen($rr['country'])) { + if (strlen($location)) { $location .= ', '; + } $location .= $rr['country']; } $age = ''; - if(strlen($rr['birthday'])) { - if(($years = age($rr['birthday'],'UTC','')) > 0) + if (strlen($rr['birthday'])) { + if (($years = age($rr['birthday'],'UTC','')) > 0) { $age = $years; + } } $page_type = ''; $rating_enabled = get_config('system','rating_enabled'); - if($rr['total_ratings'] && $rating_enabled) + if ($rr['total_ratings'] && $rating_enabled) { $total_ratings = sprintf( tt("%d rating", "%d ratings", $rr['total_ratings']), $rr['total_ratings']); - else + } + else { $total_ratings = ''; + } $profile = $rr; - if ((x($profile,'locale') == 1) - || (x($profile,'region') == 1) - || (x($profile,'postcode') == 1) - || (x($profile,'country') == 1)) - $gender = ((x($profile,'gender') == 1) ? t('Gender: ') . $profile['gender']: False); - - $marital = ((x($profile,'marital') == 1) ? t('Status: ') . $profile['marital']: False); - + $marital = ((x($profile,'marital') == 1) ? t('Status: ') . $profile['marital']: False); $homepage = ((x($profile,'homepage') == 1) ? t('Homepage: ') : False); - $homepageurl = ((x($profile,'homepage') == 1) ? html2plain($profile['homepage']) : ''); - + $homepageurl = ((x($profile,'homepage') == 1) ? html2plain($profile['homepage']) : ''); $hometown = ((x($profile,'hometown') == 1) ? html2plain($profile['hometown']) : False); - $about = ((x($profile,'about') == 1) ? zidify_links(bbcode($profile['about'])) : False); if ($about && $safe_mode) { $about = html2plain($about); @@ -316,81 +324,82 @@ class Directory extends Controller { $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : ''); - $out = ''; - if($keywords) { + if ($keywords) { $keywords = str_replace(',',' ', $keywords); $keywords = str_replace(' ',' ', $keywords); $karr = explode(' ', $keywords); - if($karr) { - if(local_channel()) { + if ($karr) { + if (local_channel()) { $r = q("select keywords from profile where uid = %d and is_default = 1 limit 1", intval(local_channel()) ); - if($r) { + if ($r) { $keywords = str_replace(',',' ', $r[0]['keywords']); $keywords = str_replace(' ',' ', $keywords); $marr = explode(' ', $keywords); } } - foreach($karr as $k) { - if(strlen($out)) + foreach ($karr as $k) { + if (strlen($out)) { $out .= ', '; - if($marr && in_arrayi($k,$marr)) + } + if ($marr && in_arrayi($k,$marr)) { $out .= '' . $k . ''; - else + } + else { $out .= '' . $k . ''; + } } } - } - $entry = array( - 'id' => ++$t, - 'profile_link' => $profile_link, - 'type' => $rr['type'], - 'photo' => $rr['photo'], - 'hash' => $rr['hash'], - 'alttext' => $rr['name'] . ((local_channel() || remote_channel()) ? ' ' . $rr['address'] : ''), - 'name' => $rr['name'], - 'age' => $age, - 'age_label' => t('Age:'), - 'profile' => $profile, - 'address' => $rr['address'], - 'nickname' => substr($rr['address'],0,strpos($rr['address'],'@')), - 'location' => $location, - 'location_label' => t('Location:'), - 'gender' => $gender, - 'total_ratings' => $total_ratings, - 'viewrate' => true, - 'canrate' => (($rating_enabled && local_channel()) ? true : false), - 'pdesc' => $pdesc, - 'pdesc_label' => t('Description:'), - 'censor' => (($directory_admin) ? 'dircensor/' . $rr['hash'] : ''), - 'censor_label' => (($rr['censored']) ? t('Uncensor') : t('Censor')), - 'marital' => $marital, - 'homepage' => $homepage, - 'homepageurl' => (($safe_mode) ? $homepageurl : linkify($homepageurl)), - 'hometown' => $hometown, - 'hometown_label' => t('Hometown:'), - 'about' => $about, - 'about_label' => t('About:'), - 'conn_label' => t('Connect'), - 'forum_label' => t('Group'), + $entry = [ + 'id' => ++ $t, + 'profile_link' => $profile_link, + 'type' => $rr['type'], + 'photo' => $rr['photo'], + 'hash' => $rr['hash'], + 'alttext' => $rr['name'] . ((local_channel() || remote_channel()) ? ' ' . $rr['address'] : ''), + 'name' => $rr['name'], + 'age' => $age, + 'age_label' => t('Age:'), + 'profile' => $profile, + 'address' => $rr['address'], + 'nickname' => substr($rr['address'],0,strpos($rr['address'],'@')), + 'location' => $location, + 'location_label' => t('Location:'), + 'gender' => $gender, + 'total_ratings' => $total_ratings, + 'viewrate' => true, + 'canrate' => (($rating_enabled && local_channel()) ? true : false), + 'pdesc' => $pdesc, + 'pdesc_label' => t('Description:'), + 'censor' => (($directory_admin) ? 'dircensor/' . $rr['hash'] : ''), + 'censor_label' => (($rr['censored']) ? t('Uncensor') : t('Censor')), + 'marital' => $marital, + 'homepage' => $homepage, + 'homepageurl' => (($safe_mode) ? $homepageurl : linkify($homepageurl)), + 'hometown' => $hometown, + 'hometown_label' => t('Hometown:'), + 'about' => $about, + 'about_label' => t('About:'), + 'conn_label' => t('Connect'), + 'forum_label' => t('Group'), 'collections_label' => t('Collection'), - 'connect' => $connect_link, - 'online' => $online, - 'kw' => (($out) ? t('Keywords: ') : ''), - 'keywords' => $out, - 'ignlink' => $suggest ? z_root() . '/directory?ignore=' . $rr['hash'] : '', - 'ignore_label' => t('Don\'t suggest'), - 'common_friends' => (($common[$rr['address']]) ? intval($common[$rr['address']]) : ''), - 'common_label' => t('Common connections (estimated):'), - 'common_count' => intval($common[$rr['address']]), - 'safe' => $safe_mode - ); + 'connect' => $connect_link, + 'online' => $online, + 'kw' => (($out) ? t('Keywords: ') : ''), + 'keywords' => $out, + 'ignlink' => $suggest ? z_root() . '/directory?ignore=' . $rr['hash'] : '', + 'ignore_label' => t('Don\'t suggest'), + 'common_friends' => (($common[$rr['address']]) ? intval($common[$rr['address']]) : ''), + 'common_label' => t('Common connections (estimated):'), + 'common_count' => intval($common[$rr['address']]), + 'safe' => $safe_mode + ]; $arr = array('contact' => $rr, 'entry' => $entry); @@ -399,14 +408,13 @@ class Directory extends Controller { unset($profile); unset($location); - if(! $arr['entry']) { + if (! $arr['entry']) { continue; } - if($sort_order == '' && $suggest) { + if ($sort_order == '' && $suggest) { $entries[$addresses[$rr['address']]] = $arr['entry']; // Use the same indexes as originally to get the best suggestion first } - else { $entries[] = $arr['entry']; } @@ -414,18 +422,16 @@ class Directory extends Controller { ksort($entries); // Sort array by key so that foreach-constructs work as expected - if($j['keywords']) { + if ($j['keywords']) { App::$data['directory_keywords'] = $j['keywords']; } // logger('mod_directory: entries: ' . print_r($entries,true), LOGGER_DATA); - if($_REQUEST['aj']) { - if($entries) { - $o = replace_macros(get_markup_template('directajax.tpl'),array( - '$entries' => $entries - )); + if ($_REQUEST['aj']) { + if ($entries) { + $o = replace_macros(get_markup_template('directajax.tpl'), [ '$entries' => $entries ] ); } else { $o = '
'; @@ -439,34 +445,31 @@ class Directory extends Controller { $dirtitle = (($globaldir) ? t('Global Directory') : t('Local Directory')); $o .= ""; - $o .= replace_macros($tpl, array( - '$search' => $search, - '$desc' => t('Find'), - '$finddsc' => t('Finding:'), - '$safetxt' => htmlspecialchars($search,ENT_QUOTES,'UTF-8'), - '$entries' => $entries, - '$dirlbl' => $suggest ? t('Channel Suggestions') : $dirtitle, - '$submit' => t('Find'), - '$next' => alt_pager($j['records'], t('next page'), t('previous page')), - '$sort' => t('Sort options'), - '$normal' => t('Alphabetic'), - '$reverse' => t('Reverse Alphabetic'), - '$date' => t('Newest to Oldest'), + $o .= replace_macros($tpl, [ + '$search' => $search, + '$desc' => t('Find'), + '$finddsc' => t('Finding:'), + '$safetxt' => htmlspecialchars($search,ENT_QUOTES,'UTF-8'), + '$entries' => $entries, + '$dirlbl' => $suggest ? t('Channel Suggestions') : $dirtitle, + '$submit' => t('Find'), + '$next' => alt_pager($j['records'], t('next page'), t('previous page')), + '$sort' => t('Sort options'), + '$normal' => t('Alphabetic'), + '$reverse' => t('Reverse Alphabetic'), + '$date' => t('Newest to Oldest'), '$reversedate' => t('Oldest to Newest'), - '$suggest' => $suggest ? '&suggest=1' : '' - )); - - + '$suggest' => $suggest ? '&suggest=1' : '' + ]); } - } else { - if($_REQUEST['aj']) { + if ($_REQUEST['aj']) { $o = '
'; echo $o; killme(); } - if(\App::$pager['page'] == 1 && $j['records'] == 0 && strpos($search,'@')) { + if (App::$pager['page'] == 1 && $j['records'] == 0 && strpos($search,'@')) { goaway(z_root() . '/chanview/?f=&address=' . $search); } info( t("No entries (some entries may be hidden).") . EOL); @@ -479,22 +482,19 @@ class Directory extends Controller { static public function reorder_results($results,$suggests) { - -// return $results; - - if(! $suggests) + if (! $suggests) { return $results; + } $out = []; - foreach($suggests as $k => $v) { - foreach($results as $rv) { - if($k == $rv['address']) { + foreach ($suggests as $k => $v) { + foreach ($results as $rv) { + if ($k == $rv['address']) { $out[intval($v)] = $rv; break; } } } - return $out; } diff --git a/Zotlabs/Module/Dirsearch.php b/Zotlabs/Module/Dirsearch.php index 22a500d97..5c186bf84 100644 --- a/Zotlabs/Module/Dirsearch.php +++ b/Zotlabs/Module/Dirsearch.php @@ -353,7 +353,7 @@ class Dirsearch extends Controller { $ret['results'] = $entries; if ($kw) { - $k = dir_tagadelic($kw, $hub, $type); + $k = dir_tagadelic($kw, $hub, $type,$safesql); if ($k) { $ret['keywords'] = array(); foreach ($k as $kv) { diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index 120401952..c505970fc 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -224,6 +224,7 @@ class Display extends Controller { '$conv' => '0', '$spam' => '0', '$fh' => '0', + '$dm' => '0', '$nouveau' => '0', '$wall' => '0', '$static' => $static, diff --git a/Zotlabs/Module/Hq.php b/Zotlabs/Module/Hq.php index 6c7c09383..8c763d6be 100644 --- a/Zotlabs/Module/Hq.php +++ b/Zotlabs/Module/Hq.php @@ -1,19 +1,23 @@ $channel['channel_allow_cid'], @@ -119,7 +123,7 @@ class Hq extends \Zotlabs\Web\Controller { 'default_location' => $channel['channel_location'], 'nickname' => $channel['channel_address'], 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), - 'acl' => populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'), + 'acl' => populate_acl($channel_acl,true, PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'), 'permissions' => $channel_acl, 'bang' => '', 'visitor' => true, @@ -165,7 +169,7 @@ class Hq extends \Zotlabs\Web\Controller { $o .= "\r\n"; - \App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),[ + App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),[ '$baseurl' => z_root(), '$pgtype' => 'hq', '$uid' => local_channel(), @@ -178,6 +182,7 @@ class Hq extends \Zotlabs\Web\Controller { '$conv' => '0', '$spam' => '0', '$fh' => '0', + '$dm' => '0', '$nouveau' => '0', '$wall' => '0', '$static' => $static, diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index a62f8eefe..b3ae1b5b1 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -54,8 +54,9 @@ class Item extends Controller { $i = null; // do we have the item (at all)? + // add preferential bias to item owners (item_wall = 1) - $r = q("select * from item where mid = '%s' or uuid = '%s' $item_normal limit 1", + $r = q("select * from item where mid = '%s' or uuid = '%s' $item_normal order by item_wall desc limit 1", dbesc(z_root() . '/item/' . $item_id), dbesc($item_id) ); @@ -88,11 +89,12 @@ class Item extends Controller { } // if we don't have a parent id belonging to the signer see if we can obtain one as a visitor that we have permission to access + // with a bias towards those items owned by channels on this site (item_wall = 1) $sql_extra = item_permissions_sql(0); if (! $i) { - $i = q("select id as item_id from item where mid = '%s' $item_normal $sql_extra limit 1", + $i = q("select id as item_id from item where mid = '%s' $item_normal $sql_extra order by item_wall desc limit 1", dbesc($r[0]['parent_mid']) ); } @@ -189,11 +191,12 @@ class Item extends Controller { } // if we don't have a parent id belonging to the signer see if we can obtain one as a visitor that we have permission to access - + // with a bias towards those items owned by channels on this site (item_wall = 1) + $sql_extra = item_permissions_sql(0); if (! $i) { - $i = q("select id as item_id from item where mid = '%s' $item_normal $sql_extra limit 1", + $i = q("select id as item_id from item where mid = '%s' $item_normal $sql_extra order by item_wall desc limit 1", dbesc($r[0]['parent_mid']) ); } @@ -684,9 +687,9 @@ class Item extends Controller { $private = $orig_post['item_private']; } - if($private || $public_policy || $acl->is_private()) - $private = 1; - + if($public_policy || $acl->is_private()) { + $private = (($private) ? $private : 1); + } $location = $orig_post['location']; $coord = $orig_post['coord']; @@ -763,14 +766,14 @@ class Item extends Controller { $allow_empty = ((array_key_exists('allow_empty',$_REQUEST)) ? intval($_REQUEST['allow_empty']) : 0); - $private = intval($acl->is_private() || ($public_policy)); + $private = (($private) ? $private : intval($acl->is_private() || ($public_policy))); // If this is a comment, set the permissions from the parent. if($parent_item) { $private = 0; $acl->set($parent_item); - $private = intval($acl->is_private() || $parent_item['item_private']); + $private = ((intval($parent_item['item_private']) ? $parent_item['item_private'] : $acl->is_private())); $public_policy = $parent_item['public_policy']; $owner_hash = $parent_item['owner_xchan']; $webpage = $parent_item['item_type']; @@ -1102,7 +1105,7 @@ class Item extends Controller { $plink = z_root() . '/item/' . $uuid; } - + $datarray['aid'] = $channel['channel_account_id']; $datarray['uid'] = $profile_uid; $datarray['uuid'] = $uuid; @@ -1422,13 +1425,14 @@ class Item extends Controller { if((argc() == 3) && (argv(1) === 'drop') && intval(argv(2))) { - $i = q("select id, uid, item_origin, resource_type, resource_id, author_xchan, owner_xchan, source_xchan, item_type from item where id = %d limit 1", + $i = q("select * from item where id = %d limit 1", intval(argv(2)) ); if($i) { $can_delete = false; $local_delete = false; + $regular_delete = false; if(local_channel() && local_channel() == $i[0]['uid']) { $local_delete = true; @@ -1437,6 +1441,7 @@ class Item extends Controller { $ob_hash = get_observer_hash(); if($ob_hash && ($ob_hash === $i[0]['author_xchan'] || $ob_hash === $i[0]['owner_xchan'] || $ob_hash === $i[0]['source_xchan'])) { $can_delete = true; + $regular_delete = true; } // The site admin can delete any post/item on the site. @@ -1461,7 +1466,7 @@ class Item extends Controller { dbesc($i[0]['resource_id']), intval($i[0]['uid']) ); - if ($r) { + if ($r && $regular_delete) { $sync_event = $r[0]; q("delete from event WHERE event_hash = '%s' AND uid = %d LIMIT 1", dbesc($i[0]['resource_id']), @@ -1472,6 +1477,18 @@ class Item extends Controller { } } + if ($i[0]['resource_type'] === 'photo') { + attach_delete($i[0]['uid'], $i[0]['resource_id'], true ); + $ch = channelx_by_n($i[0]['uid']); + if ($ch && $regular_delete) { + $sync = attach_export_data($ch,$i[0]['resource_id'], true); + if ($sync) { + Libsync::build_sync_packet($i[0]['uid'],array('file' => array($sync))); + } + } + } + + // if this is a different page type or it's just a local delete // but not by the item author or owner, do a simple deletion diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php index ffce7bb86..1441b3d10 100644 --- a/Zotlabs/Module/Like.php +++ b/Zotlabs/Module/Like.php @@ -1,6 +1,7 @@ channel_url($ch[0]) ])); - + // second like of the same thing is "undo" for the first like $z = q("select * from likes where channel_id = %d and liker = '%s' and verb = '%s' and target_type = '%s' and target_id = '%s' limit 1", @@ -234,7 +235,7 @@ class Like extends Controller { if($r) { if($r[0]['uid'] === $sys_channel['channel_id'] && local_channel()) { - $r = [ copy_of_pubitem(\App::get_channel(), $r[0]['mid']) ]; + $r = [ copy_of_pubitem(App::get_channel(), $r[0]['mid']) ]; } } @@ -283,8 +284,10 @@ class Like extends Controller { $multi_undo = false; - $item_normal = item_normal(); - + $item_normal = " and item.item_deleted = 0 and item.item_unpublished = 0 and item.item_delayed = 0 + and item.item_pending_remove = 0 and item.item_blocked = 0 and item.obj_type != '" . ACTIVITY_OBJ_FILE . "' "; + + $r = q("SELECT id, parent, uid, verb FROM item WHERE verb in ( $verbs ) $item_normal AND author_xchan = '%s' AND thr_parent = '%s' and uid = %d ", dbesc($observer['xchan_hash']), @@ -360,6 +363,16 @@ class Like extends Controller { $r = q("update item set item_hidden = 0 where id = %d", intval($item['id']) ); + + $r = q("select * from item where id = %d", + intval($item['id']) + ); + if($r) { + xchan_query($r); + $sync_item = fetch_post_tags($r); + Libsync::build_sync_packet($ch[0]['channel_id'], [ 'item' => [ encode_item($sync_item[0],true) ] ]); + } + Master::Summon(array('Notifier','wall-new',$item['id'])); } diff --git a/Zotlabs/Module/Lockview.php b/Zotlabs/Module/Lockview.php index d7ed07a53..8c8519c57 100644 --- a/Zotlabs/Module/Lockview.php +++ b/Zotlabs/Module/Lockview.php @@ -76,7 +76,7 @@ class Lockview extends \Zotlabs\Web\Controller { killme(); } - if(($item['item_private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) + if(intval($item['item_private']) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid'])) && (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) { // if the post is private, but public_policy is blank ("visible to the internet"), and there aren't any diff --git a/Zotlabs/Module/Network.php b/Zotlabs/Module/Network.php index 0532b43dc..7413ca719 100644 --- a/Zotlabs/Module/Network.php +++ b/Zotlabs/Module/Network.php @@ -64,7 +64,7 @@ class Network extends Controller { $category = ((x($_REQUEST,'cat')) ? $_REQUEST['cat'] : ''); $hashtags = ((x($_REQUEST,'tag')) ? $_REQUEST['tag'] : ''); $verb = ((x($_REQUEST,'verb')) ? $_REQUEST['verb'] : ''); - + $dm = ((x($_REQUEST,'dm')) ? $_REQUEST['dm'] : 0); $order = get_pconfig(local_channel(), 'mod_network', 'order', 0); switch ($order) { @@ -336,6 +336,7 @@ class Network extends Controller { '$conv' => (($conv) ? $conv : '0'), '$spam' => (($spam) ? $spam : '0'), '$fh' => '0', + '$dm' => (($dm) ? $dm : '0'), '$nouveau' => (($nouveau) ? $nouveau : '0'), '$wall' => '0', '$static' => $static, @@ -399,6 +400,10 @@ class Network extends Controller { $sql_extra .= term_query('item',$file,TERM_FILE); } + if ($dm) { + $sql_extra .= " and item_private = 2 "; + } + if ($conv) { $item_thread_top = ''; diff --git a/Zotlabs/Module/Notes.php b/Zotlabs/Module/Notes.php index a9fc38dbb..a779cec3f 100644 --- a/Zotlabs/Module/Notes.php +++ b/Zotlabs/Module/Notes.php @@ -3,7 +3,7 @@ namespace Zotlabs\Module; /** @file */ use Zotlabs\Lib\Libsync; use Zotlabs\Web\Controller; - +use Zotlabs\Lib\Apps; class Notes extends Controller { @@ -26,17 +26,38 @@ class Notes extends Controller { set_pconfig(local_channel(),'notes','text.bak',$old_text); } set_pconfig(local_channel(),'notes','text',$body); - } + - // push updates to channel clones + // push updates to channel clones - if((argc() > 1) && (argv(1) === 'sync')) { - Libsync::build_sync_packet(); - } + if((argc() > 1) && (argv(1) === 'sync')) { + Libsync::build_sync_packet(); + } - logger('notes saved.', LOGGER_DEBUG); - json_return_and_die($ret); + logger('notes saved.', LOGGER_DEBUG); + json_return_and_die($ret); + } } + + function get() { + + $desc = t('This app allows you to create private notes for your personal use.'); + + $text = '
' . $desc . '
'; + + if(! ( local_channel() && Apps::system_app_installed(local_channel(),'Notes'))) { + return $text; + } + + $desc = t('This app is installed. The Notes tool can be found on your network stream page.'); + + $text = '
' . $desc . '
'; + + return $text; + + } + + } diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index 8b90cb27d..e5d2903c9 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -215,6 +215,71 @@ class Photos extends Controller { } } + // this still needs some work + + if(defined('FIXED')) { + if((x($_POST,'rotate') !== false) && ( (intval($_POST['rotate']) == 1) || (intval($_POST['rotate']) == 2) )) { + logger('rotate'); + + $resource_id = argv(2); + + $r = q("select * from photo where resource_id = '%s' and uid = %d and imgscale = 0 limit 1", + dbesc($resource_id), + intval($page_owner_uid) + ); + if($r) { + + $ph = photo_factory(@file_get_contents(dbunescbin($r[0]['content'])), $r[0]['mimetype']); + if($ph->is_valid()) { + $rotate_deg = ( (intval($_POST['rotate']) == 1) ? 270 : 90 ); + $ph->rotate($rotate_deg); + + $edited = datetime_convert(); + + q("update attach set filesize = %d, edited = '%s' where hash = '%s' and uid = %d", + strlen($ph->imageString()), + dbescdate($edited), + dbesc($resource_id), + intval($page_owner_uid) + ); + + $ph->saveImage(dbunescbin($r[0]['content'])); + + $arr = [ + 'aid' => get_account_id(), + 'uid' => intval($page_owner_uid), + 'resource_id' => dbesc($resource_id), + 'filename' => $r[0]['filename'], + 'imgscale' => 0, + 'album' => $r[0]['album'], + 'os_path' => $r[0]['os_path'], + 'os_storage' => 1, + 'os_syspath' => dbunescbin($r[0]['content']), + 'display_path' => $r[0]['display_path'], + 'photo_usage' => PHOTO_NORMAL, + 'edited' => dbescdate($edited) + ]; + + $ph->save($arr); + + unset($arr['os_syspath']); + + if($width > 1024 || $height > 1024) + $ph->scaleImage(1024); + $ph->storeThumbnail($arr, PHOTO_RES_1024); + + if($width > 640 || $height > 640) + $ph->scaleImage(640); + $ph->storeThumbnail($arr, PHOTO_RES_640); + + if($width > 320 || $height > 320) + $ph->scaleImage(320); + $ph->storeThumbnail($arr, PHOTO_RES_320); + } + } + }} + + if((argc() > 2) && ((x($_POST,'desc') !== false) || (x($_POST,'newtag') !== false))) { $desc = ((x($_POST,'desc')) ? notags(trim($_POST['desc'])) : ''); diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php index 761dd6a35..9a7076b76 100644 --- a/Zotlabs/Module/Pubstream.php +++ b/Zotlabs/Module/Pubstream.php @@ -1,11 +1,15 @@ $channel['channel_allow_cid'], @@ -66,7 +70,7 @@ class Pubstream extends \Zotlabs\Web\Controller { 'default_location' => $channel['channel_location'], 'nickname' => $channel['channel_address'], 'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'), - 'acl' => populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'), + 'acl' => populate_acl($channel_acl,true,PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'), 'permissions' => $channel_acl, 'bang' => '', 'visitor' => true, @@ -105,14 +109,14 @@ class Pubstream extends \Zotlabs\Web\Controller { $o .= '
' . "\r\n"; $o .= "\r\n"; //if we got a decoded hash we must encode it again before handing to javascript if($decoded) $mid = 'b64.' . base64url_encode($mid); - \App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array( + App::$page['htmlhead'] .= replace_macros(get_markup_template("build_query.tpl"),array( '$baseurl' => z_root(), '$pgtype' => 'pubstream', '$uid' => ((local_channel()) ? local_channel() : '0'), @@ -125,11 +129,12 @@ class Pubstream extends \Zotlabs\Web\Controller { '$conv' => '0', '$spam' => '0', '$fh' => '1', + '$dm' => '0', '$nouveau' => '0', '$wall' => '0', '$list' => '0', '$static' => $static, - '$page' => ((\App::$pager['page'] != 1) ? \App::$pager['page'] : 1), + '$page' => ((App::$pager['page'] != 1) ? App::$pager['page'] : 1), '$search' => '', '$xchan' => '', '$order' => 'comment', @@ -149,8 +154,8 @@ class Pubstream extends \Zotlabs\Web\Controller { $pager_sql = ''; } else { - \App::set_pager_itemspage(20); - $pager_sql = sprintf(" LIMIT %d OFFSET %d ", intval(\App::$pager['itemspage']), intval(\App::$pager['start'])); + App::set_pager_itemspage(20); + $pager_sql = sprintf(" LIMIT %d OFFSET %d ", intval(App::$pager['itemspage']), intval(App::$pager['start'])); } require_once('include/channel.php'); @@ -163,7 +168,7 @@ class Pubstream extends \Zotlabs\Web\Controller { $sys = get_sys_channel(); $uids = " and item.uid = " . intval($sys['channel_id']) . " "; $sql_extra = item_permissions_sql($sys['channel_id']); - \App::$data['firehose'] = intval($sys['channel_id']); + App::$data['firehose'] = intval($sys['channel_id']); } if(get_config('system','public_list_mode')) @@ -179,7 +184,7 @@ class Pubstream extends \Zotlabs\Web\Controller { $net_query = (($net) ? " left join xchan on xchan_hash = author_xchan " : ''); $net_query2 = (($net) ? " and xchan_network = '" . protect_sprintf(dbesc($net)) . "' " : ''); - $abook_uids = " and abook.abook_channel = " . intval(\App::$profile['profile_uid']) . " "; + $abook_uids = " and abook.abook_channel = " . intval(App::$profile['profile_uid']) . " "; $simple_update = (($_SESSION['loadtime']) ? " AND item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' " : ''); diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php index e610481e3..6b2337ef2 100644 --- a/Zotlabs/Module/Search.php +++ b/Zotlabs/Module/Search.php @@ -131,6 +131,7 @@ class Search extends \Zotlabs\Web\Controller { '$conv' => '0', '$spam' => '0', '$fh' => '0', + '$dm' => '0', '$nouveau' => '0', '$wall' => '0', '$static' => $static, diff --git a/Zotlabs/Module/Webfinger.php b/Zotlabs/Module/Webfinger.php index 48d2566d9..9b4377d6c 100644 --- a/Zotlabs/Module/Webfinger.php +++ b/Zotlabs/Module/Webfinger.php @@ -12,7 +12,7 @@ class Webfinger extends Controller { // This is a public resource with relaxed CORS policy. Close the current login session. session_write_close(); - + header('Access-Control-Allow-Origin: *'); $result = []; diff --git a/Zotlabs/Thumbs/Mp3audio.php b/Zotlabs/Thumbs/Mp3audio.php index 000d65b22..1e625a013 100644 --- a/Zotlabs/Thumbs/Mp3audio.php +++ b/Zotlabs/Thumbs/Mp3audio.php @@ -2,7 +2,7 @@ namespace Zotlabs\Thumbs; -use \ID3Parser\ID3Parser; +use ID3Parser\ID3Parser; class Mp3audio { diff --git a/Zotlabs/Web/SessionHandler.php b/Zotlabs/Web/SessionHandler.php index 04c5cb5b5..b40b466ee 100644 --- a/Zotlabs/Web/SessionHandler.php +++ b/Zotlabs/Web/SessionHandler.php @@ -2,8 +2,9 @@ namespace Zotlabs\Web; +use SessionHandlerInterface; -class SessionHandler implements \SessionHandlerInterface { +class SessionHandler implements SessionHandlerInterface { function open ($s, $n) { @@ -17,10 +18,10 @@ class SessionHandler implements \SessionHandlerInterface { function read ($id) { - if($id) { + if ($id) { $r = q("SELECT sess_data FROM session WHERE sid= '%s'", dbesc($id)); - if($r) { + if ($r) { return $r[0]['sess_data']; } else { @@ -38,8 +39,11 @@ class SessionHandler implements \SessionHandlerInterface { function write ($id, $data) { - if(! $id || ! $data) { - return false; + // Pretend everything is hunky-dory, even though it isn't. There probably isn't anything + // we can do about it in any event. + + if (! $id) { + return true; } // Unless we authenticate somehow, only keep a session for 5 minutes @@ -50,12 +54,12 @@ class SessionHandler implements \SessionHandlerInterface { $expire = time() + 300; - if($_SESSION) { - if(array_key_exists('remember_me',$_SESSION) && intval($_SESSION['remember_me'])) + if ($_SESSION) { + if (array_key_exists('remember_me',$_SESSION) && intval($_SESSION['remember_me'])) $expire = time() + (60 * 60 * 24 * 365); - elseif(local_channel()) + elseif (local_channel()) $expire = time() + (60 * 60 * 24 * 3); - elseif(remote_channel()) + elseif (remote_channel()) $expire = time() + (60 * 60 * 24 * 1); } diff --git a/Zotlabs/Widget/Activity_filter.php b/Zotlabs/Widget/Activity_filter.php index b9b6abe97..0d77fd8dd 100644 --- a/Zotlabs/Widget/Activity_filter.php +++ b/Zotlabs/Widget/Activity_filter.php @@ -2,6 +2,9 @@ namespace Zotlabs\Widget; +use App; + + class Activity_filter { function widget($arr) { @@ -9,11 +12,23 @@ class Activity_filter { if(! local_channel()) return ''; - $cmd = \App::$cmd; + $cmd = App::$cmd; $filter_active = false; $tabs = []; + if(x($_GET,'dm')) { + $dm_active = (($_GET['dm'] == 1) ? 'active' : ''); + $filter_active = 'dm'; + } + + $tabs[] = [ + 'label' => t('Direct Messages'), + 'icon' => 'envelope-o', + 'url' => z_root() . '/' . $cmd . '/?dm=1', + 'sel' => $dm_active, + 'title' => t('Show direct (private) messages') + ]; if(x($_GET,'conv')) { $conv_active = (($_GET['conv'] == 1) ? 'active' : ''); @@ -28,6 +43,7 @@ class Activity_filter { 'title' => t('Show posts that mention or involve me') ]; + if(x($_GET,'verb')) { $verb_active = (($_GET['verb'] == 1) ? 'active' : ''); $filter_active = 'events'; @@ -41,6 +57,7 @@ class Activity_filter { 'title' => t('Show posts that include events') ]; + if(feature_enabled(local_channel(),'star_posts')) { if(x($_GET,'star')) { $starred_active = (($_GET['star'] == 1) ? 'active' : ''); diff --git a/Zotlabs/Widget/Notes.php b/Zotlabs/Widget/Notes.php index 5c83a550f..ef3b2e981 100644 --- a/Zotlabs/Widget/Notes.php +++ b/Zotlabs/Widget/Notes.php @@ -2,21 +2,25 @@ namespace Zotlabs\Widget; +use Zotlabs\Lib\Apps; + class Notes { function widget($arr) { - if(! local_channel()) + if (! local_channel()) { return ''; - if(! feature_enabled(local_channel(),'private_notes')) + } + if (! Apps::system_app_installed(local_channel(),'Notes')) { return ''; + } $text = get_pconfig(local_channel(),'notes','text'); - $o = replace_macros(get_markup_template('notes.tpl'), array( + $o = replace_macros(get_markup_template('notes.tpl'), [ '$banner' => t('Notes'), '$text' => $text, '$save' => t('Save'), - )); + ]); return $o; } diff --git a/app/notes.apd b/app/notes.apd new file mode 100644 index 000000000..12427ef69 --- /dev/null +++ b/app/notes.apd @@ -0,0 +1,6 @@ +version: 1 +url: $baseurl/notes +requires: local_channel +name: Notes +photo: icon:pencil +categories: Productivity diff --git a/boot.php b/boot.php index edeb4326c..b86758eb1 100755 --- a/boot.php +++ b/boot.php @@ -45,11 +45,14 @@ require_once('include/items.php'); -define ( 'STD_VERSION', '3.0' ); +define ( 'STD_VERSION', '3.1' ); define ( 'ZOT_REVISION', '6.0' ); define ( 'DB_UPDATE_VERSION', 1232 ); +define ( 'PLATFORM_NAME', 'zap' ); +define ( 'PLATFORM_ARCHITECTURE', 'zap' ); + define ( 'PROJECT_BASE', __DIR__ ); /** @@ -463,7 +466,7 @@ define ( 'NAMESPACE_YMEDIA', 'http://search.yahoo.com/mrss/' ); define ( 'ACTIVITYSTREAMS_JSONLD_REV', 'https://www.w3.org/ns/activitystreams' ); -define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.8' ); +define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.9' ); /** * activity stream defines */ @@ -608,16 +611,6 @@ function sys_boot() { @include('.htconfig.php'); - if(defined('NOMADIC')) { - define ( 'PLATFORM_NAME', 'zap' ); - define ( 'PLATFORM_ARCHITECTURE', 'zap' ); - } - else { - define ( 'PLATFORM_NAME', 'osada' ); - define ( 'PLATFORM_ARCHITECTURE', 'osada' ); - } - - // allow somebody to set some initial settings just in case they can't // install without special fiddling diff --git a/composer.lock b/composer.lock index d9a4c4b4a..a58000aa1 100644 --- a/composer.lock +++ b/composer.lock @@ -8,16 +8,16 @@ "packages": [ { "name": "blueimp/jquery-file-upload", - "version": "v9.30.0", + "version": "v9.31.0", "source": { "type": "git", "url": "https://github.com/vkhramtsov/jQuery-File-Upload.git", - "reference": "1fceec556879403e5c1ae32a7c448aa12b8c3558" + "reference": "2485bf016e1085f0cd8308723064458cb0af5729" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/1fceec556879403e5c1ae32a7c448aa12b8c3558", - "reference": "1fceec556879403e5c1ae32a7c448aa12b8c3558", + "url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/2485bf016e1085f0cd8308723064458cb0af5729", + "reference": "2485bf016e1085f0cd8308723064458cb0af5729", "shasum": "" }, "type": "library", @@ -59,7 +59,7 @@ "upload", "widget" ], - "time": "2019-04-22T09:21:57+00:00" + "time": "2019-05-24T07:59:46+00:00" }, { "name": "bshaffer/oauth2-server-php", @@ -165,16 +165,16 @@ }, { "name": "doctrine/collections", - "version": "v1.6.1", + "version": "v1.6.2", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956" + "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956", - "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956", + "url": "https://api.github.com/repos/doctrine/collections/zipball/c5e0bc17b1620e97c968ac409acbff28b8b850be", + "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be", "shasum": "" }, "require": { @@ -231,7 +231,7 @@ "iterators", "php" ], - "time": "2019-03-25T19:03:48+00:00" + "time": "2019-06-09T13:48:14+00:00" }, { "name": "ezyang/htmlpurifier", @@ -1576,16 +1576,16 @@ }, { "name": "symfony/options-resolver", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "fd4a5f27b7cd085b489247b9890ebca9f3e10044" + "reference": "914e0edcb7cd0c9f494bc023b1d47534f4542332" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/fd4a5f27b7cd085b489247b9890ebca9f3e10044", - "reference": "fd4a5f27b7cd085b489247b9890ebca9f3e10044", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/914e0edcb7cd0c9f494bc023b1d47534f4542332", + "reference": "914e0edcb7cd0c9f494bc023b1d47534f4542332", "shasum": "" }, "require": { @@ -1594,7 +1594,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -1626,7 +1626,7 @@ "configuration", "options" ], - "time": "2019-04-10T16:20:36+00:00" + "time": "2019-05-10T05:38:46+00:00" }, { "name": "symfony/polyfill-ctype", @@ -1688,16 +1688,16 @@ }, { "name": "symfony/process", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe" + "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/8cf39fb4ccff793340c258ee7760fd40bfe745fe", - "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe", + "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c", + "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c", "shasum": "" }, "require": { @@ -1706,7 +1706,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -1733,7 +1733,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2019-04-10T16:20:36+00:00" + "time": "2019-05-30T16:10:05+00:00" }, { "name": "twbs/bootstrap", @@ -2674,16 +2674,16 @@ }, { "name": "php-mock/php-mock", - "version": "2.1.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://github.com/php-mock/php-mock.git", - "reference": "e2eea560cb01502148ca895221f0b58806c5a4df" + "reference": "35379d7b382b787215617f124662d9ead72c15e3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-mock/php-mock/zipball/e2eea560cb01502148ca895221f0b58806c5a4df", - "reference": "e2eea560cb01502148ca895221f0b58806c5a4df", + "url": "https://api.github.com/repos/php-mock/php-mock/zipball/35379d7b382b787215617f124662d9ead72c15e3", + "reference": "35379d7b382b787215617f124662d9ead72c15e3", "shasum": "" }, "require": { @@ -2706,10 +2706,7 @@ "classes/", "tests/" ] - }, - "files": [ - "autoload.php" - ] + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -2734,7 +2731,7 @@ "test", "test double" ], - "time": "2019-04-05T22:15:19+00:00" + "time": "2019-06-05T20:10:01+00:00" }, { "name": "php-mock/php-mock-integration", @@ -2791,16 +2788,16 @@ }, { "name": "php-mock/php-mock-phpunit", - "version": "2.3.0", + "version": "2.4.0", "source": { "type": "git", "url": "https://github.com/php-mock/php-mock-phpunit.git", - "reference": "d49b8c5c6e5e0119b98c250012a68ecb0fac65ab" + "reference": "04f78fe83df4855654373188aca8cccf8bf472ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-mock/php-mock-phpunit/zipball/d49b8c5c6e5e0119b98c250012a68ecb0fac65ab", - "reference": "d49b8c5c6e5e0119b98c250012a68ecb0fac65ab", + "url": "https://api.github.com/repos/php-mock/php-mock-phpunit/zipball/04f78fe83df4855654373188aca8cccf8bf472ce", + "reference": "04f78fe83df4855654373188aca8cccf8bf472ce", "shasum": "" }, "require": { @@ -2841,7 +2838,7 @@ "test", "test double" ], - "time": "2019-04-06T07:29:41+00:00" + "time": "2019-06-07T12:26:51+00:00" }, { "name": "phpdocumentor/reflection-common", @@ -2997,16 +2994,16 @@ }, { "name": "phpspec/prophecy", - "version": "1.8.0", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06" + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4ba436b55987b4bf311cb7c6ba82aa528aac0a06", - "reference": "4ba436b55987b4bf311cb7c6ba82aa528aac0a06", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76", + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76", "shasum": "" }, "require": { @@ -3027,8 +3024,8 @@ } }, "autoload": { - "psr-0": { - "Prophecy\\": "src/" + "psr-4": { + "Prophecy\\": "src/Prophecy" } }, "notification-url": "https://packagist.org/downloads/", @@ -3056,7 +3053,7 @@ "spy", "stub" ], - "time": "2018-08-05T17:53:17+00:00" + "time": "2019-06-13T12:50:23+00:00" }, { "name": "phpunit/dbunit", @@ -3120,16 +3117,16 @@ }, { "name": "phpunit/php-code-coverage", - "version": "7.0.3", + "version": "7.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707" + "reference": "aed67b57d459dcab93e84a5c9703d3deb5025dff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0317a769a81845c390e19684d9ba25d7f6aa4707", - "reference": "0317a769a81845c390e19684d9ba25d7f6aa4707", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/aed67b57d459dcab93e84a5c9703d3deb5025dff", + "reference": "aed67b57d459dcab93e84a5c9703d3deb5025dff", "shasum": "" }, "require": { @@ -3179,7 +3176,7 @@ "testing", "xunit" ], - "time": "2019-02-26T07:38:26+00:00" + "time": "2019-06-06T12:28:18+00:00" }, { "name": "phpunit/php-file-iterator", @@ -3274,16 +3271,16 @@ }, { "name": "phpunit/php-timer", - "version": "2.1.1", + "version": "2.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-timer.git", - "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059" + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b389aebe1b8b0578430bda0c7c95a829608e059", - "reference": "8b389aebe1b8b0578430bda0c7c95a829608e059", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/1038454804406b0b5f5f520358e78c1c2f71501e", + "reference": "1038454804406b0b5f5f520358e78c1c2f71501e", "shasum": "" }, "require": { @@ -3319,7 +3316,7 @@ "keywords": [ "timer" ], - "time": "2019-02-20T10:12:59+00:00" + "time": "2019-06-07T04:22:29+00:00" }, { "name": "phpunit/php-token-stream", @@ -3372,42 +3369,43 @@ }, { "name": "phpunit/phpunit", - "version": "8.1.5", + "version": "8.2.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "01392d4b5878aa617e8d9bc7a529e5febc8fe956" + "reference": "24b6cfcec34c1167ee1d90b7cb22bee324af319f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/01392d4b5878aa617e8d9bc7a529e5febc8fe956", - "reference": "01392d4b5878aa617e8d9bc7a529e5febc8fe956", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/24b6cfcec34c1167ee1d90b7cb22bee324af319f", + "reference": "24b6cfcec34c1167ee1d90b7cb22bee324af319f", "shasum": "" }, "require": { - "doctrine/instantiator": "^1.1", + "doctrine/instantiator": "^1.2.0", "ext-dom": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.7", - "phar-io/manifest": "^1.0.2", - "phar-io/version": "^2.0", + "myclabs/deep-copy": "^1.9.1", + "phar-io/manifest": "^1.0.3", + "phar-io/version": "^2.0.1", "php": "^7.2", - "phpspec/prophecy": "^1.7", - "phpunit/php-code-coverage": "^7.0", - "phpunit/php-file-iterator": "^2.0.1", + "phpspec/prophecy": "^1.8.1", + "phpunit/php-code-coverage": "^7.0.5", + "phpunit/php-file-iterator": "^2.0.2", "phpunit/php-text-template": "^1.2.1", - "phpunit/php-timer": "^2.1", - "sebastian/comparator": "^3.0", - "sebastian/diff": "^3.0", - "sebastian/environment": "^4.1", - "sebastian/exporter": "^3.1", - "sebastian/global-state": "^3.0", + "phpunit/php-timer": "^2.1.2", + "sebastian/comparator": "^3.0.2", + "sebastian/diff": "^3.0.2", + "sebastian/environment": "^4.2.2", + "sebastian/exporter": "^3.1.0", + "sebastian/global-state": "^3.0.0", "sebastian/object-enumerator": "^3.0.3", - "sebastian/resource-operations": "^2.0", + "sebastian/resource-operations": "^2.0.1", + "sebastian/type": "^1.1.0", "sebastian/version": "^2.0.1" }, "require-dev": { @@ -3416,7 +3414,7 @@ "suggest": { "ext-soap": "*", "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0" + "phpunit/php-invoker": "^2.0.0" }, "bin": [ "phpunit" @@ -3424,7 +3422,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "8.1-dev" + "dev-master": "8.2-dev" } }, "autoload": { @@ -3450,7 +3448,7 @@ "testing", "xunit" ], - "time": "2019-05-14T04:57:31+00:00" + "time": "2019-06-15T07:25:54+00:00" }, { "name": "psr/container", @@ -4117,6 +4115,52 @@ "homepage": "https://www.github.com/sebastianbergmann/resource-operations", "time": "2018-10-04T04:07:39+00:00" }, + { + "name": "sebastian/type", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "b2a7f9aac51ce18cd7ac8b31e37c8ce5646fc741" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b2a7f9aac51ce18cd7ac8b31e37c8ce5646fc741", + "reference": "b2a7f9aac51ce18cd7ac8b31e37c8ce5646fc741", + "shasum": "" + }, + "require": { + "php": "^7.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.2" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "time": "2019-06-08T04:53:27+00:00" + }, { "name": "sebastian/version", "version": "2.0.1", @@ -4162,16 +4206,16 @@ }, { "name": "symfony/browser-kit", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "c09c18cca96d7067152f78956faf55346c338283" + "reference": "e07d50e84b8cf489590f22244f4f609579b4a2c4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/c09c18cca96d7067152f78956faf55346c338283", - "reference": "c09c18cca96d7067152f78956faf55346c338283", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/e07d50e84b8cf489590f22244f4f609579b4a2c4", + "reference": "e07d50e84b8cf489590f22244f4f609579b4a2c4", "shasum": "" }, "require": { @@ -4180,6 +4224,8 @@ }, "require-dev": { "symfony/css-selector": "~3.4|~4.0", + "symfony/http-client": "^4.3", + "symfony/mime": "^4.3", "symfony/process": "~3.4|~4.0" }, "suggest": { @@ -4188,7 +4234,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4215,11 +4261,11 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2019-04-07T09:56:43+00:00" + "time": "2019-05-30T16:10:05+00:00" }, { "name": "symfony/class-loader", - "version": "v3.4.27", + "version": "v3.4.28", "source": { "type": "git", "url": "https://github.com/symfony/class-loader.git", @@ -4275,16 +4321,16 @@ }, { "name": "symfony/config", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/config.git", - "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f" + "reference": "6379ee07398643e09e6ed1e87d9c62dfcad7f4eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/config/zipball/0e745ead307d5dcd4e163e94a47ec04b1428943f", - "reference": "0e745ead307d5dcd4e163e94a47ec04b1428943f", + "url": "https://api.github.com/repos/symfony/config/zipball/6379ee07398643e09e6ed1e87d9c62dfcad7f4eb", + "reference": "6379ee07398643e09e6ed1e87d9c62dfcad7f4eb", "shasum": "" }, "require": { @@ -4299,6 +4345,7 @@ "symfony/dependency-injection": "~3.4|~4.0", "symfony/event-dispatcher": "~3.4|~4.0", "symfony/finder": "~3.4|~4.0", + "symfony/messenger": "~4.1", "symfony/yaml": "~3.4|~4.0" }, "suggest": { @@ -4307,7 +4354,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4334,29 +4381,31 @@ ], "description": "Symfony Config Component", "homepage": "https://symfony.com", - "time": "2019-04-01T14:03:25+00:00" + "time": "2019-05-30T16:10:05+00:00" }, { "name": "symfony/console", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81" + "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/e2840bb38bddad7a0feaf85931e38fdcffdb2f81", - "reference": "e2840bb38bddad7a0feaf85931e38fdcffdb2f81", + "url": "https://api.github.com/repos/symfony/console/zipball/d50bbeeb0e17e6dd4124ea391eff235e932cbf64", + "reference": "d50bbeeb0e17e6dd4124ea391eff235e932cbf64", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/contracts": "^1.0", - "symfony/polyfill-mbstring": "~1.0" + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php73": "^1.8", + "symfony/service-contracts": "^1.1" }, "conflict": { "symfony/dependency-injection": "<3.4", + "symfony/event-dispatcher": "<4.3", "symfony/process": "<3.3" }, "provide": { @@ -4366,9 +4415,10 @@ "psr/log": "~1.0", "symfony/config": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0", - "symfony/event-dispatcher": "~3.4|~4.0", + "symfony/event-dispatcher": "^4.3", "symfony/lock": "~3.4|~4.0", - "symfony/process": "~3.4|~4.0" + "symfony/process": "~3.4|~4.0", + "symfony/var-dumper": "^4.3" }, "suggest": { "psr/log": "For using the console logger", @@ -4379,7 +4429,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4406,82 +4456,11 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2019-04-08T14:23:48+00:00" - }, - { - "name": "symfony/contracts", - "version": "v1.1.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/contracts.git", - "reference": "d3636025e8253c6144358ec0a62773cae588395b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/contracts/zipball/d3636025e8253c6144358ec0a62773cae588395b", - "reference": "d3636025e8253c6144358ec0a62773cae588395b", - "shasum": "" - }, - "require": { - "php": "^7.1.3" - }, - "require-dev": { - "psr/cache": "^1.0", - "psr/container": "^1.0", - "symfony/polyfill-intl-idn": "^1.10" - }, - "suggest": { - "psr/cache": "When using the Cache contracts", - "psr/container": "When using the Service contracts", - "symfony/cache-contracts-implementation": "", - "symfony/event-dispatcher-implementation": "", - "symfony/http-client-contracts-implementation": "", - "symfony/service-contracts-implementation": "", - "symfony/translation-contracts-implementation": "" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.1-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Contracts\\": "" - }, - "exclude-from-classmap": [ - "**/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "A set of abstractions extracted out of the Symfony components", - "homepage": "https://symfony.com", - "keywords": [ - "abstractions", - "contracts", - "decoupling", - "interfaces", - "interoperability", - "standards" - ], - "time": "2019-04-27T14:29:50+00:00" + "time": "2019-06-05T13:25:51+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.27", + "version": "v3.4.28", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -4534,35 +4513,35 @@ }, { "name": "symfony/dependency-injection", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/dependency-injection.git", - "reference": "d161c0c8bc77ad6fdb8f5083b9e34c3015d43eb1" + "reference": "fea7f73e278ee0337349a5a68b867fc656bb33f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d161c0c8bc77ad6fdb8f5083b9e34c3015d43eb1", - "reference": "d161c0c8bc77ad6fdb8f5083b9e34c3015d43eb1", + "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/fea7f73e278ee0337349a5a68b867fc656bb33f3", + "reference": "fea7f73e278ee0337349a5a68b867fc656bb33f3", "shasum": "" }, "require": { "php": "^7.1.3", "psr/container": "^1.0", - "symfony/contracts": "^1.0" + "symfony/service-contracts": "^1.1.2" }, "conflict": { - "symfony/config": "<4.2", + "symfony/config": "<4.3", "symfony/finder": "<3.4", "symfony/proxy-manager-bridge": "<3.4", "symfony/yaml": "<3.4" }, "provide": { "psr/container-implementation": "1.0", - "symfony/service-contracts-implementation": "1.0" + "symfony/service-implementation": "1.0" }, "require-dev": { - "symfony/config": "~4.2", + "symfony/config": "^4.3", "symfony/expression-language": "~3.4|~4.0", "symfony/yaml": "~3.4|~4.0" }, @@ -4576,7 +4555,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4603,20 +4582,20 @@ ], "description": "Symfony DependencyInjection Component", "homepage": "https://symfony.com", - "time": "2019-04-27T11:48:17+00:00" + "time": "2019-05-30T16:10:05+00:00" }, { "name": "symfony/dom-crawler", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb" + "reference": "06ee58fbc9a8130f1d35b5280e15235a0515d457" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/53c97769814c80a84a8403efcf3ae7ae966d53bb", - "reference": "53c97769814c80a84a8403efcf3ae7ae966d53bb", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/06ee58fbc9a8130f1d35b5280e15235a0515d457", + "reference": "06ee58fbc9a8130f1d35b5280e15235a0515d457", "shasum": "" }, "require": { @@ -4624,7 +4603,11 @@ "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0" }, + "conflict": { + "masterminds/html5": "<2.6" + }, "require-dev": { + "masterminds/html5": "^2.6", "symfony/css-selector": "~3.4|~4.0" }, "suggest": { @@ -4633,7 +4616,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4660,34 +4643,40 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-02-23T15:17:42+00:00" + "time": "2019-05-31T18:55:30+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v4.2.8", + "version": "v4.3.1", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02" + "reference": "4e6c670af81c4fb0b6c08b035530a9915d0b691f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/fbce53cd74ac509cbe74b6f227622650ab759b02", - "reference": "fbce53cd74ac509cbe74b6f227622650ab759b02", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4e6c670af81c4fb0b6c08b035530a9915d0b691f", + "reference": "4e6c670af81c4fb0b6c08b035530a9915d0b691f", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/contracts": "^1.0" + "symfony/event-dispatcher-contracts": "^1.1" }, "conflict": { "symfony/dependency-injection": "<3.4" }, + "provide": { + "psr/event-dispatcher-implementation": "1.0", + "symfony/event-dispatcher-implementation": "1.1" + }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0", "symfony/expression-language": "~3.4|~4.0", + "symfony/http-foundation": "^3.4|^4.0", + "symfony/service-contracts": "^1.1", "symfony/stopwatch": "~3.4|~4.0" }, "suggest": { @@ -4697,7 +4686,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4724,20 +4713,78 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2019-04-06T13:51:08+00:00" + "time": "2019-05-30T16:10:05+00:00" }, { - "name": "symfony/filesystem", - "version": "v4.2.8", + "name": "symfony/event-dispatcher-contracts", + "version": "v1.1.1", "source": { "type": "git", - "url": "https://github.com/symfony/filesystem.git", - "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601" + "url": "https://github.com/symfony/event-dispatcher-contracts.git", + "reference": "8fa2cf2177083dd59cf8e44ea4b6541764fbda69" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/filesystem/zipball/e16b9e471703b2c60b95f14d31c1239f68f11601", - "reference": "e16b9e471703b2c60b95f14d31c1239f68f11601", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8fa2cf2177083dd59cf8e44ea4b6541764fbda69", + "reference": "8fa2cf2177083dd59cf8e44ea4b6541764fbda69", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "suggest": { + "psr/event-dispatcher": "", + "symfony/event-dispatcher-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\EventDispatcher\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to dispatching event", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-05-22T12:23:29+00:00" + }, + { + "name": "symfony/filesystem", + "version": "v4.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/filesystem.git", + "reference": "bf2af40d738dec5e433faea7b00daa4431d0a4cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/bf2af40d738dec5e433faea7b00daa4431d0a4cf", + "reference": "bf2af40d738dec5e433faea7b00daa4431d0a4cf", "shasum": "" }, "require": { @@ -4747,7 +4794,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4774,7 +4821,7 @@ ], "description": "Symfony Filesystem Component", "homepage": "https://symfony.com", - "time": "2019-02-07T11:40:08+00:00" + "time": "2019-06-03T20:27:40+00:00" }, { "name": "symfony/polyfill-mbstring", @@ -4836,23 +4883,139 @@ "time": "2019-02-06T07:57:58+00:00" }, { - "name": "symfony/translation", - "version": "v4.2.8", + "name": "symfony/polyfill-php73", + "version": "v1.11.0", "source": { "type": "git", - "url": "https://github.com/symfony/translation.git", - "reference": "181a426dd129cb496f12d7e7555f6d0b37a7615b" + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/181a426dd129cb496f12d7e7555f6d0b37a7615b", - "reference": "181a426dd129cb496f12d7e7555f6d0b37a7615b", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/d1fb4abcc0c47be136208ad9d68bf59f1ee17abd", + "reference": "d1fb4abcc0c47be136208ad9d68bf59f1ee17abd", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.11-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "time": "2019-02-06T07:57:58+00:00" + }, + { + "name": "symfony/service-contracts", + "version": "v1.1.2", + "source": { + "type": "git", + "url": "https://github.com/symfony/service-contracts.git", + "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0", + "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "suggest": { + "psr/container": "", + "symfony/service-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Service\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to writing services", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-05-28T07:50:59+00:00" + }, + { + "name": "symfony/translation", + "version": "v4.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/translation.git", + "reference": "5dda505e5f65d759741dfaf4e54b36010a4b57aa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/translation/zipball/5dda505e5f65d759741dfaf4e54b36010a4b57aa", + "reference": "5dda505e5f65d759741dfaf4e54b36010a4b57aa", "shasum": "" }, "require": { "php": "^7.1.3", - "symfony/contracts": "^1.0.2", - "symfony/polyfill-mbstring": "~1.0" + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^1.1.2" }, "conflict": { "symfony/config": "<3.4", @@ -4860,7 +5023,7 @@ "symfony/yaml": "<3.4" }, "provide": { - "symfony/translation-contracts-implementation": "1.0" + "symfony/translation-implementation": "1.0" }, "require-dev": { "psr/log": "~1.0", @@ -4870,6 +5033,7 @@ "symfony/finder": "~2.8|~3.0|~4.0", "symfony/http-kernel": "~3.4|~4.0", "symfony/intl": "~3.4|~4.0", + "symfony/service-contracts": "^1.1.2", "symfony/var-dumper": "~3.4|~4.0", "symfony/yaml": "~3.4|~4.0" }, @@ -4881,7 +5045,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4908,20 +5072,77 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2019-05-01T12:55:36+00:00" + "time": "2019-06-03T20:27:40+00:00" }, { - "name": "symfony/yaml", - "version": "v4.2.8", + "name": "symfony/translation-contracts", + "version": "v1.1.2", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "93597ce975d91c52ebfaca1253343cd9ccb7916d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/6712daf03ee25b53abb14e7e8e0ede1a770efdb1", - "reference": "6712daf03ee25b53abb14e7e8e0ede1a770efdb1", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/93597ce975d91c52ebfaca1253343cd9ccb7916d", + "reference": "93597ce975d91c52ebfaca1253343cd9ccb7916d", + "shasum": "" + }, + "require": { + "php": "^7.1.3" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "time": "2019-05-27T08:16:38+00:00" + }, + { + "name": "symfony/yaml", + "version": "v4.3.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "c60ecf5ba842324433b46f58dc7afc4487dbab99" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/c60ecf5ba842324433b46f58dc7afc4487dbab99", + "reference": "c60ecf5ba842324433b46f58dc7afc4487dbab99", "shasum": "" }, "require": { @@ -4940,7 +5161,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4967,20 +5188,20 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-03-30T15:58:42+00:00" + "time": "2019-04-06T14:04:46+00:00" }, { "name": "theseer/tokenizer", - "version": "1.1.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8" + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/1c42705be2b6c1de5904f8afacef5895cab44bf8", - "reference": "1c42705be2b6c1de5904f8afacef5895cab44bf8", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", "shasum": "" }, "require": { @@ -5007,7 +5228,7 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2019-04-04T09:56:43+00:00" + "time": "2019-06-13T22:48:21+00:00" }, { "name": "webmozart/assert", diff --git a/include/attach.php b/include/attach.php index 96a05f0f1..9214a5a6d 100644 --- a/include/attach.php +++ b/include/attach.php @@ -1487,8 +1487,8 @@ function attach_delete($channel_id, $resource, $is_photo = 0) { intval($channel_id) ); - $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo]; - call_hooks("attach_delete",$arr); + $arr = ['channel_id' => $channel_id, 'resource' => $resource, 'is_photo'=>$is_photo]; + call_hooks("attach_delete",$arr); file_activity($channel_id, $object, $object['allow_cid'], $object['allow_gid'], $object['deny_cid'], $object['deny_gid'], 'update', true); @@ -1498,7 +1498,7 @@ function attach_delete($channel_id, $resource, $is_photo = 0) { function attach_drop_photo($channel_id,$resource) { - $x = q("select id, item_hidden from item where resource_id = '%s' and resource_type = 'photo' and uid = %d", + $x = q("select id, item_hidden from item where resource_id = '%s' and resource_type = 'photo' and uid = %d and item_deleted = 0", dbesc($resource), intval($channel_id) ); diff --git a/include/items.php b/include/items.php index 0fd0af726..93c7c7719 100644 --- a/include/items.php +++ b/include/items.php @@ -1842,10 +1842,13 @@ function item_store($arr, $allow_exec = false, $deliver = true, $linkid = true) } - if(strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid)) - $private = 1; - else - $private = $arr['item_private']; + $private = intval($arr['item_private']); + + if (! $private) { + if (strlen($allow_cid) || strlen($allow_gid) || strlen($deny_cid) || strlen($deny_gid)) { + $private = 1; + } + } $arr['parent'] = $parent_id; $arr['allow_cid'] = $allow_cid; @@ -2881,9 +2884,12 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $edit = false) $arr['item_uplink'] = 1; $arr['source_xchan'] = $item['owner_xchan']; - $arr['item_private'] = (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] - || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 1 : 0); + $arr['item_private'] = $item['item_private']; + if(! intval($arr['item_private'])) { + $arr['item_private'] = (($channel['channel_allow_cid'] || $channel['channel_allow_gid'] + || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 1 : 0); + } $arr['item_origin'] = 1; $arr['item_wall'] = 1; @@ -3387,8 +3393,6 @@ function drop_item($id,$interactive = true,$stage = DROPITEM_NORMAL,$force = fal // logger('dropped_item: ' . print_r($item,true),LOGGER_ALL); - $linked_item = (($item['resource_id'] && $item['resource_type'] && in_array($item['resource_type'], $linked_resource_types)) ? true : false); - $ok_to_delete = false; // system deletion @@ -3411,19 +3415,9 @@ function drop_item($id,$interactive = true,$stage = DROPITEM_NORMAL,$force = fal if($ok_to_delete) { - // set the deleted flag immediately on this item just in case the - // hook calls a remote process which loops. We'll delete it properly in a second. - - if(($linked_item) && (! $force)) { - $r = q("UPDATE item SET item_hidden = 1 WHERE id = %d", - intval($item['id']) - ); - } - else { - $r = q("UPDATE item SET item_deleted = 1 WHERE id = %d", - intval($item['id']) - ); - } + $r = q("UPDATE item SET item_deleted = 1 WHERE id = %d", + intval($item['id']) + ); if ($item['resource_type'] === 'event' ) { q("delete from event where event_hash = '%s' and uid = %d", @@ -3432,6 +3426,10 @@ function drop_item($id,$interactive = true,$stage = DROPITEM_NORMAL,$force = fal ); } + if ($item['resource_type'] === 'photo' ) { + attach_delete($item['uid'],$item['resource_id'],true); + } + $arr = [ 'item' => $item, 'interactive' => $interactive, @@ -3494,7 +3492,6 @@ function drop_item($id,$interactive = true,$stage = DROPITEM_NORMAL,$force = fal */ function delete_item_lowlevel($item, $stage = DROPITEM_NORMAL, $force = false) { - $linked_item = (($item['resource_id'] && in_array($item['resource_type'],['photo'])) ? true : false); logger('item: ' . $item['id'] . ' stage: ' . $stage . ' force: ' . $force, LOGGER_DATA); @@ -3509,39 +3506,19 @@ function delete_item_lowlevel($item, $stage = DROPITEM_NORMAL, $force = false) { break; case DROPITEM_PHASE1: - if($linked_item && ! $force) { - $r = q("UPDATE item SET item_hidden = 1, - changed = '%s', edited = '%s' WHERE id = %d", - dbesc(datetime_convert()), - dbesc(datetime_convert()), - intval($item['id']) - ); - } - else { - $r = q("UPDATE item set item_deleted = 1, changed = '%s', edited = '%s' where id = %d", - dbesc(datetime_convert()), - dbesc(datetime_convert()), - intval($item['id']) - ); - } + $r = q("UPDATE item set item_deleted = 1, changed = '%s', edited = '%s' where id = %d", + dbesc(datetime_convert()), + dbesc(datetime_convert()), + intval($item['id']) + ); break; case DROPITEM_NORMAL: default: - if($linked_item && ! $force) { - $r = q("UPDATE item SET item_hidden = 1, - changed = '%s', edited = '%s' WHERE id = %d", - dbesc(datetime_convert()), - dbesc(datetime_convert()), - intval($item['id']) - ); - } - else { - $r = q("DELETE FROM item WHERE id = %d", - intval($item['id']) - ); - } + $r = q("DELETE FROM item WHERE id = %d", + intval($item['id']) + ); break; } @@ -4304,12 +4281,12 @@ function set_linkified_perms($linkified, &$str_contact_allow, &$str_group_allow, if(strpos($access_tag,'cid:') === 0) { $str_contact_allow .= '<' . substr($access_tag,4) . '>'; $access_tag = ''; - $private = 1; + $private = 2; } elseif(strpos($access_tag,'gid:') === 0) { $str_group_allow .= '<' . substr($access_tag,4) . '>'; $access_tag = ''; - $private = 1; + $private = 2; } } } diff --git a/include/language.php b/include/language.php index 69a7e3004..8ab79b6dd 100644 --- a/include/language.php +++ b/include/language.php @@ -158,10 +158,7 @@ function load_translation_table($lang, $install = false) { App::$strings = array(); - if(file_exists("view/$lang/hstrings.php")) { - include("view/$lang/hstrings.php"); - } - elseif(file_exists("view/$lang/strings.php")) { + if(file_exists("view/$lang/strings.php")) { include("view/$lang/strings.php"); } @@ -170,10 +167,7 @@ function load_translation_table($lang, $install = false) { if ($plugins !== false) { foreach($plugins as $p) { $name = $p['aname']; - if(file_exists("addon/$name/lang/$lang/hstrings.php")) { - include("addon/$name/lang/$lang/hstrings.php"); - } - elseif(file_exists("addon/$name/lang/$lang/strings.php")) { + if(file_exists("addon/$name/lang/$lang/strings.php")) { include("addon/$name/lang/$lang/strings.php"); } } @@ -183,10 +177,7 @@ function load_translation_table($lang, $install = false) { // Allow individual strings to be over-ridden on this site // Either for the default language or for all languages - if(file_exists("view/local-$lang/hstrings.php")) { - include("view/local-$lang/hstrings.php"); - } - elseif(file_exists("view/local-$lang/strings.php")) { + if(file_exists("view/local-$lang/strings.php")) { include("view/local-$lang/strings.php"); } } @@ -362,13 +353,13 @@ function get_language_name($s, $l = null) { function language_list() { - $langs = glob('view/*/hstrings.php'); + $langs = glob('view/*/strings.php'); $lang_options = array(); $selected = ""; if(is_array($langs) && count($langs)) { - if(! in_array('view/en/hstrings.php',$langs)) + if(! in_array('view/en/strings.php',$langs)) $langs[] = 'view/en/'; asort($langs); foreach($langs as $l) { @@ -382,14 +373,14 @@ function language_list() { function lang_selector() { - $langs = glob('view/*/hstrings.php'); + $langs = glob('view/*/strings.php'); $lang_options = array(); $selected = ""; if(is_array($langs) && count($langs)) { $langs[] = ''; - if(! in_array('view/en/hstrings.php',$langs)) + if(! in_array('view/en/strings.php',$langs)) $langs[] = 'view/en/'; asort($langs); foreach($langs as $l) { diff --git a/include/oembed.php b/include/oembed.php index b1b9502ca..f5b06c043 100644 --- a/include/oembed.php +++ b/include/oembed.php @@ -258,7 +258,7 @@ function oembed_fetch_url($embedurl){ $j['html'] = purify_html($j['html'],$allow_position); if($j['html'] != $orig) { - logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j['html'], LOGGER_DEBUG, LOG_INFO); + // logger('oembed html was purified. original: ' . $orig . ' purified: ' . $j['html'], LOGGER_DEBUG, LOG_INFO); } $orig_len = mb_strlen(preg_replace('/\s+/','',$orig)); diff --git a/include/photos.php b/include/photos.php index e6017f41e..a1d95d416 100644 --- a/include/photos.php +++ b/include/photos.php @@ -399,6 +399,8 @@ function photo_upload($channel, $observer, $args) { $summary = (($args['body']) ? $args['body'] : '') . '[footer]' . $activity_format . '[/footer]'; + // If uploaded into a post, this is the text that is returned to the webapp for inclusion in the post. + $obj_body = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']' . $tag . z_root() . "/photo/{$photo_hash}-{$scale}." . $ph->getExt() . '[/zmg]' . '[/zrl]'; @@ -413,8 +415,8 @@ function photo_upload($channel, $observer, $args) { // This is a placeholder and will get over-ridden by the item mid, which is critical for sharing as a conversational item over activitypub 'id' => z_root() . '/photo/' . $photo_hash, 'url' => $url, - 'source' => [ 'content' => $obj_body, 'mediaType' => 'text/bbcode' ], - 'content' => bbcode($obj_body) + 'source' => [ 'content' => $summary, 'mediaType' => 'text/bbcode' ], + 'content' => bbcode($summary) ]; // @FIXME - update to collection diff --git a/include/taxonomy.php b/include/taxonomy.php index 4990c2569..920475bc8 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -376,7 +376,7 @@ function pub_tagadelic($net,$site,$limit,$recent,$safemode,$type) { } -function dir_tagadelic($count = 0, $hub = '', $type = 0) { +function dir_tagadelic($count = 0, $hub = '', $type = 0, $safe = '') { $count = intval($count); @@ -397,8 +397,8 @@ function dir_tagadelic($count = 0, $hub = '', $type = 0) { ); } else { - $r = q("select xtag_term as term, count(xtag_term) as total from xtag where xtag_flags = 0 - $sql_extra + $r = q("select xtag_term as term, count(xtag_term) as total from xtag left join xchan on xtag_hash = xchan_hash where xtag_flags = 0 + $sql_extra $safe group by xtag_term order by total desc %s", ((intval($count)) ? "limit $count" : '') ); diff --git a/util/hmessages.po b/util/hmessages.po deleted file mode 100644 index efc7a318c..000000000 --- a/util/hmessages.po +++ /dev/null @@ -1,11810 +0,0 @@ -# zap -# Copyright (C) 2012-2016 zap -# This file is distributed under the same license as the zap package. -# Mike Macgirvin, 2012 -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: 2.3\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-02-17 14:59-0800\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../../Zotlabs/Access/PermissionRoles.php:126 -msgid "Social Networking" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:127 -msgid "Social - Normal" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:128 -msgid "Social - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:131 -msgid "Community Group" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:132 -msgid "Group - Normal" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:133 -msgid "Group - Restricted" -msgstr "" - -#: ../../Zotlabs/Access/PermissionRoles.php:136 -#: ../../Zotlabs/Access/PermissionRoles.php:137 -msgid "Feed Republish" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can post on my channel (wall) page" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can comment on or like my posts" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can like/dislike profiles and profile things" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can source my public posts in derived channels" -msgstr "" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can administer my channel" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:25 -msgid "Missing room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:34 -msgid "Duplicate room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 -msgid "Invalid room specifier." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:124 -msgid "Room not found." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:135 ../../Zotlabs/Module/Defperms.php:164 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Appman.php:87 -#: ../../Zotlabs/Module/Block.php:23 ../../Zotlabs/Module/Block.php:73 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Cards.php:81 -#: ../../Zotlabs/Module/Channel.php:191 ../../Zotlabs/Module/Channel.php:358 -#: ../../Zotlabs/Module/Channel.php:397 ../../Zotlabs/Module/Cloud.php:40 -#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Connections.php:28 -#: ../../Zotlabs/Module/Alist.php:12 ../../Zotlabs/Module/Alist.php:24 -#: ../../Zotlabs/Module/Cover_photo.php:324 -#: ../../Zotlabs/Module/Cover_photo.php:337 -#: ../../Zotlabs/Module/Display.php:453 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Editpost.php:15 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 -#: ../../Zotlabs/Module/Filestorage.php:18 -#: ../../Zotlabs/Module/Filestorage.php:73 -#: ../../Zotlabs/Module/Filestorage.php:99 -#: ../../Zotlabs/Module/Filestorage.php:143 -#: ../../Zotlabs/Module/Events.php:272 ../../Zotlabs/Module/Connedit.php:335 -#: ../../Zotlabs/Module/Item.php:441 ../../Zotlabs/Module/Item.php:460 -#: ../../Zotlabs/Module/Item.php:470 ../../Zotlabs/Module/Item.php:1347 -#: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:129 -#: ../../Zotlabs/Module/Menu.php:140 ../../Zotlabs/Module/Message.php:17 -#: ../../Zotlabs/Module/Photos.php:68 ../../Zotlabs/Module/Moderate.php:15 -#: ../../Zotlabs/Module/Mood.php:122 ../../Zotlabs/Module/Chat.php:111 -#: ../../Zotlabs/Module/Chat.php:116 ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Module/Setup.php:218 ../../Zotlabs/Module/Mitem.php:129 -#: ../../Zotlabs/Module/Network.php:17 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Pdledit.php:30 -#: ../../Zotlabs/Module/Profiles.php:200 ../../Zotlabs/Module/Profiles.php:634 -#: ../../Zotlabs/Module/Poke.php:155 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Profile_photo.php:307 -#: ../../Zotlabs/Module/Profile_photo.php:320 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Thing.php:282 ../../Zotlabs/Module/Thing.php:302 -#: ../../Zotlabs/Module/Thing.php:343 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:59 -#: ../../Zotlabs/Module/Settings/Features.php:39 -#: ../../Zotlabs/Module/Profile.php:119 ../../Zotlabs/Module/Profile.php:135 -#: ../../Zotlabs/Module/Sharedwithme.php:16 -#: ../../Zotlabs/Module/Sources.php:77 ../../Zotlabs/Module/Viewsrc.php:19 -#: ../../Zotlabs/Module/Webpages.php:133 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Web/WebServer.php:123 ../../include/items.php:3533 -#: ../../include/photos.php:26 ../../include/attach.php:153 -#: ../../include/attach.php:200 ../../include/attach.php:273 -#: ../../include/attach.php:382 ../../include/attach.php:396 -#: ../../include/attach.php:403 ../../include/attach.php:481 -#: ../../include/attach.php:1041 ../../include/attach.php:1115 -#: ../../include/attach.php:1280 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:51 -#: ../../extend/addon/a/articles/Mod_Articles.php:76 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:58 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:280 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:417 -msgid "Permission denied." -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:145 -msgid "Room is full" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../Zotlabs/Lib/Libsync.php:836 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:72 -msgctxt "permcat" -msgid "default" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:123 -msgctxt "permcat" -msgid "follower" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:127 -msgctxt "permcat" -msgid "contributor" -msgstr "" - -#: ../../Zotlabs/Lib/Permcat.php:131 -msgctxt "permcat" -msgid "publisher" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 -msgid "Visible to your default audience" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:106 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:28 -msgid "" -"A deleted list with this name was revived. Existing item permissions " -"may apply to this list and any future members. If this is " -"not what you intended, please create another list with a different name." -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:270 -msgid "Add new connections to this access list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:298 -msgid "edit" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:320 ../../Zotlabs/Lib/Apps.php:346 -#: ../../Zotlabs/Module/Alist.php:113 ../../Zotlabs/Module/Alist.php:124 -#: ../../Zotlabs/Widget/Activity_filter.php:67 ../../include/nav.php:90 -msgid "Access Lists" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:321 -msgid "Edit list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:322 -msgid "Create new list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:323 -msgid "Channels not in any access list" -msgstr "" - -#: ../../Zotlabs/Lib/AccessList.php:325 -#: ../../Zotlabs/Widget/Savedsearch.php:84 -msgid "add" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1288 ../../Zotlabs/Lib/Apps.php:1015 -#: ../../Zotlabs/Lib/Apps.php:1100 ../../Zotlabs/Module/Cdav.php:811 -#: ../../Zotlabs/Module/Cdav.php:812 ../../Zotlabs/Module/Cdav.php:819 -#: ../../Zotlabs/Module/Embedphotos.php:148 -#: ../../Zotlabs/Module/Photos.php:722 ../../Zotlabs/Module/Photos.php:1173 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Portfolio.php:95 ../../include/conversation.php:1116 -msgid "Unknown" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1842 -#, php-format -msgid "Likes %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1845 -#, php-format -msgid "Doesn't like %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1848 -#, php-format -msgid "Will attend %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1851 -#, php-format -msgid "Will not attend %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1854 -#, php-format -msgid "May attend %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:1857 ../../Zotlabs/Module/Share.php:101 -#: ../../include/items.php:2959 -#, php-format -msgid "🔁 Repeated %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2451 ../../Zotlabs/Lib/Activity.php:2646 -#: ../../include/network.php:1926 -msgid "ActivityPub" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2602 ../../Zotlabs/Module/Like.php:332 -#: ../../Zotlabs/Module/Subthread.php:110 ../../Zotlabs/Module/Tagger.php:71 -#: ../../include/text.php:2038 ../../include/conversation.php:114 -msgid "photo" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2602 ../../Zotlabs/Module/Like.php:332 -#: ../../Zotlabs/Module/Subthread.php:110 ../../include/text.php:2044 -#: ../../include/conversation.php:142 -msgid "status" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2637 ../../Zotlabs/Module/Like.php:363 -#: ../../include/conversation.php:158 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Activity.php:2639 ../../Zotlabs/Module/Like.php:365 -#: ../../include/conversation.php:161 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:304 -msgid "Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:305 -#: ../../Zotlabs/Module/Settings/Network.php:100 -#: ../../include/features.php:430 -msgid "Affinity Tool" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:306 ../../include/features.php:136 -#: ../../include/nav.php:484 ../../extend/addon/a/articles/Mod_Articles.php:44 -#: ../../extend/addon/a/articles/Mod_Articles.php:213 -msgid "Articles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:307 ../../Zotlabs/Module/Cards.php:203 -#: ../../include/conversation.php:1922 ../../include/nav.php:473 -msgid "Cards" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:308 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:309 -msgid "Content Filter" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:310 -msgid "Report Bug" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:311 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:312 ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1896 ../../include/conversation.php:1899 -#: ../../include/nav.php:449 ../../include/nav.php:452 -msgid "Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:313 ../../Zotlabs/Module/Connections.php:331 -#: ../../Zotlabs/Module/Connedit.php:662 ../../Zotlabs/Widget/Affinity.php:28 -#: ../../include/text.php:979 -msgid "Connections" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:314 -msgid "Remote Diagnostics" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:315 -#: ../../Zotlabs/Module/Settings/Network.php:108 -#: ../../include/features.php:439 -msgid "Suggest Channels" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:316 ../../include/nav.php:113 -#: ../../include/nav.php:117 ../../boot.php:1598 -msgid "Login" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:317 ../../Zotlabs/Module/Manage.php:171 -#: ../../include/nav.php:87 -msgid "Channel Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:318 -msgid "Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:319 ../../Zotlabs/Module/Admin/Addons.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:119 ../../include/nav.php:92 -msgid "Settings" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:320 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1871 -#: ../../include/nav.php:424 -msgid "Files" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:321 ../../Zotlabs/Module/Webpages.php:252 -#: ../../include/conversation.php:1944 ../../include/nav.php:496 -msgid "Webpages" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:322 ../../include/conversation.php:1960 -#: ../../include/nav.php:511 -msgid "Wiki" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:323 -msgid "Channel Home" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:324 ../../Zotlabs/Module/Connedit.php:543 -#: ../../include/nav.php:101 -msgid "View Profile" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:325 ../../Zotlabs/Module/Fbrowser.php:29 -#: ../../include/conversation.php:1863 ../../include/nav.php:416 -msgid "Photos" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:326 ../../include/conversation.php:1882 -#: ../../include/conversation.php:1885 -msgid "Events" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:327 -msgid "Directory" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:328 ../../Zotlabs/Module/Layouts.php:186 -#: ../../include/help.php:117 ../../include/help.php:125 -#: ../../include/nav.php:163 ../../include/nav.php:298 -msgid "Help" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:329 -msgid "Mail" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:330 ../../Zotlabs/Module/Mood.php:150 -msgid "Mood" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:331 ../../Zotlabs/Module/Poke.php:197 -msgid "Poke" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:332 -msgid "Chat" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/acl_selectors.php:118 ../../include/text.php:1066 -#: ../../include/text.php:1078 ../../include/nav.php:178 -msgid "Search" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:334 ../../Zotlabs/Widget/Stream_order.php:129 -msgid "Stream Order" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:336 -msgid "Suggest" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:337 -msgid "Random Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:338 -msgid "Invite" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Features" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:340 -msgid "Language" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:341 -msgid "Post" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:342 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:51 -msgid "ZotPost" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:343 -msgid "Profile Photo" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:344 ../../Zotlabs/Module/Profperm.php:113 -#: ../../include/channel.php:1667 -msgid "Profile" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:345 -msgid "Profiles" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:347 -msgid "Notifications" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:348 -msgid "Order Apps" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:349 -msgid "CalDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:350 -msgid "CardDAV" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:351 ../../Zotlabs/Module/Sources.php:99 -#: ../../Zotlabs/Widget/Settings_menu.php:111 -msgid "Channel Sources" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:352 -msgid "Gallery" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:353 -msgid "Guest Access" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:354 ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:355 -msgid "OAuth Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:356 -msgid "OAuth2 Apps Manager" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:357 -msgid "PDL Editor" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:358 -#: ../../Zotlabs/Module/Settings/Permcats.php:100 -#: ../../Zotlabs/Widget/Settings_menu.php:94 -msgid "Permission Categories" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:359 -msgid "Premium Channel" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:360 ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Public Stream" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:361 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:362 -#: ../../extend/addon/a/file_import/Mod_file_import.php:83 -msgid "File Storage Import" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:522 ../../Zotlabs/Module/Admin/Addons.php:453 -#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:859 -#: ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Settings/Oauth2.php:49 -#: ../../Zotlabs/Module/Settings/Oauth2.php:123 -msgid "Update" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:522 ../../Zotlabs/Module/Admin/Addons.php:422 -msgid "Install" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:539 -msgid "Purchase" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:542 ../../Zotlabs/Lib/ThreadItem.php:165 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Module/Connections.php:280 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Alist.php:216 -#: ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Thing.php:268 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Settings/Oauth2.php:173 -#: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Storage/Browser.php:290 -#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 -#: ../../include/channel.php:1317 ../../include/channel.php:1321 -#: ../../include/menu.php:121 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:99 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:209 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:373 -msgid "Edit" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:543 ../../Zotlabs/Lib/ThreadItem.php:189 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Module/Cdav.php:940 ../../Zotlabs/Module/Cdav.php:1230 -#: ../../Zotlabs/Module/Connections.php:288 -#: ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Connedit.php:603 ../../Zotlabs/Module/Connedit.php:860 -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Module/Thing.php:269 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Settings/Oauth2.php:174 -#: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Storage/Browser.php:291 -#: ../../include/conversation.php:677 ../../include/conversation.php:722 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:131 -msgid "Delete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:544 -msgid "Undelete" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:553 -msgid "Add to app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:554 -msgid "Remove from app-tray" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:555 -msgid "Pin to navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:556 -msgid "Unpin from navbar" -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:41 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:46 -msgid "Channel location missing." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:98 -msgid "Remote channel or protocol unavailable." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:133 -msgid "Channel discovery failed." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:142 -msgid "Protocol not supported" -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:151 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../Zotlabs/Lib/Connect.php:246 -msgid "error saving data" -msgstr "" - -#: ../../Zotlabs/Lib/Libzot.php:660 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:61 -msgid "$projectname" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:65 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:89 -#: ../../Zotlabs/Module/Home.php:97 -msgid "$Projectname" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:588 -msgid "Notification Settings" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "reacted to %s's conversation" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:811 -#, php-format -msgid "shared %s's post" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:819 -#, php-format -msgid "edited a post dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:823 -#, php-format -msgid "edited a comment dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../include/conversation.php:686 -msgid "Private Message" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:145 -msgid "Privacy conflict. Discretion advised." -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 ../../Zotlabs/Storage/Browser.php:280 -msgid "Admin Delete" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:199 ../../include/conversation.php:676 -msgid "Select" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:203 ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:227 -msgid "I will attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:227 -msgid "I will not attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:227 -msgid "I might attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:237 -msgid "I agree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:237 -msgid "I disagree" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:237 -msgid "I abstain" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:256 ../../Zotlabs/Lib/ThreadItem.php:268 -#: ../../Zotlabs/Module/Photos.php:1055 ../../Zotlabs/Module/Photos.php:1067 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:260 ../../Zotlabs/Module/Photos.php:1059 -#: ../../include/taxonomy.php:661 ../../include/channel.php:1562 -#: ../../include/conversation.php:2010 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:265 ../../Zotlabs/Module/Photos.php:1064 -#: ../../include/conversation.php:2013 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:291 ../../include/conversation.php:681 -msgid "Toggle Star Status" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:302 ../../include/conversation.php:693 -msgid "Message signature validated" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:303 ../../include/conversation.php:694 -msgid "Message signature incorrect" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:311 -msgid "Add Tag" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../Zotlabs/Module/Photos.php:1000 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../include/taxonomy.php:575 -msgid "like" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:330 ../../Zotlabs/Module/Photos.php:1001 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:330 ../../include/taxonomy.php:576 -msgid "dislike" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:334 -msgid "Repeat This" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:335 -msgid "Share this" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:345 -msgid "Delivery Report" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:368 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Lib/ThreadItem.php:399 ../../Zotlabs/Lib/ThreadItem.php:400 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:403 -msgid "to" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:404 ../../include/conversation.php:751 -msgid "via" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:405 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:406 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:420 ../../include/conversation.php:754 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/conversation.php:757 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:424 ../../include/conversation.php:758 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:432 -msgid "Attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:433 -msgid "Attendance Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:434 -msgid "Vote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:435 -msgid "Voting Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:436 -msgid "Reply" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:458 -msgid "Save Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:459 -msgid "Add to Calendar" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:469 -#: ../../Zotlabs/Module/Notifications.php:60 -msgid "Mark all seen" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:476 ../../Zotlabs/Module/Photos.php:1187 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:477 ../../Zotlabs/Module/Photos.php:1188 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:482 ../../Zotlabs/Module/Photos.php:1193 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:487 ../../include/conversation.php:460 -msgid "This is an unsaved preview" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:488 ../../Zotlabs/Module/Photos.php:1003 -#: ../../include/conversation.php:775 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:546 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:884 ../../Zotlabs/Module/Photos.php:1019 -#: ../../Zotlabs/Module/Photos.php:1137 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:886 ../../Zotlabs/Module/Photos.php:1021 -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:887 ../../Zotlabs/Module/Defperms.php:239 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Addons.php:438 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:290 -#: ../../Zotlabs/Module/Admin/Security.php:151 -#: ../../Zotlabs/Module/Affinity.php:61 ../../Zotlabs/Module/Appman.php:154 -#: ../../Zotlabs/Module/Cal.php:343 ../../Zotlabs/Module/Alist.php:121 -#: ../../Zotlabs/Module/Alist.php:137 ../../Zotlabs/Module/Editpost.php:83 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Module/Events.php:494 ../../Zotlabs/Module/Connedit.php:824 -#: ../../Zotlabs/Module/Import.php:552 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Invite.php:168 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Photos.php:982 ../../Zotlabs/Module/Photos.php:1022 -#: ../../Zotlabs/Module/Photos.php:1140 ../../Zotlabs/Module/Mood.php:154 -#: ../../Zotlabs/Module/Chat.php:204 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Setup.php:318 ../../Zotlabs/Module/Setup.php:361 -#: ../../Zotlabs/Module/Mitem.php:259 ../../Zotlabs/Module/Pconfig.php:120 -#: ../../Zotlabs/Module/Pdledit.php:111 ../../Zotlabs/Module/Profiles.php:722 -#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Thing.php:328 -#: ../../Zotlabs/Module/Thing.php:381 -#: ../../Zotlabs/Module/Settings/Account.php:104 -#: ../../Zotlabs/Module/Settings/Display.php:186 -#: ../../Zotlabs/Module/Settings/Featured.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:80 -#: ../../Zotlabs/Module/Settings/Network.php:41 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:95 -#: ../../Zotlabs/Module/Settings/Permcats.php:116 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Settings/Channel.php:530 -#: ../../Zotlabs/Module/Sources.php:117 ../../Zotlabs/Module/Sources.php:154 -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Content_filter.php:66 -#: ../../Zotlabs/Widget/Eventstools.php:16 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../extend/addon/a/file_import/Mod_file_import.php:88 -#: ../../extend/addon/a/logrot/logrot.php:36 -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 -#: ../../extend/addon/a/superblock/Mod_Superblock.php:100 -#: ../../extend/addon/a/wiki/Wiki_pages.php:41 -#: ../../extend/addon/a/wiki/Wiki_pages.php:98 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:213 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:79 -msgid "Submit" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:888 -msgid "Add Conversation Mentions" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:889 ../../include/conversation.php:1356 -#: ../../extend/addon/a/hsse/hsse.php:199 -msgid "Bold" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:890 ../../include/conversation.php:1357 -#: ../../extend/addon/a/hsse/hsse.php:200 -msgid "Italic" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:891 ../../include/conversation.php:1358 -#: ../../extend/addon/a/hsse/hsse.php:201 -msgid "Underline" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:892 ../../include/conversation.php:1359 -#: ../../extend/addon/a/hsse/hsse.php:202 -msgid "Quote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:893 ../../include/conversation.php:1360 -#: ../../extend/addon/a/hsse/hsse.php:203 -msgid "Code" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:894 -msgid "Image" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:895 ../../include/conversation.php:1361 -#: ../../extend/addon/a/hsse/hsse.php:204 -msgid "Attach/Upload file" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:896 -msgid "Insert Link" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:897 -msgid "Video" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:898 ../../Zotlabs/Module/Events.php:479 -#: ../../Zotlabs/Module/Photos.php:1023 ../../Zotlabs/Module/Webpages.php:262 -#: ../../include/conversation.php:1309 ../../extend/addon/a/hsse/hsse.php:152 -msgid "Preview" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:902 ../../Zotlabs/Module/Chat.php:212 -#: ../../include/conversation.php:1411 ../../extend/addon/a/hsse/hsse.php:254 -msgid "Encrypt text" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:907 -msgid "Your full name (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:908 -msgid "Your email address (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:909 -msgid "Your website URL (optional)" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:159 -msgid "Directory Options" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:161 -msgid "Safe Mode" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:161 ../../Zotlabs/Lib/Libzotdir.php:162 -#: ../../Zotlabs/Lib/Libzotdir.php:164 ../../Zotlabs/Module/Defperms.php:171 -#: ../../Zotlabs/Module/Admin/Site.php:255 ../../Zotlabs/Module/Api.php:99 -#: ../../Zotlabs/Module/Filestorage.php:181 -#: ../../Zotlabs/Module/Filestorage.php:189 -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Connedit.php:342 ../../Zotlabs/Module/Connedit.php:720 -#: ../../Zotlabs/Module/Import.php:541 ../../Zotlabs/Module/Import.php:545 -#: ../../Zotlabs/Module/Import.php:546 ../../Zotlabs/Module/Menu.php:162 -#: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Photos.php:602 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Profiles.php:680 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings/Display.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:323 -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -#: ../../Zotlabs/Storage/Browser.php:405 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:225 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:226 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 ../../boot.php:1603 -msgid "No" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:161 ../../Zotlabs/Lib/Libzotdir.php:162 -#: ../../Zotlabs/Lib/Libzotdir.php:164 ../../Zotlabs/Module/Defperms.php:171 -#: ../../Zotlabs/Module/Admin/Site.php:257 ../../Zotlabs/Module/Api.php:98 -#: ../../Zotlabs/Module/Filestorage.php:181 -#: ../../Zotlabs/Module/Filestorage.php:189 -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Connedit.php:342 ../../Zotlabs/Module/Import.php:541 -#: ../../Zotlabs/Module/Import.php:545 ../../Zotlabs/Module/Import.php:546 -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Photos.php:602 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Profiles.php:680 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings/Display.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:323 -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -#: ../../Zotlabs/Storage/Browser.php:405 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:225 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:226 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 ../../boot.php:1603 -msgid "Yes" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:162 -msgid "Public Groups Only" -msgstr "" - -#: ../../Zotlabs/Lib/Libzotdir.php:164 -msgid "This Website Only" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:59 ../../Zotlabs/Module/Connedit.php:84 -msgid "Could not access contact record." -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:94 -#: ../../Zotlabs/Module/Settings/Channel.php:280 -#: ../../extend/addon/a/logrot/logrot.php:55 -msgid "Settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:228 ../../Zotlabs/Module/Connedit.php:787 -#: ../../Zotlabs/Widget/Settings_menu.php:103 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:229 ../../Zotlabs/Module/Connedit.php:788 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:229 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:230 ../../Zotlabs/Module/Connedit.php:789 -msgid "Permission role" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:230 ../../Zotlabs/Module/Connedit.php:789 -#: ../../Zotlabs/Module/New_channel.php:154 -#: ../../Zotlabs/Module/New_channel.php:161 -#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:302 -msgid "Loading" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:231 ../../Zotlabs/Module/Connedit.php:790 -msgid "Add permission role" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:235 ../../Zotlabs/Module/Connedit.php:803 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:236 -msgid "Automatic approval settings" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:238 ../../Zotlabs/Module/Connedit.php:823 -#: ../../Zotlabs/Module/Settings/Permcats.php:111 -#: ../../Zotlabs/Module/Settings/Tokens.php:162 -msgid "inherited" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:240 ../../Zotlabs/Module/Connedit.php:828 -#: ../../Zotlabs/Module/Settings/Permcats.php:109 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "My Settings" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:243 ../../Zotlabs/Module/Connedit.php:830 -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:165 -msgid "Individual Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Defperms.php:244 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:63 ../../Zotlabs/Module/Admin/Addons.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Display.php:50 ../../Zotlabs/Module/Display.php:457 -#: ../../Zotlabs/Module/Filestorage.php:27 ../../Zotlabs/Module/Thing.php:96 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../include/items.php:3445 -msgid "Item not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:97 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Blocked accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:100 -msgid "Expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:115 -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:116 ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:117 -msgid "Clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:123 -msgid "Message queues" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:146 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Addons.php:341 -#: ../../Zotlabs/Module/Admin/Addons.php:436 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:288 -#: ../../Zotlabs/Module/Admin/Security.php:122 -msgid "Administration" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:147 ../../include/conversation.php:1420 -msgid "Summary" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Registered accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Pending registrations" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:152 -msgid "Registered channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:153 -msgid "Active addons" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:154 -msgid "Version" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:155 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:156 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2506 -#, php-format -msgid "Account '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Cdav.php:1217 ../../Zotlabs/Module/Connedit.php:847 -#: ../../Zotlabs/Module/Profiles.php:786 ../../include/network.php:1927 -msgid "Email" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:302 ../../include/conversation.php:721 -msgid "Approve" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:33 -msgid "Deny" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Block" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Unblock" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:437 ../../Zotlabs/Widget/Admin.php:27 -msgid "Addons" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Minimum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Maximum project version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Minimum PHP version: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Compatible Server Roles: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Requires: " -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:358 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -msgid "Disabled - version incompatibility" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:411 -msgid "Enter the public git repository URL of the addon repo." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:412 -msgid "Addon repo git URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:413 -msgid "Custom repo name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:413 -msgid "(optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:414 -msgid "Download Addon Repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:421 -msgid "Install new repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:423 -#: ../../Zotlabs/Module/Card_edit.php:131 ../../Zotlabs/Module/Cdav.php:942 -#: ../../Zotlabs/Module/Cdav.php:1231 ../../Zotlabs/Module/Cover_photo.php:410 -#: ../../Zotlabs/Module/Editblock.php:141 -#: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Editpost.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Connedit.php:861 -#: ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Settings/Oauth2.php:96 -#: ../../Zotlabs/Module/Settings/Oauth2.php:124 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1365 ../../include/conversation.php:1414 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:133 -#: ../../extend/addon/a/hsse/hsse.php:208 -#: ../../extend/addon/a/hsse/hsse.php:257 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:356 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:390 -msgid "Cancel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:445 -msgid "Manage Repos" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:446 -msgid "Installed Addon Repositories" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:447 -msgid "Install a New Addon Repository" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:454 -msgid "Switch branch" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Addons.php:455 -#: ../../Zotlabs/Module/Photos.php:922 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../extend/addon/a/superblock/Mod_Superblock.php:96 -msgid "Remove" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1840 ../../include/nav.php:393 -msgid "Channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Cdav.php:1213 ../../Zotlabs/Module/Alist.php:125 -#: ../../Zotlabs/Module/Connedit.php:843 ../../Zotlabs/Module/Chat.php:250 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Settings/Oauth2.php:97 -#: ../../Zotlabs/Module/Settings/Oauth2.php:125 -#: ../../Zotlabs/Module/Sharedwithme.php:104 -#: ../../Zotlabs/Storage/Browser.php:285 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:555 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:22 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:216 -msgid "Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Cdav.php:1220 ../../Zotlabs/Module/Connedit.php:850 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Address" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:66 -#: ../../Zotlabs/Module/Settings/Network.php:30 -msgid "Off" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:66 -#: ../../Zotlabs/Module/Settings/Network.php:30 -msgid "On" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:51 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1067 -#: ../../include/text.php:1079 -msgid "Save" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:33 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:34 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Priority" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Last known contact" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:163 -msgid "Site settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:189 ../../include/text.php:3102 -#: ../../view/theme/redbasic/php/config.php:15 -msgid "Default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:200 -#: ../../Zotlabs/Module/Settings/Display.php:124 -#, php-format -msgid "%s - (Incompatible)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:207 -msgid "mobile" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "experimental" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "unsupported" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:256 -msgid "Yes - with approval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:262 -msgid "My site is not a public server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:263 -msgid "My site has paid access only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:264 -msgid "My site has free access only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:265 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:280 -msgid "Default permission role for new accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:280 -msgid "" -"This role will be used for the first channel created after registration." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:289 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:291 -#: ../../Zotlabs/Module/Register.php:278 -msgid "Registration" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "File upload" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Policies" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../Zotlabs/Widget/Findpeople.php:23 -msgid "Advanced" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "Site name" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Banner/Logo" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Administrator Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode may be used here." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -#: ../../Zotlabs/Module/Siteinfo.php:33 -msgid "Site Information" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:302 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode may be used here." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "System language" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "System theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:307 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:307 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Maximum image size" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Invitation only" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Minimum age" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Minimum age (in years) for who may register on this site." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "This is displayed on the public server site list." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Register text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:316 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Allowed friend domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Force publish" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Import Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Site only Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Only import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -#: ../../Zotlabs/Module/Admin/Site.php:325 -#: ../../Zotlabs/Module/Connedit.php:812 ../../Zotlabs/Module/Connedit.php:813 -#: ../../Zotlabs/Module/Content_filter.php:53 -#: ../../Zotlabs/Module/Content_filter.php:61 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Do not import Public stream posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Login on Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Reply-to email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Sender (From) email address for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Name of email sender for system generated email." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "Directory Server URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "Default directory server" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "Proxy user" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Proxy URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Network timeout" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Delivery interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "Deliveries per process" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Queue Threshold" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Poll interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Path to ImageMagick convert program" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Allow SVG thumbnails in file browser" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "WARNING: SVG images may contain malicious code." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Maximum Load Average" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Page to display after creating a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Default: profiles" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:353 -msgid "Optional: site location" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:353 -msgid "Region or country" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:113 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:116 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:117 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:118 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:123 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:125 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:125 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:126 -msgid "Block public search" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:126 -msgid "" -"Prevent access to search content unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:127 -msgid "Hide local directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:127 -msgid "Only use the global directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:128 -msgid "Provide a cloud root directory" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:128 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:129 -msgid "Show total disk space available to cloud uploads" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:130 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:131 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:132 -msgid "Allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:132 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:133 -msgid "Not allowed email domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:133 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:134 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:134 -#: ../../Zotlabs/Module/Admin/Security.php:139 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:135 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:136 -msgid "Allow communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:136 -#: ../../Zotlabs/Module/Admin/Security.php:141 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:137 -msgid "Block communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:139 -msgid "Allow public stream communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:140 -msgid "Block public stream communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:141 -msgid "Allow public stream communications only from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:142 -msgid "Block public stream communications from these channels" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:145 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:146 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:146 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:147 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:26 -msgid "Affinity Tool settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:37 -msgid "" -"This app (when installed) presents a slider control in your connection " -"editor and also on your network page. The slider represents your degree of " -"friendship or affinity with each connection. It allows you to zoom " -"in or out and display conversations from only your closest friends or " -"everybody in your stream." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:45 -msgid "" -"The numbers below represent the minimum and maximum slider default positions " -"for your network/stream page as a percentage." -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:52 -#: ../../Zotlabs/Module/Settings/Featured.php:47 -msgid "Default maximum affinity level" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:52 -#: ../../Zotlabs/Module/Settings/Featured.php:47 -msgid "0-99 default 99" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:57 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -msgid "Default minimum affinity level" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:57 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -msgid "0-99 - default 0" -msgstr "" - -#: ../../Zotlabs/Module/Affinity.php:61 -msgid "Affinity Tool Settings" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:131 -msgid "Embed code" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:137 -msgid "Edit App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:137 -msgid "Create App" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Name of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:142 ../../Zotlabs/Module/Appman.php:143 -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Events.php:466 -#: ../../Zotlabs/Module/Profiles.php:744 ../../Zotlabs/Module/Profiles.php:748 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:143 -msgid "Location (URL) of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Cdav.php:914 -#: ../../Zotlabs/Module/Events.php:474 -msgid "Description" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Categories (optional, comma separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Version ID" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Price of app" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:149 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of Pinned Navbar Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:47 -msgid "Change Order of App Tray Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" -msgstr "" - -#: ../../Zotlabs/Module/Apporder.php:48 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 -msgid "Available Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:50 -msgid "Installed Apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage apps" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create Custom App" -msgstr "" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:29 -msgid "Authorize" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:30 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:32 -msgid "Allow" -msgstr "" - -#: ../../Zotlabs/Module/Block.php:28 ../../Zotlabs/Module/Page.php:39 -msgid "Invalid item." -msgstr "" - -#: ../../Zotlabs/Module/Block.php:40 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Chanview.php:99 -#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Wall_upload.php:31 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:44 -msgid "Channel not found." -msgstr "" - -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Display.php:145 -#: ../../Zotlabs/Module/Display.php:162 ../../Zotlabs/Module/Display.php:179 -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Web/Router.php:171 -#: ../../include/help.php:132 ../../extend/addon/a/wiki/NativeWikiPage.php:516 -msgid "Page not found." -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Cards.php:37 -#: ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:54 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Menu.php:91 -#: ../../Zotlabs/Module/Profile.php:24 ../../Zotlabs/Module/Connect.php:16 -#: ../../Zotlabs/Module/Webpages.php:39 ../../include/channel.php:1218 -#: ../../extend/addon/a/articles/Mod_Articles.php:33 -msgid "Requested profile is not available." -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2459 -msgid "Blocks" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Menu.php:177 ../../Zotlabs/Module/Webpages.php:266 -msgid "Created" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:192 -#: ../../Zotlabs/Module/Menu.php:178 ../../Zotlabs/Module/Webpages.php:267 -msgid "Edited" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Cards.php:109 -#: ../../Zotlabs/Module/Cdav.php:1228 ../../Zotlabs/Module/Connedit.php:858 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Menu.php:181 -#: ../../Zotlabs/Module/New_channel.php:188 -#: ../../Zotlabs/Module/Profiles.php:797 ../../Zotlabs/Module/Webpages.php:254 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -#: ../../extend/addon/a/articles/Mod_Articles.php:104 -msgid "Create" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Photos.php:1002 ../../Zotlabs/Module/Webpages.php:256 -#: ../../Zotlabs/Widget/Cdav.php:124 ../../include/conversation.php:1342 -#: ../../extend/addon/a/hsse/hsse.php:185 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:294 -msgid "Share" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:696 -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Pubsites.php:63 -#: ../../Zotlabs/Module/Webpages.php:261 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:211 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:398 -msgid "View" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:263 ../../Zotlabs/Module/Events.php:606 -msgid "l, F j" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:313 ../../Zotlabs/Module/Events.php:662 -#: ../../include/text.php:1860 -msgid "Link to Source" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Events.php:690 -msgid "Edit Event" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Events.php:690 -msgid "Create Event" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Cal.php:344 -#: ../../Zotlabs/Module/Cdav.php:922 ../../Zotlabs/Module/Events.php:691 -#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Photos.php:873 -msgid "Previous" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Cdav.php:923 ../../Zotlabs/Module/Events.php:692 -#: ../../Zotlabs/Module/Events.php:701 ../../Zotlabs/Module/Photos.php:882 -#: ../../Zotlabs/Module/Setup.php:272 -msgid "Next" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Events.php:693 -#: ../../include/channel.php:1670 -msgid "Export" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2483 -msgid "Import" -msgstr "" - -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Cdav.php:924 -#: ../../Zotlabs/Module/Events.php:702 -msgid "Today" -msgstr "" - -#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editpost.php:22 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:17 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:33 -msgid "Item not found" -msgstr "" - -#: ../../Zotlabs/Module/Card_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:213 -#: ../../include/conversation.php:1250 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:101 -#: ../../extend/addon/a/hsse/hsse.php:94 -msgid "Insert web link" -msgstr "" - -#: ../../Zotlabs/Module/Card_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:603 -#: ../../Zotlabs/Module/Photos.php:968 ../../include/conversation.php:1377 -#: ../../extend/addon/a/articles/Mod_Article_edit.php:117 -#: ../../extend/addon/a/hsse/hsse.php:220 -msgid "Title (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:47 -msgid "Create personal planning cards" -msgstr "" - -#: ../../Zotlabs/Module/Cards.php:108 -msgid "Add Card" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:810 -msgid "INVALID EVENT DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:811 -msgid "Summary: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:812 -msgid "Date: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:813 ../../Zotlabs/Module/Cdav.php:820 -msgid "Reason: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:818 -msgid "INVALID CARD DISMISSED!" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:819 -msgid "Name: " -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:840 -msgid "CalDAV capable calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:849 -msgid "CalDAV capable addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:911 ../../Zotlabs/Module/Events.php:461 -msgid "Event title" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:912 ../../Zotlabs/Module/Events.php:467 -msgid "Start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:912 ../../Zotlabs/Module/Cdav.php:913 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:913 -msgid "End date and time" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:915 ../../Zotlabs/Module/Events.php:476 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:733 ../../Zotlabs/Module/Pubsites.php:55 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:925 ../../Zotlabs/Module/Events.php:697 -msgid "Month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:926 ../../Zotlabs/Module/Events.php:698 -msgid "Week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:927 ../../Zotlabs/Module/Events.php:699 -msgid "Day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:928 -msgid "List month" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:929 -msgid "List week" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:930 -msgid "List day" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:937 -msgid "More" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:938 -msgid "Less" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:939 -msgid "Select calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:941 -msgid "Delete all" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:943 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1214 ../../Zotlabs/Module/Connedit.php:844 -msgid "Organisation" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1215 ../../Zotlabs/Module/Connedit.php:845 -msgid "Title" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1216 ../../Zotlabs/Module/Connedit.php:846 -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Phone" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1218 ../../Zotlabs/Module/Connedit.php:848 -#: ../../Zotlabs/Module/Profiles.php:787 -msgid "Instant messenger" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1219 ../../Zotlabs/Module/Connedit.php:849 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Website" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1221 ../../Zotlabs/Module/Connedit.php:851 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Note" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1222 ../../Zotlabs/Module/Connedit.php:852 -#: ../../Zotlabs/Module/Profiles.php:791 ../../include/event.php:1335 -#: ../../include/connections.php:699 -msgid "Mobile" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1223 ../../Zotlabs/Module/Connedit.php:853 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1336 -#: ../../include/connections.php:700 -msgid "Home" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1224 ../../Zotlabs/Module/Connedit.php:854 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1339 -#: ../../include/connections.php:703 -msgid "Work" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1225 ../../Zotlabs/Module/Connedit.php:855 -#: ../../Zotlabs/Module/New_channel.php:172 -#: ../../Zotlabs/Module/Profiles.php:794 ../../Zotlabs/Module/Profiles.php:929 -#: ../../Zotlabs/Module/Profiles.php:946 ../../Zotlabs/Module/Profiles.php:986 -#: ../../Zotlabs/Module/Profiles.php:1022 -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/Settings/Channel.php:510 ../../include/event.php:1342 -#: ../../include/event.php:1349 ../../include/connections.php:706 -#: ../../include/connections.php:713 -msgid "Other" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1226 ../../Zotlabs/Module/Connedit.php:856 -#: ../../Zotlabs/Module/Profiles.php:795 -msgid "Add Contact" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:857 -#: ../../Zotlabs/Module/Profiles.php:796 -msgid "Add Field" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1232 ../../Zotlabs/Module/Connedit.php:862 -msgid "P.O. Box" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1233 ../../Zotlabs/Module/Connedit.php:863 -msgid "Additional" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1234 ../../Zotlabs/Module/Connedit.php:864 -msgid "Street" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1235 ../../Zotlabs/Module/Connedit.php:865 -msgid "Locality" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1236 ../../Zotlabs/Module/Connedit.php:866 -msgid "Region" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1237 ../../Zotlabs/Module/Connedit.php:867 -msgid "ZIP Code" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1238 ../../Zotlabs/Module/Connedit.php:868 -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Country" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1285 -msgid "Default Calendar" -msgstr "" - -#: ../../Zotlabs/Module/Cdav.php:1295 -msgid "Default Addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:222 -#: ../../include/channel.php:621 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:227 -#: ../../include/channel.php:626 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:79 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:46 ../../Zotlabs/Module/Chat.php:27 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:66 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:49 -msgid "Posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:73 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:56 -msgid "Only posts" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:188 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:205 ../../Zotlabs/Module/Network.php:174 -msgid "Search Results For:" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:240 ../../Zotlabs/Module/Display.php:85 -#: ../../Zotlabs/Module/Hq.php:133 ../../Zotlabs/Module/Network.php:204 -#: ../../Zotlabs/Module/Pubstream.php:80 -msgid "Reset form" -msgstr "" - -#: ../../Zotlabs/Module/Channel.php:496 ../../Zotlabs/Module/Display.php:380 -msgid "" -"You must enable javascript for your browser to be able to view this content." -msgstr "" - -#: ../../Zotlabs/Module/Chanview.php:142 -msgid "toggle full screen mode" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:67 ../../Zotlabs/Module/Directory.php:72 -#: ../../Zotlabs/Module/Display.php:34 ../../Zotlabs/Module/Photos.php:448 -#: ../../Zotlabs/Module/Search.php:21 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:110 -msgid "No default suggestions were found." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:259 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Gender: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:272 -msgid "Status: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:274 -msgid "Homepage: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1587 -msgid "Age:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1412 -#: ../../include/event.php:62 ../../include/event.php:116 -msgid "Location:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Description:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1616 -msgid "Hometown:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1622 -msgid "About:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:342 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/channel.php:1397 ../../include/conversation.php:1035 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:343 -msgid "Public Group:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:346 -msgid "Keywords: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:349 -msgid "Don't suggest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:351 -msgid "Common connections (estimated):" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Global Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Local Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:405 -#: ../../Zotlabs/Module/Directory.php:410 -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Widget/Findpeople.php:30 -msgid "Find" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:406 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:409 ../../Zotlabs/Module/Suggest.php:64 -#: ../../Zotlabs/Widget/Findpeople.php:31 -msgid "Channel Suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "next page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "previous page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Sort options" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:413 -msgid "Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:414 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:415 -msgid "Newest to Oldest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "Oldest to Newest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:433 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:123 -msgid "Not found" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Alist.php:83 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:79 -#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Like.php:259 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Share.php:69 -#: ../../Zotlabs/Module/Subthread.php:85 ../../Zotlabs/Web/WebServer.php:122 -#: ../../include/items.php:386 -msgid "Permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:129 -msgid "Please refresh page" -msgstr "" - -#: ../../Zotlabs/Module/Cloud.php:132 -msgid "Unknown error" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "" - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:54 -#: ../../Zotlabs/Module/Connections.php:111 -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Active" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:59 -#: ../../Zotlabs/Module/Connections.php:163 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Blocked" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:64 -#: ../../Zotlabs/Module/Connections.php:170 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Ignored" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:69 -#: ../../Zotlabs/Module/Connections.php:184 -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Hidden" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:74 -#: ../../Zotlabs/Module/Connections.php:177 -msgid "Archived/Unreachable" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:79 -#: ../../Zotlabs/Module/Connections.php:88 ../../Zotlabs/Module/Menu.php:179 -#: ../../Zotlabs/Module/Notifications.php:50 -#: ../../include/conversation.php:1746 -msgid "New" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:93 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:663 ../../Zotlabs/Widget/Affinity.php:29 -msgid "All" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:139 -msgid "Active Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:142 -msgid "Show active connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:146 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:149 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:166 -msgid "Only show blocked connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:173 -msgid "Only show ignored connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:180 -msgid "Only show archived/unreachable connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:187 -msgid "Only show hidden connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:199 -#: ../../Zotlabs/Module/Profperm.php:140 -msgid "All Connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:202 -msgid "Show all connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Pending approval" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Archived" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Not connected at this location" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:278 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:279 -msgid "Edit connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:281 -msgid "Delete connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:290 -msgid "Channel address" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:292 -msgid "Network" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:295 -msgid "Call" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:297 -msgid "Status" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:299 -msgid "Connected" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:301 -msgid "Approve connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:303 -msgid "Ignore connection" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:304 -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "Ignore" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:305 -msgid "Recent activity" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:35 -msgid "Access list created." -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:38 -msgid "Could not create access list." -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:51 ../../Zotlabs/Module/Alist.php:181 -msgid "Access list not found." -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:67 -msgid "Access list updated." -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:114 -msgid "Create access list" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:118 -msgid "Access list name" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:119 ../../Zotlabs/Module/Alist.php:220 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:126 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:151 -msgid "Access list removed." -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:153 -msgid "Unable to remove access list." -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:215 -#, php-format -msgid "Access List: %s" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:217 -msgid "Access list name: " -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:222 -msgid "Delete access list" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:232 -msgid "List members" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:234 -msgid "Not in this list" -msgstr "" - -#: ../../Zotlabs/Module/Alist.php:266 -msgid "Click a channel to toggle membership" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:60 -#: ../../Zotlabs/Module/Profile_photo.php:69 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:171 -#: ../../Zotlabs/Module/Cover_photo.php:223 -msgid "Cover Photos" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:196 -#: ../../Zotlabs/Module/Profile_photo.php:147 -msgid "Image resize failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:230 ../../include/photos.php:195 -msgid "Unable to process image" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:234 -#: ../../Zotlabs/Module/Profile_photo.php:265 -msgid "Image upload failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:251 -#: ../../Zotlabs/Module/Profile_photo.php:284 -msgid "Unable to process image." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4405 -msgid "female" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4406 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4407 -msgid "male" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4408 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4410 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2097 -msgid "cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:350 -#: ../../Zotlabs/Module/Cover_photo.php:365 -#: ../../Zotlabs/Module/Profile_photo.php:348 -#: ../../Zotlabs/Module/Profile_photo.php:395 -msgid "Photo not available." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:401 -msgid "Your cover photo may be visible to anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:403 -#: ../../Zotlabs/Module/Profile_photo.php:461 -msgid "Upload File:" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:404 -#: ../../Zotlabs/Module/Profile_photo.php:462 -msgid "Select a profile:" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:405 -msgid "Change Cover Photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:406 -#: ../../Zotlabs/Module/Embedphotos.php:160 -#: ../../Zotlabs/Module/Photos.php:617 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Album.php:97 -#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 -#: ../../Zotlabs/Widget/Portfolio.php:110 -msgid "Upload" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:408 -#: ../../Zotlabs/Module/Cover_photo.php:409 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Profile_photo.php:469 -msgid "Use a photo from your albums" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:411 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../include/conversation.php:1366 ../../include/conversation.php:1413 -#: ../../extend/addon/a/hsse/hsse.php:209 -#: ../../extend/addon/a/hsse/hsse.php:256 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:391 -msgid "OK" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:412 -#: ../../Zotlabs/Module/Profile_photo.php:472 -#: ../../include/conversation.php:1295 ../../extend/addon/a/hsse/hsse.php:138 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:392 -msgid "Choose images to embed" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:413 -#: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../include/conversation.php:1296 ../../extend/addon/a/hsse/hsse.php:139 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:393 -msgid "Choose an album" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:414 -#: ../../Zotlabs/Module/Profile_photo.php:474 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:394 -msgid "Choose a different album" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:415 -#: ../../Zotlabs/Module/Profile_photo.php:475 -#: ../../include/conversation.php:1298 ../../extend/addon/a/hsse/hsse.php:141 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:395 -msgid "Error getting album list" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:416 -#: ../../Zotlabs/Module/Profile_photo.php:476 -#: ../../include/conversation.php:1299 ../../extend/addon/a/hsse/hsse.php:142 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:396 -msgid "Error getting photo link" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:417 -#: ../../Zotlabs/Module/Profile_photo.php:477 -#: ../../include/conversation.php:1300 ../../extend/addon/a/hsse/hsse.php:143 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:397 -msgid "Error getting album" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:420 -#: ../../Zotlabs/Module/Profile_photo.php:479 -msgid "Select existing photo" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:437 -#: ../../Zotlabs/Module/Profile_photo.php:498 -msgid "Crop Image" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:438 -#: ../../Zotlabs/Module/Profile_photo.php:499 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:440 -#: ../../Zotlabs/Module/Profile_photo.php:501 -msgid "Done Editing" -msgstr "" - -#: ../../Zotlabs/Module/Follow.php:92 -msgid "Connection added." -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:24 ../../Zotlabs/Module/Regdir.php:52 -msgid "This site is not a directory server" -msgstr "" - -#: ../../Zotlabs/Module/Dirsearch.php:32 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:398 -msgid "Article" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:450 -msgid "Item has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:56 -msgid "Invalid message" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:89 -msgid "no results" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "channel sync processed" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "queued" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:111 -msgid "posted" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "accepted for delivery" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "updated" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "update ignored" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "permission denied" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:129 -msgid "recipient not found" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:132 -msgid "mail recalled" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:135 -msgid "duplicate mail received" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:138 -msgid "mail delivered" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:158 -#, php-format -msgid "Delivery report for %1$s" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:161 -#: ../../extend/addon/a/wiki/Wiki_pages.php:40 -#: ../../extend/addon/a/wiki/Wiki_pages.php:97 -msgid "Options" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:162 -msgid "Redeliver" -msgstr "" - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:129 -#: ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:36 ../../Zotlabs/Module/Editpost.php:41 -msgid "Item is not editable" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:143 -msgid "Edit post" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:12 -#: ../../Zotlabs/Module/Email_validation.php:24 -msgid "Token verification failed." -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:142 -#: ../../Zotlabs/Module/Photos.php:716 ../../Zotlabs/Module/Photos.php:1247 -#: ../../Zotlabs/Widget/Album.php:78 ../../Zotlabs/Widget/Portfolio.php:87 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:747 ../../Zotlabs/Widget/Album.php:95 -#: ../../Zotlabs/Widget/Portfolio.php:108 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:50 -msgid "Enter a folder name" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:50 -msgid "or select an existing folder (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:82 -msgid "Permission Denied." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:115 -msgid "File not found." -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Edit file permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:173 -#: ../../Zotlabs/Module/Connedit.php:625 ../../Zotlabs/Module/Photos.php:607 -#: ../../Zotlabs/Module/Photos.php:971 ../../Zotlabs/Module/Chat.php:234 -#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 -#: ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:180 -msgid "Set/edit permissions" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:181 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:182 -msgid "Return to file list" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:184 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:185 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:187 -msgid "Share this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:188 -msgid "Show URL to this file" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:189 -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "Show in your contacts shared folder" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:111 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:113 ../../Zotlabs/Module/Events.php:122 -#: ../../Zotlabs/Module/Events.php:144 -msgid "Unable to generate preview." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:120 -msgid "Event title and start time are required." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:142 ../../Zotlabs/Module/Events.php:266 -msgid "Event not found." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:261 ../../Zotlabs/Module/Like.php:334 -#: ../../Zotlabs/Module/Tagger.php:75 ../../include/text.php:2041 -#: ../../include/event.php:1183 ../../include/conversation.php:117 -msgid "event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit event title" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Category" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit start date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:468 ../../Zotlabs/Module/Events.php:471 -msgid "Finish date and time are not known or not relevant" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:470 -msgid "Edit finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:470 -msgid "Finish date and time" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Events.php:473 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:472 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:474 -msgid "Edit Description" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Edit Location" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:480 ../../include/conversation.php:1381 -#: ../../extend/addon/a/hsse/hsse.php:224 -msgid "Permission settings" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:490 -msgid "Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:495 -msgid "Advanced Options" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:634 -msgid "Edit event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:636 -msgid "Delete event" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:671 -msgid "calendar" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:733 -msgid "Event removed" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:736 -msgid "Failed to remove event" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:115 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:193 -msgid "Connection updated." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:195 -msgid "Failed to update connection record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "is now connected to" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:373 -msgid "Could not access address book record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:421 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:436 ../../Zotlabs/Module/Connedit.php:445 -#: ../../Zotlabs/Module/Connedit.php:454 ../../Zotlabs/Module/Connedit.php:463 -#: ../../Zotlabs/Module/Connedit.php:476 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:546 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:550 -msgid "Refresh Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:553 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:557 -msgid "Refresh Photo" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "Fetch updated photo" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:564 ../../include/conversation.php:1025 -msgid "Recent Activity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "View recent posts and comments" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "This connection is blocked!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "Unignore" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "This connection is ignored!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "Unarchive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "Archive" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "This connection is archived!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "Unhide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "Hide" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "This connection is hidden!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:606 -msgid "Delete this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:614 -msgid "Fetch Vcard" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:617 -msgid "Fetch electronic calling card for this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:628 -msgid "Open Individual Permissions section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:651 -msgid "Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Open Set Affinity section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:658 ../../Zotlabs/Widget/Affinity.php:24 -msgid "Me" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:659 ../../Zotlabs/Widget/Affinity.php:25 -msgid "Family" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:660 -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:73 -#: ../../Zotlabs/Module/Settings/Channel.php:74 -#: ../../Zotlabs/Module/Settings/Channel.php:77 -#: ../../Zotlabs/Module/Settings/Channel.php:88 -#: ../../Zotlabs/Widget/Affinity.php:26 ../../include/channel.php:433 -#: ../../include/channel.php:434 ../../include/channel.php:441 -msgid "Friends" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:661 ../../Zotlabs/Widget/Affinity.php:27 -msgid "Peers" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:680 -msgid "Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:683 -msgid "Open Custom Filter section by default" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Approve this connection" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:725 -msgid "Set Affinity" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:728 -msgid "Set Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:731 -msgid "Set Affinity & Profile" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "This connection is unreachable from this location." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:776 -msgid "This connection may be unreachable from other channel locations." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:778 -msgid "Location independence is not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:787 ../../include/items.php:4066 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:797 -msgid "This connection's primary address is" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:798 -msgid "Available locations:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:804 -msgid "Connection Tools" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:806 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:807 ../../include/js_strings.php:20 -msgid "Rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:808 -msgid "Slide to adjust your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:809 ../../Zotlabs/Module/Connedit.php:814 -msgid "Optionally explain your rating" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:811 -msgid "Custom Filter" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:812 -#: ../../Zotlabs/Module/Content_filter.php:51 -#: ../../Zotlabs/Module/Content_filter.php:59 -msgid "Only import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:813 -msgid "Do not import posts with this text" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:815 -msgid "This information is public!" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:820 -msgid "Connection Pending Approval" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:825 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:827 -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Their Settings" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:831 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -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:832 -msgid "" -"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." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:833 -msgid "Last update:" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Details" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1853 -#: ../../include/nav.php:406 -msgid "About" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "" - -#: ../../Zotlabs/Module/Home.php:107 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:139 -msgid "Welcome to Hubzilla!" -msgstr "" - -#: ../../Zotlabs/Module/Hq.php:139 -msgid "You have got no unseen posts..." -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:268 -msgid "webpage" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:274 -msgid "block" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:271 -msgid "layout" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:277 -msgid "menu" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:66 ../../Zotlabs/Module/Import_items.php:48 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:81 ../../Zotlabs/Module/Import.php:97 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:104 -#: ../../Zotlabs/Module/Import_items.php:77 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:142 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:169 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:500 -msgid "Import completed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:528 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:533 -msgid "Import Channel" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:534 -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:535 -#: ../../Zotlabs/Module/Import_items.php:127 -msgid "File to Upload" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:536 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:538 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:539 -msgid "Your old login email address" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:540 -msgid "Your old login password" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:541 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:543 -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 "" - -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:546 -msgid "Move this channel (disable all previous locations)" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Use this channel nickname instead of the one provided" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:549 -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/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:126 -msgid "Use this form to import existing posts and content from an export file." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:406 -msgid "Unable to locate original post." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:693 -msgid "Empty post discarded." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1106 -msgid "Duplicate post suppressed." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1251 -msgid "System error. Post not saved." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1287 -msgid "Your comment is awaiting approval." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1401 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1409 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1416 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:37 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:61 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:75 -msgid "Please join us on $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:85 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:90 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:94 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:111 -msgid "Send email invitations to join this network" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:124 -msgid "You have no more invitations available" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:155 -msgid "Send invitations" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:156 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:157 -msgid "Your message:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:158 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:160 -msgid "You will need to supply this invitation code:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:161 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:163 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:164 -msgid "or visit" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:166 -msgid "3. Click [Connect]" -msgstr "" - -#: ../../Zotlabs/Module/Lang.php:18 -msgid "Change UI language" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2461 -msgid "Layouts" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:94 ../../Zotlabs/Module/Like.php:120 -msgid "Invalid request." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:106 ../../include/conversation.php:120 -msgid "channel" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:135 -msgid "thing" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:367 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:369 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:371 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:122 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 -msgid "Drop" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1607 -msgid "Password Reset" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:69 -#: ../../Zotlabs/Module/Pdledit.php:77 -msgid "Reset" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:138 -#: ../../Zotlabs/Module/New_channel.php:147 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:145 ../../Zotlabs/Module/Chat.php:255 -#: ../../Zotlabs/Module/Profiles.php:830 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:212 -msgid "Create New" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:172 -msgid "Current Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Default Channel" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:176 -msgid "Make Default" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new messages" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:180 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:182 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:67 -msgid "Unable to update menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:78 -msgid "Unable to create menu." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 -msgid "Menu Name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:160 -msgid "Unique name (not visible on webpage) - required" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 -msgid "Menu Title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:161 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:162 -msgid "Allow Bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 -msgid "Submit and proceed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2460 -msgid "Menus" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:180 -msgid "Bookmarks allowed" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:182 -msgid "Delete this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 -msgid "Edit menu contents" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:184 -msgid "Edit this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:200 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:208 ../../Zotlabs/Module/Mitem.php:31 -msgid "Menu not found." -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:213 -msgid "Edit Menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:217 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Menu name" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Allow bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:231 ../../Zotlabs/Module/Mitem.php:134 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:76 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:91 ../../Zotlabs/Module/Photos.php:110 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:100 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:170 ../../Zotlabs/Module/Photos.php:983 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:459 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:508 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:551 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:554 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:596 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:600 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:601 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:602 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:604 -msgid "Description (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:690 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:692 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:749 ../../Zotlabs/Module/Photos.php:1276 -msgid "Add Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:794 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:796 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:854 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:855 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:862 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:877 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:959 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:963 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:964 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:965 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:970 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:978 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:981 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1037 ../../include/conversation.php:596 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1038 ../../include/conversation.php:597 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1039 ../../include/conversation.php:598 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1040 ../../include/conversation.php:599 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1041 ../../include/conversation.php:600 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1165 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1174 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1179 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Module/Photos.php:1274 ../../include/photos.php:679 -msgid "Recent Photos" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:67 -msgid "Comment approved" -msgstr "" - -#: ../../Zotlabs/Module/Moderate.php:71 -msgid "Comment deleted" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:73 ../../include/conversation.php:266 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:131 ../../Zotlabs/Module/Mood.php:151 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:99 -msgid "Access Controlled Chatrooms" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:189 -msgid "Room not found" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:205 -msgid "Leave Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:206 -msgid "Delete Room" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:207 -msgid "I am away right now" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:208 -msgid "I am online" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:211 ../../include/conversation.php:1290 -#: ../../extend/addon/a/hsse/hsse.php:133 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:156 -msgid "Your real name is recommended." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:157 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:162 -msgid "" -"This will be used to create a unique network address (like an email address)." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:164 -msgid "Allowed characters are a-z 0-9, - and _" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:174 -msgid "Channel name" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:176 -#: ../../Zotlabs/Module/Register.php:265 -msgid "Choose a short nickname" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:266 -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "Channel role and privacy" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:177 -msgid "" -"Select a channel permission role compatible with your usage needs and " -"privacy requirements." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:266 -msgid "Read more about channel permission roles" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:180 -msgid "Create a Channel" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:181 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:182 -msgid "" -"or import an existing channel from another location." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:187 -msgid "Validate" -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Notify.php:61 -msgid "No more system notifications." -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:59 -#: ../../Zotlabs/Module/Notify.php:65 -msgid "System Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:360 -msgid "network" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:179 -msgid "Zap Server - Setup" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:200 -msgid "Your site database has been installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:206 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:207 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:768 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database connection" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"In order to install this software we need to know how to connect to your " -"database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:299 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Server Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Default is 127.0.0.1" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Port" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Name" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:308 -msgid "Database Type" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:353 -msgid "Site administrator email address" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:353 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:355 -msgid "Website URL" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:355 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:357 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:341 -msgid "Site settings" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:396 -msgid "PHP version 5.5 or greater is required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:397 -msgid "PHP version" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:418 -msgid "PHP executable path" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:423 -msgid "Command line PHP" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:433 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:436 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:437 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:440 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:458 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:463 -msgid "You can adjust these settings in the server php.ini file." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:465 -msgid "PHP upload limits" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:488 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:489 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:492 -msgid "Generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:509 -msgid "libCurl PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:510 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:511 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:512 -msgid "PDO database PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "mb_string PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:514 -msgid "xml PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:515 -msgid "zip PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:521 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:525 ../../Zotlabs/Module/Setup.php:528 -msgid "exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:525 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:531 ../../Zotlabs/Module/Setup.php:534 -msgid "shell_exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:531 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:543 -msgid "" -"Error: GD PHP module with JPEG support or ImageMagick graphics library " -"required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:547 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:553 -msgid "" -"Error: PDO database PHP module missing a driver for either mysql or pgsql." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:558 -msgid "Error: PDO database PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:562 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:566 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:570 -msgid "Error: zip PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:589 ../../Zotlabs/Module/Setup.php:598 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:594 -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 "" - -#: ../../Zotlabs/Module/Setup.php:595 -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 "" - -#: ../../Zotlabs/Module/Setup.php:596 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:612 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:613 -#, 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:614 ../../Zotlabs/Module/Setup.php:635 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:615 -#, 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 "" - -#: ../../Zotlabs/Module/Setup.php:618 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:634 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:638 -msgid "store is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:670 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:671 -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 "" - -#: ../../Zotlabs/Module/Setup.php:672 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:673 -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 "" - -#: ../../Zotlabs/Module/Setup.php:674 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:675 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:677 -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:679 -msgid "SSL certificate validation" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:685 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:688 -msgid "Url rewrite is working" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:702 -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 "" - -#: ../../Zotlabs/Module/Setup.php:726 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:766 -msgid "

What next?

" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:767 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:63 -msgid "Unable to create element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:87 -msgid "Unable to update menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:103 -msgid "Unable to add menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:564 -msgid "(click to open/close)" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 -msgid "Link Name" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:175 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 -msgid "Open link in new window" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Order in list" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Submit and finish" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Submit and continue" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Menu:" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:192 -msgid "Link Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:195 -msgid "Edit menu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:198 -msgid "Edit element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Drop element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:200 -msgid "New element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:201 -msgid "Edit this menu container" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Add menu element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Delete this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "Edit this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:222 -msgid "Menu item not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:235 -msgid "Menu item deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:237 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:244 -msgid "Edit Menu Element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:254 -msgid "Link text" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:118 -msgid "No such group" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:159 -msgid "No such channel" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:242 -msgid "Access list is empty" -msgstr "" - -#: ../../Zotlabs/Module/Network.php:253 -msgid "Access list: " -msgstr "" - -#: ../../Zotlabs/Module/Network.php:302 -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:26 -msgid "Invalid channel." -msgstr "" - -#: ../../Zotlabs/Module/Page.php:173 -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 "" - -#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:70 -msgid "This setting requires special processing and editing has been blocked." -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:59 -msgid "Configuration Editor" -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:60 -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 "" - -#: ../../Zotlabs/Module/Pdledit.php:22 -msgid "Layout updated." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:48 ../../Zotlabs/Module/Pdledit.php:103 -msgid "Edit System Page Description" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:69 ../../Zotlabs/Module/Pdledit.php:77 -msgid "(modified)" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:98 -msgid "Layout not found." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:104 -msgid "Module Name:" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:105 -msgid "Layout Help" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:106 -msgid "Edit another layout" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:107 -msgid "System layout" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:26 ../../Zotlabs/Module/Profiles.php:186 -#: ../../Zotlabs/Module/Profiles.php:240 ../../Zotlabs/Module/Profiles.php:658 -msgid "Profile not found." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:46 -msgid "Profile deleted." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:70 ../../Zotlabs/Module/Profiles.php:107 -msgid "Profile-" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:92 ../../Zotlabs/Module/Profiles.php:129 -msgid "New profile created." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:113 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:148 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:251 -msgid "Profile Name is required." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:771 -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:772 -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:779 -msgid "Work/Employment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:486 -msgid "Gender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:677 -msgid "Hide your connections list from viewers of this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Edit Profile Details" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:723 -msgid "View this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:724 ../../Zotlabs/Module/Profiles.php:823 -#: ../../include/channel.php:1340 -msgid "Edit visibility" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:725 -msgid "Profile Tools" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Change cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:727 ../../include/channel.php:1310 -msgid "Change profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:728 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Clone this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Delete this profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Add profile things" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:732 ../../include/conversation.php:1737 -msgid "Personal" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Relationship" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:735 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:737 -msgid "Import profile from file" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Export profile to file" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Your gender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Marital status" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Sexual preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:744 -msgid "Profile name" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:748 -msgid "Your full name" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Title/Description" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:752 -msgid "Street address" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Locality/City" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Region/State" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Postal/Zip code" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:761 -msgid "Who (if applicable)" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:761 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Since (date)" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:765 -msgid "Tell us about yourself" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:767 -msgid "Hometown" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Political views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Religious views" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Keywords used in directory listings" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:773 -msgid "Musical interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Books, literature" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Television" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Film/Dance/Culture/Entertainment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Love/Romance" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:780 -msgid "School/Education" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "Contact information and social networks" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "My other channels" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:784 -msgid "Communications" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:819 ../../include/channel.php:1336 -msgid "Profile Image" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:829 ../../include/channel.php:1317 -#: ../../include/nav.php:104 -msgid "Edit Profiles" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:877 -msgid " and " -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:879 -msgid ", " -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:885 -msgid "public profile" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:894 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:895 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:898 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 ../../Zotlabs/Module/Profiles.php:946 -#: ../../include/channel.php:1503 -msgid "Male" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 ../../Zotlabs/Module/Profiles.php:946 -#: ../../include/channel.php:1501 -msgid "Female" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Currently Male" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Currently Female" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Mostly Male" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Mostly Female" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Transgender" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Intersex" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Transsexual" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Hermaphrodite" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 ../../include/channel.php:1507 -msgid "Neuter" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 ../../include/channel.php:1509 -msgid "Non-specific" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:929 -msgid "Undecided" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 ../../Zotlabs/Module/Profiles.php:986 -msgid "Males" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 ../../Zotlabs/Module/Profiles.php:986 -msgid "Females" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Gay" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Lesbian" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "No Preference" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Bisexual" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Autosexual" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Abstinent" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Virgin" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Deviant" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Fetish" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Oodles" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:967 -msgid "Nonsexual" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Single" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Lonely" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Available" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Unavailable" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Has crush" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Infatuated" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Dating" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Unfaithful" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Sex Addict" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Friends/Benefits" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Casual" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Engaged" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Married" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Imaginarily married" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Partners" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Cohabiting" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Common law" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Happy" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Not looking" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Swinger" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Betrayed" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Separated" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Unstable" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Divorced" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "Widowed" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Uncertain" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -#: ../../Zotlabs/Module/Profiles.php:1022 -msgid "It's complicated" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Don't care" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:1005 -msgid "Ask me" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:336 -msgid "sent you a private message" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:394 -msgid "added your channel" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:419 -msgid "requires approval" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:429 -msgid "g A l F d" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:447 -msgid "[today]" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:457 -msgid "posted an event" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:491 -msgid "shared a file with you" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:672 -msgid "Private forum" -msgstr "" - -#: ../../Zotlabs/Module/Ping.php:672 -msgid "Public forum" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:164 -msgid "Poke somebody in your addressbook" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:198 -msgid "Poke somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:201 -msgid "Poke/Prod" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:202 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:209 -msgid "Recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:210 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:213 ../../Zotlabs/Module/Poke.php:214 -msgid "Make this post private" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:123 -#: ../../Zotlabs/Module/Profile_photo.php:253 -#: ../../include/photo/photo_driver.php:741 -msgid "Profile Photos" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:459 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:459 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:463 -msgid "Use Photo for Profile" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:463 -msgid "Change Profile Photo" -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:464 -msgid "Use" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:25 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:28 -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 "" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Hub URL" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Access Type" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Registration Policy" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Stats" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Software" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:40 -msgid "Ratings" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:52 -msgid "Rate" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 -msgid "Register at another affiliated hub." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:210 -msgid "Registration on this hub is by invitation only." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:221 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:241 ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Terms of Service" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:247 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:254 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:259 -msgid "Your email address" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:260 -msgid "Choose a password" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:261 -msgid "Please re-enter your password" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:263 -msgid "Your Name" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:263 -msgid "Real names are preferred." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:265 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:266 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:267 -msgid "no" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:267 -msgid "yes" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:294 ../../include/nav.php:151 -#: ../../boot.php:1578 -msgid "Register" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:295 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -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 -msgid "This action is permanent and can not be undone!" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:106 -msgid "Remove Account" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:640 -msgid "Remove Channel" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:2350 -#: ../../boot.php:1599 -msgid "Remote Authentication" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2351 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2352 -msgid "Authenticate" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:122 -msgid "Thing updated" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:174 -msgid "Object store: failed" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:178 -msgid "Thing added" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:204 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:267 -msgid "Show Thing" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:274 -msgid "item not found." -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:307 -msgid "Edit Thing" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:366 -msgid "Select a profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Post an activity" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:371 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:372 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:373 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:364 -msgid "Add Thing to your Profile" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:231 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:233 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:19 -msgid "Not valid email." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:22 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:31 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:48 -msgid "Password verification failed." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:55 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:59 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:73 -msgid "Password changed." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:75 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:100 -msgid "Account Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:101 -msgid "Current Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:102 -msgid "Enter New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:103 -msgid "Confirm New Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:103 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:105 -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Email Address:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Account.php:107 -msgid "Remove this account including all its channels" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:133 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:181 -msgid "Display Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:182 -msgid "Theme Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:183 -msgid "Custom Theme Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:184 -msgid "Content Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Display Theme:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Select scheme" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Preload images before rendering the page" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:194 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:195 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:195 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Show emoticons (smilies) as images" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Provide channel menu in navigation bar" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Default: channel menu located in app menu" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Channel page max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "click to expand content exceeding this height" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Network page max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:25 -msgid "Affinity Slider settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:40 -msgid "No feature settings configured" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:56 -msgid "Affinity Slider Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:69 -msgid "Addon Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:70 -msgid "Please save/submit changes to any panel before opening another." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -msgid "Additional Features" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Features.php:75 -msgid "Your technical skill level" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Features.php:75 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:38 -msgid "Activity Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:52 ../../include/features.php:375 -msgid "Search by Date" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:53 ../../include/features.php:376 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:60 -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:385 -msgid "Saved Searches" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:61 ../../include/features.php:386 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:68 ../../include/features.php:394 -msgid "Alternate Stream Order" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:69 ../../include/features.php:395 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:76 ../../include/features.php:403 -msgid "Contact Filter" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:77 ../../include/features.php:404 -msgid "Ability to display only posts of a selected contact" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:84 ../../include/features.php:412 -msgid "Forum Filter" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:85 ../../include/features.php:413 -msgid "Ability to display only posts of a specific forum" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:92 ../../include/features.php:421 -msgid "Personal Posts Filter" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:93 ../../include/features.php:422 -msgid "Ability to display only posts that you've interacted on" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:101 -#: ../../include/features.php:431 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:109 -#: ../../include/features.php:440 -msgid "Show friend and connection suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:116 -#: ../../include/features.php:448 -msgid "Connection Filtering" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Network.php:117 -#: ../../include/features.php:449 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Settings/Oauth2.php:122 -#: ../../Zotlabs/Module/Settings/Oauth2.php:172 -msgid "Add application" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:97 -#: ../../Zotlabs/Module/Settings/Oauth2.php:125 -msgid "Name of application" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -msgid "Consumer Key" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth2.php:98 -#: ../../Zotlabs/Module/Settings/Oauth2.php:126 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../Zotlabs/Module/Settings/Oauth2.php:98 -#: ../../Zotlabs/Module/Settings/Oauth2.php:126 -msgid "Consumer Secret" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -#: ../../Zotlabs/Module/Settings/Oauth2.php:99 -#: ../../Zotlabs/Module/Settings/Oauth2.php:127 -msgid "Redirect" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth2.php:99 -#: ../../Zotlabs/Module/Settings/Oauth2.php:127 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 -msgid "Optional" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -#: ../../Zotlabs/Module/Settings/Oauth2.php:175 -msgid "Client key starts with" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -#: ../../Zotlabs/Module/Settings/Oauth2.php:176 -msgid "No name" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -#: ../../Zotlabs/Module/Settings/Oauth2.php:177 -msgid "Remove authorization" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:45 -msgid "Name and Secret are required" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:94 -msgid "Add OAuth2 application" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:100 -#: ../../Zotlabs/Module/Settings/Oauth2.php:128 -msgid "Grant Types" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:100 -#: ../../Zotlabs/Module/Settings/Oauth2.php:101 -#: ../../Zotlabs/Module/Settings/Oauth2.php:128 -#: ../../Zotlabs/Module/Settings/Oauth2.php:129 -msgid "leave blank unless your application specifically requires this" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:101 -#: ../../Zotlabs/Module/Settings/Oauth2.php:129 -msgid "Authorization scope" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -msgid "OAuth2 Application not found." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:171 -msgid "Connected OAuth2 Apps" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:24 -msgid "Permission Name is required." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:43 -msgid "Permission category saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:67 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -msgid "Permission Name" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:79 -msgid "Token saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -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 private content." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:117 -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/Tokens.php:149 -#: ../../Zotlabs/Widget/Settings_menu.php:86 -msgid "Guest Access Tokens" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:156 -msgid "Login Name" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Password" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Expires (yyyy-mm-dd)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:341 -msgid "Nobody except yourself" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:342 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:343 -msgid "Approved connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:344 -msgid "Any connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:345 -msgid "Anybody on this website" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:346 -msgid "Anybody in this network" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:347 -msgid "Anybody authenticated" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:348 -msgid "Anybody on the internet" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:428 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:433 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:437 -msgid "or" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:445 -msgid "Your channel address is" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:448 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:495 -msgid "Automatic membership approval" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:497 -msgid "Allow forum delivery with @mentions" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:497 -msgid "" -"Allows delivery from projects which do not support !mentions for forums." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "Channel Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:535 -msgid "Basic Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 -#: ../../include/channel.php:1544 -msgid "Full Name:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:538 -msgid "Your Timezone:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "Default Post Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Use Browser Location:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Adult Content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "Hide my online presence" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "Channel Permission Limits" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -#, php-format -msgid "This website expires after %d days." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "May reduce spam activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "Disable access checking on post attachments" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "" -"Private media access is only implemented in a very small number of federated " -"networks." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:563 -msgid "Default Access List" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:565 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:566 -msgid "Profile to assign new connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "Default Permissions Group" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:589 -msgid "By default post a status message when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:590 -msgid "accepting a friend request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "joining a forum/community" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "making an interesting profile change" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Send a notification email when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "You receive a connection request" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:600 -msgid "You are tagged in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Someone likes your post/comment" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:606 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:608 -msgid "Unseen network activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:609 -msgid "Unseen channel activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:611 -msgid "Upcoming events" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:612 -msgid "Events today" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:613 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:613 -msgid "Not available in all themes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:614 -msgid "System (personal) notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:615 -msgid "System info messages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:615 -#: ../../Zotlabs/Module/Settings/Channel.php:616 -#: ../../Zotlabs/Module/Settings/Channel.php:617 -msgid "Recommended" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:616 -msgid "System critical alerts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:617 -msgid "New connections" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 -msgid "System Registrations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:620 -msgid "Unseen public activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:621 -msgid "Unseen likes and dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:622 -msgid "Unseen forum posts" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:623 -msgid "Email notification hub (hostname)" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:623 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:624 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:626 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:626 -msgid "Must be greater than 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:632 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:633 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:635 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:636 -msgid "Default photo upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:636 -#: ../../Zotlabs/Module/Settings/Channel.php:637 -msgid "%Y - current year, %m - current month" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:637 -msgid "Default file upload folder" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:639 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:641 -msgid "Remove this channel." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:642 -msgid "Firefox Share $Projectname provider" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:643 -msgid "Start calendar week on Monday" -msgstr "" - -#: ../../Zotlabs/Module/Profile.php:127 -msgid "vcard" -msgstr "" - -#: ../../Zotlabs/Module/Share.php:117 -msgid "Post repeated" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Files: shared with me" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:105 -msgid "NEW" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1455 -msgid "Size" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:288 -msgid "Last Modified" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -msgid "Remove all files" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove this file" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "About this site" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Site Name" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:35 -msgid "Administrator" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Software and Project information" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:39 -msgid "This site is powered by $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:44 -msgid "Additional federated transport protocols:" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:46 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:47 -msgid "Project homepage" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "Developer homepage" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:38 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:54 -msgid "Source created." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:67 -msgid "Source updated." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:93 -msgid "*" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:100 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:101 ../../Zotlabs/Module/Sources.php:111 -msgid "New Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:146 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:153 -msgid "Channel Name" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -msgid "Resend posts with this channel as author" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -msgid "Copyrights may apply" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:136 ../../Zotlabs/Module/Sources.php:166 -msgid "Source not found." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:143 -msgid "Edit Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:144 -msgid "Delete Source" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:174 -msgid "Source removed" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:176 -msgid "Unable to remove source." -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:141 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:143 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:50 -msgid "Post not found." -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/markdown.php:202 -#: ../../include/bbcode.php:487 -msgid "post" -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:81 ../../include/text.php:2046 -#: ../../include/conversation.php:144 -msgid "comment" -msgstr "" - -#: ../../Zotlabs/Module/Tagger.php:121 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:60 ../../Zotlabs/Module/Connect.php:108 -msgid "Continue" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:89 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:91 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:94 ../../Zotlabs/Module/Connect.php:114 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:95 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:96 ../../Zotlabs/Module/Connect.php:117 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:105 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:113 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:59 -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 "" - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:61 -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 "" - -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:65 -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 "" - -#: ../../Zotlabs/Module/Uexport.php:66 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:67 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:68 -#, 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 "" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:49 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:69 -msgid "Import Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:70 -msgid "Import selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:93 -msgid "Export Webpage Elements" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:94 -msgid "Export selected" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:263 -msgid "Actions" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:264 -msgid "Page Link" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:265 -msgid "Page Title" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:295 -msgid "Invalid file type." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:307 -msgid "Error opening zip file" -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:318 -msgid "Invalid folder path." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:345 -msgid "No webpage elements detected." -msgstr "" - -#: ../../Zotlabs/Module/Webpages.php:420 -msgid "Import complete." -msgstr "" - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:25 -msgid "Content Filter settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:36 -msgid "" -"This app (when installed) allows you to filter incoming content from all " -"sources or from specific connections. The filtering may be based on words, " -"tags, regular expressions, or language" -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:44 -msgid "" -"The settings on this page apply to all incoming content. To edit the " -"settings for individual connetions, see the similar settings on the " -"Connection Edit page for that connection." -msgstr "" - -#: ../../Zotlabs/Module/Content_filter.php:66 -msgid "Content Filter Settings" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 -msgid "parent" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2841 -msgid "Collection" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:435 -#: ../../include/nav.php:438 -msgid "Calendar" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:277 -msgid "Add Files" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:286 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:217 -msgid "Type" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:361 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:366 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:377 -msgid "WARNING:" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:389 -msgid "Create new folder" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:391 -msgid "Upload file" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:404 -msgid "Drop files here to immediately upload" -msgstr "" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:184 -msgid "Admin" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Addon Features" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:37 -msgid "Friend zoom in/out" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:38 -msgid "Refresh" -msgstr "" - -#: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../Zotlabs/Widget/Categories.php:75 -#: ../../Zotlabs/Widget/Categories.php:119 -#: ../../Zotlabs/Widget/Categories.php:166 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 -msgid "Categories" -msgstr "" - -#: ../../Zotlabs/Widget/Appcategories.php:46 -#: ../../Zotlabs/Widget/Categories.php:78 -#: ../../Zotlabs/Widget/Categories.php:122 -#: ../../Zotlabs/Widget/Categories.php:169 ../../Zotlabs/Widget/Filer.php:31 -msgid "Everything" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" -msgstr "" - -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Installed apps" -msgstr "" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "" - -#: ../../Zotlabs/Widget/Cover_photo.php:65 -msgid "Click to show more" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "" - -#: ../../Zotlabs/Widget/Forums.php:103 -#: ../../Zotlabs/Widget/Notifications.php:119 -#: ../../Zotlabs/Widget/Notifications.php:120 -msgid "Forums" -msgstr "" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:24 -msgid "Profile Creation" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:26 -msgid "Upload profile photo" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:27 -msgid "Upload cover photo" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:106 -msgid "Edit your profile" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Find and Connect with others" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "View the directory" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:34 -msgid "View friend suggestions" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Manage your connections" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Communicate" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View your channel homepage" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:41 -msgid "View your network stream" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:57 -msgid "View public stream" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:61 ../../include/features.php:60 -msgid "New Member Links" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:152 -msgid "Show new posts only" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:122 -#: ../../Zotlabs/Widget/Notifications.php:153 -msgid "Filter by name" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:149 -msgid "Mark all notifications seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "New Registrations" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:133 -msgid "New Registrations Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:143 -msgid "Public Stream Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:146 -msgid "View the public stream" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:161 -msgid "Sorry, you have got no notifications at the moment" -msgstr "" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:49 -msgid "Display settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:56 -msgid "Manage locations" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Export channel" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "OAuth1 apps" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:78 -msgid "OAuth2 apps" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:96 -msgid "Commented Date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:100 -msgid "Order by last commented date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:103 -msgid "Posted Date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:107 -msgid "Order by last posted date" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:110 -msgid "Date Unthreaded" -msgstr "" - -#: ../../Zotlabs/Widget/Stream_order.php:114 -msgid "Order unthreaded by date" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 -#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 -msgid "Tags" -msgstr "" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "" - -#: ../../Zotlabs/Widget/Common_friends.php:40 -msgid "Common Connections" -msgstr "" - -#: ../../Zotlabs/Widget/Common_friends.php:45 -#, php-format -msgid "View all %d common connections" -msgstr "" - -#: ../../Zotlabs/Widget/Filer.php:28 -#: ../../Zotlabs/Widget/Activity_filter.php:131 ../../include/features.php:492 -msgid "Saved Folders" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:18 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Widget/Findpeople.php:26 -msgid "Find Channels" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:27 -msgid "Enter name or interest" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:28 -msgid "Connect/Follow" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:29 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../Zotlabs/Widget/Findpeople.php:36 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:24 -msgid "Personal Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:28 -msgid "Show posts that mention or involve me" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:38 -msgid "Starred Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:42 -msgid "Show posts that I have starred" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:62 -#, php-format -msgid "Show posts related to the %s access list" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:71 -msgid "Show my access lists" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:89 -msgid "Show posts to this forum" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:91 -msgid "New post" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:98 -msgid "Groups" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:102 -msgid "Show groups" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:125 -#, php-format -msgid "Show posts that I have filed to %s" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:135 -msgid "Show filed post categories" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:174 -msgid "Remove active filter" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:190 -msgid "Activity Filters" -msgstr "" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "" - -#: ../../include/acl_selectors.php:115 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "" - -#: ../../include/acl_selectors.php:116 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:150 -#, 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:192 -msgid "Delegation session ended." -msgstr "" - -#: ../../include/auth.php:196 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:291 -msgid "Email validation is incomplete. Please check your email." -msgstr "" - -#: ../../include/auth.php:307 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:317 -msgid "Login failed." -msgstr "" - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "" - -#: ../../include/datetime.php:238 ../../boot.php:2461 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:262 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "" - -#: ../../include/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/features.php:56 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "" - -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:116 -msgid "Private Notes" -msgstr "" - -#: ../../include/features.php:117 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "" - -#: ../../include/features.php:137 -msgid "Create interactive articles" -msgstr "" - -#: ../../include/features.php:154 -msgid "Photo Location" -msgstr "" - -#: ../../include/features.php:155 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:183 -msgid "Event Timezone Selection" -msgstr "" - -#: ../../include/features.php:184 -msgid "Allow event creation in timezones other than your own." -msgstr "" - -#: ../../include/features.php:202 -msgid "Advanced Directory Search" -msgstr "" - -#: ../../include/features.php:203 -msgid "Allows creation of complex directory search queries" -msgstr "" - -#: ../../include/features.php:211 -msgid "Advanced Theme and Layout Settings" -msgstr "" - -#: ../../include/features.php:212 -msgid "Allows fine tuning of themes and page layouts" -msgstr "" - -#: ../../include/features.php:221 -msgid "Access Control and Permissions" -msgstr "" - -#: ../../include/features.php:225 -msgid "Privacy Groups" -msgstr "" - -#: ../../include/features.php:226 -msgid "Enable management and selection of privacy groups" -msgstr "" - -#: ../../include/features.php:262 -msgid "OAuth2 Clients" -msgstr "" - -#: ../../include/features.php:263 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "" - -#: ../../include/features.php:283 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:359 -msgid "Auto-save drafts of posts and comments" -msgstr "" - -#: ../../include/features.php:360 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" -msgstr "" - -#: ../../include/features.php:371 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:461 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:465 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:466 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:474 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:475 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:483 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:484 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:493 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:501 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:502 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:519 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:520 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/help.php:80 -msgid "Help:" -msgstr "" - -#: ../../include/help.php:129 -msgid "Not Found" -msgstr "" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "" - -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" - -#: ../../include/js_strings.php:26 -msgid "lovely" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "wonderful" -msgstr "" - -#: ../../include/js_strings.php:28 -msgid "fantastic" -msgstr "" - -#: ../../include/js_strings.php:29 -msgid "great" -msgstr "" - -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" -msgstr "" - -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." -msgstr "" - -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." -msgstr "" - -#: ../../include/js_strings.php:33 -msgid "A channel name is required." -msgstr "" - -#: ../../include/js_strings.php:34 -msgid "This is a " -msgstr "" - -#: ../../include/js_strings.php:35 -msgid " channel name" -msgstr "" - -#: ../../include/js_strings.php:41 -msgid "timeago.prefixAgo" -msgstr "" - -#: ../../include/js_strings.php:42 -msgid "timeago.prefixFromNow" -msgstr "" - -#: ../../include/js_strings.php:43 -msgid "timeago.suffixAgo" -msgstr "" - -#: ../../include/js_strings.php:44 -msgid "timeago.suffixFromNow" -msgstr "" - -#: ../../include/js_strings.php:47 -msgid "less than a minute" -msgstr "" - -#: ../../include/js_strings.php:48 -msgid "about a minute" -msgstr "" - -#: ../../include/js_strings.php:49 -#, php-format -msgid "%d minutes" -msgstr "" - -#: ../../include/js_strings.php:50 -msgid "about an hour" -msgstr "" - -#: ../../include/js_strings.php:51 -#, php-format -msgid "about %d hours" -msgstr "" - -#: ../../include/js_strings.php:52 -msgid "a day" -msgstr "" - -#: ../../include/js_strings.php:53 -#, php-format -msgid "%d days" -msgstr "" - -#: ../../include/js_strings.php:54 -msgid "about a month" -msgstr "" - -#: ../../include/js_strings.php:55 -#, php-format -msgid "%d months" -msgstr "" - -#: ../../include/js_strings.php:56 -msgid "about a year" -msgstr "" - -#: ../../include/js_strings.php:57 -#, php-format -msgid "%d years" -msgstr "" - -#: ../../include/js_strings.php:58 -msgid " " -msgstr "" - -#: ../../include/js_strings.php:59 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/js_strings.php:61 ../../include/text.php:1379 -msgid "January" -msgstr "" - -#: ../../include/js_strings.php:62 ../../include/text.php:1379 -msgid "February" -msgstr "" - -#: ../../include/js_strings.php:63 ../../include/text.php:1379 -msgid "March" -msgstr "" - -#: ../../include/js_strings.php:64 ../../include/text.php:1379 -msgid "April" -msgstr "" - -#: ../../include/js_strings.php:65 -msgctxt "long" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:66 ../../include/text.php:1379 -msgid "June" -msgstr "" - -#: ../../include/js_strings.php:67 ../../include/text.php:1379 -msgid "July" -msgstr "" - -#: ../../include/js_strings.php:68 ../../include/text.php:1379 -msgid "August" -msgstr "" - -#: ../../include/js_strings.php:69 ../../include/text.php:1379 -msgid "September" -msgstr "" - -#: ../../include/js_strings.php:70 ../../include/text.php:1379 -msgid "October" -msgstr "" - -#: ../../include/js_strings.php:71 ../../include/text.php:1379 -msgid "November" -msgstr "" - -#: ../../include/js_strings.php:72 ../../include/text.php:1379 -msgid "December" -msgstr "" - -#: ../../include/js_strings.php:73 -msgid "Jan" -msgstr "" - -#: ../../include/js_strings.php:74 -msgid "Feb" -msgstr "" - -#: ../../include/js_strings.php:75 -msgid "Mar" -msgstr "" - -#: ../../include/js_strings.php:76 -msgid "Apr" -msgstr "" - -#: ../../include/js_strings.php:77 -msgctxt "short" -msgid "May" -msgstr "" - -#: ../../include/js_strings.php:78 -msgid "Jun" -msgstr "" - -#: ../../include/js_strings.php:79 -msgid "Jul" -msgstr "" - -#: ../../include/js_strings.php:80 -msgid "Aug" -msgstr "" - -#: ../../include/js_strings.php:81 -msgid "Sep" -msgstr "" - -#: ../../include/js_strings.php:82 -msgid "Oct" -msgstr "" - -#: ../../include/js_strings.php:83 -msgid "Nov" -msgstr "" - -#: ../../include/js_strings.php:84 -msgid "Dec" -msgstr "" - -#: ../../include/js_strings.php:85 ../../include/text.php:1375 -msgid "Sunday" -msgstr "" - -#: ../../include/js_strings.php:86 ../../include/text.php:1375 -msgid "Monday" -msgstr "" - -#: ../../include/js_strings.php:87 ../../include/text.php:1375 -msgid "Tuesday" -msgstr "" - -#: ../../include/js_strings.php:88 ../../include/text.php:1375 -msgid "Wednesday" -msgstr "" - -#: ../../include/js_strings.php:89 ../../include/text.php:1375 -msgid "Thursday" -msgstr "" - -#: ../../include/js_strings.php:90 ../../include/text.php:1375 -msgid "Friday" -msgstr "" - -#: ../../include/js_strings.php:91 ../../include/text.php:1375 -msgid "Saturday" -msgstr "" - -#: ../../include/js_strings.php:92 -msgid "Sun" -msgstr "" - -#: ../../include/js_strings.php:93 -msgid "Mon" -msgstr "" - -#: ../../include/js_strings.php:94 -msgid "Tue" -msgstr "" - -#: ../../include/js_strings.php:95 -msgid "Wed" -msgstr "" - -#: ../../include/js_strings.php:96 -msgid "Thu" -msgstr "" - -#: ../../include/js_strings.php:97 -msgid "Fri" -msgstr "" - -#: ../../include/js_strings.php:98 -msgid "Sat" -msgstr "" - -#: ../../include/js_strings.php:99 -msgctxt "calendar" -msgid "today" -msgstr "" - -#: ../../include/js_strings.php:100 -msgctxt "calendar" -msgid "month" -msgstr "" - -#: ../../include/js_strings.php:101 -msgctxt "calendar" -msgid "week" -msgstr "" - -#: ../../include/js_strings.php:102 -msgctxt "calendar" -msgid "day" -msgstr "" - -#: ../../include/js_strings.php:103 -msgctxt "calendar" -msgid "All day" -msgstr "" - -#: ../../include/language.php:397 ../../include/text.php:1882 -msgid "default" -msgstr "" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/items.php:932 ../../include/items.php:992 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1173 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1175 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1177 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1179 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1181 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1183 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1185 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1187 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:4033 -msgid "Privacy group not found." -msgstr "" - -#: ../../include/items.php:4049 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:4056 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:4068 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4412 -msgid "profile photo" -msgstr "" - -#: ../../include/items.php:4615 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4615 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4615 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/network.php:795 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1921 ../../include/network.php:1922 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1923 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1924 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1925 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1928 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1929 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1930 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1931 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1932 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1933 -msgid "MySpace" -msgstr "" - -#: ../../include/text.php:489 -msgid "prev" -msgstr "" - -#: ../../include/text.php:491 -msgid "first" -msgstr "" - -#: ../../include/text.php:520 -msgid "last" -msgstr "" - -#: ../../include/text.php:523 -msgid "next" -msgstr "" - -#: ../../include/text.php:534 -msgid "older" -msgstr "" - -#: ../../include/text.php:536 -msgid "newer" -msgstr "" - -#: ../../include/text.php:967 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:999 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1055 -#, php-format -msgid "Network: %s" -msgstr "" - -#: ../../include/text.php:1144 ../../include/text.php:1148 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1144 ../../include/text.php:1148 -#: ../../include/conversation.php:249 -msgid "poked" -msgstr "" - -#: ../../include/text.php:1149 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1149 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1150 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1150 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1151 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1151 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1152 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1152 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1153 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1153 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1176 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1177 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1178 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1179 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1180 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1181 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1182 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1183 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1184 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1185 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1186 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1187 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1188 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1189 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1190 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1191 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1192 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1193 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1194 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1195 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1196 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1379 -msgid "May" -msgstr "" - -#: ../../include/text.php:1453 -msgid "Unknown Attachment" -msgstr "" - -#: ../../include/text.php:1455 ../../include/feedutils.php:860 -msgid "unknown" -msgstr "" - -#: ../../include/text.php:1491 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1565 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1719 ../../include/message.php:14 -msgid "Download binary/encrypted content" -msgstr "" - -#: ../../include/text.php:1890 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1890 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1900 ../../extend/addon/a/wiki/Wiki_pages.php:37 -#: ../../extend/addon/a/wiki/Wiki_pages.php:94 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:359 -msgid "BBcode" -msgstr "" - -#: ../../include/text.php:1901 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1902 ../../extend/addon/a/wiki/Wiki_pages.php:37 -#: ../../extend/addon/a/wiki/Wiki_pages.php:94 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:359 -msgid "Markdown" -msgstr "" - -#: ../../include/text.php:1903 ../../extend/addon/a/wiki/Wiki_pages.php:37 -#: ../../extend/addon/a/wiki/Wiki_pages.php:94 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -msgid "Text" -msgstr "" - -#: ../../include/text.php:1904 -msgid "Comanche Layout" -msgstr "" - -#: ../../include/text.php:1909 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1918 -msgid "Page content type" -msgstr "" - -#: ../../include/text.php:2051 -msgid "activity" -msgstr "" - -#: ../../include/text.php:2136 -msgid "a-z, 0-9, -, and _ only" -msgstr "" - -#: ../../include/text.php:2456 -msgid "Design Tools" -msgstr "" - -#: ../../include/text.php:2462 -msgid "Pages" -msgstr "" - -#: ../../include/text.php:2484 -msgid "Import website..." -msgstr "" - -#: ../../include/text.php:2485 -msgid "Select folder to import" -msgstr "" - -#: ../../include/text.php:2486 -msgid "Import from a zipped folder:" -msgstr "" - -#: ../../include/text.php:2487 -msgid "Import from cloud files:" -msgstr "" - -#: ../../include/text.php:2488 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2489 -msgid "Enter path to website files" -msgstr "" - -#: ../../include/text.php:2490 -msgid "Select folder" -msgstr "" - -#: ../../include/text.php:2491 -msgid "Export website..." -msgstr "" - -#: ../../include/text.php:2492 -msgid "Export to a zip file" -msgstr "" - -#: ../../include/text.php:2493 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2494 -msgid "Enter a name for the zip file." -msgstr "" - -#: ../../include/text.php:2495 -msgid "Export to cloud files" -msgstr "" - -#: ../../include/text.php:2496 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2497 -msgid "Enter a path to a cloud files destination." -msgstr "" - -#: ../../include/text.php:2498 -msgid "Specify folder" -msgstr "" - -#: ../../include/security.php:506 -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/taxonomy.php:320 -msgid "Trending" -msgstr "" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "" - -#: ../../include/channel.php:44 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:77 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:80 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:196 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:208 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:285 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:383 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:554 ../../include/channel.php:643 -msgid "Unable to retrieve modified identity" -msgstr "" - -#: ../../include/channel.php:1172 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:1318 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:1321 ../../include/nav.php:106 -msgid "Edit Profile" -msgstr "" - -#: ../../include/channel.php:1339 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1416 ../../include/channel.php:1546 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1417 ../../include/channel.php:1590 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1418 ../../include/channel.php:1614 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1474 -msgid "Change your profile photo" -msgstr "" - -#: ../../include/channel.php:1505 -msgid "Trans" -msgstr "" - -#: ../../include/channel.php:1551 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1575 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1576 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1583 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1596 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1608 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1612 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1618 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1620 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1624 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1626 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1628 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1630 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1632 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1634 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1636 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1638 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1640 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1642 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/channel.php:1644 -msgid "Work/employment:" -msgstr "" - -#: ../../include/channel.php:1646 -msgid "School/education:" -msgstr "" - -#: ../../include/channel.php:1669 -msgid "Like this thing" -msgstr "" - -#: ../../include/zid.php:353 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: ../../include/markdown.php:200 ../../include/bbcode.php:491 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:199 ../../include/bbcode.php:1351 -#: ../../include/bbcode.php:1354 ../../include/bbcode.php:1359 -#: ../../include/bbcode.php:1362 ../../include/bbcode.php:1365 -#: ../../include/bbcode.php:1368 ../../include/bbcode.php:1373 -#: ../../include/bbcode.php:1376 ../../include/bbcode.php:1381 -#: ../../include/bbcode.php:1384 ../../include/bbcode.php:1387 -#: ../../include/bbcode.php:1390 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:238 ../../include/bbcode.php:1401 -msgid "Encrypted content" -msgstr "" - -#: ../../include/bbcode.php:254 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "" - -#: ../../include/bbcode.php:258 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "" - -#: ../../include/bbcode.php:483 -msgid "card" -msgstr "" - -#: ../../include/bbcode.php:485 -msgid "article" -msgstr "" - -#: ../../include/bbcode.php:568 ../../include/bbcode.php:576 -msgid "Click to open/close" -msgstr "" - -#: ../../include/bbcode.php:576 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:878 ../../include/bbcode.php:1061 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:596 -msgid "Different viewers will see this text differently" -msgstr "" - -#: ../../include/bbcode.php:1339 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/message.php:33 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:72 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:77 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:207 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/event.php:32 ../../include/event.php:100 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:40 ../../include/event.php:105 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:50 ../../include/event.php:109 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:1046 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1254 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1255 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1256 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1257 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1258 -msgid "Cancelled" -msgstr "" - -#: ../../include/event.php:1337 ../../include/connections.php:701 -msgid "Home, Voice" -msgstr "" - -#: ../../include/event.php:1338 ../../include/connections.php:702 -msgid "Home, Fax" -msgstr "" - -#: ../../include/event.php:1340 ../../include/connections.php:704 -msgid "Work, Voice" -msgstr "" - -#: ../../include/event.php:1341 ../../include/connections.php:705 -msgid "Work, Fax" -msgstr "" - -#: ../../include/conversation.php:167 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:170 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "" - -#: ../../include/conversation.php:210 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:245 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:725 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:746 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:747 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:773 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:875 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:879 -msgid "Loading..." -msgstr "" - -#: ../../include/conversation.php:880 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:923 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:933 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:942 -msgid "Unfollow Thread" -msgstr "" - -#: ../../include/conversation.php:1015 -msgid "Visit" -msgstr "" - -#: ../../include/conversation.php:1045 -msgid "Edit Connection" -msgstr "" - -#: ../../include/conversation.php:1055 -msgid "Message" -msgstr "" - -#: ../../include/conversation.php:1162 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1162 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1166 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1168 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1174 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1177 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1178 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1178 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1235 ../../extend/addon/a/hsse/hsse.php:81 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1236 ../../extend/addon/a/hsse/hsse.php:82 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1254 ../../extend/addon/a/hsse/hsse.php:98 -msgid "Embed (existing) photo from your photo albums" -msgstr "" - -#: ../../include/conversation.php:1291 ../../extend/addon/a/hsse/hsse.php:134 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1292 ../../extend/addon/a/hsse/hsse.php:135 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1297 ../../extend/addon/a/hsse/hsse.php:140 -msgid "Choose a different album..." -msgstr "" - -#: ../../include/conversation.php:1301 ../../extend/addon/a/hsse/hsse.php:144 -msgid "Comments enabled" -msgstr "" - -#: ../../include/conversation.php:1302 ../../extend/addon/a/hsse/hsse.php:145 -msgid "Comments disabled" -msgstr "" - -#: ../../include/conversation.php:1351 ../../extend/addon/a/hsse/hsse.php:194 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1354 ../../extend/addon/a/hsse/hsse.php:197 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1364 ../../extend/addon/a/hsse/hsse.php:207 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:389 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../include/conversation.php:1368 ../../extend/addon/a/hsse/hsse.php:211 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1371 ../../extend/addon/a/hsse/hsse.php:214 -msgid "Disable comments" -msgstr "" - -#: ../../include/conversation.php:1372 ../../extend/addon/a/hsse/hsse.php:215 -msgid "Toggle comments" -msgstr "" - -#: ../../include/conversation.php:1380 ../../extend/addon/a/hsse/hsse.php:223 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1403 ../../extend/addon/a/hsse/hsse.php:246 -msgid "Other networks and post services" -msgstr "" - -#: ../../include/conversation.php:1406 ../../extend/addon/a/hsse/hsse.php:249 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1409 ../../extend/addon/a/hsse/hsse.php:252 -msgid "Set publish date" -msgstr "" - -#: ../../include/conversation.php:1722 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1725 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1729 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1732 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1740 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1749 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1755 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1758 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1765 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1768 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1843 ../../include/nav.php:396 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1856 ../../include/nav.php:409 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1866 ../../include/nav.php:419 -#: ../../include/photos.php:678 -msgid "Photo Albums" -msgstr "" - -#: ../../include/conversation.php:1874 ../../include/nav.php:427 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1911 ../../include/nav.php:462 -msgid "Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1914 ../../include/nav.php:465 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1925 ../../include/nav.php:476 -msgid "View Cards" -msgstr "" - -#: ../../include/conversation.php:1933 -msgid "articles" -msgstr "" - -#: ../../include/conversation.php:1936 ../../include/nav.php:487 -msgid "View Articles" -msgstr "" - -#: ../../include/conversation.php:1947 ../../include/nav.php:499 -msgid "View Webpages" -msgstr "" - -#: ../../include/conversation.php:1957 ../../include/nav.php:508 -#: ../../extend/addon/a/wiki/Wiki_list.php:18 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:204 -msgid "Wikis" -msgstr "" - -#: ../../include/conversation.php:2016 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:2019 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:2022 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:2025 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:2028 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:2031 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/account.php:37 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:39 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:45 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:77 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:81 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:159 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:226 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration confirmation for %s" -msgstr "" - -#: ../../include/account.php:386 -#, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../include/account.php:408 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:414 ../../include/account.php:476 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../include/account.php:487 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:527 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../include/account.php:806 ../../include/account.php:808 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/account.php:814 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:819 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/nav.php:81 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:81 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:87 -msgid "Manage your channels" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Manage your access lists" -msgstr "" - -#: ../../include/nav.php:92 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:127 -#: ../../include/nav.php:146 ../../boot.php:1597 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:98 ../../include/nav.php:127 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:101 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:104 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:113 ../../include/nav.php:117 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:144 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:146 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:163 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:178 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:297 -msgid "Powered by $Projectname" -msgstr "" - -#: ../../include/nav.php:308 -msgid "@name, !forum, #tag, content" -msgstr "" - -#: ../../include/nav.php:309 -msgid "Please wait..." -msgstr "" - -#: ../../include/nav.php:315 -msgid "Add/Manage Apps" -msgstr "" - -#: ../../include/nav.php:316 -msgid "Arrange Apps" -msgstr "" - -#: ../../include/nav.php:317 -msgid "Toggle System Apps" -msgstr "" - -#: ../../include/oembed.php:226 -msgid "View PDF" -msgstr "" - -#: ../../include/oembed.php:355 -msgid " by " -msgstr "" - -#: ../../include/oembed.php:356 -msgid " on " -msgstr "" - -#: ../../include/oembed.php:385 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:394 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/import.php:26 -msgid "Unable to import a removed channel." -msgstr "" - -#: ../../include/import.php:52 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:73 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/import.php:117 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/photos.php:150 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:161 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:326 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:381 -msgid "a new photo" -msgstr "" - -#: ../../include/photos.php:385 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:683 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/attach.php:268 ../../include/attach.php:377 -msgid "Item was not found." -msgstr "" - -#: ../../include/attach.php:285 -msgid "Unknown error." -msgstr "" - -#: ../../include/attach.php:566 -msgid "No source file." -msgstr "" - -#: ../../include/attach.php:588 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:607 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:749 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:770 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:952 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:981 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:1055 ../../include/attach.php:1071 -msgid "Path not available." -msgstr "" - -#: ../../include/attach.php:1120 ../../include/attach.php:1285 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:1146 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:1171 -msgid "Path not found." -msgstr "" - -#: ../../include/attach.php:1239 -msgid "mkdir failed." -msgstr "" - -#: ../../include/attach.php:1243 -msgid "database storage failed." -msgstr "" - -#: ../../include/attach.php:1291 -msgid "Empty path" -msgstr "" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "" - -#: ../../extend/addon/a/articles/Mod_Article_edit.php:130 -msgid "Edit Article" -msgstr "" - -#: ../../extend/addon/a/articles/Mod_Articles.php:39 -msgid "" -"This addon app provides a blog that is separate from your social stream. " -"Visitors may comment but the content remains on this site and is not " -"propagated elsewhere." -msgstr "" - -#: ../../extend/addon/a/articles/Mod_Articles.php:103 -msgid "Add Article" -msgstr "" - -#: ../../extend/addon/a/articles/articles.php:37 -msgid "Can view my articles" -msgstr "" - -#: ../../extend/addon/a/articles/articles.php:38 -msgid "Can write to my articles" -msgstr "" - -#: ../../extend/addon/a/file_import/Mod_file_import.php:70 -msgid "" -"This addon app copies existing file storage to a cloned/copied channel. Once " -"the app is installed, visit the newly installed app. This will allow you to " -"set the location of your original channel and an optional date range of " -"files to copy." -msgstr "" - -#: ../../extend/addon/a/file_import/Mod_file_import.php:84 -msgid "" -"This will import all your cloud files from a cloned channel on another " -"server. This may take a while if you have lots of files." -msgstr "" - -#: ../../extend/addon/a/file_import/Mod_file_import.php:85 -msgid "Original Server base URL" -msgstr "" - -#: ../../extend/addon/a/file_import/Mod_file_import.php:86 -msgid "Since modified date yyyy-mm-dd" -msgstr "" - -#: ../../extend/addon/a/file_import/Mod_file_import.php:87 -msgid "Until modified date yyyy-mm-dd" -msgstr "" - -#: ../../extend/addon/a/hsse/Mod_Hsse.php:15 -msgid "WYSIWYG status editor" -msgstr "" - -#: ../../extend/addon/a/hsse/Mod_Hsse.php:34 -msgid "WYSIWYG Status" -msgstr "" - -#: ../../extend/addon/a/ldapauth/ldapauth.php:70 -msgid "An account has been created for you." -msgstr "" - -#: ../../extend/addon/a/ldapauth/ldapauth.php:77 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "" - -#: ../../extend/addon/a/logrot/logrot.php:37 -msgid "Logfile archive directory" -msgstr "" - -#: ../../extend/addon/a/logrot/logrot.php:37 -msgid "Directory to store rotated logs" -msgstr "" - -#: ../../extend/addon/a/logrot/logrot.php:38 -msgid "Logfile size in bytes before rotating, example 10M" -msgstr "" - -#: ../../extend/addon/a/logrot/logrot.php:39 -msgid "Number of logfiles to retain" -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:20 -msgid "NSFW Settings saved." -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:30 -msgid "" -"This addon app looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:42 -msgid "Comma separated list of keywords to hide" -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:42 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:46 -msgid "Collapse entire conversation if a match is found" -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 -msgid "Not Safe For Work Settings" -msgstr "" - -#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 -msgid "General Purpose Content Filter" -msgstr "" - -#: ../../extend/addon/a/nsfw/nsfw.php:152 -msgid "Conversation muted" -msgstr "" - -#: ../../extend/addon/a/nsfw/nsfw.php:159 -msgid "Possible adult content" -msgstr "" - -#: ../../extend/addon/a/nsfw/nsfw.php:174 -#, php-format -msgid "%s - view" -msgstr "" - -#: ../../extend/addon/a/stream_order/Mod_Stream_Order.php:14 -msgid "" -"This addon app provides a selector on your network stream page allowing you " -"to change the sort order of the page between 'recently commented' (default), " -"'posted order', or 'unthreaded' which displays single activities as received." -msgstr "" - -#: ../../extend/addon/a/superblock/Mod_Superblock.php:51 -#: ../../extend/addon/a/superblock/superblock.php:344 -msgid "superblock settings updated" -msgstr "" - -#: ../../extend/addon/a/superblock/Mod_Superblock.php:62 -msgid "" -"This addon app allows you to block channels from appearing in your stream " -"and basically makes them vanish from your life. You may occasionally " -"encounter them on other websites but otherwise this blocking is extensive. " -"To enable blocking, install this app if it is not already installed, then " -"select the drop-down menu attached to the channel photo in a conversation " -"and select 'Block Completely'" -msgstr "" - -#: ../../extend/addon/a/superblock/Mod_Superblock.php:92 -msgid "Currently blocked" -msgstr "" - -#: ../../extend/addon/a/superblock/Mod_Superblock.php:94 -msgid "No channels currently blocked" -msgstr "" - -#: ../../extend/addon/a/superblock/Mod_Superblock.php:100 -msgid "Superblock Settings" -msgstr "" - -#: ../../extend/addon/a/superblock/superblock.php:296 -msgid "Block Completely" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWiki.php:150 -msgid "Wiki updated successfully" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWiki.php:204 -msgid "Wiki files deleted successfully" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:40 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:91 -msgid "(No Title)" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:104 -msgid "Wiki page create failed." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:117 -msgid "Wiki not found." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:128 -msgid "Destination name already exists" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:160 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:356 -msgid "Page not found" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:191 -msgid "Error reading page content" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:347 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:397 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:464 -#: ../../extend/addon/a/wiki/NativeWikiPage.php:505 -msgid "Error reading wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:385 -msgid "Page update failed." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:419 -msgid "Nothing deleted" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:485 -msgid "Compare: object not found." -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:491 -msgid "Page updated" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:494 -msgid "Untitled" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:500 -msgid "Wiki resource_id required for git commit" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:556 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:557 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:24 -msgid "Date" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:558 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:25 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:355 -msgid "Revert" -msgstr "" - -#: ../../extend/addon/a/wiki/NativeWikiPage.php:559 -#: ../../extend/addon/a/wiki/Wiki_page_history.php:26 -msgid "Compare" -msgstr "" - -#: ../../extend/addon/a/wiki/Wiki_pages.php:33 -#: ../../extend/addon/a/wiki/Wiki_pages.php:90 -msgid "Add new page" -msgstr "" - -#: ../../extend/addon/a/wiki/Wiki_pages.php:84 -msgid "Wiki Pages" -msgstr "" - -#: ../../extend/addon/a/wiki/Wiki_pages.php:95 -msgid "Page name" -msgstr "" - -#: ../../extend/addon/a/wiki/wiki.php:44 -msgid "Can view my wiki pages" -msgstr "" - -#: ../../extend/addon/a/wiki/wiki.php:45 -msgid "Can write to my wiki pages" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:35 -msgid "Profile Unavailable." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:48 -msgid "This addon app provides a wiki for your channel." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:76 -msgid "Invalid channel" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:131 -msgid "Error retrieving wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:138 -msgid "Error creating zip file export folder" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:189 -msgid "Error downloading wiki: " -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:210 -msgid "Download" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:214 -msgid "Wiki name" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 -msgid "Content type" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:218 -msgid "Any type" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:225 -msgid "Lock content type" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:226 -msgid "Create a status post for this wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:227 -msgid "Edit Wiki Name" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:269 -msgid "Wiki not found" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:293 -msgid "Rename page" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:315 -msgid "Error retrieving page content" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:323 -#: ../../extend/addon/a/wiki/Mod_Wiki.php:325 -msgid "New page" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:354 -msgid "Revision Comparison" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:362 -msgid "Short description of your changes (optional)" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:373 -msgid "Source" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:383 -msgid "New page name" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:388 -msgid "Embed image from photo albums" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:399 -msgid "History" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:477 -msgid "Error creating wiki. Invalid name." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:484 -msgid "A wiki with this name already exists." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:497 -msgid "Wiki created, but error creating Home page." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:504 -msgid "Error creating wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:527 -msgid "Error updating wiki. Invalid name." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:547 -msgid "Error updating wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:562 -msgid "Wiki delete permission denied." -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:572 -msgid "Error deleting wiki" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:605 -msgid "New page created" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:727 -msgid "Cannot delete Home" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:791 -msgid "Current Revision" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:791 -msgid "Selected Revision" -msgstr "" - -#: ../../extend/addon/a/wiki/Mod_Wiki.php:840 -msgid "You must be authenticated." -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:21 -msgid "Channel is required." -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:34 -msgid "Zotpost Settings saved." -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:42 -msgid "" -"This addon app allows you to cross-post to other Zot services and channels. " -"After installing the app, select it to configure the destination settings " -"and preferences." -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:63 -msgid "Zot server URL" -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:63 -msgid "https://example.com" -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:67 -msgid "Zot channel name" -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:67 -msgid "Nickname" -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:71 -msgid "Zot password" -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 -msgid "Send public postings to Zot channel by default" -msgstr "" - -#: ../../extend/addon/a/zotpost/Mod_zotpost.php:79 -msgid "Zotpost Settings" -msgstr "" - -#: ../../extend/addon/a/zotpost/zotpost.php:45 -msgid "Post to Zot" -msgstr "" - -#: ../../boot.php:1577 -msgid "Create an account to access services and applications" -msgstr "" - -#: ../../boot.php:1601 -msgid "Login/Email" -msgstr "" - -#: ../../boot.php:1602 -msgid "Password" -msgstr "" - -#: ../../boot.php:1603 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1606 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:2406 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2411 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "" - -#: ../../boot.php:2455 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" - -#: ../../boot.php:2460 -msgid "Cron/Scheduled tasks not running." -msgstr "" diff --git a/util/hstrings.php b/util/hstrings.php deleted file mode 100644 index 1fe63b7f7..000000000 --- a/util/hstrings.php +++ /dev/null @@ -1,2120 +0,0 @@ -3 hours) before submitting it."] = ""; -App::$strings["created a new post"] = ""; -App::$strings["commented on %s's post"] = ""; -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."] = ""; -App::$strings["Default privacy group for new contacts"] = ""; -App::$strings["All Channels"] = ""; -App::$strings["edit"] = ""; -App::$strings["Collections"] = ""; -App::$strings["Edit collection"] = ""; -App::$strings["Add new collection"] = ""; -App::$strings["Channels not in any collection"] = ""; -App::$strings["add"] = ""; -App::$strings["Not a valid email address"] = ""; -App::$strings["Your email domain is not among those allowed on this site"] = ""; -App::$strings["Your email address is already registered at this site."] = ""; -App::$strings["An invitation is required."] = ""; -App::$strings["Invitation could not be verified."] = ""; -App::$strings["Please enter the required information."] = ""; -App::$strings["Failed to store account information."] = ""; -App::$strings["Registration confirmation for %s"] = ""; -App::$strings["Registration request at %s"] = ""; -App::$strings["Administrator"] = ""; -App::$strings["your registration password"] = ""; -App::$strings["Registration details for %s"] = ""; -App::$strings["Account approved."] = ""; -App::$strings["Registration revoked for %s"] = ""; -App::$strings["Account verified. Please login."] = ""; -App::$strings["Click here to upgrade."] = ""; -App::$strings["This action exceeds the limits set by your subscription plan."] = ""; -App::$strings["This action is not available under your subscription plan."] = ""; -App::$strings["Miscellaneous"] = ""; -App::$strings["YYYY-MM-DD or MM-DD"] = ""; -App::$strings["Required"] = ""; -App::$strings["never"] = ""; -App::$strings["less than a second ago"] = ""; -App::$strings["year"] = ""; -App::$strings["years"] = ""; -App::$strings["month"] = ""; -App::$strings["months"] = ""; -App::$strings["week"] = ""; -App::$strings["weeks"] = ""; -App::$strings["day"] = ""; -App::$strings["days"] = ""; -App::$strings["hour"] = ""; -App::$strings["hours"] = ""; -App::$strings["minute"] = ""; -App::$strings["minutes"] = ""; -App::$strings["second"] = ""; -App::$strings["seconds"] = ""; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = ""; -App::$strings["%1\$s's birthday"] = ""; -App::$strings["Happy Birthday %1\$s"] = ""; -App::$strings["New Page"] = ""; -App::$strings["Edit"] = ""; -App::$strings["View"] = ""; -App::$strings["Preview"] = ""; -App::$strings["Actions"] = ""; -App::$strings["Page Link"] = ""; -App::$strings["Title"] = ""; -App::$strings["Created"] = ""; -App::$strings["Edited"] = ""; -App::$strings["Public Timeline"] = ""; -App::$strings["Default"] = ""; -App::$strings["Directory Options"] = ""; -App::$strings["Alphabetic"] = ""; -App::$strings["Reverse Alphabetic"] = ""; -App::$strings["Newest to Oldest"] = ""; -App::$strings["Oldest to Newest"] = ""; -App::$strings["Sort"] = ""; -App::$strings["Safe Mode"] = ""; -App::$strings["Public Forums Only"] = ""; -App::$strings["This Website Only"] = ""; -App::$strings["l F d, Y \\@ g:i A"] = ""; -App::$strings["Starts:"] = ""; -App::$strings["Finishes:"] = ""; -App::$strings["Location:"] = ""; -App::$strings["This event has been added to your calendar."] = ""; -App::$strings["Delete this item?"] = ""; -App::$strings["Comment"] = ""; -App::$strings["[+] show all"] = ""; -App::$strings["[-] show less"] = ""; -App::$strings["[+] expand"] = ""; -App::$strings["[-] collapse"] = ""; -App::$strings["Password too short"] = ""; -App::$strings["Passwords do not match"] = ""; -App::$strings["everybody"] = ""; -App::$strings["Secret Passphrase"] = ""; -App::$strings["Passphrase hint"] = ""; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; -App::$strings["close all"] = ""; -App::$strings["Nothing new here"] = ""; -App::$strings["Rate This Channel (this is public)"] = ""; -App::$strings["Rating"] = ""; -App::$strings["Describe (optional)"] = ""; -App::$strings["Submit"] = ""; -App::$strings["Please enter a link URL"] = ""; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; -App::$strings["timeago.prefixAgo"] = ""; -App::$strings["timeago.prefixFromNow"] = ""; -App::$strings["ago"] = ""; -App::$strings["from now"] = ""; -App::$strings["less than a minute"] = ""; -App::$strings["about a minute"] = ""; -App::$strings["%d minutes"] = ""; -App::$strings["about an hour"] = ""; -App::$strings["about %d hours"] = ""; -App::$strings["a day"] = ""; -App::$strings["%d days"] = ""; -App::$strings["about a month"] = ""; -App::$strings["%d months"] = ""; -App::$strings["about a year"] = ""; -App::$strings["%d years"] = ""; -App::$strings[" "] = ""; -App::$strings["timeago.numbers"] = ""; -App::$strings["parent"] = ""; -App::$strings["Collection"] = ""; -App::$strings["Principal"] = ""; -App::$strings["Addressbook"] = ""; -App::$strings["Calendar"] = ""; -App::$strings["Schedule Inbox"] = ""; -App::$strings["Schedule Outbox"] = ""; -App::$strings["Unknown"] = ""; -App::$strings["%1\$s used"] = ""; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = ""; -App::$strings["Files"] = ""; -App::$strings["Total"] = ""; -App::$strings["Shared"] = ""; -App::$strings["Create"] = ""; -App::$strings["Upload"] = ""; -App::$strings["Name"] = ""; -App::$strings["Type"] = ""; -App::$strings["Size"] = ""; -App::$strings["Last Modified"] = ""; -App::$strings["Delete"] = ""; -App::$strings["Create new folder"] = ""; -App::$strings["Upload file"] = ""; -App::$strings["%1\$s's bookmarks"] = ""; -App::$strings["view full size"] = ""; -App::$strings["General Features"] = ""; -App::$strings["Content Expiration"] = ""; -App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; -App::$strings["Multiple Profiles"] = ""; -App::$strings["Ability to create multiple profiles"] = ""; -App::$strings["Advanced Profiles"] = ""; -App::$strings["Additional profile sections and selections"] = ""; -App::$strings["Profile Import/Export"] = ""; -App::$strings["Save and load profile details across sites/channels"] = ""; -App::$strings["Web Pages"] = ""; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Private Notes"] = ""; -App::$strings["Enables a tool to store notes and reminders"] = ""; -App::$strings["Navigation Channel Select"] = ""; -App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; -App::$strings["Photo Location"] = ""; -App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; -App::$strings["Expert Mode"] = ""; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; -App::$strings["Premium Channel"] = ""; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; -App::$strings["Post Composition Features"] = ""; -App::$strings["Use Markdown"] = ""; -App::$strings["Allow use of \"Markdown\" to format posts"] = ""; -App::$strings["Large Photos"] = ""; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = ""; -App::$strings["Channel Sources"] = ""; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["Even More Encryption"] = ""; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; -App::$strings["Enable voting tools"] = ""; -App::$strings["Provide a class of post which others can vote on"] = ""; -App::$strings["Network and Stream Filtering"] = ""; -App::$strings["Search by Date"] = ""; -App::$strings["Ability to select posts by date ranges"] = ""; -App::$strings["Collections Filter"] = ""; -App::$strings["Enable widget to display Network posts only from selected collections"] = ""; -App::$strings["Saved Searches"] = ""; -App::$strings["Save search terms for re-use"] = ""; -App::$strings["Network Personal Tab"] = ""; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; -App::$strings["Network New Tab"] = ""; -App::$strings["Enable tab to display all new Network activity"] = ""; -App::$strings["Affinity Tool"] = ""; -App::$strings["Filter stream activity by depth of relationships"] = ""; -App::$strings["Suggest Channels"] = ""; -App::$strings["Show channel suggestions"] = ""; -App::$strings["Post/Comment Tools"] = ""; -App::$strings["Tagging"] = ""; -App::$strings["Ability to tag existing posts"] = ""; -App::$strings["Post Categories"] = ""; -App::$strings["Add categories to your posts"] = ""; -App::$strings["Saved Folders"] = ""; -App::$strings["Ability to file posts under folders"] = ""; -App::$strings["Dislike Posts"] = ""; -App::$strings["Ability to dislike posts/comments"] = ""; -App::$strings["Star Posts"] = ""; -App::$strings["Ability to mark special posts with a star indicator"] = ""; -App::$strings["Tag Cloud"] = ""; -App::$strings["Provide a personal tag cloud on your channel page"] = ""; -App::$strings["Categories"] = ""; -App::$strings["Apps"] = ""; -App::$strings["System"] = ""; -App::$strings["Personal"] = ""; -App::$strings["Create Personal App"] = ""; -App::$strings["Edit Personal App"] = ""; -App::$strings["Connect"] = ""; -App::$strings["Ignore/Hide"] = ""; -App::$strings["Suggestions"] = ""; -App::$strings["See more..."] = ""; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; -App::$strings["Add New Connection"] = ""; -App::$strings["Enter the channel address"] = ""; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = ""; -App::$strings["Notes"] = ""; -App::$strings["Save"] = ""; -App::$strings["Remove term"] = ""; -App::$strings["Everything"] = ""; -App::$strings["Archives"] = ""; -App::$strings["Me"] = ""; -App::$strings["Family"] = ""; -App::$strings["Friends"] = ""; -App::$strings["Acquaintances"] = ""; -App::$strings["All"] = ""; -App::$strings["Refresh"] = ""; -App::$strings["Account settings"] = ""; -App::$strings["Channel settings"] = ""; -App::$strings["Additional features"] = ""; -App::$strings["Feature/Addon settings"] = ""; -App::$strings["Display settings"] = ""; -App::$strings["Connected apps"] = ""; -App::$strings["Export channel"] = ""; -App::$strings["Connection Default Permissions"] = ""; -App::$strings["Premium Channel Settings"] = ""; -App::$strings["Settings"] = ""; -App::$strings["Messages"] = ""; -App::$strings["Check Mail"] = ""; -App::$strings["New Message"] = ""; -App::$strings["Chat Rooms"] = ""; -App::$strings["Bookmarked Chatrooms"] = ""; -App::$strings["Suggested Chatrooms"] = ""; -App::$strings["photo/image"] = ""; -App::$strings["Rate Me"] = ""; -App::$strings["View Ratings"] = ""; -App::$strings["Public Hubs"] = ""; -App::$strings["\$Projectname Notification"] = ""; -App::$strings["\$projectname"] = ""; -App::$strings["Thank You,"] = ""; -App::$strings["%s Administrator"] = ""; -App::$strings["%s "] = ""; -App::$strings["[Red:Notify] New mail received at %s"] = ""; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = ""; -App::$strings["%1\$s sent you %2\$s."] = ""; -App::$strings["a private message"] = ""; -App::$strings["Please visit %s to view and/or reply to your private messages."] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; -App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; -App::$strings["[Red:Notify] %s posted to your profile wall"] = ""; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; -App::$strings["[Red:Notify] %s tagged you"] = ""; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; -App::$strings["[Red:Notify] %1\$s poked you"] = ""; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -App::$strings["[Red:Notify] %s tagged your post"] = ""; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; -App::$strings["[Red:Notify] Introduction received"] = ""; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; -App::$strings["You may visit their profile at %s"] = ""; -App::$strings["Please visit %s to approve or reject the connection request."] = ""; -App::$strings["[Red:Notify] Friend suggestion received"] = ""; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; -App::$strings["Name:"] = ""; -App::$strings["Photo:"] = ""; -App::$strings["Please visit %s to approve or reject the suggestion."] = ""; -App::$strings["[Red:Notify]"] = ""; -App::$strings["Frequently"] = ""; -App::$strings["Hourly"] = ""; -App::$strings["Twice daily"] = ""; -App::$strings["Daily"] = ""; -App::$strings["Weekly"] = ""; -App::$strings["Monthly"] = ""; -App::$strings["Friendica"] = ""; -App::$strings["OStatus"] = ""; -App::$strings["RSS/Atom"] = ""; -App::$strings["Email"] = ""; -App::$strings["Diaspora"] = ""; -App::$strings["Facebook"] = ""; -App::$strings["Zot!"] = ""; -App::$strings["LinkedIn"] = ""; -App::$strings["XMPP/IM"] = ""; -App::$strings["MySpace"] = ""; -App::$strings["No recipient provided."] = ""; -App::$strings["[no subject]"] = ""; -App::$strings["Unable to determine sender."] = ""; -App::$strings["Stored post could not be verified."] = ""; -App::$strings["Channel is blocked on this site."] = ""; -App::$strings["Channel location missing."] = ""; -App::$strings["Response from remote channel was incomplete."] = ""; -App::$strings["Channel was deleted and no longer exists."] = ""; -App::$strings["Protocol disabled."] = ""; -App::$strings["Channel discovery failed."] = ""; -App::$strings["local account not found."] = ""; -App::$strings["Cannot connect to yourself."] = ""; -App::$strings["Private Message"] = ""; -App::$strings["Select"] = ""; -App::$strings["Save to Folder"] = ""; -App::$strings["I will attend"] = ""; -App::$strings["I will not attend"] = ""; -App::$strings["I might attend"] = ""; -App::$strings["I agree"] = ""; -App::$strings["I disagree"] = ""; -App::$strings["I abstain"] = ""; -App::$strings["View all"] = ""; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "", - 1 => "", -); -App::$strings["Add Star"] = ""; -App::$strings["Remove Star"] = ""; -App::$strings["Toggle Star Status"] = ""; -App::$strings["starred"] = ""; -App::$strings["Message signature validated"] = ""; -App::$strings["Message signature incorrect"] = ""; -App::$strings["Add Tag"] = ""; -App::$strings["I like this (toggle)"] = ""; -App::$strings["like"] = ""; -App::$strings["I don't like this (toggle)"] = ""; -App::$strings["dislike"] = ""; -App::$strings["Share This"] = ""; -App::$strings["share"] = ""; -App::$strings["%d comment"] = array( - 0 => "", - 1 => "", -); -App::$strings["View %s's profile - %s"] = ""; -App::$strings["to"] = ""; -App::$strings["via"] = ""; -App::$strings["Wall-to-Wall"] = ""; -App::$strings["via Wall-To-Wall:"] = ""; -App::$strings["from %s"] = ""; -App::$strings["last edited: %s"] = ""; -App::$strings["Expires: %s"] = ""; -App::$strings["Save Bookmarks"] = ""; -App::$strings["Add to Calendar"] = ""; -App::$strings["Mark all seen"] = ""; -App::$strings["__ctx:noun__ Likes"] = ""; -App::$strings["__ctx:noun__ Dislikes"] = ""; -App::$strings["Close"] = ""; -App::$strings["Please wait"] = ""; -App::$strings["This is you"] = ""; -App::$strings["Bold"] = ""; -App::$strings["Italic"] = ""; -App::$strings["Underline"] = ""; -App::$strings["Quote"] = ""; -App::$strings["Code"] = ""; -App::$strings["Image"] = ""; -App::$strings["Insert Link"] = ""; -App::$strings["Video"] = ""; -App::$strings["Encrypt text"] = ""; -App::$strings["New window"] = ""; -App::$strings["Open the selected location in a different window or browser tab"] = ""; -App::$strings["User '%s' deleted"] = ""; -App::$strings["Attachments:"] = ""; -App::$strings["\$Projectname event notification:"] = ""; -App::$strings["prev"] = ""; -App::$strings["first"] = ""; -App::$strings["last"] = ""; -App::$strings["next"] = ""; -App::$strings["older"] = ""; -App::$strings["newer"] = ""; -App::$strings["No connections"] = ""; -App::$strings["%d Connection"] = array( - 0 => "", - 1 => "", -); -App::$strings["View Connections"] = ""; -App::$strings["Search"] = ""; -App::$strings["poke"] = ""; -App::$strings["poked"] = ""; -App::$strings["ping"] = ""; -App::$strings["pinged"] = ""; -App::$strings["prod"] = ""; -App::$strings["prodded"] = ""; -App::$strings["slap"] = ""; -App::$strings["slapped"] = ""; -App::$strings["finger"] = ""; -App::$strings["fingered"] = ""; -App::$strings["rebuff"] = ""; -App::$strings["rebuffed"] = ""; -App::$strings["happy"] = ""; -App::$strings["sad"] = ""; -App::$strings["mellow"] = ""; -App::$strings["tired"] = ""; -App::$strings["perky"] = ""; -App::$strings["angry"] = ""; -App::$strings["stupified"] = ""; -App::$strings["puzzled"] = ""; -App::$strings["interested"] = ""; -App::$strings["bitter"] = ""; -App::$strings["cheerful"] = ""; -App::$strings["alive"] = ""; -App::$strings["annoyed"] = ""; -App::$strings["anxious"] = ""; -App::$strings["cranky"] = ""; -App::$strings["disturbed"] = ""; -App::$strings["frustrated"] = ""; -App::$strings["depressed"] = ""; -App::$strings["motivated"] = ""; -App::$strings["relaxed"] = ""; -App::$strings["surprised"] = ""; -App::$strings["Monday"] = ""; -App::$strings["Tuesday"] = ""; -App::$strings["Wednesday"] = ""; -App::$strings["Thursday"] = ""; -App::$strings["Friday"] = ""; -App::$strings["Saturday"] = ""; -App::$strings["Sunday"] = ""; -App::$strings["January"] = ""; -App::$strings["February"] = ""; -App::$strings["March"] = ""; -App::$strings["April"] = ""; -App::$strings["May"] = ""; -App::$strings["June"] = ""; -App::$strings["July"] = ""; -App::$strings["August"] = ""; -App::$strings["September"] = ""; -App::$strings["October"] = ""; -App::$strings["November"] = ""; -App::$strings["December"] = ""; -App::$strings["unknown.???"] = ""; -App::$strings["bytes"] = ""; -App::$strings["remove category"] = ""; -App::$strings["remove from file"] = ""; -App::$strings["Click to open/close"] = ""; -App::$strings["Link to Source"] = ""; -App::$strings["default"] = ""; -App::$strings["Page layout"] = ""; -App::$strings["You can create your own with the layouts tool"] = ""; -App::$strings["Page content type"] = ""; -App::$strings["Select an alternate language"] = ""; -App::$strings["photo"] = ""; -App::$strings["event"] = ""; -App::$strings["status"] = ""; -App::$strings["comment"] = ""; -App::$strings["activity"] = ""; -App::$strings["Design Tools"] = ""; -App::$strings["Blocks"] = ""; -App::$strings["Menus"] = ""; -App::$strings["Layouts"] = ""; -App::$strings["Pages"] = ""; -App::$strings["Logout"] = ""; -App::$strings["End this session"] = ""; -App::$strings["Home"] = ""; -App::$strings["Your posts and conversations"] = ""; -App::$strings["View Profile"] = ""; -App::$strings["Your profile page"] = ""; -App::$strings["Edit Profiles"] = ""; -App::$strings["Manage/Edit profiles"] = ""; -App::$strings["Edit Profile"] = ""; -App::$strings["Edit your profile"] = ""; -App::$strings["Photos"] = ""; -App::$strings["Your photos"] = ""; -App::$strings["Your files"] = ""; -App::$strings["Chat"] = ""; -App::$strings["Your chatrooms"] = ""; -App::$strings["Bookmarks"] = ""; -App::$strings["Your bookmarks"] = ""; -App::$strings["Webpages"] = ""; -App::$strings["Your webpages"] = ""; -App::$strings["Login"] = ""; -App::$strings["Sign in"] = ""; -App::$strings["%s - click to logout"] = ""; -App::$strings["Remote authentication"] = ""; -App::$strings["Click to authenticate to your home hub"] = ""; -App::$strings["Home Page"] = ""; -App::$strings["Register"] = ""; -App::$strings["Create an account"] = ""; -App::$strings["Help"] = ""; -App::$strings["Help and documentation"] = ""; -App::$strings["Applications, utilities, links, games"] = ""; -App::$strings["Search site content"] = ""; -App::$strings["Directory"] = ""; -App::$strings["Channel Directory"] = ""; -App::$strings["Matrix"] = ""; -App::$strings["Your matrix"] = ""; -App::$strings["Mark all matrix notifications seen"] = ""; -App::$strings["Channel Home"] = ""; -App::$strings["Channel home"] = ""; -App::$strings["Mark all channel notifications seen"] = ""; -App::$strings["Connections"] = ""; -App::$strings["Notices"] = ""; -App::$strings["Notifications"] = ""; -App::$strings["See all notifications"] = ""; -App::$strings["Mark all system notifications seen"] = ""; -App::$strings["Mail"] = ""; -App::$strings["Private mail"] = ""; -App::$strings["See all private messages"] = ""; -App::$strings["Mark all private messages seen"] = ""; -App::$strings["Inbox"] = ""; -App::$strings["Outbox"] = ""; -App::$strings["Events"] = ""; -App::$strings["Event Calendar"] = ""; -App::$strings["See all events"] = ""; -App::$strings["Mark all events seen"] = ""; -App::$strings["Channel Manager"] = ""; -App::$strings["Manage Your Channels"] = ""; -App::$strings["Account/Channel Settings"] = ""; -App::$strings["Admin"] = ""; -App::$strings["Site Setup and Configuration"] = ""; -App::$strings["Loading..."] = ""; -App::$strings["@name, #tag, content"] = ""; -App::$strings["Please wait..."] = ""; -App::$strings["Tags"] = ""; -App::$strings["Keywords"] = ""; -App::$strings["have"] = ""; -App::$strings["has"] = ""; -App::$strings["want"] = ""; -App::$strings["wants"] = ""; -App::$strings["likes"] = ""; -App::$strings["dislikes"] = ""; -App::$strings[" and "] = ""; -App::$strings["public profile"] = ""; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -App::$strings["Visit %1\$s's %2\$s"] = ""; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -App::$strings["Permission denied"] = ""; -App::$strings["(Unknown)"] = ""; -App::$strings["Visible to anybody on the internet."] = ""; -App::$strings["Visible to you only."] = ""; -App::$strings["Visible to anybody in this network."] = ""; -App::$strings["Visible to anybody authenticated."] = ""; -App::$strings["Visible to anybody on %s."] = ""; -App::$strings["Visible to all connections."] = ""; -App::$strings["Visible to approved connections."] = ""; -App::$strings["Visible to specific connections."] = ""; -App::$strings["Item not found."] = ""; -App::$strings["Permission denied."] = ""; -App::$strings["Collection not found."] = ""; -App::$strings["Collection is empty."] = ""; -App::$strings["Collection: %s"] = ""; -App::$strings["Connection: %s"] = ""; -App::$strings["Connection not found."] = ""; -App::$strings["Can view my normal stream and posts"] = ""; -App::$strings["Can view my default channel profile"] = ""; -App::$strings["Can view my photo albums"] = ""; -App::$strings["Can view my connections"] = ""; -App::$strings["Can view my file storage"] = ""; -App::$strings["Can view my webpages"] = ""; -App::$strings["Can send me their channel stream and posts"] = ""; -App::$strings["Can post on my channel page (\"wall\")"] = ""; -App::$strings["Can comment on or like my posts"] = ""; -App::$strings["Can send me private mail messages"] = ""; -App::$strings["Can post photos to my photo albums"] = ""; -App::$strings["Can like/dislike stuff"] = ""; -App::$strings["Profiles and things other than posts/comments"] = ""; -App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; -App::$strings["Advanced - useful for creating group forum channels"] = ""; -App::$strings["Can chat with me (when available)"] = ""; -App::$strings["Can write to my file storage"] = ""; -App::$strings["Can edit my webpages"] = ""; -App::$strings["Can source my public posts in derived channels"] = ""; -App::$strings["Somewhat advanced - very useful in open communities"] = ""; -App::$strings["Can administer my channel resources"] = ""; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -App::$strings["Social Networking"] = ""; -App::$strings["Mostly Public"] = ""; -App::$strings["Restricted"] = ""; -App::$strings["Private"] = ""; -App::$strings["Community Forum"] = ""; -App::$strings["Feed Republish"] = ""; -App::$strings["Special Purpose"] = ""; -App::$strings["Celebrity/Soapbox"] = ""; -App::$strings["Group Repository"] = ""; -App::$strings["Other"] = ""; -App::$strings["Custom/Expert Mode"] = ""; -App::$strings["channel"] = ""; -App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is now connected with %2\$s"] = ""; -App::$strings["%1\$s poked %2\$s"] = ""; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; -App::$strings["__ctx:title__ Likes"] = ""; -App::$strings["__ctx:title__ Dislikes"] = ""; -App::$strings["__ctx:title__ Agree"] = ""; -App::$strings["__ctx:title__ Disagree"] = ""; -App::$strings["__ctx:title__ Abstain"] = ""; -App::$strings["__ctx:title__ Attending"] = ""; -App::$strings["__ctx:title__ Not attending"] = ""; -App::$strings["__ctx:title__ Might attend"] = ""; -App::$strings["View %s's profile @ %s"] = ""; -App::$strings["Categories:"] = ""; -App::$strings["Filed under:"] = ""; -App::$strings["View in context"] = ""; -App::$strings["remove"] = ""; -App::$strings["Delete Selected Items"] = ""; -App::$strings["View Source"] = ""; -App::$strings["Follow Thread"] = ""; -App::$strings["View Status"] = ""; -App::$strings["View Photos"] = ""; -App::$strings["Matrix Activity"] = ""; -App::$strings["Edit Contact"] = ""; -App::$strings["Send PM"] = ""; -App::$strings["Poke"] = ""; -App::$strings["%s likes this."] = ""; -App::$strings["%s doesn't like this."] = ""; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "", -); -App::$strings["and"] = ""; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s like this."] = ""; -App::$strings["%s don't like this."] = ""; -App::$strings["Visible to everybody"] = ""; -App::$strings["Please enter a link URL:"] = ""; -App::$strings["Please enter a video link/URL:"] = ""; -App::$strings["Please enter an audio link/URL:"] = ""; -App::$strings["Tag term:"] = ""; -App::$strings["Save to Folder:"] = ""; -App::$strings["Where are you right now?"] = ""; -App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; -App::$strings["Share"] = ""; -App::$strings["Page link name"] = ""; -App::$strings["Post as"] = ""; -App::$strings["Upload photo"] = ""; -App::$strings["upload photo"] = ""; -App::$strings["Attach file"] = ""; -App::$strings["attach file"] = ""; -App::$strings["Insert web link"] = ""; -App::$strings["web link"] = ""; -App::$strings["Insert video link"] = ""; -App::$strings["video link"] = ""; -App::$strings["Insert audio link"] = ""; -App::$strings["audio link"] = ""; -App::$strings["Set your location"] = ""; -App::$strings["set location"] = ""; -App::$strings["Toggle voting"] = ""; -App::$strings["Clear browser location"] = ""; -App::$strings["clear location"] = ""; -App::$strings["Title (optional)"] = ""; -App::$strings["Categories (optional, comma-separated list)"] = ""; -App::$strings["Permission settings"] = ""; -App::$strings["permissions"] = ""; -App::$strings["Public post"] = ""; -App::$strings["Example: bob@example.com, mary@example.com"] = ""; -App::$strings["Set expiration date"] = ""; -App::$strings["OK"] = ""; -App::$strings["Cancel"] = ""; -App::$strings["Discover"] = ""; -App::$strings["Imported public streams"] = ""; -App::$strings["Commented Order"] = ""; -App::$strings["Sort by Comment Date"] = ""; -App::$strings["Posted Order"] = ""; -App::$strings["Sort by Post Date"] = ""; -App::$strings["Posts that mention or involve you"] = ""; -App::$strings["New"] = ""; -App::$strings["Activity Stream - by date"] = ""; -App::$strings["Starred"] = ""; -App::$strings["Favourite Posts"] = ""; -App::$strings["Spam"] = ""; -App::$strings["Posts flagged as SPAM"] = ""; -App::$strings["Channel"] = ""; -App::$strings["Status Messages and Posts"] = ""; -App::$strings["About"] = ""; -App::$strings["Profile Details"] = ""; -App::$strings["Photo Albums"] = ""; -App::$strings["Files and Storage"] = ""; -App::$strings["Chatrooms"] = ""; -App::$strings["Saved Bookmarks"] = ""; -App::$strings["Manage Webpages"] = ""; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "", - 1 => "", -); -App::$strings["Image/photo"] = ""; -App::$strings["Encrypted content"] = ""; -App::$strings["Install design element: "] = ""; -App::$strings["QR code"] = ""; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -App::$strings["post"] = ""; -App::$strings["Different viewers will see this text differently"] = ""; -App::$strings["$1 spoiler"] = ""; -App::$strings["$1 wrote:"] = ""; -App::$strings["Image exceeds website size limit of %lu bytes"] = ""; -App::$strings["Image file is empty."] = ""; -App::$strings["Unable to process image"] = ""; -App::$strings["Photo storage failed."] = ""; -App::$strings["Upload New Photos"] = ""; -App::$strings["Invalid data packet"] = ""; -App::$strings["Unable to verify channel signature"] = ""; -App::$strings["Unable to verify site signature for %s"] = ""; -App::$strings["Embedded content"] = ""; -App::$strings["Embedding disabled"] = ""; -App::$strings["Logged out."] = ""; -App::$strings["Failed authentication"] = ""; -App::$strings["Login failed."] = ""; -App::$strings["%d invitation available"] = array( - 0 => "", - 1 => "", -); -App::$strings["Advanced"] = ""; -App::$strings["Find Channels"] = ""; -App::$strings["Enter name or interest"] = ""; -App::$strings["Connect/Follow"] = ""; -App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; -App::$strings["Find"] = ""; -App::$strings["Channel Suggestions"] = ""; -App::$strings["Random Profile"] = ""; -App::$strings["Invite Friends"] = ""; -App::$strings["Advanced example: name=fred and country=iceland"] = ""; -App::$strings["%d connection in common"] = array( - 0 => "", - 1 => "", -); -App::$strings["show more"] = ""; -App::$strings["Visible to your default audience"] = ""; -App::$strings["Show"] = ""; -App::$strings["Don't show"] = ""; -App::$strings["Permissions"] = ""; -App::$strings["Item was not found."] = ""; -App::$strings["No source file."] = ""; -App::$strings["Cannot locate file to replace"] = ""; -App::$strings["Cannot locate file to revise/update"] = ""; -App::$strings["File exceeds size limit of %d"] = ""; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; -App::$strings["File upload failed. Possible system limit or action terminated."] = ""; -App::$strings["Stored file could not be verified. Upload failed."] = ""; -App::$strings["Path not available."] = ""; -App::$strings["Empty pathname"] = ""; -App::$strings["duplicate filename or path"] = ""; -App::$strings["Path not found."] = ""; -App::$strings["mkdir failed."] = ""; -App::$strings["database storage failed."] = ""; -App::$strings["Unable to obtain identity information from database"] = ""; -App::$strings["Empty name"] = ""; -App::$strings["Name too long"] = ""; -App::$strings["No account identifier"] = ""; -App::$strings["Nickname is required."] = ""; -App::$strings["Reserved nickname. Please choose another."] = ""; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = ""; -App::$strings["Requested channel is not available."] = ""; -App::$strings["Requested profile is not available."] = ""; -App::$strings["Change profile photo"] = ""; -App::$strings["Profiles"] = ""; -App::$strings["Manage/edit profiles"] = ""; -App::$strings["Create New Profile"] = ""; -App::$strings["Profile Image"] = ""; -App::$strings["visible to everybody"] = ""; -App::$strings["Edit visibility"] = ""; -App::$strings["Gender:"] = ""; -App::$strings["Status:"] = ""; -App::$strings["Homepage:"] = ""; -App::$strings["Online Now"] = ""; -App::$strings["g A l F d"] = ""; -App::$strings["F d"] = ""; -App::$strings["[today]"] = ""; -App::$strings["Birthday Reminders"] = ""; -App::$strings["Birthdays this week:"] = ""; -App::$strings["[No description]"] = ""; -App::$strings["Event Reminders"] = ""; -App::$strings["Events this week:"] = ""; -App::$strings["Profile"] = ""; -App::$strings["Full Name:"] = ""; -App::$strings["Like this channel"] = ""; -App::$strings["j F, Y"] = ""; -App::$strings["j F"] = ""; -App::$strings["Birthday:"] = ""; -App::$strings["Age:"] = ""; -App::$strings["for %1\$d %2\$s"] = ""; -App::$strings["Sexual Preference:"] = ""; -App::$strings["Hometown:"] = ""; -App::$strings["Tags:"] = ""; -App::$strings["Political Views:"] = ""; -App::$strings["Religion:"] = ""; -App::$strings["About:"] = ""; -App::$strings["Hobbies/Interests:"] = ""; -App::$strings["Likes:"] = ""; -App::$strings["Dislikes:"] = ""; -App::$strings["Contact information and Social Networks:"] = ""; -App::$strings["My other channels:"] = ""; -App::$strings["Musical interests:"] = ""; -App::$strings["Books, literature:"] = ""; -App::$strings["Television:"] = ""; -App::$strings["Film/dance/culture/entertainment:"] = ""; -App::$strings["Love/Romance:"] = ""; -App::$strings["Work/employment:"] = ""; -App::$strings["School/education:"] = ""; -App::$strings["Like this thing"] = ""; -App::$strings["Male"] = ""; -App::$strings["Female"] = ""; -App::$strings["Currently Male"] = ""; -App::$strings["Currently Female"] = ""; -App::$strings["Mostly Male"] = ""; -App::$strings["Mostly Female"] = ""; -App::$strings["Transgender"] = ""; -App::$strings["Intersex"] = ""; -App::$strings["Transsexual"] = ""; -App::$strings["Hermaphrodite"] = ""; -App::$strings["Neuter"] = ""; -App::$strings["Non-specific"] = ""; -App::$strings["Undecided"] = ""; -App::$strings["Males"] = ""; -App::$strings["Females"] = ""; -App::$strings["Gay"] = ""; -App::$strings["Lesbian"] = ""; -App::$strings["No Preference"] = ""; -App::$strings["Bisexual"] = ""; -App::$strings["Autosexual"] = ""; -App::$strings["Abstinent"] = ""; -App::$strings["Virgin"] = ""; -App::$strings["Deviant"] = ""; -App::$strings["Fetish"] = ""; -App::$strings["Oodles"] = ""; -App::$strings["Nonsexual"] = ""; -App::$strings["Single"] = ""; -App::$strings["Lonely"] = ""; -App::$strings["Available"] = ""; -App::$strings["Unavailable"] = ""; -App::$strings["Has crush"] = ""; -App::$strings["Infatuated"] = ""; -App::$strings["Dating"] = ""; -App::$strings["Unfaithful"] = ""; -App::$strings["Sex Addict"] = ""; -App::$strings["Friends/Benefits"] = ""; -App::$strings["Casual"] = ""; -App::$strings["Engaged"] = ""; -App::$strings["Married"] = ""; -App::$strings["Imaginarily married"] = ""; -App::$strings["Partners"] = ""; -App::$strings["Cohabiting"] = ""; -App::$strings["Common law"] = ""; -App::$strings["Happy"] = ""; -App::$strings["Not looking"] = ""; -App::$strings["Swinger"] = ""; -App::$strings["Betrayed"] = ""; -App::$strings["Separated"] = ""; -App::$strings["Unstable"] = ""; -App::$strings["Divorced"] = ""; -App::$strings["Imaginarily divorced"] = ""; -App::$strings["Widowed"] = ""; -App::$strings["Uncertain"] = ""; -App::$strings["It's complicated"] = ""; -App::$strings["Don't care"] = ""; -App::$strings["Ask me"] = ""; -App::$strings["Site Admin"] = ""; -App::$strings["Address Book"] = ""; -App::$strings["Mood"] = ""; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = ""; -App::$strings["Random Channel"] = ""; -App::$strings["Invite"] = ""; -App::$strings["Features"] = ""; -App::$strings["Language"] = ""; -App::$strings["Post"] = ""; -App::$strings["Profile Photo"] = ""; -App::$strings["Update"] = ""; -App::$strings["Install"] = ""; -App::$strings["Purchase"] = ""; -App::$strings["Missing room name"] = ""; -App::$strings["Duplicate room name"] = ""; -App::$strings["Invalid room specifier."] = ""; -App::$strings["Room not found."] = ""; -App::$strings["Room is full"] = ""; -App::$strings["Please choose"] = ""; -App::$strings["Agree"] = ""; -App::$strings["Disagree"] = ""; -App::$strings["Abstain"] = ""; -App::$strings["projectname"] = ""; -App::$strings["Some blurb about what to do when you're new here"] = ""; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; -App::$strings["Create a new channel"] = ""; -App::$strings["Current Channel"] = ""; -App::$strings["Switch to one of your channels by selecting it."] = ""; -App::$strings["Default Channel"] = ""; -App::$strings["Make Default"] = ""; -App::$strings["%d new messages"] = ""; -App::$strings["%d new introductions"] = ""; -App::$strings["Delegated Channels"] = ""; -App::$strings["Name is required"] = ""; -App::$strings["Key and Secret are required"] = ""; -App::$strings["Diaspora Policy Settings updated."] = ""; -App::$strings["Passwords do not match. Password unchanged."] = ""; -App::$strings["Empty passwords are not allowed. Password unchanged."] = ""; -App::$strings["Password changed."] = ""; -App::$strings["Password update failed. Please try again."] = ""; -App::$strings["Not valid email."] = ""; -App::$strings["Protected email address. Cannot change to that email."] = ""; -App::$strings["System failure storing new email. Please try again."] = ""; -App::$strings["Settings updated."] = ""; -App::$strings["No"] = ""; -App::$strings["Yes"] = ""; -App::$strings["Add application"] = ""; -App::$strings["Name of application"] = ""; -App::$strings["Consumer Key"] = ""; -App::$strings["Automatically generated - change if desired. Max length 20"] = ""; -App::$strings["Consumer Secret"] = ""; -App::$strings["Redirect"] = ""; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; -App::$strings["Icon url"] = ""; -App::$strings["Optional"] = ""; -App::$strings["You can't edit this application."] = ""; -App::$strings["Connected Apps"] = ""; -App::$strings["Client key starts with"] = ""; -App::$strings["No name"] = ""; -App::$strings["Remove authorization"] = ""; -App::$strings["No feature settings configured"] = ""; -App::$strings["Feature/Addon Settings"] = ""; -App::$strings["Settings for the built-in Diaspora emulator"] = ""; -App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; -App::$strings["Diaspora Policy Settings"] = ""; -App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; -App::$strings["Account Settings"] = ""; -App::$strings["Enter New Password:"] = ""; -App::$strings["Confirm New Password:"] = ""; -App::$strings["Leave password fields blank unless changing"] = ""; -App::$strings["Email Address:"] = ""; -App::$strings["Remove Account"] = ""; -App::$strings["Remove this account including all its channels"] = ""; -App::$strings["Off"] = ""; -App::$strings["On"] = ""; -App::$strings["Additional Features"] = ""; -App::$strings["Connector Settings"] = ""; -App::$strings["No special theme for mobile devices"] = ""; -App::$strings["%s - (Experimental)"] = ""; -App::$strings["mobile"] = ""; -App::$strings["Display Settings"] = ""; -App::$strings["Display Theme:"] = ""; -App::$strings["Mobile Theme:"] = ""; -App::$strings["Enable user zoom on mobile devices"] = ""; -App::$strings["Update browser every xx seconds"] = ""; -App::$strings["Minimum of 10 seconds, no maximum"] = ""; -App::$strings["Maximum number of conversations to load at any time:"] = ""; -App::$strings["Maximum of 100 items"] = ""; -App::$strings["Show emoticons (smilies) as images"] = ""; -App::$strings["Link post titles to source"] = ""; -App::$strings["System Page Layout Editor - (advanced)"] = ""; -App::$strings["Use blog/list mode on channel page"] = ""; -App::$strings["(comments displayed separately)"] = ""; -App::$strings["Use blog/list mode on matrix page"] = ""; -App::$strings["Channel page max height of content (in pixels)"] = ""; -App::$strings["click to expand content exceeding this height"] = ""; -App::$strings["Matrix page max height of content (in pixels)"] = ""; -App::$strings["Nobody except yourself"] = ""; -App::$strings["Only those you specifically allow"] = ""; -App::$strings["Approved connections"] = ""; -App::$strings["Any connections"] = ""; -App::$strings["Anybody on this website"] = ""; -App::$strings["Anybody in this network"] = ""; -App::$strings["Anybody authenticated"] = ""; -App::$strings["Anybody on the internet"] = ""; -App::$strings["Publish your default profile in the network directory"] = ""; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; -App::$strings["or"] = ""; -App::$strings["Your channel address is"] = ""; -App::$strings["Channel Settings"] = ""; -App::$strings["Basic Settings"] = ""; -App::$strings["Your Timezone:"] = ""; -App::$strings["Default Post Location:"] = ""; -App::$strings["Geographical location to display on your posts"] = ""; -App::$strings["Use Browser Location:"] = ""; -App::$strings["Adult Content"] = ""; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; -App::$strings["Security and Privacy Settings"] = ""; -App::$strings["Your permissions are already configured. Click to view/adjust"] = ""; -App::$strings["Hide my online presence"] = ""; -App::$strings["Prevents displaying in your profile that you are online"] = ""; -App::$strings["Simple Privacy Settings:"] = ""; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = ""; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; -App::$strings["Private - default private, never open or public"] = ""; -App::$strings["Blocked - default blocked to/from everybody"] = ""; -App::$strings["Allow others to tag your posts"] = ""; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; -App::$strings["Advanced Privacy Settings"] = ""; -App::$strings["Expire other channel content after this many days"] = ""; -App::$strings["0 or blank prevents expiration"] = ""; -App::$strings["Maximum Friend Requests/Day:"] = ""; -App::$strings["May reduce spam activity"] = ""; -App::$strings["Default Post Permissions"] = ""; -App::$strings["(click to open/close)"] = ""; -App::$strings["Channel permissions category:"] = ""; -App::$strings["Maximum private messages per day from unknown people:"] = ""; -App::$strings["Useful to reduce spamming"] = ""; -App::$strings["Notification Settings"] = ""; -App::$strings["By default post a status message when:"] = ""; -App::$strings["accepting a friend request"] = ""; -App::$strings["joining a forum/community"] = ""; -App::$strings["making an interesting profile change"] = ""; -App::$strings["Send a notification email when:"] = ""; -App::$strings["You receive a connection request"] = ""; -App::$strings["Your connections are confirmed"] = ""; -App::$strings["Someone writes on your profile wall"] = ""; -App::$strings["Someone writes a followup comment"] = ""; -App::$strings["You receive a private message"] = ""; -App::$strings["You receive a friend suggestion"] = ""; -App::$strings["You are tagged in a post"] = ""; -App::$strings["You are poked/prodded/etc. in a post"] = ""; -App::$strings["Show visual notifications including:"] = ""; -App::$strings["Unseen matrix activity"] = ""; -App::$strings["Unseen channel activity"] = ""; -App::$strings["Unseen private messages"] = ""; -App::$strings["Recommended"] = ""; -App::$strings["Upcoming events"] = ""; -App::$strings["Events today"] = ""; -App::$strings["Upcoming birthdays"] = ""; -App::$strings["Not available in all themes"] = ""; -App::$strings["System (personal) notifications"] = ""; -App::$strings["System info messages"] = ""; -App::$strings["System critical alerts"] = ""; -App::$strings["New connections"] = ""; -App::$strings["System Registrations"] = ""; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = ""; -App::$strings["Notify me of events this many days in advance"] = ""; -App::$strings["Must be greater than 0"] = ""; -App::$strings["Advanced Account/Page Type Settings"] = ""; -App::$strings["Change the behaviour of this account for special situations"] = ""; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; -App::$strings["Miscellaneous Settings"] = ""; -App::$strings["Personal menu to display in your channel pages"] = ""; -App::$strings["Remove Channel"] = ""; -App::$strings["Remove this channel."] = ""; -App::$strings["Xchan Lookup"] = ""; -App::$strings["Lookup xchan beginning with (or webbie): "] = ""; -App::$strings["Not found."] = ""; -App::$strings["Authorize application connection"] = ""; -App::$strings["Return to your app and insert this Securty Code:"] = ""; -App::$strings["Please login to continue."] = ""; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; -App::$strings["Page Title"] = ""; -App::$strings["Channel added."] = ""; -App::$strings["Tag removed"] = ""; -App::$strings["Remove Item Tag"] = ""; -App::$strings["Select a tag to remove: "] = ""; -App::$strings["Remove"] = ""; -App::$strings["Continue"] = ""; -App::$strings["Premium Channel Setup"] = ""; -App::$strings["Enable premium channel connection restrictions"] = ""; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; -App::$strings["Potential connections will then see the following text before proceeding:"] = ""; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; -App::$strings["Restricted or Premium Channel"] = ""; -App::$strings["Thing updated"] = ""; -App::$strings["Object store: failed"] = ""; -App::$strings["Thing added"] = ""; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = ""; -App::$strings["item not found."] = ""; -App::$strings["Edit Thing"] = ""; -App::$strings["Select a profile"] = ""; -App::$strings["Post an activity"] = ""; -App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = ""; -App::$strings["URL of thing (optional)"] = ""; -App::$strings["URL for photo of thing (optional)"] = ""; -App::$strings["Add Thing to your Profile"] = ""; -App::$strings["Item not available."] = ""; -App::$strings["Fetching URL returns error: %1\$s"] = ""; -App::$strings["\$Projectname"] = ""; -App::$strings["Welcome to %s"] = ""; -App::$strings["Image uploaded but image cropping failed."] = ""; -App::$strings["Image resize failed."] = ""; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -App::$strings["Image exceeds size limit of %d"] = ""; -App::$strings["Unable to process image."] = ""; -App::$strings["Photo not available."] = ""; -App::$strings["Upload File:"] = ""; -App::$strings["Select a profile:"] = ""; -App::$strings["Upload Profile Photo"] = ""; -App::$strings["skip this step"] = ""; -App::$strings["select a photo from your photo albums"] = ""; -App::$strings["Crop Image"] = ""; -App::$strings["Please adjust the image cropping for optimum viewing."] = ""; -App::$strings["Done Editing"] = ""; -App::$strings["Image uploaded successfully."] = ""; -App::$strings["Image upload failed."] = ""; -App::$strings["Image size reduction [%s] failed."] = ""; -App::$strings["Invalid item."] = ""; -App::$strings["Channel not found."] = ""; -App::$strings["Page not found."] = ""; -App::$strings["Like/Dislike"] = ""; -App::$strings["This action is restricted to members."] = ""; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; -App::$strings["Invalid request."] = ""; -App::$strings["thing"] = ""; -App::$strings["Channel unavailable."] = ""; -App::$strings["Previous action reversed."] = ""; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; -App::$strings["Action completed."] = ""; -App::$strings["Thank you."] = ""; -App::$strings["Event can not end before it has started."] = ""; -App::$strings["Unable to generate preview."] = ""; -App::$strings["Event title and start time are required."] = ""; -App::$strings["Event not found."] = ""; -App::$strings["l, F j"] = ""; -App::$strings["Edit event"] = ""; -App::$strings["Delete event"] = ""; -App::$strings["Create New Event"] = ""; -App::$strings["Previous"] = ""; -App::$strings["Next"] = ""; -App::$strings["Export"] = ""; -App::$strings["Event removed"] = ""; -App::$strings["Failed to remove event"] = ""; -App::$strings["Event details"] = ""; -App::$strings["Starting date and Title are required."] = ""; -App::$strings["Categories (comma-separated list)"] = ""; -App::$strings["Event Starts:"] = ""; -App::$strings["Finish date/time is not known or not relevant"] = ""; -App::$strings["Event Finishes:"] = ""; -App::$strings["Adjust for viewer timezone"] = ""; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; -App::$strings["Description:"] = ""; -App::$strings["Title:"] = ""; -App::$strings["Share this event"] = ""; -App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; -App::$strings["Public Sites"] = ""; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; -App::$strings["Rate this hub"] = ""; -App::$strings["Site URL"] = ""; -App::$strings["Access Type"] = ""; -App::$strings["Registration Policy"] = ""; -App::$strings["Location"] = ""; -App::$strings["View hub ratings"] = ""; -App::$strings["Rate"] = ""; -App::$strings["View ratings"] = ""; -App::$strings["Edit post"] = ""; -App::$strings["\$Projectname channel"] = ""; -App::$strings["Collection created."] = ""; -App::$strings["Could not create collection."] = ""; -App::$strings["Collection updated."] = ""; -App::$strings["Create a collection of channels."] = ""; -App::$strings["Collection Name: "] = ""; -App::$strings["Members are visible to other channels"] = ""; -App::$strings["Collection removed."] = ""; -App::$strings["Unable to remove collection."] = ""; -App::$strings["Collection Editor"] = ""; -App::$strings["Members"] = ""; -App::$strings["All Connected Channels"] = ""; -App::$strings["Click on a channel to add or remove."] = ""; -App::$strings["Version %s"] = ""; -App::$strings["Installed plugins/addons/apps:"] = ""; -App::$strings["No installed plugins/addons/apps"] = ""; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = ""; -App::$strings["Tag: "] = ""; -App::$strings["Last background fetch: "] = ""; -App::$strings["Running at web location"] = ""; -App::$strings["Please visit redmatrix.me to learn more about \$Projectname."] = ""; -App::$strings["Bug reports and issues: please visit"] = ""; -App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = ""; -App::$strings["Site Administrators"] = ""; -App::$strings["Help:"] = ""; -App::$strings["Not Found"] = ""; -App::$strings["\$Projectname Server - Setup"] = ""; -App::$strings["Could not connect to database."] = ""; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; -App::$strings["Could not create table."] = ""; -App::$strings["Your site database has been installed."] = ""; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; -App::$strings["System check"] = ""; -App::$strings["Check again"] = ""; -App::$strings["Database connection"] = ""; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -App::$strings["Database Server Name"] = ""; -App::$strings["Default is localhost"] = ""; -App::$strings["Database Port"] = ""; -App::$strings["Communication port number - use 0 for default"] = ""; -App::$strings["Database Login Name"] = ""; -App::$strings["Database Login Password"] = ""; -App::$strings["Database Name"] = ""; -App::$strings["Database Type"] = ""; -App::$strings["Site administrator email address"] = ""; -App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = ""; -App::$strings["Please use SSL (https) URL if available."] = ""; -App::$strings["Please select a default timezone for your website"] = ""; -App::$strings["Site settings"] = ""; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -App::$strings["PHP executable path"] = ""; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -App::$strings["Command line PHP"] = ""; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -App::$strings["This is required for message delivery to work."] = ""; -App::$strings["PHP register_argc_argv"] = ""; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; -App::$strings["Generate encryption keys"] = ""; -App::$strings["libCurl PHP module"] = ""; -App::$strings["GD graphics PHP module"] = ""; -App::$strings["OpenSSL PHP module"] = ""; -App::$strings["mysqli or postgres PHP module"] = ""; -App::$strings["mb_string PHP module"] = ""; -App::$strings["mcrypt PHP module"] = ""; -App::$strings["Apache mod_rewrite module"] = ""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -App::$strings["proc_open"] = ""; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -App::$strings["Error: openssl PHP module required but not installed."] = ""; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = ""; -App::$strings["Error: mb_string PHP module required but not installed."] = ""; -App::$strings["Error: mcrypt PHP module required 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."] = ""; -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."] = ""; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = ""; -App::$strings[".htconfig.php is writable"] = ""; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = ""; -App::$strings["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."] = ""; -App::$strings["%s is writable"] = ""; -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"] = ""; -App::$strings["store is writable"] = ""; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -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!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; -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."] = ""; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; -App::$strings["SSL certificate validation"] = ""; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; -App::$strings["Url rewrite is working"] = ""; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["

What next

"] = ""; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["No channel."] = ""; -App::$strings["Common connections"] = ""; -App::$strings["No connections in common."] = ""; -App::$strings["This site is not a directory server"] = ""; -App::$strings["Could not access contact record."] = ""; -App::$strings["Could not locate selected profile."] = ""; -App::$strings["Connection updated."] = ""; -App::$strings["Failed to update connection record."] = ""; -App::$strings["Blocked"] = ""; -App::$strings["Ignored"] = ""; -App::$strings["Hidden"] = ""; -App::$strings["Archived"] = ""; -App::$strings["Suggest new connections"] = ""; -App::$strings["New Connections"] = ""; -App::$strings["Show pending (new) connections"] = ""; -App::$strings["All Connections"] = ""; -App::$strings["Show all connections"] = ""; -App::$strings["Unblocked"] = ""; -App::$strings["Only show unblocked connections"] = ""; -App::$strings["Only show blocked connections"] = ""; -App::$strings["Only show ignored connections"] = ""; -App::$strings["Only show archived connections"] = ""; -App::$strings["Only show hidden connections"] = ""; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = ""; -App::$strings["Search your connections"] = ""; -App::$strings["Finding: "] = ""; -App::$strings["Block Name"] = ""; -App::$strings["Block Title"] = ""; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = ""; -App::$strings["Page owner information could not be retrieved."] = ""; -App::$strings["Album not found."] = ""; -App::$strings["Delete Album"] = ""; -App::$strings["Delete Photo"] = ""; -App::$strings["Public access denied."] = ""; -App::$strings["No photos selected"] = ""; -App::$strings["Access to this item is restricted."] = ""; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; -App::$strings["%1$.2f MB photo storage used."] = ""; -App::$strings["Upload Photos"] = ""; -App::$strings["Enter a new album name"] = ""; -App::$strings["or select an existing one (doubleclick)"] = ""; -App::$strings["Create a status post for this upload"] = ""; -App::$strings["Album name could not be decoded"] = ""; -App::$strings["Contact Photos"] = ""; -App::$strings["Show Newest First"] = ""; -App::$strings["Show Oldest First"] = ""; -App::$strings["View Photo"] = ""; -App::$strings["Edit Album"] = ""; -App::$strings["Permission denied. Access to this item may be restricted."] = ""; -App::$strings["Photo not available"] = ""; -App::$strings["Use as profile photo"] = ""; -App::$strings["Private Photo"] = ""; -App::$strings["View Full Size"] = ""; -App::$strings["Edit photo"] = ""; -App::$strings["Rotate CW (right)"] = ""; -App::$strings["Rotate CCW (left)"] = ""; -App::$strings["Caption"] = ""; -App::$strings["Add a Tag"] = ""; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = ""; -App::$strings["Flag as adult in album view"] = ""; -App::$strings["In This Photo:"] = ""; -App::$strings["Map"] = ""; -App::$strings["View Album"] = ""; -App::$strings["Recent Photos"] = ""; -App::$strings["Profile Match"] = ""; -App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; -App::$strings["is interested in:"] = ""; -App::$strings["No matches"] = ""; -App::$strings["Away"] = ""; -App::$strings["Online"] = ""; -App::$strings["Select a bookmark folder"] = ""; -App::$strings["Save Bookmark"] = ""; -App::$strings["URL of bookmark"] = ""; -App::$strings["Description"] = ""; -App::$strings["Or enter new bookmark folder name"] = ""; -App::$strings["No more system notifications."] = ""; -App::$strings["System Notifications"] = ""; -App::$strings["network"] = ""; -App::$strings["RSS"] = ""; -App::$strings["Layout updated."] = ""; -App::$strings["Edit System Page Description"] = ""; -App::$strings["Layout not found."] = ""; -App::$strings["Module Name:"] = ""; -App::$strings["Layout Help"] = ""; -App::$strings["- select -"] = ""; -App::$strings["Your service plan only allows %d channels."] = ""; -App::$strings["Nothing to import."] = ""; -App::$strings["Unable to download data from old server"] = ""; -App::$strings["Imported file is empty."] = ""; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -App::$strings["Unable to create a unique channel address. Import failed."] = ""; -App::$strings["Channel clone failed. Import failed."] = ""; -App::$strings["Cloned channel not found. Import failed."] = ""; -App::$strings["Import completed."] = ""; -App::$strings["You must be logged in to use this feature."] = ""; -App::$strings["Import Channel"] = ""; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; -App::$strings["File to Upload"] = ""; -App::$strings["Or provide the old server/hub details"] = ""; -App::$strings["Your old identity address (xyz@example.com)"] = ""; -App::$strings["Your old login email address"] = ""; -App::$strings["Your old login password"] = ""; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -App::$strings["Make this hub my primary location"] = ""; -App::$strings["Import existing posts if possible"] = ""; -App::$strings["Item not found"] = ""; -App::$strings["Edit Layout"] = ""; -App::$strings["Delete layout?"] = ""; -App::$strings["Insert YouTube video"] = ""; -App::$strings["Insert Vorbis [.ogg] video"] = ""; -App::$strings["Insert Vorbis [.ogg] audio"] = ""; -App::$strings["Layout Description (Optional)"] = ""; -App::$strings["Layout Name"] = ""; -App::$strings["You must be logged in to see this page."] = ""; -App::$strings["Room not found"] = ""; -App::$strings["Leave Room"] = ""; -App::$strings["Delete This Room"] = ""; -App::$strings["I am away right now"] = ""; -App::$strings["I am online"] = ""; -App::$strings["Bookmark this room"] = ""; -App::$strings["New Chatroom"] = ""; -App::$strings["Chatroom Name"] = ""; -App::$strings["%1\$s's Chatrooms"] = ""; -App::$strings["Delete webpage?"] = ""; -App::$strings["Page link title"] = ""; -App::$strings["Edit Webpage"] = ""; -App::$strings["This directory server requires an access token"] = ""; -App::$strings["No valid account found."] = ""; -App::$strings["Password reset request issued. Check your email."] = ""; -App::$strings["Site Member (%s)"] = ""; -App::$strings["Password reset requested at %s"] = ""; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -App::$strings["Password Reset"] = ""; -App::$strings["Your password has been reset as requested."] = ""; -App::$strings["Your new password is"] = ""; -App::$strings["Save or copy your new password - and then"] = ""; -App::$strings["click here to login"] = ""; -App::$strings["Your password may be changed from the Settings page after successful login."] = ""; -App::$strings["Your password has changed at %s"] = ""; -App::$strings["Forgot your Password?"] = ""; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -App::$strings["Email Address"] = ""; -App::$strings["Reset"] = ""; -App::$strings["Website:"] = ""; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = ""; -App::$strings["Rating (this information is public)"] = ""; -App::$strings["Optionally explain your rating (this information is public)"] = ""; -App::$strings["Item is not editable"] = ""; -App::$strings["Delete item?"] = ""; -App::$strings["Total invitation limit exceeded."] = ""; -App::$strings["%s : Not a valid email address."] = ""; -App::$strings["Please join us on Red"] = ""; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -App::$strings["%s : Message delivery failed."] = ""; -App::$strings["%d message sent."] = array( - 0 => "", - 1 => "", -); -App::$strings["You have no more invitations available"] = ""; -App::$strings["Send invitations"] = ""; -App::$strings["Enter email addresses, one per line:"] = ""; -App::$strings["Your message:"] = ""; -App::$strings["Please join my community on \$Projectname."] = ""; -App::$strings["You will need to supply this invitation code: "] = ""; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = ""; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = ""; -App::$strings["or visit "] = ""; -App::$strings["3. Click [Connect]"] = ""; -App::$strings["Location not found."] = ""; -App::$strings["Primary location cannot be removed."] = ""; -App::$strings["No locations found."] = ""; -App::$strings["Manage Channel Locations"] = ""; -App::$strings["Location (address)"] = ""; -App::$strings["Primary Location"] = ""; -App::$strings["Drop location"] = ""; -App::$strings["Failed to create source. No channel selected."] = ""; -App::$strings["Source created."] = ""; -App::$strings["Source updated."] = ""; -App::$strings["*"] = ""; -App::$strings["Manage remote sources of content for your channel."] = ""; -App::$strings["New Source"] = ""; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; -App::$strings["Only import content with these words (one per line)"] = ""; -App::$strings["Leave blank to import all public content"] = ""; -App::$strings["Channel Name"] = ""; -App::$strings["Source not found."] = ""; -App::$strings["Edit Source"] = ""; -App::$strings["Delete Source"] = ""; -App::$strings["Source removed"] = ""; -App::$strings["Unable to remove source."] = ""; -App::$strings["Unable to update menu."] = ""; -App::$strings["Unable to create menu."] = ""; -App::$strings["Menu Name"] = ""; -App::$strings["Unique name (not visible on webpage) - required"] = ""; -App::$strings["Menu Title"] = ""; -App::$strings["Visible on webpage - leave empty for no title"] = ""; -App::$strings["Allow Bookmarks"] = ""; -App::$strings["Menu may be used to store saved bookmarks"] = ""; -App::$strings["Submit and proceed"] = ""; -App::$strings["Drop"] = ""; -App::$strings["Bookmarks allowed"] = ""; -App::$strings["Delete this menu"] = ""; -App::$strings["Edit menu contents"] = ""; -App::$strings["Edit this menu"] = ""; -App::$strings["Menu could not be deleted."] = ""; -App::$strings["Menu not found."] = ""; -App::$strings["Edit Menu"] = ""; -App::$strings["Add or remove entries to this menu"] = ""; -App::$strings["Menu name"] = ""; -App::$strings["Must be unique, only seen by you"] = ""; -App::$strings["Menu title"] = ""; -App::$strings["Menu title as seen by others"] = ""; -App::$strings["Allow bookmarks"] = ""; -App::$strings["Modify"] = ""; -App::$strings["Permission Denied."] = ""; -App::$strings["File not found."] = ""; -App::$strings["Edit file permissions"] = ""; -App::$strings["Set/edit permissions"] = ""; -App::$strings["Include all files and sub folders"] = ""; -App::$strings["Return to file list"] = ""; -App::$strings["Copy/paste this code to attach file to a post"] = ""; -App::$strings["Copy/paste this URL to link file from a web page"] = ""; -App::$strings["Share this file"] = ""; -App::$strings["Show URL to this file"] = ""; -App::$strings["Notify your contacts about this file"] = ""; -App::$strings["Contact not found."] = ""; -App::$strings["Friend suggestion sent."] = ""; -App::$strings["Suggest Friends"] = ""; -App::$strings["Suggest a friend for %s"] = ""; -App::$strings["Hub not found."] = ""; -App::$strings["Poke/Prod"] = ""; -App::$strings["poke, prod or do other things to somebody"] = ""; -App::$strings["Recipient"] = ""; -App::$strings["Choose what you wish to do to recipient"] = ""; -App::$strings["Make this post private"] = ""; -App::$strings["Invalid profile identifier."] = ""; -App::$strings["Profile Visibility Editor"] = ""; -App::$strings["Click on a contact to add or remove."] = ""; -App::$strings["Visible To"] = ""; -App::$strings["webpage"] = ""; -App::$strings["block"] = ""; -App::$strings["layout"] = ""; -App::$strings["%s element installed"] = ""; -App::$strings["Profile not found."] = ""; -App::$strings["Profile deleted."] = ""; -App::$strings["Profile-"] = ""; -App::$strings["New profile created."] = ""; -App::$strings["Profile unavailable to clone."] = ""; -App::$strings["Profile unavailable to export."] = ""; -App::$strings["Profile Name is required."] = ""; -App::$strings["Marital Status"] = ""; -App::$strings["Romantic Partner"] = ""; -App::$strings["Likes"] = ""; -App::$strings["Dislikes"] = ""; -App::$strings["Work/Employment"] = ""; -App::$strings["Religion"] = ""; -App::$strings["Political Views"] = ""; -App::$strings["Gender"] = ""; -App::$strings["Sexual Preference"] = ""; -App::$strings["Homepage"] = ""; -App::$strings["Interests"] = ""; -App::$strings["Address"] = ""; -App::$strings["Profile updated."] = ""; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = ""; -App::$strings["Edit Profile Details"] = ""; -App::$strings["View this profile"] = ""; -App::$strings["Change Profile Photo"] = ""; -App::$strings["Create a new profile using these settings"] = ""; -App::$strings["Clone this profile"] = ""; -App::$strings["Delete this profile"] = ""; -App::$strings["Import profile from file"] = ""; -App::$strings["Export profile to file"] = ""; -App::$strings["Profile Name:"] = ""; -App::$strings["Your Full Name:"] = ""; -App::$strings["Title/Description:"] = ""; -App::$strings["Your Gender:"] = ""; -App::$strings["Birthday :"] = ""; -App::$strings["Street Address:"] = ""; -App::$strings["Locality/City:"] = ""; -App::$strings["Postal/Zip Code:"] = ""; -App::$strings["Country:"] = ""; -App::$strings["Region/State:"] = ""; -App::$strings[" Marital Status:"] = ""; -App::$strings["Who: (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; -App::$strings["Since [date]:"] = ""; -App::$strings["Homepage URL:"] = ""; -App::$strings["Religious Views:"] = ""; -App::$strings["Keywords:"] = ""; -App::$strings["Example: fishing photography software"] = ""; -App::$strings["Used in directory listings"] = ""; -App::$strings["Tell us about yourself..."] = ""; -App::$strings["Hobbies/Interests"] = ""; -App::$strings["Contact information and Social Networks"] = ""; -App::$strings["My other channels"] = ""; -App::$strings["Musical interests"] = ""; -App::$strings["Books, literature"] = ""; -App::$strings["Television"] = ""; -App::$strings["Film/dance/culture/entertainment"] = ""; -App::$strings["Love/romance"] = ""; -App::$strings["Work/employment"] = ""; -App::$strings["School/education"] = ""; -App::$strings["This is your default profile."] = ""; -App::$strings["Age: "] = ""; -App::$strings["Edit/Manage Profiles"] = ""; -App::$strings["Add profile things"] = ""; -App::$strings["Include desirable objects in your profile"] = ""; -App::$strings["No ratings"] = ""; -App::$strings["Ratings"] = ""; -App::$strings["Rating: "] = ""; -App::$strings["Website: "] = ""; -App::$strings["Description: "] = ""; -App::$strings["Source of Item"] = ""; -App::$strings["OpenID protocol error. No ID returned."] = ""; -App::$strings["Welcome %s. Remote authentication successful."] = ""; -App::$strings["%d rating"] = array( - 0 => "", - 1 => "", -); -App::$strings["Gender: "] = ""; -App::$strings["Status: "] = ""; -App::$strings["Homepage: "] = ""; -App::$strings["Hometown: "] = ""; -App::$strings["About: "] = ""; -App::$strings["Public Forum:"] = ""; -App::$strings["Keywords: "] = ""; -App::$strings["Common connections: %s"] = ""; -App::$strings["Finding:"] = ""; -App::$strings["next page"] = ""; -App::$strings["previous page"] = ""; -App::$strings["No entries (some entries may be hidden)."] = ""; -App::$strings["Export Channel"] = ""; -App::$strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = ""; -App::$strings["Export Content"] = ""; -App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = ""; -App::$strings["No connections."] = ""; -App::$strings["Visit %s's profile [%s]"] = ""; -App::$strings["invalid target signature"] = ""; -App::$strings["Theme settings updated."] = ""; -App::$strings["Site"] = ""; -App::$strings["Accounts"] = ""; -App::$strings["Channels"] = ""; -App::$strings["Plugins"] = ""; -App::$strings["Themes"] = ""; -App::$strings["Inspect queue"] = ""; -App::$strings["Profile Config"] = ""; -App::$strings["DB updates"] = ""; -App::$strings["Logs"] = ""; -App::$strings["Plugin Features"] = ""; -App::$strings["User registrations waiting for confirmation"] = ""; -App::$strings["# Accounts"] = ""; -App::$strings["# blocked accounts"] = ""; -App::$strings["# expired accounts"] = ""; -App::$strings["# expiring accounts"] = ""; -App::$strings["# Channels"] = ""; -App::$strings["# primary"] = ""; -App::$strings["# clones"] = ""; -App::$strings["Message queues"] = ""; -App::$strings["Administration"] = ""; -App::$strings["Summary"] = ""; -App::$strings["Registered accounts"] = ""; -App::$strings["Pending registrations"] = ""; -App::$strings["Registered channels"] = ""; -App::$strings["Active plugins"] = ""; -App::$strings["Version"] = ""; -App::$strings["Site settings updated."] = ""; -App::$strings["experimental"] = ""; -App::$strings["unsupported"] = ""; -App::$strings["Yes - with approval"] = ""; -App::$strings["My site is not a public server"] = ""; -App::$strings["My site has paid access only"] = ""; -App::$strings["My site has free access only"] = ""; -App::$strings["My site offers free accounts with optional paid upgrades"] = ""; -App::$strings["Registration"] = ""; -App::$strings["File upload"] = ""; -App::$strings["Policies"] = ""; -App::$strings["Site name"] = ""; -App::$strings["Banner/Logo"] = ""; -App::$strings["Administrator Information"] = ""; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["System language"] = ""; -App::$strings["System theme"] = ""; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -App::$strings["Mobile system theme"] = ""; -App::$strings["Theme for mobile devices"] = ""; -App::$strings["Enable Diaspora Protocol"] = ""; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = ""; -App::$strings["Allow Feeds as Connections"] = ""; -App::$strings["(Heavy system resource usage)"] = ""; -App::$strings["Maximum image size"] = ""; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -App::$strings["Does this site allow new member registration?"] = ""; -App::$strings["Which best describes the types of account offered by this hub?"] = ""; -App::$strings["Register text"] = ""; -App::$strings["Will be displayed prominently on the registration page."] = ""; -App::$strings["Accounts abandoned after x days"] = ""; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -App::$strings["Allowed friend domains"] = ""; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Not allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; -App::$strings["Block public"] = ""; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -App::$strings["Verify Email Addresses"] = ""; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; -App::$strings["Force publish"] = ""; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -App::$strings["Disable discovery tab"] = ""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; -App::$strings["No login on Homepage"] = ""; -App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = ""; -App::$strings["Proxy user"] = ""; -App::$strings["Proxy URL"] = ""; -App::$strings["Network timeout"] = ""; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -App::$strings["Delivery interval"] = ""; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -App::$strings["Poll interval"] = ""; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -App::$strings["Maximum Load Average"] = ""; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -App::$strings["Expiration period in days for imported (matrix/network) content"] = ""; -App::$strings["0 for no expiration of imported content"] = ""; -App::$strings["No server found"] = ""; -App::$strings["ID"] = ""; -App::$strings["for channel"] = ""; -App::$strings["on server"] = ""; -App::$strings["Status"] = ""; -App::$strings["Server"] = ""; -App::$strings["Update has been marked successful"] = ""; -App::$strings["Executing %s failed. Check system logs."] = ""; -App::$strings["Update %s was successfully applied."] = ""; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -App::$strings["Update function %s could not be found."] = ""; -App::$strings["No failed updates."] = ""; -App::$strings["Failed Updates"] = ""; -App::$strings["Mark success (if update was manually applied)"] = ""; -App::$strings["Attempt to execute this update step automatically"] = ""; -App::$strings["Queue Statistics"] = ""; -App::$strings["Total Entries"] = ""; -App::$strings["Priority"] = ""; -App::$strings["Destination URL"] = ""; -App::$strings["Mark hub permanently offline"] = ""; -App::$strings["Empty queue for this hub"] = ""; -App::$strings["Last known contact"] = ""; -App::$strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s user deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Account not found"] = ""; -App::$strings["User '%s' blocked"] = ""; -App::$strings["User '%s' unblocked"] = ""; -App::$strings["Users"] = ""; -App::$strings["select all"] = ""; -App::$strings["User registrations waiting for confirm"] = ""; -App::$strings["Request date"] = ""; -App::$strings["No registrations."] = ""; -App::$strings["Approve"] = ""; -App::$strings["Deny"] = ""; -App::$strings["Block"] = ""; -App::$strings["Unblock"] = ""; -App::$strings["Register date"] = ""; -App::$strings["Last login"] = ""; -App::$strings["Expires"] = ""; -App::$strings["Service Class"] = ""; -App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Channel not found"] = ""; -App::$strings["Channel '%s' deleted"] = ""; -App::$strings["Channel '%s' uncensored"] = ""; -App::$strings["Channel '%s' censored"] = ""; -App::$strings["Censor"] = ""; -App::$strings["Uncensor"] = ""; -App::$strings["UID"] = ""; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["Plugin %s disabled."] = ""; -App::$strings["Plugin %s enabled."] = ""; -App::$strings["Disable"] = ""; -App::$strings["Enable"] = ""; -App::$strings["Toggle"] = ""; -App::$strings["Author: "] = ""; -App::$strings["Maintainer: "] = ""; -App::$strings["No themes found."] = ""; -App::$strings["Screenshot"] = ""; -App::$strings["[Experimental]"] = ""; -App::$strings["[Unsupported]"] = ""; -App::$strings["Log settings updated."] = ""; -App::$strings["Clear"] = ""; -App::$strings["Debugging"] = ""; -App::$strings["Log file"] = ""; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = ""; -App::$strings["Log level"] = ""; -App::$strings["New Profile Field"] = ""; -App::$strings["Field nickname"] = ""; -App::$strings["System name of field"] = ""; -App::$strings["Input type"] = ""; -App::$strings["Field Name"] = ""; -App::$strings["Label on profile pages"] = ""; -App::$strings["Help text"] = ""; -App::$strings["Additional info (optional)"] = ""; -App::$strings["Field definition not found"] = ""; -App::$strings["Edit Profile Field"] = ""; -App::$strings["Unable to find your hub."] = ""; -App::$strings["Post successful."] = ""; -App::$strings["Edit Block"] = ""; -App::$strings["Delete block?"] = ""; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; -App::$strings["Passwords do not match."] = ""; -App::$strings["Registration successful. Please check your email for validation instructions."] = ""; -App::$strings["Your registration is pending approval by the site owner."] = ""; -App::$strings["Your registration can not be processed."] = ""; -App::$strings["Registration on this site/hub is by approval only."] = ""; -App::$strings["Register at another affiliated site/hub"] = ""; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -App::$strings["Terms of Service"] = ""; -App::$strings["I accept the %s for this website"] = ""; -App::$strings["I am over 13 years of age and accept the %s for this website"] = ""; -App::$strings["Membership on this site is by invitation only."] = ""; -App::$strings["Please enter your invitation code"] = ""; -App::$strings["Your email address"] = ""; -App::$strings["Choose a password"] = ""; -App::$strings["Please re-enter your password"] = ""; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Account"] = ""; -App::$strings["WARNING: "] = ""; -App::$strings["This account and all its channels will be completely removed from the network. "] = ""; -App::$strings["This action is permanent and can not be undone!"] = ""; -App::$strings["Please enter your password for verification:"] = ""; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; -App::$strings["Unable to locate original post."] = ""; -App::$strings["Empty post discarded."] = ""; -App::$strings["Executable content type not permitted to this channel."] = ""; -App::$strings["System error. Post not saved."] = ""; -App::$strings["Unable to obtain post information from database."] = ""; -App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; -App::$strings["You have reached your limit of %1$.0f webpages."] = ""; -App::$strings["[Embedded content - reload page to view]"] = ""; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = ""; -App::$strings["Comanche page description language help"] = ""; -App::$strings["Layout Description"] = ""; -App::$strings["Download PDL file"] = ""; -App::$strings["First Name"] = ""; -App::$strings["Last Name"] = ""; -App::$strings["Nickname"] = ""; -App::$strings["Full Name"] = ""; -App::$strings["Profile Photo 16px"] = ""; -App::$strings["Profile Photo 32px"] = ""; -App::$strings["Profile Photo 48px"] = ""; -App::$strings["Profile Photo 64px"] = ""; -App::$strings["Profile Photo 80px"] = ""; -App::$strings["Profile Photo 128px"] = ""; -App::$strings["Timezone"] = ""; -App::$strings["Homepage URL"] = ""; -App::$strings["Birth Year"] = ""; -App::$strings["Birth Month"] = ""; -App::$strings["Birth Day"] = ""; -App::$strings["Birthdate"] = ""; -App::$strings["Conversation removed."] = ""; -App::$strings["No messages."] = ""; -App::$strings["Delete conversation"] = ""; -App::$strings["D, d M Y - g:i A"] = ""; -App::$strings["Unable to create element."] = ""; -App::$strings["Unable to update menu element."] = ""; -App::$strings["Unable to add menu element."] = ""; -App::$strings["Menu Item Permissions"] = ""; -App::$strings["Link Name"] = ""; -App::$strings["Link or Submenu Target"] = ""; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; -App::$strings["Use magic-auth if available"] = ""; -App::$strings["Open link in new window"] = ""; -App::$strings["Order in list"] = ""; -App::$strings["Higher numbers will sink to bottom of listing"] = ""; -App::$strings["Submit and finish"] = ""; -App::$strings["Submit and continue"] = ""; -App::$strings["Menu:"] = ""; -App::$strings["Link Target"] = ""; -App::$strings["Edit menu"] = ""; -App::$strings["Edit element"] = ""; -App::$strings["Drop element"] = ""; -App::$strings["New element"] = ""; -App::$strings["Edit this menu container"] = ""; -App::$strings["Add menu element"] = ""; -App::$strings["Delete this menu item"] = ""; -App::$strings["Edit this menu item"] = ""; -App::$strings["Menu item not found."] = ""; -App::$strings["Menu item deleted."] = ""; -App::$strings["Menu item could not be deleted."] = ""; -App::$strings["Edit Menu Element"] = ""; -App::$strings["Link text"] = ""; -App::$strings["Set your current mood and tell your friends"] = ""; -App::$strings["Total votes"] = ""; -App::$strings["Average Rating"] = ""; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Channel"] = ""; -App::$strings["This channel will be completely removed from the network. "] = ""; -App::$strings["Remove this channel and all its clones from the network"] = ""; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; -App::$strings["is now connected to"] = ""; -App::$strings["Could not access address book record."] = ""; -App::$strings["Refresh failed - channel is currently unavailable."] = ""; -App::$strings["Channel has been unblocked"] = ""; -App::$strings["Channel has been blocked"] = ""; -App::$strings["Unable to set address book parameters."] = ""; -App::$strings["Channel has been unignored"] = ""; -App::$strings["Channel has been ignored"] = ""; -App::$strings["Channel has been unarchived"] = ""; -App::$strings["Channel has been archived"] = ""; -App::$strings["Channel has been unhidden"] = ""; -App::$strings["Channel has been hidden"] = ""; -App::$strings["Channel has been approved"] = ""; -App::$strings["Channel has been unapproved"] = ""; -App::$strings["Connection has been removed."] = ""; -App::$strings["View %s's profile"] = ""; -App::$strings["Refresh Permissions"] = ""; -App::$strings["Fetch updated permissions"] = ""; -App::$strings["Recent Activity"] = ""; -App::$strings["View recent posts and comments"] = ""; -App::$strings["Block (or Unblock) all communications with this connection"] = ""; -App::$strings["Unignore"] = ""; -App::$strings["Ignore"] = ""; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = ""; -App::$strings["Unarchive"] = ""; -App::$strings["Archive"] = ""; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = ""; -App::$strings["Unhide"] = ""; -App::$strings["Hide"] = ""; -App::$strings["Hide or Unhide this connection from your other connections"] = ""; -App::$strings["Delete this connection"] = ""; -App::$strings["Approve this connection"] = ""; -App::$strings["Accept connection to allow communication"] = ""; -App::$strings["Connections: settings for %s"] = ""; -App::$strings["Apply these permissions automatically"] = ""; -App::$strings["Apply the permissions indicated on this page to all new connections."] = ""; -App::$strings["Slide to adjust your degree of friendship"] = ""; -App::$strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = ""; -App::$strings["inherited"] = ""; -App::$strings["Connection has no individual permissions!"] = ""; -App::$strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; -App::$strings["Profile Visibility"] = ""; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -App::$strings["Contact Information / Notes"] = ""; -App::$strings["Edit contact notes"] = ""; -App::$strings["Their Settings"] = ""; -App::$strings["My Settings"] = ""; -App::$strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = ""; -App::$strings["Clear/Disable Automatic Permissions"] = ""; -App::$strings["Forum Members"] = ""; -App::$strings["Soapbox"] = ""; -App::$strings["Full Sharing (typical social network permissions)"] = ""; -App::$strings["Cautious Sharing "] = ""; -App::$strings["Follow Only"] = ""; -App::$strings["Individual Permissions"] = ""; -App::$strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = ""; -App::$strings["Advanced Permissions"] = ""; -App::$strings["Simple Permissions (select one and submit)"] = ""; -App::$strings["Visit %s's profile - %s"] = ""; -App::$strings["Block/Unblock contact"] = ""; -App::$strings["Ignore contact"] = ""; -App::$strings["Repair URL settings"] = ""; -App::$strings["View conversations"] = ""; -App::$strings["Delete contact"] = ""; -App::$strings["Last update:"] = ""; -App::$strings["Update public posts"] = ""; -App::$strings["Update now"] = ""; -App::$strings["Currently blocked"] = ""; -App::$strings["Currently ignored"] = ""; -App::$strings["Currently archived"] = ""; -App::$strings["Currently pending"] = ""; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -App::$strings["The error message was:"] = ""; -App::$strings["Authentication failed."] = ""; -App::$strings["Remote Authentication"] = ""; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; -App::$strings["Authenticate"] = ""; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = ""; -App::$strings["Cannot verify requested channel."] = ""; -App::$strings["Selected channel has private message restrictions. Send failed."] = ""; -App::$strings["Message deleted."] = ""; -App::$strings["Message recalled."] = ""; -App::$strings["Send Private Message"] = ""; -App::$strings["To:"] = ""; -App::$strings["Subject:"] = ""; -App::$strings["Send"] = ""; -App::$strings["Message not found."] = ""; -App::$strings["Delete message"] = ""; -App::$strings["Recall message"] = ""; -App::$strings["Message has been recalled."] = ""; -App::$strings["Private Conversation"] = ""; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -App::$strings["Send Reply"] = ""; -App::$strings["Invalid request identifier."] = ""; -App::$strings["Discard"] = ""; -App::$strings["Please login."] = ""; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -App::$strings["Add a Channel"] = ""; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; -App::$strings["Choose a short nickname"] = ""; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; -App::$strings["Or import an existing channel from another location"] = ""; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = ""; -App::$strings["Channel Type"] = ""; -App::$strings["Read more about roles"] = ""; -App::$strings["App installed."] = ""; -App::$strings["Malformed app."] = ""; -App::$strings["Embed code"] = ""; -App::$strings["Edit App"] = ""; -App::$strings["Create App"] = ""; -App::$strings["Name of app"] = ""; -App::$strings["Location (URL) of app"] = ""; -App::$strings["Photo icon URL"] = ""; -App::$strings["80 x 80 pixels - optional"] = ""; -App::$strings["Version ID"] = ""; -App::$strings["Price of app"] = ""; -App::$strings["Location (URL) to purchase app"] = ""; -App::$strings["sent you a private message"] = ""; -App::$strings["added your channel"] = ""; -App::$strings["posted an event"] = ""; -App::$strings["No such group"] = ""; -App::$strings["No such channel"] = ""; -App::$strings["Search Results For:"] = ""; -App::$strings["Collection is empty"] = ""; -App::$strings["Collection: "] = ""; -App::$strings["Connection: "] = ""; -App::$strings["Invalid connection."] = ""; -App::$strings["Ipsum Lorem"] = ""; -App::$strings["Bookmark added"] = ""; -App::$strings["My Bookmarks"] = ""; -App::$strings["My Connections Bookmarks"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -App::$strings["Poll"] = ""; -App::$strings["View Results"] = ""; -App::$strings["No service class restrictions found."] = ""; -App::$strings["Files: shared with me"] = ""; -App::$strings["NEW"] = ""; -App::$strings["Remove all files"] = ""; -App::$strings["Remove this file"] = ""; -App::$strings["Schema Default"] = ""; -App::$strings["Sans-Serif"] = ""; -App::$strings["Monospace"] = ""; -App::$strings["Theme settings"] = ""; -App::$strings["Set scheme"] = ""; -App::$strings["Set font-size for posts and comments"] = ""; -App::$strings["Set font face"] = ""; -App::$strings["Set iconset"] = ""; -App::$strings["Set big shadow size, default 15px 15px 15px"] = ""; -App::$strings["Set small shadow size, default 5px 5px 5px"] = ""; -App::$strings["Set shadow color, default #000"] = ""; -App::$strings["Set radius size, default 5px"] = ""; -App::$strings["Set line-height for posts and comments"] = ""; -App::$strings["Set background image"] = ""; -App::$strings["Set background attachment"] = ""; -App::$strings["Set background color"] = ""; -App::$strings["Set section background image"] = ""; -App::$strings["Set section background color"] = ""; -App::$strings["Set color of items - use hex"] = ""; -App::$strings["Set color of links - use hex"] = ""; -App::$strings["Set max-width for items. Default 400px"] = ""; -App::$strings["Set min-width for items. Default 240px"] = ""; -App::$strings["Set the generic content wrapper width. Default 48%"] = ""; -App::$strings["Set color of fonts - use hex"] = ""; -App::$strings["Set background-size element"] = ""; -App::$strings["Item opacity"] = ""; -App::$strings["Display post previews only"] = ""; -App::$strings["Display side bar on channel page"] = ""; -App::$strings["Colour of the navigation bar"] = ""; -App::$strings["Item float"] = ""; -App::$strings["Left offset of the section element"] = ""; -App::$strings["Right offset of the section element"] = ""; -App::$strings["Section width"] = ""; -App::$strings["Left offset of the aside"] = ""; -App::$strings["Right offset of the aside element"] = ""; -App::$strings["Light (Hubzilla default)"] = ""; -App::$strings["Select scheme"] = ""; -App::$strings["Narrow navbar"] = ""; -App::$strings["Navigation bar background color"] = ""; -App::$strings["Navigation bar gradient top color"] = ""; -App::$strings["Navigation bar gradient bottom color"] = ""; -App::$strings["Navigation active button gradient top color"] = ""; -App::$strings["Navigation active button gradient bottom color"] = ""; -App::$strings["Navigation bar border color "] = ""; -App::$strings["Navigation bar icon color "] = ""; -App::$strings["Navigation bar active icon color "] = ""; -App::$strings["link color"] = ""; -App::$strings["Set font-color for banner"] = ""; -App::$strings["Set the background color"] = ""; -App::$strings["Set the background image"] = ""; -App::$strings["Set the background color of items"] = ""; -App::$strings["Set the background color of comments"] = ""; -App::$strings["Set the border color of comments"] = ""; -App::$strings["Set the indent for comments"] = ""; -App::$strings["Set the basic color for item icons"] = ""; -App::$strings["Set the hover color for item icons"] = ""; -App::$strings["Set font-size for the entire application"] = ""; -App::$strings["Example: 14px"] = ""; -App::$strings["Set font-color for posts and comments"] = ""; -App::$strings["Set radius of corners"] = ""; -App::$strings["Set shadow depth of photos"] = ""; -App::$strings["Set maximum width of content region in pixel"] = ""; -App::$strings["Leave empty for default width"] = ""; -App::$strings["Center page content"] = ""; -App::$strings["Set minimum opacity of nav bar - to hide it"] = ""; -App::$strings["Set size of conversation author photo"] = ""; -App::$strings["Set size of followup author photos"] = ""; -App::$strings["Update %s failed. See error logs."] = ""; -App::$strings["Update Error at %s"] = ""; -App::$strings["Create an account to access services and applications within the Hubzilla"] = ""; -App::$strings["Password"] = ""; -App::$strings["Remember me"] = ""; -App::$strings["Forgot your password?"] = ""; -App::$strings["toggle mobile"] = ""; -App::$strings["Website SSL certificate is not valid. Please correct."] = ""; -App::$strings["[red] Website SSL error for %s"] = ""; -App::$strings["Cron/Scheduled tasks not running."] = ""; -App::$strings["[red] Cron tasks not running on %s"] = ""; diff --git a/util/messages.po b/util/messages.po index dd847e9e0..ba4541857 100644 --- a/util/messages.po +++ b/util/messages.po @@ -1,14 +1,14 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project -# This file is distributed under the same license as the Red package. +# zap +# Copyright (C) 2012-2016 zap +# This file is distributed under the same license as the zap package. # Mike Macgirvin, 2012 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-11-06.1208\n" +"Project-Id-Version: 3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-06 00:04-0800\n" +"POT-Creation-Date: 2019-06-13 22:08-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,437 +17,9586 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../include/dba/dba_driver.php:141 +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can comment on or like my posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Comments are moderated" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can administer my channel" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:167 +msgid "Social Networking" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:168 +msgid "Social - Normal" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:169 +msgid "Social - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:172 +msgid "Community Group" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:173 +msgid "Group - Normal" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:174 +msgid "Group - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:175 +msgid "Group - Moderated" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:178 +#: ../../Zotlabs/Module/Manage.php:65 ../../Zotlabs/Module/Manage.php:162 +#: ../../Zotlabs/Module/Directory.php:382 ../../Zotlabs/Storage/Browser.php:131 +#: ../../include/text.php:2849 +msgid "Collection" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:179 +msgid "Collection - Normal" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:180 +msgid "Collection - Restricted" +msgstr "" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../Zotlabs/Access/PermissionRoles.php:184 +msgid "Feed Republish" +msgstr "" + +#: ../../Zotlabs/Lib/Markdown.php:206 ../../include/bbcode.php:518 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/photo/photo_driver.php:703 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:92 ../../mod/photos.php:637 -msgid "Profile Photos" +#: ../../Zotlabs/Lib/Markdown.php:208 ../../Zotlabs/Module/Tagger.php:79 +#: ../../include/bbcode.php:514 +msgid "post" msgstr "" -#: ../../include/menu.php:107 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:266 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/webpages.php:181 ../../mod/thing.php:255 -#: ../../mod/connections.php:242 ../../mod/connections.php:255 -#: ../../mod/connections.php:274 ../../mod/blocks.php:153 -#: ../../mod/editpost.php:106 ../../mod/editlayout.php:133 -#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:134 -#: ../../mod/menu.php:106 ../../mod/settings.php:650 ../../mod/layouts.php:183 -msgid "Edit" +#: ../../Zotlabs/Lib/Enotify.php:62 +msgid "$Projectname Notification" msgstr "" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "$projectname" msgstr "" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" +#: ../../Zotlabs/Lib/Enotify.php:65 +msgid "Thank You," msgstr "" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "%s Administrator" msgstr "" -#: ../../include/contact_selectors.php:59 -msgid "Daily" +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "This email was sent by %1$s at %2$s." msgstr "" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" +#: ../../Zotlabs/Lib/Enotify.php:68 ../../Zotlabs/Module/Home.php:89 +#: ../../Zotlabs/Module/Home.php:97 +msgid "$Projectname" msgstr "" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" +#: ../../Zotlabs/Lib/Enotify.php:69 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" msgstr "" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" +#: ../../Zotlabs/Lib/Enotify.php:70 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." msgstr "" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" +#: ../../Zotlabs/Lib/Enotify.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Notification Settings" msgstr "" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" +#: ../../Zotlabs/Lib/Enotify.php:125 +#, php-format +msgid "%s " msgstr "" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1552 -msgid "Email" +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" msgstr "" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" +#: ../../Zotlabs/Lib/Enotify.php:132 +#, php-format +msgid "%1$s sent you %2$s." msgstr "" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" +#: ../../Zotlabs/Lib/Enotify.php:132 +msgid "a private message" msgstr "" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" +#: ../../Zotlabs/Lib/Enotify.php:133 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" +#: ../../Zotlabs/Lib/Enotify.php:146 +msgid "commented on" msgstr "" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" +#: ../../Zotlabs/Lib/Enotify.php:157 +msgid "liked" msgstr "" -#: ../../include/notify.php:23 +#: ../../Zotlabs/Lib/Enotify.php:160 +msgid "disliked" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:203 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:211 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:220 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:236 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:237 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:241 +msgid "(Moderated)" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:244 ../../Zotlabs/Lib/Enotify.php:325 +#: ../../Zotlabs/Lib/Enotify.php:351 ../../Zotlabs/Lib/Enotify.php:381 +#: ../../Zotlabs/Lib/Enotify.php:398 ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:248 ../../Zotlabs/Lib/Enotify.php:249 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:307 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:321 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:322 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:333 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:339 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:341 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:347 ../../Zotlabs/Lib/Enotify.php:348 +msgid " - " +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:347 ../../Zotlabs/Lib/Enotify.php:348 +msgid "Moderated" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:356 ../../Zotlabs/Lib/Enotify.php:357 +#, php-format +msgid "Please visit %s to approve or reject this post." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:375 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:376 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:377 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:389 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:390 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:405 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:406 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:407 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:418 +msgid "[$Projectname:Notify] Introduction received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:419 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:423 ../../Zotlabs/Lib/Enotify.php:441 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:425 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:432 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:433 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:434 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:439 +msgid "Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:440 +msgid "Photo:" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:443 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:681 +msgid "[$Projectname:Notify]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:864 msgid "created a new post" msgstr "" -#: ../../include/notify.php:24 +#: ../../Zotlabs/Lib/Enotify.php:865 #, php-format -msgid "commented on %s's post" +msgid "reacted to %s's conversation" msgstr "" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." +#: ../../Zotlabs/Lib/Enotify.php:867 +#, php-format +msgid "shared %s's post" msgstr "" -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." +#: ../../Zotlabs/Lib/Enotify.php:875 +#, php-format +msgid "edited a post dated %s" msgstr "" -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." +#: ../../Zotlabs/Lib/Enotify.php:879 +#, php-format +msgid "edited a comment dated %s" msgstr "" -#: ../../include/group.php:26 +#: ../../Zotlabs/Lib/Chatroom.php:25 +msgid "Missing room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:34 +msgid "Duplicate room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:84 ../../Zotlabs/Lib/Chatroom.php:92 +msgid "Invalid room specifier." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:124 +msgid "Room not found." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:135 ../../Zotlabs/Module/Alist.php:12 +#: ../../Zotlabs/Module/Alist.php:24 ../../Zotlabs/Module/Calendar.php:263 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Appman.php:87 +#: ../../Zotlabs/Module/Common.php:42 ../../Zotlabs/Module/Block.php:25 +#: ../../Zotlabs/Module/Block.php:75 ../../Zotlabs/Module/Cards.php:82 +#: ../../Zotlabs/Module/Blocks.php:77 ../../Zotlabs/Module/Blocks.php:84 +#: ../../Zotlabs/Module/Connections.php:28 ../../Zotlabs/Module/Photos.php:71 +#: ../../Zotlabs/Module/Cover_photo.php:339 +#: ../../Zotlabs/Module/Cover_photo.php:352 +#: ../../Zotlabs/Module/Defperms.php:164 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editlayout.php:71 +#: ../../Zotlabs/Module/Editlayout.php:94 +#: ../../Zotlabs/Module/Editwebpage.php:72 +#: ../../Zotlabs/Module/Editwebpage.php:93 +#: ../../Zotlabs/Module/Editwebpage.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:125 ../../Zotlabs/Module/Invite.php:99 +#: ../../Zotlabs/Module/Filestorage.php:18 +#: ../../Zotlabs/Module/Filestorage.php:73 +#: ../../Zotlabs/Module/Filestorage.php:91 +#: ../../Zotlabs/Module/Filestorage.php:114 +#: ../../Zotlabs/Module/Filestorage.php:161 ../../Zotlabs/Module/Thing.php:287 +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:348 +#: ../../Zotlabs/Module/Chat.php:112 ../../Zotlabs/Module/Chat.php:117 +#: ../../Zotlabs/Module/Locs.php:90 ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Layouts.php:77 ../../Zotlabs/Module/Layouts.php:84 +#: ../../Zotlabs/Module/Layouts.php:95 ../../Zotlabs/Module/Card_edit.php:53 +#: ../../Zotlabs/Module/Cloud.php:42 ../../Zotlabs/Module/Manage.php:14 +#: ../../Zotlabs/Module/Mitem.php:133 ../../Zotlabs/Module/Editblock.php:71 +#: ../../Zotlabs/Module/Menu.php:132 ../../Zotlabs/Module/Menu.php:143 +#: ../../Zotlabs/Module/Register.php:80 ../../Zotlabs/Module/Message.php:17 +#: ../../Zotlabs/Module/Item.php:521 ../../Zotlabs/Module/Item.php:541 +#: ../../Zotlabs/Module/Item.php:551 ../../Zotlabs/Module/Item.php:1454 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/New_channel.php:115 +#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Connedit.php:330 ../../Zotlabs/Module/Moderate.php:15 +#: ../../Zotlabs/Module/Webpages.php:134 ../../Zotlabs/Module/Page.php:38 +#: ../../Zotlabs/Module/Page.php:137 ../../Zotlabs/Module/Profile.php:122 +#: ../../Zotlabs/Module/Profile.php:138 ../../Zotlabs/Module/Pdledit.php:30 +#: ../../Zotlabs/Module/Profiles.php:201 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Setup.php:221 ../../Zotlabs/Module/Poke.php:155 +#: ../../Zotlabs/Module/Profile_photo.php:348 +#: ../../Zotlabs/Module/Profile_photo.php:361 ../../Zotlabs/Module/Mood.php:124 +#: ../../Zotlabs/Module/Events.php:296 ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Sources.php:77 +#: ../../Zotlabs/Module/Channel.php:194 ../../Zotlabs/Module/Channel.php:367 +#: ../../Zotlabs/Module/Channel.php:406 ../../Zotlabs/Module/Inspect.php:15 +#: ../../Zotlabs/Module/Viewconnections.php:31 +#: ../../Zotlabs/Module/Viewconnections.php:36 +#: ../../Zotlabs/Module/Suggestions.php:30 ../../Zotlabs/Web/WebServer.php:129 +#: ../../include/photos.php:30 ../../include/items.php:3479 +#: ../../include/attach.php:153 ../../include/attach.php:200 +#: ../../include/attach.php:273 ../../include/attach.php:382 +#: ../../include/attach.php:396 ../../include/attach.php:403 +#: ../../include/attach.php:481 ../../include/attach.php:1041 +#: ../../include/attach.php:1115 ../../include/attach.php:1280 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:53 +#: ../../extend/addon/a/articles/Mod_Articles.php:78 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:61 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:283 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:421 +msgid "Permission denied." +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:145 +msgid "Room is full" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" msgstr "" -#: ../../include/group.php:276 +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:315 +msgid "Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:316 ../../Zotlabs/Module/Settings/Network.php:100 +#: ../../include/features.php:430 +msgid "Affinity Tool" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:317 ../../include/features.php:136 +#: ../../include/nav.php:484 ../../extend/addon/a/articles/Mod_Articles.php:46 +#: ../../extend/addon/a/articles/Mod_Articles.php:214 +msgid "Articles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:318 ../../Zotlabs/Module/Cards.php:204 +#: ../../include/conversation.php:1971 ../../include/nav.php:473 +msgid "Cards" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:319 ../../Zotlabs/Storage/Browser.php:140 +#: ../../include/nav.php:435 ../../include/nav.php:438 +msgid "Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:320 ../../Zotlabs/Module/Cdav.php:1066 +#: ../../Zotlabs/Widget/Appcategories.php:43 +#: ../../Zotlabs/Widget/Categories.php:75 +#: ../../Zotlabs/Widget/Categories.php:119 +#: ../../Zotlabs/Widget/Categories.php:166 ../../include/taxonomy.php:419 +#: ../../include/taxonomy.php:505 ../../include/taxonomy.php:525 +#: ../../include/taxonomy.php:546 +msgid "Categories" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:321 +msgid "Site Admin" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Content Filter" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:323 ../../Zotlabs/Lib/Apps.php:327 +#: ../../extend/addon/a/content_import/Mod_content_import.php:135 +msgid "Content Import" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:324 +msgid "Report Bug" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:325 +msgid "View Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:326 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1945 ../../include/conversation.php:1948 +#: ../../include/nav.php:449 ../../include/nav.php:452 +msgid "Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:328 ../../Zotlabs/Module/Connections.php:297 +#: ../../Zotlabs/Module/Connedit.php:654 ../../Zotlabs/Module/Affinity.php:62 +#: ../../Zotlabs/Widget/Affinity.php:28 ../../include/text.php:979 +msgid "Connections" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:329 +msgid "Expire Posts" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:330 +msgid "Remote Diagnostics" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:331 ../../Zotlabs/Module/Settings/Network.php:108 +#: ../../include/features.php:439 +msgid "Suggest Channels" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:332 ../../include/nav.php:113 +#: ../../include/nav.php:117 ../../boot.php:1625 +msgid "Login" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:333 +msgid "Channel Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:335 ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:119 ../../include/nav.php:92 +msgid "Settings" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:336 ../../Zotlabs/Module/Fbrowser.php:82 +#: ../../Zotlabs/Storage/Browser.php:278 ../../include/conversation.php:1920 +#: ../../include/nav.php:424 +msgid "Files" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Module/Webpages.php:253 +#: ../../include/conversation.php:1993 ../../include/nav.php:496 +msgid "Webpages" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:338 ../../include/conversation.php:2009 +#: ../../include/nav.php:511 +msgid "Wiki" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Channel Home" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:340 ../../Zotlabs/Module/Connedit.php:535 +#: ../../include/nav.php:101 +msgid "View Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Module/Fbrowser.php:26 +#: ../../include/conversation.php:1912 ../../include/nav.php:416 +msgid "Photos" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Widget/Activity_filter.php:37 +#: ../../include/conversation.php:1931 ../../include/conversation.php:1934 +msgid "Events" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:343 +msgid "No Comment" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:344 +msgid "Directory" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:345 ../../include/help.php:69 +#: ../../include/nav.php:163 ../../include/nav.php:298 +msgid "Help" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:346 +msgid "Mail" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:347 ../../Zotlabs/Module/Mood.php:152 +msgid "Mood" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:348 ../../Zotlabs/Module/Poke.php:197 +msgid "Poke" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:349 +msgid "Chat" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:350 ../../Zotlabs/Module/Connections.php:301 +#: ../../Zotlabs/Module/Search.php:45 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:178 +#: ../../include/text.php:1066 ../../include/text.php:1078 +msgid "Search" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:351 ../../Zotlabs/Widget/Stream_order.php:129 +msgid "Stream Order" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:352 +msgid "Probe" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:353 +msgid "Suggest" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:354 +msgid "Random Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:355 +msgid "Invite" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:356 +msgid "Features" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:357 +msgid "Language" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:358 +msgid "Post" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:359 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:51 +msgid "ZotPost" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:360 +msgid "Profile Photo" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:361 ../../Zotlabs/Lib/Libprofile.php:534 +#: ../../Zotlabs/Module/Profperm.php:117 +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:362 +msgid "Profiles" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:363 ../../Zotlabs/Lib/AccessList.php:337 +#: ../../Zotlabs/Module/Alist.php:113 ../../Zotlabs/Module/Alist.php:124 +#: ../../Zotlabs/Widget/Activity_filter.php:80 ../../include/nav.php:90 +msgid "Access Lists" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:364 +msgid "Notifications" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:365 +msgid "Order Apps" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:366 +msgid "CalDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:367 +msgid "CardDAV" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Module/Sources.php:99 +#: ../../Zotlabs/Widget/Settings_menu.php:111 +msgid "Channel Sources" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Gallery" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:370 +msgid "Guest Access" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:371 ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:372 +msgid "OAuth Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:373 +msgid "OAuth2 Apps Manager" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:374 +msgid "PDL Editor" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:375 +#: ../../Zotlabs/Module/Settings/Permcats.php:100 +#: ../../Zotlabs/Widget/Settings_menu.php:94 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:376 +msgid "Premium Channel" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:377 ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:143 +msgid "Public Stream" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:378 +msgid "My Chatrooms" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:553 ../../Zotlabs/Module/Admin/Addons.php:451 +#: ../../Zotlabs/Module/Cdav.php:1050 ../../Zotlabs/Module/Cdav.php:1365 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Settings/Oauth2.php:49 +#: ../../Zotlabs/Module/Settings/Oauth2.php:123 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:553 ../../Zotlabs/Module/Admin/Addons.php:420 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:570 +msgid "Purchase" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:573 ../../Zotlabs/Lib/Libprofile.php:181 +#: ../../Zotlabs/Lib/Libprofile.php:185 ../../Zotlabs/Lib/ThreadItem.php:165 +#: ../../Zotlabs/Module/Alist.php:216 ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Blocks.php:164 ../../Zotlabs/Module/Connections.php:246 +#: ../../Zotlabs/Module/Connections.php:285 +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Editlayout.php:118 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Thing.php:273 +#: ../../Zotlabs/Module/Layouts.php:199 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:118 ../../Zotlabs/Module/Menu.php:178 +#: ../../Zotlabs/Module/Webpages.php:256 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Settings/Oauth2.php:173 +#: ../../Zotlabs/Storage/Browser.php:296 ../../Zotlabs/Widget/Cdav.php:138 +#: ../../Zotlabs/Widget/Cdav.php:175 ../../include/menu.php:121 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:101 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:212 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:377 +msgid "Edit" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:574 ../../Zotlabs/Lib/ThreadItem.php:189 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Cdav.php:1053 ../../Zotlabs/Module/Cdav.php:1366 +#: ../../Zotlabs/Module/Connections.php:254 +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Editlayout.php:142 +#: ../../Zotlabs/Module/Editwebpage.php:171 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Editblock.php:143 ../../Zotlabs/Module/Connedit.php:595 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Settings/Oauth2.php:174 +#: ../../Zotlabs/Storage/Browser.php:297 ../../include/conversation.php:678 +#: ../../include/conversation.php:723 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:133 +msgid "Delete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:575 +msgid "Undelete" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:584 +msgid "Add to app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:585 +msgid "Remove from app-tray" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:586 +msgid "Pin to navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:587 +msgid "Unpin from navbar" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:1072 ../../Zotlabs/Lib/Apps.php:1158 +#: ../../Zotlabs/Lib/Activity.php:1328 ../../Zotlabs/Module/Cdav.php:853 +#: ../../Zotlabs/Module/Cdav.php:854 ../../Zotlabs/Module/Cdav.php:861 +#: ../../Zotlabs/Module/Photos.php:743 ../../Zotlabs/Module/Photos.php:1190 +#: ../../Zotlabs/Module/Embedphotos.php:183 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Album.php:84 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../include/conversation.php:1117 +msgid "Unknown" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:35 +msgid "Requested channel is not available." +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:82 ../../Zotlabs/Module/Cards.php:38 +#: ../../Zotlabs/Module/Blocks.php:37 ../../Zotlabs/Module/Connect.php:19 +#: ../../Zotlabs/Module/Editlayout.php:35 +#: ../../Zotlabs/Module/Editwebpage.php:36 +#: ../../Zotlabs/Module/Filestorage.php:54 ../../Zotlabs/Module/Hcard.php:15 +#: ../../Zotlabs/Module/Layouts.php:37 ../../Zotlabs/Module/Editblock.php:35 +#: ../../Zotlabs/Module/Menu.php:94 ../../Zotlabs/Module/Webpages.php:40 +#: ../../Zotlabs/Module/Profile.php:27 +#: ../../extend/addon/a/articles/Mod_Articles.php:35 +msgid "Requested profile is not available." +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:174 ../../Zotlabs/Module/Profiles.php:728 +msgid "Change profile photo" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:181 ../../Zotlabs/Module/Profiles.php:831 +#: ../../include/nav.php:104 +msgid "Edit Profiles" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:182 +msgid "Create New Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:185 ../../include/nav.php:106 +msgid "Edit Profile" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:200 ../../Zotlabs/Module/Profiles.php:821 +msgid "Profile Image" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:203 +msgid "Visible to everybody" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:204 ../../Zotlabs/Module/Profiles.php:725 +#: ../../Zotlabs/Module/Profiles.php:825 +msgid "Edit visibility" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:262 ../../Zotlabs/Module/Directory.php:380 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:46 +#: ../../include/connections.php:122 ../../include/conversation.php:1036 +msgid "Connect" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:277 ../../Zotlabs/Module/Directory.php:364 +#: ../../include/event.php:62 ../../include/event.php:118 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:281 ../../Zotlabs/Lib/Libprofile.php:413 +msgid "Gender:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:282 ../../Zotlabs/Lib/Libprofile.php:457 +msgid "Status:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:283 ../../Zotlabs/Lib/Libprofile.php:481 +msgid "Homepage:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:339 +msgid "Change your profile photo" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:366 ../../Zotlabs/Module/Profiles.php:935 +#: ../../Zotlabs/Module/Profiles.php:952 +msgid "Female" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:368 ../../Zotlabs/Module/Profiles.php:935 +#: ../../Zotlabs/Module/Profiles.php:952 +msgid "Male" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:370 +msgid "Trans" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:372 +msgid "Inter" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:374 ../../Zotlabs/Module/Profiles.php:935 +msgid "Neuter" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:376 ../../Zotlabs/Module/Profiles.php:935 +msgid "Non-specific" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:411 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Full Name:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:418 +msgid "Like this channel" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:429 ../../Zotlabs/Lib/ThreadItem.php:255 +#: ../../Zotlabs/Module/Photos.php:1080 ../../include/taxonomy.php:675 +#: ../../include/conversation.php:2059 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/Libprofile.php:442 +msgid "j F, Y" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:443 +msgid "j F" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:450 +msgid "Birthday:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:454 ../../Zotlabs/Module/Directory.php:359 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:463 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:475 +msgid "Tags:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:479 +msgid "Sexual Preference:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:483 ../../Zotlabs/Module/Directory.php:377 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:485 +msgid "Political Views:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:487 +msgid "Religion:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:489 ../../Zotlabs/Module/Directory.php:379 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:491 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:493 +msgid "Likes:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:495 +msgid "Dislikes:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:497 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:499 +msgid "My other channels:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:501 +msgid "Musical interests:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:503 +msgid "Books, literature:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:505 +msgid "Television:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:507 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:509 +msgid "Love/Romance:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:511 +msgid "Work/employment:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:513 +msgid "School/education:" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:536 +msgid "Like this thing" +msgstr "" + +#: ../../Zotlabs/Lib/Libprofile.php:537 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Events.php:732 +msgid "Export" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:67 +msgid "Source code of failed update: " +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:88 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:94 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:73 +msgctxt "permcat" +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:124 +msgctxt "permcat" +msgid "follower" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:128 +msgctxt "permcat" +msgid "contributor" +msgstr "" + +#: ../../Zotlabs/Lib/Permcat.php:132 +msgctxt "permcat" +msgid "publisher" +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:41 +msgid "Channel is blocked on this site." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:46 +msgid "Channel location missing." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:98 +msgid "Remote channel or protocol unavailable." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:133 +msgid "Channel discovery failed." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:142 +msgid "Protocol not supported" +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:151 +msgid "Cannot connect to yourself." +msgstr "" + +#: ../../Zotlabs/Lib/Connect.php:258 +msgid "error saving data" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:164 +msgid "Directory Options" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:166 +msgid "Safe Mode" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:167 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Lib/Libzotdir.php:170 +#: ../../Zotlabs/Module/Admin/Site.php:260 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Photos.php:623 ../../Zotlabs/Module/Defperms.php:171 +#: ../../Zotlabs/Module/Import.php:557 ../../Zotlabs/Module/Import.php:561 +#: ../../Zotlabs/Module/Import.php:562 ../../Zotlabs/Module/Filestorage.php:199 +#: ../../Zotlabs/Module/Filestorage.php:207 ../../Zotlabs/Module/Mitem.php:180 +#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:260 +#: ../../Zotlabs/Module/Mitem.php:261 ../../Zotlabs/Module/Menu.php:165 +#: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Connedit.php:337 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Events.php:503 ../../Zotlabs/Module/Events.php:504 +#: ../../Zotlabs/Module/Events.php:529 ../../Zotlabs/Module/Ap_probe.php:20 +#: ../../Zotlabs/Module/Settings/Display.php:94 +#: ../../Zotlabs/Module/Settings/Channel.php:323 +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +#: ../../Zotlabs/Storage/Browser.php:411 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:228 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:229 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +#: ../../boot.php:1630 +msgid "No" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:166 ../../Zotlabs/Lib/Libzotdir.php:167 +#: ../../Zotlabs/Lib/Libzotdir.php:168 ../../Zotlabs/Lib/Libzotdir.php:170 +#: ../../Zotlabs/Module/Admin/Site.php:262 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Photos.php:623 ../../Zotlabs/Module/Defperms.php:171 +#: ../../Zotlabs/Module/Import.php:557 ../../Zotlabs/Module/Import.php:561 +#: ../../Zotlabs/Module/Import.php:562 ../../Zotlabs/Module/Filestorage.php:199 +#: ../../Zotlabs/Module/Filestorage.php:207 ../../Zotlabs/Module/Mitem.php:180 +#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:260 +#: ../../Zotlabs/Module/Mitem.php:261 ../../Zotlabs/Module/Menu.php:165 +#: ../../Zotlabs/Module/Menu.php:224 ../../Zotlabs/Module/Connedit.php:337 +#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Events.php:503 +#: ../../Zotlabs/Module/Events.php:504 ../../Zotlabs/Module/Events.php:529 +#: ../../Zotlabs/Module/Ap_probe.php:20 +#: ../../Zotlabs/Module/Settings/Display.php:94 +#: ../../Zotlabs/Module/Settings/Channel.php:323 +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +#: ../../Zotlabs/Storage/Browser.php:411 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:228 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:229 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +#: ../../boot.php:1630 +msgid "Yes" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:167 +msgid "Public Groups Only" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:168 +msgid "Collections Only" +msgstr "" + +#: ../../Zotlabs/Lib/Libzotdir.php:170 +msgid "This Website Only" +msgstr "" + +#: ../../Zotlabs/Lib/Language.php:408 ../../include/language.php:397 +#: ../../include/text.php:1890 +msgid "default" +msgstr "" + +#: ../../Zotlabs/Lib/Language.php:421 ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:28 +msgid "" +"A deleted list with this name was revived. Existing item permissions " +"may apply to this list and any future members. If this is " +"not what you intended, please create another list with a different name." +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:287 +msgid "Add new connections to this access list" +msgstr "" + +#: ../../Zotlabs/Lib/AccessList.php:315 msgid "edit" msgstr "" -#: ../../include/group.php:298 -msgid "Collections" +#: ../../Zotlabs/Lib/AccessList.php:338 +msgid "Edit list" msgstr "" -#: ../../include/group.php:299 -msgid "Edit collection" +#: ../../Zotlabs/Lib/AccessList.php:339 +msgid "Create new list" msgstr "" -#: ../../include/group.php:300 -msgid "Add new collection" +#: ../../Zotlabs/Lib/AccessList.php:340 +msgid "Channels not in any access list" msgstr "" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "" - -#: ../../include/group.php:303 ../../include/widgets.php:275 +#: ../../Zotlabs/Lib/AccessList.php:342 ../../Zotlabs/Widget/Savedsearch.php:84 msgid "add" msgstr "" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "" - -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "" - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "" - -#: ../../include/account.php:246 +#: ../../Zotlabs/Lib/Libsync.php:840 #, php-format -msgid "Registration confirmation for %s" +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/account.php:312 +#: ../../Zotlabs/Lib/Activity.php:1886 #, php-format -msgid "Registration request at %s" +msgid "Likes %1$s's %2$s" msgstr "" -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 ../../include/network.php:1632 -msgid "Administrator" -msgstr "" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "" - -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../Zotlabs/Lib/Activity.php:1889 #, php-format -msgid "Registration details for %s" +msgid "Doesn't like %1$s's %2$s" msgstr "" -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "" - -#: ../../include/account.php:447 +#: ../../Zotlabs/Lib/Activity.php:1892 #, php-format -msgid "Registration revoked for %s" +msgid "Will attend %1$s's %2$s" msgstr "" -#: ../../include/account.php:492 -msgid "Account verified. Please login." +#: ../../Zotlabs/Lib/Activity.php:1895 +#, php-format +msgid "Will not attend %1$s's %2$s" msgstr "" -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." +#: ../../Zotlabs/Lib/Activity.php:1898 +#, php-format +msgid "May attend %1$s's %2$s" msgstr "" -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../Zotlabs/Lib/Activity.php:1901 +#, php-format +msgid "May not attend %1$s's %2$s" msgstr "" -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." +#: ../../Zotlabs/Lib/Activity.php:1904 ../../Zotlabs/Module/Share.php:102 +#: ../../include/items.php:2895 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" msgstr "" -#: ../../include/datetime.php:48 -msgid "Miscellaneous" +#: ../../Zotlabs/Lib/Activity.php:2510 ../../Zotlabs/Lib/Activity.php:2705 +#: ../../include/network.php:1944 +msgid "ActivityPub" msgstr "" -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" +#: ../../Zotlabs/Lib/Activity.php:2661 ../../Zotlabs/Module/Like.php:337 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:71 +#: ../../include/conversation.php:115 ../../include/text.php:2046 +msgid "photo" msgstr "" -#: ../../include/datetime.php:235 ../../mod/events.php:672 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 +#: ../../Zotlabs/Lib/Activity.php:2661 ../../Zotlabs/Module/Like.php:337 +#: ../../Zotlabs/Module/Subthread.php:111 ../../include/conversation.php:143 +#: ../../include/text.php:2052 +msgid "status" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2696 ../../Zotlabs/Module/Like.php:369 +#: ../../include/conversation.php:159 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:2698 ../../Zotlabs/Module/Like.php:371 +#: ../../include/conversation.php:162 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Lib/Libzot.php:684 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../include/conversation.php:687 +msgid "Private Message" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:145 +msgid "Privacy conflict. Discretion advised." +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 ../../Zotlabs/Storage/Browser.php:286 +msgid "Admin Delete" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:198 ../../include/conversation.php:677 +msgid "Select" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:202 ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "I will attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "I will not attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "I might attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:235 +msgid "I agree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:235 +msgid "I disagree" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:235 +msgid "I abstain" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:251 ../../Zotlabs/Lib/ThreadItem.php:263 +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Module/Photos.php:1088 +msgid "View all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:260 ../../Zotlabs/Module/Photos.php:1085 +#: ../../include/conversation.php:2062 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../include/conversation.php:682 +msgid "Toggle Star Status" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:296 ../../include/conversation.php:694 +msgid "Message signature validated" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:297 ../../include/conversation.php:695 +msgid "Message signature incorrect" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:303 +msgid "Add Tag" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:321 ../../Zotlabs/Module/Photos.php:1021 +msgid "I like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:321 ../../include/taxonomy.php:589 +msgid "like" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Module/Photos.php:1022 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../include/taxonomy.php:590 +msgid "dislike" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "Repeat This" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "Share this" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:337 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:360 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Lib/ThreadItem.php:391 ../../Zotlabs/Lib/ThreadItem.php:392 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:395 +msgid "to" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:396 ../../include/conversation.php:752 +msgid "via" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:397 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:398 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:412 ../../include/conversation.php:755 +#, php-format +msgid "from %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:415 ../../include/conversation.php:758 +#, php-format +msgid "last edited: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:416 ../../include/conversation.php:759 +#, php-format +msgid "Expires: %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:424 +msgid "Attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:425 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:426 +msgid "Vote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:427 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:428 +msgid "Reply" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:450 +msgid "Save Bookmarks" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:451 +msgid "Add to Calendar" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:461 +#: ../../Zotlabs/Module/Notifications.php:60 +msgid "Mark all seen" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:468 ../../Zotlabs/Module/Photos.php:1204 +msgctxt "noun" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:469 ../../Zotlabs/Module/Photos.php:1205 +msgctxt "noun" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:474 ../../Zotlabs/Module/Photos.php:1210 +#: ../../include/acl_selectors.php:125 ../../include/conversation.php:1436 +msgid "Close" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:479 ../../include/conversation.php:461 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:480 ../../Zotlabs/Module/Photos.php:1024 +#: ../../include/conversation.php:776 +msgid "Please wait" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:538 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:876 ../../Zotlabs/Module/Photos.php:1040 +#: ../../Zotlabs/Module/Photos.php:1158 +msgid "This is you" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:878 ../../Zotlabs/Module/Photos.php:1042 +#: ../../Zotlabs/Module/Photos.php:1160 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:879 ../../Zotlabs/Module/Alist.php:121 +#: ../../Zotlabs/Module/Alist.php:137 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Addons.php:436 +#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +#: ../../Zotlabs/Module/Admin/Security.php:151 +#: ../../Zotlabs/Module/Appman.php:154 ../../Zotlabs/Module/Cal.php:351 +#: ../../Zotlabs/Module/Expire.php:49 ../../Zotlabs/Module/Connect.php:91 +#: ../../Zotlabs/Module/Photos.php:1003 ../../Zotlabs/Module/Photos.php:1043 +#: ../../Zotlabs/Module/Photos.php:1161 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Editpost.php:94 ../../Zotlabs/Module/Import.php:568 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Invite.php:165 ../../Zotlabs/Module/Filestorage.php:204 +#: ../../Zotlabs/Module/Thing.php:333 ../../Zotlabs/Module/Thing.php:386 +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Locs.php:124 ../../Zotlabs/Module/Import_items.php:125 +#: ../../Zotlabs/Module/Mitem.php:263 ../../Zotlabs/Module/Finger.php:22 +#: ../../Zotlabs/Module/Pconfig.php:120 ../../Zotlabs/Module/Connedit.php:816 +#: ../../Zotlabs/Module/Pdledit.php:111 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Setup.php:321 ../../Zotlabs/Module/Setup.php:364 +#: ../../Zotlabs/Module/Poke.php:215 ../../Zotlabs/Module/Mood.php:156 +#: ../../Zotlabs/Module/Events.php:526 ../../Zotlabs/Module/Affinity.php:83 +#: ../../Zotlabs/Module/Ap_probe.php:21 +#: ../../Zotlabs/Module/Settings/Account.php:104 +#: ../../Zotlabs/Module/Settings/Featured.php:56 +#: ../../Zotlabs/Module/Settings/Network.php:41 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:95 +#: ../../Zotlabs/Module/Settings/Permcats.php:116 +#: ../../Zotlabs/Module/Settings/Display.php:183 +#: ../../Zotlabs/Module/Settings/Tokens.php:170 +#: ../../Zotlabs/Module/Settings/Features.php:59 +#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Sources.php:117 ../../Zotlabs/Module/Sources.php:154 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Content_filter.php:66 +#: ../../Zotlabs/Module/Zotfinger.php:25 +#: ../../Zotlabs/Widget/Eventstools.php:16 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../extend/addon/a/logrot/logrot.php:36 +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 +#: ../../extend/addon/a/superblock/Mod_Superblock.php:114 +#: ../../extend/addon/a/wiki/Wiki_pages.php:41 +#: ../../extend/addon/a/wiki/Wiki_pages.php:98 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:216 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:79 +#: ../../extend/addon/a/content_import/Mod_content_import.php:142 +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:169 +msgid "Submit" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:880 +msgid "Add Conversation Mentions" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:881 ../../include/conversation.php:1371 +msgid "Bold" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:882 ../../include/conversation.php:1372 +msgid "Italic" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:883 ../../include/conversation.php:1373 +msgid "Underline" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:884 ../../include/conversation.php:1374 +msgid "Quote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:885 ../../include/conversation.php:1375 +msgid "Code" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:886 +msgid "Image" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:887 ../../include/conversation.php:1376 +msgid "Attach/Upload file" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:888 +msgid "Insert Link" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:889 +msgid "Video" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:890 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Webpages.php:263 ../../Zotlabs/Module/Events.php:511 +#: ../../include/conversation.php:1313 +msgid "Preview" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:894 ../../Zotlabs/Module/Chat.php:213 +#: ../../include/conversation.php:1430 +msgid "Encrypt text" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:899 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:900 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:901 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:95 ../../Zotlabs/Module/Like.php:121 +msgid "Invalid request." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:107 ../../include/conversation.php:121 +msgid "channel" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:136 +msgid "thing" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:260 ../../Zotlabs/Module/Alist.php:83 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:79 +#: ../../Zotlabs/Module/Import_items.php:116 ../../Zotlabs/Module/Cloud.php:128 +#: ../../Zotlabs/Module/Share.php:69 ../../Zotlabs/Module/Profperm.php:32 +#: ../../Zotlabs/Module/Subthread.php:84 ../../Zotlabs/Web/WebServer.php:128 +#: ../../include/items.php:392 +msgid "Permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:339 ../../Zotlabs/Module/Calendar.php:252 +#: ../../Zotlabs/Module/Events.php:285 ../../Zotlabs/Module/Tagger.php:75 +#: ../../include/event.php:1188 ../../include/conversation.php:118 +#: ../../include/text.php:2049 +msgid "event" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:373 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:375 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:377 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:35 +msgid "Access list created." +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:38 +msgid "Could not create access list." +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:51 ../../Zotlabs/Module/Alist.php:181 +msgid "Access list not found." +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:67 +msgid "Access list updated." +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:114 +msgid "Create access list" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:118 +msgid "Access list name" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:119 ../../Zotlabs/Module/Alist.php:220 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:125 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Cdav.php:1349 ../../Zotlabs/Module/Chat.php:251 +#: ../../Zotlabs/Module/Connedit.php:835 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Settings/Oauth2.php:97 +#: ../../Zotlabs/Module/Settings/Oauth2.php:125 +#: ../../Zotlabs/Module/Sharedwithme.php:104 +#: ../../Zotlabs/Storage/Browser.php:291 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:555 +#: ../../extend/addon/a/wiki/Wiki_page_history.php:22 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:219 +msgid "Name" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:126 ../../Zotlabs/Module/Help.php:84 +msgid "Members" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:151 +msgid "Access list removed." +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:153 +msgid "Unable to remove access list." +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:215 +#, php-format +msgid "Access List: %s" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:217 +msgid "Access list name: " +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:222 +msgid "Delete access list" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:232 +msgid "List members" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:234 +msgid "Not in this list" +msgstr "" + +#: ../../Zotlabs/Module/Alist.php:266 +msgid "Click a channel to toggle membership" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:116 +msgid "No such group" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:157 +msgid "No such channel" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:170 ../../Zotlabs/Module/Channel.php:208 +msgid "Search Results For:" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:200 ../../Zotlabs/Module/Hq.php:133 +#: ../../Zotlabs/Module/Display.php:85 ../../Zotlabs/Module/Pubstream.php:80 +#: ../../Zotlabs/Module/Channel.php:243 +msgid "Reset form" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:239 +msgid "Access list is empty" +msgstr "" + +#: ../../Zotlabs/Module/Network.php:250 +msgid "Access list: " +msgstr "" + +#: ../../Zotlabs/Module/Network.php:298 +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:26 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2088 +#, php-format +msgid "Account '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Addons.php:339 +#: ../../Zotlabs/Module/Admin/Addons.php:434 +#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Security.php:122 +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Administration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:97 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Cdav.php:1353 ../../Zotlabs/Module/Connedit.php:839 +#: ../../Zotlabs/Module/Profiles.php:788 ../../include/network.php:1945 +msgid "Email" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:268 ../../include/conversation.php:722 +msgid "Approve" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:33 +msgid "Deny" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:563 +msgid "Block" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:563 +msgid "Unblock" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "All Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:115 ../../Zotlabs/Module/Manage.php:172 +#: ../../Zotlabs/Widget/Admin.php:24 ../../include/nav.php:87 +msgid "Channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +#: ../../Zotlabs/Module/Directory.php:372 +msgid "Censor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Directory.php:372 +msgid "Uncensor" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1889 ../../include/nav.php:393 +msgid "Channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Cdav.php:1356 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Connedit.php:842 ../../Zotlabs/Module/Profiles.php:503 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Address" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Network.php:30 +#: ../../Zotlabs/Module/Settings/Features.php:47 +msgid "Off" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Network.php:30 +#: ../../Zotlabs/Module/Settings/Features.php:47 +msgid "On" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:51 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1067 +#: ../../include/text.php:1079 +msgid "Save" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:33 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:34 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Priority" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Mark hub permanently offline" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Empty queue for this hub" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Last known contact" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:257 ../../Zotlabs/Module/Admin.php:63 +#: ../../Zotlabs/Module/Filestorage.php:27 ../../Zotlabs/Module/Thing.php:101 +#: ../../Zotlabs/Module/Display.php:50 ../../Zotlabs/Module/Display.php:457 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Inspect.php:32 +#: ../../include/items.php:3381 +msgid "Item not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:308 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:311 +msgid "Enable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:341 +msgid "Toggle" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:349 +msgid "Author: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:350 +msgid "Maintainer: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:287 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:292 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:340 +#: ../../Zotlabs/Module/Admin/Addons.php:435 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:351 +msgid "Minimum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Maximum project version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum PHP version: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Compatible Server Roles: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Requires: " +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +#: ../../Zotlabs/Module/Admin/Addons.php:440 +msgid "Disabled - version incompatibility" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:409 +msgid "Enter the public git repository URL of the addon repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:410 +msgid "Addon repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:412 +msgid "Download Addon Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:419 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:421 ../../Zotlabs/Module/Cdav.php:1055 +#: ../../Zotlabs/Module/Cdav.php:1367 ../../Zotlabs/Module/Cover_photo.php:425 +#: ../../Zotlabs/Module/Editpost.php:120 +#: ../../Zotlabs/Module/Editlayout.php:144 +#: ../../Zotlabs/Module/Editwebpage.php:173 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Fbrowser.php:63 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Module/Card_edit.php:133 +#: ../../Zotlabs/Module/Editblock.php:145 ../../Zotlabs/Module/Connedit.php:853 +#: ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Module/Profile_photo.php:511 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Settings/Oauth2.php:96 +#: ../../Zotlabs/Module/Settings/Oauth2.php:124 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../include/conversation.php:1382 ../../include/conversation.php:1433 +#: ../../include/conversation.php:1435 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:135 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:360 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:394 +msgid "Cancel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:443 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:444 +msgid "Installed Addon Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Install a New Addon Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:452 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Photos.php:943 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../extend/addon/a/superblock/Mod_Superblock.php:110 +msgid "Remove" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Update has been marked successful" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Verification of update %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:35 +#: ../../Zotlabs/Module/Admin/Dbsync.php:74 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Verifying update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:42 +#, php-format +msgid "Update %s does not contain a verification function." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:46 +#: ../../Zotlabs/Module/Admin/Dbsync.php:81 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:71 +#, php-format +msgid "Executing update procedure %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:78 +#, php-format +msgid "" +"Update %s did not return a status. It cannot be determined if it was " +"successful." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:99 +msgid "Failed Updates" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:101 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:102 +msgid "Attempt to verify this update if a verification procedure exists" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:103 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:108 +msgid "No failed updates." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:166 +msgid "Site settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:193 ../../include/text.php:3110 +#: ../../view/theme/redbasic/php/config.php:15 +msgid "Default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:124 +#, php-format +msgid "%s - (Incompatible)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:211 +msgid "mobile" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:213 +msgid "experimental" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:215 +msgid "unsupported" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:261 +msgid "Yes - with approval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "My site is not a public server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "My site provides free public access" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "My site provides paid public access" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "My site provides free public access and premium paid plans" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Default permission role for new accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:293 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Site Configuration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Register.php:277 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "File upload" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Policies" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Widget/Findpeople.php:23 +msgid "Advanced" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Site name" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Banner/Logo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Administrator Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode may be used here." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 ../../Zotlabs/Module/Siteinfo.php:33 +msgid "Site Information" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode may be used here." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:305 +msgid "System language" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "System theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Maximum image size" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Invitation only" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Only allow new member registrations with an invitation code. New member " +"registration must be allowed for this to work." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"If a public server policy is selected, this information may be displayed on " +"the public server site list." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Allowed friend domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Force publish" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Import Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Default is to only allow viewing by site members. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Only import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Do not import Public stream posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Default directory server" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Proxy user" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "Proxy URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Network timeout" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Delivery interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "Path to ImageMagick convert program" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Allow SVG thumbnails in file browser" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "WARNING: SVG images may contain malicious code." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Maximum Load Average" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Default: profiles" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Optional: site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Region or country" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:44 +msgid "Account settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:59 +msgid "Account not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:66 +msgid "Account Edit" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:67 +msgid "New Password" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "New Password again" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "Account language (for emails)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "Service class" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:113 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:116 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:117 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:118 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:123 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:125 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:125 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:126 +msgid "Block public search" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:126 +msgid "" +"Prevent access to search content unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:127 +msgid "Hide local directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:127 +msgid "Only use the global directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:128 +msgid "Provide a cloud root directory" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:128 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:129 +msgid "Show total disk space available to cloud uploads" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:130 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:131 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:132 +msgid "Allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:132 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:133 +msgid "Not allowed email domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:133 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:134 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:134 +#: ../../Zotlabs/Module/Admin/Security.php:139 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:135 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:136 +msgid "Allow communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:136 +#: ../../Zotlabs/Module/Admin/Security.php:141 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:137 +msgid "Block communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:139 +msgid "Allow public stream communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:140 +msgid "Block public stream communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:141 +msgid "Allow public stream communications only from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:142 +msgid "Block public stream communications from these channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:145 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:146 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:146 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:147 +msgid "Block embedded HTML from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:93 ../../Zotlabs/Module/Events.php:135 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:95 ../../Zotlabs/Module/Calendar.php:103 +#: ../../Zotlabs/Module/Calendar.php:119 ../../Zotlabs/Module/Events.php:137 +#: ../../Zotlabs/Module/Events.php:146 ../../Zotlabs/Module/Events.php:167 +msgid "Unable to generate preview." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:101 ../../Zotlabs/Module/Events.php:144 +msgid "Event title and start time are required." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:117 ../../Zotlabs/Module/Calendar.php:257 +#: ../../Zotlabs/Module/Events.php:165 ../../Zotlabs/Module/Events.php:290 +msgid "Event not found." +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:419 ../../Zotlabs/Module/Events.php:673 +msgid "Edit event" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:421 ../../Zotlabs/Module/Events.php:675 +msgid "Delete event" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:435 ../../Zotlabs/Module/Cdav.php:947 +msgid "Link to source" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:449 ../../Zotlabs/Module/Events.php:710 +msgid "calendar" +msgstr "" + +#: ../../Zotlabs/Module/Calendar.php:482 ../../Zotlabs/Module/Events.php:831 +msgid "Failed to remove event" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "" + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:131 +msgid "Embed code" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:137 +msgid "Edit App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:137 +msgid "Create App" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Name of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:142 ../../Zotlabs/Module/Appman.php:143 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../Zotlabs/Module/Events.php:493 ../../Zotlabs/Module/Events.php:498 +#: ../../include/datetime.php:211 msgid "Required" msgstr "" -#: ../../include/datetime.php:262 ../../boot.php:2353 +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Location (URL) of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:144 ../../Zotlabs/Module/Cdav.php:1012 +#: ../../Zotlabs/Module/Events.php:506 +msgid "Description" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Photo icon URL" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "80 x 80 pixels - optional" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Categories (optional, comma separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Version ID" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Price of app" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:149 +msgid "Location (URL) to purchase app" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of Pinned Navbar Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:47 +msgid "Change Order of App Tray Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" +msgstr "" + +#: ../../Zotlabs/Module/Apporder.php:48 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Widget/Appstore.php:14 +msgid "Available Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:50 +msgid "Installed Apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create Custom App" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:18 +msgid "No channel." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:49 +msgid "No connections in common." +msgstr "" + +#: ../../Zotlabs/Module/Common.php:69 +msgid "View Common Connections" +msgstr "" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:29 +msgid "Authorize" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:30 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:32 +msgid "Allow" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:70 ../../Zotlabs/Module/Block.php:42 +#: ../../Zotlabs/Module/Chanview.php:99 ../../Zotlabs/Module/Card_edit.php:46 +#: ../../Zotlabs/Module/Page.php:79 ../../Zotlabs/Module/Wall_upload.php:31 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:46 +msgid "Channel not found." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:77 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:271 ../../Zotlabs/Module/Events.php:645 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:321 ../../Zotlabs/Module/Events.php:701 +#: ../../include/text.php:1868 +msgid "Link to Source" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Events.php:729 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Events.php:729 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Cal.php:352 +#: ../../Zotlabs/Module/Cdav.php:1032 ../../Zotlabs/Module/Photos.php:894 +#: ../../Zotlabs/Module/Events.php:730 ../../Zotlabs/Module/Events.php:739 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Cal.php:353 +#: ../../Zotlabs/Module/Cdav.php:1033 ../../Zotlabs/Module/Photos.php:903 +#: ../../Zotlabs/Module/Setup.php:275 ../../Zotlabs/Module/Events.php:731 +#: ../../Zotlabs/Module/Events.php:740 +msgid "Next" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:350 ../../include/text.php:2491 +msgid "Import" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:354 ../../Zotlabs/Module/Cdav.php:1034 +#: ../../Zotlabs/Module/Events.php:741 +msgid "Today" +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:24 +msgid "Expiration settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:34 +msgid "" +"This app allows you to set an optional expiration date/time for posts, after " +"which they will be deleted. This must be at least fifteen minutes into the " +"future. You may also choose to automatically delete all your posts after a " +"set number of days" +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:45 +msgid "Expire and delete all my posts after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:45 +msgid "" +"Leave at 0 if you wish to manually control expiration of specific posts." +msgstr "" + +#: ../../Zotlabs/Module/Expire.php:49 +msgid "Automatic Expiration Settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Blocked accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:100 +msgid "Expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:116 ../../Zotlabs/Module/Locs.php:122 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:117 +msgid "Clones" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:123 +msgid "Message queues" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Your software should be updated" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:147 ../../include/conversation.php:1442 +msgid "Summary" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Registered accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Pending registrations" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:152 +msgid "Registered channels" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:153 +msgid "Active addons" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:154 +msgid "Version" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:155 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:156 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Block.php:30 ../../Zotlabs/Module/Page.php:43 +msgid "Invalid item." +msgstr "" + +#: ../../Zotlabs/Module/Block.php:78 ../../Zotlabs/Module/Display.php:145 +#: ../../Zotlabs/Module/Display.php:162 ../../Zotlabs/Module/Display.php:179 +#: ../../Zotlabs/Module/Page.php:140 ../../Zotlabs/Web/Router.php:171 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:516 +msgid "Page not found." +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:48 +msgid "Create personal planning cards" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:109 +msgid "Add Card" +msgstr "" + +#: ../../Zotlabs/Module/Cards.php:110 ../../Zotlabs/Module/Blocks.php:163 +#: ../../Zotlabs/Module/Cdav.php:1056 ../../Zotlabs/Module/Cdav.php:1364 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:184 +#: ../../Zotlabs/Module/New_channel.php:196 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Webpages.php:255 +#: ../../Zotlabs/Module/Profiles.php:799 ../../Zotlabs/Storage/Browser.php:282 +#: ../../Zotlabs/Storage/Browser.php:396 ../../Zotlabs/Widget/Cdav.php:140 +#: ../../Zotlabs/Widget/Cdav.php:178 +#: ../../extend/addon/a/articles/Mod_Articles.php:106 +msgid "Create" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:101 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Editblock.php:117 +msgid "Block Name" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../include/text.php:2467 +msgid "Blocks" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:160 +msgid "Block Title" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Menu.php:180 ../../Zotlabs/Module/Webpages.php:267 +msgid "Created" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/Webpages.php:268 +msgid "Edited" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:165 ../../Zotlabs/Module/Photos.php:1023 +#: ../../Zotlabs/Module/Layouts.php:200 ../../Zotlabs/Module/Webpages.php:257 +#: ../../Zotlabs/Widget/Cdav.php:136 ../../include/conversation.php:1357 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:297 +msgid "Share" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:170 ../../Zotlabs/Module/Layouts.php:204 +#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Module/Events.php:735 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:214 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:402 +msgid "View" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Events.php:33 +msgid "Calendar entries imported." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:789 ../../Zotlabs/Module/Events.php:35 +msgid "No calendar entries found." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:852 +msgid "INVALID EVENT DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:853 +msgid "Summary: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:854 +msgid "Date: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:855 ../../Zotlabs/Module/Cdav.php:862 +msgid "Reason: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:860 +msgid "INVALID CARD DISMISSED!" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:861 +msgid "Name: " +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:882 +msgid "CardDAV App" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:882 +msgid "Not Installed" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:883 +msgid "CalDAV capable addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1009 ../../Zotlabs/Module/Events.php:493 +msgid "Event title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1010 ../../Zotlabs/Module/Events.php:499 +msgid "Start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1011 +msgid "End date and time" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1013 ../../Zotlabs/Module/Locs.php:120 +#: ../../Zotlabs/Module/Pubsites.php:56 ../../Zotlabs/Module/Profiles.php:510 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Events.php:508 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1035 ../../Zotlabs/Module/Events.php:736 +msgid "Month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1036 ../../Zotlabs/Module/Events.php:737 +msgid "Week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1037 ../../Zotlabs/Module/Events.php:738 +msgid "Day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1038 +msgid "List month" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1039 +msgid "List week" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1040 +msgid "List day" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1048 +msgid "More" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1049 +msgid "Less" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1051 +msgid "Select calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1052 ../../Zotlabs/Widget/Cdav.php:143 +msgid "Channel Calendars" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1052 ../../Zotlabs/Widget/Cdav.php:129 +#: ../../Zotlabs/Widget/Cdav.php:143 +msgid "CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1054 +msgid "Delete all" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1057 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1350 ../../Zotlabs/Module/Connedit.php:836 +msgid "Organisation" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1351 ../../Zotlabs/Module/Connedit.php:837 +msgid "Title" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1352 ../../Zotlabs/Module/Connedit.php:838 +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Phone" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1354 ../../Zotlabs/Module/Connedit.php:840 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Instant messenger" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1355 ../../Zotlabs/Module/Connedit.php:841 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Website" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1357 ../../Zotlabs/Module/Connedit.php:843 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Note" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1358 ../../Zotlabs/Module/Connedit.php:844 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/connections.php:751 +#: ../../include/event.php:1352 +msgid "Mobile" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1359 ../../Zotlabs/Module/Connedit.php:845 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/connections.php:752 +#: ../../include/event.php:1353 +msgid "Home" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1360 ../../Zotlabs/Module/Connedit.php:846 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/connections.php:755 +#: ../../include/event.php:1356 +msgid "Work" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1361 ../../Zotlabs/Module/Connedit.php:847 +#: ../../Zotlabs/Module/Profiles.php:796 ../../Zotlabs/Module/Profiles.php:935 +#: ../../Zotlabs/Module/Profiles.php:952 ../../Zotlabs/Module/Profiles.php:1002 +#: ../../Zotlabs/Module/Profiles.php:1038 ../../include/connections.php:758 +#: ../../include/connections.php:765 ../../include/event.php:1359 +#: ../../include/event.php:1366 +msgid "Other" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1362 ../../Zotlabs/Module/Connedit.php:848 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Contact" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1363 ../../Zotlabs/Module/Connedit.php:849 +#: ../../Zotlabs/Module/Profiles.php:798 +msgid "Add Field" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1368 ../../Zotlabs/Module/Connedit.php:854 +msgid "P.O. Box" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1369 ../../Zotlabs/Module/Connedit.php:855 +msgid "Additional" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1370 ../../Zotlabs/Module/Connedit.php:856 +msgid "Street" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1371 ../../Zotlabs/Module/Connedit.php:857 +msgid "Locality" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1372 ../../Zotlabs/Module/Connedit.php:858 +msgid "Region" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1373 ../../Zotlabs/Module/Connedit.php:859 +msgid "ZIP Code" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1374 ../../Zotlabs/Module/Connedit.php:860 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1423 +msgid "Default Calendar" +msgstr "" + +#: ../../Zotlabs/Module/Cdav.php:1434 +msgid "Default Addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:48 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:59 ../../include/channel.php:222 +#: ../../include/channel.php:652 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:64 ../../include/channel.php:227 +#: ../../include/channel.php:657 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Feature has been disabled" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:96 +msgid "Change channel nickname/address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:97 ../../Zotlabs/Module/Removeme.php:68 +#: ../../Zotlabs/Module/Removeaccount.php:68 +msgid "WARNING: " +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:97 +msgid "Any/all connections on other networks will be lost!" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:98 ../../Zotlabs/Module/Removeme.php:69 +#: ../../Zotlabs/Module/Removeaccount.php:69 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:99 +msgid "New channel address" +msgstr "" + +#: ../../Zotlabs/Module/Changeaddr.php:100 +msgid "Rename Channel" +msgstr "" + +#: ../../Zotlabs/Module/Chanview.php:142 +msgid "toggle full screen mode" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:83 ../../include/conversation.php:1902 +#: ../../include/nav.php:406 +msgid "About" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:85 +msgid "Administrators" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:86 +msgid "Developers" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:87 +msgid "Tutorials" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:98 +msgid "$Projectname Documentation" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:99 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:54 ../../Zotlabs/Module/Connect.php:102 +msgid "Continue" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:83 +msgid "Premium Channel Setup" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:85 +msgid "Enable premium channel connection restrictions" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:86 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:88 ../../Zotlabs/Module/Connect.php:108 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:89 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:90 ../../Zotlabs/Module/Connect.php:111 +msgid "" +"By continuing, I certify that I have complied with any instructions provided " +"on this page." +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:99 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:107 +msgid "Restricted or Premium Channel" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:54 +#: ../../Zotlabs/Module/Connections.php:106 +#: ../../Zotlabs/Module/Connections.php:221 +msgid "Active" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:59 +#: ../../Zotlabs/Module/Connections.php:140 +#: ../../Zotlabs/Module/Connections.php:226 +msgid "Blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:64 +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Module/Connections.php:225 +msgid "Ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:69 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:224 +msgid "Hidden" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:74 +#: ../../Zotlabs/Module/Connections.php:154 +msgid "Archived/Unreachable" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:79 +#: ../../Zotlabs/Module/Connections.php:88 ../../Zotlabs/Module/Menu.php:182 +#: ../../Zotlabs/Module/Notifications.php:50 +#: ../../include/conversation.php:1795 +msgid "New" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:93 +#: ../../Zotlabs/Module/Connections.php:102 +#: ../../Zotlabs/Module/Connedit.php:655 ../../Zotlabs/Module/Affinity.php:63 +#: ../../Zotlabs/Widget/Affinity.php:29 +msgid "All" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:126 +msgid "Active Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:129 +msgid "Show active connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:133 +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:136 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Only show blocked connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Only show ignored connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:157 +msgid "Only show archived/unreachable connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show hidden connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Show all connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:222 +msgid "Pending approval" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:223 +msgid "Archived" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:227 +msgid "Not connected at this location" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:244 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:245 +msgid "Edit connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:247 +msgid "Delete connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Channel address" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Network" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Call" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:263 +msgid "Status" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Connected" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Approve connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:269 +msgid "Ignore connection" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:270 +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "Ignore" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:271 +msgid "Recent activity" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Search your connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:303 +msgid "Connections search" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:304 +#: ../../Zotlabs/Module/Directory.php:444 +#: ../../Zotlabs/Module/Directory.php:449 +#: ../../Zotlabs/Widget/Findpeople.php:30 +msgid "Find" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:79 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 +msgid "Album not found." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:173 ../../Zotlabs/Module/Photos.php:1004 +msgid "Delete Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:469 ../../Zotlabs/Module/Display.php:34 +#: ../../Zotlabs/Module/Search.php:25 ../../Zotlabs/Module/Directory.php:77 +#: ../../Zotlabs/Module/Directory.php:82 +#: ../../Zotlabs/Module/Viewconnections.php:26 +msgid "Public access denied." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:480 +msgid "No photos selected" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:529 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:572 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:575 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:617 +msgid "Upload Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:621 +msgid "Enter an album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:622 +msgid "or select an existing album (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:623 +msgid "Create a status post for this upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:624 ../../Zotlabs/Module/Photos.php:989 +#: ../../Zotlabs/Module/Card_edit.php:119 +#: ../../Zotlabs/Module/Editblock.php:133 ../../include/conversation.php:1394 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:119 +msgid "Title (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:625 +msgid "Description (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:628 ../../Zotlabs/Module/Photos.php:992 +#: ../../Zotlabs/Module/Filestorage.php:191 ../../Zotlabs/Module/Thing.php:326 +#: ../../Zotlabs/Module/Thing.php:379 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Connedit.php:617 ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:638 ../../Zotlabs/Module/Cover_photo.php:421 +#: ../../Zotlabs/Module/Embedphotos.php:194 +#: ../../Zotlabs/Module/Profile_photo.php:505 +#: ../../Zotlabs/Storage/Browser.php:398 ../../Zotlabs/Widget/Album.php:97 +#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Cdav.php:146 +#: ../../Zotlabs/Widget/Cdav.php:182 +msgid "Upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:711 +msgid "Show Newest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:713 +msgid "Show Oldest First" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:737 ../../Zotlabs/Module/Photos.php:1264 +#: ../../Zotlabs/Module/Embedphotos.php:177 ../../Zotlabs/Widget/Album.php:78 +#: ../../Zotlabs/Widget/Portfolio.php:87 +msgid "View Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:768 ../../Zotlabs/Module/Embedphotos.php:192 +#: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 +msgid "Edit Album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:770 ../../Zotlabs/Module/Photos.php:1293 +msgid "Add Photos" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:815 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:817 +msgid "Photo not available" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:875 +msgid "Use as profile photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:876 +msgid "Use as cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:883 +msgid "Private Photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:898 +msgid "View Full Size" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:980 +msgid "Edit photo" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:984 +msgid "Move photo to album" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:985 +msgid "Enter a new album name" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:986 +msgid "or select an existing one (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:991 +msgid "Add a Tag" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:999 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1002 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1058 ../../include/conversation.php:597 +msgctxt "title" +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1059 ../../include/conversation.php:598 +msgctxt "title" +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1060 ../../include/conversation.php:599 +msgctxt "title" +msgid "Attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1061 ../../include/conversation.php:600 +msgctxt "title" +msgid "Not attending" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1062 ../../include/conversation.php:601 +msgctxt "title" +msgid "Might attend" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1182 +msgid "Photo Tools" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1191 +msgid "In This Photo:" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1196 +msgid "Map" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1276 ../../Zotlabs/Module/Photos.php:1290 +#: ../../Zotlabs/Module/Photos.php:1291 ../../include/photos.php:696 +msgid "Recent Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:65 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:172 +#: ../../Zotlabs/Module/Cover_photo.php:265 +msgid "Cover Photos" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:196 +#: ../../Zotlabs/Module/Profile_photo.php:143 +msgid "Image resize failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:226 ../../include/photos.php:201 +msgid "Unable to process image" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:284 ../../include/items.php:4352 +msgid "female" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:285 ../../include/items.php:4353 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:286 ../../include/items.php:4354 +msgid "male" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:287 ../../include/items.php:4355 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:289 ../../include/items.php:4357 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:291 ../../include/channel.php:1658 +msgid "cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:389 +#: ../../Zotlabs/Module/Profile_photo.php:436 +msgid "Photo not available." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:416 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:418 +#: ../../Zotlabs/Module/Profile_photo.php:502 +msgid "Upload File:" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:419 +#: ../../Zotlabs/Module/Profile_photo.php:503 +msgid "Select a profile:" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:420 +msgid "Change Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:423 +#: ../../Zotlabs/Module/Cover_photo.php:424 +#: ../../Zotlabs/Module/Profile_photo.php:509 +#: ../../Zotlabs/Module/Profile_photo.php:510 +msgid "Use a photo from your albums" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:426 +#: ../../Zotlabs/Module/Profile_photo.php:512 +#: ../../include/conversation.php:1383 ../../include/conversation.php:1432 +#: ../../include/conversation.php:1434 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:395 +msgid "OK" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:427 +#: ../../Zotlabs/Module/Profile_photo.php:513 +#: ../../include/conversation.php:1299 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:396 +msgid "Choose images to embed" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:428 +#: ../../Zotlabs/Module/Profile_photo.php:514 +#: ../../include/conversation.php:1300 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:397 +msgid "Choose an album" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:429 +#: ../../Zotlabs/Module/Profile_photo.php:515 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:398 +msgid "Choose a different album" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:430 +#: ../../Zotlabs/Module/Profile_photo.php:516 +#: ../../include/conversation.php:1302 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:399 +msgid "Error getting album list" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:431 +#: ../../Zotlabs/Module/Profile_photo.php:517 +#: ../../include/conversation.php:1303 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:400 +msgid "Error getting photo link" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:432 +#: ../../Zotlabs/Module/Profile_photo.php:518 +#: ../../include/conversation.php:1304 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:401 +msgid "Error getting album" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:520 +msgid "Select existing photo" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:452 +#: ../../Zotlabs/Module/Profile_photo.php:539 +msgid "Crop Image" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:453 +#: ../../Zotlabs/Module/Profile_photo.php:540 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:455 +#: ../../Zotlabs/Module/Profile_photo.php:542 +msgid "Done Editing" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:59 ../../Zotlabs/Module/Connedit.php:92 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:94 +#: ../../Zotlabs/Module/Settings/Channel.php:280 +#: ../../extend/addon/a/logrot/logrot.php:55 +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:185 +msgid "Settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:228 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Widget/Settings_menu.php:103 +msgid "Connection Default Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:229 ../../Zotlabs/Module/Connedit.php:780 +msgid "Apply these permissions automatically" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:229 +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:230 ../../Zotlabs/Module/Connedit.php:781 +msgid "Permission role" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:230 +#: ../../Zotlabs/Module/New_channel.php:164 +#: ../../Zotlabs/Module/New_channel.php:171 +#: ../../Zotlabs/Module/Connedit.php:781 +#: ../../Zotlabs/Widget/Notifications.php:163 ../../include/nav.php:302 +msgid "Loading" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:231 ../../Zotlabs/Module/Connedit.php:782 +msgid "Add permission role" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:235 ../../Zotlabs/Module/Connedit.php:795 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:236 +msgid "Automatic approval settings" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:238 ../../Zotlabs/Module/Connedit.php:815 +#: ../../Zotlabs/Module/Settings/Permcats.php:111 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "inherited" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:240 ../../Zotlabs/Module/Connedit.php:820 +#: ../../Zotlabs/Module/Settings/Permcats.php:109 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "My Settings" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:243 ../../Zotlabs/Module/Connedit.php:822 +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +msgid "Individual Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:244 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:139 +msgid "Welcome to Hubzilla!" +msgstr "" + +#: ../../Zotlabs/Module/Hq.php:139 +msgid "You have got no unseen posts..." +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:83 +#: ../../Zotlabs/Module/Editwebpage.php:84 +#: ../../Zotlabs/Module/Card_edit.php:19 ../../Zotlabs/Module/Card_edit.php:35 +#: ../../Zotlabs/Module/Editblock.php:83 ../../Zotlabs/Module/Editblock.php:99 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:19 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:35 +msgid "Item not found" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "" + +#: ../../Zotlabs/Module/Editpost.php:119 ../../Zotlabs/Module/Rpost.php:148 +msgid "Edit post" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:56 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:89 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:111 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:129 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:132 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:135 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:138 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:158 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:161 +#: ../../extend/addon/a/wiki/Wiki_pages.php:40 +#: ../../extend/addon/a/wiki/Wiki_pages.php:97 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:162 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:132 ../../Zotlabs/Module/Layouts.php:135 +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Layout Name" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:133 ../../Zotlabs/Module/Layouts.php:138 +msgid "Layout Description (Optional)" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:141 +msgid "Edit Layout" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:48 +msgid "Nothing to import." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:86 ../../Zotlabs/Module/Import.php:102 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:109 ../../Zotlabs/Module/Import_items.php:77 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:149 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:176 +msgid "No channel. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:515 +msgid "Import completed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:545 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:550 +msgid "Import Channel" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "" +"Use this form to import an existing channel from a different server. You may " +"retrieve the channel identity from the old server via the network or provide " +"an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:552 +#: ../../Zotlabs/Module/Import_items.php:123 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Or provide the old server details" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "Your old identity address (xyz@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:555 +msgid "Your old login email address" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "Your old login password" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:559 +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 "" + +#: ../../Zotlabs/Module/Import.php:561 +msgid "Make this hub my primary location" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:562 +msgid "Move this channel (disable all previous locations)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:563 +msgid "Use this channel nickname instead of the one provided" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:563 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:565 +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/Editwebpage.php:143 +msgid "Page link" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Chat.php:214 +#: ../../Zotlabs/Module/Card_edit.php:103 +#: ../../Zotlabs/Module/Editblock.php:120 ../../include/conversation.php:1251 +#: ../../extend/addon/a/articles/Mod_Article_edit.php:103 +msgid "Insert web link" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:170 +msgid "Edit Webpage" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:12 +#: ../../Zotlabs/Module/Email_validation.php:24 +msgid "Token verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" + +#: ../../Zotlabs/Module/Follow.php:92 +msgid "Connection added." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:34 +msgid "Total invitation limit exceeded." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:58 +#, php-format +msgid "%s : Not a valid email address." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:72 +msgid "Please join us on $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:82 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:87 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:91 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:108 +msgid "Send email invitations to join this network" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:121 +msgid "You have no more invitations available" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:152 +msgid "Send invitations" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:153 +msgid "Enter email addresses, one per line:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:154 +msgid "Your message:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:155 +msgid "Please join my community on $Projectname." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:157 +msgid "You will need to supply this invitation code:" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:158 +msgid "1. Register at any $Projectname location (they are all inter-connected)" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:160 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:161 +msgid "or visit" +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:163 +msgid "3. Click [Connect]" +msgstr "" + +#: ../../Zotlabs/Module/Nocomment.php:13 +msgid "This app allows you to disable comments on individual posts." +msgstr "" + +#: ../../Zotlabs/Module/Nocomment.php:21 +msgid "" +"This app is installed. A button to control the ability to comment may be " +"found below the post editor." +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:50 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:50 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:153 +msgid "Permission Denied." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:186 +msgid "Edit file permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:198 +msgid "Set/edit permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:199 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:200 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:202 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:203 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:205 +msgid "Share this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:206 +msgid "Show URL to this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:207 +#: ../../Zotlabs/Storage/Browser.php:411 +msgid "Show in your contacts shared folder" +msgstr "" + +#: ../../Zotlabs/Module/Dircensor.php:42 ../../Zotlabs/Module/Dircensor.php:45 +msgid "Entry censored" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:295 +msgid "webpage" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:301 +msgid "block" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:298 +msgid "layout" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:304 +msgid "menu" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:185 +#, php-format +msgid "%s element installed" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:188 +#, php-format +msgid "%s element installation failed" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:127 +msgid "Thing updated" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:179 +msgid "Object store: failed" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:183 +msgid "Thing added" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:209 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "Show Thing" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:279 +msgid "item not found." +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:312 +msgid "Edit Thing" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:314 ../../Zotlabs/Module/Thing.php:371 +msgid "Select a profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:318 ../../Zotlabs/Module/Thing.php:374 +msgid "Post an activity" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:318 ../../Zotlabs/Module/Thing.php:374 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:376 +msgid "Name of thing e.g. something" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:322 ../../Zotlabs/Module/Thing.php:377 +msgid "URL of thing (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:324 ../../Zotlabs/Module/Thing.php:378 +msgid "URL for photo of thing (optional)" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:369 +msgid "Add Thing to your Profile" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:28 ../../Zotlabs/Module/Channel.php:48 +msgid "You must be logged in to see this page." +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:100 +msgid "Access Controlled Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:190 +msgid "Room not found" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:206 +msgid "Leave Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:207 +msgid "Delete Room" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:208 +msgid "I am away right now" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:209 +msgid "I am online" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:212 ../../include/conversation.php:1294 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:256 ../../Zotlabs/Module/Manage.php:143 +#: ../../Zotlabs/Module/Profiles.php:832 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:215 +msgid "Create New" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:28 ../../Zotlabs/Module/Locs.php:57 +msgid "Location not found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:65 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:69 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:98 +msgid "Pushing location info" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:108 +msgid "No locations found." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Manage Channel Locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 ../../Zotlabs/Module/Menu.php:179 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Publish these settings" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:126 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:127 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:128 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "" + +#: ../../Zotlabs/Module/Display.php:380 ../../Zotlabs/Module/Channel.php:506 +msgid "" +"You must enable javascript for your browser to be able to view this content." +msgstr "" + +#: ../../Zotlabs/Module/Display.php:398 +msgid "Article" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:450 +msgid "Item has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Hcard.php:40 ../../Zotlabs/Module/Profile.php:52 +#: ../../Zotlabs/Module/Channel.php:68 +msgid "Posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Hcard.php:47 ../../Zotlabs/Module/Profile.php:59 +#: ../../Zotlabs/Module/Channel.php:75 +msgid "Only posts" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:190 ../../include/text.php:2469 +msgid "Layouts" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:196 +msgid "Layout Description" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:201 +msgid "Download PDL file" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:107 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../Zotlabs/Module/Card_edit.php:130 +msgid "Edit Card" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:122 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:125 +msgid "Not found" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:131 +msgid "Please refresh page" +msgstr "" + +#: ../../Zotlabs/Module/Cloud.php:134 +msgid "Unknown error" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:66 ../../Zotlabs/Module/Manage.php:163 +#: ../../Zotlabs/Module/Directory.php:381 +msgid "Group" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:136 ../../Zotlabs/Module/New_channel.php:157 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:176 +msgid "Default Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:177 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:180 +#, php-format +msgid "%d new messages" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:181 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:183 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Lang.php:18 +msgid "Change UI language" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:35 ../../Zotlabs/Module/Menu.php:211 +msgid "Menu not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:67 +msgid "Unable to create element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:91 +msgid "Unable to update menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:107 +msgid "Unable to add menu element." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:138 ../../Zotlabs/Module/Menu.php:234 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:171 ../../Zotlabs/Module/Mitem.php:250 +msgid "Menu Item Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:172 ../../Zotlabs/Module/Mitem.php:251 +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "(click to open/close)" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:195 +msgid "Link Name" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:179 ../../Zotlabs/Module/Mitem.php:259 +msgid "Link or Submenu Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:180 ../../Zotlabs/Module/Mitem.php:260 +msgid "Use magic-auth if available" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:181 ../../Zotlabs/Module/Mitem.php:261 +msgid "Open link in new window" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:182 ../../Zotlabs/Module/Mitem.php:262 +msgid "Order in list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:182 ../../Zotlabs/Module/Mitem.php:262 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Submit and finish" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Submit and continue" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:193 +msgid "Menu:" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:196 +msgid "Link Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Edit menu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Edit element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Drop element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "New element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:205 +msgid "Edit this menu container" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Add menu element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:207 +msgid "Delete this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:208 +msgid "Edit this menu item" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu item not found." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:239 +msgid "Menu item deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:241 +msgid "Menu item could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:248 +msgid "Edit Menu Element" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:258 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/Finger.php:20 +msgid "Webfinger Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Finger.php:21 +msgid "Lookup address or URL" +msgstr "" + +#: ../../Zotlabs/Module/Editblock.php:142 +msgid "Edit Block" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:122 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:68 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1634 +msgid "Password Reset" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:133 ../../Zotlabs/Module/Pdledit.php:69 +#: ../../Zotlabs/Module/Pdledit.php:77 +msgid "Reset" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:70 +msgid "Unable to update menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:81 +msgid "Unable to create menu." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:176 +msgid "Menu Name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:163 +msgid "Unique name (not visible on webpage) - required" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:164 ../../Zotlabs/Module/Menu.php:177 +msgid "Menu Title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:164 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:165 +msgid "Allow Bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:165 ../../Zotlabs/Module/Menu.php:224 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Menu.php:227 +msgid "Submit and proceed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:173 ../../include/text.php:2468 +msgid "Menus" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:183 +msgid "Bookmarks allowed" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:185 +msgid "Delete this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:186 ../../Zotlabs/Module/Menu.php:221 +msgid "Edit menu contents" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:187 +msgid "Edit this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:203 +msgid "Menu could not be deleted." +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:216 +msgid "Edit Menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Add or remove entries to this menu" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Menu name" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:222 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:223 +msgid "Menu title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:223 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:224 +msgid "Allow bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:33 ../../Zotlabs/Module/Pconfig.php:70 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:59 +msgid "Configuration Editor" +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:60 +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 "" + +#: ../../Zotlabs/Module/Register.php:52 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:58 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:92 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:135 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:138 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:148 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:195 +msgid "Registration on this hub is disabled." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:204 +msgid "Registration on this hub is by approval only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:205 ../../Zotlabs/Module/Register.php:214 +msgid "Register at another affiliated hub." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:213 +msgid "Registration on this hub is by invitation only." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:224 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:239 ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Terms of Service" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:245 +#, php-format +msgid "I accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:252 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:257 +msgid "Your email address" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "Choose a password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:259 +msgid "Please re-enter your password" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:260 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Your Name" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Real names are preferred." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/New_channel.php:184 +msgid "Choose a short nickname" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:263 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:264 +#: ../../Zotlabs/Module/New_channel.php:185 +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "Channel role and privacy" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:264 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:265 +msgid "no" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:265 +msgid "yes" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:293 ../../include/nav.php:151 +#: ../../boot.php:1605 +msgid "Register" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:294 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Share.php:118 +msgid "Post repeated" +msgstr "" + +#: ../../Zotlabs/Module/Item.php:486 +msgid "Unable to locate original post." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:566 +msgid "Comment may be moderated." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:782 +msgid "Empty post discarded." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1213 +msgid "Duplicate post suppressed." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1358 +msgid "System error. Post not saved." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1394 +msgid "Your post/comment is awaiting approval." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1525 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1533 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1540 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:344 +msgid "sent you a private message" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:403 +msgid "added your channel" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:427 +msgid "requires approval" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:436 +msgid "g A l F d" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:454 +msgid "[today]" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:464 +msgid "posted an event" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:497 +msgid "shared a file with you" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:525 +msgid "reported content" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:712 +msgid "Private forum" +msgstr "" + +#: ../../Zotlabs/Module/Ping.php:712 +msgid "Public forum" +msgstr "" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:166 +msgid "Your real name is recommended." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:167 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:172 +msgid "" +"This will be used to create a unique network address (like an email address)." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:174 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "Channel name" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:185 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:188 +msgid "Create a Channel" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:189 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:190 +msgid "" +"or import an existing channel from another location." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:195 +msgid "Validate" +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 +msgid "System Notifications" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:123 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:199 +msgid "Connection updated." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:201 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:243 +msgid "is now connected to" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:368 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:416 +msgid "Refresh failed - channel is currently unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:431 ../../Zotlabs/Module/Connedit.php:440 +#: ../../Zotlabs/Module/Connedit.php:449 ../../Zotlabs/Module/Connedit.php:458 +#: ../../Zotlabs/Module/Connedit.php:471 +msgid "Unable to set address book parameters." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:495 +msgid "Connection has been removed." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:538 +#, php-format +msgid "View %s's profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:542 +msgid "Refresh Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:545 +msgid "Fetch updated permissions" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:549 +msgid "Refresh Photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "Fetch updated photo" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:556 ../../include/conversation.php:1026 +msgid "Recent Activity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "View recent posts and comments" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:566 +msgid "Block (or Unblock) all communications with this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:567 +msgid "This connection is blocked!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "Unignore" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:574 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "This connection is ignored!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "Unarchive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "Archive" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:582 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "This connection is archived!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "Unhide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "Hide" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:590 +msgid "Hide or Unhide this connection from your other connections" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "This connection is hidden!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:598 +msgid "Delete this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:606 +msgid "Fetch Vcard" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:609 +msgid "Fetch electronic calling card for this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:620 +msgid "Open Individual Permissions section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:643 +msgid "Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Open Set Affinity section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:650 ../../Zotlabs/Module/Affinity.php:58 +#: ../../Zotlabs/Widget/Affinity.php:24 +msgid "Me" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:651 ../../Zotlabs/Module/Affinity.php:59 +#: ../../Zotlabs/Widget/Affinity.php:25 +msgid "Family" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:652 ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Affinity.php:60 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:73 +#: ../../Zotlabs/Module/Settings/Channel.php:76 +#: ../../Zotlabs/Module/Settings/Channel.php:87 +#: ../../Zotlabs/Widget/Affinity.php:26 ../../include/channel.php:438 +#: ../../include/channel.php:439 ../../include/channel.php:446 +msgid "Friends" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:653 ../../Zotlabs/Module/Affinity.php:61 +#: ../../Zotlabs/Widget/Affinity.php:27 +msgid "Peers" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:672 +msgid "Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:675 +msgid "Open Custom Filter section by default" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:712 +msgid "Approve this connection" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:712 +msgid "Accept connection to allow communication" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:717 +msgid "Set Affinity" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:720 +msgid "Set Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:723 +msgid "Set Affinity & Profile" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "This connection is unreachable from this location." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "This connection may be unreachable from other channel locations." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "Location independence is not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:776 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:779 ../../include/items.php:4012 +#, php-format +msgid "Connection: %s" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:780 +msgid "Connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:789 +msgid "This connection's primary address is" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Available locations:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:796 +msgid "Connection Tools" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:798 +msgid "Slide to adjust your degree of friendship" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:799 ../../include/js_strings.php:20 +msgid "Rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:800 +msgid "Slide to adjust your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:801 ../../Zotlabs/Module/Connedit.php:806 +msgid "Optionally explain your rating" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:803 +msgid "Custom Filter" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:804 +#: ../../Zotlabs/Module/Content_filter.php:51 +#: ../../Zotlabs/Module/Content_filter.php:59 +msgid "Only import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:804 ../../Zotlabs/Module/Connedit.php:805 +msgid "" +"words one per line or #tags, $categories, /patterns/, or lang=xx, leave " +"blank to import all posts" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:805 +msgid "Do not import posts with this text" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:807 +msgid "This information is public!" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:812 +msgid "Connection Pending Approval" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:817 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:819 +#: ../../Zotlabs/Module/Settings/Tokens.php:162 +msgid "Their Settings" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:823 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Tokens.php:169 +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:824 +msgid "" +"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." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:825 +msgid "Last update:" +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:833 +msgid "Details" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:29 +msgid "No entries." +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:73 +msgid "Comment approved" +msgstr "" + +#: ../../Zotlabs/Module/Moderate.php:77 +msgid "Comment deleted" +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:25 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:28 +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 "" + +#: ../../Zotlabs/Module/Pubsites.php:42 +msgid "Hub URL" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:42 +msgid "Access Type" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:42 +msgid "Registration Policy" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:42 +msgid "Software" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:50 +msgid "Provide managed web pages on your channel" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:70 +msgid "Import Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:71 +msgid "Import selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:94 +msgid "Export Webpage Elements" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:95 +msgid "Export selected" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:264 +msgid "Actions" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:265 +msgid "Page Link" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:266 +msgid "Page Title" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:296 +msgid "Invalid file type." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "Error opening zip file" +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:319 +msgid "Invalid folder path." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:346 +msgid "No webpage elements detected." +msgstr "" + +#: ../../Zotlabs/Module/Webpages.php:421 +msgid "Import complete." +msgstr "" + +#: ../../Zotlabs/Module/Page.php:177 +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 "" + +#: ../../Zotlabs/Module/Profile.php:130 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:360 +msgid "network" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:22 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:48 ../../Zotlabs/Module/Pdledit.php:103 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:69 ../../Zotlabs/Module/Pdledit.php:77 +msgid "(modified)" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:98 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:104 +msgid "Module Name:" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:105 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:106 +msgid "Edit another layout" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:107 +msgid "System layout" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:27 ../../Zotlabs/Module/Profiles.php:187 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:47 +msgid "Profile deleted." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:71 ../../Zotlabs/Module/Profiles.php:108 +msgid "Profile-" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:93 ../../Zotlabs/Module/Profiles.php:130 +msgid "New profile created." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:114 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:149 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:460 +msgid "Marital Status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:464 +msgid "Romantic Partner" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:468 ../../Zotlabs/Module/Profiles.php:773 +msgid "Likes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:472 ../../Zotlabs/Module/Profiles.php:774 +msgid "Dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:781 +msgid "Work/Employment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:479 +msgid "Religion" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:483 +msgid "Political Views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:487 +msgid "Gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:491 +msgid "Sexual Preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:495 +msgid "Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:499 +msgid "Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:595 +msgid "Profile updated." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1786 +msgid "Personal" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Who (if applicable)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:764 +msgid "Since (date)" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Tell us about yourself" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Hometown" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Political views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Religious views" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Keywords used in directory listings" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Example: fishing photography software" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Musical interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Books, literature" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Television" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Love/Romance" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "School/Education" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "Contact information and social networks" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "My other channels" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Communications" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:883 +msgid " and " +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:885 +msgid ", " +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:891 +msgid "public profile" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:900 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:901 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:904 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Currently Male" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Currently Female" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Mostly Male" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Mostly Female" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Transgender" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Intersex" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Transsexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Hermaphrodite" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:935 +msgid "Undecided" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 ../../Zotlabs/Module/Profiles.php:1002 +msgid "Males" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 ../../Zotlabs/Module/Profiles.php:1002 +msgid "Females" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Gay" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Lesbian" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "No Preference" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Bisexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Autosexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Abstinent" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Virgin" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Deviant" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Fetish" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Oodles" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:983 +msgid "Nonsexual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Single" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Lonely" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Available" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Unavailable" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Has crush" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Infatuated" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Dating" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Unfaithful" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Sex Addict" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Friends/Benefits" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Casual" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Engaged" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Married" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Imaginarily married" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Partners" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Cohabiting" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Common law" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Happy" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Not looking" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Swinger" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Betrayed" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Separated" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Unstable" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Divorced" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "Widowed" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Uncertain" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +#: ../../Zotlabs/Module/Profiles.php:1038 +msgid "It's complicated" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Don't care" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:1021 +msgid "Ask me" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:182 +msgid "Zap Server - Setup" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:186 +msgid "Could not connect to database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:190 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:197 +msgid "Could not create table." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:209 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:210 ../../Zotlabs/Module/Setup.php:274 +#: ../../Zotlabs/Module/Setup.php:782 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:271 +msgid "System check" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:276 +msgid "Check again" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database connection" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:300 +msgid "" +"In order to install this software we need to know how to connect to your " +"database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:301 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Server Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Default is 127.0.0.1" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Port" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:308 +msgid "Database Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:309 +msgid "Database Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:310 +msgid "Database Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:311 +msgid "Database Type" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:313 ../../Zotlabs/Module/Setup.php:356 +msgid "Site administrator email address" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:313 ../../Zotlabs/Module/Setup.php:356 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:314 ../../Zotlabs/Module/Setup.php:358 +msgid "Website URL" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:314 ../../Zotlabs/Module/Setup.php:358 +msgid "Please use SSL (https) URL if available." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:315 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 7.1 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:417 +msgid "" +"If you do not have a command line version of PHP installed on server, you " +"will not be able to run background tasks - including message delivery." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:436 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:439 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:440 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:443 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:461 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 2MB (2097152 bytes) at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:464 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:471 +msgid "You can adjust these settings in the server php.ini file." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:473 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:496 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "Generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:517 +msgid "libCurl PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:518 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:520 +msgid "PDO database PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:521 +msgid "mb_string PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:522 +msgid "xml PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:523 +msgid "zip PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:527 ../../Zotlabs/Module/Setup.php:529 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:533 ../../Zotlabs/Module/Setup.php:536 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:533 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:539 ../../Zotlabs/Module/Setup.php:542 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:551 +msgid "" +"Error: GD PHP module with JPEG support or ImageMagick graphics library " +"required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:555 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:561 +msgid "" +"Error: PDO database PHP module missing a driver for either mysql or pgsql." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:566 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:570 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:574 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:578 +msgid "Error: zip PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:597 ../../Zotlabs/Module/Setup.php:606 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:602 +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 "" + +#: ../../Zotlabs/Module/Setup.php:603 +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 "" + +#: ../../Zotlabs/Module/Setup.php:604 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:620 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:621 +#, 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:622 ../../Zotlabs/Module/Setup.php:643 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:623 +#, 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 "" + +#: ../../Zotlabs/Module/Setup.php:626 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:646 +msgid "store is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:678 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:679 +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 "" + +#: ../../Zotlabs/Module/Setup.php:680 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:681 +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 "" + +#: ../../Zotlabs/Module/Setup.php:682 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:683 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:685 +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:687 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:693 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:696 +msgid "Url rewrite is working" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:710 +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 "" + +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:780 +msgid "

What next?

" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:781 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:164 +msgid "Poke somebody in your addressbook" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:198 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:201 +msgid "Poke/Prod" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:202 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:209 +msgid "Recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:210 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:213 ../../Zotlabs/Module/Poke.php:214 +msgid "Make this post private" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:119 +#: ../../Zotlabs/Module/Profile_photo.php:290 +#: ../../include/photo_factory.php:367 +msgid "Profile Photos" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:219 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:306 +msgid "Image upload failed." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:325 +msgid "Unable to process image." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:500 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:500 +msgid "" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:504 +msgid "Use Photo for Profile" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:504 +msgid "Change Profile Photo" +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:505 +msgid "Use" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:74 ../../include/conversation.php:267 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:133 ../../Zotlabs/Module/Mood.php:153 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:38 ../../Zotlabs/Module/Profperm.php:67 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:45 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:67 +msgid "Remove This Channel" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:68 +msgid "This channel will be completely removed from this server. " +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:68 +#: ../../Zotlabs/Module/Removeaccount.php:68 +msgid "This action is permanent and can not be undone!" +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:634 +msgid "Remove Channel" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:477 +msgid "day(s)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:478 +msgid "week(s)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:479 +msgid "month(s)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:480 +msgid "year(s)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:493 +msgid "Edit event title" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:495 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:496 +msgid "Edit Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:496 +msgid "Category" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:499 +msgid "Edit start date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:500 ../../Zotlabs/Module/Events.php:503 +msgid "Finish date and time are not known or not relevant" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:502 +msgid "Edit finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:502 +msgid "Finish date and time" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:504 ../../Zotlabs/Module/Events.php:505 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:504 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:506 +msgid "Edit Description" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:508 +msgid "Edit Location" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:512 ../../include/conversation.php:1398 +msgid "Permission settings" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:522 +msgid "Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:527 +msgid "Advanced Options" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:529 +msgid "Event repeat" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:530 +msgid "Repeat frequency" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:531 +msgid "Repeat every" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:532 +msgid "Number of total repeats" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:828 +msgid "Event removed" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:26 +msgid "Affinity Tool settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:37 +msgid "" +"This app (when installed) presents a slider control in your connection " +"editor and also on your network page. The slider represents your degree of " +"friendship or affinity with each connection. It allows you to zoom " +"in or out and display conversations from only your closest friends or " +"everybody in your stream." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:45 +msgid "" +"The number below represents the default maximum slider position for your " +"network/stream page as a percentage." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:71 +msgid "Default friend zoom in/out" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:72 ../../Zotlabs/Widget/Affinity.php:38 +msgid "Refresh" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:83 +msgid "Affinity Tool Settings" +msgstr "" + +#: ../../Zotlabs/Module/Regdir.php:52 ../../Zotlabs/Module/Dirsearch.php:31 +msgid "This site is not a directory server" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:227 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:229 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:46 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:67 +msgid "Remove This Account" +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:68 +msgid "" +"This account and all its channels will be completely removed from this " +"server. " +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:70 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Remove Account" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1927 +#: ../../boot.php:1626 +msgid "Remote Authentication" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1928 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1929 +msgid "Authenticate" +msgstr "" + +#: ../../Zotlabs/Module/Ap_probe.php:18 +msgid "ActivityPub Probe Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Ap_probe.php:19 +msgid "Object URL" +msgstr "" + +#: ../../Zotlabs/Module/Ap_probe.php:20 +msgid "Authenticated fetch" +msgstr "" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:19 +msgid "Not valid email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:22 +msgid "Protected email address. Cannot change to that email." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:31 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:48 +msgid "Password verification failed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:55 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:59 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:73 +msgid "Password changed." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:75 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:100 +msgid "Account Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:101 +msgid "Current Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:102 +msgid "Enter New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Confirm New Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:103 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:105 +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "Email Address:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Remove this account including all its channels" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:25 +msgid "Affinity Slider settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:40 +msgid "No feature settings configured" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:47 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:47 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:52 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:52 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:56 +msgid "Affinity Slider Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:69 +msgid "Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:70 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:38 +msgid "Activity Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:52 ../../include/features.php:375 +msgid "Search by Date" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:53 ../../include/features.php:376 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:60 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:385 +msgid "Saved Searches" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:61 ../../include/features.php:386 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:68 ../../include/features.php:394 +msgid "Alternate Stream Order" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:69 ../../include/features.php:395 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:76 ../../include/features.php:403 +msgid "Contact Filter" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:77 ../../include/features.php:404 +msgid "Ability to display only posts of a selected contact" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:84 ../../include/features.php:412 +msgid "Forum Filter" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:85 ../../include/features.php:413 +msgid "Ability to display only posts of a specific forum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:92 ../../include/features.php:421 +msgid "Personal Posts Filter" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:93 ../../include/features.php:422 +msgid "Ability to display only posts that you've interacted on" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:101 ../../include/features.php:431 +msgid "Filter stream activity by depth of relationships" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:109 ../../include/features.php:440 +msgid "Show friend and connection suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:116 ../../include/features.php:448 +msgid "Connection Filtering" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Network.php:117 ../../include/features.php:449 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:35 +msgid "Name is required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Module/Settings/Oauth2.php:122 +#: ../../Zotlabs/Module/Settings/Oauth2.php:172 +msgid "Add application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:97 +#: ../../Zotlabs/Module/Settings/Oauth2.php:125 +msgid "Name of application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Key" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth2.php:98 +#: ../../Zotlabs/Module/Settings/Oauth2.php:126 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../Zotlabs/Module/Settings/Oauth2.php:98 +#: ../../Zotlabs/Module/Settings/Oauth2.php:126 +msgid "Consumer Secret" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +#: ../../Zotlabs/Module/Settings/Oauth2.php:99 +#: ../../Zotlabs/Module/Settings/Oauth2.php:127 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth2.php:99 +#: ../../Zotlabs/Module/Settings/Oauth2.php:127 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 +msgid "Optional" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +#: ../../Zotlabs/Module/Settings/Oauth2.php:175 +msgid "Client key starts with" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +#: ../../Zotlabs/Module/Settings/Oauth2.php:176 +msgid "No name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +#: ../../Zotlabs/Module/Settings/Oauth2.php:177 +msgid "Remove authorization" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:45 +msgid "Name and Secret are required" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:94 +msgid "Add OAuth2 application" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:100 +#: ../../Zotlabs/Module/Settings/Oauth2.php:128 +msgid "Grant Types" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:100 +#: ../../Zotlabs/Module/Settings/Oauth2.php:101 +#: ../../Zotlabs/Module/Settings/Oauth2.php:128 +#: ../../Zotlabs/Module/Settings/Oauth2.php:129 +msgid "leave blank unless your application specifically requires this" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:101 +#: ../../Zotlabs/Module/Settings/Oauth2.php:129 +msgid "Authorization scope" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +msgid "OAuth2 Application not found." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:171 +msgid "Connected OAuth2 Apps" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:24 +msgid "Permission Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:43 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:67 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +msgid "Permission Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:133 +#, php-format +msgid "%s - (Experimental)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:178 +msgid "Display Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:179 +msgid "Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:180 +msgid "Custom Theme Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:181 +msgid "Content Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Select scheme" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Preload images before rendering the page" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:193 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:194 +msgid "Show emoticons (smilies) as images" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Provide channel menu in navigation bar" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:195 +msgid "Default: channel menu located in app menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "System Page Layout Editor - (advanced)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Channel page max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "click to expand content exceeding this height" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Network page max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:33 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:39 +msgid "Name and Password are required." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:81 +msgid "Token saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:117 +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 private content." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:119 +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/Tokens.php:151 +#: ../../Zotlabs/Widget/Settings_menu.php:86 +msgid "Guest Access Tokens" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "Expires (yyyy-mm-dd)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Features.php:55 +msgid "Additional Features" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:341 +msgid "Nobody except yourself" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:342 +msgid "Only those you specifically allow" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:343 +msgid "Approved connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:344 +msgid "Any connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:345 +msgid "Anybody on this website" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:346 +msgid "Anybody in this network" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:347 +msgid "Anybody authenticated" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:348 +msgid "Anybody on the internet" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:427 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:432 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:436 +msgid "or" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:444 +msgid "Your channel address is" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:447 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Automatic membership approval" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Enable hyperdrive" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "" +"Import public third-party conversations in which your connections " +"participate." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Channel Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "Basic Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "Your Timezone:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:533 +msgid "Default Post Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:533 +msgid "Geographical location to display on your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Use Browser Location:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Adult Content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:538 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Hide my online presence" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Simple Privacy Settings:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Private - default private, never open or public" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "Blocked - default blocked to/from everybody" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Allow others to tag your posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Channel Permission Limits" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +#, php-format +msgid "This website expires after %d days." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "This website does not expire imported content." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "May reduce spam activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Default Access List" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "Profile to assign new connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Default Permissions Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "By default post a status message when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "accepting a friend request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:584 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +msgid "Send a notification email when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:587 +msgid "You receive a connection request" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:590 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "Someone likes your post/comment" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Unseen network activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Unseen channel activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:604 +msgid "Upcoming events" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:605 +msgid "Events today" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:606 +msgid "Upcoming birthdays" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:606 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:607 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +msgid "System info messages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +#: ../../Zotlabs/Module/Settings/Channel.php:609 +#: ../../Zotlabs/Module/Settings/Channel.php:610 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:609 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:610 +msgid "New connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:611 +msgid "System Registrations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:613 +msgid "Unseen public activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:614 +msgid "Unseen likes and dislikes" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:615 +msgid "Unseen forum posts" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:616 +msgid "Reported content" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:617 +msgid "Email notification hub (hostname)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:617 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:618 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:620 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:620 +msgid "Must be greater than 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:626 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:627 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:629 +msgid "Miscellaneous Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:630 +msgid "Default photo upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:630 +#: ../../Zotlabs/Module/Settings/Channel.php:631 +msgid "%Y - current year, %m - current month" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:631 +msgid "Default file upload folder" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:633 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:635 +msgid "Remove this channel." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:636 +msgid "Firefox Share $Projectname provider" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:637 +msgid "Start calendar week on Monday" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:125 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:128 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Files: shared with me" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "NEW" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +#: ../../Zotlabs/Storage/Browser.php:293 ../../include/text.php:1455 +msgid "Size" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:294 +msgid "Last Modified" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +msgid "Remove all files" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove this file" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "About this site" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "Site Name" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:35 +msgid "Administrator" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Software and Project information" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:39 +msgid "This site is powered by $Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:44 +msgid "Additional federated transport protocols:" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:46 +#, php-format +msgid "Version %s" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:47 +msgid "Project homepage" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "Developer homepage" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:60 ../../Zotlabs/Module/Uexport.php:61 +msgid "Export Channel" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:62 +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 "" + +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export Content" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:64 +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 "" + +#: ../../Zotlabs/Module/Uexport.php:66 +msgid "Export your posts from a given year." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:68 +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 "" + +#: ../../Zotlabs/Module/Uexport.php:69 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:70 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:71 +#, 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 "" + +#: ../../Zotlabs/Module/Sources.php:38 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:54 +msgid "Source created." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:67 +msgid "Source updated." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:93 +msgid "*" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:100 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:101 ../../Zotlabs/Module/Sources.php:111 +msgid "New Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:146 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:153 +msgid "Channel Name" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +msgid "Resend posts with this channel as author" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +msgid "Copyrights may apply" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:136 ../../Zotlabs/Module/Sources.php:166 +msgid "Source not found." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:143 +msgid "Edit Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:144 +msgid "Delete Source" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:174 +msgid "Source removed" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:176 +msgid "Unable to remove source." +msgstr "" + +#: ../../Zotlabs/Module/Dirsearch.php:40 +msgid "This directory server requires an access token" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:50 +msgid "Post not found." +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:81 ../../include/conversation.php:145 +#: ../../include/text.php:2054 +msgid "comment" +msgstr "" + +#: ../../Zotlabs/Module/Tagger.php:121 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../Zotlabs/Module/Channel.php:191 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:131 +msgid "No default suggestions were found." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:292 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:303 +msgid "Gender: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:305 +msgid "Status: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:307 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:370 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:385 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:388 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:390 +msgid "Common connections (estimated):" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:439 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:439 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:445 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:448 +#: ../../Zotlabs/Widget/Findpeople.php:31 +msgid "Channel Suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:450 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:450 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:451 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:452 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:453 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:454 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:455 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:472 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:25 +msgid "Content Filter settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:36 +msgid "" +"This app (when installed) allows you to filter incoming content from all " +"sources or from specific connections. The filtering may be based on words, " +"tags, regular expressions, or language" +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:44 +msgid "" +"The settings on this page apply to all incoming content. To edit the " +"settings for individual connetions, see the similar settings on the " +"Connection Edit page for that connection." +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:53 +#: ../../Zotlabs/Module/Content_filter.php:61 +msgid "" +"words one per line or #tags, $categories, /patterns/, lang=xx, lang!=xx - " +"leave blank to import all posts" +msgstr "" + +#: ../../Zotlabs/Module/Content_filter.php:66 +msgid "Content Filter Settings" +msgstr "" + +#: ../../Zotlabs/Module/Categories.php:29 +msgid "This app allows you to add categories to posts and events." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:68 +msgid "No connections." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:86 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:116 +msgid "View Connections" +msgstr "" + +#: ../../Zotlabs/Module/Zotfinger.php:23 +msgid "Zotfinger Diagnostic" +msgstr "" + +#: ../../Zotlabs/Module/Zotfinger.php:24 +msgid "Lookup URL" +msgstr "" + +#: ../../Zotlabs/Module/Suggestions.php:38 +msgid "" +"This app (when installed) displays a small number of friend suggestions on " +"selected pages or you can run the app to display a full list of channel " +"suggestions." +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:295 +msgid "parent" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:279 +msgid "Total" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:281 +msgid "Shared" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:283 +msgid "Add Files" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:292 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:220 +msgid "Type" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:367 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:372 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "WARNING:" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:395 +msgid "Create new folder" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Upload file" +msgstr "" + +#: ../../Zotlabs/Storage/Browser.php:410 +msgid "Drop files here to immediately upload" +msgstr "" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:184 +msgid "Admin" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" +msgstr "" + +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +#: ../../Zotlabs/Widget/Categories.php:78 +#: ../../Zotlabs/Widget/Categories.php:122 +#: ../../Zotlabs/Widget/Categories.php:169 +msgid "Everything" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Installed apps" +msgstr "" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "" + +#: ../../Zotlabs/Widget/Cover_photo.php:65 +msgid "Click to show more" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:24 +msgid "Profile Creation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:26 +msgid "Upload profile photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:27 +msgid "Upload cover photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:106 +msgid "Edit your profile" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Find and Connect with others" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "View the directory" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:34 +msgid "View friend suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Manage your connections" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Communicate" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View your channel homepage" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:41 +msgid "View your network stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:57 +msgid "View public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:61 ../../include/features.php:60 +msgid "New Member Links" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:49 +msgid "Display settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:56 +msgid "Manage locations" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Export channel" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "OAuth1 apps" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:78 +msgid "OAuth2 apps" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:96 +msgid "Commented Date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:100 +msgid "Order by last commented date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:103 +msgid "Posted Date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:107 +msgid "Order by last posted date" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:110 +msgid "Date Unthreaded" +msgstr "" + +#: ../../Zotlabs/Widget/Stream_order.php:114 +msgid "Order unthreaded by date" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:322 +#: ../../include/taxonomy.php:459 ../../include/taxonomy.php:480 +msgid "Tags" +msgstr "" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:37 +msgid "Friend zoom in/out" +msgstr "" + +#: ../../Zotlabs/Widget/Common_friends.php:40 +msgid "Common Connections" +msgstr "" + +#: ../../Zotlabs/Widget/Common_friends.php:45 +#, php-format +msgid "View all %d common connections" +msgstr "" + +#: ../../Zotlabs/Widget/Filer.php:28 +#: ../../Zotlabs/Widget/Activity_filter.php:177 ../../include/features.php:492 +msgid "Saved Folders" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:18 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Widget/Findpeople.php:26 +msgid "Find Channels" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:27 +msgid "Enter name or interest" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:28 +msgid "Connect/Follow" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:29 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../Zotlabs/Widget/Findpeople.php:36 +msgid "Advanced example: name=fred and country=iceland" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:24 +msgid "Personal Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:28 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:41 +msgid "Show posts that include events" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:51 +msgid "Starred Posts" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:55 +msgid "Show posts that I have starred" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:75 +#, php-format +msgid "Show posts related to the %s access list" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:84 +msgid "Show my access lists" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:102 +msgid "Show posts to this group" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:104 +#: ../../Zotlabs/Widget/Activity_filter.php:135 +msgid "New post" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:111 +#: ../../Zotlabs/Widget/Groups.php:103 +#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Notifications.php:121 +msgid "Groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:115 +msgid "Show groups" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:133 +msgid "Show posts to this collection" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:142 +#: ../../include/conversation.php:1422 +msgid "Collections" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:146 +msgid "Show collections" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:171 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:181 +msgid "Show filed post categories" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:220 +msgid "Remove active filter" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:236 +msgid "Activity Filters" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:48 +msgid "Ignore/Hide" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:53 +msgid "Suggestions" +msgstr "" + +#: ../../Zotlabs/Widget/Suggestions.php:54 +msgid "See more..." +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Channel Calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Shared CalDAV Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:135 +msgid "Share this calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:137 +msgid "Calendar name and color" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:139 +msgid "Create new CalDAV calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:141 +msgid "Calendar Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:142 +msgid "Calendar Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:144 +msgid "Import calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:145 +msgid "Select a calendar to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:172 +msgid "Addressbooks" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:174 +msgid "Addressbook name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:176 +msgid "Create new addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:177 +msgid "Addressbook Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:179 +msgid "Addressbook Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:180 +msgid "Import addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:181 +msgid "Select an addressbook to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:18 +msgid "New Network Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:21 +msgid "View your network activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:24 +msgid "Mark all notifications read" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "Show new posts only" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:28 +#: ../../Zotlabs/Widget/Notifications.php:47 +#: ../../Zotlabs/Widget/Notifications.php:123 +#: ../../Zotlabs/Widget/Notifications.php:154 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:37 +msgid "New Home Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:40 +msgid "View your home activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:43 +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Mark all notifications seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:56 +msgid "New Mails Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:59 +msgid "View your private mails" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:62 +msgid "Mark all messages seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:71 +msgid "New Events Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:74 +msgid "View events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:77 +msgid "Mark all events seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:86 +msgid "New Connections Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:89 +msgid "View all connections" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:98 +msgid "New Files Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:105 +#: ../../Zotlabs/Widget/Notifications.php:106 +msgid "Notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:109 +msgid "View all notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:112 +msgid "Mark all notices seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:133 +msgid "New Registrations" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:134 +msgid "New Registrations Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:144 +msgid "Public Stream Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:147 +msgid "View the public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:162 +msgid "Sorry, you have got no notifications at the moment" +msgstr "" + +#: ../../include/connections.php:145 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:146 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/connections.php:753 ../../include/event.php:1354 +msgid "Home, Voice" +msgstr "" + +#: ../../include/connections.php:754 ../../include/event.php:1355 +msgid "Home, Fax" +msgstr "" + +#: ../../include/connections.php:756 ../../include/event.php:1357 +msgid "Work, Voice" +msgstr "" + +#: ../../include/connections.php:757 ../../include/event.php:1358 +msgid "Work, Fax" +msgstr "" + +#: ../../include/feedutils.php:860 ../../include/text.php:1455 +msgid "unknown" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "" + +#: ../../include/datetime.php:238 ../../boot.php:2471 msgid "never" msgstr "" -#: ../../include/datetime.php:268 +#: ../../include/datetime.php:244 msgid "less than a second ago" msgstr "" -#: ../../include/datetime.php:271 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:271 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:272 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:272 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:273 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:274 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:274 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:277 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:285 +#: ../../include/datetime.php:262 #, php-format msgctxt "e.g. 22 hours ago, 1 minute ago" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:519 +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:520 #, php-format msgid "%1$s's birthday" msgstr "" -#: ../../include/datetime.php:520 +#: ../../include/datetime.php:521 #, php-format msgid "Happy Birthday %1$s" msgstr "" -#: ../../include/dir_fns.php:126 -msgid "Directory Options" -msgstr "" - -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../mod/connedit.php:647 ../../mod/connedit.php:675 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "No" -msgstr "" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "Yes" -msgstr "" - -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" -msgstr "" - -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "" - -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" -msgstr "" - -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:678 -#: ../../include/conversation.php:1166 ../../mod/webpages.php:188 -#: ../../mod/events.php:690 ../../mod/editpost.php:143 -#: ../../mod/photos.php:982 ../../mod/editwebpage.php:214 -#: ../../mod/editblock.php:170 -msgid "Preview" -msgstr "" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 -msgid "Created" -msgstr "" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 -#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 -msgid "Edited" -msgstr "" - -#: ../../include/api.php:1267 -msgid "Public Timeline" -msgstr "" - -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" +#: ../../include/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:668 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:385 -msgid "[+] show all" -msgstr "" - #: ../../include/js_strings.php:8 -msgid "[-] show less" +#, php-format +msgid "%s show less" msgstr "" #: ../../include/js_strings.php:9 -msgid "[+] expand" +#, php-format +msgid "%s expand" msgstr "" #: ../../include/js_strings.php:10 -msgid "[-] collapse" +#, php-format +msgid "%s collapse" msgstr "" #: ../../include/js_strings.php:11 @@ -458,7 +9607,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "" @@ -486,39 +9635,10 @@ msgstr "" msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -#: ../../mod/connedit.php:683 -msgid "Rating" -msgstr "" - #: ../../include/js_strings.php:21 msgid "Describe (optional)" msgstr "" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:669 -#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/group.php:81 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/pdledit.php:58 ../../mod/import.php:592 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/mitem.php:235 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/admin.php:453 ../../mod/admin.php:819 ../../mod/admin.php:986 -#: ../../mod/admin.php:1118 ../../mod/admin.php:1312 ../../mod/admin.php:1397 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/mood.php:134 -#: ../../mod/connedit.php:704 ../../mod/mail.php:355 ../../mod/appman.php:99 -#: ../../mod/pconfig.php:108 ../../mod/poll.php:68 -#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "" - #: ../../include/js_strings.php:23 msgid "Please enter a link URL" msgstr "" @@ -528,8627 +9648,2401 @@ msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" #: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" +msgid "lovely" msgstr "" #: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" +msgid "wonderful" msgstr "" #: ../../include/js_strings.php:28 -msgid "ago" +msgid "fantastic" msgstr "" #: ../../include/js_strings.php:29 -msgid "from now" +msgid "great" msgstr "" #: ../../include/js_strings.php:30 -msgid "less than a minute" +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" msgstr "" #: ../../include/js_strings.php:31 -msgid "about a minute" +msgid ") or enter a new one." msgstr "" #: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "" + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "" + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "" + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr "" + +#: ../../include/js_strings.php:41 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:42 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:43 +msgid "timeago.suffixAgo" +msgstr "" + +#: ../../include/js_strings.php:44 +msgid "timeago.suffixFromNow" +msgstr "" + +#: ../../include/js_strings.php:47 +msgid "less than a minute" +msgstr "" + +#: ../../include/js_strings.php:48 +msgid "about a minute" +msgstr "" + +#: ../../include/js_strings.php:49 #, php-format msgid "%d minutes" msgstr "" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:50 msgid "about an hour" msgstr "" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:51 #, php-format msgid "about %d hours" msgstr "" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:52 msgid "a day" msgstr "" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:53 #, php-format msgid "%d days" msgstr "" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:54 msgid "about a month" msgstr "" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:55 #, php-format msgid "%d months" msgstr "" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:56 msgid "about a year" msgstr "" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:57 #, php-format msgid "%d years" msgstr "" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:58 msgid " " msgstr "" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:59 msgid "timeago.numbers" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2561 -msgid "Collection" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1030 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1620 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:152 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/layouts.php:175 -msgid "Create" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:718 ../../mod/photos.php:1248 -msgid "Upload" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:671 ../../include/apps.php:255 -#: ../../mod/webpages.php:183 ../../mod/thing.php:256 ../../mod/group.php:176 -#: ../../mod/blocks.php:155 ../../mod/photos.php:1062 -#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 -#: ../../mod/editblock.php:180 ../../mod/admin.php:826 ../../mod/admin.php:988 -#: ../../mod/settings.php:651 ../../mod/connedit.php:563 -msgid "Delete" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1585 ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "" - -#: ../../include/network.php:1586 ../../include/enotify.php:59 -#: ../../include/diaspora.php:2522 ../../include/diaspora.php:2533 -#: ../../mod/p.php:46 -msgid "$projectname" -msgstr "" - -#: ../../include/network.php:1588 ../../include/enotify.php:61 -msgid "Thank You," -msgstr "" - -#: ../../include/network.php:1590 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/network.php:1646 -msgid "No Subject" -msgstr "" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "" - -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "" - -#: ../../include/features.php:59 ../../include/widgets.php:548 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "" - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "" - -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "" - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "" - -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "" - -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:83 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "" - -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/channel.php:956 ../../mod/directory.php:316 -#: ../../mod/match.php:64 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "" - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "" - -#: ../../include/widgets.php:192 ../../include/text.php:915 -#: ../../include/text.php:927 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1457 ../../mod/admin.php:1477 -msgid "Save" -msgstr "" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "" - -#: ../../include/widgets.php:431 ../../include/channel.php:394 -#: ../../include/channel.php:395 ../../include/channel.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:345 -#: ../../mod/settings.php:349 ../../mod/settings.php:350 -#: ../../mod/settings.php:353 ../../mod/settings.php:364 -#: ../../mod/connedit.php:585 -msgid "Friends" -msgstr "" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:556 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "" - -#: ../../include/widgets.php:569 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "" - -#: ../../include/widgets.php:577 ../../include/nav.php:199 -msgid "New Message" -msgstr "" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "" - -#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 -msgid "Starts:" -msgstr "" - -#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 -msgid "Finishes:" -msgstr "" - -#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/channel.php:1007 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "" - -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "" - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from %4$s." -msgstr "" - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/diaspora.php:2119 ../../include/conversation.php:120 -#: ../../include/text.php:1896 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "" - -#: ../../include/diaspora.php:2119 ../../include/conversation.php:148 -#: ../../include/text.php:1902 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "" - -#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../include/diaspora.php:2494 -msgid "Please choose" -msgstr "" - -#: ../../include/diaspora.php:2496 -msgid "Agree" -msgstr "" - -#: ../../include/diaspora.php:2498 -msgid "Disagree" -msgstr "" - -#: ../../include/diaspora.php:2500 -msgid "Abstain" -msgstr "" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "" - -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "" - -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1712 ../../include/channel.php:1266 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "" - -#: ../../include/ItemObject.php:277 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:299 -msgid "to" -msgstr "" - -#: ../../include/ItemObject.php:300 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:301 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:302 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:313 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/ItemObject.php:317 ../../include/conversation.php:731 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/ItemObject.php:338 -msgid "Save Bookmarks" -msgstr "" - -#: ../../include/ItemObject.php:339 -msgid "Add to Calendar" -msgstr "" - -#: ../../include/ItemObject.php:348 -msgid "Mark all seen" -msgstr "" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../include/ItemObject.php:360 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "" - -#: ../../include/ItemObject.php:365 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/editpost.php:123 -#: ../../mod/photos.php:962 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:192 ../../mod/editblock.php:149 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "" - -#: ../../include/ItemObject.php:666 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1192 -#: ../../mod/editpost.php:107 ../../mod/editlayout.php:134 -#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:135 -msgid "Bold" -msgstr "" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1193 -#: ../../mod/editpost.php:108 ../../mod/editlayout.php:135 -#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:136 -msgid "Italic" -msgstr "" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1194 -#: ../../mod/editpost.php:109 ../../mod/editlayout.php:136 -#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:137 -msgid "Underline" -msgstr "" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1195 -#: ../../mod/editpost.php:110 ../../mod/editlayout.php:137 -#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:138 -msgid "Quote" -msgstr "" - -#: ../../include/ItemObject.php:674 ../../include/conversation.php:1196 -#: ../../mod/editpost.php:111 ../../mod/editlayout.php:138 -#: ../../mod/editwebpage.php:183 ../../mod/editblock.php:139 -msgid "Code" -msgstr "" - -#: ../../include/ItemObject.php:675 -msgid "Image" -msgstr "" - -#: ../../include/ItemObject.php:676 -msgid "Insert Link" -msgstr "" - -#: ../../include/ItemObject.php:677 -msgid "Video" -msgstr "" - -#: ../../include/ItemObject.php:681 ../../include/conversation.php:1247 -#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/Contact.php:212 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:95 ../../include/channel.php:979 -msgid "Edit Profile" -msgstr "" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "" - -#: ../../include/nav.php:97 ../../include/conversation.php:1611 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "" - -#: ../../include/nav.php:109 ../../include/conversation.php:1646 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "" - -#: ../../include/nav.php:113 ../../include/conversation.php:1656 -#: ../../include/apps.php:136 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 -msgid "Login" -msgstr "" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:165 ../../include/text.php:914 -#: ../../include/text.php:926 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "" - -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "" - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "" - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../include/security.php:349 -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/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "" - -#: ../../include/permissions.php:48 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "" - -#: ../../include/permissions.php:893 -msgid "Social Networking" -msgstr "" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "" - -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "" - -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "" - -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "" - -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "" - -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "" - -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "" - -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "" - -#: ../../include/conversation.php:123 ../../include/text.php:1899 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "" - -#: ../../include/conversation.php:150 ../../include/text.php:1904 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "" - -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:243 ../../include/text.php:990 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:718 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:719 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:746 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:857 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:950 -msgid "View Source" -msgstr "" - -#: ../../include/conversation.php:951 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "" - -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "" - -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "" - -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "" - -#: ../../include/conversation.php:959 ../../include/apps.php:145 -msgid "Poke" -msgstr "" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1079 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1085 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1088 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 -msgid "Share" -msgstr "" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1197 ../../mod/editpost.php:112 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:184 -#: ../../mod/editblock.php:141 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "" - -#: ../../include/conversation.php:1199 ../../mod/editpost.php:113 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:185 -#: ../../mod/editblock.php:142 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "" - -#: ../../include/conversation.php:1201 ../../mod/editpost.php:114 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:186 -#: ../../mod/editblock.php:143 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "" - -#: ../../include/conversation.php:1207 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:190 -#: ../../mod/editblock.php:147 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1212 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:191 -#: ../../mod/editblock.php:148 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 -msgid "Title (optional)" -msgstr "" - -#: ../../include/conversation.php:1219 ../../mod/editpost.php:137 -#: ../../mod/editlayout.php:162 ../../mod/editwebpage.php:209 -#: ../../mod/editblock.php:164 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 -#: ../../mod/editblock.php:150 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 -#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 -#: ../../mod/editblock.php:158 -msgid "Public post" -msgstr "" - -#: ../../include/conversation.php:1232 ../../mod/editpost.php:138 -#: ../../mod/editlayout.php:163 ../../mod/editwebpage.php:210 -#: ../../mod/editblock.php:165 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: ../../include/conversation.php:1245 ../../mod/editpost.php:149 -#: ../../mod/editlayout.php:172 ../../mod/editwebpage.php:219 -#: ../../mod/editblock.php:175 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1249 ../../mod/events.php:674 -#: ../../mod/editpost.php:153 -msgid "OK" -msgstr "" - -#: ../../include/conversation.php:1250 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:134 ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Cancel" -msgstr "" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1500 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1507 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "" - -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1533 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1543 -msgid "Spam" -msgstr "" - -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" -msgstr "" - -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "" - -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "" - -#: ../../include/conversation.php:1605 -msgid "Profile Details" -msgstr "" - -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "" - -#: ../../include/conversation.php:1623 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "" - -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/items.php:413 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:1101 ../../include/items.php:1147 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:4310 ../../mod/thing.php:74 -#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20 -#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225 -#: ../../mod/display.php:36 -msgid "Item not found." -msgstr "" - -#: ../../include/items.php:4383 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:305 -#: ../../include/attach.php:319 ../../include/attach.php:350 -#: ../../include/attach.php:546 ../../include/attach.php:618 -#: ../../include/chat.php:131 ../../include/photos.php:26 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:269 -#: ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:249 ../../mod/group.php:9 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/network.php:12 -#: ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/editpost.php:13 -#: ../../mod/photos.php:69 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/mitem.php:111 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/editblock.php:65 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/setup.php:223 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/register.php:72 ../../mod/settings.php:570 ../../mod/id.php:71 -#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:348 -#: ../../mod/mail.php:114 ../../mod/notifications.php:66 -#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:100 ../../mod/channel.php:219 -#: ../../mod/channel.php:262 ../../mod/suggest.php:26 -#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:182 ../../index.php:393 -msgid "Permission denied." -msgstr "" - -#: ../../include/items.php:4787 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "" - -#: ../../include/items.php:4803 -msgid "Collection is empty." -msgstr "" - -#: ../../include/items.php:4810 -#, php-format -msgid "Collection: %s" -msgstr "" - -#: ../../include/items.php:4820 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "" - -#: ../../include/items.php:4822 -msgid "Connection not found." -msgstr "" - -#: ../../include/zot.php:685 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:701 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2209 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "" - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 -#: ../../mod/directory.php:384 ../../mod/connections.php:273 -msgid "Find" -msgstr "" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:691 -#: ../../mod/photos.php:571 ../../mod/photos.php:934 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "" - -#: ../../include/text.php:393 -msgid "first" -msgstr "" - -#: ../../include/text.php:422 -msgid "last" -msgstr "" - -#: ../../include/text.php:425 -msgid "next" -msgstr "" - -#: ../../include/text.php:435 -msgid "older" -msgstr "" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "" - -#: ../../include/text.php:844 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:61 ../../include/text.php:1379 msgid "January" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:62 ../../include/text.php:1379 msgid "February" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:63 ../../include/text.php:1379 msgid "March" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:64 ../../include/text.php:1379 msgid "April" msgstr "" -#: ../../include/text.php:1201 ../../mod/uexport.php:58 -#: ../../mod/uexport.php:59 +#: ../../include/js_strings.php:65 +msgctxt "long" msgid "May" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:66 ../../include/text.php:1379 msgid "June" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:67 ../../include/text.php:1379 msgid "July" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:68 ../../include/text.php:1379 msgid "August" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:69 ../../include/text.php:1379 msgid "September" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:70 ../../include/text.php:1379 msgid "October" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:71 ../../include/text.php:1379 msgid "November" msgstr "" -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:72 ../../include/text.php:1379 msgid "December" msgstr "" -#: ../../include/text.php:1306 -msgid "unknown.???" +#: ../../include/js_strings.php:73 +msgid "Jan" msgstr "" -#: ../../include/text.php:1307 -msgid "bytes" +#: ../../include/js_strings.php:74 +msgid "Feb" msgstr "" -#: ../../include/text.php:1343 -msgid "remove category" +#: ../../include/js_strings.php:75 +msgid "Mar" msgstr "" -#: ../../include/text.php:1418 -msgid "remove from file" +#: ../../include/js_strings.php:76 +msgid "Apr" msgstr "" -#: ../../include/text.php:1506 ../../include/text.php:1517 -msgid "Click to open/close" +#: ../../include/js_strings.php:77 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/text.php:1673 ../../mod/events.php:474 -msgid "Link to Source" +#: ../../include/js_strings.php:78 +msgid "Jun" msgstr "" -#: ../../include/text.php:1694 ../../include/text.php:1765 -msgid "default" +#: ../../include/js_strings.php:79 +msgid "Jul" msgstr "" -#: ../../include/text.php:1702 -msgid "Page layout" +#: ../../include/js_strings.php:80 +msgid "Aug" msgstr "" -#: ../../include/text.php:1702 -msgid "You can create your own with the layouts tool" +#: ../../include/js_strings.php:81 +msgid "Sep" msgstr "" -#: ../../include/text.php:1743 -msgid "Page content type" +#: ../../include/js_strings.php:82 +msgid "Oct" msgstr "" -#: ../../include/text.php:1777 -msgid "Select an alternate language" +#: ../../include/js_strings.php:83 +msgid "Nov" msgstr "" -#: ../../include/text.php:1909 -msgid "activity" +#: ../../include/js_strings.php:84 +msgid "Dec" msgstr "" -#: ../../include/text.php:2204 -msgid "Design Tools" +#: ../../include/js_strings.php:85 ../../include/text.php:1375 +msgid "Sunday" msgstr "" -#: ../../include/text.php:2207 ../../mod/blocks.php:147 -msgid "Blocks" +#: ../../include/js_strings.php:86 ../../include/text.php:1375 +msgid "Monday" msgstr "" -#: ../../include/text.php:2208 ../../mod/menu.php:101 -msgid "Menus" +#: ../../include/js_strings.php:87 ../../include/text.php:1375 +msgid "Tuesday" msgstr "" -#: ../../include/text.php:2209 ../../mod/layouts.php:174 -msgid "Layouts" +#: ../../include/js_strings.php:88 ../../include/text.php:1375 +msgid "Wednesday" msgstr "" -#: ../../include/text.php:2210 -msgid "Pages" +#: ../../include/js_strings.php:89 ../../include/text.php:1375 +msgid "Thursday" msgstr "" -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." +#: ../../include/js_strings.php:90 ../../include/text.php:1375 +msgid "Friday" msgstr "" -#: ../../include/attach.php:363 -msgid "No source file." +#: ../../include/js_strings.php:91 ../../include/text.php:1375 +msgid "Saturday" msgstr "" -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" +#: ../../include/js_strings.php:92 +msgid "Sun" msgstr "" -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" +#: ../../include/js_strings.php:93 +msgid "Mon" msgstr "" -#: ../../include/attach.php:410 +#: ../../include/js_strings.php:94 +msgid "Tue" +msgstr "" + +#: ../../include/js_strings.php:95 +msgid "Wed" +msgstr "" + +#: ../../include/js_strings.php:96 +msgid "Thu" +msgstr "" + +#: ../../include/js_strings.php:97 +msgid "Fri" +msgstr "" + +#: ../../include/js_strings.php:98 +msgid "Sat" +msgstr "" + +#: ../../include/js_strings.php:99 +msgctxt "calendar" +msgid "today" +msgstr "" + +#: ../../include/js_strings.php:100 +msgctxt "calendar" +msgid "month" +msgstr "" + +#: ../../include/js_strings.php:101 +msgctxt "calendar" +msgid "week" +msgstr "" + +#: ../../include/js_strings.php:102 +msgctxt "calendar" +msgid "day" +msgstr "" + +#: ../../include/js_strings.php:103 +msgctxt "calendar" +msgid "All day" +msgstr "" + +#: ../../include/taxonomy.php:322 +msgid "Trending" +msgstr "" + +#: ../../include/taxonomy.php:566 +msgid "Keywords" +msgstr "" + +#: ../../include/taxonomy.php:587 +msgid "have" +msgstr "" + +#: ../../include/taxonomy.php:587 +msgid "has" +msgstr "" + +#: ../../include/taxonomy.php:588 +msgid "want" +msgstr "" + +#: ../../include/taxonomy.php:588 +msgid "wants" +msgstr "" + +#: ../../include/taxonomy.php:589 +msgid "likes" +msgstr "" + +#: ../../include/taxonomy.php:590 +msgid "dislikes" +msgstr "" + +#: ../../include/event.php:32 ../../include/event.php:101 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:40 ../../include/event.php:106 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:50 ../../include/event.php:110 +msgid "Finishes:" +msgstr "" + +#: ../../include/event.php:1045 +msgid "This event has been added to your calendar." +msgstr "" + +#: ../../include/event.php:1266 +msgid "Not specified" +msgstr "" + +#: ../../include/event.php:1267 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1268 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1269 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1270 +msgid "Cancelled" +msgstr "" + +#: ../../include/network.php:811 +msgid "view full size" +msgstr "" + +#: ../../include/network.php:1939 ../../include/network.php:1940 +msgid "Friendica" +msgstr "" + +#: ../../include/network.php:1941 +msgid "OStatus" +msgstr "" + +#: ../../include/network.php:1942 +msgid "GNU-Social" +msgstr "" + +#: ../../include/network.php:1943 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1946 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1947 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1948 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:1949 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1950 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1951 +msgid "MySpace" +msgstr "" + +#: ../../include/oembed.php:153 +msgid "View PDF" +msgstr "" + +#: ../../include/oembed.php:358 +msgid " by " +msgstr "" + +#: ../../include/oembed.php:359 +msgid " on " +msgstr "" + +#: ../../include/oembed.php:388 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:397 +msgid "Embedding disabled" +msgstr "" + +#: ../../include/photos.php:156 #, php-format -msgid "File exceeds size limit of %d" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/attach.php:422 +#: ../../include/photos.php:167 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:339 +msgid "Photo storage failed." +msgstr "" + +#: ../../include/photos.php:394 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:398 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/photos.php:695 ../../include/conversation.php:1915 +#: ../../include/nav.php:419 +msgid "Photo Albums" msgstr "" -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/photos.php:700 +msgid "Upload New Photos" msgstr "" -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." +#: ../../include/auth.php:196 +msgid "Delegation session ended." msgstr "" -#: ../../include/attach.php:623 -msgid "Empty pathname" +#: ../../include/auth.php:200 +msgid "Logged out." msgstr "" -#: ../../include/attach.php:639 -msgid "duplicate filename or path" +#: ../../include/auth.php:296 +msgid "Email validation is incomplete. Please check your email." msgstr "" -#: ../../include/attach.php:663 -msgid "Path not found." +#: ../../include/auth.php:312 +msgid "Failed authentication" msgstr "" -#: ../../include/attach.php:714 -msgid "mkdir failed." +#: ../../include/auth.php:322 +msgid "Login failed." msgstr "" -#: ../../include/attach.php:718 -msgid "database storage failed." +#: ../../include/account.php:37 +msgid "Not a valid email address" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../include/account.php:39 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../include/account.php:45 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../include/account.php:77 +msgid "An invitation is required." msgstr "" -#: ../../include/channel.php:186 -msgid "No account identifier" +#: ../../include/account.php:81 +msgid "Invitation could not be verified." msgstr "" -#: ../../include/channel.php:198 -msgid "Nickname is required." +#: ../../include/account.php:158 +msgid "Please enter the required information." msgstr "" -#: ../../include/channel.php:212 -msgid "Reserved nickname. Please choose another." +#: ../../include/account.php:224 +msgid "Failed to store account information." msgstr "" -#: ../../include/channel.php:217 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:292 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:350 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:759 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/channel.php:806 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/webpages.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 -#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/editblock.php:29 ../../mod/filestorage.php:54 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "" - -#: ../../include/channel.php:969 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "" - -#: ../../include/channel.php:975 -msgid "Profiles" -msgstr "" - -#: ../../include/channel.php:975 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../include/channel.php:976 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:991 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "" - -#: ../../include/channel.php:994 -msgid "visible to everybody" -msgstr "" - -#: ../../include/channel.php:995 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "" - -#: ../../include/channel.php:1011 ../../include/channel.php:1250 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1012 ../../include/channel.php:1294 -msgid "Status:" -msgstr "" - -#: ../../include/channel.php:1013 ../../include/channel.php:1305 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1014 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1097 ../../include/channel.php:1175 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "" - -#: ../../include/channel.php:1098 ../../include/channel.php:1176 -msgid "F d" -msgstr "" - -#: ../../include/channel.php:1143 ../../include/channel.php:1215 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "" - -#: ../../include/channel.php:1154 -msgid "Birthday Reminders" -msgstr "" - -#: ../../include/channel.php:1155 -msgid "Birthdays this week:" -msgstr "" - -#: ../../include/channel.php:1208 -msgid "[No description]" -msgstr "" - -#: ../../include/channel.php:1226 -msgid "Event Reminders" -msgstr "" - -#: ../../include/channel.php:1227 -msgid "Events this week:" -msgstr "" - -#: ../../include/channel.php:1240 ../../include/channel.php:1357 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "" - -#: ../../include/channel.php:1248 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "" - -#: ../../include/channel.php:1255 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1279 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1280 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1287 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1291 ../../mod/directory.php:297 -msgid "Age:" -msgstr "" - -#: ../../include/channel.php:1300 +#: ../../include/account.php:313 #, php-format -msgid "for %1$d %2$s" +msgid "Registration confirmation for %s" msgstr "" -#: ../../include/channel.php:1303 ../../mod/profiles.php:691 -msgid "Sexual Preference:" +#: ../../include/account.php:384 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../include/channel.php:1307 ../../mod/directory.php:313 -#: ../../mod/profiles.php:693 -msgid "Hometown:" +#: ../../include/account.php:406 +msgid "your registration password" msgstr "" -#: ../../include/channel.php:1309 -msgid "Tags:" +#: ../../include/account.php:412 ../../include/account.php:474 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../include/channel.php:1311 ../../mod/profiles.php:694 -msgid "Political Views:" +#: ../../include/account.php:485 +msgid "Account approved." msgstr "" -#: ../../include/channel.php:1313 -msgid "Religion:" +#: ../../include/account.php:525 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../include/channel.php:1315 ../../mod/directory.php:315 -msgid "About:" +#: ../../include/account.php:804 ../../include/account.php:806 +msgid "Click here to upgrade." msgstr "" -#: ../../include/channel.php:1317 -msgid "Hobbies/Interests:" +#: ../../include/account.php:812 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/channel.php:1319 ../../mod/profiles.php:697 -msgid "Likes:" +#: ../../include/account.php:817 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/channel.php:1321 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1323 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1325 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1327 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1329 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1331 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1333 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1335 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/channel.php:1337 -msgid "Work/employment:" -msgstr "" - -#: ../../include/channel.php:1339 -msgid "School/education:" -msgstr "" - -#: ../../include/channel.php:1359 -msgid "Like this thing" -msgstr "" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 +#: ../../include/bbcode.php:226 ../../include/bbcode.php:1378 +#: ../../include/bbcode.php:1381 ../../include/bbcode.php:1386 +#: ../../include/bbcode.php:1389 ../../include/bbcode.php:1392 +#: ../../include/bbcode.php:1395 ../../include/bbcode.php:1400 +#: ../../include/bbcode.php:1403 ../../include/bbcode.php:1408 +#: ../../include/bbcode.php:1411 ../../include/bbcode.php:1414 +#: ../../include/bbcode.php:1417 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +#: ../../include/bbcode.php:265 ../../include/bbcode.php:1428 msgid "Encrypted content" msgstr "" -#: ../../include/bbcode.php:178 +#: ../../include/bbcode.php:281 #, php-format -msgid "Install %s element: " +msgid "Install %1$s element %2$s" msgstr "" -#: ../../include/bbcode.php:182 +#: ../../include/bbcode.php:285 #, php-format msgid "" "This post contains an installable %s element, however you lack permissions " "to install it on this site." msgstr "" -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 -msgid "webpage" +#: ../../include/bbcode.php:510 +msgid "card" msgstr "" -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" +#: ../../include/bbcode.php:512 +msgid "article" msgstr "" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" +#: ../../include/bbcode.php:595 ../../include/bbcode.php:603 +msgid "Click to open/close" msgstr "" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" +#: ../../include/bbcode.php:603 +msgid "spoiler" msgstr "" -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "" - -#: ../../include/bbcode.php:266 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "" - -#: ../../include/bbcode.php:518 +#: ../../include/bbcode.php:905 ../../include/bbcode.php:1084 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:596 msgid "Different viewers will see this text differently" msgstr "" -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:756 +#: ../../include/bbcode.php:1366 msgid "$1 wrote:" msgstr "" -#: ../../include/chat.php:23 -msgid "Missing room name" +#: ../../include/features.php:56 +msgid "General Features" msgstr "" -#: ../../include/chat.php:32 -msgid "Duplicate room name" +#: ../../include/features.php:61 +msgid "Display new member quick links menu" msgstr "" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." +#: ../../include/features.php:69 +msgid "Advanced Profiles" msgstr "" -#: ../../include/chat.php:120 -msgid "Room not found." +#: ../../include/features.php:70 +msgid "Additional profile sections and selections" msgstr "" -#: ../../include/chat.php:141 -msgid "Room is full" +#: ../../include/features.php:116 +msgid "Private Notes" msgstr "" -#: ../../include/photos.php:94 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/features.php:117 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "" -#: ../../include/photos.php:101 -msgid "Image file is empty." +#: ../../include/features.php:137 +msgid "Create interactive articles" msgstr "" -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" +#: ../../include/features.php:154 +msgid "Photo Location" msgstr "" -#: ../../include/photos.php:199 -msgid "Photo storage failed." +#: ../../include/features.php:155 +msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/photos.php:363 -msgid "Upload New Photos" +#: ../../include/features.php:183 +msgid "Event Timezone Selection" msgstr "" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" +#: ../../include/features.php:184 +msgid "Allow event creation in timezones other than your own." msgstr "" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../include/features.php:202 +msgid "Advanced Directory Search" msgstr "" -#: ../../mod/manage.php:144 -msgid "Create a new channel" +#: ../../include/features.php:203 +msgid "Allows creation of complex directory search queries" msgstr "" -#: ../../mod/manage.php:167 -msgid "Current Channel" +#: ../../include/features.php:211 +msgid "Advanced Theme and Layout Settings" msgstr "" -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." +#: ../../include/features.php:212 +msgid "Allows fine tuning of themes and page layouts" msgstr "" -#: ../../mod/manage.php:170 -msgid "Default Channel" +#: ../../include/features.php:221 +msgid "Access Control and Permissions" msgstr "" -#: ../../mod/manage.php:171 -msgid "Make Default" +#: ../../include/features.php:225 +msgid "Privacy Groups" msgstr "" -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" +#: ../../include/features.php:226 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" +#: ../../include/features.php:262 +msgid "OAuth2 Clients" msgstr "" -#: ../../mod/manage.php:177 -msgid "Delegated Channels" +#: ../../include/features.php:263 +msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." msgstr "" -#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 -#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 -#: ../../mod/display.php:13 -msgid "Public access denied." +#: ../../include/features.php:283 +msgid "Post Composition Features" msgstr "" -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/directory.php:245 -msgid "Gender: " +#: ../../include/features.php:359 +msgid "Auto-save drafts of posts and comments" msgstr "" -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "" - -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "" - -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "" - -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "" - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "" - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "" - -#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 -msgid "Not found." -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 +#: ../../include/features.php:360 msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" msgstr "" -#: ../../mod/webpages.php:191 -msgid "Page Title" +#: ../../include/features.php:371 +msgid "Network and Stream Filtering" msgstr "" -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../include/features.php:461 +msgid "Post/Comment Tools" msgstr "" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" +#: ../../include/features.php:465 +msgid "Community Tagging" msgstr "" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" +#: ../../include/features.php:466 +msgid "Ability to tag existing posts" msgstr "" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " +#: ../../include/features.php:474 +msgid "Post Categories" msgstr "" -#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 -msgid "Remove" +#: ../../include/features.php:475 +msgid "Add categories to your posts" msgstr "" -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" +#: ../../include/features.php:483 +msgid "Emoji Reactions" msgstr "" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" +#: ../../include/features.php:484 +msgid "Add emoji reaction ability to posts" msgstr "" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" +#: ../../include/features.php:493 +msgid "Ability to file posts under folders" msgstr "" -#: ../../mod/connect.php:88 +#: ../../include/features.php:501 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:502 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:519 +msgid "Tag Cloud" +msgstr "" + +#: ../../include/features.php:520 +msgid "Provide a personal tag cloud on your channel page" +msgstr "" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "" + +#: ../../include/acl_selectors.php:115 msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "" + +#: ../../include/acl_selectors.php:150 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +"Post permissions cannot be changed after a post is shared.
These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../include/import.php:28 +msgid "Unable to import a removed channel." msgstr "" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." -msgstr "" - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "" - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "" - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "" - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "" - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "" - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/block.php:27 ../../mod/page.php:36 -msgid "Invalid item." -msgstr "" - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 -msgid "Channel not found." -msgstr "" - -#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 -#: ../../mod/page.php:89 ../../index.php:241 -msgid "Page not found." -msgstr "" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "" - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "" - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "" - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "" - -#: ../../mod/like.php:401 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:403 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:405 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "" - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "" - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "" - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "" - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "" - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "" - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:505 ../../mod/photos.php:839 -msgid "Previous" -msgstr "" - -#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 -msgid "Next" -msgstr "" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:680 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All " -"sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or " -"provide tiered service plans. The provider links may " -"provide additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "" - -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "" - -#: ../../mod/pubsites.php:26 -msgid "Project" -msgstr "" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "" - -#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 -msgid "Edit post" -msgstr "" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "" - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "" - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "" - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:66 -msgid "$Projectname" -msgstr "" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "" - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more " -"about $Projectname." -msgstr "" - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com" -msgstr "" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "" - -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "" - -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:76 -#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 -msgid "Item not found" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "" - -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 -msgid "Insert YouTube video" -msgstr "" - -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 -#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 -msgid "Insert Vorbis [.ogg] video" -msgstr "" - -#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 -#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 -msgid "Insert Vorbis [.ogg] audio" -msgstr "" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "" - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "" - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "" - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "" - -#: ../../mod/import.php:115 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../mod/import.php:135 +#: ../../include/import.php:54 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." +#: ../../include/import.php:75 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../mod/import.php:186 +#: ../../include/import.php:121 msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." +#: ../../include/zid.php:357 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "" - -#: ../../mod/import.php:580 +#: ../../include/security.php:576 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." +"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 "" -#: ../../mod/import.php:581 -msgid "File to Upload" +#: ../../include/items.php:958 ../../include/items.php:1018 +msgid "(Unknown)" msgstr "" -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" +#: ../../include/items.php:1200 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" +#: ../../include/items.php:1202 +msgid "Visible to you only." msgstr "" -#: ../../mod/import.php:584 -msgid "Your old login email address" +#: ../../include/items.php:1204 +msgid "Visible to anybody in this network." msgstr "" -#: ../../mod/import.php:585 -msgid "Your old login password" +#: ../../include/items.php:1206 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../mod/import.php:586 -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 "" - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../mod/import.php:588 -msgid "" -"Import existing posts if possible (experimental - limited by available memory" -msgstr "" - -#: ../../mod/import.php:589 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "" - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "" - -#: ../../mod/chat.php:225 +#: ../../include/items.php:1208 #, php-format -msgid "%1$s's Chatrooms" +msgid "Visible to anybody on %s." msgstr "" -#: ../../mod/mitem.php:24 ../../mod/menu.php:138 -msgid "Menu not found." +#: ../../include/items.php:1210 +msgid "Visible to all connections." msgstr "" -#: ../../mod/mitem.php:48 -msgid "Unable to create element." +#: ../../include/items.php:1212 +msgid "Visible to approved connections." msgstr "" -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." +#: ../../include/items.php:1214 +msgid "Visible to specific connections." msgstr "" -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." +#: ../../include/items.php:3979 +msgid "Privacy group not found." msgstr "" -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" +#: ../../include/items.php:3995 +msgid "Privacy group is empty." msgstr "" -#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 -msgid "(click to open/close)" -msgstr "" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../mod/mitem.php:158 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "" - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "" - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 +#: ../../include/items.php:4002 #, php-format -msgid "Site Member (%s)" +msgid "Privacy group: %s" msgstr "" -#: ../../mod/lostpass.php:40 +#: ../../include/items.php:4014 +msgid "Connection not found." +msgstr "" + +#: ../../include/items.php:4359 +msgid "profile photo" +msgstr "" + +#: ../../include/items.php:4555 #, php-format -msgid "Password reset requested at %s" +msgid "[Edited %s]" msgstr "" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../include/items.php:4555 +msgctxt "edit_activity" +msgid "Post" msgstr "" -#: ../../mod/lostpass.php:86 ../../boot.php:1558 -msgid "Password Reset" +#: ../../include/items.php:4555 +msgctxt "edit_activity" +msgid "Comment" msgstr "" -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." +#: ../../include/attach.php:268 ../../include/attach.php:377 +msgid "Item was not found." msgstr "" -#: ../../mod/lostpass.php:88 -msgid "Your new password is" +#: ../../include/attach.php:285 +msgid "Unknown error." msgstr "" -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" +#: ../../include/attach.php:566 +msgid "No source file." msgstr "" -#: ../../mod/lostpass.php:90 -msgid "click here to login" +#: ../../include/attach.php:588 +msgid "Cannot locate file to replace" msgstr "" -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../include/attach.php:607 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../mod/lostpass.php:108 +#: ../../include/attach.php:749 #, php-format -msgid "Your password has changed at %s" +msgid "File exceeds size limit of %d" msgstr "" -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "" - -#: ../../mod/rate.php:160 +#: ../../include/attach.php:770 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" +#: ../../include/attach.php:952 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" +#: ../../include/attach.php:981 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../mod/editblock.php:117 -msgid "Delete block?" +#: ../../include/attach.php:1055 ../../include/attach.php:1071 +msgid "Path not available." msgstr "" -#: ../../mod/editblock.php:179 -msgid "Edit Block" +#: ../../include/attach.php:1120 ../../include/attach.php:1285 +msgid "Empty pathname" msgstr "" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." +#: ../../include/attach.php:1146 +msgid "duplicate filename or path" msgstr "" -#: ../../mod/invite.php:49 +#: ../../include/attach.php:1171 +msgid "Path not found." +msgstr "" + +#: ../../include/attach.php:1239 +msgid "mkdir failed." +msgstr "" + +#: ../../include/attach.php:1243 +msgid "database storage failed." +msgstr "" + +#: ../../include/attach.php:1291 +msgid "Empty path" +msgstr "" + +#: ../../include/channel.php:44 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:77 +msgid "Empty name" +msgstr "" + +#: ../../include/channel.php:80 +msgid "Name too long" +msgstr "" + +#: ../../include/channel.php:196 +msgid "No account identifier" +msgstr "" + +#: ../../include/channel.php:208 +msgid "Nickname is required." +msgstr "" + +#: ../../include/channel.php:290 +msgid "Unable to retrieve created identity" +msgstr "" + +#: ../../include/channel.php:388 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:585 ../../include/channel.php:674 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/conversation.php:168 #, php-format -msgid "%s : Not a valid email address." +msgid "likes %1$s's %2$s" msgstr "" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:92 +#: ../../include/conversation.php:171 #, php-format -msgid "%s : Message delivery failed." +msgid "doesn't like %1$s's %2$s" msgstr "" -#: ../../mod/invite.php:96 +#: ../../include/conversation.php:211 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." +msgid "%1$s is now connected with %2$s" +msgstr "" + +#: ../../include/conversation.php:246 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:250 ../../include/text.php:1144 +#: ../../include/text.php:1148 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:726 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../include/conversation.php:747 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:748 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:774 +msgid "View in context" +msgstr "" + +#: ../../include/conversation.php:876 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:880 +msgid "Loading..." +msgstr "" + +#: ../../include/conversation.php:881 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:924 +msgid "View Source" +msgstr "" + +#: ../../include/conversation.php:934 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:943 +msgid "Unfollow Thread" +msgstr "" + +#: ../../include/conversation.php:1016 +msgid "Visit" +msgstr "" + +#: ../../include/conversation.php:1046 +msgid "Edit Connection" +msgstr "" + +#: ../../include/conversation.php:1056 +msgid "Message" +msgstr "" + +#: ../../include/conversation.php:1163 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:1163 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:1167 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "" -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "" - -#: ../../mod/invite.php:135 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "" - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "" - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "" - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "" - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "" - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "" - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "" - -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "" - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "" - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "" - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 +#: ../../include/conversation.php:1169 #, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "" - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:447 ../../mod/admin.php:994 -msgid "Address" -msgstr "" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "" - -#: ../../mod/profiles.php:728 -msgid "Age: " -msgstr "" - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "" - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "" - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "" - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "" - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "" - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "" - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" - -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "" - -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "" - -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "" - -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "" - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "" - -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:536 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "" - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:548 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../mod/setup.php:566 -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 "" - -#: ../../mod/setup.php:567 -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 "" - -#: ../../mod/setup.php:568 -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 "" - -#: ../../mod/setup.php:569 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/setup.php:587 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "" - -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../mod/setup.php:589 -#, 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 "" - -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" -msgstr "" - -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to " -"have write access to the store directory under the Red top level folder" -msgstr "" - -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "" - -#: ../../mod/setup.php:645 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../mod/setup.php:646 -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 "" - -#: ../../mod/setup.php:647 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../mod/setup.php:648 -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 "" - -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "" - -#: ../../mod/setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/setup.php:670 -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 "" - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "" - -#: ../../mod/viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:691 +#: ../../include/conversation.php:1175 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:1178 #, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" +msgid ", and %d other people" +msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "" - -#: ../../mod/admin.php:739 +#: ../../include/conversation.php:1179 #, php-format -msgid "Account '%s' deleted" +msgid "%s like this." msgstr "" -#: ../../mod/admin.php:747 +#: ../../include/conversation.php:1179 #, php-format -msgid "Account '%s' blocked" +msgid "%s don't like this." msgstr "" -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" +#: ../../include/conversation.php:1236 +msgid "Set your location" msgstr "" -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" +#: ../../include/conversation.php:1237 +msgid "Clear browser location" msgstr "" -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" +#: ../../include/conversation.php:1255 +msgid "Embed (existing) photo from your photo albums" msgstr "" -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" +#: ../../include/conversation.php:1295 +msgid "Tag term:" msgstr "" -#: ../../mod/admin.php:822 -msgid "Request date" +#: ../../include/conversation.php:1296 +msgid "Where are you right now?" msgstr "" -#: ../../mod/admin.php:823 -msgid "No registrations." +#: ../../include/conversation.php:1301 +msgid "Choose a different album..." msgstr "" -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" +#: ../../include/conversation.php:1305 +msgid "Comments enabled" msgstr "" -#: ../../mod/admin.php:825 -msgid "Deny" +#: ../../include/conversation.php:1306 +msgid "Comments disabled" msgstr "" -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" +#: ../../include/conversation.php:1366 +msgid "Page link name" msgstr "" -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" +#: ../../include/conversation.php:1369 +msgid "Post as" msgstr "" -#: ../../mod/admin.php:831 -msgid "Register date" +#: ../../include/conversation.php:1378 +msgid "Please enter a link location (URL)" msgstr "" -#: ../../mod/admin.php:831 -msgid "Last login" +#: ../../include/conversation.php:1379 +msgid "Insert link only" msgstr "" -#: ../../mod/admin.php:831 -msgid "Expires" +#: ../../include/conversation.php:1379 +msgid "Embed content if possible" msgstr "" -#: ../../mod/admin.php:831 -msgid "Service Class" +#: ../../include/conversation.php:1381 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:393 +msgid "Embed an image from your albums" msgstr "" -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/conversation.php:1385 +msgid "Toggle voting" msgstr "" -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/conversation.php:1388 +msgid "Disable comments" msgstr "" -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" +#: ../../include/conversation.php:1389 +msgid "Toggle comments" +msgstr "" + +#: ../../include/conversation.php:1397 +msgid "Categories (optional, comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1421 +msgid "Other networks and post services" +msgstr "" + +#: ../../include/conversation.php:1425 +msgid "Set expiration date" +msgstr "" + +#: ../../include/conversation.php:1428 +msgid "Set publish date" +msgstr "" + +#: ../../include/conversation.php:1443 +msgid "Find remote media players (oEmbed)" +msgstr "" + +#: ../../include/conversation.php:1444 +msgid "Find shareable objects (Zot)" +msgstr "" + +#: ../../include/conversation.php:1469 +msgid "Post to Collections" +msgstr "" + +#: ../../include/conversation.php:1771 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1774 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1778 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1781 +msgid "Sort by Post Date" +msgstr "" + +#: ../../include/conversation.php:1789 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../include/conversation.php:1798 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../include/conversation.php:1804 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1807 +msgid "Favourite Posts" +msgstr "" + +#: ../../include/conversation.php:1814 +msgid "Spam" +msgstr "" + +#: ../../include/conversation.php:1817 +msgid "Posts flagged as SPAM" +msgstr "" + +#: ../../include/conversation.php:1892 ../../include/nav.php:396 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../include/conversation.php:1905 ../../include/nav.php:409 +msgid "Profile Details" +msgstr "" + +#: ../../include/conversation.php:1923 ../../include/nav.php:427 +msgid "Files and Storage" +msgstr "" + +#: ../../include/conversation.php:1960 ../../include/nav.php:462 +msgid "Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1963 ../../include/nav.php:465 +msgid "Saved Bookmarks" +msgstr "" + +#: ../../include/conversation.php:1974 ../../include/nav.php:476 +msgid "View Cards" +msgstr "" + +#: ../../include/conversation.php:1982 +msgid "articles" +msgstr "" + +#: ../../include/conversation.php:1985 ../../include/nav.php:487 +msgid "View Articles" +msgstr "" + +#: ../../include/conversation.php:1996 ../../include/nav.php:499 +msgid "View Webpages" +msgstr "" + +#: ../../include/conversation.php:2006 ../../include/nav.php:508 +#: ../../extend/addon/a/wiki/Wiki_list.php:18 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:207 +msgid "Wikis" +msgstr "" + +#: ../../include/conversation.php:2065 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" +#: ../../include/conversation.php:2068 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" +#: ../../include/conversation.php:2071 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:906 -msgid "Channel not found" +#: ../../include/conversation.php:2074 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2077 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/conversation.php:2080 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/message.php:14 ../../include/text.php:1727 +msgid "Download binary/encrypted content" msgstr "" -#: ../../mod/admin.php:917 +#: ../../include/message.php:33 +msgid "Unable to determine sender." +msgstr "" + +#: ../../include/message.php:72 +msgid "No recipient provided." +msgstr "" + +#: ../../include/message.php:77 +msgid "[no subject]" +msgstr "" + +#: ../../include/message.php:207 +msgid "Stored post could not be verified." +msgstr "" + +#: ../../include/nav.php:81 +msgid "Remote authentication" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Click to authenticate to your home hub" +msgstr "" + +#: ../../include/nav.php:87 +msgid "Manage your channels" +msgstr "" + +#: ../../include/nav.php:90 +msgid "Manage your access lists" +msgstr "" + +#: ../../include/nav.php:92 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:98 ../../include/nav.php:127 ../../include/nav.php:146 +#: ../../boot.php:1624 +msgid "Logout" +msgstr "" + +#: ../../include/nav.php:98 ../../include/nav.php:127 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:101 +msgid "Your profile page" +msgstr "" + +#: ../../include/nav.php:104 +msgid "Manage/Edit profiles" +msgstr "" + +#: ../../include/nav.php:113 ../../include/nav.php:117 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:144 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:146 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:178 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:184 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:297 +msgid "Powered by $Projectname" +msgstr "" + +#: ../../include/nav.php:308 +msgid "@name, !forum, #tag, content" +msgstr "" + +#: ../../include/nav.php:309 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:315 +msgid "Add/Manage Apps" +msgstr "" + +#: ../../include/nav.php:316 +msgid "Arrange Apps" +msgstr "" + +#: ../../include/nav.php:317 +msgid "Toggle System Apps" +msgstr "" + +#: ../../include/text.php:489 +msgid "prev" +msgstr "" + +#: ../../include/text.php:491 +msgid "first" +msgstr "" + +#: ../../include/text.php:520 +msgid "last" +msgstr "" + +#: ../../include/text.php:523 +msgid "next" +msgstr "" + +#: ../../include/text.php:534 +msgid "older" +msgstr "" + +#: ../../include/text.php:536 +msgid "newer" +msgstr "" + +#: ../../include/text.php:967 +msgid "No connections" +msgstr "" + +#: ../../include/text.php:999 #, php-format -msgid "Channel '%s' deleted" +msgid "View all %s connections" msgstr "" -#: ../../mod/admin.php:929 +#: ../../include/text.php:1055 #, php-format -msgid "Channel '%s' censored" +msgid "Network: %s" msgstr "" -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" +#: ../../include/text.php:1144 ../../include/text.php:1148 +msgid "poke" msgstr "" -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" +#: ../../include/text.php:1149 +msgid "ping" msgstr "" -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" +#: ../../include/text.php:1149 +msgid "pinged" msgstr "" -#: ../../mod/admin.php:989 -msgid "Censor" +#: ../../include/text.php:1150 +msgid "prod" msgstr "" -#: ../../mod/admin.php:990 -msgid "Uncensor" +#: ../../include/text.php:1150 +msgid "prodded" msgstr "" -#: ../../mod/admin.php:991 -msgid "Allow Code" +#: ../../include/text.php:1151 +msgid "slap" msgstr "" -#: ../../mod/admin.php:992 -msgid "Disallow Code" +#: ../../include/text.php:1151 +msgid "slapped" msgstr "" -#: ../../mod/admin.php:994 -msgid "UID" +#: ../../include/text.php:1152 +msgid "finger" msgstr "" -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/text.php:1152 +msgid "fingered" msgstr "" -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" +#: ../../include/text.php:1153 +msgid "rebuff" msgstr "" -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." +#: ../../include/text.php:1153 +msgid "rebuffed" msgstr "" -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." +#: ../../include/text.php:1176 +msgid "happy" msgstr "" -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" +#: ../../include/text.php:1177 +msgid "sad" msgstr "" -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" +#: ../../include/text.php:1178 +msgid "mellow" msgstr "" -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" +#: ../../include/text.php:1179 +msgid "tired" msgstr "" -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " +#: ../../include/text.php:1180 +msgid "perky" msgstr "" -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " +#: ../../include/text.php:1181 +msgid "angry" msgstr "" -#: ../../mod/admin.php:1214 -msgid "No themes found." +#: ../../include/text.php:1182 +msgid "stupefied" msgstr "" -#: ../../mod/admin.php:1270 -msgid "Screenshot" +#: ../../include/text.php:1183 +msgid "puzzled" msgstr "" -#: ../../mod/admin.php:1316 -msgid "[Experimental]" +#: ../../include/text.php:1184 +msgid "interested" msgstr "" -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" +#: ../../include/text.php:1185 +msgid "bitter" msgstr "" -#: ../../mod/admin.php:1341 -msgid "Log settings updated." +#: ../../include/text.php:1186 +msgid "cheerful" msgstr "" -#: ../../mod/admin.php:1398 -msgid "Clear" +#: ../../include/text.php:1187 +msgid "alive" msgstr "" -#: ../../mod/admin.php:1404 -msgid "Debugging" +#: ../../include/text.php:1188 +msgid "annoyed" msgstr "" -#: ../../mod/admin.php:1405 -msgid "Log file" +#: ../../include/text.php:1189 +msgid "anxious" msgstr "" -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." +#: ../../include/text.php:1190 +msgid "cranky" msgstr "" -#: ../../mod/admin.php:1406 -msgid "Log level" +#: ../../include/text.php:1191 +msgid "disturbed" msgstr "" -#: ../../mod/admin.php:1452 -msgid "New Profile Field" +#: ../../include/text.php:1192 +msgid "frustrated" msgstr "" -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" +#: ../../include/text.php:1193 +msgid "depressed" msgstr "" -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" +#: ../../include/text.php:1194 +msgid "motivated" msgstr "" -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" +#: ../../include/text.php:1195 +msgid "relaxed" msgstr "" -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" +#: ../../include/text.php:1196 +msgid "surprised" msgstr "" -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" +#: ../../include/text.php:1379 +msgid "May" msgstr "" -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" +#: ../../include/text.php:1453 +msgid "Unknown Attachment" msgstr "" -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" +#: ../../include/text.php:1491 +msgid "remove category" msgstr "" -#: ../../mod/admin.php:1466 -msgid "Field definition not found" +#: ../../include/text.php:1565 +msgid "remove from file" msgstr "" -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" +#: ../../include/text.php:1657 +msgid "Added to your calendar" msgstr "" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." +#: ../../include/text.php:1898 +msgid "Page layout" msgstr "" -#: ../../mod/oexchange.php:37 -msgid "Post successful." +#: ../../include/text.php:1898 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../include/text.php:1908 ../../extend/addon/a/wiki/Wiki_pages.php:37 +#: ../../extend/addon/a/wiki/Wiki_pages.php:94 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:218 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:363 +msgid "BBcode" msgstr "" -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +#: ../../include/text.php:1909 +msgid "HTML" msgstr "" -#: ../../mod/register.php:84 -msgid "Passwords do not match." +#: ../../include/text.php:1910 ../../extend/addon/a/wiki/Wiki_pages.php:37 +#: ../../extend/addon/a/wiki/Wiki_pages.php:94 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:218 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:363 +msgid "Markdown" msgstr "" -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../include/text.php:1911 ../../extend/addon/a/wiki/Wiki_pages.php:37 +#: ../../extend/addon/a/wiki/Wiki_pages.php:94 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:218 +msgid "Text" msgstr "" -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." +#: ../../include/text.php:1912 +msgid "Comanche Layout" msgstr "" -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." +#: ../../include/text.php:1917 +msgid "PHP" msgstr "" -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." +#: ../../include/text.php:1926 +msgid "Page content type" msgstr "" -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" +#: ../../include/text.php:2059 +msgid "activity" msgstr "" -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../include/text.php:2144 +msgid "a-z, 0-9, -, and _ only" msgstr "" -#: ../../mod/register.php:185 -msgid "Terms of Service" +#: ../../include/text.php:2464 +msgid "Design Tools" msgstr "" -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" +#: ../../include/text.php:2470 +msgid "Pages" msgstr "" -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../include/text.php:2492 +msgid "Import website..." msgstr "" -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." +#: ../../include/text.php:2493 +msgid "Select folder to import" msgstr "" -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" +#: ../../include/text.php:2494 +msgid "Import from a zipped folder:" msgstr "" -#: ../../mod/register.php:216 -msgid "Your email address" +#: ../../include/text.php:2495 +msgid "Import from cloud files:" msgstr "" -#: ../../mod/register.php:217 -msgid "Choose a password" +#: ../../include/text.php:2496 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../mod/register.php:218 -msgid "Please re-enter your password" +#: ../../include/text.php:2497 +msgid "Enter path to website files" msgstr "" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../include/text.php:2498 +msgid "Select folder" msgstr "" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" +#: ../../include/text.php:2499 +msgid "Export website..." msgstr "" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " +#: ../../include/text.php:2500 +msgid "Export to a zip file" msgstr "" -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../include/text.php:2501 +msgid "website.zip" msgstr "" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" +#: ../../include/text.php:2502 +msgid "Enter a name for the zip file." msgstr "" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" +#: ../../include/text.php:2503 +msgid "Export to cloud files" msgstr "" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../include/text.php:2504 +msgid "/path/to/export/folder" msgstr "" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../include/text.php:2505 +msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" +#: ../../include/text.php:2506 +msgid "Specify folder" msgstr "" -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." msgstr "" -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" msgstr "" -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 ../../mod/update_public.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "" - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "" - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "" - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "" - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "" - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "" - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "" - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "" - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "" - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../mod/settings.php:1072 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../mod/settings.php:1076 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "" - -#: ../../mod/settings.php:1125 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 -msgid "Export Channel" -msgstr "" - -#: ../../mod/uexport.php:52 -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 "" - -#: ../../mod/uexport.php:53 -msgid "Export Content" -msgstr "" - -#: ../../mod/uexport.php:54 -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 "" - -#: ../../mod/uexport.php:55 -msgid "Export your posts from a given year or month:" -msgstr "" - -#: ../../mod/uexport.php:57 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Click on one of the recent years or months below." -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jan" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Feb" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Mar" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Apr" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jun" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jul" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Aug" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Sep" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Oct" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Nov" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Dec" -msgstr "" - -#: ../../mod/uexport.php:60 -msgid "" -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "" - -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"Or adjust the date in your browser location bar to select other dates. For " -"example the year 2013; %1$s/2013 or the month " -"September 2013; %1$s/2013/9" -msgstr "" - -#: ../../mod/uexport.php:62 -msgid "Please visit" -msgstr "" - -#: ../../mod/uexport.php:62 -msgid "on another hub to import the backup files(s)." -msgstr "" - -#: ../../mod/uexport.php:63 -msgid "" -"We advise you to clone the channel on the new hub first and than to import " -"the backup file(s) (from the same channel) in chronological order. Importing " -"the backup files into another channel will certainly give permission issues." -msgstr "" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "" - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "" - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "" - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "" - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "" - -#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "" - -#: ../../mod/connedit.php:550 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "" - -#: ../../mod/connedit.php:680 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "" - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow " -"communication." -msgstr "" - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "" - -#: ../../mod/connedit.php:705 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "" - -#: ../../mod/connedit.php:711 -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 "" - -#: ../../mod/connedit.php:712 -msgid "" -"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." -msgstr "" - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "" - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "" - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "" - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "" - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "" - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used " -"to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "" - -#: ../../mod/new_channel.php:113 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\" " -msgstr "" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "" - -#: ../../mod/new_channel.php:116 -msgid "" -"Or import an existing channel from another location" -msgstr "" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "" - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "" - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "" - -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "" - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "" - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." -msgstr "" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "" - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:97 msgid "Theme settings" msgstr "" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:98 msgid "Narrow navbar" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:99 msgid "Navigation bar background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:100 msgid "Navigation bar icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:101 msgid "Navigation bar active icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Set font-color for banner" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Set the background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Set the background image" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Set the background color of items" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Set the background color of comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Set font-size for the entire application" msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" msgstr "" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Set font-color for posts and comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Set radius of corners" msgstr "" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:111 msgid "Set shadow depth of photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Leave empty for default width" msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Set size of conversation author photo" msgstr "" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1355 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../store/[data]/smarty3/compiled/ac14d8b7b4a606fb8f9b8bf58de15e7cca1afd0c_0.file.cover_photo.tpl.php:127 +msgid "Cover Photo" msgstr "" -#: ../../boot.php:1358 -#, php-format -msgid "Update Error at %s" +#: ../../extend/addon/a/articles/Mod_Article_edit.php:132 +msgid "Edit Article" msgstr "" -#: ../../boot.php:1525 +#: ../../extend/addon/a/articles/Mod_Articles.php:41 msgid "" -"Create an account to access services and applications within the Red Matrix" +"This addon app provides a blog that is separate from your social stream. " +"Visitors may comment but the content remains on this site and is not " +"propagated elsewhere." msgstr "" -#: ../../boot.php:1553 +#: ../../extend/addon/a/articles/Mod_Articles.php:105 +msgid "Add Article" +msgstr "" + +#: ../../extend/addon/a/articles/articles.php:37 +msgid "Can view my articles" +msgstr "" + +#: ../../extend/addon/a/articles/articles.php:38 +msgid "Can write to my articles" +msgstr "" + +#: ../../extend/addon/a/ldapauth/ldapauth.php:70 +msgid "An account has been created for you." +msgstr "" + +#: ../../extend/addon/a/ldapauth/ldapauth.php:77 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:37 +msgid "Logfile archive directory" +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:37 +msgid "Directory to store rotated logs" +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:38 +msgid "Logfile size in bytes before rotating, example 10M" +msgstr "" + +#: ../../extend/addon/a/logrot/logrot.php:39 +msgid "Number of logfiles to retain" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:20 +msgid "NSFW Settings saved." +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:30 +msgid "" +"This addon app looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:42 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:42 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:46 +msgid "Collapse entire conversation if a match is found" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 +msgid "Not Safe For Work Settings" +msgstr "" + +#: ../../extend/addon/a/nsfw/Mod_Nsfw.php:50 +msgid "General Purpose Content Filter" +msgstr "" + +#: ../../extend/addon/a/nsfw/nsfw.php:152 +msgid "Conversation muted" +msgstr "" + +#: ../../extend/addon/a/nsfw/nsfw.php:159 +msgid "Possible adult content" +msgstr "" + +#: ../../extend/addon/a/nsfw/nsfw.php:174 +#, php-format +msgid "%s - view" +msgstr "" + +#: ../../extend/addon/a/stream_order/Mod_Stream_Order.php:14 +msgid "" +"This addon app provides a selector on your network stream page allowing you " +"to change the sort order of the page between 'recently commented' (default), " +"'posted order', or 'unthreaded' which displays single activities as received." +msgstr "" + +#: ../../extend/addon/a/superblock/Mod_Superblock.php:66 +#: ../../extend/addon/a/superblock/superblock.php:409 +msgid "superblock settings updated" +msgstr "" + +#: ../../extend/addon/a/superblock/Mod_Superblock.php:78 +msgid "" +"This addon app allows you to block channels from appearing in your stream " +"and basically makes them vanish from your life. You may occasionally " +"encounter them on other websites but otherwise this blocking is extensive. " +"To enable blocking, install this app if it is not already installed, then " +"select the drop-down menu attached to the channel photo in a conversation " +"and select 'Block Completely'" +msgstr "" + +#: ../../extend/addon/a/superblock/Mod_Superblock.php:106 +msgid "Currently blocked" +msgstr "" + +#: ../../extend/addon/a/superblock/Mod_Superblock.php:108 +msgid "No channels currently blocked" +msgstr "" + +#: ../../extend/addon/a/superblock/Mod_Superblock.php:114 +msgid "Superblock Settings" +msgstr "" + +#: ../../extend/addon/a/superblock/superblock.php:361 +msgid "Block Completely" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:40 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:91 +msgid "(No Title)" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:104 +msgid "Wiki page create failed." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:117 +msgid "Wiki not found." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:128 +msgid "Destination name already exists" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:160 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:356 +msgid "Page not found" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:191 +msgid "Error reading page content" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:347 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:397 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:464 +#: ../../extend/addon/a/wiki/NativeWikiPage.php:505 +msgid "Error reading wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:385 +msgid "Page update failed." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:419 +msgid "Nothing deleted" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:485 +msgid "Compare: object not found." +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:491 +msgid "Page updated" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:494 +msgid "Untitled" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:500 +msgid "Wiki resource_id required for git commit" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:556 +#: ../../extend/addon/a/wiki/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:557 +#: ../../extend/addon/a/wiki/Wiki_page_history.php:24 +msgid "Date" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:558 +#: ../../extend/addon/a/wiki/Wiki_page_history.php:25 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:359 +msgid "Revert" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWikiPage.php:559 +#: ../../extend/addon/a/wiki/Wiki_page_history.php:26 +msgid "Compare" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_pages.php:33 +#: ../../extend/addon/a/wiki/Wiki_pages.php:90 +msgid "Add new page" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_pages.php:84 +msgid "Wiki Pages" +msgstr "" + +#: ../../extend/addon/a/wiki/Wiki_pages.php:95 +msgid "Page name" +msgstr "" + +#: ../../extend/addon/a/wiki/wiki.php:44 +msgid "Can view my wiki pages" +msgstr "" + +#: ../../extend/addon/a/wiki/wiki.php:45 +msgid "Can write to my wiki pages" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWiki.php:141 +msgid "Wiki updated successfully" +msgstr "" + +#: ../../extend/addon/a/wiki/NativeWiki.php:195 +msgid "Wiki files deleted successfully" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:38 +msgid "Profile Unavailable." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:51 +msgid "This addon app provides a wiki for your channel." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:79 +msgid "Invalid channel" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:134 +msgid "Error retrieving wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:141 +msgid "Error creating zip file export folder" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:192 +msgid "Error downloading wiki: " +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:213 +msgid "Download" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:217 +msgid "Wiki name" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:218 +msgid "Content type" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:221 +msgid "Any type" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:228 +msgid "Lock content type" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:229 +msgid "Create a status post for this wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:230 +msgid "Edit Wiki Name" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:272 +msgid "Wiki not found" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:296 +msgid "Rename page" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:318 +msgid "Error retrieving page content" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:326 +#: ../../extend/addon/a/wiki/Mod_Wiki.php:328 +msgid "New page" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:358 +msgid "Revision Comparison" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:366 +msgid "Short description of your changes (optional)" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:377 +msgid "Source" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:387 +msgid "New page name" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:392 +msgid "Embed image from photo albums" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:403 +msgid "History" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:481 +msgid "Error creating wiki. Invalid name." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:488 +msgid "A wiki with this name already exists." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:501 +msgid "Wiki created, but error creating Home page." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:508 +msgid "Error creating wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:531 +msgid "Error updating wiki. Invalid name." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:551 +msgid "Error updating wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:566 +msgid "Wiki delete permission denied." +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:576 +msgid "Error deleting wiki" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:609 +msgid "New page created" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:731 +msgid "Cannot delete Home" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:795 +msgid "Current Revision" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:795 +msgid "Selected Revision" +msgstr "" + +#: ../../extend/addon/a/wiki/Mod_Wiki.php:844 +msgid "You must be authenticated." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:21 +msgid "Channel is required." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:34 +msgid "Zotpost Settings saved." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:42 +msgid "" +"This addon app allows you to cross-post to other Zot services and channels. " +"After installing the app, select it to configure the destination settings " +"and preferences." +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:63 +msgid "Zot server URL" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:63 +msgid "https://example.com" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:67 +msgid "Zot channel name" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:67 +msgid "Nickname" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:71 +msgid "Zot password" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:75 +msgid "Send public postings to Zot channel by default" +msgstr "" + +#: ../../extend/addon/a/zotpost/Mod_zotpost.php:79 +msgid "Zotpost Settings" +msgstr "" + +#: ../../extend/addon/a/zotpost/zotpost.php:45 +msgid "Post to Zot" +msgstr "" + +#: ../../extend/addon/a/rainbowtag/Mod_Rainbowtag.php:15 +msgid "Add some colour to tag clouds" +msgstr "" + +#: ../../extend/addon/a/rainbowtag/Mod_Rainbowtag.php:34 +msgid "Rainbow Tag" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:27 +msgid "No server specified" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:73 +msgid "Posts imported" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:113 +msgid "Files imported" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:122 +msgid "" +"This addon app copies existing content and file storage to a cloned/copied " +"channel. Once the app is installed, visit the newly installed app. This will " +"allow you to set the location of your original channel and an optional date " +"range of files/conversations to copy." +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:136 +msgid "" +"This will import all your conversations and cloud files from a cloned " +"channel on another server. This may take a while if you have lots of posts " +"and or files." +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +msgid "Include posts" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:137 +msgid "Conversations, Articles, Cards, and other posted content" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +msgid "Include files" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:138 +msgid "Files, Photos and other cloud storage" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:139 +msgid "Original Server base URL" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:140 +msgid "Since modified date yyyy-mm-dd" +msgstr "" + +#: ../../extend/addon/a/content_import/Mod_content_import.php:141 +msgid "Until modified date yyyy-mm-dd" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:170 +msgid "Tile Server URL" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:171 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:171 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:172 +msgid "Default zoom" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:172 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:173 +msgid "Include marker on map" +msgstr "" + +#: ../../extend/addon/a/openstreetmap/openstreetmap.php:173 +msgid "Include a marker on the map." +msgstr "" + +#: ../../boot.php:1604 +msgid "Create an account to access services and applications" +msgstr "" + +#: ../../boot.php:1628 +msgid "Login/Email" +msgstr "" + +#: ../../boot.php:1629 msgid "Password" msgstr "" -#: ../../boot.php:1554 +#: ../../boot.php:1630 msgid "Remember me" msgstr "" -#: ../../boot.php:1557 +#: ../../boot.php:1633 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2177 -msgid "toggle mobile" +#: ../../boot.php:2416 +#, php-format +msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../boot.php:2312 +#: ../../boot.php:2421 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2315 +#: ../../boot.php:2465 #, php-format -msgid "[red] Website SSL error for %s" +msgid "[$Projectname] Cron tasks not running on %s" msgstr "" -#: ../../boot.php:2352 +#: ../../boot.php:2470 msgid "Cron/Scheduled tasks not running." msgstr "" - -#: ../../boot.php:2356 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "" diff --git a/util/php2po.php b/util/php2po.php index ca33f8b01..46e7f9069 100644 --- a/util/php2po.php +++ b/util/php2po.php @@ -8,12 +8,12 @@ } if ($argc!=2) { - print "Usage: ".$argv[0]." \n\n"; + print "Usage: ".$argv[0]." \n\n"; return; } $phpfile = $argv[1]; - $pofile = dirname($phpfile)."/hmessages.po"; + $pofile = dirname($phpfile)."/messages.po"; if (!file_exists($phpfile)){ print "Unable to find '$phpfile'\n"; diff --git a/util/po2php.php b/util/po2php.php index 50941c062..d1121b720 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -10,7 +10,7 @@ function po2php_run($argc,$argv) { $rtl = false; $pofile = $argv[1]; - $outfile = dirname($pofile)."/hstrings.php"; + $outfile = dirname($pofile)."/strings.php"; if($argc > 2) { if($argv[2] === 'rtl') @@ -82,7 +82,7 @@ function po2php_run($argc,$argv) { } if (!$arr) { $arr=True; - $out .= "array(\n"; + $out .= "[\n"; } $match=Array(); preg_match("|\[([0-9]*)\] (.*)|", $l, $match); @@ -106,7 +106,7 @@ function po2php_run($argc,$argv) { if (substr($l,0,6)=="msgid "){ if ($inv) { $inv = False; $out .= '"'.$v.'"'; } - if ($k!="") $out .= $arr?");\n":";\n"; + if ($k!="") $out .= $arr?"];\n":";\n"; $arr=False; $k = str_replace("msgid ","",$l); $k = trim_message($k); @@ -133,7 +133,7 @@ function po2php_run($argc,$argv) { } if ($inv) { $inv = False; $out .= '"'.$v.'"'; } - if ($k!="") $out .= $arr?");\n":";\n"; + if ($k!="") $out .= $arr?"];\n":";\n"; file_put_contents($outfile, $out); diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 0662faede..fed682184 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -22,12 +22,12 @@ if [ $ADDONMODE ] then cd "$FULLPATH/../addon/$ADDONNAME" mkdir -p "$FULLPATH/../addon/$ADDONNAME/lang/C" - OUTFILE="$FULLPATH/../addon/$ADDONNAME/lang/C/hmessages.po" + OUTFILE="$FULLPATH/../addon/$ADDONNAME/lang/C/messages.po" FINDSTARTDIR="." FINDOPTS= else cd "$FULLPATH/../view/en/" - OUTFILE="$FULLPATH/hmessages.po" + OUTFILE="$FULLPATH/messages.po" FINDSTARTDIR="../../" # skip addon folder FINDOPTS= diff --git a/util/strings.php b/util/strings.php index 1fe63b7f7..f1b145bbc 100644 --- a/util/strings.php +++ b/util/strings.php @@ -1,821 +1,222 @@ 3 hours) before submitting it."] = ""; -App::$strings["created a new post"] = ""; -App::$strings["commented on %s's post"] = ""; -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."] = ""; -App::$strings["Default privacy group for new contacts"] = ""; -App::$strings["All Channels"] = ""; -App::$strings["edit"] = ""; -App::$strings["Collections"] = ""; -App::$strings["Edit collection"] = ""; -App::$strings["Add new collection"] = ""; -App::$strings["Channels not in any collection"] = ""; -App::$strings["add"] = ""; -App::$strings["Not a valid email address"] = ""; -App::$strings["Your email domain is not among those allowed on this site"] = ""; -App::$strings["Your email address is already registered at this site."] = ""; -App::$strings["An invitation is required."] = ""; -App::$strings["Invitation could not be verified."] = ""; -App::$strings["Please enter the required information."] = ""; -App::$strings["Failed to store account information."] = ""; -App::$strings["Registration confirmation for %s"] = ""; -App::$strings["Registration request at %s"] = ""; -App::$strings["Administrator"] = ""; -App::$strings["your registration password"] = ""; -App::$strings["Registration details for %s"] = ""; -App::$strings["Account approved."] = ""; -App::$strings["Registration revoked for %s"] = ""; -App::$strings["Account verified. Please login."] = ""; -App::$strings["Click here to upgrade."] = ""; -App::$strings["This action exceeds the limits set by your subscription plan."] = ""; -App::$strings["This action is not available under your subscription plan."] = ""; -App::$strings["Miscellaneous"] = ""; -App::$strings["YYYY-MM-DD or MM-DD"] = ""; -App::$strings["Required"] = ""; -App::$strings["never"] = ""; -App::$strings["less than a second ago"] = ""; -App::$strings["year"] = ""; -App::$strings["years"] = ""; -App::$strings["month"] = ""; -App::$strings["months"] = ""; -App::$strings["week"] = ""; -App::$strings["weeks"] = ""; -App::$strings["day"] = ""; -App::$strings["days"] = ""; -App::$strings["hour"] = ""; -App::$strings["hours"] = ""; -App::$strings["minute"] = ""; -App::$strings["minutes"] = ""; -App::$strings["second"] = ""; -App::$strings["seconds"] = ""; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = ""; -App::$strings["%1\$s's birthday"] = ""; -App::$strings["Happy Birthday %1\$s"] = ""; -App::$strings["New Page"] = ""; -App::$strings["Edit"] = ""; -App::$strings["View"] = ""; -App::$strings["Preview"] = ""; -App::$strings["Actions"] = ""; -App::$strings["Page Link"] = ""; -App::$strings["Title"] = ""; -App::$strings["Created"] = ""; -App::$strings["Edited"] = ""; -App::$strings["Public Timeline"] = ""; -App::$strings["Default"] = ""; -App::$strings["Directory Options"] = ""; -App::$strings["Alphabetic"] = ""; -App::$strings["Reverse Alphabetic"] = ""; -App::$strings["Newest to Oldest"] = ""; -App::$strings["Oldest to Newest"] = ""; -App::$strings["Sort"] = ""; -App::$strings["Safe Mode"] = ""; -App::$strings["Public Forums Only"] = ""; -App::$strings["This Website Only"] = ""; -App::$strings["l F d, Y \\@ g:i A"] = ""; -App::$strings["Starts:"] = ""; -App::$strings["Finishes:"] = ""; -App::$strings["Location:"] = ""; -App::$strings["This event has been added to your calendar."] = ""; -App::$strings["Delete this item?"] = ""; -App::$strings["Comment"] = ""; -App::$strings["[+] show all"] = ""; -App::$strings["[-] show less"] = ""; -App::$strings["[+] expand"] = ""; -App::$strings["[-] collapse"] = ""; -App::$strings["Password too short"] = ""; -App::$strings["Passwords do not match"] = ""; -App::$strings["everybody"] = ""; -App::$strings["Secret Passphrase"] = ""; -App::$strings["Passphrase hint"] = ""; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; -App::$strings["close all"] = ""; -App::$strings["Nothing new here"] = ""; -App::$strings["Rate This Channel (this is public)"] = ""; -App::$strings["Rating"] = ""; -App::$strings["Describe (optional)"] = ""; -App::$strings["Submit"] = ""; -App::$strings["Please enter a link URL"] = ""; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; -App::$strings["timeago.prefixAgo"] = ""; -App::$strings["timeago.prefixFromNow"] = ""; -App::$strings["ago"] = ""; -App::$strings["from now"] = ""; -App::$strings["less than a minute"] = ""; -App::$strings["about a minute"] = ""; -App::$strings["%d minutes"] = ""; -App::$strings["about an hour"] = ""; -App::$strings["about %d hours"] = ""; -App::$strings["a day"] = ""; -App::$strings["%d days"] = ""; -App::$strings["about a month"] = ""; -App::$strings["%d months"] = ""; -App::$strings["about a year"] = ""; -App::$strings["%d years"] = ""; -App::$strings[" "] = ""; -App::$strings["timeago.numbers"] = ""; -App::$strings["parent"] = ""; +App::$strings["Can view my channel stream and posts"] = ""; +App::$strings["Can send me their channel stream and posts"] = ""; +App::$strings["Can view my default channel profile"] = ""; +App::$strings["Can view my connections"] = ""; +App::$strings["Can view my file storage and photos"] = ""; +App::$strings["Can upload/modify my file storage and photos"] = ""; +App::$strings["Can post on my channel (wall) page"] = ""; +App::$strings["Can comment on or like my posts"] = ""; +App::$strings["Can like/dislike profiles and profile things"] = ""; +App::$strings["Can source my public posts in derived channels"] = ""; +App::$strings["Comments are moderated"] = ""; +App::$strings["Can administer my channel"] = ""; +App::$strings["Social Networking"] = ""; +App::$strings["Social - Normal"] = ""; +App::$strings["Social - Restricted"] = ""; +App::$strings["Community Group"] = ""; +App::$strings["Group - Normal"] = ""; +App::$strings["Group - Restricted"] = ""; +App::$strings["Group - Moderated"] = ""; App::$strings["Collection"] = ""; -App::$strings["Principal"] = ""; -App::$strings["Addressbook"] = ""; -App::$strings["Calendar"] = ""; -App::$strings["Schedule Inbox"] = ""; -App::$strings["Schedule Outbox"] = ""; -App::$strings["Unknown"] = ""; -App::$strings["%1\$s used"] = ""; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = ""; -App::$strings["Files"] = ""; -App::$strings["Total"] = ""; -App::$strings["Shared"] = ""; -App::$strings["Create"] = ""; -App::$strings["Upload"] = ""; -App::$strings["Name"] = ""; -App::$strings["Type"] = ""; -App::$strings["Size"] = ""; -App::$strings["Last Modified"] = ""; -App::$strings["Delete"] = ""; -App::$strings["Create new folder"] = ""; -App::$strings["Upload file"] = ""; -App::$strings["%1\$s's bookmarks"] = ""; -App::$strings["view full size"] = ""; -App::$strings["General Features"] = ""; -App::$strings["Content Expiration"] = ""; -App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; -App::$strings["Multiple Profiles"] = ""; -App::$strings["Ability to create multiple profiles"] = ""; -App::$strings["Advanced Profiles"] = ""; -App::$strings["Additional profile sections and selections"] = ""; -App::$strings["Profile Import/Export"] = ""; -App::$strings["Save and load profile details across sites/channels"] = ""; -App::$strings["Web Pages"] = ""; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Private Notes"] = ""; -App::$strings["Enables a tool to store notes and reminders"] = ""; -App::$strings["Navigation Channel Select"] = ""; -App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; -App::$strings["Photo Location"] = ""; -App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; -App::$strings["Expert Mode"] = ""; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; -App::$strings["Premium Channel"] = ""; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; -App::$strings["Post Composition Features"] = ""; -App::$strings["Use Markdown"] = ""; -App::$strings["Allow use of \"Markdown\" to format posts"] = ""; -App::$strings["Large Photos"] = ""; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = ""; -App::$strings["Channel Sources"] = ""; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["Even More Encryption"] = ""; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; -App::$strings["Enable voting tools"] = ""; -App::$strings["Provide a class of post which others can vote on"] = ""; -App::$strings["Network and Stream Filtering"] = ""; -App::$strings["Search by Date"] = ""; -App::$strings["Ability to select posts by date ranges"] = ""; -App::$strings["Collections Filter"] = ""; -App::$strings["Enable widget to display Network posts only from selected collections"] = ""; -App::$strings["Saved Searches"] = ""; -App::$strings["Save search terms for re-use"] = ""; -App::$strings["Network Personal Tab"] = ""; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; -App::$strings["Network New Tab"] = ""; -App::$strings["Enable tab to display all new Network activity"] = ""; -App::$strings["Affinity Tool"] = ""; -App::$strings["Filter stream activity by depth of relationships"] = ""; -App::$strings["Suggest Channels"] = ""; -App::$strings["Show channel suggestions"] = ""; -App::$strings["Post/Comment Tools"] = ""; -App::$strings["Tagging"] = ""; -App::$strings["Ability to tag existing posts"] = ""; -App::$strings["Post Categories"] = ""; -App::$strings["Add categories to your posts"] = ""; -App::$strings["Saved Folders"] = ""; -App::$strings["Ability to file posts under folders"] = ""; -App::$strings["Dislike Posts"] = ""; -App::$strings["Ability to dislike posts/comments"] = ""; -App::$strings["Star Posts"] = ""; -App::$strings["Ability to mark special posts with a star indicator"] = ""; -App::$strings["Tag Cloud"] = ""; -App::$strings["Provide a personal tag cloud on your channel page"] = ""; -App::$strings["Categories"] = ""; -App::$strings["Apps"] = ""; -App::$strings["System"] = ""; -App::$strings["Personal"] = ""; -App::$strings["Create Personal App"] = ""; -App::$strings["Edit Personal App"] = ""; -App::$strings["Connect"] = ""; -App::$strings["Ignore/Hide"] = ""; -App::$strings["Suggestions"] = ""; -App::$strings["See more..."] = ""; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; -App::$strings["Add New Connection"] = ""; -App::$strings["Enter the channel address"] = ""; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = ""; -App::$strings["Notes"] = ""; -App::$strings["Save"] = ""; -App::$strings["Remove term"] = ""; -App::$strings["Everything"] = ""; -App::$strings["Archives"] = ""; -App::$strings["Me"] = ""; -App::$strings["Family"] = ""; -App::$strings["Friends"] = ""; -App::$strings["Acquaintances"] = ""; -App::$strings["All"] = ""; -App::$strings["Refresh"] = ""; -App::$strings["Account settings"] = ""; -App::$strings["Channel settings"] = ""; -App::$strings["Additional features"] = ""; -App::$strings["Feature/Addon settings"] = ""; -App::$strings["Display settings"] = ""; -App::$strings["Connected apps"] = ""; -App::$strings["Export channel"] = ""; -App::$strings["Connection Default Permissions"] = ""; -App::$strings["Premium Channel Settings"] = ""; -App::$strings["Settings"] = ""; -App::$strings["Messages"] = ""; -App::$strings["Check Mail"] = ""; -App::$strings["New Message"] = ""; -App::$strings["Chat Rooms"] = ""; -App::$strings["Bookmarked Chatrooms"] = ""; -App::$strings["Suggested Chatrooms"] = ""; -App::$strings["photo/image"] = ""; -App::$strings["Rate Me"] = ""; -App::$strings["View Ratings"] = ""; -App::$strings["Public Hubs"] = ""; +App::$strings["Collection - Normal"] = ""; +App::$strings["Collection - Restricted"] = ""; +App::$strings["Feed Republish"] = ""; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; +App::$strings["post"] = ""; App::$strings["\$Projectname Notification"] = ""; App::$strings["\$projectname"] = ""; App::$strings["Thank You,"] = ""; App::$strings["%s Administrator"] = ""; +App::$strings["This email was sent by %1\$s at %2\$s."] = ""; +App::$strings["\$Projectname"] = ""; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; +App::$strings["To stop receiving these messages, please adjust your %s."] = ""; +App::$strings["Notification Settings"] = ""; App::$strings["%s "] = ""; -App::$strings["[Red:Notify] New mail received at %s"] = ""; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = ""; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = ""; +App::$strings["%1\$s sent you a new private message at %2\$s."] = ""; App::$strings["%1\$s sent you %2\$s."] = ""; App::$strings["a private message"] = ""; App::$strings["Please visit %s to view and/or reply to your private messages."] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; +App::$strings["commented on"] = ""; +App::$strings["liked"] = ""; +App::$strings["disliked"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["%1\$s commented on an item/conversation you have been following."] = ""; +App::$strings["(Moderated)"] = ""; App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; -App::$strings["[Red:Notify] %s posted to your profile wall"] = ""; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; -App::$strings["[Red:Notify] %s tagged you"] = ""; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; -App::$strings["[Red:Notify] %1\$s poked you"] = ""; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -App::$strings["[Red:Notify] %s tagged your post"] = ""; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; -App::$strings["[Red:Notify] Introduction received"] = ""; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; +App::$strings["Please visit %s to approve or reject this comment."] = ""; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = ""; +App::$strings["%1\$s liked an item/conversation you created."] = ""; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = ""; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = ""; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = ""; +App::$strings[" - "] = ""; +App::$strings["Moderated"] = ""; +App::$strings["Please visit %s to approve or reject this post."] = ""; +App::$strings["[\$Projectname:Notify] %s tagged you"] = ""; +App::$strings["%1\$s tagged you at %2\$s"] = ""; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = ""; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = ""; +App::$strings["%1\$s poked you at %2\$s"] = ""; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = ""; +App::$strings["%1\$s tagged your post at %2\$s"] = ""; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Introduction received"] = ""; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = ""; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = ""; App::$strings["You may visit their profile at %s"] = ""; App::$strings["Please visit %s to approve or reject the connection request."] = ""; -App::$strings["[Red:Notify] Friend suggestion received"] = ""; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = ""; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = ""; App::$strings["Name:"] = ""; App::$strings["Photo:"] = ""; App::$strings["Please visit %s to approve or reject the suggestion."] = ""; -App::$strings["[Red:Notify]"] = ""; -App::$strings["Frequently"] = ""; -App::$strings["Hourly"] = ""; -App::$strings["Twice daily"] = ""; -App::$strings["Daily"] = ""; -App::$strings["Weekly"] = ""; -App::$strings["Monthly"] = ""; -App::$strings["Friendica"] = ""; -App::$strings["OStatus"] = ""; -App::$strings["RSS/Atom"] = ""; -App::$strings["Email"] = ""; -App::$strings["Diaspora"] = ""; -App::$strings["Facebook"] = ""; -App::$strings["Zot!"] = ""; -App::$strings["LinkedIn"] = ""; -App::$strings["XMPP/IM"] = ""; -App::$strings["MySpace"] = ""; -App::$strings["No recipient provided."] = ""; -App::$strings["[no subject]"] = ""; -App::$strings["Unable to determine sender."] = ""; -App::$strings["Stored post could not be verified."] = ""; -App::$strings["Channel is blocked on this site."] = ""; -App::$strings["Channel location missing."] = ""; -App::$strings["Response from remote channel was incomplete."] = ""; -App::$strings["Channel was deleted and no longer exists."] = ""; -App::$strings["Protocol disabled."] = ""; -App::$strings["Channel discovery failed."] = ""; -App::$strings["local account not found."] = ""; -App::$strings["Cannot connect to yourself."] = ""; -App::$strings["Private Message"] = ""; -App::$strings["Select"] = ""; -App::$strings["Save to Folder"] = ""; -App::$strings["I will attend"] = ""; -App::$strings["I will not attend"] = ""; -App::$strings["I might attend"] = ""; -App::$strings["I agree"] = ""; -App::$strings["I disagree"] = ""; -App::$strings["I abstain"] = ""; -App::$strings["View all"] = ""; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "", - 1 => "", -); -App::$strings["Add Star"] = ""; -App::$strings["Remove Star"] = ""; -App::$strings["Toggle Star Status"] = ""; -App::$strings["starred"] = ""; -App::$strings["Message signature validated"] = ""; -App::$strings["Message signature incorrect"] = ""; -App::$strings["Add Tag"] = ""; -App::$strings["I like this (toggle)"] = ""; -App::$strings["like"] = ""; -App::$strings["I don't like this (toggle)"] = ""; -App::$strings["dislike"] = ""; -App::$strings["Share This"] = ""; -App::$strings["share"] = ""; -App::$strings["%d comment"] = array( - 0 => "", - 1 => "", -); -App::$strings["View %s's profile - %s"] = ""; -App::$strings["to"] = ""; -App::$strings["via"] = ""; -App::$strings["Wall-to-Wall"] = ""; -App::$strings["via Wall-To-Wall:"] = ""; -App::$strings["from %s"] = ""; -App::$strings["last edited: %s"] = ""; -App::$strings["Expires: %s"] = ""; -App::$strings["Save Bookmarks"] = ""; -App::$strings["Add to Calendar"] = ""; -App::$strings["Mark all seen"] = ""; -App::$strings["__ctx:noun__ Likes"] = ""; -App::$strings["__ctx:noun__ Dislikes"] = ""; -App::$strings["Close"] = ""; -App::$strings["Please wait"] = ""; -App::$strings["This is you"] = ""; -App::$strings["Bold"] = ""; -App::$strings["Italic"] = ""; -App::$strings["Underline"] = ""; -App::$strings["Quote"] = ""; -App::$strings["Code"] = ""; -App::$strings["Image"] = ""; -App::$strings["Insert Link"] = ""; -App::$strings["Video"] = ""; -App::$strings["Encrypt text"] = ""; -App::$strings["New window"] = ""; -App::$strings["Open the selected location in a different window or browser tab"] = ""; -App::$strings["User '%s' deleted"] = ""; -App::$strings["Attachments:"] = ""; -App::$strings["\$Projectname event notification:"] = ""; -App::$strings["prev"] = ""; -App::$strings["first"] = ""; -App::$strings["last"] = ""; -App::$strings["next"] = ""; -App::$strings["older"] = ""; -App::$strings["newer"] = ""; -App::$strings["No connections"] = ""; -App::$strings["%d Connection"] = array( - 0 => "", - 1 => "", -); -App::$strings["View Connections"] = ""; -App::$strings["Search"] = ""; -App::$strings["poke"] = ""; -App::$strings["poked"] = ""; -App::$strings["ping"] = ""; -App::$strings["pinged"] = ""; -App::$strings["prod"] = ""; -App::$strings["prodded"] = ""; -App::$strings["slap"] = ""; -App::$strings["slapped"] = ""; -App::$strings["finger"] = ""; -App::$strings["fingered"] = ""; -App::$strings["rebuff"] = ""; -App::$strings["rebuffed"] = ""; -App::$strings["happy"] = ""; -App::$strings["sad"] = ""; -App::$strings["mellow"] = ""; -App::$strings["tired"] = ""; -App::$strings["perky"] = ""; -App::$strings["angry"] = ""; -App::$strings["stupified"] = ""; -App::$strings["puzzled"] = ""; -App::$strings["interested"] = ""; -App::$strings["bitter"] = ""; -App::$strings["cheerful"] = ""; -App::$strings["alive"] = ""; -App::$strings["annoyed"] = ""; -App::$strings["anxious"] = ""; -App::$strings["cranky"] = ""; -App::$strings["disturbed"] = ""; -App::$strings["frustrated"] = ""; -App::$strings["depressed"] = ""; -App::$strings["motivated"] = ""; -App::$strings["relaxed"] = ""; -App::$strings["surprised"] = ""; -App::$strings["Monday"] = ""; -App::$strings["Tuesday"] = ""; -App::$strings["Wednesday"] = ""; -App::$strings["Thursday"] = ""; -App::$strings["Friday"] = ""; -App::$strings["Saturday"] = ""; -App::$strings["Sunday"] = ""; -App::$strings["January"] = ""; -App::$strings["February"] = ""; -App::$strings["March"] = ""; -App::$strings["April"] = ""; -App::$strings["May"] = ""; -App::$strings["June"] = ""; -App::$strings["July"] = ""; -App::$strings["August"] = ""; -App::$strings["September"] = ""; -App::$strings["October"] = ""; -App::$strings["November"] = ""; -App::$strings["December"] = ""; -App::$strings["unknown.???"] = ""; -App::$strings["bytes"] = ""; -App::$strings["remove category"] = ""; -App::$strings["remove from file"] = ""; -App::$strings["Click to open/close"] = ""; -App::$strings["Link to Source"] = ""; -App::$strings["default"] = ""; -App::$strings["Page layout"] = ""; -App::$strings["You can create your own with the layouts tool"] = ""; -App::$strings["Page content type"] = ""; -App::$strings["Select an alternate language"] = ""; -App::$strings["photo"] = ""; -App::$strings["event"] = ""; -App::$strings["status"] = ""; -App::$strings["comment"] = ""; -App::$strings["activity"] = ""; -App::$strings["Design Tools"] = ""; -App::$strings["Blocks"] = ""; -App::$strings["Menus"] = ""; -App::$strings["Layouts"] = ""; -App::$strings["Pages"] = ""; -App::$strings["Logout"] = ""; -App::$strings["End this session"] = ""; -App::$strings["Home"] = ""; -App::$strings["Your posts and conversations"] = ""; -App::$strings["View Profile"] = ""; -App::$strings["Your profile page"] = ""; -App::$strings["Edit Profiles"] = ""; -App::$strings["Manage/Edit profiles"] = ""; -App::$strings["Edit Profile"] = ""; -App::$strings["Edit your profile"] = ""; -App::$strings["Photos"] = ""; -App::$strings["Your photos"] = ""; -App::$strings["Your files"] = ""; -App::$strings["Chat"] = ""; -App::$strings["Your chatrooms"] = ""; -App::$strings["Bookmarks"] = ""; -App::$strings["Your bookmarks"] = ""; -App::$strings["Webpages"] = ""; -App::$strings["Your webpages"] = ""; -App::$strings["Login"] = ""; -App::$strings["Sign in"] = ""; -App::$strings["%s - click to logout"] = ""; -App::$strings["Remote authentication"] = ""; -App::$strings["Click to authenticate to your home hub"] = ""; -App::$strings["Home Page"] = ""; -App::$strings["Register"] = ""; -App::$strings["Create an account"] = ""; -App::$strings["Help"] = ""; -App::$strings["Help and documentation"] = ""; -App::$strings["Applications, utilities, links, games"] = ""; -App::$strings["Search site content"] = ""; -App::$strings["Directory"] = ""; -App::$strings["Channel Directory"] = ""; -App::$strings["Matrix"] = ""; -App::$strings["Your matrix"] = ""; -App::$strings["Mark all matrix notifications seen"] = ""; -App::$strings["Channel Home"] = ""; -App::$strings["Channel home"] = ""; -App::$strings["Mark all channel notifications seen"] = ""; -App::$strings["Connections"] = ""; -App::$strings["Notices"] = ""; -App::$strings["Notifications"] = ""; -App::$strings["See all notifications"] = ""; -App::$strings["Mark all system notifications seen"] = ""; -App::$strings["Mail"] = ""; -App::$strings["Private mail"] = ""; -App::$strings["See all private messages"] = ""; -App::$strings["Mark all private messages seen"] = ""; -App::$strings["Inbox"] = ""; -App::$strings["Outbox"] = ""; -App::$strings["Events"] = ""; -App::$strings["Event Calendar"] = ""; -App::$strings["See all events"] = ""; -App::$strings["Mark all events seen"] = ""; -App::$strings["Channel Manager"] = ""; -App::$strings["Manage Your Channels"] = ""; -App::$strings["Account/Channel Settings"] = ""; -App::$strings["Admin"] = ""; -App::$strings["Site Setup and Configuration"] = ""; -App::$strings["Loading..."] = ""; -App::$strings["@name, #tag, content"] = ""; -App::$strings["Please wait..."] = ""; -App::$strings["Tags"] = ""; -App::$strings["Keywords"] = ""; -App::$strings["have"] = ""; -App::$strings["has"] = ""; -App::$strings["want"] = ""; -App::$strings["wants"] = ""; -App::$strings["likes"] = ""; -App::$strings["dislikes"] = ""; -App::$strings[" and "] = ""; -App::$strings["public profile"] = ""; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -App::$strings["Visit %1\$s's %2\$s"] = ""; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -App::$strings["Permission denied"] = ""; -App::$strings["(Unknown)"] = ""; -App::$strings["Visible to anybody on the internet."] = ""; -App::$strings["Visible to you only."] = ""; -App::$strings["Visible to anybody in this network."] = ""; -App::$strings["Visible to anybody authenticated."] = ""; -App::$strings["Visible to anybody on %s."] = ""; -App::$strings["Visible to all connections."] = ""; -App::$strings["Visible to approved connections."] = ""; -App::$strings["Visible to specific connections."] = ""; -App::$strings["Item not found."] = ""; +App::$strings["[\$Projectname:Notify]"] = ""; +App::$strings["created a new post"] = ""; +App::$strings["reacted to %s's conversation"] = ""; +App::$strings["shared %s's post"] = ""; +App::$strings["edited a post dated %s"] = ""; +App::$strings["edited a comment dated %s"] = ""; +App::$strings["Missing room name"] = ""; +App::$strings["Duplicate room name"] = ""; +App::$strings["Invalid room specifier."] = ""; +App::$strings["Room not found."] = ""; App::$strings["Permission denied."] = ""; -App::$strings["Collection not found."] = ""; -App::$strings["Collection is empty."] = ""; -App::$strings["Collection: %s"] = ""; -App::$strings["Connection: %s"] = ""; -App::$strings["Connection not found."] = ""; -App::$strings["Can view my normal stream and posts"] = ""; -App::$strings["Can view my default channel profile"] = ""; -App::$strings["Can view my photo albums"] = ""; -App::$strings["Can view my connections"] = ""; -App::$strings["Can view my file storage"] = ""; -App::$strings["Can view my webpages"] = ""; -App::$strings["Can send me their channel stream and posts"] = ""; -App::$strings["Can post on my channel page (\"wall\")"] = ""; -App::$strings["Can comment on or like my posts"] = ""; -App::$strings["Can send me private mail messages"] = ""; -App::$strings["Can post photos to my photo albums"] = ""; -App::$strings["Can like/dislike stuff"] = ""; -App::$strings["Profiles and things other than posts/comments"] = ""; -App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; -App::$strings["Advanced - useful for creating group forum channels"] = ""; -App::$strings["Can chat with me (when available)"] = ""; -App::$strings["Can write to my file storage"] = ""; -App::$strings["Can edit my webpages"] = ""; -App::$strings["Can source my public posts in derived channels"] = ""; -App::$strings["Somewhat advanced - very useful in open communities"] = ""; -App::$strings["Can administer my channel resources"] = ""; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -App::$strings["Social Networking"] = ""; -App::$strings["Mostly Public"] = ""; -App::$strings["Restricted"] = ""; -App::$strings["Private"] = ""; -App::$strings["Community Forum"] = ""; -App::$strings["Feed Republish"] = ""; -App::$strings["Special Purpose"] = ""; -App::$strings["Celebrity/Soapbox"] = ""; -App::$strings["Group Repository"] = ""; -App::$strings["Other"] = ""; -App::$strings["Custom/Expert Mode"] = ""; -App::$strings["channel"] = ""; -App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is now connected with %2\$s"] = ""; -App::$strings["%1\$s poked %2\$s"] = ""; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; -App::$strings["__ctx:title__ Likes"] = ""; -App::$strings["__ctx:title__ Dislikes"] = ""; -App::$strings["__ctx:title__ Agree"] = ""; -App::$strings["__ctx:title__ Disagree"] = ""; -App::$strings["__ctx:title__ Abstain"] = ""; -App::$strings["__ctx:title__ Attending"] = ""; -App::$strings["__ctx:title__ Not attending"] = ""; -App::$strings["__ctx:title__ Might attend"] = ""; -App::$strings["View %s's profile @ %s"] = ""; -App::$strings["Categories:"] = ""; -App::$strings["Filed under:"] = ""; -App::$strings["View in context"] = ""; -App::$strings["remove"] = ""; -App::$strings["Delete Selected Items"] = ""; -App::$strings["View Source"] = ""; -App::$strings["Follow Thread"] = ""; -App::$strings["View Status"] = ""; -App::$strings["View Photos"] = ""; -App::$strings["Matrix Activity"] = ""; -App::$strings["Edit Contact"] = ""; -App::$strings["Send PM"] = ""; -App::$strings["Poke"] = ""; -App::$strings["%s likes this."] = ""; -App::$strings["%s doesn't like this."] = ""; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "", -); -App::$strings["and"] = ""; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s like this."] = ""; -App::$strings["%s don't like this."] = ""; -App::$strings["Visible to everybody"] = ""; -App::$strings["Please enter a link URL:"] = ""; -App::$strings["Please enter a video link/URL:"] = ""; -App::$strings["Please enter an audio link/URL:"] = ""; -App::$strings["Tag term:"] = ""; -App::$strings["Save to Folder:"] = ""; -App::$strings["Where are you right now?"] = ""; -App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; -App::$strings["Share"] = ""; -App::$strings["Page link name"] = ""; -App::$strings["Post as"] = ""; -App::$strings["Upload photo"] = ""; -App::$strings["upload photo"] = ""; -App::$strings["Attach file"] = ""; -App::$strings["attach file"] = ""; -App::$strings["Insert web link"] = ""; -App::$strings["web link"] = ""; -App::$strings["Insert video link"] = ""; -App::$strings["video link"] = ""; -App::$strings["Insert audio link"] = ""; -App::$strings["audio link"] = ""; -App::$strings["Set your location"] = ""; -App::$strings["set location"] = ""; -App::$strings["Toggle voting"] = ""; -App::$strings["Clear browser location"] = ""; -App::$strings["clear location"] = ""; -App::$strings["Title (optional)"] = ""; -App::$strings["Categories (optional, comma-separated list)"] = ""; -App::$strings["Permission settings"] = ""; -App::$strings["permissions"] = ""; -App::$strings["Public post"] = ""; -App::$strings["Example: bob@example.com, mary@example.com"] = ""; -App::$strings["Set expiration date"] = ""; -App::$strings["OK"] = ""; -App::$strings["Cancel"] = ""; -App::$strings["Discover"] = ""; -App::$strings["Imported public streams"] = ""; -App::$strings["Commented Order"] = ""; -App::$strings["Sort by Comment Date"] = ""; -App::$strings["Posted Order"] = ""; -App::$strings["Sort by Post Date"] = ""; -App::$strings["Posts that mention or involve you"] = ""; -App::$strings["New"] = ""; -App::$strings["Activity Stream - by date"] = ""; -App::$strings["Starred"] = ""; -App::$strings["Favourite Posts"] = ""; -App::$strings["Spam"] = ""; -App::$strings["Posts flagged as SPAM"] = ""; -App::$strings["Channel"] = ""; -App::$strings["Status Messages and Posts"] = ""; -App::$strings["About"] = ""; -App::$strings["Profile Details"] = ""; -App::$strings["Photo Albums"] = ""; -App::$strings["Files and Storage"] = ""; -App::$strings["Chatrooms"] = ""; -App::$strings["Saved Bookmarks"] = ""; -App::$strings["Manage Webpages"] = ""; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "", - 1 => "", -); -App::$strings["Image/photo"] = ""; -App::$strings["Encrypted content"] = ""; -App::$strings["Install design element: "] = ""; -App::$strings["QR code"] = ""; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -App::$strings["post"] = ""; -App::$strings["Different viewers will see this text differently"] = ""; -App::$strings["$1 spoiler"] = ""; -App::$strings["$1 wrote:"] = ""; -App::$strings["Image exceeds website size limit of %lu bytes"] = ""; -App::$strings["Image file is empty."] = ""; -App::$strings["Unable to process image"] = ""; -App::$strings["Photo storage failed."] = ""; -App::$strings["Upload New Photos"] = ""; -App::$strings["Invalid data packet"] = ""; -App::$strings["Unable to verify channel signature"] = ""; -App::$strings["Unable to verify site signature for %s"] = ""; -App::$strings["Embedded content"] = ""; -App::$strings["Embedding disabled"] = ""; -App::$strings["Logged out."] = ""; -App::$strings["Failed authentication"] = ""; -App::$strings["Login failed."] = ""; -App::$strings["%d invitation available"] = array( - 0 => "", - 1 => "", -); -App::$strings["Advanced"] = ""; -App::$strings["Find Channels"] = ""; -App::$strings["Enter name or interest"] = ""; -App::$strings["Connect/Follow"] = ""; -App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; -App::$strings["Find"] = ""; -App::$strings["Channel Suggestions"] = ""; -App::$strings["Random Profile"] = ""; -App::$strings["Invite Friends"] = ""; -App::$strings["Advanced example: name=fred and country=iceland"] = ""; -App::$strings["%d connection in common"] = array( - 0 => "", - 1 => "", -); -App::$strings["show more"] = ""; +App::$strings["Room is full"] = ""; App::$strings["Visible to your default audience"] = ""; -App::$strings["Show"] = ""; -App::$strings["Don't show"] = ""; -App::$strings["Permissions"] = ""; -App::$strings["Item was not found."] = ""; -App::$strings["No source file."] = ""; -App::$strings["Cannot locate file to replace"] = ""; -App::$strings["Cannot locate file to revise/update"] = ""; -App::$strings["File exceeds size limit of %d"] = ""; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; -App::$strings["File upload failed. Possible system limit or action terminated."] = ""; -App::$strings["Stored file could not be verified. Upload failed."] = ""; -App::$strings["Path not available."] = ""; -App::$strings["Empty pathname"] = ""; -App::$strings["duplicate filename or path"] = ""; -App::$strings["Path not found."] = ""; -App::$strings["mkdir failed."] = ""; -App::$strings["database storage failed."] = ""; -App::$strings["Unable to obtain identity information from database"] = ""; -App::$strings["Empty name"] = ""; -App::$strings["Name too long"] = ""; -App::$strings["No account identifier"] = ""; -App::$strings["Nickname is required."] = ""; -App::$strings["Reserved nickname. Please choose another."] = ""; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = ""; +App::$strings["Only me"] = ""; +App::$strings["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["Apps"] = ""; +App::$strings["Affinity Tool"] = ""; +App::$strings["Articles"] = ""; +App::$strings["Cards"] = ""; +App::$strings["Calendar"] = ""; +App::$strings["Categories"] = ""; +App::$strings["Site Admin"] = ""; +App::$strings["Content Filter"] = ""; +App::$strings["Content Import"] = ""; +App::$strings["Report Bug"] = ""; +App::$strings["View Bookmarks"] = ""; +App::$strings["Chatrooms"] = ""; +App::$strings["Connections"] = ""; +App::$strings["Expire Posts"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = ""; +App::$strings["Login"] = ""; +App::$strings["Channel Manager"] = ""; +App::$strings["Stream"] = ""; +App::$strings["Settings"] = ""; +App::$strings["Files"] = ""; +App::$strings["Webpages"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["Channel Home"] = ""; +App::$strings["View Profile"] = ""; +App::$strings["Photos"] = ""; +App::$strings["Events"] = ""; +App::$strings["No Comment"] = ""; +App::$strings["Directory"] = ""; +App::$strings["Help"] = ""; +App::$strings["Mail"] = ""; +App::$strings["Mood"] = ""; +App::$strings["Poke"] = ""; +App::$strings["Chat"] = ""; +App::$strings["Search"] = ""; +App::$strings["Stream Order"] = ""; +App::$strings["Probe"] = ""; +App::$strings["Suggest"] = ""; +App::$strings["Random Channel"] = ""; +App::$strings["Invite"] = ""; +App::$strings["Features"] = ""; +App::$strings["Language"] = ""; +App::$strings["Post"] = ""; +App::$strings["ZotPost"] = ""; +App::$strings["Profile Photo"] = ""; +App::$strings["Profile"] = ""; +App::$strings["Profiles"] = ""; +App::$strings["Access Lists"] = ""; +App::$strings["Notifications"] = ""; +App::$strings["Order Apps"] = ""; +App::$strings["CalDAV"] = ""; +App::$strings["CardDAV"] = ""; +App::$strings["Channel Sources"] = ""; +App::$strings["Gallery"] = ""; +App::$strings["Guest Access"] = ""; +App::$strings["Notes"] = ""; +App::$strings["OAuth Apps Manager"] = ""; +App::$strings["OAuth2 Apps Manager"] = ""; +App::$strings["PDL Editor"] = ""; +App::$strings["Permission Categories"] = ""; +App::$strings["Premium Channel"] = ""; +App::$strings["Public Stream"] = ""; +App::$strings["My Chatrooms"] = ""; +App::$strings["Update"] = ""; +App::$strings["Install"] = ""; +App::$strings["Purchase"] = ""; +App::$strings["Edit"] = ""; +App::$strings["Delete"] = ""; +App::$strings["Undelete"] = ""; +App::$strings["Add to app-tray"] = ""; +App::$strings["Remove from app-tray"] = ""; +App::$strings["Pin to navbar"] = ""; +App::$strings["Unpin from navbar"] = ""; +App::$strings["Unknown"] = ""; App::$strings["Requested channel is not available."] = ""; App::$strings["Requested profile is not available."] = ""; App::$strings["Change profile photo"] = ""; -App::$strings["Profiles"] = ""; -App::$strings["Manage/edit profiles"] = ""; +App::$strings["Edit Profiles"] = ""; App::$strings["Create New Profile"] = ""; +App::$strings["Edit Profile"] = ""; App::$strings["Profile Image"] = ""; -App::$strings["visible to everybody"] = ""; +App::$strings["Visible to everybody"] = ""; App::$strings["Edit visibility"] = ""; +App::$strings["Connect"] = ""; +App::$strings["Location:"] = ""; App::$strings["Gender:"] = ""; App::$strings["Status:"] = ""; App::$strings["Homepage:"] = ""; -App::$strings["Online Now"] = ""; -App::$strings["g A l F d"] = ""; -App::$strings["F d"] = ""; -App::$strings["[today]"] = ""; -App::$strings["Birthday Reminders"] = ""; -App::$strings["Birthdays this week:"] = ""; -App::$strings["[No description]"] = ""; -App::$strings["Event Reminders"] = ""; -App::$strings["Events this week:"] = ""; -App::$strings["Profile"] = ""; +App::$strings["Change your profile photo"] = ""; +App::$strings["Female"] = ""; +App::$strings["Male"] = ""; +App::$strings["Trans"] = ""; +App::$strings["Inter"] = ""; +App::$strings["Neuter"] = ""; +App::$strings["Non-specific"] = ""; App::$strings["Full Name:"] = ""; App::$strings["Like this channel"] = ""; +App::$strings["__ctx:noun__ Like"] = [ + 0 => "", + 1 => "", +]; App::$strings["j F, Y"] = ""; App::$strings["j F"] = ""; App::$strings["Birthday:"] = ""; App::$strings["Age:"] = ""; App::$strings["for %1\$d %2\$s"] = ""; +App::$strings["Tags:"] = ""; App::$strings["Sexual Preference:"] = ""; App::$strings["Hometown:"] = ""; -App::$strings["Tags:"] = ""; App::$strings["Political Views:"] = ""; App::$strings["Religion:"] = ""; App::$strings["About:"] = ""; @@ -832,8 +233,1201 @@ App::$strings["Love/Romance:"] = ""; App::$strings["Work/employment:"] = ""; App::$strings["School/education:"] = ""; App::$strings["Like this thing"] = ""; -App::$strings["Male"] = ""; -App::$strings["Female"] = ""; +App::$strings["Export"] = ""; +App::$strings["Source code of failed update: "] = ""; +App::$strings["Update Error at %s"] = ""; +App::$strings["Update %s failed. See error logs."] = ""; +App::$strings["__ctx:permcat__ default"] = ""; +App::$strings["__ctx:permcat__ follower"] = ""; +App::$strings["__ctx:permcat__ contributor"] = ""; +App::$strings["__ctx:permcat__ publisher"] = ""; +App::$strings["Channel is blocked on this site."] = ""; +App::$strings["Channel location missing."] = ""; +App::$strings["Remote channel or protocol unavailable."] = ""; +App::$strings["Channel discovery failed."] = ""; +App::$strings["Protocol not supported"] = ""; +App::$strings["Cannot connect to yourself."] = ""; +App::$strings["error saving data"] = ""; +App::$strings["Directory Options"] = ""; +App::$strings["Safe Mode"] = ""; +App::$strings["No"] = ""; +App::$strings["Yes"] = ""; +App::$strings["Public Groups Only"] = ""; +App::$strings["Collections Only"] = ""; +App::$strings["This Website Only"] = ""; +App::$strings["default"] = ""; +App::$strings["Select an alternate language"] = ""; +App::$strings["A deleted list with this name was revived. Existing item permissions may apply to this list and any future members. If this is not what you intended, please create another list with a different name."] = ""; +App::$strings["Add new connections to this access list"] = ""; +App::$strings["edit"] = ""; +App::$strings["Edit list"] = ""; +App::$strings["Create new list"] = ""; +App::$strings["Channels not in any access list"] = ""; +App::$strings["add"] = ""; +App::$strings["Unable to verify site signature for %s"] = ""; +App::$strings["Likes %1\$s's %2\$s"] = ""; +App::$strings["Doesn't like %1\$s's %2\$s"] = ""; +App::$strings["Will attend %1\$s's %2\$s"] = ""; +App::$strings["Will not attend %1\$s's %2\$s"] = ""; +App::$strings["May attend %1\$s's %2\$s"] = ""; +App::$strings["May not attend %1\$s's %2\$s"] = ""; +App::$strings["🔁 Repeated %1\$s's %2\$s"] = ""; +App::$strings["ActivityPub"] = ""; +App::$strings["photo"] = ""; +App::$strings["status"] = ""; +App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; +App::$strings["Unable to verify channel signature"] = ""; +App::$strings["Private Message"] = ""; +App::$strings["Privacy conflict. Discretion advised."] = ""; +App::$strings["Admin Delete"] = ""; +App::$strings["Select"] = ""; +App::$strings["Save to Folder"] = ""; +App::$strings["I will attend"] = ""; +App::$strings["I will not attend"] = ""; +App::$strings["I might attend"] = ""; +App::$strings["I agree"] = ""; +App::$strings["I disagree"] = ""; +App::$strings["I abstain"] = ""; +App::$strings["View all"] = ""; +App::$strings["__ctx:noun__ Dislike"] = [ + 0 => "", + 1 => "", +]; +App::$strings["Toggle Star Status"] = ""; +App::$strings["Message signature validated"] = ""; +App::$strings["Message signature incorrect"] = ""; +App::$strings["Add Tag"] = ""; +App::$strings["I like this (toggle)"] = ""; +App::$strings["like"] = ""; +App::$strings["I don't like this (toggle)"] = ""; +App::$strings["dislike"] = ""; +App::$strings["Repeat This"] = ""; +App::$strings["Share this"] = ""; +App::$strings["Delivery Report"] = ""; +App::$strings["%d comment"] = [ + 0 => "", + 1 => "", +]; +App::$strings["View %s's profile - %s"] = ""; +App::$strings["to"] = ""; +App::$strings["via"] = ""; +App::$strings["Wall-to-Wall"] = ""; +App::$strings["via Wall-To-Wall:"] = ""; +App::$strings["from %s"] = ""; +App::$strings["last edited: %s"] = ""; +App::$strings["Expires: %s"] = ""; +App::$strings["Attend"] = ""; +App::$strings["Attendance Options"] = ""; +App::$strings["Vote"] = ""; +App::$strings["Voting Options"] = ""; +App::$strings["Reply"] = ""; +App::$strings["Save Bookmarks"] = ""; +App::$strings["Add to Calendar"] = ""; +App::$strings["Mark all seen"] = ""; +App::$strings["__ctx:noun__ Likes"] = ""; +App::$strings["__ctx:noun__ Dislikes"] = ""; +App::$strings["Close"] = ""; +App::$strings["This is an unsaved preview"] = ""; +App::$strings["Please wait"] = ""; +App::$strings["%s show all"] = ""; +App::$strings["This is you"] = ""; +App::$strings["Comment"] = ""; +App::$strings["Submit"] = ""; +App::$strings["Add Conversation Mentions"] = ""; +App::$strings["Bold"] = ""; +App::$strings["Italic"] = ""; +App::$strings["Underline"] = ""; +App::$strings["Quote"] = ""; +App::$strings["Code"] = ""; +App::$strings["Image"] = ""; +App::$strings["Attach/Upload file"] = ""; +App::$strings["Insert Link"] = ""; +App::$strings["Video"] = ""; +App::$strings["Preview"] = ""; +App::$strings["Encrypt text"] = ""; +App::$strings["Your full name (required)"] = ""; +App::$strings["Your email address (required)"] = ""; +App::$strings["Your website URL (optional)"] = ""; +App::$strings["Invalid request."] = ""; +App::$strings["channel"] = ""; +App::$strings["thing"] = ""; +App::$strings["Permission denied"] = ""; +App::$strings["event"] = ""; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; +App::$strings["Access list created."] = ""; +App::$strings["Could not create access list."] = ""; +App::$strings["Access list not found."] = ""; +App::$strings["Access list updated."] = ""; +App::$strings["Create access list"] = ""; +App::$strings["Access list name"] = ""; +App::$strings["Members are visible to other channels"] = ""; +App::$strings["Name"] = ""; +App::$strings["Members"] = ""; +App::$strings["Access list removed."] = ""; +App::$strings["Unable to remove access list."] = ""; +App::$strings["Access List: %s"] = ""; +App::$strings["Access list name: "] = ""; +App::$strings["Delete access list"] = ""; +App::$strings["List members"] = ""; +App::$strings["Not in this list"] = ""; +App::$strings["Click a channel to toggle membership"] = ""; +App::$strings["No such group"] = ""; +App::$strings["No such channel"] = ""; +App::$strings["Search Results For:"] = ""; +App::$strings["Reset form"] = ""; +App::$strings["Access list is empty"] = ""; +App::$strings["Access list: "] = ""; +App::$strings["Invalid channel."] = ""; +App::$strings["%s account blocked/unblocked"] = [ + 0 => "", + 1 => "", +]; +App::$strings["%s account deleted"] = [ + 0 => "", + 1 => "", +]; +App::$strings["Account not found"] = ""; +App::$strings["Account '%s' deleted"] = ""; +App::$strings["Account '%s' blocked"] = ""; +App::$strings["Account '%s' unblocked"] = ""; +App::$strings["Administration"] = ""; +App::$strings["Accounts"] = ""; +App::$strings["select all"] = ""; +App::$strings["Registrations waiting for confirm"] = ""; +App::$strings["Request date"] = ""; +App::$strings["Email"] = ""; +App::$strings["No registrations."] = ""; +App::$strings["Approve"] = ""; +App::$strings["Deny"] = ""; +App::$strings["Block"] = ""; +App::$strings["Unblock"] = ""; +App::$strings["ID"] = ""; +App::$strings["All Channels"] = ""; +App::$strings["Register date"] = ""; +App::$strings["Last login"] = ""; +App::$strings["Expires"] = ""; +App::$strings["Service Class"] = ""; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["%s channel censored/uncensored"] = [ + 0 => "", + 1 => "", +]; +App::$strings["%s channel code allowed/disallowed"] = [ + 0 => "", + 1 => "", +]; +App::$strings["%s channel deleted"] = [ + 0 => "", + 1 => "", +]; +App::$strings["Channel not found"] = ""; +App::$strings["Channel '%s' deleted"] = ""; +App::$strings["Channel '%s' censored"] = ""; +App::$strings["Channel '%s' uncensored"] = ""; +App::$strings["Channel '%s' code allowed"] = ""; +App::$strings["Channel '%s' code disallowed"] = ""; +App::$strings["Channels"] = ""; +App::$strings["Censor"] = ""; +App::$strings["Uncensor"] = ""; +App::$strings["Allow Code"] = ""; +App::$strings["Disallow Code"] = ""; +App::$strings["Channel"] = ""; +App::$strings["UID"] = ""; +App::$strings["Address"] = ""; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["Off"] = ""; +App::$strings["On"] = ""; +App::$strings["Lock feature %s"] = ""; +App::$strings["Manage Additional Features"] = ""; +App::$strings["Log settings updated."] = ""; +App::$strings["Logs"] = ""; +App::$strings["Clear"] = ""; +App::$strings["Debugging"] = ""; +App::$strings["Log file"] = ""; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Log level"] = ""; +App::$strings["New Profile Field"] = ""; +App::$strings["Field nickname"] = ""; +App::$strings["System name of field"] = ""; +App::$strings["Input type"] = ""; +App::$strings["Field Name"] = ""; +App::$strings["Label on profile pages"] = ""; +App::$strings["Help text"] = ""; +App::$strings["Additional info (optional)"] = ""; +App::$strings["Save"] = ""; +App::$strings["Field definition not found"] = ""; +App::$strings["Edit Profile Field"] = ""; +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["Queue Statistics"] = ""; +App::$strings["Total Entries"] = ""; +App::$strings["Priority"] = ""; +App::$strings["Destination URL"] = ""; +App::$strings["Mark hub permanently offline"] = ""; +App::$strings["Empty queue for this hub"] = ""; +App::$strings["Last known contact"] = ""; +App::$strings["Theme settings updated."] = ""; +App::$strings["No themes found."] = ""; +App::$strings["Item not found."] = ""; +App::$strings["Disable"] = ""; +App::$strings["Enable"] = ""; +App::$strings["Screenshot"] = ""; +App::$strings["Themes"] = ""; +App::$strings["Toggle"] = ""; +App::$strings["Author: "] = ""; +App::$strings["Maintainer: "] = ""; +App::$strings["[Experimental]"] = ""; +App::$strings["[Unsupported]"] = ""; +App::$strings["Plugin %s disabled."] = ""; +App::$strings["Plugin %s enabled."] = ""; +App::$strings["Addons"] = ""; +App::$strings["Minimum project version: "] = ""; +App::$strings["Maximum project version: "] = ""; +App::$strings["Minimum PHP version: "] = ""; +App::$strings["Compatible Server Roles: "] = ""; +App::$strings["Requires: "] = ""; +App::$strings["Disabled - version incompatibility"] = ""; +App::$strings["Enter the public git repository URL of the addon repo."] = ""; +App::$strings["Addon repo git URL"] = ""; +App::$strings["Custom repo name"] = ""; +App::$strings["(optional)"] = ""; +App::$strings["Download Addon Repo"] = ""; +App::$strings["Install new repo"] = ""; +App::$strings["Cancel"] = ""; +App::$strings["Manage Repos"] = ""; +App::$strings["Installed Addon Repositories"] = ""; +App::$strings["Install a New Addon Repository"] = ""; +App::$strings["Switch branch"] = ""; +App::$strings["Remove"] = ""; +App::$strings["Update has been marked successful"] = ""; +App::$strings["Verification of update %s failed. Check system logs."] = ""; +App::$strings["Update %s was successfully applied."] = ""; +App::$strings["Verifying update %s did not return a status. Unknown if it succeeded."] = ""; +App::$strings["Update %s does not contain a verification function."] = ""; +App::$strings["Update function %s could not be found."] = ""; +App::$strings["Executing update procedure %s failed. Check system logs."] = ""; +App::$strings["Update %s did not return a status. It cannot be determined if it was successful."] = ""; +App::$strings["Failed Updates"] = ""; +App::$strings["Mark success (if update was manually applied)"] = ""; +App::$strings["Attempt to verify this update if a verification procedure exists"] = ""; +App::$strings["Attempt to execute this update step automatically"] = ""; +App::$strings["No failed updates."] = ""; +App::$strings["Site settings updated."] = ""; +App::$strings["Default"] = ""; +App::$strings["%s - (Incompatible)"] = ""; +App::$strings["mobile"] = ""; +App::$strings["experimental"] = ""; +App::$strings["unsupported"] = ""; +App::$strings["Yes - with approval"] = ""; +App::$strings["My site is not a public server"] = ""; +App::$strings["My site provides free public access"] = ""; +App::$strings["My site provides paid public access"] = ""; +App::$strings["My site provides free public access and premium paid plans"] = ""; +App::$strings["Default permission role for new accounts"] = ""; +App::$strings["This role will be used for the first channel created after registration."] = ""; +App::$strings["Site"] = ""; +App::$strings["Site Configuration"] = ""; +App::$strings["Registration"] = ""; +App::$strings["File upload"] = ""; +App::$strings["Policies"] = ""; +App::$strings["Advanced"] = ""; +App::$strings["Site name"] = ""; +App::$strings["Banner/Logo"] = ""; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = ""; +App::$strings["Administrator Information"] = ""; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode may be used here."] = ""; +App::$strings["Site Information"] = ""; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode may be used here."] = ""; +App::$strings["System language"] = ""; +App::$strings["System theme"] = ""; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +App::$strings["Allow Feeds as Connections"] = ""; +App::$strings["(Heavy system resource usage)"] = ""; +App::$strings["Maximum image size"] = ""; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +App::$strings["Does this site allow new member registration?"] = ""; +App::$strings["Invitation only"] = ""; +App::$strings["Only allow new member registrations with an invitation code. New member registration must be allowed for this to work."] = ""; +App::$strings["Minimum age"] = ""; +App::$strings["Minimum age (in years) for who may register on this site."] = ""; +App::$strings["Which best describes the types of account offered by this hub?"] = ""; +App::$strings["If a public server policy is selected, this information may be displayed on the public server site list."] = ""; +App::$strings["Register text"] = ""; +App::$strings["Will be displayed prominently on the registration page."] = ""; +App::$strings["Site homepage to show visitors (default: login box)"] = ""; +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."] = ""; +App::$strings["Preserve site homepage URL"] = ""; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = ""; +App::$strings["Accounts abandoned after x days"] = ""; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +App::$strings["Allowed friend domains"] = ""; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Verify Email Addresses"] = ""; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; +App::$strings["Force publish"] = ""; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +App::$strings["Import Public Streams"] = ""; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = ""; +App::$strings["Site only Public Streams"] = ""; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = ""; +App::$strings["Allow anybody on the internet to access the Public streams"] = ""; +App::$strings["Default is to only allow viewing by site members. Warning: this content is unmoderated."] = ""; +App::$strings["Only import Public stream posts with this text"] = ""; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = ""; +App::$strings["Do not import Public stream posts with this text"] = ""; +App::$strings["Login on Homepage"] = ""; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = ""; +App::$strings["Enable context help"] = ""; +App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; +App::$strings["Reply-to email address for system generated email."] = ""; +App::$strings["Sender (From) email address for system generated email."] = ""; +App::$strings["Name of email sender for system generated email."] = ""; +App::$strings["Directory Server URL"] = ""; +App::$strings["Default directory server"] = ""; +App::$strings["Proxy user"] = ""; +App::$strings["Proxy URL"] = ""; +App::$strings["Network timeout"] = ""; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +App::$strings["Delivery interval"] = ""; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +App::$strings["Deliveries per process"] = ""; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = ""; +App::$strings["Queue Threshold"] = ""; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = ""; +App::$strings["Poll interval"] = ""; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +App::$strings["Path to ImageMagick convert program"] = ""; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = ""; +App::$strings["Allow SVG thumbnails in file browser"] = ""; +App::$strings["WARNING: SVG images may contain malicious code."] = ""; +App::$strings["Maximum Load Average"] = ""; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +App::$strings["Expiration period in days for imported (grid/network) content"] = ""; +App::$strings["0 for no expiration of imported content"] = ""; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = ""; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = ""; +App::$strings["Create this page first. Default is %s/register"] = ""; +App::$strings["Page to display after creating a new channel"] = ""; +App::$strings["Default: profiles"] = ""; +App::$strings["Optional: site location"] = ""; +App::$strings["Region or country"] = ""; +App::$strings["Password changed for account %d."] = ""; +App::$strings["Account settings updated."] = ""; +App::$strings["Account not found."] = ""; +App::$strings["Account Edit"] = ""; +App::$strings["New Password"] = ""; +App::$strings["New Password again"] = ""; +App::$strings["Account language (for emails)"] = ""; +App::$strings["Service class"] = ""; +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"] = ""; +App::$strings["Block public"] = ""; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = ""; +App::$strings["Block public search"] = ""; +App::$strings["Prevent access to search content unless you are currently authenticated."] = ""; +App::$strings["Hide local directory"] = ""; +App::$strings["Only use the global directory"] = ""; +App::$strings["Provide a cloud root directory"] = ""; +App::$strings["The cloud root directory lists all channel names which provide public files"] = ""; +App::$strings["Show total disk space available to cloud uploads"] = ""; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; +App::$strings["Allowed email domains"] = ""; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Not allowed email domains"] = ""; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; +App::$strings["Allow communications only from these sites"] = ""; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = ""; +App::$strings["Block communications from these sites"] = ""; +App::$strings["Allow communications only from these channels"] = ""; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = ""; +App::$strings["Block communications from these channels"] = ""; +App::$strings["Allow public stream communications only from these sites"] = ""; +App::$strings["Block public stream communications from these sites"] = ""; +App::$strings["Allow public stream communications only from these channels"] = ""; +App::$strings["Block public stream communications from these channels"] = ""; +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"] = ""; +App::$strings["Event can not end before it has started."] = ""; +App::$strings["Unable to generate preview."] = ""; +App::$strings["Event title and start time are required."] = ""; +App::$strings["Event not found."] = ""; +App::$strings["Edit event"] = ""; +App::$strings["Delete event"] = ""; +App::$strings["Link to source"] = ""; +App::$strings["calendar"] = ""; +App::$strings["Failed to remove event"] = ""; +App::$strings["Authorize application connection"] = ""; +App::$strings["Return to your app and insert this Security Code:"] = ""; +App::$strings["Please login to continue."] = ""; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +App::$strings["App installed."] = ""; +App::$strings["Malformed app."] = ""; +App::$strings["Embed code"] = ""; +App::$strings["Edit App"] = ""; +App::$strings["Create App"] = ""; +App::$strings["Name of app"] = ""; +App::$strings["Required"] = ""; +App::$strings["Location (URL) of app"] = ""; +App::$strings["Description"] = ""; +App::$strings["Photo icon URL"] = ""; +App::$strings["80 x 80 pixels - optional"] = ""; +App::$strings["Categories (optional, comma separated list)"] = ""; +App::$strings["Version ID"] = ""; +App::$strings["Price of app"] = ""; +App::$strings["Location (URL) to purchase app"] = ""; +App::$strings["Change Order of Pinned Navbar Apps"] = ""; +App::$strings["Change Order of App Tray Apps"] = ""; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = ""; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = ""; +App::$strings["Available Apps"] = ""; +App::$strings["Installed Apps"] = ""; +App::$strings["Manage apps"] = ""; +App::$strings["Create Custom App"] = ""; +App::$strings["No channel."] = ""; +App::$strings["No connections in common."] = ""; +App::$strings["View Common Connections"] = ""; +App::$strings["Item not available."] = ""; +App::$strings["Unknown App"] = ""; +App::$strings["Authorize"] = ""; +App::$strings["Do you authorize the app %s to access your channel data?"] = ""; +App::$strings["Allow"] = ""; +App::$strings["Channel not found."] = ""; +App::$strings["Permissions denied."] = ""; +App::$strings["l, F j"] = ""; +App::$strings["Link to Source"] = ""; +App::$strings["Edit Event"] = ""; +App::$strings["Create Event"] = ""; +App::$strings["Previous"] = ""; +App::$strings["Next"] = ""; +App::$strings["Import"] = ""; +App::$strings["Today"] = ""; +App::$strings["Expiration settings updated."] = ""; +App::$strings["This app allows you to set an optional expiration date/time for posts, after which they will be deleted. This must be at least fifteen minutes into the future. You may also choose to automatically delete all your posts after a set number of days"] = ""; +App::$strings["Expire and delete all my posts after this many days"] = ""; +App::$strings["Leave at 0 if you wish to manually control expiration of specific posts."] = ""; +App::$strings["Automatic Expiration Settings"] = ""; +App::$strings["Blocked accounts"] = ""; +App::$strings["Expired accounts"] = ""; +App::$strings["Expiring accounts"] = ""; +App::$strings["Primary"] = ""; +App::$strings["Clones"] = ""; +App::$strings["Message queues"] = ""; +App::$strings["Your software should be updated"] = ""; +App::$strings["Summary"] = ""; +App::$strings["Registered accounts"] = ""; +App::$strings["Pending registrations"] = ""; +App::$strings["Registered channels"] = ""; +App::$strings["Active addons"] = ""; +App::$strings["Version"] = ""; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; +App::$strings["Invalid item."] = ""; +App::$strings["Page not found."] = ""; +App::$strings["Create personal planning cards"] = ""; +App::$strings["Add Card"] = ""; +App::$strings["Create"] = ""; +App::$strings["Block Name"] = ""; +App::$strings["Blocks"] = ""; +App::$strings["Block Title"] = ""; +App::$strings["Created"] = ""; +App::$strings["Edited"] = ""; +App::$strings["Share"] = ""; +App::$strings["View"] = ""; +App::$strings["Calendar entries imported."] = ""; +App::$strings["No calendar entries found."] = ""; +App::$strings["INVALID EVENT DISMISSED!"] = ""; +App::$strings["Summary: "] = ""; +App::$strings["Date: "] = ""; +App::$strings["Reason: "] = ""; +App::$strings["INVALID CARD DISMISSED!"] = ""; +App::$strings["Name: "] = ""; +App::$strings["CardDAV App"] = ""; +App::$strings["Not Installed"] = ""; +App::$strings["CalDAV capable addressbook"] = ""; +App::$strings["Event title"] = ""; +App::$strings["Start date and time"] = ""; +App::$strings["End date and time"] = ""; +App::$strings["Location"] = ""; +App::$strings["Month"] = ""; +App::$strings["Week"] = ""; +App::$strings["Day"] = ""; +App::$strings["List month"] = ""; +App::$strings["List week"] = ""; +App::$strings["List day"] = ""; +App::$strings["More"] = ""; +App::$strings["Less"] = ""; +App::$strings["Select calendar"] = ""; +App::$strings["Channel Calendars"] = ""; +App::$strings["CalDAV Calendars"] = ""; +App::$strings["Delete all"] = ""; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = ""; +App::$strings["Organisation"] = ""; +App::$strings["Title"] = ""; +App::$strings["Phone"] = ""; +App::$strings["Instant messenger"] = ""; +App::$strings["Website"] = ""; +App::$strings["Note"] = ""; +App::$strings["Mobile"] = ""; +App::$strings["Home"] = ""; +App::$strings["Work"] = ""; +App::$strings["Other"] = ""; +App::$strings["Add Contact"] = ""; +App::$strings["Add Field"] = ""; +App::$strings["P.O. Box"] = ""; +App::$strings["Additional"] = ""; +App::$strings["Street"] = ""; +App::$strings["Locality"] = ""; +App::$strings["Region"] = ""; +App::$strings["ZIP Code"] = ""; +App::$strings["Country"] = ""; +App::$strings["Default Calendar"] = ""; +App::$strings["Default Addressbook"] = ""; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Reserved nickname. Please choose another."] = ""; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; +App::$strings["Feature has been disabled"] = ""; +App::$strings["Change channel nickname/address"] = ""; +App::$strings["WARNING: "] = ""; +App::$strings["Any/all connections on other networks will be lost!"] = ""; +App::$strings["Please enter your password for verification:"] = ""; +App::$strings["New channel address"] = ""; +App::$strings["Rename Channel"] = ""; +App::$strings["toggle full screen mode"] = ""; +App::$strings["Documentation Search"] = ""; +App::$strings["About"] = ""; +App::$strings["Administrators"] = ""; +App::$strings["Developers"] = ""; +App::$strings["Tutorials"] = ""; +App::$strings["\$Projectname Documentation"] = ""; +App::$strings["Contents"] = ""; +App::$strings["Away"] = ""; +App::$strings["Online"] = ""; +App::$strings["Continue"] = ""; +App::$strings["Premium Channel Setup"] = ""; +App::$strings["Enable premium channel connection restrictions"] = ""; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; +App::$strings["Potential connections will then see the following text before proceeding:"] = ""; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; +App::$strings["Restricted or Premium Channel"] = ""; +App::$strings["Active"] = ""; +App::$strings["Blocked"] = ""; +App::$strings["Ignored"] = ""; +App::$strings["Hidden"] = ""; +App::$strings["Archived/Unreachable"] = ""; +App::$strings["New"] = ""; +App::$strings["All"] = ""; +App::$strings["Active Connections"] = ""; +App::$strings["Show active connections"] = ""; +App::$strings["New Connections"] = ""; +App::$strings["Show pending (new) connections"] = ""; +App::$strings["Only show blocked connections"] = ""; +App::$strings["Only show ignored connections"] = ""; +App::$strings["Only show archived/unreachable connections"] = ""; +App::$strings["Only show hidden connections"] = ""; +App::$strings["All Connections"] = ""; +App::$strings["Show all connections"] = ""; +App::$strings["Pending approval"] = ""; +App::$strings["Archived"] = ""; +App::$strings["Not connected at this location"] = ""; +App::$strings["%1\$s [%2\$s]"] = ""; +App::$strings["Edit connection"] = ""; +App::$strings["Delete connection"] = ""; +App::$strings["Channel address"] = ""; +App::$strings["Network"] = ""; +App::$strings["Call"] = ""; +App::$strings["Status"] = ""; +App::$strings["Connected"] = ""; +App::$strings["Approve connection"] = ""; +App::$strings["Ignore connection"] = ""; +App::$strings["Ignore"] = ""; +App::$strings["Recent activity"] = ""; +App::$strings["Search your connections"] = ""; +App::$strings["Connections search"] = ""; +App::$strings["Find"] = ""; +App::$strings["Page owner information could not be retrieved."] = ""; +App::$strings["Album not found."] = ""; +App::$strings["Delete Album"] = ""; +App::$strings["Delete Photo"] = ""; +App::$strings["Public access denied."] = ""; +App::$strings["No photos selected"] = ""; +App::$strings["Access to this item is restricted."] = ""; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; +App::$strings["%1$.2f MB photo storage used."] = ""; +App::$strings["Upload Photos"] = ""; +App::$strings["Enter an album name"] = ""; +App::$strings["or select an existing album (doubleclick)"] = ""; +App::$strings["Create a status post for this upload"] = ""; +App::$strings["Title (optional)"] = ""; +App::$strings["Description (optional)"] = ""; +App::$strings["Permissions"] = ""; +App::$strings["Upload"] = ""; +App::$strings["Show Newest First"] = ""; +App::$strings["Show Oldest First"] = ""; +App::$strings["View Photo"] = ""; +App::$strings["Edit Album"] = ""; +App::$strings["Add Photos"] = ""; +App::$strings["Permission denied. Access to this item may be restricted."] = ""; +App::$strings["Photo not available"] = ""; +App::$strings["Use as profile photo"] = ""; +App::$strings["Use as cover photo"] = ""; +App::$strings["Private Photo"] = ""; +App::$strings["View Full Size"] = ""; +App::$strings["Edit photo"] = ""; +App::$strings["Move photo to album"] = ""; +App::$strings["Enter a new album name"] = ""; +App::$strings["or select an existing one (doubleclick)"] = ""; +App::$strings["Add a Tag"] = ""; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = ""; +App::$strings["Flag as adult in album view"] = ""; +App::$strings["__ctx:title__ Likes"] = ""; +App::$strings["__ctx:title__ Dislikes"] = ""; +App::$strings["__ctx:title__ Attending"] = ""; +App::$strings["__ctx:title__ Not attending"] = ""; +App::$strings["__ctx:title__ Might attend"] = ""; +App::$strings["Photo Tools"] = ""; +App::$strings["In This Photo:"] = ""; +App::$strings["Map"] = ""; +App::$strings["Recent Photos"] = ""; +App::$strings["Image uploaded but image cropping failed."] = ""; +App::$strings["Cover Photos"] = ""; +App::$strings["Image resize failed."] = ""; +App::$strings["Unable to process image"] = ""; +App::$strings["female"] = ""; +App::$strings["%1\$s updated her %2\$s"] = ""; +App::$strings["male"] = ""; +App::$strings["%1\$s updated his %2\$s"] = ""; +App::$strings["%1\$s updated their %2\$s"] = ""; +App::$strings["cover photo"] = ""; +App::$strings["Photo not available."] = ""; +App::$strings["Your cover photo may be visible to anybody on the internet"] = ""; +App::$strings["Upload File:"] = ""; +App::$strings["Select a profile:"] = ""; +App::$strings["Change Cover Photo"] = ""; +App::$strings["Use a photo from your albums"] = ""; +App::$strings["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["Select existing photo"] = ""; +App::$strings["Crop Image"] = ""; +App::$strings["Please adjust the image cropping for optimum viewing."] = ""; +App::$strings["Done Editing"] = ""; +App::$strings["Could not access contact record."] = ""; +App::$strings["Settings updated."] = ""; +App::$strings["Connection Default Permissions"] = ""; +App::$strings["Apply these permissions automatically"] = ""; +App::$strings["If enabled, connection requests will be approved without your interaction"] = ""; +App::$strings["Permission role"] = ""; +App::$strings["Loading"] = ""; +App::$strings["Add permission role"] = ""; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = ""; +App::$strings["Automatic approval settings"] = ""; +App::$strings["inherited"] = ""; +App::$strings["My Settings"] = ""; +App::$strings["Individual Permissions"] = ""; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; +App::$strings["Welcome to Hubzilla!"] = ""; +App::$strings["You have got no unseen posts..."] = ""; +App::$strings["Item not found"] = ""; +App::$strings["Item is not editable"] = ""; +App::$strings["Edit post"] = ""; +App::$strings["Invalid message"] = ""; +App::$strings["no results"] = ""; +App::$strings["channel sync processed"] = ""; +App::$strings["queued"] = ""; +App::$strings["posted"] = ""; +App::$strings["accepted for delivery"] = ""; +App::$strings["updated"] = ""; +App::$strings["update ignored"] = ""; +App::$strings["permission denied"] = ""; +App::$strings["recipient not found"] = ""; +App::$strings["mail recalled"] = ""; +App::$strings["duplicate mail received"] = ""; +App::$strings["mail delivered"] = ""; +App::$strings["Delivery report for %1\$s"] = ""; +App::$strings["Options"] = ""; +App::$strings["Redeliver"] = ""; +App::$strings["Layout Name"] = ""; +App::$strings["Layout Description (Optional)"] = ""; +App::$strings["Edit Layout"] = ""; +App::$strings["Nothing to import."] = ""; +App::$strings["Unable to download data from old server"] = ""; +App::$strings["Imported file is empty."] = ""; +App::$strings["Your service plan only allows %d channels."] = ""; +App::$strings["No channel. Import failed."] = ""; +App::$strings["Import completed."] = ""; +App::$strings["You must be logged in to use this feature."] = ""; +App::$strings["Import Channel"] = ""; +App::$strings["Use this form to import an existing channel from a different server. You may retrieve the channel identity from the old server via the network or provide an export file."] = ""; +App::$strings["File to Upload"] = ""; +App::$strings["Or provide the old server details"] = ""; +App::$strings["Your old identity address (xyz@example.com)"] = ""; +App::$strings["Your old login email address"] = ""; +App::$strings["Your old login password"] = ""; +App::$strings["Import a few months of posts if possible (limited by available memory"] = ""; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; +App::$strings["Make this hub my primary location"] = ""; +App::$strings["Move this channel (disable all previous locations)"] = ""; +App::$strings["Use this channel nickname instead of the one provided"] = ""; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = ""; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = ""; +App::$strings["Page link"] = ""; +App::$strings["Insert web link"] = ""; +App::$strings["Edit Webpage"] = ""; +App::$strings["Token verification failed."] = ""; +App::$strings["Email verification resent"] = ""; +App::$strings["Unable to resend email verification message."] = ""; +App::$strings["Email Verification Required"] = ""; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = ""; +App::$strings["Resend Email"] = ""; +App::$strings["Validation token"] = ""; +App::$strings["Connection added."] = ""; +App::$strings["Total invitation limit exceeded."] = ""; +App::$strings["%s : Not a valid email address."] = ""; +App::$strings["Please join us on \$Projectname"] = ""; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; +App::$strings["%s : Message delivery failed."] = ""; +App::$strings["%d message sent."] = [ + 0 => "", + 1 => "", +]; +App::$strings["Send email invitations to join this network"] = ""; +App::$strings["You have no more invitations available"] = ""; +App::$strings["Send invitations"] = ""; +App::$strings["Enter email addresses, one per line:"] = ""; +App::$strings["Your message:"] = ""; +App::$strings["Please join my community on \$Projectname."] = ""; +App::$strings["You will need to supply this invitation code:"] = ""; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = ""; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = ""; +App::$strings["or visit"] = ""; +App::$strings["3. Click [Connect]"] = ""; +App::$strings["This app allows you to disable comments on individual posts."] = ""; +App::$strings["This app is installed. A button to control the ability to comment may be found below the post editor."] = ""; +App::$strings["Enter a folder name"] = ""; +App::$strings["or select an existing folder (doubleclick)"] = ""; +App::$strings["File not found."] = ""; +App::$strings["Permission Denied."] = ""; +App::$strings["Edit file permissions"] = ""; +App::$strings["Set/edit permissions"] = ""; +App::$strings["Include all files and sub folders"] = ""; +App::$strings["Return to file list"] = ""; +App::$strings["Copy/paste this code to attach file to a post"] = ""; +App::$strings["Copy/paste this URL to link file from a web page"] = ""; +App::$strings["Share this file"] = ""; +App::$strings["Show URL to this file"] = ""; +App::$strings["Show in your contacts shared folder"] = ""; +App::$strings["Entry censored"] = ""; +App::$strings["webpage"] = ""; +App::$strings["block"] = ""; +App::$strings["layout"] = ""; +App::$strings["menu"] = ""; +App::$strings["%s element installed"] = ""; +App::$strings["%s element installation failed"] = ""; +App::$strings["Thing updated"] = ""; +App::$strings["Object store: failed"] = ""; +App::$strings["Thing added"] = ""; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +App::$strings["Show Thing"] = ""; +App::$strings["item not found."] = ""; +App::$strings["Edit Thing"] = ""; +App::$strings["Select a profile"] = ""; +App::$strings["Post an activity"] = ""; +App::$strings["Only sends to viewers of the applicable profile"] = ""; +App::$strings["Name of thing e.g. something"] = ""; +App::$strings["URL of thing (optional)"] = ""; +App::$strings["URL for photo of thing (optional)"] = ""; +App::$strings["Add Thing to your Profile"] = ""; +App::$strings["You must be logged in to see this page."] = ""; +App::$strings["Access Controlled Chatrooms"] = ""; +App::$strings["Room not found"] = ""; +App::$strings["Leave Room"] = ""; +App::$strings["Delete Room"] = ""; +App::$strings["I am away right now"] = ""; +App::$strings["I am online"] = ""; +App::$strings["Please enter a link URL:"] = ""; +App::$strings["New Chatroom"] = ""; +App::$strings["Chatroom name"] = ""; +App::$strings["Expiration of chats (minutes)"] = ""; +App::$strings["%1\$s's Chatrooms"] = ""; +App::$strings["No chatrooms available"] = ""; +App::$strings["Create New"] = ""; +App::$strings["Expiration"] = ""; +App::$strings["min"] = ""; +App::$strings["Location not found."] = ""; +App::$strings["Location lookup failed."] = ""; +App::$strings["Please select another location to become primary before removing the primary location."] = ""; +App::$strings["Pushing location info"] = ""; +App::$strings["No locations found."] = ""; +App::$strings["Manage Channel Locations"] = ""; +App::$strings["Drop"] = ""; +App::$strings["Publish these settings"] = ""; +App::$strings["Please wait several minutes between consecutive operations."] = ""; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = ""; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = ""; +App::$strings["You must enable javascript for your browser to be able to view this content."] = ""; +App::$strings["Article"] = ""; +App::$strings["Item has been removed."] = ""; +App::$strings["Posts and comments"] = ""; +App::$strings["Only posts"] = ""; +App::$strings["Layouts"] = ""; +App::$strings["Layout Description"] = ""; +App::$strings["Download PDL file"] = ""; +App::$strings["Welcome to %s"] = ""; +App::$strings["Edit Card"] = ""; +App::$strings["Warning: Database versions differ by %1\$d updates."] = ""; +App::$strings["Import completed"] = ""; +App::$strings["Import Items"] = ""; +App::$strings["Use this form to import existing posts and content from an export file."] = ""; +App::$strings["Not found"] = ""; +App::$strings["Please refresh page"] = ""; +App::$strings["Unknown error"] = ""; +App::$strings["Group"] = ""; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; +App::$strings["Create a new channel"] = ""; +App::$strings["Current Channel"] = ""; +App::$strings["Switch to one of your channels by selecting it."] = ""; +App::$strings["Default Channel"] = ""; +App::$strings["Make Default"] = ""; +App::$strings["%d new messages"] = ""; +App::$strings["%d new introductions"] = ""; +App::$strings["Delegated Channel"] = ""; +App::$strings["Change UI language"] = ""; +App::$strings["Menu not found."] = ""; +App::$strings["Unable to create element."] = ""; +App::$strings["Unable to update menu element."] = ""; +App::$strings["Unable to add menu element."] = ""; +App::$strings["Not found."] = ""; +App::$strings["Menu Item Permissions"] = ""; +App::$strings["(click to open/close)"] = ""; +App::$strings["Link Name"] = ""; +App::$strings["Link or Submenu Target"] = ""; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; +App::$strings["Use magic-auth if available"] = ""; +App::$strings["Open link in new window"] = ""; +App::$strings["Order in list"] = ""; +App::$strings["Higher numbers will sink to bottom of listing"] = ""; +App::$strings["Submit and finish"] = ""; +App::$strings["Submit and continue"] = ""; +App::$strings["Menu:"] = ""; +App::$strings["Link Target"] = ""; +App::$strings["Edit menu"] = ""; +App::$strings["Edit element"] = ""; +App::$strings["Drop element"] = ""; +App::$strings["New element"] = ""; +App::$strings["Edit this menu container"] = ""; +App::$strings["Add menu element"] = ""; +App::$strings["Delete this menu item"] = ""; +App::$strings["Edit this menu item"] = ""; +App::$strings["Menu item not found."] = ""; +App::$strings["Menu item deleted."] = ""; +App::$strings["Menu item could not be deleted."] = ""; +App::$strings["Edit Menu Element"] = ""; +App::$strings["Link text"] = ""; +App::$strings["Webfinger Diagnostic"] = ""; +App::$strings["Lookup address or URL"] = ""; +App::$strings["Edit Block"] = ""; +App::$strings["Remote privacy information not available."] = ""; +App::$strings["Visible to:"] = ""; +App::$strings["__ctx:acl__ Profile"] = ""; +App::$strings["No valid account found."] = ""; +App::$strings["Password reset request issued. Check your email."] = ""; +App::$strings["Site Member (%s)"] = ""; +App::$strings["Password reset requested at %s"] = ""; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; +App::$strings["Password Reset"] = ""; +App::$strings["Your password has been reset as requested."] = ""; +App::$strings["Your new password is"] = ""; +App::$strings["Save or copy your new password - and then"] = ""; +App::$strings["click here to login"] = ""; +App::$strings["Your password may be changed from the Settings page after successful login."] = ""; +App::$strings["Your password has changed at %s"] = ""; +App::$strings["Forgot your Password?"] = ""; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; +App::$strings["Email Address"] = ""; +App::$strings["Reset"] = ""; +App::$strings["Unable to update menu."] = ""; +App::$strings["Unable to create menu."] = ""; +App::$strings["Menu Name"] = ""; +App::$strings["Unique name (not visible on webpage) - required"] = ""; +App::$strings["Menu Title"] = ""; +App::$strings["Visible on webpage - leave empty for no title"] = ""; +App::$strings["Allow Bookmarks"] = ""; +App::$strings["Menu may be used to store saved bookmarks"] = ""; +App::$strings["Submit and proceed"] = ""; +App::$strings["Menus"] = ""; +App::$strings["Bookmarks allowed"] = ""; +App::$strings["Delete this menu"] = ""; +App::$strings["Edit menu contents"] = ""; +App::$strings["Edit this menu"] = ""; +App::$strings["Menu could not be deleted."] = ""; +App::$strings["Edit Menu"] = ""; +App::$strings["Add or remove entries to this menu"] = ""; +App::$strings["Menu name"] = ""; +App::$strings["Must be unique, only seen by you"] = ""; +App::$strings["Menu title"] = ""; +App::$strings["Menu title as seen by others"] = ""; +App::$strings["Allow bookmarks"] = ""; +App::$strings["This setting requires special processing and editing has been blocked."] = ""; +App::$strings["Configuration Editor"] = ""; +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."] = ""; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; +App::$strings["Passwords do not match."] = ""; +App::$strings["Registration successful. Continue to create your first channel..."] = ""; +App::$strings["Registration successful. Please check your email for validation instructions."] = ""; +App::$strings["Your registration is pending approval by the site owner."] = ""; +App::$strings["Your registration can not be processed."] = ""; +App::$strings["Registration on this hub is disabled."] = ""; +App::$strings["Registration on this hub is by approval only."] = ""; +App::$strings["Register at another affiliated hub."] = ""; +App::$strings["Registration on this hub is by invitation only."] = ""; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +App::$strings["Terms of Service"] = ""; +App::$strings["I accept the %s for this website"] = ""; +App::$strings["I am over %s years of age and accept the %s for this website"] = ""; +App::$strings["Your email address"] = ""; +App::$strings["Choose a password"] = ""; +App::$strings["Please re-enter your password"] = ""; +App::$strings["Please enter your invitation code"] = ""; +App::$strings["Your Name"] = ""; +App::$strings["Real names are preferred."] = ""; +App::$strings["Choose a short nickname"] = ""; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = ""; +App::$strings["Channel role and privacy"] = ""; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = ""; +App::$strings["no"] = ""; +App::$strings["yes"] = ""; +App::$strings["Register"] = ""; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = ""; +App::$strings["Post repeated"] = ""; +App::$strings["Unable to locate original post."] = ""; +App::$strings["Comment may be moderated."] = ""; +App::$strings["Empty post discarded."] = ""; +App::$strings["Duplicate post suppressed."] = ""; +App::$strings["System error. Post not saved."] = ""; +App::$strings["Your post/comment is awaiting approval."] = ""; +App::$strings["Unable to obtain post information from database."] = ""; +App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; +App::$strings["You have reached your limit of %1$.0f webpages."] = ""; +App::$strings["sent you a private message"] = ""; +App::$strings["added your channel"] = ""; +App::$strings["requires approval"] = ""; +App::$strings["g A l F d"] = ""; +App::$strings["[today]"] = ""; +App::$strings["posted an event"] = ""; +App::$strings["shared a file with you"] = ""; +App::$strings["reported content"] = ""; +App::$strings["Private forum"] = ""; +App::$strings["Public forum"] = ""; +App::$strings["item"] = ""; +App::$strings["Your real name is recommended."] = ""; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = ""; +App::$strings["This will be used to create a unique network address (like an email address)."] = ""; +App::$strings["Allowed characters are a-z 0-9, - and _"] = ""; +App::$strings["Channel name"] = ""; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = ""; +App::$strings["Create a Channel"] = ""; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = ""; +App::$strings["or import an existing channel from another location."] = ""; +App::$strings["Validate"] = ""; +App::$strings["No more system notifications."] = ""; +App::$strings["System Notifications"] = ""; +App::$strings["Could not locate selected profile."] = ""; +App::$strings["Connection updated."] = ""; +App::$strings["Failed to update connection record."] = ""; +App::$strings["is now connected to"] = ""; +App::$strings["Could not access address book record."] = ""; +App::$strings["Refresh failed - channel is currently unavailable."] = ""; +App::$strings["Unable to set address book parameters."] = ""; +App::$strings["Connection has been removed."] = ""; +App::$strings["View %s's profile"] = ""; +App::$strings["Refresh Permissions"] = ""; +App::$strings["Fetch updated permissions"] = ""; +App::$strings["Refresh Photo"] = ""; +App::$strings["Fetch updated photo"] = ""; +App::$strings["Recent Activity"] = ""; +App::$strings["View recent posts and comments"] = ""; +App::$strings["Block (or Unblock) all communications with this connection"] = ""; +App::$strings["This connection is blocked!"] = ""; +App::$strings["Unignore"] = ""; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = ""; +App::$strings["This connection is ignored!"] = ""; +App::$strings["Unarchive"] = ""; +App::$strings["Archive"] = ""; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = ""; +App::$strings["This connection is archived!"] = ""; +App::$strings["Unhide"] = ""; +App::$strings["Hide"] = ""; +App::$strings["Hide or Unhide this connection from your other connections"] = ""; +App::$strings["This connection is hidden!"] = ""; +App::$strings["Delete this connection"] = ""; +App::$strings["Fetch Vcard"] = ""; +App::$strings["Fetch electronic calling card for this connection"] = ""; +App::$strings["Open Individual Permissions section by default"] = ""; +App::$strings["Affinity"] = ""; +App::$strings["Open Set Affinity section by default"] = ""; +App::$strings["Me"] = ""; +App::$strings["Family"] = ""; +App::$strings["Friends"] = ""; +App::$strings["Peers"] = ""; +App::$strings["Filter"] = ""; +App::$strings["Open Custom Filter section by default"] = ""; +App::$strings["Approve this connection"] = ""; +App::$strings["Accept connection to allow communication"] = ""; +App::$strings["Set Affinity"] = ""; +App::$strings["Set Profile"] = ""; +App::$strings["Set Affinity & Profile"] = ""; +App::$strings["This connection is unreachable from this location."] = ""; +App::$strings["This connection may be unreachable from other channel locations."] = ""; +App::$strings["Location independence is not supported by their network."] = ""; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = ""; +App::$strings["Connection: %s"] = ""; +App::$strings["Connection requests will be approved without your interaction"] = ""; +App::$strings["This connection's primary address is"] = ""; +App::$strings["Available locations:"] = ""; +App::$strings["Connection Tools"] = ""; +App::$strings["Slide to adjust your degree of friendship"] = ""; +App::$strings["Rating"] = ""; +App::$strings["Slide to adjust your rating"] = ""; +App::$strings["Optionally explain your rating"] = ""; +App::$strings["Custom Filter"] = ""; +App::$strings["Only import posts with this text"] = ""; +App::$strings["words one per line or #tags, \$categories, /patterns/, or lang=xx, leave blank to import all posts"] = ""; +App::$strings["Do not import posts with this text"] = ""; +App::$strings["This information is public!"] = ""; +App::$strings["Connection Pending Approval"] = ""; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +App::$strings["Their Settings"] = ""; +App::$strings["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."] = ""; +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."] = ""; +App::$strings["Last update:"] = ""; +App::$strings["Details"] = ""; +App::$strings["No entries."] = ""; +App::$strings["Comment approved"] = ""; +App::$strings["Comment deleted"] = ""; +App::$strings["Unable to find your hub."] = ""; +App::$strings["Post successful."] = ""; +App::$strings["Public 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."] = ""; +App::$strings["Hub URL"] = ""; +App::$strings["Access Type"] = ""; +App::$strings["Registration Policy"] = ""; +App::$strings["Software"] = ""; +App::$strings["Provide managed web pages on your channel"] = ""; +App::$strings["Import Webpage Elements"] = ""; +App::$strings["Import selected"] = ""; +App::$strings["Export Webpage Elements"] = ""; +App::$strings["Export selected"] = ""; +App::$strings["Actions"] = ""; +App::$strings["Page Link"] = ""; +App::$strings["Page Title"] = ""; +App::$strings["Invalid file type."] = ""; +App::$strings["Error opening zip file"] = ""; +App::$strings["Invalid folder path."] = ""; +App::$strings["No webpage elements detected."] = ""; +App::$strings["Import complete."] = ""; +App::$strings["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["vcard"] = ""; +App::$strings["network"] = ""; +App::$strings["Layout updated."] = ""; +App::$strings["Edit System Page Description"] = ""; +App::$strings["(modified)"] = ""; +App::$strings["Layout not found."] = ""; +App::$strings["Module Name:"] = ""; +App::$strings["Layout Help"] = ""; +App::$strings["Edit another layout"] = ""; +App::$strings["System layout"] = ""; +App::$strings["Profile not found."] = ""; +App::$strings["Profile deleted."] = ""; +App::$strings["Profile-"] = ""; +App::$strings["New profile created."] = ""; +App::$strings["Profile unavailable to clone."] = ""; +App::$strings["Profile unavailable to export."] = ""; +App::$strings["Profile Name is required."] = ""; +App::$strings["Marital Status"] = ""; +App::$strings["Romantic Partner"] = ""; +App::$strings["Likes"] = ""; +App::$strings["Dislikes"] = ""; +App::$strings["Work/Employment"] = ""; +App::$strings["Religion"] = ""; +App::$strings["Political Views"] = ""; +App::$strings["Gender"] = ""; +App::$strings["Sexual Preference"] = ""; +App::$strings["Homepage"] = ""; +App::$strings["Interests"] = ""; +App::$strings["Profile updated."] = ""; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = ""; +App::$strings["View this profile"] = ""; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Create a new profile using these settings"] = ""; +App::$strings["Clone this profile"] = ""; +App::$strings["Delete this profile"] = ""; +App::$strings["Add profile things"] = ""; +App::$strings["Personal"] = ""; +App::$strings["Relationship"] = ""; +App::$strings["Miscellaneous"] = ""; +App::$strings["Import profile from file"] = ""; +App::$strings["Export profile to file"] = ""; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +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["Who (if applicable)"] = ""; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Homepage URL"] = ""; +App::$strings["Hometown"] = ""; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = ""; +App::$strings["Musical interests"] = ""; +App::$strings["Books, literature"] = ""; +App::$strings["Television"] = ""; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = ""; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = ""; +App::$strings["Communications"] = ""; +App::$strings[" and "] = ""; +App::$strings[", "] = ""; +App::$strings["public profile"] = ""; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +App::$strings["Visit %1\$s's %2\$s"] = ""; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; App::$strings["Currently Male"] = ""; App::$strings["Currently Female"] = ""; App::$strings["Mostly Male"] = ""; @@ -842,8 +1436,6 @@ App::$strings["Transgender"] = ""; App::$strings["Intersex"] = ""; App::$strings["Transsexual"] = ""; App::$strings["Hermaphrodite"] = ""; -App::$strings["Neuter"] = ""; -App::$strings["Non-specific"] = ""; App::$strings["Undecided"] = ""; App::$strings["Males"] = ""; App::$strings["Females"] = ""; @@ -888,53 +1480,213 @@ App::$strings["Uncertain"] = ""; App::$strings["It's complicated"] = ""; App::$strings["Don't care"] = ""; App::$strings["Ask me"] = ""; -App::$strings["Site Admin"] = ""; -App::$strings["Address Book"] = ""; -App::$strings["Mood"] = ""; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = ""; -App::$strings["Random Channel"] = ""; -App::$strings["Invite"] = ""; -App::$strings["Features"] = ""; -App::$strings["Language"] = ""; -App::$strings["Post"] = ""; -App::$strings["Profile Photo"] = ""; -App::$strings["Update"] = ""; -App::$strings["Install"] = ""; -App::$strings["Purchase"] = ""; -App::$strings["Missing room name"] = ""; -App::$strings["Duplicate room name"] = ""; -App::$strings["Invalid room specifier."] = ""; -App::$strings["Room not found."] = ""; -App::$strings["Room is full"] = ""; -App::$strings["Please choose"] = ""; -App::$strings["Agree"] = ""; -App::$strings["Disagree"] = ""; -App::$strings["Abstain"] = ""; -App::$strings["projectname"] = ""; -App::$strings["Some blurb about what to do when you're new here"] = ""; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; -App::$strings["Create a new channel"] = ""; -App::$strings["Current Channel"] = ""; -App::$strings["Switch to one of your channels by selecting it."] = ""; -App::$strings["Default Channel"] = ""; -App::$strings["Make Default"] = ""; -App::$strings["%d new messages"] = ""; -App::$strings["%d new introductions"] = ""; -App::$strings["Delegated Channels"] = ""; -App::$strings["Name is required"] = ""; -App::$strings["Key and Secret are required"] = ""; -App::$strings["Diaspora Policy Settings updated."] = ""; +App::$strings["Zap Server - Setup"] = ""; +App::$strings["Could not connect to database."] = ""; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; +App::$strings["Could not create table."] = ""; +App::$strings["Your site database has been installed."] = ""; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; +App::$strings["System check"] = ""; +App::$strings["Check again"] = ""; +App::$strings["Database connection"] = ""; +App::$strings["In order to install this software we need to know how to connect to your database."] = ""; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +App::$strings["Database Server Name"] = ""; +App::$strings["Default is 127.0.0.1"] = ""; +App::$strings["Database Port"] = ""; +App::$strings["Communication port number - use 0 for default"] = ""; +App::$strings["Database Login Name"] = ""; +App::$strings["Database Login Password"] = ""; +App::$strings["Database Name"] = ""; +App::$strings["Database Type"] = ""; +App::$strings["Site administrator email address"] = ""; +App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; +App::$strings["Website URL"] = ""; +App::$strings["Please use SSL (https) URL if available."] = ""; +App::$strings["Please select a default timezone for your website"] = ""; +App::$strings["Site settings"] = ""; +App::$strings["PHP version 7.1 or greater is required."] = ""; +App::$strings["PHP version"] = ""; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; +App::$strings["If you do not have a command line version of PHP installed on server, you will not be able to run background tasks - including message delivery."] = ""; +App::$strings["PHP executable path"] = ""; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +App::$strings["Command line PHP"] = ""; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = ""; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; +App::$strings["This is required for message delivery to work."] = ""; +App::$strings["PHP register_argc_argv"] = ""; +App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 2MB (2097152 bytes) at once."] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = ""; +App::$strings["You can adjust these settings in the server php.ini file."] = ""; +App::$strings["PHP upload limits"] = ""; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; +App::$strings["Generate encryption keys"] = ""; +App::$strings["libCurl PHP module"] = ""; +App::$strings["GD graphics PHP module"] = ""; +App::$strings["OpenSSL PHP module"] = ""; +App::$strings["PDO database PHP module"] = ""; +App::$strings["mb_string PHP module"] = ""; +App::$strings["xml PHP module"] = ""; +App::$strings["zip PHP module"] = ""; +App::$strings["Apache mod_rewrite module"] = ""; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; +App::$strings["exec"] = ""; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["shell_exec"] = ""; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["Error: libCURL PHP module required but not installed."] = ""; +App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = ""; +App::$strings["Error: openssl PHP module required but not installed."] = ""; +App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = ""; +App::$strings["Error: PDO database PHP module required but not installed."] = ""; +App::$strings["Error: mb_string PHP module required but not installed."] = ""; +App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; +App::$strings["Error: zip PHP module required but not installed."] = ""; +App::$strings[".htconfig.php is writable"] = ""; +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."] = ""; +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."] = ""; +App::$strings["Please see install/INSTALL.txt for additional information."] = ""; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +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."] = ""; +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."] = ""; +App::$strings["%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 top level web folder"] = ""; +App::$strings["store is writable"] = ""; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +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!"] = ""; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; +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."] = ""; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +App::$strings["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."] = ""; +App::$strings["SSL certificate validation"] = ""; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; +App::$strings["Url rewrite is working"] = ""; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +App::$strings["Errors encountered creating database tables."] = ""; +App::$strings["

What next?

"] = ""; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +App::$strings["Poke somebody in your addressbook"] = ""; +App::$strings["Poke somebody"] = ""; +App::$strings["Poke/Prod"] = ""; +App::$strings["Poke, prod or do other things to somebody"] = ""; +App::$strings["Recipient"] = ""; +App::$strings["Choose what you wish to do to recipient"] = ""; +App::$strings["Make this post private"] = ""; +App::$strings["Profile Photos"] = ""; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +App::$strings["Image upload failed."] = ""; +App::$strings["Unable to process image."] = ""; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = ""; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = ""; +App::$strings["Use Photo for Profile"] = ""; +App::$strings["Change Profile Photo"] = ""; +App::$strings["Use"] = ""; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; +App::$strings["Set your current mood and tell your friends"] = ""; +App::$strings["Invalid profile identifier."] = ""; +App::$strings["Profile Visibility Editor"] = ""; +App::$strings["Click on a contact to add or remove."] = ""; +App::$strings["Visible To"] = ""; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Remove This Channel"] = ""; +App::$strings["This channel will be completely removed from this server. "] = ""; +App::$strings["This action is permanent and can not be undone!"] = ""; +App::$strings["Remove Channel"] = ""; +App::$strings["day(s)"] = ""; +App::$strings["week(s)"] = ""; +App::$strings["month(s)"] = ""; +App::$strings["year(s)"] = ""; +App::$strings["Edit event title"] = ""; +App::$strings["Categories (comma-separated list)"] = ""; +App::$strings["Edit Category"] = ""; +App::$strings["Category"] = ""; +App::$strings["Edit start date and time"] = ""; +App::$strings["Finish date and time are not known or not relevant"] = ""; +App::$strings["Edit finish date and time"] = ""; +App::$strings["Finish date and time"] = ""; +App::$strings["Adjust for viewer timezone"] = ""; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; +App::$strings["Edit Description"] = ""; +App::$strings["Edit Location"] = ""; +App::$strings["Permission settings"] = ""; +App::$strings["Timezone:"] = ""; +App::$strings["Advanced Options"] = ""; +App::$strings["Event repeat"] = ""; +App::$strings["Repeat frequency"] = ""; +App::$strings["Repeat every"] = ""; +App::$strings["Number of total repeats"] = ""; +App::$strings["Event removed"] = ""; +App::$strings["Affinity Tool settings updated."] = ""; +App::$strings["This app (when installed) presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship or affinity with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = ""; +App::$strings["The number below represents the default maximum slider position for your network/stream page as a percentage."] = ""; +App::$strings["Default friend zoom in/out"] = ""; +App::$strings["Refresh"] = ""; +App::$strings["Affinity Tool Settings"] = ""; +App::$strings["This site is not a directory server"] = ""; +App::$strings["Items tagged with: %s"] = ""; +App::$strings["Search results for: %s"] = ""; +App::$strings["Please login."] = ""; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Remove This Account"] = ""; +App::$strings["This account and all its channels will be completely removed from this server. "] = ""; +App::$strings["Remove Account"] = ""; +App::$strings["Authentication failed."] = ""; +App::$strings["Remote Authentication"] = ""; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; +App::$strings["Authenticate"] = ""; +App::$strings["ActivityPub Probe Diagnostic"] = ""; +App::$strings["Object URL"] = ""; +App::$strings["Authenticated fetch"] = ""; +App::$strings["No service class restrictions found."] = ""; +App::$strings["Not valid email."] = ""; +App::$strings["Protected email address. Cannot change to that email."] = ""; +App::$strings["System failure storing new email. Please try again."] = ""; +App::$strings["Password verification failed."] = ""; App::$strings["Passwords do not match. Password unchanged."] = ""; App::$strings["Empty passwords are not allowed. Password unchanged."] = ""; App::$strings["Password changed."] = ""; App::$strings["Password update failed. Please try again."] = ""; -App::$strings["Not valid email."] = ""; -App::$strings["Protected email address. Cannot change to that email."] = ""; -App::$strings["System failure storing new email. Please try again."] = ""; -App::$strings["Settings updated."] = ""; -App::$strings["No"] = ""; -App::$strings["Yes"] = ""; +App::$strings["Account Settings"] = ""; +App::$strings["Current Password"] = ""; +App::$strings["Enter New Password"] = ""; +App::$strings["Confirm New Password"] = ""; +App::$strings["Leave password fields blank unless changing"] = ""; +App::$strings["Email Address:"] = ""; +App::$strings["Remove this account including all its channels"] = ""; +App::$strings["Affinity Slider settings updated."] = ""; +App::$strings["No feature settings configured"] = ""; +App::$strings["Default maximum affinity level"] = ""; +App::$strings["0-99 default 99"] = ""; +App::$strings["Default minimum affinity level"] = ""; +App::$strings["0-99 - default 0"] = ""; +App::$strings["Affinity Slider Settings"] = ""; +App::$strings["Addon Settings"] = ""; +App::$strings["Please save/submit changes to any panel before opening another."] = ""; +App::$strings["Activity Settings"] = ""; +App::$strings["Search by Date"] = ""; +App::$strings["Ability to select posts by date ranges"] = ""; +App::$strings["Saved Searches"] = ""; +App::$strings["Save search terms for re-use"] = ""; +App::$strings["Alternate Stream Order"] = ""; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = ""; +App::$strings["Contact Filter"] = ""; +App::$strings["Ability to display only posts of a selected contact"] = ""; +App::$strings["Forum Filter"] = ""; +App::$strings["Ability to display only posts of a specific forum"] = ""; +App::$strings["Personal Posts Filter"] = ""; +App::$strings["Ability to display only posts that you've interacted on"] = ""; +App::$strings["Filter stream activity by depth of relationships"] = ""; +App::$strings["Show friend and connection suggestions"] = ""; +App::$strings["Connection Filtering"] = ""; +App::$strings["Filter incoming posts from connections based on keywords/content"] = ""; +App::$strings["Name is required"] = ""; +App::$strings["Key and Secret are required"] = ""; App::$strings["Add application"] = ""; App::$strings["Name of application"] = ""; App::$strings["Consumer Key"] = ""; @@ -944,48 +1696,53 @@ App::$strings["Redirect"] = ""; App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; App::$strings["Icon url"] = ""; App::$strings["Optional"] = ""; -App::$strings["You can't edit this application."] = ""; +App::$strings["Application not found."] = ""; App::$strings["Connected Apps"] = ""; App::$strings["Client key starts with"] = ""; App::$strings["No name"] = ""; App::$strings["Remove authorization"] = ""; -App::$strings["No feature settings configured"] = ""; -App::$strings["Feature/Addon Settings"] = ""; -App::$strings["Settings for the built-in Diaspora emulator"] = ""; -App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; -App::$strings["Diaspora Policy Settings"] = ""; -App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; -App::$strings["Account Settings"] = ""; -App::$strings["Enter New Password:"] = ""; -App::$strings["Confirm New Password:"] = ""; -App::$strings["Leave password fields blank unless changing"] = ""; -App::$strings["Email Address:"] = ""; -App::$strings["Remove Account"] = ""; -App::$strings["Remove this account including all its channels"] = ""; -App::$strings["Off"] = ""; -App::$strings["On"] = ""; -App::$strings["Additional Features"] = ""; -App::$strings["Connector Settings"] = ""; -App::$strings["No special theme for mobile devices"] = ""; +App::$strings["Name and Secret are required"] = ""; +App::$strings["Add OAuth2 application"] = ""; +App::$strings["Grant Types"] = ""; +App::$strings["leave blank unless your application specifically requires this"] = ""; +App::$strings["Authorization scope"] = ""; +App::$strings["OAuth2 Application not found."] = ""; +App::$strings["Connected OAuth2 Apps"] = ""; +App::$strings["Permission Name is required."] = ""; +App::$strings["Permission category saved."] = ""; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = ""; +App::$strings["Permission Name"] = ""; App::$strings["%s - (Experimental)"] = ""; -App::$strings["mobile"] = ""; App::$strings["Display Settings"] = ""; +App::$strings["Theme Settings"] = ""; +App::$strings["Custom Theme Settings"] = ""; +App::$strings["Content Settings"] = ""; App::$strings["Display Theme:"] = ""; -App::$strings["Mobile Theme:"] = ""; +App::$strings["Select scheme"] = ""; +App::$strings["Preload images before rendering the page"] = ""; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = ""; App::$strings["Enable user zoom on mobile devices"] = ""; App::$strings["Update browser every xx seconds"] = ""; App::$strings["Minimum of 10 seconds, no maximum"] = ""; App::$strings["Maximum number of conversations to load at any time:"] = ""; App::$strings["Maximum of 100 items"] = ""; App::$strings["Show emoticons (smilies) as images"] = ""; -App::$strings["Link post titles to source"] = ""; +App::$strings["Provide channel menu in navigation bar"] = ""; +App::$strings["Default: channel menu located in app menu"] = ""; App::$strings["System Page Layout Editor - (advanced)"] = ""; -App::$strings["Use blog/list mode on channel page"] = ""; -App::$strings["(comments displayed separately)"] = ""; -App::$strings["Use blog/list mode on matrix page"] = ""; App::$strings["Channel page max height of content (in pixels)"] = ""; App::$strings["click to expand content exceeding this height"] = ""; -App::$strings["Matrix page max height of content (in pixels)"] = ""; +App::$strings["Network page max height of content (in pixels)"] = ""; +App::$strings["This channel is limited to %d tokens"] = ""; +App::$strings["Name and Password are required."] = ""; +App::$strings["Token saved."] = ""; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access 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"] = ""; App::$strings["Nobody except yourself"] = ""; App::$strings["Only those you specifically allow"] = ""; App::$strings["Approved connections"] = ""; @@ -998,6 +1755,10 @@ App::$strings["Publish your default profile in the network directory"] = ""; App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; App::$strings["or"] = ""; App::$strings["Your channel address is"] = ""; +App::$strings["Your files/photos are accessible via WebDAV at"] = ""; +App::$strings["Automatic membership approval"] = ""; +App::$strings["Enable hyperdrive"] = ""; +App::$strings["Import public third-party conversations in which your connections participate."] = ""; App::$strings["Channel Settings"] = ""; App::$strings["Basic Settings"] = ""; App::$strings["Your Timezone:"] = ""; @@ -1017,447 +1778,89 @@ App::$strings["Private - default private, never open or public"] = ""; App::$strings["Blocked - default blocked to/from everybody"] = ""; App::$strings["Allow others to tag your posts"] = ""; App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; -App::$strings["Advanced Privacy Settings"] = ""; +App::$strings["Channel Permission Limits"] = ""; App::$strings["Expire other channel content after this many days"] = ""; -App::$strings["0 or blank prevents expiration"] = ""; +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:"] = ""; App::$strings["May reduce spam activity"] = ""; -App::$strings["Default Post Permissions"] = ""; -App::$strings["(click to open/close)"] = ""; -App::$strings["Channel permissions category:"] = ""; +App::$strings["Default Access List"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; +App::$strings["Profile to assign new connections"] = ""; +App::$strings["Default Permissions Group"] = ""; App::$strings["Maximum private messages per day from unknown people:"] = ""; App::$strings["Useful to reduce spamming"] = ""; -App::$strings["Notification Settings"] = ""; App::$strings["By default post a status message when:"] = ""; App::$strings["accepting a friend request"] = ""; App::$strings["joining a forum/community"] = ""; App::$strings["making an interesting profile change"] = ""; App::$strings["Send a notification email when:"] = ""; App::$strings["You receive a connection request"] = ""; -App::$strings["Your connections are confirmed"] = ""; App::$strings["Someone writes on your profile wall"] = ""; App::$strings["Someone writes a followup comment"] = ""; -App::$strings["You receive a private message"] = ""; -App::$strings["You receive a friend suggestion"] = ""; App::$strings["You are tagged in a post"] = ""; -App::$strings["You are poked/prodded/etc. in a post"] = ""; +App::$strings["Someone likes your post/comment"] = ""; App::$strings["Show visual notifications including:"] = ""; -App::$strings["Unseen matrix activity"] = ""; +App::$strings["Unseen network activity"] = ""; App::$strings["Unseen channel activity"] = ""; -App::$strings["Unseen private messages"] = ""; -App::$strings["Recommended"] = ""; App::$strings["Upcoming events"] = ""; App::$strings["Events today"] = ""; App::$strings["Upcoming birthdays"] = ""; App::$strings["Not available in all themes"] = ""; App::$strings["System (personal) notifications"] = ""; App::$strings["System info messages"] = ""; +App::$strings["Recommended"] = ""; App::$strings["System critical alerts"] = ""; App::$strings["New connections"] = ""; App::$strings["System Registrations"] = ""; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = ""; +App::$strings["Unseen public activity"] = ""; +App::$strings["Unseen likes and dislikes"] = ""; +App::$strings["Unseen forum posts"] = ""; +App::$strings["Reported content"] = ""; +App::$strings["Email notification hub (hostname)"] = ""; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = ""; +App::$strings["Show new wall posts, private messages and connections under Notices"] = ""; App::$strings["Notify me of events this many days in advance"] = ""; App::$strings["Must be greater than 0"] = ""; App::$strings["Advanced Account/Page Type Settings"] = ""; App::$strings["Change the behaviour of this account for special situations"] = ""; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; App::$strings["Miscellaneous Settings"] = ""; +App::$strings["Default photo upload folder"] = ""; +App::$strings["%Y - current year, %m - current month"] = ""; +App::$strings["Default file upload folder"] = ""; App::$strings["Personal menu to display in your channel pages"] = ""; -App::$strings["Remove Channel"] = ""; App::$strings["Remove this channel."] = ""; -App::$strings["Xchan Lookup"] = ""; -App::$strings["Lookup xchan beginning with (or webbie): "] = ""; -App::$strings["Not found."] = ""; -App::$strings["Authorize application connection"] = ""; -App::$strings["Return to your app and insert this Securty Code:"] = ""; -App::$strings["Please login to continue."] = ""; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; -App::$strings["Page Title"] = ""; -App::$strings["Channel added."] = ""; -App::$strings["Tag removed"] = ""; -App::$strings["Remove Item Tag"] = ""; -App::$strings["Select a tag to remove: "] = ""; -App::$strings["Remove"] = ""; -App::$strings["Continue"] = ""; -App::$strings["Premium Channel Setup"] = ""; -App::$strings["Enable premium channel connection restrictions"] = ""; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; -App::$strings["Potential connections will then see the following text before proceeding:"] = ""; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; -App::$strings["Restricted or Premium Channel"] = ""; -App::$strings["Thing updated"] = ""; -App::$strings["Object store: failed"] = ""; -App::$strings["Thing added"] = ""; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = ""; -App::$strings["item not found."] = ""; -App::$strings["Edit Thing"] = ""; -App::$strings["Select a profile"] = ""; -App::$strings["Post an activity"] = ""; -App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = ""; -App::$strings["URL of thing (optional)"] = ""; -App::$strings["URL for photo of thing (optional)"] = ""; -App::$strings["Add Thing to your Profile"] = ""; -App::$strings["Item not available."] = ""; -App::$strings["Fetching URL returns error: %1\$s"] = ""; -App::$strings["\$Projectname"] = ""; -App::$strings["Welcome to %s"] = ""; -App::$strings["Image uploaded but image cropping failed."] = ""; -App::$strings["Image resize failed."] = ""; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -App::$strings["Image exceeds size limit of %d"] = ""; -App::$strings["Unable to process image."] = ""; -App::$strings["Photo not available."] = ""; -App::$strings["Upload File:"] = ""; -App::$strings["Select a profile:"] = ""; -App::$strings["Upload Profile Photo"] = ""; -App::$strings["skip this step"] = ""; -App::$strings["select a photo from your photo albums"] = ""; -App::$strings["Crop Image"] = ""; -App::$strings["Please adjust the image cropping for optimum viewing."] = ""; -App::$strings["Done Editing"] = ""; -App::$strings["Image uploaded successfully."] = ""; -App::$strings["Image upload failed."] = ""; -App::$strings["Image size reduction [%s] failed."] = ""; -App::$strings["Invalid item."] = ""; -App::$strings["Channel not found."] = ""; -App::$strings["Page not found."] = ""; -App::$strings["Like/Dislike"] = ""; -App::$strings["This action is restricted to members."] = ""; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; -App::$strings["Invalid request."] = ""; -App::$strings["thing"] = ""; -App::$strings["Channel unavailable."] = ""; -App::$strings["Previous action reversed."] = ""; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; -App::$strings["Action completed."] = ""; -App::$strings["Thank you."] = ""; -App::$strings["Event can not end before it has started."] = ""; -App::$strings["Unable to generate preview."] = ""; -App::$strings["Event title and start time are required."] = ""; -App::$strings["Event not found."] = ""; -App::$strings["l, F j"] = ""; -App::$strings["Edit event"] = ""; -App::$strings["Delete event"] = ""; -App::$strings["Create New Event"] = ""; -App::$strings["Previous"] = ""; -App::$strings["Next"] = ""; -App::$strings["Export"] = ""; -App::$strings["Event removed"] = ""; -App::$strings["Failed to remove event"] = ""; -App::$strings["Event details"] = ""; -App::$strings["Starting date and Title are required."] = ""; -App::$strings["Categories (comma-separated list)"] = ""; -App::$strings["Event Starts:"] = ""; -App::$strings["Finish date/time is not known or not relevant"] = ""; -App::$strings["Event Finishes:"] = ""; -App::$strings["Adjust for viewer timezone"] = ""; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; -App::$strings["Description:"] = ""; -App::$strings["Title:"] = ""; -App::$strings["Share this event"] = ""; +App::$strings["Firefox Share \$Projectname provider"] = ""; +App::$strings["Start calendar week on Monday"] = ""; App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; -App::$strings["Public Sites"] = ""; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; -App::$strings["Rate this hub"] = ""; -App::$strings["Site URL"] = ""; -App::$strings["Access Type"] = ""; -App::$strings["Registration Policy"] = ""; -App::$strings["Location"] = ""; -App::$strings["View hub ratings"] = ""; -App::$strings["Rate"] = ""; -App::$strings["View ratings"] = ""; -App::$strings["Edit post"] = ""; -App::$strings["\$Projectname channel"] = ""; -App::$strings["Collection created."] = ""; -App::$strings["Could not create collection."] = ""; -App::$strings["Collection updated."] = ""; -App::$strings["Create a collection of channels."] = ""; -App::$strings["Collection Name: "] = ""; -App::$strings["Members are visible to other channels"] = ""; -App::$strings["Collection removed."] = ""; -App::$strings["Unable to remove collection."] = ""; -App::$strings["Collection Editor"] = ""; -App::$strings["Members"] = ""; -App::$strings["All Connected Channels"] = ""; -App::$strings["Click on a channel to add or remove."] = ""; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = ""; +App::$strings["Files: shared with me"] = ""; +App::$strings["NEW"] = ""; +App::$strings["Size"] = ""; +App::$strings["Last Modified"] = ""; +App::$strings["Remove all files"] = ""; +App::$strings["Remove this file"] = ""; +App::$strings["About this site"] = ""; +App::$strings["Site Name"] = ""; +App::$strings["Administrator"] = ""; +App::$strings["Software and Project information"] = ""; +App::$strings["This site is powered by \$Projectname"] = ""; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; +App::$strings["Additional federated transport protocols:"] = ""; App::$strings["Version %s"] = ""; -App::$strings["Installed plugins/addons/apps:"] = ""; -App::$strings["No installed plugins/addons/apps"] = ""; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = ""; -App::$strings["Tag: "] = ""; -App::$strings["Last background fetch: "] = ""; -App::$strings["Running at web location"] = ""; -App::$strings["Please visit redmatrix.me to learn more about \$Projectname."] = ""; -App::$strings["Bug reports and issues: please visit"] = ""; -App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = ""; -App::$strings["Site Administrators"] = ""; -App::$strings["Help:"] = ""; -App::$strings["Not Found"] = ""; -App::$strings["\$Projectname Server - Setup"] = ""; -App::$strings["Could not connect to database."] = ""; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; -App::$strings["Could not create table."] = ""; -App::$strings["Your site database has been installed."] = ""; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; -App::$strings["System check"] = ""; -App::$strings["Check again"] = ""; -App::$strings["Database connection"] = ""; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -App::$strings["Database Server Name"] = ""; -App::$strings["Default is localhost"] = ""; -App::$strings["Database Port"] = ""; -App::$strings["Communication port number - use 0 for default"] = ""; -App::$strings["Database Login Name"] = ""; -App::$strings["Database Login Password"] = ""; -App::$strings["Database Name"] = ""; -App::$strings["Database Type"] = ""; -App::$strings["Site administrator email address"] = ""; -App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = ""; -App::$strings["Please use SSL (https) URL if available."] = ""; -App::$strings["Please select a default timezone for your website"] = ""; -App::$strings["Site settings"] = ""; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -App::$strings["PHP executable path"] = ""; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -App::$strings["Command line PHP"] = ""; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -App::$strings["This is required for message delivery to work."] = ""; -App::$strings["PHP register_argc_argv"] = ""; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; -App::$strings["Generate encryption keys"] = ""; -App::$strings["libCurl PHP module"] = ""; -App::$strings["GD graphics PHP module"] = ""; -App::$strings["OpenSSL PHP module"] = ""; -App::$strings["mysqli or postgres PHP module"] = ""; -App::$strings["mb_string PHP module"] = ""; -App::$strings["mcrypt PHP module"] = ""; -App::$strings["Apache mod_rewrite module"] = ""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -App::$strings["proc_open"] = ""; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -App::$strings["Error: openssl PHP module required but not installed."] = ""; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = ""; -App::$strings["Error: mb_string PHP module required but not installed."] = ""; -App::$strings["Error: mcrypt PHP module required 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."] = ""; -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."] = ""; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = ""; -App::$strings[".htconfig.php is writable"] = ""; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = ""; -App::$strings["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."] = ""; -App::$strings["%s is writable"] = ""; -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"] = ""; -App::$strings["store is writable"] = ""; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -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!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; -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."] = ""; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; -App::$strings["SSL certificate validation"] = ""; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; -App::$strings["Url rewrite is working"] = ""; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["

What next

"] = ""; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["No channel."] = ""; -App::$strings["Common connections"] = ""; -App::$strings["No connections in common."] = ""; -App::$strings["This site is not a directory server"] = ""; -App::$strings["Could not access contact record."] = ""; -App::$strings["Could not locate selected profile."] = ""; -App::$strings["Connection updated."] = ""; -App::$strings["Failed to update connection record."] = ""; -App::$strings["Blocked"] = ""; -App::$strings["Ignored"] = ""; -App::$strings["Hidden"] = ""; -App::$strings["Archived"] = ""; -App::$strings["Suggest new connections"] = ""; -App::$strings["New Connections"] = ""; -App::$strings["Show pending (new) connections"] = ""; -App::$strings["All Connections"] = ""; -App::$strings["Show all connections"] = ""; -App::$strings["Unblocked"] = ""; -App::$strings["Only show unblocked connections"] = ""; -App::$strings["Only show blocked connections"] = ""; -App::$strings["Only show ignored connections"] = ""; -App::$strings["Only show archived connections"] = ""; -App::$strings["Only show hidden connections"] = ""; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = ""; -App::$strings["Search your connections"] = ""; -App::$strings["Finding: "] = ""; -App::$strings["Block Name"] = ""; -App::$strings["Block Title"] = ""; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = ""; -App::$strings["Page owner information could not be retrieved."] = ""; -App::$strings["Album not found."] = ""; -App::$strings["Delete Album"] = ""; -App::$strings["Delete Photo"] = ""; -App::$strings["Public access denied."] = ""; -App::$strings["No photos selected"] = ""; -App::$strings["Access to this item is restricted."] = ""; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; -App::$strings["%1$.2f MB photo storage used."] = ""; -App::$strings["Upload Photos"] = ""; -App::$strings["Enter a new album name"] = ""; -App::$strings["or select an existing one (doubleclick)"] = ""; -App::$strings["Create a status post for this upload"] = ""; -App::$strings["Album name could not be decoded"] = ""; -App::$strings["Contact Photos"] = ""; -App::$strings["Show Newest First"] = ""; -App::$strings["Show Oldest First"] = ""; -App::$strings["View Photo"] = ""; -App::$strings["Edit Album"] = ""; -App::$strings["Permission denied. Access to this item may be restricted."] = ""; -App::$strings["Photo not available"] = ""; -App::$strings["Use as profile photo"] = ""; -App::$strings["Private Photo"] = ""; -App::$strings["View Full Size"] = ""; -App::$strings["Edit photo"] = ""; -App::$strings["Rotate CW (right)"] = ""; -App::$strings["Rotate CCW (left)"] = ""; -App::$strings["Caption"] = ""; -App::$strings["Add a Tag"] = ""; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = ""; -App::$strings["Flag as adult in album view"] = ""; -App::$strings["In This Photo:"] = ""; -App::$strings["Map"] = ""; -App::$strings["View Album"] = ""; -App::$strings["Recent Photos"] = ""; -App::$strings["Profile Match"] = ""; -App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; -App::$strings["is interested in:"] = ""; -App::$strings["No matches"] = ""; -App::$strings["Away"] = ""; -App::$strings["Online"] = ""; -App::$strings["Select a bookmark folder"] = ""; -App::$strings["Save Bookmark"] = ""; -App::$strings["URL of bookmark"] = ""; -App::$strings["Description"] = ""; -App::$strings["Or enter new bookmark folder name"] = ""; -App::$strings["No more system notifications."] = ""; -App::$strings["System Notifications"] = ""; -App::$strings["network"] = ""; -App::$strings["RSS"] = ""; -App::$strings["Layout updated."] = ""; -App::$strings["Edit System Page Description"] = ""; -App::$strings["Layout not found."] = ""; -App::$strings["Module Name:"] = ""; -App::$strings["Layout Help"] = ""; -App::$strings["- select -"] = ""; -App::$strings["Your service plan only allows %d channels."] = ""; -App::$strings["Nothing to import."] = ""; -App::$strings["Unable to download data from old server"] = ""; -App::$strings["Imported file is empty."] = ""; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -App::$strings["Unable to create a unique channel address. Import failed."] = ""; -App::$strings["Channel clone failed. Import failed."] = ""; -App::$strings["Cloned channel not found. Import failed."] = ""; -App::$strings["Import completed."] = ""; -App::$strings["You must be logged in to use this feature."] = ""; -App::$strings["Import Channel"] = ""; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; -App::$strings["File to Upload"] = ""; -App::$strings["Or provide the old server/hub details"] = ""; -App::$strings["Your old identity address (xyz@example.com)"] = ""; -App::$strings["Your old login email address"] = ""; -App::$strings["Your old login password"] = ""; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -App::$strings["Make this hub my primary location"] = ""; -App::$strings["Import existing posts if possible"] = ""; -App::$strings["Item not found"] = ""; -App::$strings["Edit Layout"] = ""; -App::$strings["Delete layout?"] = ""; -App::$strings["Insert YouTube video"] = ""; -App::$strings["Insert Vorbis [.ogg] video"] = ""; -App::$strings["Insert Vorbis [.ogg] audio"] = ""; -App::$strings["Layout Description (Optional)"] = ""; -App::$strings["Layout Name"] = ""; -App::$strings["You must be logged in to see this page."] = ""; -App::$strings["Room not found"] = ""; -App::$strings["Leave Room"] = ""; -App::$strings["Delete This Room"] = ""; -App::$strings["I am away right now"] = ""; -App::$strings["I am online"] = ""; -App::$strings["Bookmark this room"] = ""; -App::$strings["New Chatroom"] = ""; -App::$strings["Chatroom Name"] = ""; -App::$strings["%1\$s's Chatrooms"] = ""; -App::$strings["Delete webpage?"] = ""; -App::$strings["Page link title"] = ""; -App::$strings["Edit Webpage"] = ""; -App::$strings["This directory server requires an access token"] = ""; -App::$strings["No valid account found."] = ""; -App::$strings["Password reset request issued. Check your email."] = ""; -App::$strings["Site Member (%s)"] = ""; -App::$strings["Password reset requested at %s"] = ""; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -App::$strings["Password Reset"] = ""; -App::$strings["Your password has been reset as requested."] = ""; -App::$strings["Your new password is"] = ""; -App::$strings["Save or copy your new password - and then"] = ""; -App::$strings["click here to login"] = ""; -App::$strings["Your password may be changed from the Settings page after successful login."] = ""; -App::$strings["Your password has changed at %s"] = ""; -App::$strings["Forgot your Password?"] = ""; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -App::$strings["Email Address"] = ""; -App::$strings["Reset"] = ""; -App::$strings["Website:"] = ""; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = ""; -App::$strings["Rating (this information is public)"] = ""; -App::$strings["Optionally explain your rating (this information is public)"] = ""; -App::$strings["Item is not editable"] = ""; -App::$strings["Delete item?"] = ""; -App::$strings["Total invitation limit exceeded."] = ""; -App::$strings["%s : Not a valid email address."] = ""; -App::$strings["Please join us on Red"] = ""; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -App::$strings["%s : Message delivery failed."] = ""; -App::$strings["%d message sent."] = array( - 0 => "", - 1 => "", -); -App::$strings["You have no more invitations available"] = ""; -App::$strings["Send invitations"] = ""; -App::$strings["Enter email addresses, one per line:"] = ""; -App::$strings["Your message:"] = ""; -App::$strings["Please join my community on \$Projectname."] = ""; -App::$strings["You will need to supply this invitation code: "] = ""; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = ""; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = ""; -App::$strings["or visit "] = ""; -App::$strings["3. Click [Connect]"] = ""; -App::$strings["Location not found."] = ""; -App::$strings["Primary location cannot be removed."] = ""; -App::$strings["No locations found."] = ""; -App::$strings["Manage Channel Locations"] = ""; -App::$strings["Location (address)"] = ""; -App::$strings["Primary Location"] = ""; -App::$strings["Drop location"] = ""; +App::$strings["Project homepage"] = ""; +App::$strings["Developer homepage"] = ""; +App::$strings["Export Channel"] = ""; +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."] = ""; +App::$strings["Export Content"] = ""; +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."] = ""; +App::$strings["Export your posts from a given year."] = ""; +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."] = ""; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = ""; +App::$strings["To select all posts for a given month, such as January of this year, visit %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)."] = ""; App::$strings["Failed to create source. No channel selected."] = ""; App::$strings["Source created."] = ""; App::$strings["Source updated."] = ""; @@ -1468,653 +1871,871 @@ App::$strings["Import all or selected content from the following channel into th App::$strings["Only import content with these words (one per line)"] = ""; App::$strings["Leave blank to import all public content"] = ""; App::$strings["Channel Name"] = ""; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; +App::$strings["Resend posts with this channel as author"] = ""; +App::$strings["Copyrights may apply"] = ""; App::$strings["Source not found."] = ""; App::$strings["Edit Source"] = ""; App::$strings["Delete Source"] = ""; App::$strings["Source removed"] = ""; App::$strings["Unable to remove source."] = ""; -App::$strings["Unable to update menu."] = ""; -App::$strings["Unable to create menu."] = ""; -App::$strings["Menu Name"] = ""; -App::$strings["Unique name (not visible on webpage) - required"] = ""; -App::$strings["Menu Title"] = ""; -App::$strings["Visible on webpage - leave empty for no title"] = ""; -App::$strings["Allow Bookmarks"] = ""; -App::$strings["Menu may be used to store saved bookmarks"] = ""; -App::$strings["Submit and proceed"] = ""; -App::$strings["Drop"] = ""; -App::$strings["Bookmarks allowed"] = ""; -App::$strings["Delete this menu"] = ""; -App::$strings["Edit menu contents"] = ""; -App::$strings["Edit this menu"] = ""; -App::$strings["Menu could not be deleted."] = ""; -App::$strings["Menu not found."] = ""; -App::$strings["Edit Menu"] = ""; -App::$strings["Add or remove entries to this menu"] = ""; -App::$strings["Menu name"] = ""; -App::$strings["Must be unique, only seen by you"] = ""; -App::$strings["Menu title"] = ""; -App::$strings["Menu title as seen by others"] = ""; -App::$strings["Allow bookmarks"] = ""; -App::$strings["Modify"] = ""; -App::$strings["Permission Denied."] = ""; -App::$strings["File not found."] = ""; -App::$strings["Edit file permissions"] = ""; -App::$strings["Set/edit permissions"] = ""; -App::$strings["Include all files and sub folders"] = ""; -App::$strings["Return to file list"] = ""; -App::$strings["Copy/paste this code to attach file to a post"] = ""; -App::$strings["Copy/paste this URL to link file from a web page"] = ""; -App::$strings["Share this file"] = ""; -App::$strings["Show URL to this file"] = ""; -App::$strings["Notify your contacts about this file"] = ""; -App::$strings["Contact not found."] = ""; -App::$strings["Friend suggestion sent."] = ""; -App::$strings["Suggest Friends"] = ""; -App::$strings["Suggest a friend for %s"] = ""; -App::$strings["Hub not found."] = ""; -App::$strings["Poke/Prod"] = ""; -App::$strings["poke, prod or do other things to somebody"] = ""; -App::$strings["Recipient"] = ""; -App::$strings["Choose what you wish to do to recipient"] = ""; -App::$strings["Make this post private"] = ""; -App::$strings["Invalid profile identifier."] = ""; -App::$strings["Profile Visibility Editor"] = ""; -App::$strings["Click on a contact to add or remove."] = ""; -App::$strings["Visible To"] = ""; -App::$strings["webpage"] = ""; -App::$strings["block"] = ""; -App::$strings["layout"] = ""; -App::$strings["%s element installed"] = ""; -App::$strings["Profile not found."] = ""; -App::$strings["Profile deleted."] = ""; -App::$strings["Profile-"] = ""; -App::$strings["New profile created."] = ""; -App::$strings["Profile unavailable to clone."] = ""; -App::$strings["Profile unavailable to export."] = ""; -App::$strings["Profile Name is required."] = ""; -App::$strings["Marital Status"] = ""; -App::$strings["Romantic Partner"] = ""; -App::$strings["Likes"] = ""; -App::$strings["Dislikes"] = ""; -App::$strings["Work/Employment"] = ""; -App::$strings["Religion"] = ""; -App::$strings["Political Views"] = ""; -App::$strings["Gender"] = ""; -App::$strings["Sexual Preference"] = ""; -App::$strings["Homepage"] = ""; -App::$strings["Interests"] = ""; -App::$strings["Address"] = ""; -App::$strings["Profile updated."] = ""; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = ""; -App::$strings["Edit Profile Details"] = ""; -App::$strings["View this profile"] = ""; -App::$strings["Change Profile Photo"] = ""; -App::$strings["Create a new profile using these settings"] = ""; -App::$strings["Clone this profile"] = ""; -App::$strings["Delete this profile"] = ""; -App::$strings["Import profile from file"] = ""; -App::$strings["Export profile to file"] = ""; -App::$strings["Profile Name:"] = ""; -App::$strings["Your Full Name:"] = ""; -App::$strings["Title/Description:"] = ""; -App::$strings["Your Gender:"] = ""; -App::$strings["Birthday :"] = ""; -App::$strings["Street Address:"] = ""; -App::$strings["Locality/City:"] = ""; -App::$strings["Postal/Zip Code:"] = ""; -App::$strings["Country:"] = ""; -App::$strings["Region/State:"] = ""; -App::$strings[" Marital Status:"] = ""; -App::$strings["Who: (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; -App::$strings["Since [date]:"] = ""; -App::$strings["Homepage URL:"] = ""; -App::$strings["Religious Views:"] = ""; -App::$strings["Keywords:"] = ""; -App::$strings["Example: fishing photography software"] = ""; -App::$strings["Used in directory listings"] = ""; -App::$strings["Tell us about yourself..."] = ""; -App::$strings["Hobbies/Interests"] = ""; -App::$strings["Contact information and Social Networks"] = ""; -App::$strings["My other channels"] = ""; -App::$strings["Musical interests"] = ""; -App::$strings["Books, literature"] = ""; -App::$strings["Television"] = ""; -App::$strings["Film/dance/culture/entertainment"] = ""; -App::$strings["Love/romance"] = ""; -App::$strings["Work/employment"] = ""; -App::$strings["School/education"] = ""; -App::$strings["This is your default profile."] = ""; -App::$strings["Age: "] = ""; -App::$strings["Edit/Manage Profiles"] = ""; -App::$strings["Add profile things"] = ""; -App::$strings["Include desirable objects in your profile"] = ""; -App::$strings["No ratings"] = ""; -App::$strings["Ratings"] = ""; -App::$strings["Rating: "] = ""; -App::$strings["Website: "] = ""; -App::$strings["Description: "] = ""; -App::$strings["Source of Item"] = ""; -App::$strings["OpenID protocol error. No ID returned."] = ""; -App::$strings["Welcome %s. Remote authentication successful."] = ""; -App::$strings["%d rating"] = array( +App::$strings["This directory server requires an access token"] = ""; +App::$strings["Post not found."] = ""; +App::$strings["comment"] = ""; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +App::$strings["Tag removed"] = ""; +App::$strings["Remove Item Tag"] = ""; +App::$strings["Select a tag to remove: "] = ""; +App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; +App::$strings["No default suggestions were found."] = ""; +App::$strings["%d rating"] = [ 0 => "", 1 => "", -); +]; App::$strings["Gender: "] = ""; App::$strings["Status: "] = ""; App::$strings["Homepage: "] = ""; -App::$strings["Hometown: "] = ""; -App::$strings["About: "] = ""; -App::$strings["Public Forum:"] = ""; +App::$strings["Description:"] = ""; App::$strings["Keywords: "] = ""; -App::$strings["Common connections: %s"] = ""; +App::$strings["Don't suggest"] = ""; +App::$strings["Common connections (estimated):"] = ""; +App::$strings["Global Directory"] = ""; +App::$strings["Local Directory"] = ""; App::$strings["Finding:"] = ""; +App::$strings["Channel Suggestions"] = ""; App::$strings["next page"] = ""; App::$strings["previous page"] = ""; +App::$strings["Sort options"] = ""; +App::$strings["Alphabetic"] = ""; +App::$strings["Reverse Alphabetic"] = ""; +App::$strings["Newest to Oldest"] = ""; +App::$strings["Oldest to Newest"] = ""; App::$strings["No entries (some entries may be hidden)."] = ""; -App::$strings["Export Channel"] = ""; -App::$strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = ""; -App::$strings["Export Content"] = ""; -App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = ""; +App::$strings["Xchan Lookup"] = ""; +App::$strings["Lookup xchan beginning with (or webbie): "] = ""; +App::$strings["Content Filter settings updated."] = ""; +App::$strings["This app (when installed) allows you to filter incoming content from all sources or from specific connections. The filtering may be based on words, tags, regular expressions, or language"] = ""; +App::$strings["The settings on this page apply to all incoming content. To edit the settings for individual connetions, see the similar settings on the Connection Edit page for that connection."] = ""; +App::$strings["words one per line or #tags, \$categories, /patterns/, lang=xx, lang!=xx - leave blank to import all posts"] = ""; +App::$strings["Content Filter Settings"] = ""; +App::$strings["This app allows you to add categories to posts and events."] = ""; App::$strings["No connections."] = ""; App::$strings["Visit %s's profile [%s]"] = ""; -App::$strings["invalid target signature"] = ""; -App::$strings["Theme settings updated."] = ""; -App::$strings["Site"] = ""; -App::$strings["Accounts"] = ""; -App::$strings["Channels"] = ""; -App::$strings["Plugins"] = ""; -App::$strings["Themes"] = ""; +App::$strings["View Connections"] = ""; +App::$strings["Zotfinger Diagnostic"] = ""; +App::$strings["Lookup URL"] = ""; +App::$strings["This app (when installed) displays a small number of friend suggestions on selected pages or you can run the app to display a full list of channel suggestions."] = ""; +App::$strings["parent"] = ""; +App::$strings["Principal"] = ""; +App::$strings["Addressbook"] = ""; +App::$strings["Schedule Inbox"] = ""; +App::$strings["Schedule Outbox"] = ""; +App::$strings["Total"] = ""; +App::$strings["Shared"] = ""; +App::$strings["Add Files"] = ""; +App::$strings["Type"] = ""; +App::$strings["You are using %1\$s of your available file storage."] = ""; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = ""; +App::$strings["WARNING:"] = ""; +App::$strings["Create new folder"] = ""; +App::$strings["Upload file"] = ""; +App::$strings["Drop files here to immediately upload"] = ""; +App::$strings["__ctx:widget__ Activity"] = ""; +App::$strings["Member registrations waiting for confirmation"] = ""; App::$strings["Inspect queue"] = ""; -App::$strings["Profile Config"] = ""; App::$strings["DB updates"] = ""; -App::$strings["Logs"] = ""; -App::$strings["Plugin Features"] = ""; -App::$strings["User registrations waiting for confirmation"] = ""; -App::$strings["# Accounts"] = ""; -App::$strings["# blocked accounts"] = ""; -App::$strings["# expired accounts"] = ""; -App::$strings["# expiring accounts"] = ""; -App::$strings["# Channels"] = ""; -App::$strings["# primary"] = ""; -App::$strings["# clones"] = ""; -App::$strings["Message queues"] = ""; -App::$strings["Administration"] = ""; -App::$strings["Summary"] = ""; -App::$strings["Registered accounts"] = ""; -App::$strings["Pending registrations"] = ""; -App::$strings["Registered channels"] = ""; -App::$strings["Active plugins"] = ""; -App::$strings["Version"] = ""; -App::$strings["Site settings updated."] = ""; -App::$strings["experimental"] = ""; -App::$strings["unsupported"] = ""; -App::$strings["Yes - with approval"] = ""; -App::$strings["My site is not a public server"] = ""; -App::$strings["My site has paid access only"] = ""; -App::$strings["My site has free access only"] = ""; -App::$strings["My site offers free accounts with optional paid upgrades"] = ""; -App::$strings["Registration"] = ""; -App::$strings["File upload"] = ""; -App::$strings["Policies"] = ""; -App::$strings["Site name"] = ""; -App::$strings["Banner/Logo"] = ""; -App::$strings["Administrator Information"] = ""; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["System language"] = ""; -App::$strings["System theme"] = ""; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -App::$strings["Mobile system theme"] = ""; -App::$strings["Theme for mobile devices"] = ""; -App::$strings["Enable Diaspora Protocol"] = ""; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = ""; -App::$strings["Allow Feeds as Connections"] = ""; -App::$strings["(Heavy system resource usage)"] = ""; -App::$strings["Maximum image size"] = ""; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -App::$strings["Does this site allow new member registration?"] = ""; -App::$strings["Which best describes the types of account offered by this hub?"] = ""; -App::$strings["Register text"] = ""; -App::$strings["Will be displayed prominently on the registration page."] = ""; -App::$strings["Accounts abandoned after x days"] = ""; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -App::$strings["Allowed friend domains"] = ""; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Not allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; -App::$strings["Block public"] = ""; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -App::$strings["Verify Email Addresses"] = ""; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; -App::$strings["Force publish"] = ""; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -App::$strings["Disable discovery tab"] = ""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; -App::$strings["No login on Homepage"] = ""; -App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = ""; -App::$strings["Proxy user"] = ""; -App::$strings["Proxy URL"] = ""; -App::$strings["Network timeout"] = ""; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -App::$strings["Delivery interval"] = ""; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -App::$strings["Poll interval"] = ""; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -App::$strings["Maximum Load Average"] = ""; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -App::$strings["Expiration period in days for imported (matrix/network) content"] = ""; -App::$strings["0 for no expiration of imported content"] = ""; -App::$strings["No server found"] = ""; -App::$strings["ID"] = ""; -App::$strings["for channel"] = ""; -App::$strings["on server"] = ""; -App::$strings["Status"] = ""; -App::$strings["Server"] = ""; -App::$strings["Update has been marked successful"] = ""; -App::$strings["Executing %s failed. Check system logs."] = ""; -App::$strings["Update %s was successfully applied."] = ""; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -App::$strings["Update function %s could not be found."] = ""; -App::$strings["No failed updates."] = ""; -App::$strings["Failed Updates"] = ""; -App::$strings["Mark success (if update was manually applied)"] = ""; -App::$strings["Attempt to execute this update step automatically"] = ""; -App::$strings["Queue Statistics"] = ""; -App::$strings["Total Entries"] = ""; -App::$strings["Priority"] = ""; -App::$strings["Destination URL"] = ""; -App::$strings["Mark hub permanently offline"] = ""; -App::$strings["Empty queue for this hub"] = ""; -App::$strings["Last known contact"] = ""; -App::$strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s user deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Account not found"] = ""; -App::$strings["User '%s' blocked"] = ""; -App::$strings["User '%s' unblocked"] = ""; -App::$strings["Users"] = ""; -App::$strings["select all"] = ""; -App::$strings["User registrations waiting for confirm"] = ""; -App::$strings["Request date"] = ""; -App::$strings["No registrations."] = ""; -App::$strings["Approve"] = ""; -App::$strings["Deny"] = ""; -App::$strings["Block"] = ""; -App::$strings["Unblock"] = ""; -App::$strings["Register date"] = ""; -App::$strings["Last login"] = ""; -App::$strings["Expires"] = ""; -App::$strings["Service Class"] = ""; -App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Channel not found"] = ""; -App::$strings["Channel '%s' deleted"] = ""; -App::$strings["Channel '%s' uncensored"] = ""; -App::$strings["Channel '%s' censored"] = ""; -App::$strings["Censor"] = ""; -App::$strings["Uncensor"] = ""; -App::$strings["UID"] = ""; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["Plugin %s disabled."] = ""; -App::$strings["Plugin %s enabled."] = ""; -App::$strings["Disable"] = ""; -App::$strings["Enable"] = ""; -App::$strings["Toggle"] = ""; -App::$strings["Author: "] = ""; -App::$strings["Maintainer: "] = ""; -App::$strings["No themes found."] = ""; -App::$strings["Screenshot"] = ""; -App::$strings["[Experimental]"] = ""; -App::$strings["[Unsupported]"] = ""; -App::$strings["Log settings updated."] = ""; -App::$strings["Clear"] = ""; -App::$strings["Debugging"] = ""; -App::$strings["Log file"] = ""; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = ""; -App::$strings["Log level"] = ""; -App::$strings["New Profile Field"] = ""; -App::$strings["Field nickname"] = ""; -App::$strings["System name of field"] = ""; -App::$strings["Input type"] = ""; -App::$strings["Field Name"] = ""; -App::$strings["Label on profile pages"] = ""; -App::$strings["Help text"] = ""; -App::$strings["Additional info (optional)"] = ""; -App::$strings["Field definition not found"] = ""; -App::$strings["Edit Profile Field"] = ""; -App::$strings["Unable to find your hub."] = ""; -App::$strings["Post successful."] = ""; -App::$strings["Edit Block"] = ""; -App::$strings["Delete block?"] = ""; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; -App::$strings["Passwords do not match."] = ""; -App::$strings["Registration successful. Please check your email for validation instructions."] = ""; -App::$strings["Your registration is pending approval by the site owner."] = ""; -App::$strings["Your registration can not be processed."] = ""; -App::$strings["Registration on this site/hub is by approval only."] = ""; -App::$strings["Register at another affiliated site/hub"] = ""; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -App::$strings["Terms of Service"] = ""; -App::$strings["I accept the %s for this website"] = ""; -App::$strings["I am over 13 years of age and accept the %s for this website"] = ""; -App::$strings["Membership on this site is by invitation only."] = ""; -App::$strings["Please enter your invitation code"] = ""; -App::$strings["Your email address"] = ""; -App::$strings["Choose a password"] = ""; -App::$strings["Please re-enter your password"] = ""; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Account"] = ""; -App::$strings["WARNING: "] = ""; -App::$strings["This account and all its channels will be completely removed from the network. "] = ""; -App::$strings["This action is permanent and can not be undone!"] = ""; -App::$strings["Please enter your password for verification:"] = ""; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; -App::$strings["Unable to locate original post."] = ""; -App::$strings["Empty post discarded."] = ""; -App::$strings["Executable content type not permitted to this channel."] = ""; -App::$strings["System error. Post not saved."] = ""; -App::$strings["Unable to obtain post information from database."] = ""; -App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; -App::$strings["You have reached your limit of %1$.0f webpages."] = ""; -App::$strings["[Embedded content - reload page to view]"] = ""; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = ""; -App::$strings["Comanche page description language help"] = ""; -App::$strings["Layout Description"] = ""; -App::$strings["Download PDL file"] = ""; -App::$strings["First Name"] = ""; -App::$strings["Last Name"] = ""; -App::$strings["Nickname"] = ""; -App::$strings["Full Name"] = ""; -App::$strings["Profile Photo 16px"] = ""; -App::$strings["Profile Photo 32px"] = ""; -App::$strings["Profile Photo 48px"] = ""; -App::$strings["Profile Photo 64px"] = ""; -App::$strings["Profile Photo 80px"] = ""; -App::$strings["Profile Photo 128px"] = ""; -App::$strings["Timezone"] = ""; -App::$strings["Homepage URL"] = ""; -App::$strings["Birth Year"] = ""; -App::$strings["Birth Month"] = ""; -App::$strings["Birth Day"] = ""; -App::$strings["Birthdate"] = ""; -App::$strings["Conversation removed."] = ""; +App::$strings["Admin"] = ""; +App::$strings["Addon Features"] = ""; +App::$strings["Everything"] = ""; +App::$strings["App Collections"] = ""; +App::$strings["Installed apps"] = ""; +App::$strings["Archives"] = ""; +App::$strings["Bookmarked Chatrooms"] = ""; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Received Messages"] = ""; +App::$strings["Sent Messages"] = ""; +App::$strings["Conversations"] = ""; App::$strings["No messages."] = ""; App::$strings["Delete conversation"] = ""; -App::$strings["D, d M Y - g:i A"] = ""; -App::$strings["Unable to create element."] = ""; -App::$strings["Unable to update menu element."] = ""; -App::$strings["Unable to add menu element."] = ""; -App::$strings["Menu Item Permissions"] = ""; -App::$strings["Link Name"] = ""; -App::$strings["Link or Submenu Target"] = ""; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; -App::$strings["Use magic-auth if available"] = ""; -App::$strings["Open link in new window"] = ""; -App::$strings["Order in list"] = ""; -App::$strings["Higher numbers will sink to bottom of listing"] = ""; -App::$strings["Submit and finish"] = ""; -App::$strings["Submit and continue"] = ""; -App::$strings["Menu:"] = ""; -App::$strings["Link Target"] = ""; -App::$strings["Edit menu"] = ""; -App::$strings["Edit element"] = ""; -App::$strings["Drop element"] = ""; -App::$strings["New element"] = ""; -App::$strings["Edit this menu container"] = ""; -App::$strings["Add menu element"] = ""; -App::$strings["Delete this menu item"] = ""; -App::$strings["Edit this menu item"] = ""; -App::$strings["Menu item not found."] = ""; -App::$strings["Menu item deleted."] = ""; -App::$strings["Menu item could not be deleted."] = ""; -App::$strings["Edit Menu Element"] = ""; -App::$strings["Link text"] = ""; -App::$strings["Set your current mood and tell your friends"] = ""; -App::$strings["Total votes"] = ""; -App::$strings["Average Rating"] = ""; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Channel"] = ""; -App::$strings["This channel will be completely removed from the network. "] = ""; -App::$strings["Remove this channel and all its clones from the network"] = ""; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; -App::$strings["is now connected to"] = ""; -App::$strings["Could not access address book record."] = ""; -App::$strings["Refresh failed - channel is currently unavailable."] = ""; -App::$strings["Channel has been unblocked"] = ""; -App::$strings["Channel has been blocked"] = ""; -App::$strings["Unable to set address book parameters."] = ""; -App::$strings["Channel has been unignored"] = ""; -App::$strings["Channel has been ignored"] = ""; -App::$strings["Channel has been unarchived"] = ""; -App::$strings["Channel has been archived"] = ""; -App::$strings["Channel has been unhidden"] = ""; -App::$strings["Channel has been hidden"] = ""; -App::$strings["Channel has been approved"] = ""; -App::$strings["Channel has been unapproved"] = ""; -App::$strings["Connection has been removed."] = ""; -App::$strings["View %s's profile"] = ""; -App::$strings["Refresh Permissions"] = ""; -App::$strings["Fetch updated permissions"] = ""; -App::$strings["Recent Activity"] = ""; -App::$strings["View recent posts and comments"] = ""; -App::$strings["Block (or Unblock) all communications with this connection"] = ""; -App::$strings["Unignore"] = ""; -App::$strings["Ignore"] = ""; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = ""; -App::$strings["Unarchive"] = ""; -App::$strings["Archive"] = ""; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = ""; -App::$strings["Unhide"] = ""; -App::$strings["Hide"] = ""; -App::$strings["Hide or Unhide this connection from your other connections"] = ""; -App::$strings["Delete this connection"] = ""; -App::$strings["Approve this connection"] = ""; -App::$strings["Accept connection to allow communication"] = ""; -App::$strings["Connections: settings for %s"] = ""; -App::$strings["Apply these permissions automatically"] = ""; -App::$strings["Apply the permissions indicated on this page to all new connections."] = ""; -App::$strings["Slide to adjust your degree of friendship"] = ""; -App::$strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = ""; -App::$strings["inherited"] = ""; -App::$strings["Connection has no individual permissions!"] = ""; -App::$strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; -App::$strings["Profile Visibility"] = ""; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -App::$strings["Contact Information / Notes"] = ""; -App::$strings["Edit contact notes"] = ""; -App::$strings["Their Settings"] = ""; -App::$strings["My Settings"] = ""; -App::$strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = ""; -App::$strings["Clear/Disable Automatic Permissions"] = ""; -App::$strings["Forum Members"] = ""; -App::$strings["Soapbox"] = ""; -App::$strings["Full Sharing (typical social network permissions)"] = ""; -App::$strings["Cautious Sharing "] = ""; -App::$strings["Follow Only"] = ""; -App::$strings["Individual Permissions"] = ""; -App::$strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = ""; -App::$strings["Advanced Permissions"] = ""; -App::$strings["Simple Permissions (select one and submit)"] = ""; -App::$strings["Visit %s's profile - %s"] = ""; -App::$strings["Block/Unblock contact"] = ""; -App::$strings["Ignore contact"] = ""; -App::$strings["Repair URL settings"] = ""; -App::$strings["View conversations"] = ""; -App::$strings["Delete contact"] = ""; -App::$strings["Last update:"] = ""; -App::$strings["Update public posts"] = ""; -App::$strings["Update now"] = ""; -App::$strings["Currently blocked"] = ""; -App::$strings["Currently ignored"] = ""; -App::$strings["Currently archived"] = ""; -App::$strings["Currently pending"] = ""; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -App::$strings["The error message was:"] = ""; -App::$strings["Authentication failed."] = ""; -App::$strings["Remote Authentication"] = ""; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; -App::$strings["Authenticate"] = ""; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = ""; -App::$strings["Cannot verify requested channel."] = ""; -App::$strings["Selected channel has private message restrictions. Send failed."] = ""; -App::$strings["Message deleted."] = ""; -App::$strings["Message recalled."] = ""; -App::$strings["Send Private Message"] = ""; -App::$strings["To:"] = ""; -App::$strings["Subject:"] = ""; -App::$strings["Send"] = ""; -App::$strings["Message not found."] = ""; -App::$strings["Delete message"] = ""; -App::$strings["Recall message"] = ""; -App::$strings["Message has been recalled."] = ""; -App::$strings["Private Conversation"] = ""; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -App::$strings["Send Reply"] = ""; -App::$strings["Invalid request identifier."] = ""; -App::$strings["Discard"] = ""; -App::$strings["Please login."] = ""; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -App::$strings["Add a Channel"] = ""; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; -App::$strings["Choose a short nickname"] = ""; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; -App::$strings["Or import an existing channel from another location"] = ""; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = ""; -App::$strings["Channel Type"] = ""; -App::$strings["Read more about roles"] = ""; -App::$strings["App installed."] = ""; -App::$strings["Malformed app."] = ""; -App::$strings["Embed code"] = ""; -App::$strings["Edit App"] = ""; -App::$strings["Create App"] = ""; -App::$strings["Name of app"] = ""; -App::$strings["Location (URL) of app"] = ""; -App::$strings["Photo icon URL"] = ""; -App::$strings["80 x 80 pixels - optional"] = ""; -App::$strings["Version ID"] = ""; -App::$strings["Price of app"] = ""; -App::$strings["Location (URL) to purchase app"] = ""; -App::$strings["sent you a private message"] = ""; -App::$strings["added your channel"] = ""; -App::$strings["posted an event"] = ""; -App::$strings["No such group"] = ""; -App::$strings["No such channel"] = ""; -App::$strings["Search Results For:"] = ""; -App::$strings["Collection is empty"] = ""; -App::$strings["Collection: "] = ""; -App::$strings["Connection: "] = ""; -App::$strings["Invalid connection."] = ""; -App::$strings["Ipsum Lorem"] = ""; -App::$strings["Bookmark added"] = ""; -App::$strings["My Bookmarks"] = ""; -App::$strings["My Connections Bookmarks"] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -App::$strings["Poll"] = ""; -App::$strings["View Results"] = ""; -App::$strings["No service class restrictions found."] = ""; -App::$strings["Files: shared with me"] = ""; -App::$strings["NEW"] = ""; -App::$strings["Remove all files"] = ""; -App::$strings["Remove this file"] = ""; -App::$strings["Schema Default"] = ""; -App::$strings["Sans-Serif"] = ""; -App::$strings["Monospace"] = ""; +App::$strings["Click to show more"] = ""; +App::$strings["Events Tools"] = ""; +App::$strings["Export Calendar"] = ""; +App::$strings["Import Calendar"] = ""; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; +App::$strings["Add New Connection"] = ""; +App::$strings["Enter channel address"] = ""; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = ""; +App::$strings["HQ Control Panel"] = ""; +App::$strings["Create a new post"] = ""; +App::$strings["Private Mail Menu"] = ""; +App::$strings["Combined View"] = ""; +App::$strings["Inbox"] = ""; +App::$strings["Outbox"] = ""; +App::$strings["New Message"] = ""; +App::$strings["Profile Creation"] = ""; +App::$strings["Upload profile photo"] = ""; +App::$strings["Upload cover photo"] = ""; +App::$strings["Edit your profile"] = ""; +App::$strings["Find and Connect with others"] = ""; +App::$strings["View the directory"] = ""; +App::$strings["View friend suggestions"] = ""; +App::$strings["Manage your connections"] = ""; +App::$strings["Communicate"] = ""; +App::$strings["View your channel homepage"] = ""; +App::$strings["View your network stream"] = ""; +App::$strings["View public stream"] = ""; +App::$strings["New Member Links"] = ""; +App::$strings["photo/image"] = ""; +App::$strings["Rating Tools"] = ""; +App::$strings["Rate Me"] = ""; +App::$strings["View Ratings"] = ""; +App::$strings["Remove term"] = ""; +App::$strings["Account settings"] = ""; +App::$strings["Channel settings"] = ""; +App::$strings["Display settings"] = ""; +App::$strings["Manage locations"] = ""; +App::$strings["Export channel"] = ""; +App::$strings["OAuth1 apps"] = ""; +App::$strings["OAuth2 apps"] = ""; +App::$strings["Commented Date"] = ""; +App::$strings["Order by last commented date"] = ""; +App::$strings["Posted Date"] = ""; +App::$strings["Order by last posted date"] = ""; +App::$strings["Date Unthreaded"] = ""; +App::$strings["Order unthreaded by date"] = ""; +App::$strings["Suggested Chatrooms"] = ""; +App::$strings["Tags"] = ""; +App::$strings["Tasks"] = ""; +App::$strings["Friend zoom in/out"] = ""; +App::$strings["Common Connections"] = ""; +App::$strings["View all %d common connections"] = ""; +App::$strings["Saved Folders"] = ""; +App::$strings["%d invitation available"] = [ + 0 => "", + 1 => "", +]; +App::$strings["Find Channels"] = ""; +App::$strings["Enter name or interest"] = ""; +App::$strings["Connect/Follow"] = ""; +App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; +App::$strings["Advanced example: name=fred and country=iceland"] = ""; +App::$strings["Personal Posts"] = ""; +App::$strings["Show posts that mention or involve me"] = ""; +App::$strings["Show posts that include events"] = ""; +App::$strings["Starred Posts"] = ""; +App::$strings["Show posts that I have starred"] = ""; +App::$strings["Show posts related to the %s access list"] = ""; +App::$strings["Show my access lists"] = ""; +App::$strings["Show posts to this group"] = ""; +App::$strings["New post"] = ""; +App::$strings["Groups"] = ""; +App::$strings["Show groups"] = ""; +App::$strings["Show posts to this collection"] = ""; +App::$strings["Collections"] = ""; +App::$strings["Show collections"] = ""; +App::$strings["Show posts that I have filed to %s"] = ""; +App::$strings["Show filed post categories"] = ""; +App::$strings["Remove active filter"] = ""; +App::$strings["Activity Filters"] = ""; +App::$strings["Ignore/Hide"] = ""; +App::$strings["Suggestions"] = ""; +App::$strings["See more..."] = ""; +App::$strings["Select Channel"] = ""; +App::$strings["Read-write"] = ""; +App::$strings["Read-only"] = ""; +App::$strings["Channel Calendar"] = ""; +App::$strings["Shared CalDAV Calendars"] = ""; +App::$strings["Share this calendar"] = ""; +App::$strings["Calendar name and color"] = ""; +App::$strings["Create new CalDAV calendar"] = ""; +App::$strings["Calendar Name"] = ""; +App::$strings["Calendar Tools"] = ""; +App::$strings["Import calendar"] = ""; +App::$strings["Select a calendar to import to"] = ""; +App::$strings["Addressbooks"] = ""; +App::$strings["Addressbook name"] = ""; +App::$strings["Create new addressbook"] = ""; +App::$strings["Addressbook Name"] = ""; +App::$strings["Addressbook Tools"] = ""; +App::$strings["Import addressbook"] = ""; +App::$strings["Select an addressbook to import to"] = ""; +App::$strings["New Network Activity"] = ""; +App::$strings["New Network Activity Notifications"] = ""; +App::$strings["View your network activity"] = ""; +App::$strings["Mark all notifications read"] = ""; +App::$strings["Show new posts only"] = ""; +App::$strings["Filter by name"] = ""; +App::$strings["New Home Activity"] = ""; +App::$strings["New Home Activity Notifications"] = ""; +App::$strings["View your home activity"] = ""; +App::$strings["Mark all notifications seen"] = ""; +App::$strings["New Mails"] = ""; +App::$strings["New Mails Notifications"] = ""; +App::$strings["View your private mails"] = ""; +App::$strings["Mark all messages seen"] = ""; +App::$strings["New Events"] = ""; +App::$strings["New Events Notifications"] = ""; +App::$strings["View events"] = ""; +App::$strings["Mark all events seen"] = ""; +App::$strings["New Connections Notifications"] = ""; +App::$strings["View all connections"] = ""; +App::$strings["New Files"] = ""; +App::$strings["New Files Notifications"] = ""; +App::$strings["Notices"] = ""; +App::$strings["View all notices"] = ""; +App::$strings["Mark all notices seen"] = ""; +App::$strings["New Registrations"] = ""; +App::$strings["New Registrations Notifications"] = ""; +App::$strings["Public Stream Notifications"] = ""; +App::$strings["View the public stream"] = ""; +App::$strings["Sorry, you have got no notifications at the moment"] = ""; +App::$strings["New window"] = ""; +App::$strings["Open the selected location in a different window or browser tab"] = ""; +App::$strings["Home, Voice"] = ""; +App::$strings["Home, Fax"] = ""; +App::$strings["Work, Voice"] = ""; +App::$strings["Work, Fax"] = ""; +App::$strings["unknown"] = ""; +App::$strings["Birthday"] = ""; +App::$strings["Age: "] = ""; +App::$strings["YYYY-MM-DD or MM-DD"] = ""; +App::$strings["never"] = ""; +App::$strings["less than a second ago"] = ""; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = ""; +App::$strings["__ctx:relative_date__ year"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:relative_date__ month"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:relative_date__ week"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:relative_date__ day"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:relative_date__ hour"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:relative_date__ minute"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:relative_date__ second"] = [ + 0 => "", + 1 => "", +]; +App::$strings["%1\$s's birthday"] = ""; +App::$strings["Happy Birthday %1\$s"] = ""; +App::$strings["Cannot locate DNS info for database server '%s'"] = ""; +App::$strings["Delete this item?"] = ""; +App::$strings["%s show less"] = ""; +App::$strings["%s expand"] = ""; +App::$strings["%s collapse"] = ""; +App::$strings["Password too short"] = ""; +App::$strings["Passwords do not match"] = ""; +App::$strings["everybody"] = ""; +App::$strings["Secret Passphrase"] = ""; +App::$strings["Passphrase hint"] = ""; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; +App::$strings["close all"] = ""; +App::$strings["Nothing new here"] = ""; +App::$strings["Rate This Channel (this is public)"] = ""; +App::$strings["Describe (optional)"] = ""; +App::$strings["Please enter a link URL"] = ""; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; +App::$strings["lovely"] = ""; +App::$strings["wonderful"] = ""; +App::$strings["fantastic"] = ""; +App::$strings["great"] = ""; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = ""; +App::$strings[") or enter a new one."] = ""; +App::$strings["Thank you, this nickname is valid."] = ""; +App::$strings["A channel name is required."] = ""; +App::$strings["This is a "] = ""; +App::$strings[" channel name"] = ""; +App::$strings["timeago.prefixAgo"] = ""; +App::$strings["timeago.prefixFromNow"] = ""; +App::$strings["timeago.suffixAgo"] = ""; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = ""; +App::$strings["about a minute"] = ""; +App::$strings["%d minutes"] = ""; +App::$strings["about an hour"] = ""; +App::$strings["about %d hours"] = ""; +App::$strings["a day"] = ""; +App::$strings["%d days"] = ""; +App::$strings["about a month"] = ""; +App::$strings["%d months"] = ""; +App::$strings["about a year"] = ""; +App::$strings["%d years"] = ""; +App::$strings[" "] = ""; +App::$strings["timeago.numbers"] = ""; +App::$strings["January"] = ""; +App::$strings["February"] = ""; +App::$strings["March"] = ""; +App::$strings["April"] = ""; +App::$strings["__ctx:long__ May"] = ""; +App::$strings["June"] = ""; +App::$strings["July"] = ""; +App::$strings["August"] = ""; +App::$strings["September"] = ""; +App::$strings["October"] = ""; +App::$strings["November"] = ""; +App::$strings["December"] = ""; +App::$strings["Jan"] = ""; +App::$strings["Feb"] = ""; +App::$strings["Mar"] = ""; +App::$strings["Apr"] = ""; +App::$strings["__ctx:short__ May"] = ""; +App::$strings["Jun"] = ""; +App::$strings["Jul"] = ""; +App::$strings["Aug"] = ""; +App::$strings["Sep"] = ""; +App::$strings["Oct"] = ""; +App::$strings["Nov"] = ""; +App::$strings["Dec"] = ""; +App::$strings["Sunday"] = ""; +App::$strings["Monday"] = ""; +App::$strings["Tuesday"] = ""; +App::$strings["Wednesday"] = ""; +App::$strings["Thursday"] = ""; +App::$strings["Friday"] = ""; +App::$strings["Saturday"] = ""; +App::$strings["Sun"] = ""; +App::$strings["Mon"] = ""; +App::$strings["Tue"] = ""; +App::$strings["Wed"] = ""; +App::$strings["Thu"] = ""; +App::$strings["Fri"] = ""; +App::$strings["Sat"] = ""; +App::$strings["__ctx:calendar__ today"] = ""; +App::$strings["__ctx:calendar__ month"] = ""; +App::$strings["__ctx:calendar__ week"] = ""; +App::$strings["__ctx:calendar__ day"] = ""; +App::$strings["__ctx:calendar__ All day"] = ""; +App::$strings["Trending"] = ""; +App::$strings["Keywords"] = ""; +App::$strings["have"] = ""; +App::$strings["has"] = ""; +App::$strings["want"] = ""; +App::$strings["wants"] = ""; +App::$strings["likes"] = ""; +App::$strings["dislikes"] = ""; +App::$strings["l F d, Y \\@ g:i A"] = ""; +App::$strings["Starts:"] = ""; +App::$strings["Finishes:"] = ""; +App::$strings["This event has been added to your calendar."] = ""; +App::$strings["Not specified"] = ""; +App::$strings["Needs Action"] = ""; +App::$strings["Completed"] = ""; +App::$strings["In Process"] = ""; +App::$strings["Cancelled"] = ""; +App::$strings["view full size"] = ""; +App::$strings["Friendica"] = ""; +App::$strings["OStatus"] = ""; +App::$strings["GNU-Social"] = ""; +App::$strings["RSS/Atom"] = ""; +App::$strings["Diaspora"] = ""; +App::$strings["Facebook"] = ""; +App::$strings["Zot"] = ""; +App::$strings["LinkedIn"] = ""; +App::$strings["XMPP/IM"] = ""; +App::$strings["MySpace"] = ""; +App::$strings["View PDF"] = ""; +App::$strings[" by "] = ""; +App::$strings[" on "] = ""; +App::$strings["Embedded content"] = ""; +App::$strings["Embedding disabled"] = ""; +App::$strings["Image exceeds website size limit of %lu bytes"] = ""; +App::$strings["Image file is empty."] = ""; +App::$strings["Photo storage failed."] = ""; +App::$strings["a new photo"] = ""; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = ""; +App::$strings["Photo Albums"] = ""; +App::$strings["Upload New Photos"] = ""; +App::$strings["Delegation session ended."] = ""; +App::$strings["Logged out."] = ""; +App::$strings["Email validation is incomplete. Please check your email."] = ""; +App::$strings["Failed authentication"] = ""; +App::$strings["Login failed."] = ""; +App::$strings["Not a valid email address"] = ""; +App::$strings["Your email domain is not among those allowed on this site"] = ""; +App::$strings["Your email address is already registered at this site."] = ""; +App::$strings["An invitation is required."] = ""; +App::$strings["Invitation could not be verified."] = ""; +App::$strings["Please enter the required information."] = ""; +App::$strings["Failed to store account information."] = ""; +App::$strings["Registration confirmation for %s"] = ""; +App::$strings["Registration request at %s"] = ""; +App::$strings["your registration password"] = ""; +App::$strings["Registration details for %s"] = ""; +App::$strings["Account approved."] = ""; +App::$strings["Registration revoked for %s"] = ""; +App::$strings["Click here to upgrade."] = ""; +App::$strings["This action exceeds the limits set by your subscription plan."] = ""; +App::$strings["This action is not available under your subscription plan."] = ""; +App::$strings["Image/photo"] = ""; +App::$strings["Encrypted content"] = ""; +App::$strings["Install %1\$s element %2\$s"] = ""; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = ""; +App::$strings["card"] = ""; +App::$strings["article"] = ""; +App::$strings["Click to open/close"] = ""; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = ""; +App::$strings["$1 wrote:"] = ""; +App::$strings["General Features"] = ""; +App::$strings["Display new member quick links menu"] = ""; +App::$strings["Advanced Profiles"] = ""; +App::$strings["Additional profile sections and selections"] = ""; +App::$strings["Private Notes"] = ""; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = ""; +App::$strings["Create interactive articles"] = ""; +App::$strings["Photo Location"] = ""; +App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; +App::$strings["Event Timezone Selection"] = ""; +App::$strings["Allow event creation in timezones other than your own."] = ""; +App::$strings["Advanced Directory Search"] = ""; +App::$strings["Allows creation of complex directory search queries"] = ""; +App::$strings["Advanced Theme and Layout Settings"] = ""; +App::$strings["Allows fine tuning of themes and page layouts"] = ""; +App::$strings["Access Control and Permissions"] = ""; +App::$strings["Privacy Groups"] = ""; +App::$strings["Enable management and selection of privacy groups"] = ""; +App::$strings["OAuth2 Clients"] = ""; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = ""; +App::$strings["Post Composition Features"] = ""; +App::$strings["Auto-save drafts of posts and comments"] = ""; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = ""; +App::$strings["Network and Stream Filtering"] = ""; +App::$strings["Post/Comment Tools"] = ""; +App::$strings["Community Tagging"] = ""; +App::$strings["Ability to tag existing posts"] = ""; +App::$strings["Post Categories"] = ""; +App::$strings["Add categories to your posts"] = ""; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Ability to file posts under folders"] = ""; +App::$strings["Dislike Posts"] = ""; +App::$strings["Ability to dislike posts/comments"] = ""; +App::$strings["Tag Cloud"] = ""; +App::$strings["Provide a personal tag cloud on your channel page"] = ""; +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"] = ""; +App::$strings["Don't show"] = ""; +App::$strings["Post permissions cannot be changed after a post is shared.
These permissions set who is allowed to view the post."] = ""; +App::$strings["Unable to import a removed channel."] = ""; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; +App::$strings["Unable to create a unique channel address. Import failed."] = ""; +App::$strings["Cloned channel not found. Import failed."] = ""; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +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."] = ""; +App::$strings["(Unknown)"] = ""; +App::$strings["Visible to anybody on the internet."] = ""; +App::$strings["Visible to you only."] = ""; +App::$strings["Visible to anybody in this network."] = ""; +App::$strings["Visible to anybody authenticated."] = ""; +App::$strings["Visible to anybody on %s."] = ""; +App::$strings["Visible to all connections."] = ""; +App::$strings["Visible to approved connections."] = ""; +App::$strings["Visible to specific connections."] = ""; +App::$strings["Privacy group not found."] = ""; +App::$strings["Privacy group is empty."] = ""; +App::$strings["Privacy group: %s"] = ""; +App::$strings["Connection not found."] = ""; +App::$strings["profile photo"] = ""; +App::$strings["[Edited %s]"] = ""; +App::$strings["__ctx:edit_activity__ Post"] = ""; +App::$strings["__ctx:edit_activity__ Comment"] = ""; +App::$strings["Item was not found."] = ""; +App::$strings["Unknown error."] = ""; +App::$strings["No source file."] = ""; +App::$strings["Cannot locate file to replace"] = ""; +App::$strings["Cannot locate file to revise/update"] = ""; +App::$strings["File exceeds size limit of %d"] = ""; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +App::$strings["File upload failed. Possible system limit or action terminated."] = ""; +App::$strings["Stored file could not be verified. Upload failed."] = ""; +App::$strings["Path not available."] = ""; +App::$strings["Empty pathname"] = ""; +App::$strings["duplicate filename or path"] = ""; +App::$strings["Path not found."] = ""; +App::$strings["mkdir failed."] = ""; +App::$strings["database storage failed."] = ""; +App::$strings["Empty path"] = ""; +App::$strings["Unable to obtain identity information from database"] = ""; +App::$strings["Empty name"] = ""; +App::$strings["Name too long"] = ""; +App::$strings["No account identifier"] = ""; +App::$strings["Nickname is required."] = ""; +App::$strings["Unable to retrieve created identity"] = ""; +App::$strings["Default Profile"] = ""; +App::$strings["Unable to retrieve modified identity"] = ""; +App::$strings["likes %1\$s's %2\$s"] = ""; +App::$strings["doesn't like %1\$s's %2\$s"] = ""; +App::$strings["%1\$s is now connected with %2\$s"] = ""; +App::$strings["%1\$s poked %2\$s"] = ""; +App::$strings["poked"] = ""; +App::$strings["View %s's profile @ %s"] = ""; +App::$strings["Categories:"] = ""; +App::$strings["Filed under:"] = ""; +App::$strings["View in context"] = ""; +App::$strings["remove"] = ""; +App::$strings["Loading..."] = ""; +App::$strings["Delete Selected Items"] = ""; +App::$strings["View Source"] = ""; +App::$strings["Follow Thread"] = ""; +App::$strings["Unfollow Thread"] = ""; +App::$strings["Visit"] = ""; +App::$strings["Edit Connection"] = ""; +App::$strings["Message"] = ""; +App::$strings["%s likes this."] = ""; +App::$strings["%s doesn't like this."] = ""; +App::$strings["%2\$d people like this."] = [ + 0 => "", + 1 => "", +]; +App::$strings["%2\$d people don't like this."] = [ + 0 => "", + 1 => "", +]; +App::$strings["and"] = ""; +App::$strings[", and %d other people"] = [ + 0 => "", + 1 => "", +]; +App::$strings["%s like this."] = ""; +App::$strings["%s don't like this."] = ""; +App::$strings["Set your location"] = ""; +App::$strings["Clear browser location"] = ""; +App::$strings["Embed (existing) photo from your photo albums"] = ""; +App::$strings["Tag term:"] = ""; +App::$strings["Where are you right now?"] = ""; +App::$strings["Choose a different album..."] = ""; +App::$strings["Comments enabled"] = ""; +App::$strings["Comments disabled"] = ""; +App::$strings["Page link name"] = ""; +App::$strings["Post as"] = ""; +App::$strings["Please enter a link location (URL)"] = ""; +App::$strings["Insert link only"] = ""; +App::$strings["Embed content if possible"] = ""; +App::$strings["Embed an image from your albums"] = ""; +App::$strings["Toggle voting"] = ""; +App::$strings["Disable comments"] = ""; +App::$strings["Toggle comments"] = ""; +App::$strings["Categories (optional, comma-separated list)"] = ""; +App::$strings["Other networks and post services"] = ""; +App::$strings["Set expiration date"] = ""; +App::$strings["Set publish date"] = ""; +App::$strings["Find remote media players (oEmbed)"] = ""; +App::$strings["Find shareable objects (Zot)"] = ""; +App::$strings["Post to Collections"] = ""; +App::$strings["Commented Order"] = ""; +App::$strings["Sort by Comment Date"] = ""; +App::$strings["Posted Order"] = ""; +App::$strings["Sort by Post Date"] = ""; +App::$strings["Posts that mention or involve you"] = ""; +App::$strings["Activity Stream - by date"] = ""; +App::$strings["Starred"] = ""; +App::$strings["Favourite Posts"] = ""; +App::$strings["Spam"] = ""; +App::$strings["Posts flagged as SPAM"] = ""; +App::$strings["Status Messages and Posts"] = ""; +App::$strings["Profile Details"] = ""; +App::$strings["Files and Storage"] = ""; +App::$strings["Bookmarks"] = ""; +App::$strings["Saved Bookmarks"] = ""; +App::$strings["View Cards"] = ""; +App::$strings["articles"] = ""; +App::$strings["View Articles"] = ""; +App::$strings["View Webpages"] = ""; +App::$strings["Wikis"] = ""; +App::$strings["__ctx:noun__ Attending"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:noun__ Not Attending"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:noun__ Undecided"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:noun__ Agree"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:noun__ Disagree"] = [ + 0 => "", + 1 => "", +]; +App::$strings["__ctx:noun__ Abstain"] = [ + 0 => "", + 1 => "", +]; +App::$strings["Download binary/encrypted content"] = ""; +App::$strings["Unable to determine sender."] = ""; +App::$strings["No recipient provided."] = ""; +App::$strings["[no subject]"] = ""; +App::$strings["Stored post could not be verified."] = ""; +App::$strings["Remote authentication"] = ""; +App::$strings["Click to authenticate to your home hub"] = ""; +App::$strings["Manage your channels"] = ""; +App::$strings["Manage your access lists"] = ""; +App::$strings["Account/Channel Settings"] = ""; +App::$strings["Logout"] = ""; +App::$strings["End this session"] = ""; +App::$strings["Your profile page"] = ""; +App::$strings["Manage/Edit profiles"] = ""; +App::$strings["Sign in"] = ""; +App::$strings["Take me home"] = ""; +App::$strings["Log me out of this site"] = ""; +App::$strings["Create an account"] = ""; +App::$strings["Help and documentation"] = ""; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = ""; +App::$strings["Site Setup and Configuration"] = ""; +App::$strings["Powered by \$Projectname"] = ""; +App::$strings["@name, !forum, #tag, content"] = ""; +App::$strings["Please wait..."] = ""; +App::$strings["Add/Manage Apps"] = ""; +App::$strings["Arrange Apps"] = ""; +App::$strings["Toggle System Apps"] = ""; +App::$strings["prev"] = ""; +App::$strings["first"] = ""; +App::$strings["last"] = ""; +App::$strings["next"] = ""; +App::$strings["older"] = ""; +App::$strings["newer"] = ""; +App::$strings["No connections"] = ""; +App::$strings["View all %s connections"] = ""; +App::$strings["Network: %s"] = ""; +App::$strings["poke"] = ""; +App::$strings["ping"] = ""; +App::$strings["pinged"] = ""; +App::$strings["prod"] = ""; +App::$strings["prodded"] = ""; +App::$strings["slap"] = ""; +App::$strings["slapped"] = ""; +App::$strings["finger"] = ""; +App::$strings["fingered"] = ""; +App::$strings["rebuff"] = ""; +App::$strings["rebuffed"] = ""; +App::$strings["happy"] = ""; +App::$strings["sad"] = ""; +App::$strings["mellow"] = ""; +App::$strings["tired"] = ""; +App::$strings["perky"] = ""; +App::$strings["angry"] = ""; +App::$strings["stupefied"] = ""; +App::$strings["puzzled"] = ""; +App::$strings["interested"] = ""; +App::$strings["bitter"] = ""; +App::$strings["cheerful"] = ""; +App::$strings["alive"] = ""; +App::$strings["annoyed"] = ""; +App::$strings["anxious"] = ""; +App::$strings["cranky"] = ""; +App::$strings["disturbed"] = ""; +App::$strings["frustrated"] = ""; +App::$strings["depressed"] = ""; +App::$strings["motivated"] = ""; +App::$strings["relaxed"] = ""; +App::$strings["surprised"] = ""; +App::$strings["May"] = ""; +App::$strings["Unknown Attachment"] = ""; +App::$strings["remove category"] = ""; +App::$strings["remove from file"] = ""; +App::$strings["Added to your calendar"] = ""; +App::$strings["Page layout"] = ""; +App::$strings["You can create your own with the layouts tool"] = ""; +App::$strings["BBcode"] = ""; +App::$strings["HTML"] = ""; +App::$strings["Markdown"] = ""; +App::$strings["Text"] = ""; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; +App::$strings["Page content type"] = ""; +App::$strings["activity"] = ""; +App::$strings["a-z, 0-9, -, and _ only"] = ""; +App::$strings["Design Tools"] = ""; +App::$strings["Pages"] = ""; +App::$strings["Import website..."] = ""; +App::$strings["Select folder to import"] = ""; +App::$strings["Import from a zipped folder:"] = ""; +App::$strings["Import from cloud files:"] = ""; +App::$strings["/cloud/channel/path/to/folder"] = ""; +App::$strings["Enter path to website files"] = ""; +App::$strings["Select folder"] = ""; +App::$strings["Export website..."] = ""; +App::$strings["Export to a zip file"] = ""; +App::$strings["website.zip"] = ""; +App::$strings["Enter a name for the zip file."] = ""; +App::$strings["Export to cloud files"] = ""; +App::$strings["/path/to/export/folder"] = ""; +App::$strings["Enter a path to a cloud files destination."] = ""; +App::$strings["Specify folder"] = ""; +App::$strings["Source channel not found."] = ""; +App::$strings["Focus (Hubzilla default)"] = ""; App::$strings["Theme settings"] = ""; -App::$strings["Set scheme"] = ""; -App::$strings["Set font-size for posts and comments"] = ""; -App::$strings["Set font face"] = ""; -App::$strings["Set iconset"] = ""; -App::$strings["Set big shadow size, default 15px 15px 15px"] = ""; -App::$strings["Set small shadow size, default 5px 5px 5px"] = ""; -App::$strings["Set shadow color, default #000"] = ""; -App::$strings["Set radius size, default 5px"] = ""; -App::$strings["Set line-height for posts and comments"] = ""; -App::$strings["Set background image"] = ""; -App::$strings["Set background attachment"] = ""; -App::$strings["Set background color"] = ""; -App::$strings["Set section background image"] = ""; -App::$strings["Set section background color"] = ""; -App::$strings["Set color of items - use hex"] = ""; -App::$strings["Set color of links - use hex"] = ""; -App::$strings["Set max-width for items. Default 400px"] = ""; -App::$strings["Set min-width for items. Default 240px"] = ""; -App::$strings["Set the generic content wrapper width. Default 48%"] = ""; -App::$strings["Set color of fonts - use hex"] = ""; -App::$strings["Set background-size element"] = ""; -App::$strings["Item opacity"] = ""; -App::$strings["Display post previews only"] = ""; -App::$strings["Display side bar on channel page"] = ""; -App::$strings["Colour of the navigation bar"] = ""; -App::$strings["Item float"] = ""; -App::$strings["Left offset of the section element"] = ""; -App::$strings["Right offset of the section element"] = ""; -App::$strings["Section width"] = ""; -App::$strings["Left offset of the aside"] = ""; -App::$strings["Right offset of the aside element"] = ""; -App::$strings["Light (Hubzilla default)"] = ""; -App::$strings["Select scheme"] = ""; App::$strings["Narrow navbar"] = ""; App::$strings["Navigation bar background color"] = ""; -App::$strings["Navigation bar gradient top color"] = ""; -App::$strings["Navigation bar gradient bottom color"] = ""; -App::$strings["Navigation active button gradient top color"] = ""; -App::$strings["Navigation active button gradient bottom color"] = ""; -App::$strings["Navigation bar border color "] = ""; App::$strings["Navigation bar icon color "] = ""; App::$strings["Navigation bar active icon color "] = ""; -App::$strings["link color"] = ""; +App::$strings["Link color"] = ""; App::$strings["Set font-color for banner"] = ""; App::$strings["Set the background color"] = ""; App::$strings["Set the background image"] = ""; App::$strings["Set the background color of items"] = ""; App::$strings["Set the background color of comments"] = ""; -App::$strings["Set the border color of comments"] = ""; -App::$strings["Set the indent for comments"] = ""; -App::$strings["Set the basic color for item icons"] = ""; -App::$strings["Set the hover color for item icons"] = ""; App::$strings["Set font-size for the entire application"] = ""; -App::$strings["Example: 14px"] = ""; +App::$strings["Examples: 1rem, 100%, 16px"] = ""; App::$strings["Set font-color for posts and comments"] = ""; App::$strings["Set radius of corners"] = ""; +App::$strings["Example: 4px"] = ""; App::$strings["Set shadow depth of photos"] = ""; App::$strings["Set maximum width of content region in pixel"] = ""; App::$strings["Leave empty for default width"] = ""; -App::$strings["Center page content"] = ""; -App::$strings["Set minimum opacity of nav bar - to hide it"] = ""; App::$strings["Set size of conversation author photo"] = ""; App::$strings["Set size of followup author photos"] = ""; -App::$strings["Update %s failed. See error logs."] = ""; -App::$strings["Update Error at %s"] = ""; -App::$strings["Create an account to access services and applications within the Hubzilla"] = ""; +App::$strings["Cover Photo"] = ""; +App::$strings["Edit Article"] = ""; +App::$strings["This addon app provides a blog that is separate from your social stream. Visitors may comment but the content remains on this site and is not propagated elsewhere."] = ""; +App::$strings["Add Article"] = ""; +App::$strings["Can view my articles"] = ""; +App::$strings["Can write to my articles"] = ""; +App::$strings["An account has been created for you."] = ""; +App::$strings["Authentication successful but rejected: account creation is disabled."] = ""; +App::$strings["Logfile archive directory"] = ""; +App::$strings["Directory to store rotated logs"] = ""; +App::$strings["Logfile size in bytes before rotating, example 10M"] = ""; +App::$strings["Number of logfiles to retain"] = ""; +App::$strings["NSFW Settings saved."] = ""; +App::$strings["This addon app looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; +App::$strings["Comma separated list of keywords to hide"] = ""; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; +App::$strings["Collapse entire conversation if a match is found"] = ""; +App::$strings["Not Safe For Work Settings"] = ""; +App::$strings["General Purpose Content Filter"] = ""; +App::$strings["Conversation muted"] = ""; +App::$strings["Possible adult content"] = ""; +App::$strings["%s - view"] = ""; +App::$strings["This addon app provides a selector on your network stream page allowing you to change the sort order of the page between 'recently commented' (default), 'posted order', or 'unthreaded' which displays single activities as received."] = ""; +App::$strings["superblock settings updated"] = ""; +App::$strings["This addon app allows you to block channels from appearing in your stream and basically makes them vanish from your life. You may occasionally encounter them on other websites but otherwise this blocking is extensive. To enable blocking, install this app if it is not already installed, then select the drop-down menu attached to the channel photo in a conversation and select 'Block Completely'"] = ""; +App::$strings["Currently blocked"] = ""; +App::$strings["No channels currently blocked"] = ""; +App::$strings["Superblock Settings"] = ""; +App::$strings["Block Completely"] = ""; +App::$strings["(No Title)"] = ""; +App::$strings["Wiki page create failed."] = ""; +App::$strings["Wiki not found."] = ""; +App::$strings["Destination name already exists"] = ""; +App::$strings["Page not found"] = ""; +App::$strings["Error reading page content"] = ""; +App::$strings["Error reading wiki"] = ""; +App::$strings["Page update failed."] = ""; +App::$strings["Nothing deleted"] = ""; +App::$strings["Compare: object not found."] = ""; +App::$strings["Page updated"] = ""; +App::$strings["Untitled"] = ""; +App::$strings["Wiki resource_id required for git commit"] = ""; +App::$strings["__ctx:wiki_history__ Message"] = ""; +App::$strings["Date"] = ""; +App::$strings["Revert"] = ""; +App::$strings["Compare"] = ""; +App::$strings["Add new page"] = ""; +App::$strings["Wiki Pages"] = ""; +App::$strings["Page name"] = ""; +App::$strings["Can view my wiki pages"] = ""; +App::$strings["Can write to my wiki pages"] = ""; +App::$strings["Wiki updated successfully"] = ""; +App::$strings["Wiki files deleted successfully"] = ""; +App::$strings["Profile Unavailable."] = ""; +App::$strings["This addon app provides a wiki for your channel."] = ""; +App::$strings["Invalid channel"] = ""; +App::$strings["Error retrieving wiki"] = ""; +App::$strings["Error creating zip file export folder"] = ""; +App::$strings["Error downloading wiki: "] = ""; +App::$strings["Download"] = ""; +App::$strings["Wiki name"] = ""; +App::$strings["Content type"] = ""; +App::$strings["Any type"] = ""; +App::$strings["Lock content type"] = ""; +App::$strings["Create a status post for this wiki"] = ""; +App::$strings["Edit Wiki Name"] = ""; +App::$strings["Wiki not found"] = ""; +App::$strings["Rename page"] = ""; +App::$strings["Error retrieving page content"] = ""; +App::$strings["New page"] = ""; +App::$strings["Revision Comparison"] = ""; +App::$strings["Short description of your changes (optional)"] = ""; +App::$strings["Source"] = ""; +App::$strings["New page name"] = ""; +App::$strings["Embed image from photo albums"] = ""; +App::$strings["History"] = ""; +App::$strings["Error creating wiki. Invalid name."] = ""; +App::$strings["A wiki with this name already exists."] = ""; +App::$strings["Wiki created, but error creating Home page."] = ""; +App::$strings["Error creating wiki"] = ""; +App::$strings["Error updating wiki. Invalid name."] = ""; +App::$strings["Error updating wiki"] = ""; +App::$strings["Wiki delete permission denied."] = ""; +App::$strings["Error deleting wiki"] = ""; +App::$strings["New page created"] = ""; +App::$strings["Cannot delete Home"] = ""; +App::$strings["Current Revision"] = ""; +App::$strings["Selected Revision"] = ""; +App::$strings["You must be authenticated."] = ""; +App::$strings["Channel is required."] = ""; +App::$strings["Zotpost Settings saved."] = ""; +App::$strings["This addon app allows you to cross-post to other Zot services and channels. After installing the app, select it to configure the destination settings and preferences."] = ""; +App::$strings["Zot server URL"] = ""; +App::$strings["https://example.com"] = ""; +App::$strings["Zot channel name"] = ""; +App::$strings["Nickname"] = ""; +App::$strings["Zot password"] = ""; +App::$strings["Send public postings to Zot channel by default"] = ""; +App::$strings["Zotpost Settings"] = ""; +App::$strings["Post to Zot"] = ""; +App::$strings["Add some colour to tag clouds"] = ""; +App::$strings["Rainbow Tag"] = ""; +App::$strings["No server specified"] = ""; +App::$strings["Posts imported"] = ""; +App::$strings["Files imported"] = ""; +App::$strings["This addon app copies existing content and file storage to a cloned/copied channel. Once the app is installed, visit the newly installed app. This will allow you to set the location of your original channel and an optional date range of files/conversations to copy."] = ""; +App::$strings["This will import all your conversations and cloud files from a cloned channel on another server. This may take a while if you have lots of posts and or files."] = ""; +App::$strings["Include posts"] = ""; +App::$strings["Conversations, Articles, Cards, and other posted content"] = ""; +App::$strings["Include files"] = ""; +App::$strings["Files, Photos and other cloud storage"] = ""; +App::$strings["Original Server base URL"] = ""; +App::$strings["Since modified date yyyy-mm-dd"] = ""; +App::$strings["Until modified date yyyy-mm-dd"] = ""; +App::$strings["View Larger"] = ""; +App::$strings["Tile Server URL"] = ""; +App::$strings["A list of public tile servers"] = ""; +App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; +App::$strings["A list of Nominatim servers"] = ""; +App::$strings["Default zoom"] = ""; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = ""; +App::$strings["Include marker on map"] = ""; +App::$strings["Include a marker on the map."] = ""; +App::$strings["Create an account to access services and applications"] = ""; +App::$strings["Login/Email"] = ""; App::$strings["Password"] = ""; App::$strings["Remember me"] = ""; App::$strings["Forgot your password?"] = ""; -App::$strings["toggle mobile"] = ""; +App::$strings["[\$Projectname] Website SSL error for %s"] = ""; App::$strings["Website SSL certificate is not valid. Please correct."] = ""; -App::$strings["[red] Website SSL error for %s"] = ""; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; App::$strings["Cron/Scheduled tasks not running."] = ""; -App::$strings["[red] Cron tasks not running on %s"] = ""; diff --git a/util/typo.php b/util/typo.php index 26b536756..41475e050 100644 --- a/util/typo.php +++ b/util/typo.php @@ -72,11 +72,11 @@ echo "String files\n"; - echo 'util/hstrings.php' . "\n"; - include_once('util/hstrings.php'); + echo 'util/strings.php' . "\n"; + include_once('util/strings.php'); echo count(App::$strings) . ' strings' . "\n"; - $files = glob('view/*/hstrings.php'); + $files = glob('view/*/strings.php'); foreach($files as $file) { echo exec($cmd . $file) . "\n"; diff --git a/vendor/blueimp/jquery-file-upload/bower.json b/vendor/blueimp/jquery-file-upload/bower.json index a5d439147..3a771f9ee 100644 --- a/vendor/blueimp/jquery-file-upload/bower.json +++ b/vendor/blueimp/jquery-file-upload/bower.json @@ -1,6 +1,6 @@ { "name": "blueimp-file-upload", - "version": "9.30.0", + "version": "9.31.0", "title": "jQuery File Upload", "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images.", "keywords": [ diff --git a/vendor/blueimp/jquery-file-upload/package.json b/vendor/blueimp/jquery-file-upload/package.json index 7db22a104..bb1f9fbc5 100644 --- a/vendor/blueimp/jquery-file-upload/package.json +++ b/vendor/blueimp/jquery-file-upload/package.json @@ -1,6 +1,6 @@ { "name": "blueimp-file-upload", - "version": "9.30.0", + "version": "9.31.0", "title": "jQuery File Upload", "description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.", "keywords": [ diff --git a/vendor/blueimp/jquery-file-upload/server/php/UploadHandler.php b/vendor/blueimp/jquery-file-upload/server/php/UploadHandler.php index 5215e4c0f..1d79c893c 100755 --- a/vendor/blueimp/jquery-file-upload/server/php/UploadHandler.php +++ b/vendor/blueimp/jquery-file-upload/server/php/UploadHandler.php @@ -43,9 +43,9 @@ class UploadHandler const IMAGETYPE_PNG = 3; protected $image_objects = array(); + protected $response = array(); public function __construct($options = null, $initialize = true, $error_messages = null) { - $this->response = array(); $this->options = array( 'script_url' => $this->get_full_url().'/'.$this->basename($this->get_server_var('SCRIPT_NAME')), 'upload_dir' => dirname($this->get_server_var('SCRIPT_FILENAME')).'/files/', @@ -75,12 +75,12 @@ class UploadHandler ), // By default, allow redirects to the referer protocol+host: 'redirect_allow_target' => '/^'.preg_quote( - parse_url($this->get_server_var('HTTP_REFERER'), PHP_URL_SCHEME) - .'://' - .parse_url($this->get_server_var('HTTP_REFERER'), PHP_URL_HOST) - .'/', // Trailing slash to not match subdomains by mistake - '/' // preg_quote delimiter param - ).'/', + parse_url($this->get_server_var('HTTP_REFERER'), PHP_URL_SCHEME) + .'://' + .parse_url($this->get_server_var('HTTP_REFERER'), PHP_URL_HOST) + .'/', // Trailing slash to not match subdomains by mistake + '/' // preg_quote delimiter param + ).'/', // Enable to provide file downloads via GET requests to the PHP script: // 1. Set to 1 to download files via readfile method through PHP // 2. Set to 2 to send a X-Sendfile header for lighttpd/Apache @@ -151,21 +151,21 @@ class UploadHandler 'identify_bin' => 'identify', 'image_versions' => array( // The empty image version key defines options for the original image. - // Keep in mind: these image manipulations are inherited by all other image versions from this point onwards. + // Keep in mind: these image manipulations are inherited by all other image versions from this point onwards. // Also note that the property 'no_cache' is not inherited, since it's not a manipulation. '' => array( // Automatically rotate images based on EXIF meta data: 'auto_orient' => true ), // You can add arrays to generate different versions. - // The name of the key is the name of the version (example: 'medium'). + // The name of the key is the name of the version (example: 'medium'). // the array contains the options to apply. /* 'medium' => array( 'max_width' => 800, 'max_height' => 600 ), - */ + */ 'thumbnail' => array( // Uncomment the following to use a defined directory for the thumbnails // instead of a subdirectory based on the version identifier. @@ -223,13 +223,13 @@ class UploadHandler protected function get_full_url() { $https = !empty($_SERVER['HTTPS']) && strcasecmp($_SERVER['HTTPS'], 'on') === 0 || !empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && - strcasecmp($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') === 0; + strcasecmp($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') === 0; return ($https ? 'https://' : 'http://'). (!empty($_SERVER['REMOTE_USER']) ? $_SERVER['REMOTE_USER'].'@' : ''). (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ($_SERVER['SERVER_NAME']. - ($https && $_SERVER['SERVER_PORT'] === 443 || - $_SERVER['SERVER_PORT'] === 80 ? '' : ':'.$_SERVER['SERVER_PORT']))). + ($https && $_SERVER['SERVER_PORT'] === 443 || + $_SERVER['SERVER_PORT'] === 80 ? '' : ':'.$_SERVER['SERVER_PORT']))). substr($_SERVER['SCRIPT_NAME'],0, strrpos($_SERVER['SCRIPT_NAME'], '/')); } @@ -377,7 +377,11 @@ class UploadHandler public function get_config_bytes($val) { $val = trim($val); $last = strtolower($val[strlen($val)-1]); - $val = (int)$val; + if (is_numeric($val)) { + $val = (int)$val; + } else { + $val = (int)substr($val, 0, -1); + } switch ($last) { case 'g': $val *= 1024; @@ -414,7 +418,7 @@ class UploadHandler if ($this->options['max_file_size'] && ( $file_size > $this->options['max_file_size'] || $file->size > $this->options['max_file_size']) - ) { + ) { $file->error = $this->get_error_message('max_file_size'); return false; } @@ -424,9 +428,9 @@ class UploadHandler return false; } if (is_int($this->options['max_number_of_files']) && - ($this->count_file_objects() >= $this->options['max_number_of_files']) && - // Ignore additional chunks of existing files: - !is_file($this->get_upload_path($file->name))) { + ($this->count_file_objects() >= $this->options['max_number_of_files']) && + // Ignore additional chunks of existing files: + !is_file($this->get_upload_path($file->name))) { $file->error = $this->get_error_message('max_number_of_files'); return false; } @@ -451,7 +455,7 @@ class UploadHandler unset($tmp); } } - if (!empty($img_width)) { + if (!empty($img_width) && !empty($img_height)) { if ($max_width && $img_width > $max_width) { $file->error = $this->get_error_message('max_width'); return false; @@ -488,7 +492,7 @@ class UploadHandler } protected function get_unique_filename($file_path, $name, $size, $type, $error, - $index, $content_range) { + $index, $content_range) { while(is_dir($this->get_upload_path($name))) { $name = $this->upcount_name($name); } @@ -505,10 +509,10 @@ class UploadHandler } protected function fix_file_extension($file_path, $name, $size, $type, $error, - $index, $content_range) { + $index, $content_range) { // Add missing file extension for known image types: if (strpos($name, '.') === false && - preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches)) { + preg_match('/^image\/(gif|jpe?g|png)/', $type, $matches)) { $name .= '.'.$matches[1]; } if ($this->options['correct_image_extensions']) { @@ -538,7 +542,7 @@ class UploadHandler } protected function trim_file_name($file_path, $name, $size, $type, $error, - $index, $content_range) { + $index, $content_range) { // Remove path information and dots around the filename, to prevent uploading // into different directories or replacing hidden system files. // Also remove control characters and spaces (\x00..\x20) around the filename: @@ -561,7 +565,7 @@ class UploadHandler } protected function get_file_name($file_path, $name, $size, $type, $error, - $index, $content_range) { + $index, $content_range) { $name = $this->trim_file_name($file_path, $name, $size, $type, $error, $index, $content_range); return $this->get_unique_filename( @@ -795,25 +799,26 @@ class UploadHandler // Handle transparency in GIF and PNG images: switch ($type) { case 'gif': + imagecolortransparent($new_img, imagecolorallocate($new_img, 0, 0, 0)); + break; case 'png': imagecolortransparent($new_img, imagecolorallocate($new_img, 0, 0, 0)); - case 'png': imagealphablending($new_img, false); imagesavealpha($new_img, true); break; } $success = imagecopyresampled( - $new_img, - $src_img, - $dst_x, - $dst_y, - 0, - 0, - $new_width, - $new_height, - $img_width, - $img_height - ) && $write_func($new_img, $new_file_path, $image_quality); + $new_img, + $src_img, + $dst_x, + $dst_y, + 0, + 0, + $new_width, + $new_height, + $img_width, + $img_height + ) && $write_func($new_img, $new_file_path, $image_quality); $this->gd_set_image_object($file_path, $new_img); return $success; } @@ -827,7 +832,12 @@ class UploadHandler $image->setResourceLimit($type, $limit); } } - $image->readImage($file_path); + try { + $image->readImage($file_path); + } catch (ImagickException $e) { + error_log($e->getMessage()); + return null; + } $this->image_objects[$file_path] = $image; } return $this->image_objects[$file_path]; @@ -884,6 +894,7 @@ class UploadHandler $file_path, !empty($options['crop']) || !empty($options['no_cache']) ); + if (is_null($image)) return false; if ($image->getImageFormat() === 'GIF') { // Handle animated GIFs: $images = $image->coalesceImages(); @@ -896,32 +907,28 @@ class UploadHandler $image_oriented = false; if (!empty($options['auto_orient'])) { $image_oriented = $this->imagick_orient_image($image); - } - - $image_resize = false; + } + $image_resize = false; $new_width = $max_width = $img_width = $image->getImageWidth(); - $new_height = $max_height = $img_height = $image->getImageHeight(); - + $new_height = $max_height = $img_height = $image->getImageHeight(); // use isset(). User might be setting max_width = 0 (auto in regular resizing). Value 0 would be considered empty when you use empty() if (isset($options['max_width'])) { - $image_resize = true; - $new_width = $max_width = $options['max_width']; + $image_resize = true; + $new_width = $max_width = $options['max_width']; } if (isset($options['max_height'])) { $image_resize = true; $new_height = $max_height = $options['max_height']; } - $image_strip = (isset($options['strip']) ? $options['strip'] : false); - - if ( !$image_oriented && ($max_width >= $img_width) && ($max_height >= $img_height) && !$image_strip && empty($options["jpeg_quality"]) ) { + if ( !$image_oriented && ($max_width >= $img_width) && ($max_height >= $img_height) && !$image_strip && empty($options["jpeg_quality"]) ) { if ($file_path !== $new_file_path) { return copy($file_path, $new_file_path); } return true; } $crop = (isset($options['crop']) ? $options['crop'] : false); - + if ($crop) { $x = 0; $y = 0; @@ -1111,14 +1118,14 @@ class UploadHandler } if (count($failed_versions)) { $file->error = $this->get_error_message('image_resize') - .' ('.implode($failed_versions, ', ').')'; + .' ('.implode($failed_versions, ', ').')'; } // Free memory: $this->destroy_image_object($file_path); } protected function handle_file_upload($uploaded_file, $name, $size, $type, $error, - $index = null, $content_range = null) { + $index = null, $content_range = null) { $file = new \stdClass(); $file->name = $this->get_file_name($uploaded_file, $name, $size, $type, $error, $index, $content_range); @@ -1319,8 +1326,7 @@ class UploadHandler $json = json_encode($content); $redirect = stripslashes($this->get_post_param('redirect')); if ($redirect && preg_match($this->options['redirect_allow_target'], $redirect)) { - $this->header('Location: '.sprintf($redirect, rawurlencode($json))); - return; + return $this->header('Location: '.sprintf($redirect, rawurlencode($json))); } $this->head(); if ($this->get_server_var('HTTP_CONTENT_RANGE')) { @@ -1411,11 +1417,11 @@ class UploadHandler $files[] = $this->handle_file_upload( isset($upload['tmp_name']) ? $upload['tmp_name'] : null, $file_name ? $file_name : (isset($upload['name']) ? - $upload['name'] : null), + $upload['name'] : null), $size ? $size : (isset($upload['size']) ? - $upload['size'] : $this->get_server_var('CONTENT_LENGTH')), + $upload['size'] : $this->get_server_var('CONTENT_LENGTH')), isset($upload['type']) ? - $upload['type'] : $this->get_server_var('CONTENT_TYPE'), + $upload['type'] : $this->get_server_var('CONTENT_TYPE'), isset($upload['error']) ? $upload['error'] : null, null, $content_range diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index 2433a1e30..0d75ca5cb 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -1062,6 +1062,7 @@ return array( 'Zotlabs\\Lib\\JSalmon' => $baseDir . '/Zotlabs/Lib/JSalmon.php', 'Zotlabs\\Lib\\Keyutils' => $baseDir . '/Zotlabs/Lib/Keyutils.php', 'Zotlabs\\Lib\\LDSignatures' => $baseDir . '/Zotlabs/Lib/LDSignatures.php', + 'Zotlabs\\Lib\\Libprofile' => $baseDir . '/Zotlabs/Lib/Libprofile.php', 'Zotlabs\\Lib\\Libsync' => $baseDir . '/Zotlabs/Lib/Libsync.php', 'Zotlabs\\Lib\\Libzot' => $baseDir . '/Zotlabs/Lib/Libzot.php', 'Zotlabs\\Lib\\Libzotdir' => $baseDir . '/Zotlabs/Lib/Libzotdir.php', @@ -1077,7 +1078,6 @@ return array( 'Zotlabs\\Lib\\SuperCurl' => $baseDir . '/Zotlabs/Lib/SuperCurl.php', 'Zotlabs\\Lib\\System' => $baseDir . '/Zotlabs/Lib/System.php', 'Zotlabs\\Lib\\TableConverter' => $baseDir . '/Zotlabs/Lib/Markdown.php', - 'Zotlabs\\Lib\\Techlevels' => $baseDir . '/Zotlabs/Lib/Techlevels.php', 'Zotlabs\\Lib\\ThreadItem' => $baseDir . '/Zotlabs/Lib/ThreadItem.php', 'Zotlabs\\Lib\\ThreadListener' => $baseDir . '/Zotlabs/Lib/ThreadListener.php', 'Zotlabs\\Lib\\ThreadStream' => $baseDir . '/Zotlabs/Lib/ThreadStream.php', @@ -1114,6 +1114,7 @@ return array( 'Zotlabs\\Module\\Block' => $baseDir . '/Zotlabs/Module/Block.php', 'Zotlabs\\Module\\Blocks' => $baseDir . '/Zotlabs/Module/Blocks.php', 'Zotlabs\\Module\\Cal' => $baseDir . '/Zotlabs/Module/Cal.php', + 'Zotlabs\\Module\\Calendar' => $baseDir . '/Zotlabs/Module/Calendar.php', 'Zotlabs\\Module\\Card_edit' => $baseDir . '/Zotlabs/Module/Card_edit.php', 'Zotlabs\\Module\\Cards' => $baseDir . '/Zotlabs/Module/Cards.php', 'Zotlabs\\Module\\Categories' => $baseDir . '/Zotlabs/Module/Categories.php', @@ -1134,6 +1135,7 @@ return array( 'Zotlabs\\Module\\Cover_photo' => $baseDir . '/Zotlabs/Module/Cover_photo.php', 'Zotlabs\\Module\\Dav' => $baseDir . '/Zotlabs/Module/Dav.php', 'Zotlabs\\Module\\Defperms' => $baseDir . '/Zotlabs/Module/Defperms.php', + 'Zotlabs\\Module\\Dircensor' => $baseDir . '/Zotlabs/Module/Dircensor.php', 'Zotlabs\\Module\\Directory' => $baseDir . '/Zotlabs/Module/Directory.php', 'Zotlabs\\Module\\Dirsearch' => $baseDir . '/Zotlabs/Module/Dirsearch.php', 'Zotlabs\\Module\\Display' => $baseDir . '/Zotlabs/Module/Display.php', @@ -1157,8 +1159,6 @@ return array( 'Zotlabs\\Module\\Filestorage' => $baseDir . '/Zotlabs/Module/Filestorage.php', 'Zotlabs\\Module\\Finger' => $baseDir . '/Zotlabs/Module/Finger.php', 'Zotlabs\\Module\\Follow' => $baseDir . '/Zotlabs/Module/Follow.php', - 'Zotlabs\\Module\\Followers' => $baseDir . '/Zotlabs/Module/Followers.php', - 'Zotlabs\\Module\\Following' => $baseDir . '/Zotlabs/Module/Following.php', 'Zotlabs\\Module\\Getfile' => $baseDir . '/Zotlabs/Module/Getfile.php', 'Zotlabs\\Module\\Hashtags' => $baseDir . '/Zotlabs/Module/Hashtags.php', 'Zotlabs\\Module\\Hcard' => $baseDir . '/Zotlabs/Module/Hcard.php', @@ -1170,6 +1170,7 @@ return array( 'Zotlabs\\Module\\Impel' => $baseDir . '/Zotlabs/Module/Impel.php', 'Zotlabs\\Module\\Import' => $baseDir . '/Zotlabs/Module/Import.php', 'Zotlabs\\Module\\Import_items' => $baseDir . '/Zotlabs/Module/Import_items.php', + 'Zotlabs\\Module\\Inspect' => $baseDir . '/Zotlabs/Module/Inspect.php', 'Zotlabs\\Module\\Invite' => $baseDir . '/Zotlabs/Module/Invite.php', 'Zotlabs\\Module\\Item' => $baseDir . '/Zotlabs/Module/Item.php', 'Zotlabs\\Module\\Lang' => $baseDir . '/Zotlabs/Module/Lang.php', @@ -1190,7 +1191,7 @@ return array( 'Zotlabs\\Module\\Mood' => $baseDir . '/Zotlabs/Module/Mood.php', 'Zotlabs\\Module\\Network' => $baseDir . '/Zotlabs/Module/Network.php', 'Zotlabs\\Module\\New_channel' => $baseDir . '/Zotlabs/Module/New_channel.php', - 'Zotlabs\\Module\\Nojs' => $baseDir . '/Zotlabs/Module/Nojs.php', + 'Zotlabs\\Module\\Nocomment' => $baseDir . '/Zotlabs/Module/Nocomment.php', 'Zotlabs\\Module\\Notes' => $baseDir . '/Zotlabs/Module/Notes.php', 'Zotlabs\\Module\\Notifications' => $baseDir . '/Zotlabs/Module/Notifications.php', 'Zotlabs\\Module\\Notify' => $baseDir . '/Zotlabs/Module/Notify.php', @@ -1200,6 +1201,7 @@ return array( 'Zotlabs\\Module\\Oep' => $baseDir . '/Zotlabs/Module/Oep.php', 'Zotlabs\\Module\\Oexchange' => $baseDir . '/Zotlabs/Module/Oexchange.php', 'Zotlabs\\Module\\Online' => $baseDir . '/Zotlabs/Module/Online.php', + 'Zotlabs\\Module\\Outbox' => $baseDir . '/Zotlabs/Module/Outbox.php', 'Zotlabs\\Module\\Owa' => $baseDir . '/Zotlabs/Module/Owa.php', 'Zotlabs\\Module\\Page' => $baseDir . '/Zotlabs/Module/Page.php', 'Zotlabs\\Module\\Pconfig' => $baseDir . '/Zotlabs/Module/Pconfig.php', @@ -1210,6 +1212,7 @@ return array( 'Zotlabs\\Module\\Ping' => $baseDir . '/Zotlabs/Module/Ping.php', 'Zotlabs\\Module\\Poco' => $baseDir . '/Zotlabs/Module/Poco.php', 'Zotlabs\\Module\\Poke' => $baseDir . '/Zotlabs/Module/Poke.php', + 'Zotlabs\\Module\\Poster' => $baseDir . '/Zotlabs/Module/Poster.php', 'Zotlabs\\Module\\Pretheme' => $baseDir . '/Zotlabs/Module/Pretheme.php', 'Zotlabs\\Module\\Profile' => $baseDir . '/Zotlabs/Module/Profile.php', 'Zotlabs\\Module\\Profile_photo' => $baseDir . '/Zotlabs/Module/Profile_photo.php', @@ -1252,7 +1255,7 @@ return array( 'Zotlabs\\Module\\Sslify' => $baseDir . '/Zotlabs/Module/Sslify.php', 'Zotlabs\\Module\\Starred' => $baseDir . '/Zotlabs/Module/Starred.php', 'Zotlabs\\Module\\Subthread' => $baseDir . '/Zotlabs/Module/Subthread.php', - 'Zotlabs\\Module\\Suggest' => $baseDir . '/Zotlabs/Module/Suggest.php', + 'Zotlabs\\Module\\Suggestions' => $baseDir . '/Zotlabs/Module/Suggestions.php', 'Zotlabs\\Module\\Tagger' => $baseDir . '/Zotlabs/Module/Tagger.php', 'Zotlabs\\Module\\Tagrm' => $baseDir . '/Zotlabs/Module/Tagrm.php', 'Zotlabs\\Module\\Tasks' => $baseDir . '/Zotlabs/Module/Tasks.php', @@ -1277,6 +1280,9 @@ return array( 'Zotlabs\\Module\\Zot_probe' => $baseDir . '/Zotlabs/Module/Zot_probe.php', 'Zotlabs\\Module\\Zotfeed' => $baseDir . '/Zotlabs/Module/Zotfeed.php', 'Zotlabs\\Module\\Zotfinger' => $baseDir . '/Zotlabs/Module/Zotfinger.php', + 'Zotlabs\\Photo\\PhotoDriver' => $baseDir . '/Zotlabs/Photo/PhotoDriver.php', + 'Zotlabs\\Photo\\PhotoGd' => $baseDir . '/Zotlabs/Photo/PhotoGd.php', + 'Zotlabs\\Photo\\PhotoImagick' => $baseDir . '/Zotlabs/Photo/PhotoImagick.php', 'Zotlabs\\Render\\Comanche' => $baseDir . '/Zotlabs/Render/Comanche.php', 'Zotlabs\\Render\\SimpleTemplate' => $baseDir . '/Zotlabs/Render/SimpleTemplate.php', 'Zotlabs\\Render\\SmartyInterface' => $baseDir . '/Zotlabs/Render/SmartyInterface.php', @@ -1528,7 +1534,7 @@ return array( 'Zotlabs\\Update\\_1229' => $baseDir . '/Zotlabs/Update/_1229.php', 'Zotlabs\\Update\\_1230' => $baseDir . '/Zotlabs/Update/_1230.php', 'Zotlabs\\Update\\_1231' => $baseDir . '/Zotlabs/Update/_1231.php', - 'Zotlabs\\Web\\CheckJS' => $baseDir . '/Zotlabs/Web/CheckJS.php', + 'Zotlabs\\Update\\_1232' => $baseDir . '/Zotlabs/Update/_1232.php', 'Zotlabs\\Web\\Controller' => $baseDir . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => $baseDir . '/Zotlabs/Web/HTTPHeaders.php', 'Zotlabs\\Web\\HTTPSig' => $baseDir . '/Zotlabs/Web/HTTPSig.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 65b681719..2e3905614 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -1281,6 +1281,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\JSalmon' => __DIR__ . '/../..' . '/Zotlabs/Lib/JSalmon.php', 'Zotlabs\\Lib\\Keyutils' => __DIR__ . '/../..' . '/Zotlabs/Lib/Keyutils.php', 'Zotlabs\\Lib\\LDSignatures' => __DIR__ . '/../..' . '/Zotlabs/Lib/LDSignatures.php', + 'Zotlabs\\Lib\\Libprofile' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libprofile.php', 'Zotlabs\\Lib\\Libsync' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libsync.php', 'Zotlabs\\Lib\\Libzot' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libzot.php', 'Zotlabs\\Lib\\Libzotdir' => __DIR__ . '/../..' . '/Zotlabs/Lib/Libzotdir.php', @@ -1296,7 +1297,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Lib\\SuperCurl' => __DIR__ . '/../..' . '/Zotlabs/Lib/SuperCurl.php', 'Zotlabs\\Lib\\System' => __DIR__ . '/../..' . '/Zotlabs/Lib/System.php', 'Zotlabs\\Lib\\TableConverter' => __DIR__ . '/../..' . '/Zotlabs/Lib/Markdown.php', - 'Zotlabs\\Lib\\Techlevels' => __DIR__ . '/../..' . '/Zotlabs/Lib/Techlevels.php', 'Zotlabs\\Lib\\ThreadItem' => __DIR__ . '/../..' . '/Zotlabs/Lib/ThreadItem.php', 'Zotlabs\\Lib\\ThreadListener' => __DIR__ . '/../..' . '/Zotlabs/Lib/ThreadListener.php', 'Zotlabs\\Lib\\ThreadStream' => __DIR__ . '/../..' . '/Zotlabs/Lib/ThreadStream.php', @@ -1333,6 +1333,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Block' => __DIR__ . '/../..' . '/Zotlabs/Module/Block.php', 'Zotlabs\\Module\\Blocks' => __DIR__ . '/../..' . '/Zotlabs/Module/Blocks.php', 'Zotlabs\\Module\\Cal' => __DIR__ . '/../..' . '/Zotlabs/Module/Cal.php', + 'Zotlabs\\Module\\Calendar' => __DIR__ . '/../..' . '/Zotlabs/Module/Calendar.php', 'Zotlabs\\Module\\Card_edit' => __DIR__ . '/../..' . '/Zotlabs/Module/Card_edit.php', 'Zotlabs\\Module\\Cards' => __DIR__ . '/../..' . '/Zotlabs/Module/Cards.php', 'Zotlabs\\Module\\Categories' => __DIR__ . '/../..' . '/Zotlabs/Module/Categories.php', @@ -1353,6 +1354,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Cover_photo' => __DIR__ . '/../..' . '/Zotlabs/Module/Cover_photo.php', 'Zotlabs\\Module\\Dav' => __DIR__ . '/../..' . '/Zotlabs/Module/Dav.php', 'Zotlabs\\Module\\Defperms' => __DIR__ . '/../..' . '/Zotlabs/Module/Defperms.php', + 'Zotlabs\\Module\\Dircensor' => __DIR__ . '/../..' . '/Zotlabs/Module/Dircensor.php', 'Zotlabs\\Module\\Directory' => __DIR__ . '/../..' . '/Zotlabs/Module/Directory.php', 'Zotlabs\\Module\\Dirsearch' => __DIR__ . '/../..' . '/Zotlabs/Module/Dirsearch.php', 'Zotlabs\\Module\\Display' => __DIR__ . '/../..' . '/Zotlabs/Module/Display.php', @@ -1376,8 +1378,6 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Filestorage' => __DIR__ . '/../..' . '/Zotlabs/Module/Filestorage.php', 'Zotlabs\\Module\\Finger' => __DIR__ . '/../..' . '/Zotlabs/Module/Finger.php', 'Zotlabs\\Module\\Follow' => __DIR__ . '/../..' . '/Zotlabs/Module/Follow.php', - 'Zotlabs\\Module\\Followers' => __DIR__ . '/../..' . '/Zotlabs/Module/Followers.php', - 'Zotlabs\\Module\\Following' => __DIR__ . '/../..' . '/Zotlabs/Module/Following.php', 'Zotlabs\\Module\\Getfile' => __DIR__ . '/../..' . '/Zotlabs/Module/Getfile.php', 'Zotlabs\\Module\\Hashtags' => __DIR__ . '/../..' . '/Zotlabs/Module/Hashtags.php', 'Zotlabs\\Module\\Hcard' => __DIR__ . '/../..' . '/Zotlabs/Module/Hcard.php', @@ -1389,6 +1389,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Impel' => __DIR__ . '/../..' . '/Zotlabs/Module/Impel.php', 'Zotlabs\\Module\\Import' => __DIR__ . '/../..' . '/Zotlabs/Module/Import.php', 'Zotlabs\\Module\\Import_items' => __DIR__ . '/../..' . '/Zotlabs/Module/Import_items.php', + 'Zotlabs\\Module\\Inspect' => __DIR__ . '/../..' . '/Zotlabs/Module/Inspect.php', 'Zotlabs\\Module\\Invite' => __DIR__ . '/../..' . '/Zotlabs/Module/Invite.php', 'Zotlabs\\Module\\Item' => __DIR__ . '/../..' . '/Zotlabs/Module/Item.php', 'Zotlabs\\Module\\Lang' => __DIR__ . '/../..' . '/Zotlabs/Module/Lang.php', @@ -1409,7 +1410,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Mood' => __DIR__ . '/../..' . '/Zotlabs/Module/Mood.php', 'Zotlabs\\Module\\Network' => __DIR__ . '/../..' . '/Zotlabs/Module/Network.php', 'Zotlabs\\Module\\New_channel' => __DIR__ . '/../..' . '/Zotlabs/Module/New_channel.php', - 'Zotlabs\\Module\\Nojs' => __DIR__ . '/../..' . '/Zotlabs/Module/Nojs.php', + 'Zotlabs\\Module\\Nocomment' => __DIR__ . '/../..' . '/Zotlabs/Module/Nocomment.php', 'Zotlabs\\Module\\Notes' => __DIR__ . '/../..' . '/Zotlabs/Module/Notes.php', 'Zotlabs\\Module\\Notifications' => __DIR__ . '/../..' . '/Zotlabs/Module/Notifications.php', 'Zotlabs\\Module\\Notify' => __DIR__ . '/../..' . '/Zotlabs/Module/Notify.php', @@ -1419,6 +1420,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Oep' => __DIR__ . '/../..' . '/Zotlabs/Module/Oep.php', 'Zotlabs\\Module\\Oexchange' => __DIR__ . '/../..' . '/Zotlabs/Module/Oexchange.php', 'Zotlabs\\Module\\Online' => __DIR__ . '/../..' . '/Zotlabs/Module/Online.php', + 'Zotlabs\\Module\\Outbox' => __DIR__ . '/../..' . '/Zotlabs/Module/Outbox.php', 'Zotlabs\\Module\\Owa' => __DIR__ . '/../..' . '/Zotlabs/Module/Owa.php', 'Zotlabs\\Module\\Page' => __DIR__ . '/../..' . '/Zotlabs/Module/Page.php', 'Zotlabs\\Module\\Pconfig' => __DIR__ . '/../..' . '/Zotlabs/Module/Pconfig.php', @@ -1429,6 +1431,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Ping' => __DIR__ . '/../..' . '/Zotlabs/Module/Ping.php', 'Zotlabs\\Module\\Poco' => __DIR__ . '/../..' . '/Zotlabs/Module/Poco.php', 'Zotlabs\\Module\\Poke' => __DIR__ . '/../..' . '/Zotlabs/Module/Poke.php', + 'Zotlabs\\Module\\Poster' => __DIR__ . '/../..' . '/Zotlabs/Module/Poster.php', 'Zotlabs\\Module\\Pretheme' => __DIR__ . '/../..' . '/Zotlabs/Module/Pretheme.php', 'Zotlabs\\Module\\Profile' => __DIR__ . '/../..' . '/Zotlabs/Module/Profile.php', 'Zotlabs\\Module\\Profile_photo' => __DIR__ . '/../..' . '/Zotlabs/Module/Profile_photo.php', @@ -1471,7 +1474,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Sslify' => __DIR__ . '/../..' . '/Zotlabs/Module/Sslify.php', 'Zotlabs\\Module\\Starred' => __DIR__ . '/../..' . '/Zotlabs/Module/Starred.php', 'Zotlabs\\Module\\Subthread' => __DIR__ . '/../..' . '/Zotlabs/Module/Subthread.php', - 'Zotlabs\\Module\\Suggest' => __DIR__ . '/../..' . '/Zotlabs/Module/Suggest.php', + 'Zotlabs\\Module\\Suggestions' => __DIR__ . '/../..' . '/Zotlabs/Module/Suggestions.php', 'Zotlabs\\Module\\Tagger' => __DIR__ . '/../..' . '/Zotlabs/Module/Tagger.php', 'Zotlabs\\Module\\Tagrm' => __DIR__ . '/../..' . '/Zotlabs/Module/Tagrm.php', 'Zotlabs\\Module\\Tasks' => __DIR__ . '/../..' . '/Zotlabs/Module/Tasks.php', @@ -1496,6 +1499,9 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Module\\Zot_probe' => __DIR__ . '/../..' . '/Zotlabs/Module/Zot_probe.php', 'Zotlabs\\Module\\Zotfeed' => __DIR__ . '/../..' . '/Zotlabs/Module/Zotfeed.php', 'Zotlabs\\Module\\Zotfinger' => __DIR__ . '/../..' . '/Zotlabs/Module/Zotfinger.php', + 'Zotlabs\\Photo\\PhotoDriver' => __DIR__ . '/../..' . '/Zotlabs/Photo/PhotoDriver.php', + 'Zotlabs\\Photo\\PhotoGd' => __DIR__ . '/../..' . '/Zotlabs/Photo/PhotoGd.php', + 'Zotlabs\\Photo\\PhotoImagick' => __DIR__ . '/../..' . '/Zotlabs/Photo/PhotoImagick.php', 'Zotlabs\\Render\\Comanche' => __DIR__ . '/../..' . '/Zotlabs/Render/Comanche.php', 'Zotlabs\\Render\\SimpleTemplate' => __DIR__ . '/../..' . '/Zotlabs/Render/SimpleTemplate.php', 'Zotlabs\\Render\\SmartyInterface' => __DIR__ . '/../..' . '/Zotlabs/Render/SmartyInterface.php', @@ -1747,7 +1753,7 @@ class ComposerStaticInit7b34d7e50a62201ec5d5e526a5b8b35d 'Zotlabs\\Update\\_1229' => __DIR__ . '/../..' . '/Zotlabs/Update/_1229.php', 'Zotlabs\\Update\\_1230' => __DIR__ . '/../..' . '/Zotlabs/Update/_1230.php', 'Zotlabs\\Update\\_1231' => __DIR__ . '/../..' . '/Zotlabs/Update/_1231.php', - 'Zotlabs\\Web\\CheckJS' => __DIR__ . '/../..' . '/Zotlabs/Web/CheckJS.php', + 'Zotlabs\\Update\\_1232' => __DIR__ . '/../..' . '/Zotlabs/Update/_1232.php', 'Zotlabs\\Web\\Controller' => __DIR__ . '/../..' . '/Zotlabs/Web/Controller.php', 'Zotlabs\\Web\\HTTPHeaders' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPHeaders.php', 'Zotlabs\\Web\\HTTPSig' => __DIR__ . '/../..' . '/Zotlabs/Web/HTTPSig.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index ba8bd75aa..220e4843c 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1,20 +1,20 @@ [ { "name": "blueimp/jquery-file-upload", - "version": "v9.30.0", - "version_normalized": "9.30.0.0", + "version": "v9.31.0", + "version_normalized": "9.31.0.0", "source": { "type": "git", "url": "https://github.com/vkhramtsov/jQuery-File-Upload.git", - "reference": "1fceec556879403e5c1ae32a7c448aa12b8c3558" + "reference": "2485bf016e1085f0cd8308723064458cb0af5729" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/1fceec556879403e5c1ae32a7c448aa12b8c3558", - "reference": "1fceec556879403e5c1ae32a7c448aa12b8c3558", + "url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/2485bf016e1085f0cd8308723064458cb0af5729", + "reference": "2485bf016e1085f0cd8308723064458cb0af5729", "shasum": "" }, - "time": "2019-04-22T09:21:57+00:00", + "time": "2019-05-24T07:59:46+00:00", "type": "library", "installation-source": "dist", "autoload": { @@ -164,17 +164,17 @@ }, { "name": "doctrine/collections", - "version": "v1.6.1", - "version_normalized": "1.6.1.0", + "version": "v1.6.2", + "version_normalized": "1.6.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956" + "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/d2ae4ef05e25197343b6a39bae1d3c427a2f6956", - "reference": "d2ae4ef05e25197343b6a39bae1d3c427a2f6956", + "url": "https://api.github.com/repos/doctrine/collections/zipball/c5e0bc17b1620e97c968ac409acbff28b8b850be", + "reference": "c5e0bc17b1620e97c968ac409acbff28b8b850be", "shasum": "" }, "require": { @@ -186,7 +186,7 @@ "phpunit/phpunit": "^7.0", "vimeo/psalm": "^3.2.2" }, - "time": "2019-03-25T19:03:48+00:00", + "time": "2019-06-09T13:48:14+00:00", "type": "library", "extra": { "branch-alias": { @@ -1623,27 +1623,27 @@ }, { "name": "symfony/options-resolver", - "version": "v4.2.8", - "version_normalized": "4.2.8.0", + "version": "v4.3.1", + "version_normalized": "4.3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", - "reference": "fd4a5f27b7cd085b489247b9890ebca9f3e10044" + "reference": "914e0edcb7cd0c9f494bc023b1d47534f4542332" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/options-resolver/zipball/fd4a5f27b7cd085b489247b9890ebca9f3e10044", - "reference": "fd4a5f27b7cd085b489247b9890ebca9f3e10044", + "url": "https://api.github.com/repos/symfony/options-resolver/zipball/914e0edcb7cd0c9f494bc023b1d47534f4542332", + "reference": "914e0edcb7cd0c9f494bc023b1d47534f4542332", "shasum": "" }, "require": { "php": "^7.1.3" }, - "time": "2019-04-10T16:20:36+00:00", + "time": "2019-05-10T05:38:46+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "installation-source": "dist", @@ -1739,27 +1739,27 @@ }, { "name": "symfony/process", - "version": "v4.2.8", - "version_normalized": "4.2.8.0", + "version": "v4.3.1", + "version_normalized": "4.3.1.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe" + "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/8cf39fb4ccff793340c258ee7760fd40bfe745fe", - "reference": "8cf39fb4ccff793340c258ee7760fd40bfe745fe", + "url": "https://api.github.com/repos/symfony/process/zipball/856d35814cf287480465bb7a6c413bb7f5f5e69c", + "reference": "856d35814cf287480465bb7a6c413bb7f5f5e69c", "shasum": "" }, "require": { "php": "^7.1.3" }, - "time": "2019-04-10T16:20:36+00:00", + "time": "2019-05-30T16:10:05+00:00", "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "installation-source": "dist", diff --git a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php index 616c9c7e2..06e47f996 100644 --- a/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php +++ b/vendor/doctrine/collections/lib/Doctrine/Common/Collections/ArrayCollection.php @@ -86,7 +86,7 @@ class ArrayCollection implements Collection, Selectable * @return static * * @psalm-param array $elements - * @psalm-return ArrayCollection + * @psalm-return static */ protected function createFrom(array $elements) { @@ -323,7 +323,7 @@ class ArrayCollection implements Collection, Selectable * * @return static * - * @psalm-return ArrayCollection + * @psalm-return static */ public function filter(Closure $p) { diff --git a/vendor/symfony/options-resolver/CHANGELOG.md b/vendor/symfony/options-resolver/CHANGELOG.md index a6f8f0ff4..60ea43f7e 100644 --- a/vendor/symfony/options-resolver/CHANGELOG.md +++ b/vendor/symfony/options-resolver/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +4.3.0 +----- + + * added `OptionsResolver::addNormalizer` method + 4.2.0 ----- diff --git a/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php b/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php index ccce082fe..9ce526333 100644 --- a/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php +++ b/vendor/symfony/options-resolver/Debug/OptionsResolverIntrospector.php @@ -84,6 +84,14 @@ class OptionsResolverIntrospector * @throws NoConfigurationException on no configured normalizer */ public function getNormalizer(string $option): \Closure + { + return current($this->getNormalizers($option)); + } + + /** + * @throws NoConfigurationException when no normalizer is configured + */ + public function getNormalizers(string $option): array { return ($this->get)('normalizers', $option, sprintf('No normalizer was set for the "%s" option.', $option)); } diff --git a/vendor/symfony/options-resolver/OptionsResolver.php b/vendor/symfony/options-resolver/OptionsResolver.php index eb0a6c248..0e68e75ff 100644 --- a/vendor/symfony/options-resolver/OptionsResolver.php +++ b/vendor/symfony/options-resolver/OptionsResolver.php @@ -57,7 +57,7 @@ class OptionsResolver implements Options /** * A list of normalizer closures. * - * @var \Closure[] + * @var \Closure[][] */ private $normalizers = []; @@ -484,7 +484,56 @@ class OptionsResolver implements Options throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $option, implode('", "', array_keys($this->defined)))); } - $this->normalizers[$option] = $normalizer; + $this->normalizers[$option] = [$normalizer]; + + // Make sure the option is processed + unset($this->resolved[$option]); + + return $this; + } + + /** + * Adds a normalizer for an option. + * + * The normalizer should be a closure with the following signature: + * + * function (Options $options, $value): mixed { + * // ... + * } + * + * The closure is invoked when {@link resolve()} is called. The closure + * has access to the resolved values of other options through the passed + * {@link Options} instance. + * + * The second parameter passed to the closure is the value of + * the option. + * + * The resolved option value is set to the return value of the closure. + * + * @param string $option The option name + * @param \Closure $normalizer The normalizer + * @param bool $forcePrepend If set to true, prepend instead of appending + * + * @return $this + * + * @throws UndefinedOptionsException If the option is undefined + * @throws AccessException If called from a lazy option or normalizer + */ + public function addNormalizer(string $option, \Closure $normalizer, bool $forcePrepend = false): self + { + if ($this->locked) { + throw new AccessException('Normalizers cannot be set from a lazy option or normalizer.'); + } + + if (!isset($this->defined[$option])) { + throw new UndefinedOptionsException(sprintf('The option "%s" does not exist. Defined options are: "%s".', $option, implode('", "', array_keys($this->defined)))); + } + + if ($forcePrepend) { + array_unshift($this->normalizers[$option], $normalizer); + } else { + $this->normalizers[$option][] = $normalizer; + } // Make sure the option is processed unset($this->resolved[$option]); @@ -966,15 +1015,15 @@ class OptionsResolver implements Options throw new OptionDefinitionException(sprintf('The options "%s" have a cyclic dependency.', implode('", "', array_keys($this->calling)))); } - $normalizer = $this->normalizers[$option]; - // The following section must be protected from cyclic // calls. Set $calling for the current $option to detect a cyclic // dependency // BEGIN $this->calling[$option] = true; try { - $value = $normalizer($this, $value); + foreach ($this->normalizers[$option] as $normalizer) { + $value = $normalizer($this, $value); + } } finally { unset($this->calling[$option]); } diff --git a/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php b/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php index c6615573c..64a1ead1f 100644 --- a/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php +++ b/vendor/symfony/options-resolver/Tests/Debug/OptionsResolverIntrospectorTest.php @@ -201,6 +201,42 @@ class OptionsResolverIntrospectorTest extends TestCase $this->assertSame('bar', $debug->getNormalizer('foo')); } + public function testGetNormalizers() + { + $resolver = new OptionsResolver(); + $resolver->setDefined('foo'); + $resolver->addNormalizer('foo', $normalizer1 = function () {}); + $resolver->addNormalizer('foo', $normalizer2 = function () {}); + + $debug = new OptionsResolverIntrospector($resolver); + $this->assertSame([$normalizer1, $normalizer2], $debug->getNormalizers('foo')); + } + + /** + * @expectedException \Symfony\Component\OptionsResolver\Exception\NoConfigurationException + * @expectedExceptionMessage No normalizer was set for the "foo" option. + */ + public function testGetNormalizersThrowsOnNoConfiguredValue() + { + $resolver = new OptionsResolver(); + $resolver->setDefined('foo'); + + $debug = new OptionsResolverIntrospector($resolver); + $debug->getNormalizers('foo'); + } + + /** + * @expectedException \Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException + * @expectedExceptionMessage The option "foo" does not exist. + */ + public function testGetNormalizersThrowsOnNotDefinedOption() + { + $resolver = new OptionsResolver(); + + $debug = new OptionsResolverIntrospector($resolver); + $debug->getNormalizers('foo'); + } + public function testGetDeprecationMessage() { $resolver = new OptionsResolver(); diff --git a/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php b/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php index 54d189114..98ce4082e 100644 --- a/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php +++ b/vendor/symfony/options-resolver/Tests/OptionsResolverTest.php @@ -751,7 +751,7 @@ class OptionsResolverTest extends TestCase 0, ]; - yield 'It explicitly ignores a depreciation' => [ + yield 'It explicitly ignores a deprecation' => [ function (OptionsResolver $resolver) { $resolver ->setDefault('baz', function (Options $options) { @@ -1552,6 +1552,63 @@ class OptionsResolverTest extends TestCase $this->assertEmpty($this->resolver->resolve()); } + public function testAddNormalizerReturnsThis() + { + $this->resolver->setDefault('foo', 'bar'); + + $this->assertSame($this->resolver, $this->resolver->addNormalizer('foo', function () {})); + } + + public function testAddNormalizerClosure() + { + // defined by superclass + $this->resolver->setDefault('foo', 'bar'); + $this->resolver->setNormalizer('foo', function (Options $options, $value) { + return '1st-normalized-'.$value; + }); + // defined by subclass + $this->resolver->addNormalizer('foo', function (Options $options, $value) { + return '2nd-normalized-'.$value; + }); + + $this->assertEquals(['foo' => '2nd-normalized-1st-normalized-bar'], $this->resolver->resolve()); + } + + public function testForcePrependNormalizerClosure() + { + // defined by superclass + $this->resolver->setDefault('foo', 'bar'); + $this->resolver->setNormalizer('foo', function (Options $options, $value) { + return '2nd-normalized-'.$value; + }); + // defined by subclass + $this->resolver->addNormalizer('foo', function (Options $options, $value) { + return '1st-normalized-'.$value; + }, true); + + $this->assertEquals(['foo' => '2nd-normalized-1st-normalized-bar'], $this->resolver->resolve()); + } + + /** + * @expectedException \Symfony\Component\OptionsResolver\Exception\UndefinedOptionsException + */ + public function testAddNormalizerFailsIfUnknownOption() + { + $this->resolver->addNormalizer('foo', function () {}); + } + + /** + * @expectedException \Symfony\Component\OptionsResolver\Exception\AccessException + */ + public function testFailIfAddNormalizerFromLazyOption() + { + $this->resolver->setDefault('foo', function (Options $options) { + $options->addNormalizer('foo', function () {}); + }); + + $this->resolver->resolve(); + } + public function testSetDefaultsReturnsThis() { $this->assertSame($this->resolver, $this->resolver->setDefaults(['foo', 'bar'])); diff --git a/vendor/symfony/options-resolver/composer.json b/vendor/symfony/options-resolver/composer.json index 1c819495b..6753856f5 100644 --- a/vendor/symfony/options-resolver/composer.json +++ b/vendor/symfony/options-resolver/composer.json @@ -27,7 +27,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } } } diff --git a/vendor/symfony/process/Process.php b/vendor/symfony/process/Process.php index 8b7f539e0..5e3993d78 100644 --- a/vendor/symfony/process/Process.php +++ b/vendor/symfony/process/Process.php @@ -331,7 +331,7 @@ class Process implements \IteratorAggregate } if (!is_dir($this->cwd)) { - throw new RuntimeException('The provided cwd does not exist.'); + throw new RuntimeException(sprintf('The provided cwd "%s" does not exist.', $this->cwd)); } $this->process = proc_open($commandline, $descriptors, $this->processPipes->pipes, $this->cwd, $envPairs, $options); @@ -419,6 +419,7 @@ class Process implements \IteratorAggregate } while ($running); while ($this->isRunning()) { + $this->checkTimeout(); usleep(1000); } diff --git a/vendor/symfony/process/Tests/ErrorProcessInitiator.php b/vendor/symfony/process/Tests/ErrorProcessInitiator.php new file mode 100755 index 000000000..c37aeb5c8 --- /dev/null +++ b/vendor/symfony/process/Tests/ErrorProcessInitiator.php @@ -0,0 +1,36 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Process\Tests; + +use Symfony\Component\Process\Exception\ProcessTimedOutException; +use Symfony\Component\Process\Process; + +require \dirname(__DIR__).'/vendor/autoload.php'; + +list('e' => $php) = getopt('e:') + ['e' => 'php']; + +try { + $process = new Process("exec $php -r \"echo 'ready'; trigger_error('error', E_USER_ERROR);\""); + $process->start(); + $process->setTimeout(0.5); + while (false === strpos($process->getOutput(), 'ready')) { + usleep(1000); + } + $process->signal(SIGSTOP); + $process->wait(); + + return $process->getExitCode(); +} catch (ProcessTimedOutException $t) { + echo $t->getMessage().PHP_EOL; + + return 1; +} diff --git a/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php b/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php index 2467c960e..ba085bdd8 100644 --- a/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php +++ b/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php @@ -27,7 +27,7 @@ class ProcessFailedExceptionTest extends TestCase $process = $this->getMockBuilder('Symfony\Component\Process\Process')->setMethods(['isSuccessful'])->setConstructorArgs([['php']])->getMock(); $process->expects($this->once()) ->method('isSuccessful') - ->will($this->returnValue(true)); + ->willReturn(true); if (method_exists($this, 'expectException')) { $this->expectException(\InvalidArgumentException::class); @@ -55,31 +55,31 @@ class ProcessFailedExceptionTest extends TestCase $process = $this->getMockBuilder('Symfony\Component\Process\Process')->setMethods(['isSuccessful', 'getOutput', 'getErrorOutput', 'getExitCode', 'getExitCodeText', 'isOutputDisabled', 'getWorkingDirectory'])->setConstructorArgs([[$cmd]])->getMock(); $process->expects($this->once()) ->method('isSuccessful') - ->will($this->returnValue(false)); + ->willReturn(false); $process->expects($this->once()) ->method('getOutput') - ->will($this->returnValue($output)); + ->willReturn($output); $process->expects($this->once()) ->method('getErrorOutput') - ->will($this->returnValue($errorOutput)); + ->willReturn($errorOutput); $process->expects($this->once()) ->method('getExitCode') - ->will($this->returnValue($exitCode)); + ->willReturn($exitCode); $process->expects($this->once()) ->method('getExitCodeText') - ->will($this->returnValue($exitText)); + ->willReturn($exitText); $process->expects($this->once()) ->method('isOutputDisabled') - ->will($this->returnValue(false)); + ->willReturn(false); $process->expects($this->once()) ->method('getWorkingDirectory') - ->will($this->returnValue($workingDirectory)); + ->willReturn($workingDirectory); $exception = new ProcessFailedException($process); @@ -103,7 +103,7 @@ class ProcessFailedExceptionTest extends TestCase $process = $this->getMockBuilder('Symfony\Component\Process\Process')->setMethods(['isSuccessful', 'isOutputDisabled', 'getExitCode', 'getExitCodeText', 'getOutput', 'getErrorOutput', 'getWorkingDirectory'])->setConstructorArgs([[$cmd]])->getMock(); $process->expects($this->once()) ->method('isSuccessful') - ->will($this->returnValue(false)); + ->willReturn(false); $process->expects($this->never()) ->method('getOutput'); @@ -113,19 +113,19 @@ class ProcessFailedExceptionTest extends TestCase $process->expects($this->once()) ->method('getExitCode') - ->will($this->returnValue($exitCode)); + ->willReturn($exitCode); $process->expects($this->once()) ->method('getExitCodeText') - ->will($this->returnValue($exitText)); + ->willReturn($exitText); $process->expects($this->once()) ->method('isOutputDisabled') - ->will($this->returnValue(true)); + ->willReturn(true); $process->expects($this->once()) ->method('getWorkingDirectory') - ->will($this->returnValue($workingDirectory)); + ->willReturn($workingDirectory); $exception = new ProcessFailedException($process); diff --git a/vendor/symfony/process/Tests/ProcessTest.php b/vendor/symfony/process/Tests/ProcessTest.php index 187226bd4..8ae8d4ca9 100644 --- a/vendor/symfony/process/Tests/ProcessTest.php +++ b/vendor/symfony/process/Tests/ProcessTest.php @@ -49,7 +49,8 @@ class ProcessTest extends TestCase /** * @expectedException \Symfony\Component\Process\Exception\RuntimeException - * @expectedExceptionMessage The provided cwd does not exist. + * @expectedExceptionMessage The provided cwd " + * @expectedExceptionMessage "does not exist. */ public function testInvalidCwd() { @@ -1510,6 +1511,25 @@ EOTXT; $this->assertSame($env, $p->getEnv()); } + public function testWaitStoppedDeadProcess() + { + $process = $this->getProcess(self::$phpBin.' '.__DIR__.'/ErrorProcessInitiator.php -e '.self::$phpBin); + $process->start(); + $process->setTimeout(2); + $process->wait(); + $this->assertFalse($process->isRunning()); + } + + /** + * @param string $commandline + * @param string|null $cwd + * @param array|null $env + * @param string|null $input + * @param int $timeout + * @param array $options + * + * @return Process + */ private function getProcess($commandline, string $cwd = null, array $env = null, $input = null, ?int $timeout = 60): Process { if (\is_string($commandline)) { diff --git a/vendor/symfony/process/composer.json b/vendor/symfony/process/composer.json index 44bad06b5..d3efd0238 100644 --- a/vendor/symfony/process/composer.json +++ b/vendor/symfony/process/composer.json @@ -27,7 +27,7 @@ "minimum-stability": "dev", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } } } diff --git a/view/ca/hmessages.po b/view/ca/hmessages.po deleted file mode 100644 index e7bbc980b..000000000 --- a/view/ca/hmessages.po +++ /dev/null @@ -1,14777 +0,0 @@ -# hubzilla -# Copyright (C) 2012-2016 hubzilla -# This file is distributed under the same license as the hubzilla package. -# -# Translators: -# fadelkon , 2015-2016 -# fadelkon , 2018 -# Rafael, 2015 -# Rafael Garau, 2016-2017 -# Rafael Garau, 2015 -msgid "" -msgstr "" -"Project-Id-Version: hubzilla\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-07-18 11:47+0200\n" -"PO-Revision-Date: 2018-08-20 19:57+0000\n" -"Last-Translator: fadelkon \n" -"Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/hubzilla/language/ca_ES/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Pot veure el flux i entrades del meu canal" - -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" -msgstr "Pot enviar-me el flux i entrades del seu canal" - -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" -msgstr "Pot veure el perfil del meu canal per defecte" - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "Pot veure les meves connexions" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "Pot veure les meves fotos i arxius" - -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" -msgstr "Pot pujar i modificar els meus fitxers i fotos" - -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can view my channel webpages" -msgstr "Pot veure les pàgines web del meu canal" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" -msgstr "Por veure les meves pàgines wiki" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" -msgstr "Pot crear i modificar les pàgines web del meu canal" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" -msgstr "Pot escriure a les meves pàgines wiki" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" -msgstr "Pot penjar entrades al mur del meu canal" - -#: ../../Zotlabs/Access/Permissions.php:67 -msgid "Can comment on or like my posts" -msgstr "Pot comentar i fer \"m'agrada\" a les meves entrades" - -#: ../../Zotlabs/Access/Permissions.php:68 -msgid "Can send me private mail messages" -msgstr "Pot enviar-me missatges privats" - -#: ../../Zotlabs/Access/Permissions.php:69 -msgid "Can like/dislike profiles and profile things" -msgstr "Pot fer m'agrada i no m'agrada als perfils i coses del perfil" - -#: ../../Zotlabs/Access/Permissions.php:70 -msgid "Can forward to all my channel connections via ! mentions in posts" -msgstr "Pot fer arribar entrades a totes les meves connexions fent servir mencions amb \"!\"" - -#: ../../Zotlabs/Access/Permissions.php:71 -msgid "Can chat with me" -msgstr "Pot xatejar amb mi" - -#: ../../Zotlabs/Access/Permissions.php:72 -msgid "Can source my public posts in derived channels" -msgstr "Pot fer servir les meves entrades per publicar automàticament en altres canals" - -#: ../../Zotlabs/Access/Permissions.php:73 -msgid "Can administer my channel" -msgstr "Pot administrar el meu canal" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "Xarxes Socials" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "Social - Federació" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "Social - Principalment públic" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "Social - Restingit" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "Social - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "Fòrum comunitari" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "Fòrum - Principalment públic" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "Fòrum - Restringit" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "Fòrum - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "Republicador" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "Republicador - Principalment públic" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "Republicador - Restringit" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "Objectiu Especial" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "Especial - Personatge públic / Plataforma" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "Especial - Repositori d'un Grup" - -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:172 -#: ../../Zotlabs/Module/Settings/Channel.php:496 -#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Register.php:233 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:703 -#: ../../include/connections.php:710 -msgid "Other" -msgstr "Altres" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "Personalitzat, mode expert" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:33 -#: ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 -msgid "Requested profile is not available." -msgstr "El perfil demanat no està disponible." - -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:115 -#: ../../Zotlabs/Module/Channel.php:281 ../../Zotlabs/Module/Channel.php:320 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Settings/Features.php:38 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1108 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Cloud.php:40 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:12 -#: ../../Zotlabs/Module/Group.php:24 ../../Zotlabs/Module/Profiles.php:198 -#: ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:77 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:313 -#: ../../Zotlabs/Module/Cover_photo.php:326 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:140 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 -#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 -#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 -#: ../../include/attach.php:197 ../../include/attach.php:270 -#: ../../include/attach.php:379 ../../include/attach.php:393 -#: ../../include/attach.php:400 ../../include/attach.php:482 -#: ../../include/attach.php:1042 ../../include/attach.php:1116 -#: ../../include/attach.php:1281 ../../include/items.php:3653 -#: ../../include/photos.php:27 -msgid "Permission denied." -msgstr "S'ha denegat el permís." - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "Nom del bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2458 -msgid "Blocks" -msgstr "Blocs" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Títol del bloc" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 -msgid "Created" -msgstr "Creat" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 -msgid "Edited" -msgstr "Editat" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:188 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:181 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "Crea" - -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:216 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Lib/Apps.php:475 ../../Zotlabs/Lib/ThreadItem.php:128 -#: ../../Zotlabs/Storage/Browser.php:290 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../include/menu.php:118 -msgid "Edit" -msgstr "Edita" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1107 -#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../include/conversation.php:1374 -msgid "Share" -msgstr "Comparteix" - -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Photos.php:1208 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:476 -#: ../../Zotlabs/Lib/ThreadItem.php:148 ../../Zotlabs/Storage/Browser.php:291 -#: ../../include/conversation.php:691 ../../include/conversation.php:736 -msgid "Delete" -msgstr "Esborra" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 -msgid "View" -msgstr "Mostra" - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "S'ha superat el límit total d'invitacions." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "L'adreça de correu %s no és vàlida." - -#: ../../Zotlabs/Module/Invite.php:67 -msgid "Please join us on $Projectname" -msgstr "Suma't a $Projectname!" - -#: ../../Zotlabs/Module/Invite.php:77 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "S'ha superat el límit d'invitacions. Posa't en contacte amb l'administrador del lloc." - -#: ../../Zotlabs/Module/Invite.php:82 -#: ../../addon/notifyadmin/notifyadmin.php:40 -#, php-format -msgid "%s : Message delivery failed." -msgstr "No s'ha pogut lliurar la invitació a %s" - -#: ../../Zotlabs/Module/Invite.php:86 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "S'ha enviat %d invitació." -msgstr[1] "S'han enviat %d invitacions." - -#: ../../Zotlabs/Module/Invite.php:107 -msgid "You have no more invitations available" -msgstr "No pots enviar més invitacions" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "Send invitations" -msgstr "Envia invitacions" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Enter email addresses, one per line:" -msgstr "Introdueix les adreces de correu electrònic, una per línia:" - -#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "Please join my community on $Projectname." -msgstr "Vols sumar-te a la meva comunitat a $Projectname?" - -#: ../../Zotlabs/Module/Invite.php:143 -msgid "You will need to supply this invitation code:" -msgstr "Hauràs de facilitar aquest codi d'invitació:" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estan tots interconnectats)" - -#: ../../Zotlabs/Module/Invite.php:146 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Escriu a la barra de cerca la meva adreça de la xarxa $Projectname." - -#: ../../Zotlabs/Module/Invite.php:147 -msgid "or visit" -msgstr "o bé visita" - -#: ../../Zotlabs/Module/Invite.php:149 -msgid "3. Click [Connect]" -msgstr "3. Clica [connecta]" - -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:259 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Appman.php:153 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 -#: ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:309 -#: ../../Zotlabs/Module/Admin/Addons.php:438 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Security.php:112 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Channel.php:516 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Import.php:565 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1087 -#: ../../Zotlabs/Module/Photos.php:1127 ../../Zotlabs/Module/Photos.php:1245 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Group.php:121 ../../Zotlabs/Module/Group.php:137 -#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Sources.php:117 ../../Zotlabs/Module/Sources.php:154 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 -#: ../../Zotlabs/Module/Filestorage.php:183 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:757 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:97 -#: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:284 -#: ../../addon/planets/planets.php:153 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 -#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:830 -#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 -#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 -#: ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:168 -#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 -#: ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 -#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1159 -#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 -#: ../../addon/flattrwidget/flattrwidget.php:124 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:380 -#: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 -#: ../../addon/twitter/twitter.php:265 -#: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/cart.php:1251 -#: ../../addon/cart/submodules/paypalbutton.php:144 -#: ../../addon/cart/submodules/hzservices.php:78 -#: ../../addon/cart/submodules/hzservices.php:647 -#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 -#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 -#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 -#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 -msgid "Submit" -msgstr "Envia" - -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 -#: ../../Zotlabs/Lib/Apps.php:292 ../../include/features.php:133 -#: ../../include/nav.php:461 -msgid "Articles" -msgstr "Articles" - -#: ../../Zotlabs/Module/Articles.php:95 -msgid "Add Article" -msgstr "Afegeix un article" - -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 -#: ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "No s'ha trobat l'element" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "Nom del disseny" - -#: ../../Zotlabs/Module/Editlayout.php:129 -#: ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "Descripció del disseny (opcional)" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "Edita el disseny" - -#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Cdav.php:899 -#: ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Admin/Addons.php:423 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:347 -#: ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Editpost.php:109 ../../Zotlabs/Module/Filer.php:55 -#: ../../Zotlabs/Module/Cover_photo.php:399 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Card_edit.php:131 -#: ../../include/conversation.php:1397 ../../include/conversation.php:1446 -msgid "Cancel" -msgstr "Cancel·la" - -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Group.php:83 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 -#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 -#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:364 -msgid "Permission denied" -msgstr "S'ha denegat el permís" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "L'identificador de perfil no és vàlid." - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Editor de la visibilitat del perfil" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "Clica sobre un contacte per afegir-lo o esborrar-lo." - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "Visible per" - -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:200 -msgid "All Connections" -msgstr "Totes les connexions" - -#: ../../Zotlabs/Module/Cdav.php:785 -msgid "INVALID EVENT DISMISSED!" -msgstr "S'HA DESCARTAT UN ESDEVENIMENT INVÀLID." - -#: ../../Zotlabs/Module/Cdav.php:786 -msgid "Summary: " -msgstr "Resum:" - -#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 -#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:822 ../../Zotlabs/Module/Photos.php:1278 -#: ../../Zotlabs/Lib/Apps.php:819 ../../Zotlabs/Lib/Apps.php:898 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:961 -#: ../../include/conversation.php:1165 -msgid "Unknown" -msgstr "Desconegut" - -#: ../../Zotlabs/Module/Cdav.php:787 -msgid "Date: " -msgstr "Data:" - -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 -msgid "Reason: " -msgstr "Motiu:" - -#: ../../Zotlabs/Module/Cdav.php:793 -msgid "INVALID CARD DISMISSED!" -msgstr "S'HA DESCARTAT UNA TARGETA INVÀLIDA." - -#: ../../Zotlabs/Module/Cdav.php:794 -msgid "Name: " -msgstr "Nom:" - -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 -msgid "Event title" -msgstr "Títol de l'esdeveniment" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 -msgid "Start date and time" -msgstr "Data i hora d'inici" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "Exemple: AAAA-MM-DD HH:mm" - -#: ../../Zotlabs/Module/Cdav.php:870 -msgid "End date and time" -msgstr "Data i hora de fi" - -#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../addon/rendezvous/rendezvous.php:173 -#: ../../addon/cart/submodules/hzservices.php:659 -msgid "Description" -msgstr "Descripció" - -#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicació" - -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:976 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Photos.php:985 -msgid "Next" -msgstr "Següent" - -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 -msgid "Today" -msgstr "Avui" - -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 -msgid "Month" -msgstr "mes" - -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 -msgid "Week" -msgstr "setmana" - -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 -msgid "Day" -msgstr "dia" - -#: ../../Zotlabs/Module/Cdav.php:885 -msgid "List month" -msgstr "Mes en llista" - -#: ../../Zotlabs/Module/Cdav.php:886 -msgid "List week" -msgstr "Setmana en llista" - -#: ../../Zotlabs/Module/Cdav.php:887 -msgid "List day" -msgstr "Dia en llista" - -#: ../../Zotlabs/Module/Cdav.php:894 -msgid "More" -msgstr "Mostra més" - -#: ../../Zotlabs/Module/Cdav.php:895 -msgid "Less" -msgstr "Mostra menys" - -#: ../../Zotlabs/Module/Cdav.php:896 -msgid "Select calendar" -msgstr "Tria un calendari" - -#: ../../Zotlabs/Module/Cdav.php:898 -msgid "Delete all" -msgstr "Esborra'ls tots" - -#: ../../Zotlabs/Module/Cdav.php:900 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "Malauradament encara no es poden editar esdeveniments periòdics." - -#: ../../Zotlabs/Module/Cdav.php:1170 -#: ../../Zotlabs/Module/Sharedwithme.php:105 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Module/Group.php:125 -#: ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:285 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../addon/rendezvous/rendezvous.php:172 -msgid "Name" -msgstr "Nom" - -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 -msgid "Organisation" -msgstr "Organització" - -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 -msgid "Title" -msgstr "Títol" - -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "Telèfon" - -#: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 -msgid "Email" -msgstr "Correu electrònic" - -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "Missatgeria instantània" - -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "Lloc web" - -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "Adreça" - -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "Nota" - -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 -#: ../../include/connections.php:696 -msgid "Mobile" -msgstr "Mòbil" - -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 -#: ../../include/connections.php:697 -msgid "Home" -msgstr "Inici" - -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 -#: ../../include/connections.php:700 -msgid "Work" -msgstr "Feina" - -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/jappixmini.php:368 -msgid "Add Contact" -msgstr "Afegeix un contacte" - -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "Afegeix un camp" - -#: ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Admin/Addons.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:40 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Lib/Apps.php:456 -msgid "Update" -msgstr "Actualitza" - -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 -msgid "P.O. Box" -msgstr "Apartat de correus" - -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 -msgid "Additional" -msgstr "Addicional" - -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 -msgid "Street" -msgstr "Carrer" - -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 -msgid "Locality" -msgstr "Localitat" - -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 -msgid "Region" -msgstr "Regió" - -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 -msgid "ZIP Code" -msgstr "Codi postal" - -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "País" - -#: ../../Zotlabs/Module/Cdav.php:1242 -msgid "Default Calendar" -msgstr "Calendari per defecte" - -#: ../../Zotlabs/Module/Cdav.php:1252 -msgid "Default Addressbook" -msgstr "Llibreta d'adreces per defecte" - -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Aquest hub no és un servidor de directori" - -#: ../../Zotlabs/Module/Channel.php:35 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 -msgid "You must be logged in to see this page." -msgstr "Has de tenir una sessió iniciada per a veure aquesta pàgina." - -#: ../../Zotlabs/Module/Channel.php:50 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "Entrades i comentaris" - -#: ../../Zotlabs/Module/Channel.php:57 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "Només entrades" - -#: ../../Zotlabs/Module/Channel.php:112 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "S'ha denegat el permís. La petició s'ha redirigit a la pàgina de perfil." - -#: ../../Zotlabs/Module/Channel.php:129 ../../Zotlabs/Module/Network.php:174 -msgid "Search Results For:" -msgstr "Cerca resultats per:" - -#: ../../Zotlabs/Module/Channel.php:164 ../../Zotlabs/Module/Hq.php:134 -#: ../../Zotlabs/Module/Pubstream.php:80 ../../Zotlabs/Module/Display.php:81 -#: ../../Zotlabs/Module/Network.php:204 -msgid "Reset form" -msgstr "Esborra el formulari" - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "Exporta un canal" - -#: ../../Zotlabs/Module/Uexport.php:59 -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ò serveix com a còpia de seguretat de les teves connexions, permisos, perfil i dades bàsiques, i pots emprar-la per a importar aquestes dades des d'un altre hub. No conté el contingut del canal." - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "Exporta'n el contingut" - -#: ../../Zotlabs/Module/Uexport.php:61 -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 una còpia de seguretat en format JSON. Pot ser restaurada o importada des d'un altre hub. Això desa totes les teves connexions, permisos, dades de perfil i diversos mesos de publicacions. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que la preparació de l'arxiu pot trigar una estona, abans que el puguis començar a baixar." - -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "Exporta les entrades d'un any determinat." - -#: ../../Zotlabs/Module/Uexport.php:65 -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 entrades i converses d'un any o un mes en particular. Ajusta la data a la barra d'adreces del navegador per seleccionar altres dates. Si l'exportació falla (possiblement degut a l'esgotament de la memòria RAM del servidor), prova de nou amb un interval de dates més petit." - -#: ../../Zotlabs/Module/Uexport.php:66 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per exemple, per seleccionar totes les entrades d'aquest any, ves a %2$s" - -#: ../../Zotlabs/Module/Uexport.php:67 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per exemple, per seleccionar totes les entrades del mes de gener d'aquest any, ves a %2$s" - -#: ../../Zotlabs/Module/Uexport.php:68 -#, 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 "Les còpies de seguretat amb contingut es poden importar o restaurar des d'aquesta adreça %2$s. En aquest cas és aquest servidor, però també serviria en un altre hub que allotgés un clon del teu canal. Si vols restaurar més d'un arxiu de contingut, per evitar problemes importa'ls en ordre cronològic." - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "Benvingut/da a Hubzilla!" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "No tens entrades pendents de veure..." - -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:545 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "L'accés públic no està permès." - -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Lib/Apps.php:318 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:148 ../../include/text.php:1062 -#: ../../include/text.php:1074 ../../include/acl_selectors.php:118 -#: ../../include/nav.php:185 -msgid "Search" -msgstr "Cerca" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elements etiquetats amb: %s" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "Resultats de cerca per: %s" - -#: ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Public Stream" -msgstr "Flux públic" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "No s'ha trobat la ubicació." - -#: ../../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 "Abans d'esborrar la ubicació principal actual, fes-ne principal una altra." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "S'estan sincronitzant les ubicacions" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No s'ha trobat cap ubicació." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestiona les ubicacions del canal" - -#: ../../Zotlabs/Module/Locs.php:119 ../../Zotlabs/Module/Admin.php:115 -msgid "Primary" -msgstr "Primària" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 -msgid "Drop" -msgstr "Esborra" - -#: ../../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 "Espera uns 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 "Si pots, és preferible esborrar la ubicació esborrant el canal des del servidor on està copiat." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Fes servir aquest formulari per a esborrar la ubicació del lloc si el hub ja no està operatiu." - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of Pinned Navbar Apps" -msgstr "Canvia l'ordre de les aplicacions fixades a la barra de navegació" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of App Tray Apps" -msgstr "Canvia l'ordre de les aplicacions de la safata d'aplicacions" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the" -" navbar" -msgstr "Fes servir les fletxes per moure l'aplicació cap a l'esquerra (amunt) o cap a la dreta (avall)" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "Fes servir les fletxes per moure l'aplicació amunt o avall en la safata" - -#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:208 -msgid "Menu not found." -msgstr "No s'ha trobat el menú." - -#: ../../Zotlabs/Module/Mitem.php:63 -msgid "Unable to create element." -msgstr "Incapaç de crear l'element." - -#: ../../Zotlabs/Module/Mitem.php:87 -msgid "Unable to update menu element." -msgstr "Incapaç d'actualitzar un element del menú." - -#: ../../Zotlabs/Module/Mitem.php:103 -msgid "Unable to add menu element." -msgstr "No s'ha pogut afegir l'element de menú." - -#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Menu.php:231 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No s'ha trobat." - -#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 -msgid "Menu Item Permissions" -msgstr "Permisos dels ítems de menú" - -#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "(click to open/close)" -msgstr "(clica per obrir/tancar)" - -#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 -msgid "Link Name" -msgstr "Nom de l'enllaç" - -#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 -msgid "Link or Submenu Target" -msgstr "Destí de l'enllaç o del submenú" - -#: ../../Zotlabs/Module/Mitem.php:175 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introdueix la URL de l'enllaç o tria un nom de menú per crear un submenú" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 -msgid "Use magic-auth if available" -msgstr "Empra la magic-auth si està disponible" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:266 -#: ../../Zotlabs/Module/Settings/Channel.php:315 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 -#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:99 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Wiki.php:218 -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Connedit.php:396 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Menu.php:162 -#: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Defperms.php:180 -#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Sources.php:116 -#: ../../Zotlabs/Module/Sources.php:151 -#: ../../Zotlabs/Module/Filestorage.php:178 -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1618 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1206 ../../addon/cart/cart.php:1213 -#: ../../addon/cart/cart.php:1221 -#: ../../addon/cart/submodules/paypalbutton.php:99 -#: ../../addon/cart/submodules/paypalbutton.php:104 -#: ../../addon/cart/submodules/hzservices.php:73 -#: ../../addon/cart/submodules/hzservices.php:653 -#: ../../addon/cart/submodules/hzservices.php:657 -#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 -#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 -#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 -msgid "No" -msgstr "No" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:268 -#: ../../Zotlabs/Module/Settings/Channel.php:315 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 -#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:98 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Wiki.php:218 -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Connedit.php:396 -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -#: ../../Zotlabs/Module/Filestorage.php:178 -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1618 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1206 ../../addon/cart/cart.php:1213 -#: ../../addon/cart/cart.php:1221 -#: ../../addon/cart/submodules/paypalbutton.php:99 -#: ../../addon/cart/submodules/paypalbutton.php:104 -#: ../../addon/cart/submodules/hzservices.php:73 -#: ../../addon/cart/submodules/hzservices.php:653 -#: ../../addon/cart/submodules/hzservices.php:657 -#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 -#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 -#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 -msgid "Yes" -msgstr "Sí" - -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 -msgid "Open link in new window" -msgstr "Obre l'enllaç en una nova finestra" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Order in list" -msgstr "Ordre de la llista" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Els números més alts al final de la llista" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Submit and finish" -msgstr "Envia i acaba" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Submit and continue" -msgstr "Envia i continua" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:192 -msgid "Link Target" -msgstr "Destí de l'enllaç" - -#: ../../Zotlabs/Module/Mitem.php:195 -msgid "Edit menu" -msgstr "Edita el menú" - -#: ../../Zotlabs/Module/Mitem.php:198 -msgid "Edit element" -msgstr "Edita l'element" - -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Drop element" -msgstr "Esborra l'element" - -#: ../../Zotlabs/Module/Mitem.php:200 -msgid "New element" -msgstr "Element nou" - -#: ../../Zotlabs/Module/Mitem.php:201 -msgid "Edit this menu container" -msgstr "Edita el contenidor de menú" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Add menu element" -msgstr "Afegeix un element de menú" - -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Delete this menu item" -msgstr "Esborra aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "Edit this menu item" -msgstr "Edita aquest article del menú" - -#: ../../Zotlabs/Module/Mitem.php:222 -msgid "Menu item not found." -msgstr "No s'ha trobat l'element de menú." - -#: ../../Zotlabs/Module/Mitem.php:235 -msgid "Menu item deleted." -msgstr "S'ha esborrat l'element de menú." - -#: ../../Zotlabs/Module/Mitem.php:237 -msgid "Menu item could not be deleted." -msgstr "No s'ha pogut esborrar l'element de menú." - -#: ../../Zotlabs/Module/Mitem.php:244 -msgid "Edit Menu Element" -msgstr "Editar elements del menú" - -#: ../../Zotlabs/Module/Mitem.php:254 -msgid "Link text" -msgstr "Text de l'enllaç" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "S'han importat les entrades de calendari." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No s'ha trobat cap entrada de calendari." - -#: ../../Zotlabs/Module/Events.php:110 -msgid "Event can not end before it has started." -msgstr "L'esdeveniment no pot acabar abans de començar." - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "No s'ha pogut generar la vista prèvia." - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "Cal indicar l'inici i el final de l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "No s'ha trobat l'esdeveniment." - -#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 -#: ../../include/text.php:2025 ../../include/event.php:1153 -msgid "event" -msgstr "esdeveniment" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "Edita el títol de l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 -#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "Obligatori" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "Categories (llista separada per comes)" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "Edita la categoria" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "Edita la data i hora d'inici" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -msgid "Finish date and time are not known or not relevant" -msgstr "L'hora d'acabar és desconeguda o irrellevant" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Edit finish date and time" -msgstr "Edita la data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "Data i hora de finalització" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "Ajusta a la zona horària de l'usuari/a" - -#: ../../Zotlabs/Module/Events.php:471 -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:473 -msgid "Edit Description" -msgstr "Edita la descripció" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Edita la ubicació" - -#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1128 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:767 -#: ../../include/conversation.php:1341 -msgid "Preview" -msgstr "Vista prèvia" - -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1413 -msgid "Permission settings" -msgstr "Configuració de permisos" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "Zona horària:" - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "Opcions avançades" - -#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 -msgid "l, F j" -msgstr "l, j \\d\\e F" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "Edita l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "Esborra l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1844 -msgid "Link to Source" -msgstr "Enllaç a la font" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "calendari" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Edit Event" -msgstr "Edita l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Create Event" -msgstr "Crear un esdeveniment nou" - -#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1647 -msgid "Export" -msgstr "Exporta" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "S'ha eliminat l'esdeveniment" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "No s'ha pogut esborrar l'esdeveniment" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "S'ha instaŀlat l'aplicació." - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "L'aplicació conté errors." - -#: ../../Zotlabs/Module/Appman.php:130 -msgid "Embed code" -msgstr "Codi embegut" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Edit App" -msgstr "Edita una aplicació" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Create App" -msgstr "Crea una aplicació" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Name of app" -msgstr "Nom de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Location (URL) of app" -msgstr "Adreça URL de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Photo icon URL" -msgstr "Adreça URL de la icona de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "80 x 80 pixels - optional" -msgstr "80x80 píxels (opcional)" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Categories (optional, comma separated list)" -msgstr "Categories (opcional, llista separada per comes)" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Version ID" -msgstr "Identificador o número de versió" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Price of app" -msgstr "Preu de l'aplicació" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Location (URL) to purchase app" -msgstr "Adreça URL de compra de l'aplicació" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Inicia sessió." - -#: ../../Zotlabs/Module/Magic.php:76 -msgid "Hub not found." -msgstr "No s'ha trobat el hub." - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 -#: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1530 ../../addon/pubcrawl/as.php:1509 -#: ../../include/conversation.php:116 ../../include/text.php:2022 -msgid "photo" -msgstr "foto" - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -#: ../../addon/diaspora/Receiver.php:1530 ../../addon/pubcrawl/as.php:1509 -#: ../../include/conversation.php:144 ../../include/text.php:2028 -msgid "status" -msgstr "estat" - -#: ../../Zotlabs/Module/Subthread.php:142 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s segueix %3$s de %2$s" - -#: ../../Zotlabs/Module/Subthread.php:144 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha deixat de seguir %3$s de %2$s" - -#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Card_edit.php:44 -msgid "Channel not found." -msgstr "No s'ha trobat el canal." - -#: ../../Zotlabs/Module/Article_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../include/conversation.php:1283 -msgid "Insert web link" -msgstr "Insereix un enllaç web" - -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:703 -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../include/conversation.php:1409 -msgid "Title (optional)" -msgstr "Títol (opcional)" - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "Edita l'article" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:66 -msgid "Nothing to import." -msgstr "No s'ha trobat res per importar." - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:81 -#: ../../Zotlabs/Module/Import.php:97 -msgid "Unable to download data from old server" -msgstr "No s'han pogut descarregar les dades del servidor antic" - -#: ../../Zotlabs/Module/Import_items.php:77 -#: ../../Zotlabs/Module/Import.php:104 -msgid "Imported file is empty." -msgstr "El fitxer importat està buit." - -#: ../../Zotlabs/Module/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atenció: Les versions de les bases de dades difereixen de %1$d actualitzacions." - -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "S'ha completat la importació" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "Importa articles" - -#: ../../Zotlabs/Module/Import_items.php:126 -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/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:548 -msgid "File to Upload" -msgstr "Fitxer per pujar" - -#: ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Has creat %1$.0f canals dels %2$.0f totals permesos." - -#: ../../Zotlabs/Module/New_channel.php:154 -#: ../../Zotlabs/Module/New_channel.php:161 -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:276 -msgid "Loading" -msgstr "S'està carregant" - -#: ../../Zotlabs/Module/New_channel.php:156 -msgid "Your real name is recommended." -msgstr "És recomanable fer servir el nom real." - -#: ../../Zotlabs/Module/New_channel.php:157 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Exemples: \"Paula Gomila\", \"Manel i els seus cavalls\", \"Assemblea de veïnes del barri\", \"Filosofia\"" - -#: ../../Zotlabs/Module/New_channel.php:162 -msgid "" -"This will be used to create a unique network address (like an email " -"address)." -msgstr "Es farà servir per crear una adreça de xarxa única, com la de email." - -#: ../../Zotlabs/Module/New_channel.php:164 -msgid "Allowed characters are a-z 0-9, - and _" -msgstr "Els caràcters permesos són lletres minúscules sense accents, números i guions: a-z, 0-9, -, _" - -#: ../../Zotlabs/Module/New_channel.php:174 -msgid "Channel name" -msgstr "Nom del canal" - -#: ../../Zotlabs/Module/New_channel.php:176 -#: ../../Zotlabs/Module/Register.php:265 -msgid "Choose a short nickname" -msgstr "Tria un àlies curt" - -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Settings/Channel.php:560 -#: ../../Zotlabs/Module/Register.php:266 -msgid "Channel role and privacy" -msgstr "Rol i privacitat del canal" - -#: ../../Zotlabs/Module/New_channel.php:177 -msgid "" -"Select a channel permission role compatible with your usage needs and " -"privacy requirements." -msgstr "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges." - -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:266 -msgid "Read more about channel permission roles" -msgstr "Llegeix més sobre els rols de permisos en els canals" - -#: ../../Zotlabs/Module/New_channel.php:180 -msgid "Create a Channel" -msgstr "Crea un canal" - -#: ../../Zotlabs/Module/New_channel.php:181 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed," -" and many other things." -msgstr "Un canal és una identitat de xarxa única. Tant pot representar una persona (el seu perfil social), com un fòrum (un grup), una associació o la pàgina d'algun personatge públic, un flux de notícies, i moltes més coses." - -#: ../../Zotlabs/Module/New_channel.php:182 -msgid "" -"or import an existing channel from another location." -msgstr "o bé importa un canal existent des d'una altra ubicació." - -#: ../../Zotlabs/Module/New_channel.php:187 -msgid "Validate" -msgstr "Valida-ho" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "No es permet esborrar un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al qual pertany." - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Esborra aquest canal" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "ALERTA:" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Aquest canal serà esborrat de la xarxa completament." - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Aquesta acció és irreversible!" - -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "Per seguretat, torna a introduir la contrasenya per a confirmar aquesta acció:" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina aquest canal i els seus clons de la xarxa" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Per defecte, només es pot esborrar la instància del canal ubicada en aquest hub." - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:622 -msgid "Remove Channel" -msgstr "Elimina el canal" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Files: shared with me" -msgstr "Arxius: compartits amb mi" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -msgid "NEW" -msgstr "NOU" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1451 -msgid "Size" -msgstr "Mida" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:288 -msgid "Last Modified" -msgstr "Última modificació" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove all files" -msgstr "Esborra tots els arxius" - -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove this file" -msgstr "Esborra l'arxiu" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "Servidor de $Projectname - Instaŀlació" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "No s'ha pogut establir una connexió amb la base de dades" - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No s'ha pogut connectar amb la URL del lloc especificat. Comprova si hi ha un problema amb el certificat TLS o amb el registre DNS." - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "No s'ha pogut crear la taula." - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "S'ha instaŀlat la base de dades del teu node." - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Consulta el fitxer \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "Comprovació del sistema" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "Comprova de nou" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "Connexió amb la base de dades" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per tal d'instaŀlar $Projectname cal configurar la connexió amb la base de dades." - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Si tens dubtes sobre aquests paràmetres, posa't en contacte amb la proveïdora d'allotjament web o la persona que administradora del lloc." - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de dades que especifiquis a continuació ja ha d'existir. Si no és així, crea-la abans de continuar." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "Nom del servidor de base de dades" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "Per defecte és 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "Port per a la base de dades" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "Número del port. Posa 0 per fer servir el valor predeterminat" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "Nom d'usuari/a a la base de dades" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "Contrasenya d'usuari/a a la base de dades" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "Nom de la base de dades" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "Tipus de base de dades" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "Adreça de correu de l'administrador/a del lloc" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "El teu compte de correu ha de coincidir-hi per poder emprar el panell web d'administració." - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "Adreça URL del lloc web" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "Si us plau, fes servir l'adreça amb TLS (https) si està disponible." - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "Escull la zona horària per defecte del teu lloc web" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "Configuració del lloc" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "Es necessita una versió de PHP igual o superior a la 5.5." - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "Versió del PHP" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No s'ha pogut trobar una versió de consola del PHP en la ruta del servidor web." - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si no tens una versió de línia de comandes de PHP instaŀlada al servidor, no es podran fer sondejos periòdics en segon pla, fent servir el cron." - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "Ruta al binari de PHP" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introdueix la ruta al binari de php. Pots deixar-ho en blanc i continuar l'instaŀlació." - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "Línia de comandes de PHP" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "No s'ha pogut fer servir PHP per línia de comandes perquè shell_exec() està deshabilitat. Cal habilitar-ho." - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versió de línia de comandes de PHP al teu sistema no té el \"register_argc_argv\" activat." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "Això és necessari per poder lliurar missatges." - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "register_argc_argv de PHP" - -#: ../../Zotlabs/Module/Setup.php:446 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "El límit màxim de pujada està establerta en %s. El límit de pujada per arxiu de pujada és de %s. Es permeten pujar %d arxius alhora." - -#: ../../Zotlabs/Module/Setup.php:451 -msgid "You can adjust these settings in the server php.ini file." -msgstr "Pots modificar la configuració en l'arxiu de configuració php.ini del servidor." - -#: ../../Zotlabs/Module/Setup.php:453 -msgid "PHP upload limits" -msgstr "Límits de pujada de PHP" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifratge" - -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si estàs fent servir un sistema operatiu Windows, consulta \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../Zotlabs/Module/Setup.php:480 -msgid "Generate encryption keys" -msgstr "Generar claus de xifratge" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "libCurl PHP module" -msgstr "mòdul de PHP \"libCurl\"" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "GD graphics PHP module" -msgstr "mòdul de PHP \"GD graphics\"" - -#: ../../Zotlabs/Module/Setup.php:499 -msgid "OpenSSL PHP module" -msgstr "mòdul de PHP \"OpenSSL\"" - -#: ../../Zotlabs/Module/Setup.php:500 -msgid "PDO database PHP module" -msgstr "Mòdul PHP per la base de dades PDO" - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "mb_string PHP module" -msgstr "mòdul de PHP \"mb_string\"" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "xml PHP module" -msgstr "mòdul de PHP \"xml\"" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "zip PHP module" -msgstr "Mòdul PHP per als comprimits zip" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" -msgstr "mòdul d'Apache: \"mod_rewrite\"" - -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: es necessita el mòdul \"mod-rewrite\" del servidor web Apache, però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" -msgstr "exec" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "Error: no s'ha pogut fer servir exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" -msgstr "shell_exec" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: no s'ha pogut fer servir shell_exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini" - -#: ../../Zotlabs/Module/Setup.php:527 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: es necessita el mòdul PHP \"libCURL\", però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:531 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: es necessita el mòdul PHP \"GD graphics\" amb support JPEG, però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: es necessita el mòdul PHP \"OpenSSL\", però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: PDO database PHP module required but not installed." -msgstr "Error: no s'ha trobat el mòdul PHP per a la base de dades PDO. Cal instaŀlar-lo." - -#: ../../Zotlabs/Module/Setup.php:543 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: es necessita el mòdul PHP \"mb_string\", però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:547 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: es necessita el mòdul PHP \"xml\" per al DAV, però no està instal·lat." - -#: ../../Zotlabs/Module/Setup.php:551 -msgid "Error: zip PHP module required but not installed." -msgstr "Error: no s'ha trobat el mòdul PHP per als fitxers zip. Cal instaŀlar-lo." - -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 -msgid ".htconfig.php is writable" -msgstr "L'arxiu «.htconfig.php» es pot modificar" - -#: ../../Zotlabs/Module/Setup.php:575 -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:576 -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 permisos de modificació." - -#: ../../Zotlabs/Module/Setup.php:577 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "Consulta install/INSTALL.txt per a més informació." - -#: ../../Zotlabs/Module/Setup.php:593 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "Aquest software fa servir el motor de plantilles Smarty3 per a renderitzar les vistes web. Smarty3 compila plantilles a PHP per a agilitzar-ne el renderitzat." - -#: ../../Zotlabs/Module/Setup.php:594 -#, 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 permís d'escriptura en el directori %s sota la carpeta principal." - -#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 -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:596 -#, 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:599 -#, php-format -msgid "%s is writable" -msgstr "Es pot escriure a %s" - -#: ../../Zotlabs/Module/Setup.php:615 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level" -" web folder" -msgstr "Aquest software fa servir la carpeta \"store\" per a desar els arxius pujats. El servidor web necessita permís d'escriptura per a accedir-hi. Es troba a la carpeta arrel del servidor web." - -#: ../../Zotlabs/Module/Setup.php:619 -msgid "store is writable" -msgstr "Es pot escriure al magatzem (store)" - -#: ../../Zotlabs/Module/Setup.php:651 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "No s'ha pogut validar el certificat TLS. Arregla-ho o deshabilita l'accés https a aquest lloc." - -#: ../../Zotlabs/Module/Setup.php:652 -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 per 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:653 -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:654 -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 vàlid, 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:655 -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 vàlid és molt important." - -#: ../../Zotlabs/Module/Setup.php:656 -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:658 -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 "Si no tens cap dubte que el certificat és vàlid i signat per una autoritat de confiança, comprova si has instaŀlat malament un certificat intermedi. Tot i que els navegadors no en demanen, són necessaris per les connexions entre servidors." - -#: ../../Zotlabs/Module/Setup.php:660 -msgid "SSL certificate validation" -msgstr "Validació del certificat TLS" - -#: ../../Zotlabs/Module/Setup.php:666 -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:669 -msgid "Url rewrite is working" -msgstr "Es poden reescriure les URL a «.htaccess»" - -#: ../../Zotlabs/Module/Setup.php:683 -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. L'hauràs de modificar manualment amb el text de la caixa de text, i desar-lo a l'arrel del servidor web." - -#: ../../Zotlabs/Module/Setup.php:707 -#: ../../addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "S'han produït errors en crear taules a la base de dades." - -#: ../../Zotlabs/Module/Setup.php:747 -msgid "

What next?

" -msgstr "

I ara què

" - -#: ../../Zotlabs/Module/Setup.php:748 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT! Cal que configuris manualment una execució periòdica de l'enquestador (poller en anglès)." - -#: ../../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ó dels canals prèmium" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Activa l'opció de restringir les connexions dels canals prèmium" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Si us plau, introdueix 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 "Les possibles connexions 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 per la persona propietària del canal.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal restringit o prèmium" - -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "Estadístiques de la cua" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "Total d'entrades" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "Prioritat" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "Adreça URL de Destí" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "Marca el node com a permanentment fora de línia" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "Buida la cua per aquest node" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "Últim contacte conegut" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "Off" -msgstr "No" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "On" -msgstr "Sí" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Bloqueja l'opció «%s»" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Gestiona les funcionalitats addicionals" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "S'ha marcat l'actualització com a exitosa" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ha fallat l'execució de %s. Comprova el registre del sistema." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "S'ha aplicat amb èxit l'actualització %s." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Es desconeix si l'actualització %s s'ha aplicat amb èxit, ja que no ha retornat cap resultat." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "No s'ha pogut trobar la funció d'actualització %s." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Actualitzacions fallides" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Marca com a exitosa. Fes-ho només si l'actualització s'ha aplicat de forma manual i saps del cert que ha estat així." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "Prova a fer automàticament aquesta actualització" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "No hi ha actualitzacions fallides." - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "S'ha [des]bloquejat %s compte" -msgstr[1] "S'han [des]bloquejat %s comptes" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "S'ha esborrat el compte %s" -msgstr[1] "S'han esborrat %s comptes" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "No s'ha trobat el compte" - -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2490 -#, php-format -msgid "Account '%s' deleted" -msgstr "S'ha esborrat el compte '%s'" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "S'ha bloquejat el compte '%s'" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "S'ha desbloquejat el compte '%s'" - -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:307 -#: ../../Zotlabs/Module/Admin/Addons.php:341 -#: ../../Zotlabs/Module/Admin/Addons.php:436 -#: ../../Zotlabs/Module/Admin/Security.php:92 -#: ../../Zotlabs/Module/Admin.php:140 -msgid "Administration" -msgstr "Administració" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "Comptes" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "sel·leciona-ho tot" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Inscripcions esperant confirmació" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "Data de la petició" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Sense inscripcions." - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:735 -msgid "Approve" -msgstr "Aprova" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:26 -msgid "Deny" -msgstr "Denega" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Block" -msgstr "Bloqueja" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Unblock" -msgstr "Desbloqueja" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "Identificador" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" -msgstr "Tots els canals" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "Data d'inscripció" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "Últim inici de sessió" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "Caduca" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "Classe de servei" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "S'esborraran tots els comptes seleccionats!\\n\\nTot el que hagin publicat en aquest lloc també serà esborrat permanentment!\\n\\nN'estàs segur/a de continuar?" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El compte {0} serà eliminat!\\n\\nTot el que hagi publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur/a?" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "S'ha actualitzat la configuració del registre." - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "Registre" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Neteja" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Depuració" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "Arxiu de registre" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "El servidor web l'ha de poder modificar. Escriu la ruta relativa respecte a la carpeta arrel del servidor web." - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Nivell de registre" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canal censurat/no censurat" -msgstr[1] "S'han [des]censurat %s canals" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s codi permes/no permes al canal" -msgstr[1] "S'han [des]activat %s codis de canal" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal esborrat" -msgstr[1] "S'han esborrat %s canals" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "No s'ha trobat el canal" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "S'ha esborrat el canal «%s»" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "S'ha censurat el canal «%s»" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "S'ha descensurat el canal «%s»" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "S'ha activat un codi pel canal «%s»" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "S'ha desactivat un codi pel canal «%s»" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "Canals" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "Censura" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "Descensura" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "Activa el codi" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "Desactiva el codi" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1820 ../../include/nav.php:370 -msgid "Channel" -msgstr "Canal" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "Identificador" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els canals seleccionats estan a punt de ser esborrats\\n\\nTotes les seves publicacions en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a? " - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} està a punt de ser esborrat!\\n\\nTotes les seves publicacions d'aquest en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a?" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "S'ha actualitzat la configuració de tema." - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "No s'ha trobat cap tema." - -#: ../../Zotlabs/Module/Admin/Themes.php:72 -#: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:453 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3566 -msgid "Item not found." -msgstr "No s'ha trobat l'element." - -#: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Addons.php:310 -msgid "Disable" -msgstr "Desactiva" - -#: ../../Zotlabs/Module/Admin/Themes.php:97 -#: ../../Zotlabs/Module/Admin/Addons.php:313 -msgid "Enable" -msgstr "Activa" - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "Captura de pantalla" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "Temes" - -#: ../../Zotlabs/Module/Admin/Themes.php:124 -#: ../../Zotlabs/Module/Admin/Addons.php:343 -msgid "Toggle" -msgstr "Commuta'n l'estat" - -#: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:304 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:99 -msgid "Settings" -msgstr "Configuració" - -#: ../../Zotlabs/Module/Admin/Themes.php:134 -#: ../../Zotlabs/Module/Admin/Addons.php:351 -msgid "Author: " -msgstr "Autor/a:" - -#: ../../Zotlabs/Module/Admin/Themes.php:135 -#: ../../Zotlabs/Module/Admin/Addons.php:352 -msgid "Maintainer: " -msgstr "Persona mantenidora:" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "[Incompatible]" - -#: ../../Zotlabs/Module/Admin/Site.php:172 -msgid "Site settings updated." -msgstr "S'ha actualitzat la configuració del lloc" - -#: ../../Zotlabs/Module/Admin/Site.php:198 -#: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3078 -msgid "Default" -msgstr "Predeterminat" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -#: ../../Zotlabs/Module/Settings/Display.php:130 -#, php-format -msgid "%s - (Incompatible)" -msgstr "%s - (Incompatible)" - -#: ../../Zotlabs/Module/Admin/Site.php:216 -msgid "mobile" -msgstr "mòbil" - -#: ../../Zotlabs/Module/Admin/Site.php:218 -msgid "experimental" -msgstr "experimental" - -#: ../../Zotlabs/Module/Admin/Site.php:220 -msgid "unsupported" -msgstr "incompatible" - -#: ../../Zotlabs/Module/Admin/Site.php:267 -msgid "Yes - with approval" -msgstr "Sí - amb aprovació" - -#: ../../Zotlabs/Module/Admin/Site.php:273 -msgid "My site is not a public server" -msgstr "El meu node no es un servidor públic" - -#: ../../Zotlabs/Module/Admin/Site.php:274 -msgid "My site has paid access only" -msgstr "El meu node només ofereix accés de pagament" - -#: ../../Zotlabs/Module/Admin/Site.php:275 -msgid "My site has free access only" -msgstr "El meu node només ofereix accés gratuït" - -#: ../../Zotlabs/Module/Admin/Site.php:276 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "El meu node ofereix comptes gratuïts i millores de pagament" - -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Beginner/Basic" -msgstr "Principiant/bàsica" - -#: ../../Zotlabs/Module/Admin/Site.php:289 -msgid "Novice - not skilled but willing to learn" -msgstr "Aprenent - amb poca experiència però amb ganes d'aprendre" - -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedi - còmode en entorns informàtics" - -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "Advanced - very comfortable" -msgstr "Avançat - molt còmode en entorns informàtics" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Expert - I can write computer code" -msgstr "Expert - Sé programar" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Wizard - I probably know more than you do" -msgstr "Bruixot - Segurament en sé més que tu" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Default permission role for new accounts" -msgstr "Rol de permisos per defecte per als comptes nous." - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "" -"This role will be used for the first channel created after registration." -msgstr "S'aplicarà aquest rol al primer canal que es creï després del registre d'un compte." - -#: ../../Zotlabs/Module/Admin/Site.php:308 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "Node" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -#: ../../Zotlabs/Module/Register.php:278 -msgid "Registration" -msgstr "Inscripcions" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "File upload" -msgstr "Pujada d'arxius" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Policies" -msgstr "Polítiques" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avançat" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -#: ../../addon/statusnet/statusnet.php:891 -msgid "Site name" -msgstr "Nom del node" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Site default technical skill level" -msgstr "Nivell per defecte del lloc de competències tècniques" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Es fa servir per oferir una experiència ajustada al nivell tècnic de cadascú" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Lock the technical skill level setting" -msgstr "Bloqueja el paràmetre de nivell tècnic" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Members can set their own technical comfort level by default" -msgstr "Per defecte, els/les membres poden modificar el paràmetre de nivell tècnic" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Banner/Logo" -msgstr "Cartell i logotip" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "Es permet contingut HTML, CSS i JS, sense filtrar" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Administrator Information" -msgstr "Informació de l'administració" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informació per contactar amb les persones administradores del node. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode." - -#: ../../Zotlabs/Module/Admin/Site.php:325 -#: ../../Zotlabs/Module/Siteinfo.php:24 -msgid "Site Information" -msgstr "Informació del node" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Descripció del node visible públicament. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode." - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "System language" -msgstr "Llengua del sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "System theme" -msgstr "Tema del sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema per defecte. Les persones usuàries poden sobreescriure'l a la configuració de perfil: canvia la configuració de tema" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Allow Feeds as Connections" -msgstr "Permet connectar-se a fluxos RSS" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "(Heavy system resource usage)" -msgstr "(Demana molts recursos de sistema)" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Maximum image size" -msgstr "Mida màxima d'imatge" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Mida màxima total per les imatges pujades, en bytes. Per defecte és 0, que vol dir iŀlimitada." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Does this site allow new member registration?" -msgstr "Aquest node està obert a la inscripció de nous membres?" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Invitation only" -msgstr "Només per invitació" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Només permet nous membres només a través d'invitacions. Perquè tingui efecte, les inscripcions han d'estar obertes a nous membres." - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Minimum age" -msgstr "Edat mínima" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Minimum age (in years) for who may register on this site." -msgstr "Edat mínima en anys per a poder crear un compte en aquest lloc." - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Quina descripció s'acosta més al tipus de comptes oferts en aquest node?" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Register text" -msgstr "Text d'inscripció" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Will be displayed prominently on the registration page." -msgstr "Es mostrarà en gran a la pàgina d'inscripció" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'inici de sessió)" - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "exemple: 'public' per a mostrar el flux públic, 'page/sys/home' per a mostrar una pàgina web de sistema de nom 'home', o 'include:home.html' per a incloure un arxiu." - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Preserve site homepage URL" -msgstr "Preserva l'adreça URL de la pàgina d'inici" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la pàgina d'inici del node en un marc en el lloc original enlloc de redirigir-hi" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Accounts abandoned after x days" -msgstr "Els comptes es consideren abandonats després de X dies" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Estalviarà recursos del sistema en no sondejar nodes externs per a comptes abandonats. Un 0 vol dir \"mai\"." - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "Allowed friend domains" -msgstr "Dominis amb permisos de connexió" - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Llista separada per comes de dominis en els quals està permès establir relacions d'amistat amb aquest node. S'accepten comodins (*). Deixa-ho buit per a acceptar qualsevol domini" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Verify Email Addresses" -msgstr "Verifica les adreces de correu electrònic" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activa per a comprovar l'adreça de correu emprada durant la inscripció d'un nou compte (recomanat)." - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Force publish" -msgstr "Força la publicació" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Activa per a forçar que tots el perfils en aquest node siguin llistats en el directori del lloc." - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Import Public Streams" -msgstr "Importar fluxos públics" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importa i permet l'accés a contingut públic sondejat d'altres llocs. Avís: aquest contingut no estarà moderat." - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Site only Public Streams" -msgstr "Fluxos públics només locals" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "Permet accedir a aquell contingut públic que s'hagi originat en aquest lloc, suposant que no s'estan important fluxos públics d'altres nodes." - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "Permet a qualsevol persona d'internet d'accedir els fluxos públics" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "Desabilita-ho per a demanar iniciar sessió per poder-ho veure. Alerta: el contingut no estarà moderat." - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Only import Public stream posts with this text" -msgstr "Importa només entrades del flux públics que continguin aquest text" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -#: ../../Zotlabs/Module/Admin/Site.php:348 -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -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/Admin/Site.php:348 -msgid "Do not import Public stream posts with this text" -msgstr "No importes entrades del flux públic que continguin aquest text" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Login on Homepage" -msgstr "Accés a la Pàgina d'inici" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut." - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Enable context help" -msgstr "Activar l'ajuda contextual" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Mostra l'ajuda contextual per la pàgina actual quan el botó d'ajuda es pressionat." - -#: ../../Zotlabs/Module/Admin/Site.php:354 -msgid "Reply-to email address for system generated email." -msgstr "Adreça de correu de resposta per als correus generats." - -#: ../../Zotlabs/Module/Admin/Site.php:355 -msgid "Sender (From) email address for system generated email." -msgstr "Adreça de correu de remitent per als correus generats." - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Name of email sender for system generated email." -msgstr "Nom visible de remitent per als correus generats." - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Directory Server URL" -msgstr "URL del Servidor de Directoris" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Default directory server" -msgstr "Servidor de directori per defecte" - -#: ../../Zotlabs/Module/Admin/Site.php:360 -msgid "Proxy user" -msgstr "Usuari Proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:361 -msgid "Proxy URL" -msgstr "URL del Proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:362 -msgid "Network timeout" -msgstr "Temps d'espera de la xarxa" - -#: ../../Zotlabs/Module/Admin/Site.php:362 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)" - -#: ../../Zotlabs/Module/Admin/Site.php:363 -msgid "Delivery interval" -msgstr "Interval de lliurament" - -#: ../../Zotlabs/Module/Admin/Site.php:363 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats." - -#: ../../Zotlabs/Module/Admin/Site.php:364 -msgid "Deliveries per process" -msgstr "Entregues per processar" - -#: ../../Zotlabs/Module/Admin/Site.php:364 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Nombre de entregues a intentar processar en un únic procèss del sistema operatiu. Ajustar si es necessari per millorar el rendiment. Es recomana: 1-5." - -#: ../../Zotlabs/Module/Admin/Site.php:365 -msgid "Queue Threshold" -msgstr "Llindar de la cua" - -#: ../../Zotlabs/Module/Admin/Site.php:365 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "Posposa el lliurament immediat si la cua conté més d'aquest nombre d'entrades." - -#: ../../Zotlabs/Module/Admin/Site.php:366 -msgid "Poll interval" -msgstr "interval de sondeig" - -#: ../../Zotlabs/Module/Admin/Site.php:366 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament." - -#: ../../Zotlabs/Module/Admin/Site.php:367 -msgid "Path to ImageMagick convert program" -msgstr "Ruta al programa de conversió d'imatges ImageMagick" - -#: ../../Zotlabs/Module/Admin/Site.php:367 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "Si se n'indica la ruta, es farà servir aquest programa per a generar miniatures per a imatges enormes (més de 4000 píxels d'ample o alt). En cas contrari es pot esgotar la memòria del servidor. Ruta d'exemple: /usr/bin/convert" - -#: ../../Zotlabs/Module/Admin/Site.php:368 -msgid "Allow SVG thumbnails in file browser" -msgstr "Permet miniatures en SVG a l'explorador de fitxers" - -#: ../../Zotlabs/Module/Admin/Site.php:368 -msgid "WARNING: SVG images may contain malicious code." -msgstr "Alerta: Les imatges SVG poden contenir codi maliciós." - -#: ../../Zotlabs/Module/Admin/Site.php:369 -msgid "Maximum Load Average" -msgstr "Càrrega Mitja Màxima" - -#: ../../Zotlabs/Module/Admin/Site.php:369 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte." - -#: ../../Zotlabs/Module/Admin/Site.php:370 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Període d'expiració en dies per contingut importat (malla/xarxa)" - -#: ../../Zotlabs/Module/Admin/Site.php:370 -msgid "0 for no expiration of imported content" -msgstr "0 vol dir sense temps d'expiració pel contingut importat" - -#: ../../Zotlabs/Module/Admin/Site.php:371 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "No facis caducar les entrades que tinguin comentaris més nous que aquest nombre de dies" - -#: ../../Zotlabs/Module/Admin/Site.php:373 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "Servidors públics: Pàgina d'arribada promocional per a nous usuaris o usuàries." - -#: ../../Zotlabs/Module/Admin/Site.php:373 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "Crea primer aquesta pàgina. Per defecte és %s/register" - -#: ../../Zotlabs/Module/Admin/Site.php:374 -msgid "Page to display after creating a new channel" -msgstr "Pàgina que es mostrarà després d'haver creat un canal nou" - -#: ../../Zotlabs/Module/Admin/Site.php:374 -msgid "Default: profiles" -msgstr "Per defecte: profiles" - -#: ../../Zotlabs/Module/Admin/Site.php:376 -msgid "Optional: site location" -msgstr "Opcional: ubicació del node" - -#: ../../Zotlabs/Module/Admin/Site.php:376 -msgid "Region or country" -msgstr "Regió o país" - -#: ../../Zotlabs/Module/Admin/Addons.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "S'ha desactivat l'extensió %s." - -#: ../../Zotlabs/Module/Admin/Addons.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "S'ha activat l'extensió %s." - -#: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:437 ../../Zotlabs/Widget/Admin.php:27 -msgid "Addons" -msgstr "Extensions" - -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Minimum project version: " -msgstr "Versió mínima del projecte:" - -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Maximum project version: " -msgstr "Versió màxima del projecte:" - -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Minimum PHP version: " -msgstr "Versió mínima de PHP:" - -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Compatible Server Roles: " -msgstr "Rols de servidor compatibles" - -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Requires: " -msgstr "Demana:" - -#: ../../Zotlabs/Module/Admin/Addons.php:358 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -msgid "Disabled - version incompatibility" -msgstr "Desactivada - versions incompatibles" - -#: ../../Zotlabs/Module/Admin/Addons.php:411 -msgid "Enter the public git repository URL of the addon repo." -msgstr "Introdueix la URL del repositori git d'extensions. Ha de ser un repositori públic." - -#: ../../Zotlabs/Module/Admin/Addons.php:412 -msgid "Addon repo git URL" -msgstr "Adreça URL del repositori d'extensions." - -#: ../../Zotlabs/Module/Admin/Addons.php:413 -msgid "Custom repo name" -msgstr "Nom personalitzat pel repositori" - -#: ../../Zotlabs/Module/Admin/Addons.php:413 -msgid "(optional)" -msgstr "(opcional)" - -#: ../../Zotlabs/Module/Admin/Addons.php:414 -msgid "Download Addon Repo" -msgstr "Descarrega el repositori" - -#: ../../Zotlabs/Module/Admin/Addons.php:421 -msgid "Install new repo" -msgstr "Instal·la un nou repositori" - -#: ../../Zotlabs/Module/Admin/Addons.php:422 ../../Zotlabs/Lib/Apps.php:456 -msgid "Install" -msgstr "Instal·la" - -#: ../../Zotlabs/Module/Admin/Addons.php:445 -msgid "Manage Repos" -msgstr "Gestiona els repositoris" - -#: ../../Zotlabs/Module/Admin/Addons.php:446 -msgid "Installed Addon Repositories" -msgstr "Repositoris instaŀlats" - -#: ../../Zotlabs/Module/Admin/Addons.php:447 -msgid "Install a New Addon Repository" -msgstr "Instal·la un nou repositori" - -#: ../../Zotlabs/Module/Admin/Addons.php:454 -msgid "Switch branch" -msgstr "Canvia de branca" - -#: ../../Zotlabs/Module/Admin/Addons.php:455 -#: ../../Zotlabs/Module/Photos.php:1025 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/superblock.php:116 -msgid "Remove" -msgstr "Esborra" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "Camp de Perfil Nou" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "Àlies de Camp" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "nOM DEL SISTEMA DEL CAMP" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "Tipus d'entrada" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "Nom de Camp" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "Etiqueta a les pàgines de perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "Text d'ajuda" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "Informació adicional (opcional)" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1063 -#: ../../include/text.php:1075 -msgid "Save" -msgstr "Guardar" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "No es troba la definició del camp" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "Modifica el camp de perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "Camps del Perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "Camps Bàsics del Perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "Camps Avançats del Perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "( addicionalment als camps bàsics)" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "Tots els camps disponibles" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "Camps Personalitzats" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "Crear un Camp Personalitzat" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "S'ha modificat la contrasenya pel compte %d." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "S'han actualitzat els paràmetres del compte." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "No s'ha trobat el compte." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "Edita el compte" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "Introdueix la nova contrasenya" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "Repeteix la nova contrasenya" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Nivell de competències tècniques" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "Idioma pel compte (pels correus)" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "Classe de servei" - -#: ../../Zotlabs/Module/Admin/Security.php:83 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur." - -#: ../../Zotlabs/Module/Admin/Security.php:86 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:" - -#: ../../Zotlabs/Module/Admin/Security.php:87 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin/Security.php:88 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament." - -#: ../../Zotlabs/Module/Admin/Security.php:93 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "Seguretat" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block public" -msgstr "Bloca que sigui públic" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "activa per blocar l'accés a les pàgines personals públiques a tothom excepte aquells/es que s'hagin autenticat en aquest node." - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Provide a cloud root directory" -msgstr "Ofereix un directori arrel de núvols" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "EL directori arrel de núvols llista tots els canals que ofereixen fitxers públicament" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Show total disk space available to cloud uploads" -msgstr "Mostra l'espai disc disponible per a pujar arxius als núvols" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Set \"Transport Security\" HTTP header" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Set \"Content Security Policy\" HTTP header" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Allowed email domains" -msgstr "Dominis de correu electonic acceptats" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "llista separada per comes de dominis d'adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Not allowed email domains" -msgstr "Dominis de correu electrònic no acceptats" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "llista separada per comes de dominis d'adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats." - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Allow communications only from these sites" -msgstr "Permetre comunicacions únicament des de aquests llocs" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un lloc per línia. Deixar en blanc per permetre, per defecte, la comunicació amb tothom." - -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Block communications from these sites" -msgstr "Bloca comunicacions que venen d'aquests llocs" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Allow communications only from these channels" -msgstr "Permet la comunicació només per aquests canals" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (hash) per línia. Deixa en blanc per permetre, per defecte, la comunicació qualsevol canal." - -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Block communications from these channels" -msgstr "Bloca les comunicacions que venen d'aquests canals" - -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetre embeguts només de llocs web i enllaços segurs (SSL)." - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Permetre HTML embegut sense filtrar només d'aquests dominis." - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un lloc per línia. Per defecte el contingut embegut es filtrat." - -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Block embedded HTML from these domains" -msgstr "Bloca HTML embegut d'aquests dominis" - -#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:120 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" -msgstr "S'ha aprovat el comentari" - -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" -msgstr "S'ha esborrat el comentari" - -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "Es necessita el nom del perfil." - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "S'ha desat la categoria de permisos." - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Pots crear regles de permisos segons classe de persona o de connexió." - -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 -msgid "Permission Categories" -msgstr "Categories de permisos" - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Nom de permís" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -msgid "My Settings" -msgstr "La meva configuració" - -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -msgid "inherited" -msgstr "heretat" - -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -msgid "Individual Permissions" -msgstr "Permisos Individuals" - -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:894 -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 "Alguns permisos pot ser que vinguin heretats de la configuració de privacitat del teu canal. Aquesta té més prioritat que les configuracions individuals. No pots canviar aquests paràmetres aquí." - -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:73 -#: ../../Zotlabs/Module/Settings/Channel.php:76 -#: ../../Zotlabs/Module/Settings/Channel.php:87 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:437 -#: ../../include/channel.php:438 ../../include/channel.php:445 -msgid "Friends" -msgstr "Amics" - -#: ../../Zotlabs/Module/Settings/Channel.php:272 -#: ../../Zotlabs/Module/Defperms.php:103 -#: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:184 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:102 -msgid "Settings updated." -msgstr "Ajustes actualizados." - -#: ../../Zotlabs/Module/Settings/Channel.php:333 -msgid "Nobody except yourself" -msgstr "Ningú excepte tú" - -#: ../../Zotlabs/Module/Settings/Channel.php:334 -msgid "Only those you specifically allow" -msgstr "Només allò que específicament permetis" - -#: ../../Zotlabs/Module/Settings/Channel.php:335 -msgid "Approved connections" -msgstr "Connexions aprovades" - -#: ../../Zotlabs/Module/Settings/Channel.php:336 -msgid "Any connections" -msgstr "Qualsevol connexió" - -#: ../../Zotlabs/Module/Settings/Channel.php:337 -msgid "Anybody on this website" -msgstr "Qualsevol en aquest lloc" - -#: ../../Zotlabs/Module/Settings/Channel.php:338 -msgid "Anybody in this network" -msgstr "Qualsevol en aquesta xarxa" - -#: ../../Zotlabs/Module/Settings/Channel.php:339 -msgid "Anybody authenticated" -msgstr "Qualsevol autenticat" - -#: ../../Zotlabs/Module/Settings/Channel.php:340 -msgid "Anybody on the internet" -msgstr "Qualsevol a internet" - -#: ../../Zotlabs/Module/Settings/Channel.php:415 -msgid "Publish your default profile in the network directory" -msgstr "Publica el teu perfil per defecte al directori de la xarxa" - -#: ../../Zotlabs/Module/Settings/Channel.php:420 -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/Channel.php:424 -msgid "or" -msgstr "o" - -#: ../../Zotlabs/Module/Settings/Channel.php:433 -msgid "Your channel address is" -msgstr "La teva adreça del canal es" - -#: ../../Zotlabs/Module/Settings/Channel.php:436 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "Les teves fotos i arxius estan disponibles mitjançant WebDAV a" - -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "Automatic membership approval" -msgstr "Acceptació automàtica de membres" - -#: ../../Zotlabs/Module/Settings/Channel.php:488 -#: ../../Zotlabs/Module/Defperms.php:239 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Si s'habilita, les soŀlicituds de connexió s'aprovaran automàticament sense requerir la teva interacció" - -#: ../../Zotlabs/Module/Settings/Channel.php:514 -msgid "Channel Settings" -msgstr "Configuració de canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Basic Settings" -msgstr "Configuració bàsica" - -#: ../../Zotlabs/Module/Settings/Channel.php:522 -#: ../../include/channel.php:1521 -msgid "Full Name:" -msgstr "Nom Complet:" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -#: ../../Zotlabs/Module/Settings/Account.php:119 -msgid "Email Address:" -msgstr "Adreça de E-Correu:" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Your Timezone:" -msgstr "La teva Franja Horària" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Default Post Location:" -msgstr "Localització Predeterminada de les Entrades:" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Geographical location to display on your posts" -msgstr "Posició geogràfica a mostrar a les teves entrades" - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Use Browser Location:" -msgstr "Empra la Localització del Navegador:" - -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "Adult Content" -msgstr "Contingut per a Adults" - -#: ../../Zotlabs/Module/Settings/Channel.php:528 -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/Channel.php:530 -msgid "Security and Privacy Settings" -msgstr "Configuració de seguretat i privacitat" - -#: ../../Zotlabs/Module/Settings/Channel.php:532 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Els teus permisos estan configurats. Clic per veure/ajustar" - -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Hide my online presence" -msgstr "Amaga la meva presencia en línia" - -#: ../../Zotlabs/Module/Settings/Channel.php:534 -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/Channel.php:536 -msgid "Simple Privacy Settings:" -msgstr "Configuració simple de privacitat:" - -#: ../../Zotlabs/Module/Settings/Channel.php:537 -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/Channel.php:538 -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/Channel.php:539 -msgid "Private - default private, never open or public" -msgstr "Privat - privat per defecte, mai públic o obert" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloquejat - tothom bloquejat per defecte" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Allow others to tag your posts" -msgstr "Permet a altres etiquetar les teves entrades" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -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/Channel.php:544 -msgid "Channel Permission Limits" -msgstr "Límits dels permisos del canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Expire other channel content after this many days" -msgstr "El contingut d'altes canals caduca després d'aquests dies" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "0 or blank to use the website limit." -msgstr "0 o en blanc per emprar el limit del lloc web." - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -#, php-format -msgid "This website expires after %d days." -msgstr "Aquest lloc web expira després de %d dies." - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "This website does not expire imported content." -msgstr "A aquest lloc web no expira el contingut importat" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -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/Channel.php:547 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre màxim de peticions d'amistat per dia" - -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "May reduce spam activity" -msgstr "Pot reduir l'SPAM" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "Default Privacy Group" -msgstr "Grup de privacitat per defecte" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Use my default audience setting for the type of object published" -msgstr "Empra la meva configuració d'audiència que hagi triat per al tipus d'entrada" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "Profile to assign new connections" -msgstr "Perfil al qual assignar les connexions noves" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "Default Permissions Group" -msgstr "Grup de permisos per defecte" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Maximum private messages per day from unknown people:" -msgstr "Nombre màxim de missatges privats de desconeguts al dia:" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Useful to reduce spamming" -msgstr "Útil per a reduir l'spam" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" -msgstr "Configuració de notificacions" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "By default post a status message when:" -msgstr "Per defecte envia un missatge d'estat quan:" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "accepting a friend request" -msgstr "S'accepta una sol·licitud d'amistat" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "joining a forum/community" -msgstr "Apuntar-se a un fòrum o comunitat" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "making an interesting profile change" -msgstr "Faci un canvi interesant al perfil" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "Send a notification email when:" -msgstr "Notifica per correu quan:" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "You receive a connection request" -msgstr "Rebi una petició de connexió" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "Your connections are confirmed" -msgstr "Es confirma una connexió" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "Someone writes on your profile wall" -msgstr "Algú ha escrit al mur del teu perfil" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "Someone writes a followup comment" -msgstr "Algú ha escrit un comentari de resposta" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "You receive a private message" -msgstr "Rebi un missatge privat" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "You receive a friend suggestion" -msgstr "Rebi una suggerència d'amistat" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "You are tagged in a post" -msgstr "Estàs etiquetat a l'entrada" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "You are poked/prodded/etc. in a post" -msgstr "S'enfoten/te piquen/etc. en una entrada" - -#: ../../Zotlabs/Module/Settings/Channel.php:585 -msgid "Someone likes your post/comment" -msgstr "A algú li ha agradat la teva entrada o comentari" - -#: ../../Zotlabs/Module/Settings/Channel.php:588 -msgid "Show visual notifications including:" -msgstr "Mostra notificacion visuals, com ara:" - -#: ../../Zotlabs/Module/Settings/Channel.php:590 -msgid "Unseen grid activity" -msgstr "Activitat de malla no vista" - -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "Unseen channel activity" -msgstr "Activitat no vista del canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Unseen private messages" -msgstr "Missatges privats no llegits" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -#: ../../Zotlabs/Module/Settings/Channel.php:597 -#: ../../Zotlabs/Module/Settings/Channel.php:598 -#: ../../Zotlabs/Module/Settings/Channel.php:599 -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Recommended" -msgstr "Recomanat" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Upcoming events" -msgstr "Esdeveniments propers" - -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "Events today" -msgstr "Esdeveniments d'avui" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Upcoming birthdays" -msgstr "Aniversaris propers" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Not available in all themes" -msgstr "No està disponible en tots els temes" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "System (personal) notifications" -msgstr "Notificacions (personals) del sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "System info messages" -msgstr "Missatges d'informació del sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:598 -msgid "System critical alerts" -msgstr "Alertes crítiques del sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:599 -msgid "New connections" -msgstr "Noves connexions" - -#: ../../Zotlabs/Module/Settings/Channel.php:600 -msgid "System Registrations" -msgstr "Inscripcions del Sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:601 -msgid "Unseen shared files" -msgstr "Fitxers compartits nous" - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Unseen public activity" -msgstr "Activitat pública nova" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Unseen likes and dislikes" -msgstr "\"M'agrada\" i \"no m'agrada\" pendents" - -#: ../../Zotlabs/Module/Settings/Channel.php:604 -msgid "Unseen forum posts" -msgstr "Entrades de fòrum no llegides" - -#: ../../Zotlabs/Module/Settings/Channel.php:605 -msgid "Email notification hub (hostname)" -msgstr "Hub per a notificacions per correu (nom de domini)" - -#: ../../Zotlabs/Module/Settings/Channel.php:605 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "En cas que el teu canal estigui repicat en diversos hubs, habilita aquesta opció al teu hub preferit. Això evita notificacions duplicades. Exemple: %s" - -#: ../../Zotlabs/Module/Settings/Channel.php:606 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "Mostra totes les novetats d'entrades de mur, missatges privats i connexions a Notícies" - -#: ../../Zotlabs/Module/Settings/Channel.php:608 -msgid "Notify me of events this many days in advance" -msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació" - -#: ../../Zotlabs/Module/Settings/Channel.php:608 -msgid "Must be greater than 0" -msgstr "Ha de ser més gran que 0" - -#: ../../Zotlabs/Module/Settings/Channel.php:614 -msgid "Advanced Account/Page Type Settings" -msgstr "Configuració avançada de compte i de tipus de pàgina" - -#: ../../Zotlabs/Module/Settings/Channel.php:615 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica el comportament d'aquest compte en situacions especials" - -#: ../../Zotlabs/Module/Settings/Channel.php:617 -msgid "Miscellaneous Settings" -msgstr "Configuració diversa" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 -msgid "Default photo upload folder" -msgstr "Carpeta per defecte de fotos pujades" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 -#: ../../Zotlabs/Module/Settings/Channel.php:619 -msgid "%Y - current year, %m - current month" -msgstr "%Y - any en curs, %m - mes corrent" - -#: ../../Zotlabs/Module/Settings/Channel.php:619 -msgid "Default file upload folder" -msgstr "Carpeta per defecte d'arxius pujats" - -#: ../../Zotlabs/Module/Settings/Channel.php:621 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal per mostrar en les teves pàgines de canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:623 -msgid "Remove this channel." -msgstr "Elimina aquest canal." - -#: ../../Zotlabs/Module/Settings/Channel.php:624 -msgid "Firefox Share $Projectname provider" -msgstr "Firefox Share $Projectname provider" - -#: ../../Zotlabs/Module/Settings/Channel.php:625 -msgid "Start calendar week on Monday" -msgstr "Comença la setmana en dilluns" - -#: ../../Zotlabs/Module/Settings/Features.php:73 -msgid "Additional Features" -msgstr "Característiques Addicionals" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "El teu nivell tècnic" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Es fa servir per a oferir-te una experiència i un seguit de funcionalitats addicionals d'acord amb la complexitat que desitgis." - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Aquest canal té un límit de %d tokens" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "El nom i la contrasenya són necessaris." - -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "S'ha desat el token." - -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -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 private content." -msgstr "Fes servir aquest formulari per a crear identificadors d'accés temporal per tal de compartir coses amb persones no membres. Aquestes identitats són reconegudes a \"Control d'accés\" i poden ser usades per iniciar sessió i accedir a contingut privat." - -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -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 "Si vols donar enllaços que no requereixin dos passos, pots afegir la contrasenya d'accés a la URL per compartir. Per exemple:" - -#: ../../Zotlabs/Module/Settings/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:100 -msgid "Guest Access Tokens" -msgstr "Tokens d'accés de convidat" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Nom d'usuari" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Contrasenya d'usuari" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Data de caducitat (aaaa-mm-dd)" - -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "Their Settings" -msgstr "La seva configuració" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:36 -msgid "Name and Secret are required" -msgstr "Es necessiten el nom i el secret" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -msgid "Add OAuth2 application" -msgstr "Afegeix una aplicació OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Nom de l'aplicatiu" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Redirecciona" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -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/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Grant Types" -msgstr "Tipus de permís" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:91 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -#: ../../Zotlabs/Module/Settings/Oauth2.php:119 -msgid "leave blank unless your application sepcifically requires this" -msgstr "deixa-ho en blanc si no és que la teva aplicació ho demana explícitament" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:91 -#: ../../Zotlabs/Module/Settings/Oauth2.php:119 -msgid "Authorization scope" -msgstr "Àmbit d'autorització" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:103 -msgid "OAuth2 Application not found." -msgstr "No s'ha trobat l'aplicació OAuth2." - -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Afegir aplicatiu" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -msgid "Connected OAuth2 Apps" -msgstr "Aplicacions OAuth2 connectades" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "La clau del client comença amb" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Sin nombre" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:154 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Elimina autorització" - -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "E-correu no vàlid." - -#: ../../Zotlabs/Module/Settings/Account.php:23 -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/Account.php:32 -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/Account.php:40 -msgid "Technical skill level updated" -msgstr "S'ha actualitzat el nivell de competències tècniques" - -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "La verificació de la contrasenya ha fallat." - -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." -msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." - -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis." - -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." -msgstr "Contrasenya canviada." - -#: ../../Zotlabs/Module/Settings/Account.php:83 -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/Account.php:112 -msgid "Account Settings" -msgstr "Configuració del compte" - -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" -msgstr "Contrasenya Actual" - -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" -msgstr "Entra la Nova Contrasenya" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" -msgstr "Confirma la Nova Contrasenya" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" -msgstr "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar" - -#: ../../Zotlabs/Module/Settings/Account.php:120 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Esborra el Compte" - -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" -msgstr "Esborra aquest compte inclosos tots els seus canals" - -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "S'ha actualitzat la configuració de la barra d'afinitat" - -#: ../../Zotlabs/Module/Settings/Featured.php:38 -msgid "No feature settings configured" -msgstr "No hi ha opcions de les funcions configurades" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "Nivell màxim d'afinitat predeterminat" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "0-99 (per defecte 99)" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "Nivell mínim d'afinitat predeterminat" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "0-99 (per defecte 0)" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "Configuració de la barra d'afinitat" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 -msgid "Addon Settings" -msgstr "Configuració de les extensions" - -#: ../../Zotlabs/Module/Settings/Featured.php:68 -msgid "Please save/submit changes to any panel before opening another." -msgstr "Desa els canvis en un panell abans d'obrir-ne un altre." - -#: ../../Zotlabs/Module/Settings/Display.php:139 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Display Settings" -msgstr "Configuració de pantalla" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Theme Settings" -msgstr "Configuració de tema" - -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Custom Theme Settings" -msgstr "Configuració de temes personalitzats" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Content Settings" -msgstr "Configuració dels continguts" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Tema de pantalla:" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Select scheme" -msgstr "Tria esquema" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Preload images before rendering the page" -msgstr "Precarrega les imatges abans de dibuixar la pàgina" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -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/Display.php:200 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom d'usuari en dispositius mòbils" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Update browser every xx seconds" -msgstr "Actualitza el navegador cada xx segons" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínim de 10 segons, sense màxim" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum number of conversations to load at any time:" -msgstr "Nombre màxim de conversacions a càrregar cada vegada" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum of 100 items" -msgstr "Màxim de 100 elements" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra emoticons (smilies) com a imatges" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Provide channel menu in navigation bar" -msgstr "Mostra el menú de canal a la barra de navegació" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Default: channel menu located in app menu" -msgstr "Per defecte, el menú de canal es troba al menú d'aplicacions" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Manual conversation updates" -msgstr "Actualitza les converses manualment" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "Per defecte està habilitada perquè evita que la pàgina salti cap avall en actualitzar-se." - -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Link post titles to source" -msgstr "Enllaça a l'origen els títols de l'entrada" - -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de dissenys de pàgines de sistema (avançat)" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Empra el mode blog/llista a la pàgina del canal" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(Observacions es mostren per separat)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -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/Display.php:212 -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/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "click to expand content exceeding this height" -msgstr "Clic per expandir el contingut que excedeixi aquesta alçada" - -#: ../../Zotlabs/Module/Settings/Display.php:213 -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/Oauth.php:35 -msgid "Name is required" -msgstr "Es requereix un Nom" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "Es requereix Clau (Key) i el Secret (Secret)" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "Icona de url" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 -msgid "Optional" -msgstr "Opcional" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Aplicatiu no trobat." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "Aplicatius Conectats" - -#: ../../Zotlabs/Module/Embedphotos.php:140 -#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1355 -#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "Mostra la imatge" - -#: ../../Zotlabs/Module/Embedphotos.php:156 -#: ../../Zotlabs/Module/Photos.php:847 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "Modifica l'àlbum" - -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:717 -#: ../../Zotlabs/Module/Profile_photo.php:459 -#: ../../Zotlabs/Module/Cover_photo.php:395 -#: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Cdav.php:133 -#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 -msgid "Upload" -msgstr "Pujar" - -#: ../../Zotlabs/Module/Achievements.php:38 -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/Thing.php:120 -msgid "Thing updated" -msgstr "S'ha actualitzat la cosa" - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "No s'ha pogut emmagatzemar l'objecte" - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "S'ha afegit la cosa" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "Mostra la cosa" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "no s'ha trobat l'element." - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "Edita la cosa" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "Tria un perfil" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "Publica una activitat" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "S'envia només a visitants del perfil corresponent" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "Nom de la cosa. Exemple: patata" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "Adreça URL de la cosa (opcional)" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "Adreça URL de la foto d'una cosa (opcional)" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:707 ../../Zotlabs/Module/Photos.php:1076 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:170 -#: ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "Permisos " - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "Afegeix una cosa al teu perfil" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "No more system notifications." -msgstr "No hi ha més notificacions del sistema." - -#: ../../Zotlabs/Module/Notify.php:65 -#: ../../Zotlabs/Module/Notifications.php:59 -msgid "System Notifications" -msgstr "Notificacions del sistema" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "S'ha afegit la connexió." - -#: ../../Zotlabs/Module/Import.php:146 -#, 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:173 -msgid "No channel. Import failed." -msgstr "Sense canal. No s'ha pogut importar." - -#: ../../Zotlabs/Module/Import.php:513 -#: ../../addon/diaspora/import_diaspora.php:139 -msgid "Import completed." -msgstr "S'ha completat la importació." - -#: ../../Zotlabs/Module/Import.php:541 -msgid "You must be logged in to use this feature." -msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." - -#: ../../Zotlabs/Module/Import.php:546 -msgid "Import Channel" -msgstr "Importa un canal" - -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació" - -#: ../../Zotlabs/Module/Import.php:549 -msgid "Or provide the old server/hub details" -msgstr "O proveeix els detalls de l'antic servidor/node" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "La teva adreça de correu electrònic antiga" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La teva contrasenya antiga" - -#: ../../Zotlabs/Module/Import.php:554 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Importa, si es possible, missatges de fa uns quants mesos (limitat per la memòria disponible) " - -#: ../../Zotlabs/Module/Import.php:556 -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/Import.php:558 -msgid "Make this hub my primary location" -msgstr "Fes d'aquest node la meva ubicació primària" - -#: ../../Zotlabs/Module/Import.php:559 -msgid "Move this channel (disable all previous locations)" -msgstr "Moure aquest canal (desactiva totes les prèvies localitzacions)" - -#: ../../Zotlabs/Module/Import.php:560 -msgid "Use this channel nickname instead of the one provided" -msgstr "Fes servir aquest nom de canal en comptes del que has facilitat" - -#: ../../Zotlabs/Module/Import.php:560 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this " -"site." -msgstr "Deixa-ho en blanc per a mantenir el teu nom de canal actual. Se t'assignarà un nom aleatori però similar a l'actual en cas que el nom actual ja estigui agafat en aquest node." - -#: ../../Zotlabs/Module/Import.php:562 -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/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Ha fallat l'autentificació." - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1614 -#: ../../include/channel.php:2334 -msgid "Remote Authentication" -msgstr "Autentificació Remota" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2335 -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:77 ../../include/channel.php:2336 -msgid "Authenticate" -msgstr "Autentica't" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permís denegat." - -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2482 -msgid "Import" -msgstr "Importar" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "Autoritza la connexió de l'aplicació" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "Torna a la teva aplicació i introdueix aquest codi de seguertat" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "Si et plau, identifica't per continuar." - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -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/Attach.php:13 -msgid "Item not available." -msgstr "Article no disponible." - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "Editar Bloc" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "vcard (targeta estàndard de contacte)" - -#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Lib/Apps.php:291 -msgid "Apps" -msgstr "Aplicatius" - -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage apps" -msgstr "Gestiona apps" - -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create new app" -msgstr "Crear una nova app" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 -#, 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:315 -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/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Active" -msgstr "Actives" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Blocked" -msgstr "Bloquejades" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Ignored" -msgstr "Ignorades" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Hidden" -msgstr "Amagades" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Archived/Unreachable" -msgstr "Arxivades o inaccessibles" - -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:179 -#: ../../Zotlabs/Module/Notifications.php:50 -#: ../../include/conversation.php:1726 -msgid "New" -msgstr "Nou" - -#: ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 -msgid "All" -msgstr "Tots" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "Connexions actives" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "Mostra les connexions actives" - -#: ../../Zotlabs/Module/Connections.php:147 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "Noves Connexions" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "Mostra les connexions pendents (noves)" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show blocked connections" -msgstr "Mostra només les connexions bloquejades" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show ignored connections" -msgstr "Mostra només les connexions ignorades" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show archived/unreachable connections" -msgstr "Mostra només les connexions arxivades o inaccessibles" - -#: ../../Zotlabs/Module/Connections.php:188 -msgid "Only show hidden connections" -msgstr "Mostra només les connexions amagades" - -#: ../../Zotlabs/Module/Connections.php:203 -msgid "Show all connections" -msgstr "Mostra totes les connexions" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Pending approval" -msgstr "Pendent d'aprovació" - -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Archived" -msgstr "Arxivades" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Not connected at this location" -msgstr "No està connectada des d'aquest aquest hub" - -#: ../../Zotlabs/Module/Connections.php:279 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Edit connection" -msgstr "Modifica la connexió" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Delete connection" -msgstr "Elimina la connexió" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Channel address" -msgstr "Adreça del canal" - -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Network" -msgstr "Xarxa" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Call" -msgstr "Crida" - -#: ../../Zotlabs/Module/Connections.php:298 -msgid "Status" -msgstr "Estat" - -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Connected" -msgstr "Connectat" - -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Approve connection" -msgstr "Aprovar la Connexió " - -#: ../../Zotlabs/Module/Connections.php:304 -msgid "Ignore connection" -msgstr "Ignorar connexió" - -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Ignore" -msgstr "Ignora" - -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Recent activity" -msgstr "Activitat recent" - -#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:298 -#: ../../include/text.php:975 -msgid "Connections" -msgstr "Connexions" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "Cerca entre les teves connexions" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "Cerca connexions" - -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Troba" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "element" - -#: ../../Zotlabs/Module/Bookmarks.php:56 -msgid "Bookmark added" -msgstr "S'ha afegit el marcador" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "My Bookmarks" -msgstr "Els meus marcadors" - -#: ../../Zotlabs/Module/Bookmarks.php:90 -msgid "My Connections Bookmarks" -msgstr "Els marcadors de les meves connexions" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Esborra el compte" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa" - -#: ../../Zotlabs/Module/Photos.php:78 -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:94 ../../Zotlabs/Module/Photos.php:113 -msgid "Album not found." -msgstr "Àlbum no trobat" - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "Esborra Àlbum" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1088 -msgid "Delete Photo" -msgstr "Esborra Foto" - -#: ../../Zotlabs/Module/Photos.php:556 -msgid "No photos selected" -msgstr "No has seleccionat fotos" - -#: ../../Zotlabs/Module/Photos.php:605 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element esta restringit." - -#: ../../Zotlabs/Module/Photos.php:651 -#, 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:654 -#, 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:696 -msgid "Upload Photos" -msgstr "Puja imatges" - -#: ../../Zotlabs/Module/Photos.php:700 -msgid "Enter an album name" -msgstr "Escriu el nom del àlbum" - -#: ../../Zotlabs/Module/Photos.php:701 -msgid "or select an existing album (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:702 -msgid "Create a status post for this upload" -msgstr "Genera una entrada a partir de la pujada" - -#: ../../Zotlabs/Module/Photos.php:704 -msgid "Description (optional)" -msgstr "Descripció (opcional)" - -#: ../../Zotlabs/Module/Photos.php:790 -msgid "Show Newest First" -msgstr "Ordena de més nou a més antic" - -#: ../../Zotlabs/Module/Photos.php:792 -msgid "Show Oldest First" -msgstr "Ordena de més antic a més nou" - -#: ../../Zotlabs/Module/Photos.php:849 ../../Zotlabs/Module/Photos.php:1386 -msgid "Add Photos" -msgstr "Afegeix fotos" - -#: ../../Zotlabs/Module/Photos.php:897 -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:899 -msgid "Photo not available" -msgstr "La imatge no està disponible" - -#: ../../Zotlabs/Module/Photos.php:957 -msgid "Use as profile photo" -msgstr "Fes-la imatge de perfil" - -#: ../../Zotlabs/Module/Photos.php:958 -msgid "Use as cover photo" -msgstr "Emprar com a foto de portada" - -#: ../../Zotlabs/Module/Photos.php:965 -msgid "Private Photo" -msgstr "Imatge privada" - -#: ../../Zotlabs/Module/Photos.php:980 -msgid "View Full Size" -msgstr "Mostra a mida completa" - -#: ../../Zotlabs/Module/Photos.php:1062 -msgid "Edit photo" -msgstr "Modifica la imatge" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Rotate CW (right)" -msgstr "Tomba cap a la dreta" - -#: ../../Zotlabs/Module/Photos.php:1065 -msgid "Rotate CCW (left)" -msgstr "Tomba cap a l'esquerra" - -#: ../../Zotlabs/Module/Photos.php:1068 -msgid "Move photo to album" -msgstr "Mou la foto a un àlbum" - -#: ../../Zotlabs/Module/Photos.php:1069 -msgid "Enter a new album name" -msgstr "Escriu el nom del nou àlbum" - -#: ../../Zotlabs/Module/Photos.php:1070 -msgid "or select an existing one (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../Zotlabs/Module/Photos.php:1075 -msgid "Add a Tag" -msgstr "Afegeix una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1083 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" - -#: ../../Zotlabs/Module/Photos.php:1086 -msgid "Flag as adult in album view" -msgstr "Marca com a contingut adult" - -#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:285 -msgid "I like this (toggle)" -msgstr "M'agrada això (canvia)" - -#: ../../Zotlabs/Module/Photos.php:1106 ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "I don't like this (toggle)" -msgstr "No m'agrada això (canvia)" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../Zotlabs/Lib/ThreadItem.php:432 -#: ../../include/conversation.php:787 -msgid "Please wait" -msgstr "Si us plau, espera" - -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1242 -#: ../../Zotlabs/Lib/ThreadItem.php:754 -msgid "This is you" -msgstr "Ets tú" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1244 -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentari" - -#: ../../Zotlabs/Module/Photos.php:1142 ../../include/conversation.php:619 -msgctxt "title" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1142 ../../include/conversation.php:619 -msgctxt "title" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1143 ../../include/conversation.php:620 -msgctxt "title" -msgid "Agree" -msgstr "Acord" - -#: ../../Zotlabs/Module/Photos.php:1143 ../../include/conversation.php:620 -msgctxt "title" -msgid "Disagree" -msgstr "Desacord" - -#: ../../Zotlabs/Module/Photos.php:1143 ../../include/conversation.php:620 -msgctxt "title" -msgid "Abstain" -msgstr "Abstenirse" - -#: ../../Zotlabs/Module/Photos.php:1144 ../../include/conversation.php:621 -msgctxt "title" -msgid "Attending" -msgstr "Assistint" - -#: ../../Zotlabs/Module/Photos.php:1144 ../../include/conversation.php:621 -msgctxt "title" -msgid "Not attending" -msgstr "Desassistint" - -#: ../../Zotlabs/Module/Photos.php:1144 ../../include/conversation.php:621 -msgctxt "title" -msgid "Might attend" -msgstr "Podrien assistir" - -#: ../../Zotlabs/Module/Photos.php:1161 ../../Zotlabs/Module/Photos.php:1173 -#: ../../Zotlabs/Lib/ThreadItem.php:212 ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "View all" -msgstr "Veure tot" - -#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:216 -#: ../../include/conversation.php:1990 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:661 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Agrada" -msgstr[1] "Agraden" - -#: ../../Zotlabs/Module/Photos.php:1170 ../../Zotlabs/Lib/ThreadItem.php:221 -#: ../../include/conversation.php:1993 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Desagrada" -msgstr[1] "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1270 -msgid "Photo Tools" -msgstr "Eines per Fotos" - -#: ../../Zotlabs/Module/Photos.php:1279 -msgid "In This Photo:" -msgstr "Hi apareixen:" - -#: ../../Zotlabs/Module/Photos.php:1284 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1292 ../../Zotlabs/Lib/ThreadItem.php:420 -msgctxt "noun" -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Photos.php:1298 ../../Zotlabs/Lib/ThreadItem.php:426 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "Tanca" - -#: ../../Zotlabs/Module/Photos.php:1370 ../../Zotlabs/Module/Photos.php:1383 -#: ../../Zotlabs/Module/Photos.php:1384 ../../include/photos.php:668 -msgid "Recent Photos" -msgstr "Imatges recents" - -#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1293 -msgid "Profile Unavailable." -msgstr "El perfil no està disponible." - -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:123 -msgid "Not found" -msgstr "No s'ha trobat" - -#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:51 -#: ../../addon/cart/cart.php:1420 -#: ../../addon/cart/submodules/paypalbutton.php:481 -#: ../../addon/cart/manual_payments.php:62 -msgid "Invalid channel" -msgstr "El canal és invàlid" - -#: ../../Zotlabs/Module/Wiki.php:124 -msgid "Error retrieving wiki" -msgstr "S'ha produït un error en carregar la wiki" - -#: ../../Zotlabs/Module/Wiki.php:131 -msgid "Error creating zip file export folder" -msgstr "S'ha produït un error en crear la carpeta per al fitxer comprimit d'exportació" - -#: ../../Zotlabs/Module/Wiki.php:182 -msgid "Error downloading wiki: " -msgstr "S'ha produït un error en descarregar la wiki:" - -#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1937 -#: ../../include/nav.php:486 -msgid "Wikis" -msgstr "Wikis" - -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Download" -msgstr "Descarrega" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 -msgid "Create New" -msgstr "Crear Nou" - -#: ../../Zotlabs/Module/Wiki.php:207 -msgid "Wiki name" -msgstr "Nom de la wiki" - -#: ../../Zotlabs/Module/Wiki.php:208 -msgid "Content type" -msgstr "Llenguatge de formatació" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 -#: ../../include/text.php:1886 -msgid "Markdown" -msgstr "Markdown" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1884 -msgid "BBcode" -msgstr "BBCode" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1887 -msgid "Text" -msgstr "Cap (text pla)" - -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:286 -msgid "Type" -msgstr "Tipus" - -#: ../../Zotlabs/Module/Wiki.php:211 -msgid "Any type" -msgstr "Qualsevol" - -#: ../../Zotlabs/Module/Wiki.php:218 -msgid "Lock content type" -msgstr "Bloca el llenguatge de formatació" - -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Create a status post for this wiki" -msgstr "Crea una entrada d'estat per aquesta wiki" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Edit Wiki Name" -msgstr "Canvia el nom de la wiki" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "Wiki not found" -msgstr "No s'ha trobat la wiki" - -#: ../../Zotlabs/Module/Wiki.php:286 -msgid "Rename page" -msgstr "Canvia el nom de la pàgina" - -#: ../../Zotlabs/Module/Wiki.php:307 -msgid "Error retrieving page content" -msgstr "S'ha produït un error en carregar el contingut de la pàgina" - -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 -msgid "New page" -msgstr "Crea una pàgina nova" - -#: ../../Zotlabs/Module/Wiki.php:345 -msgid "Revision Comparison" -msgstr "Comparació de revisió" - -#: ../../Zotlabs/Module/Wiki.php:346 -msgid "Revert" -msgstr "Reverteix" - -#: ../../Zotlabs/Module/Wiki.php:353 -msgid "Short description of your changes (optional)" -msgstr "Descripció curta dels canvis (opcional)" - -#: ../../Zotlabs/Module/Wiki.php:362 -msgid "Source" -msgstr "Font" - -#: ../../Zotlabs/Module/Wiki.php:372 -msgid "New page name" -msgstr "Nou nom de pàgina" - -#: ../../Zotlabs/Module/Wiki.php:377 -msgid "Embed image from photo albums" -msgstr "Embeu una imatge dels àlbums de fotos" - -#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1396 -msgid "Embed an image from your albums" -msgstr "Embeu una imatge dels teus àlbums" - -#: ../../Zotlabs/Module/Wiki.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:400 -#: ../../include/conversation.php:1398 ../../include/conversation.php:1445 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:401 -#: ../../include/conversation.php:1327 -msgid "Choose images to embed" -msgstr "Tria una imatge per a embeure-la" - -#: ../../Zotlabs/Module/Wiki.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:402 -#: ../../include/conversation.php:1328 -msgid "Choose an album" -msgstr "Tria un àlbum" - -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:403 -msgid "Choose a different album" -msgstr "Escull un àlbum diferent" - -#: ../../Zotlabs/Module/Wiki.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:404 -#: ../../include/conversation.php:1330 -msgid "Error getting album list" -msgstr "Ha ocorregut un error quan treia la llista de àlbums" - -#: ../../Zotlabs/Module/Wiki.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:405 -#: ../../include/conversation.php:1331 -msgid "Error getting photo link" -msgstr "Ha ocorregut un error quan treia l'enllaç a la foto" - -#: ../../Zotlabs/Module/Wiki.php:386 -#: ../../Zotlabs/Module/Profile_photo.php:472 -#: ../../Zotlabs/Module/Cover_photo.php:406 -#: ../../include/conversation.php:1332 -msgid "Error getting album" -msgstr "Ha ocorregut un error treient l'àlbum" - -#: ../../Zotlabs/Module/Wiki.php:462 -msgid "Error creating wiki. Invalid name." -msgstr "S'ha produït un error en crear la wiki. El nom no és vàlid." - -#: ../../Zotlabs/Module/Wiki.php:469 -msgid "A wiki with this name already exists." -msgstr "Ja existeix una wiki amb aquest nom." - -#: ../../Zotlabs/Module/Wiki.php:482 -msgid "Wiki created, but error creating Home page." -msgstr "S'ha creat la wiki, però s'ha produït un error en crear-ne la pàgina principal." - -#: ../../Zotlabs/Module/Wiki.php:489 -msgid "Error creating wiki" -msgstr "S'ha produït un error en crear la wiki" - -#: ../../Zotlabs/Module/Wiki.php:512 -msgid "Error updating wiki. Invalid name." -msgstr "S'ha produït un error en actualitzar la wiki. El nom no és vàlid." - -#: ../../Zotlabs/Module/Wiki.php:532 -msgid "Error updating wiki" -msgstr "S'ha produït un error en actualitzar la wiki" - -#: ../../Zotlabs/Module/Wiki.php:547 -msgid "Wiki delete permission denied." -msgstr "No tens permís per a eliminar la wiki" - -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error deleting wiki" -msgstr "S'ha produït un error en eliminar la wiki" - -#: ../../Zotlabs/Module/Wiki.php:590 -msgid "New page created" -msgstr "S'ha desat la nova pàgina" - -#: ../../Zotlabs/Module/Wiki.php:711 -msgid "Cannot delete Home" -msgstr "No es pot esborrar la pàgina principal" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Current Revision" -msgstr "Revisió actual" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Selected Revision" -msgstr "Revisió seleccionada" - -#: ../../Zotlabs/Module/Wiki.php:825 -msgid "You must be authenticated." -msgstr "Has d'estar autenticat." - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "commuta el mode de pantalla completa" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "S'ha actualitzat el disseny." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Funcionalitat desactivada." - -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripció de Pàgines" - -#: ../../Zotlabs/Module/Pdledit.php:68 -msgid "(modified)" -msgstr "(modificat)" - -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Reajustar" - -#: ../../Zotlabs/Module/Pdledit.php:85 -msgid "Layout not found." -msgstr "No s'ha trobat cap disseny de pàgina." - -#: ../../Zotlabs/Module/Pdledit.php:91 -msgid "Module Name:" -msgstr "Nom del mòdul:" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout Help" -msgstr "Ajuda per al disseny de pàgina" - -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Edit another layout" -msgstr "Modifica un altre disseny" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "System layout" -msgstr "Disseny del sistema" - -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:316 -#: ../../include/conversation.php:1097 -msgid "Poke" -msgstr "Esperonar" - -#: ../../Zotlabs/Module/Poke.php:183 -msgid "Poke somebody" -msgstr "Emprenyar algú" - -#: ../../Zotlabs/Module/Poke.php:186 -msgid "Poke/Prod" -msgstr "Esperonat/Picat" - -#: ../../Zotlabs/Module/Poke.php:187 -msgid "Poke, prod or do other things to somebody" -msgstr "emprenyar, picar o fer altres coses a algú" - -#: ../../Zotlabs/Module/Poke.php:194 -msgid "Recipient" -msgstr "Destinatari" - -#: ../../Zotlabs/Module/Poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el destinatari" - -#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 -msgid "Make this post private" -msgstr "Fer aquesta entrada privada" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:57 -msgid "Image uploaded but image cropping failed." -msgstr "S'ha pujat la imatge però no s'ha pogut retallar." - -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:741 -msgid "Profile Photos" -msgstr "Fotos del Perfil" - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:191 -msgid "Image resize failed." -msgstr "No s'ha pogut escalar la imatge." - -#: ../../Zotlabs/Module/Profile_photo.php:218 -#: ../../addon/openclipatar/openclipatar.php:298 -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:225 -#: ../../Zotlabs/Module/Cover_photo.php:205 ../../include/photos.php:196 -msgid "Unable to process image" -msgstr "incapaç de processar la imatge" - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:229 -msgid "Image upload failed." -msgstr "La pujada de la imatge va fracassar." - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:246 -msgid "Unable to process image." -msgstr "Incapaç de processar l'imatge." - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:339 -#: ../../Zotlabs/Module/Cover_photo.php:354 -msgid "Photo not available." -msgstr "Foto no disponible." - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" -msgstr "La teva foto de perfil predeterminada és pública i visible per a tothom. Les fotos de perfil dels perfils alternatius hereten els permisos del seu perfil." - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." -msgstr "La teva foto de perfil és pública i visible a tothom, i és probable que s'escampi per altres webs." - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:392 -msgid "Upload File:" -msgstr "Puja Arxiu:" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Select a profile:" -msgstr "Tria un perfil:" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use Photo for Profile" -msgstr "Fes servir la foto per al perfil" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Change Profile Photo" -msgstr "Canvia la imatge de perfil" - -#: ../../Zotlabs/Module/Profile_photo.php:459 -msgid "Use" -msgstr "Aplica" - -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Cover_photo.php:397 -#: ../../Zotlabs/Module/Cover_photo.php:398 -msgid "Use a photo from your albums" -msgstr "Agafa una foto dels àlbums" - -#: ../../Zotlabs/Module/Profile_photo.php:474 -#: ../../Zotlabs/Module/Cover_photo.php:409 -msgid "Select existing photo" -msgstr "Tria una foto existent" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:426 -msgid "Crop Image" -msgstr "Retalla Imatge" - -#: ../../Zotlabs/Module/Profile_photo.php:494 -#: ../../Zotlabs/Module/Cover_photo.php:427 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Si us plau, retalla la imatge per a una optima visualització" - -#: ../../Zotlabs/Module/Profile_photo.php:496 -#: ../../Zotlabs/Module/Cover_photo.php:429 -msgid "Done Editing" -msgstr "Edició Feta" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "Absent" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "En connexió" - -#: ../../Zotlabs/Module/Item.php:194 -msgid "Unable to locate original post." -msgstr "No s'ha pogut trobar l'entrada original." - -#: ../../Zotlabs/Module/Item.php:477 -msgid "Empty post discarded." -msgstr "S'ha descartat l'entrada perquè no té contingut." - -#: ../../Zotlabs/Module/Item.php:864 -msgid "Duplicate post suppressed." -msgstr "Publicació duplicada s'ha suprimit." - -#: ../../Zotlabs/Module/Item.php:1009 -msgid "System error. Post not saved." -msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." - -#: ../../Zotlabs/Module/Item.php:1045 -msgid "Your comment is awaiting approval." -msgstr "El teu comentari encara no ha estat aprovat." - -#: ../../Zotlabs/Module/Item.php:1162 -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:1191 -#, 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:1198 -#, 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/Ping.php:332 -msgid "sent you a private message" -msgstr "Se t'ha enviat un missatge privat" - -#: ../../Zotlabs/Module/Ping.php:385 -msgid "added your channel" -msgstr "el teu canal s'ha afegit" - -#: ../../Zotlabs/Module/Ping.php:409 -msgid "requires approval" -msgstr "requereix aprovació" - -#: ../../Zotlabs/Module/Ping.php:419 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:437 -msgid "[today]" -msgstr "[avui]" - -#: ../../Zotlabs/Module/Ping.php:446 -msgid "posted an event" -msgstr "enviat un esdeveniment" - -#: ../../Zotlabs/Module/Ping.php:479 -msgid "shared a file with you" -msgstr "ha compartit un fitxer amb tu" - -#: ../../Zotlabs/Module/Ping.php:654 -msgid "Private forum" -msgstr "Fòrum privat" - -#: ../../Zotlabs/Module/Ping.php:654 -msgid "Public forum" -msgstr "Fòrum públic" - -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." -msgstr "Article invàlid." - -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 -#: ../../Zotlabs/Module/Display.php:175 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 -#: ../../include/help.php:81 -msgid "Page not found." -msgstr "Pàgina no trobada." - -#: ../../Zotlabs/Module/Page.php:173 -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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 -msgid "Could not access contact record." -msgstr "No s'ha pogut accedir al llibre de contactes." - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "No s'ha trobat el perfil indicat." - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "S'ha actualitzat la connexió." - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "No s'ha pogut actualitzar el registre de connexió." - -#: ../../Zotlabs/Module/Connedit.php:302 -msgid "is now connected to" -msgstr "Ara està conectat amb" - -#: ../../Zotlabs/Module/Connedit.php:427 -msgid "Could not access address book record." -msgstr "No puc accedir al registre del contacte" - -#: ../../Zotlabs/Module/Connedit.php:475 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Ha fallat la recàrrega - el canal es actualment inaccesible." - -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 -msgid "Unable to set address book parameters." -msgstr "No es poden ajustar els paràmetres dels contactes." - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Connection has been removed." -msgstr "S'han eliminat les conexions." - -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:309 -#: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1037 ../../include/nav.php:108 -msgid "View Profile" -msgstr "Mostra el meu perfil" - -#: ../../Zotlabs/Module/Connedit.php:597 -#, php-format -msgid "View %s's profile" -msgstr "Mostra el perfil de %s" - -#: ../../Zotlabs/Module/Connedit.php:601 -msgid "Refresh Permissions" -msgstr "Recarrega els Permissos" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Fetch updated permissions" -msgstr "Obté els permisos actualitzats" - -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Photo" -msgstr "Recarrega la foto" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated photo" -msgstr "Demana la nova foto al servidor" - -#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1047 -msgid "Recent Activity" -msgstr "Activitat Recent" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "View recent posts and comments" -msgstr "Mostra les entrades i comentaris recents" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió" - -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "This connection is blocked!" -msgstr "Aquesta connexió està bloquejada!" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Unignore" -msgstr "Inhabilita" - -#: ../../Zotlabs/Module/Connedit.php:633 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió" - -#: ../../Zotlabs/Module/Connedit.php:634 -msgid "This connection is ignored!" -msgstr "Aquesta connexió es ignorada!" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Unarchive" -msgstr "Desarxiva" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Archive" -msgstr "Arxiva" - -#: ../../Zotlabs/Module/Connedit.php:641 -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:642 -msgid "This connection is archived!" -msgstr "Aquesta connexió està arxivada!" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Unhide" -msgstr "Mostra" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Hide" -msgstr "Amaga" - -#: ../../Zotlabs/Module/Connedit.php:649 -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:650 -msgid "This connection is hidden!" -msgstr "Aquesta connexió està amagada!" - -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "Delete this connection" -msgstr "Elimina aquesta connexió" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Fetch Vcard" -msgstr "Obté la targeta de contacte Vcard" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Fetch electronic calling card for this connection" -msgstr "Obté la targeta de trucada electrònica d'aquesta connexió" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Open Individual Permissions section by default" -msgstr "Obrir, per defecte, la secció de Permisos Individuals" - -#: ../../Zotlabs/Module/Connedit.php:702 -msgid "Affinity" -msgstr "Afinitat" - -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Open Set Affinity section by default" -msgstr "Obre per defecte la barra d'afinitat" - -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 -msgid "Me" -msgstr "Jo" - -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 -msgid "Family" -msgstr "Família" - -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 -msgid "Acquaintances" -msgstr "Coneguts" - -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "Filter" -msgstr "Filtre" - -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Open Custom Filter section by default" -msgstr "Obrir, per defecte, la secció de Filtres a Mida" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Approve this connection" -msgstr "Apccepta aquesta connexió" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Accept connection to allow communication" -msgstr "Accepta la connexió per permetre la comunicació" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Set Affinity" -msgstr "Ajusta l'Afinitat" - -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Set Profile" -msgstr "Ajusta el Perfil" - -#: ../../Zotlabs/Module/Connedit.php:790 -msgid "Set Affinity & Profile" -msgstr "Ajusta Afinitat i Perfil" - -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This connection is unreachable from this location." -msgstr "Aquesta connexió no és accessible des d'aquest hub." - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "This connection may be unreachable from other channel locations." -msgstr "Aquesta connexió no és accessibles des d'altres hubs del canal." - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Location independence is not supported by their network." -msgstr "La xarxa d'aquesta connexió no és compatible amb la independència de hub." - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "Aquesta connexió no és accessible des d'aquest hub. La seva xarxa no és compatible amb la independència de hub." - -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -#: ../../Zotlabs/Widget/Settings_menu.php:117 -msgid "Connection Default Permissions" -msgstr "Permisos per Defecte de la Connexió" - -#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4158 -#, php-format -msgid "Connection: %s" -msgstr "Connexió: %s" - -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 -msgid "Apply these permissions automatically" -msgstr "Aplica aquests permissos automaticament" - -#: ../../Zotlabs/Module/Connedit.php:851 -msgid "Connection requests will be approved without your interaction" -msgstr "Les peticions de connexió seran aprovades sense la teva interacció" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -msgid "Permission role" -msgstr "Permisos de rol" - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 -msgid "Add permission role" -msgstr "Afegir permisos de rol" - -#: ../../Zotlabs/Module/Connedit.php:860 -msgid "This connection's primary address is" -msgstr "La primera adreça d'aqueste connexió es" - -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Available locations:" -msgstr "Localització disponible:" - -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 -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:867 -msgid "Connection Tools" -msgstr "Eines de Connexió" - -#: ../../Zotlabs/Module/Connedit.php:869 -msgid "Slide to adjust your degree of friendship" -msgstr "Llisca per ajustar el nivell d'amistat" - -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valora" - -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Slide to adjust your rating" -msgstr "Llisca per ajustar la valoració" - -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 -msgid "Optionally explain your rating" -msgstr "Opcionalment pots explicar la teva valoració" - -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Custom Filter" -msgstr "Filtre a mida" - -#: ../../Zotlabs/Module/Connedit.php:875 -msgid "Only import posts with this text" -msgstr "Importa exclusivament entrades amb aquest text" - -#: ../../Zotlabs/Module/Connedit.php:876 -msgid "Do not import posts with this text" -msgstr "No importar entrades amb aquest text" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "This information is public!" -msgstr "Aquesta informació es pública!" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Connection Pending Approval" -msgstr "Connexió Pendent d'Aprovació" - -#: ../../Zotlabs/Module/Connedit.php:888 -#, 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:895 -msgid "" -"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." -msgstr "Alguns permisos pot ser que vinguin heretats de la configuració de privacitat. del teu canal. Aquesta té més prioritat que les configuracions individuals. Pots canviar aquí aquests permisos però no tindran cap impacte mentre no canviï la configuració del teu canal." - -#: ../../Zotlabs/Module/Connedit.php:896 -msgid "Last update:" -msgstr "Darrera actualització:" - -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "Details" -msgstr "Detalls" - -#: ../../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 "Desa aquesta sala" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1322 -msgid "Please enter a link URL:" -msgstr "Si us plau entra l'enllaç URL:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:771 -#: ../../include/conversation.php:1443 -msgid "Encrypt text" -msgstr "Text encriptat" - -#: ../../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:250 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s de Xats" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "No chatrooms available" -msgstr "No hi ha sales de xat disponibles" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "Expiration" -msgstr "Expiració" - -#: ../../Zotlabs/Module/Chat.php:260 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:310 -#: ../../include/conversation.php:1843 ../../include/nav.php:393 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:305 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1851 -#: ../../include/nav.php:401 -msgid "Files" -msgstr "Arxius" - -#: ../../Zotlabs/Module/Menu.php:67 -msgid "Unable to update menu." -msgstr "No s'ha pogut actualitzar el menú." - -#: ../../Zotlabs/Module/Menu.php:78 -msgid "Unable to create menu." -msgstr "No s'ha pogut crear el menú." - -#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 -msgid "Menu Name" -msgstr "Nom del menú" - -#: ../../Zotlabs/Module/Menu.php:160 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom únic (no visible a la pàgina web) - requerit" - -#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 -msgid "Menu Title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:161 -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:162 -msgid "Allow Bookmarks" -msgstr "Activa els marcadors" - -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú es pot emprar per a desar marcadors" - -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 -msgid "Submit and proceed" -msgstr "Envia i procedeix" - -#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2459 -msgid "Menus" -msgstr "Menús" - -#: ../../Zotlabs/Module/Menu.php:180 -msgid "Bookmarks allowed" -msgstr "Marcadors permesos" - -#: ../../Zotlabs/Module/Menu.php:182 -msgid "Delete this menu" -msgstr "Esborra el menú" - -#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 -msgid "Edit menu contents" -msgstr "Edita el contingut del menú" - -#: ../../Zotlabs/Module/Menu.php:184 -msgid "Edit this menu" -msgstr "Edita el menú" - -#: ../../Zotlabs/Module/Menu.php:200 -msgid "Menu could not be deleted." -msgstr "El menu no es pot esborrar." - -#: ../../Zotlabs/Module/Menu.php:213 -msgid "Edit Menu" -msgstr "Edita Menú" - -#: ../../Zotlabs/Module/Menu.php:217 -msgid "Add or remove entries to this menu" -msgstr "Afegeix o esborra entrades a aquest menú" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Menu name" -msgstr "Nom del Menú" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Must be unique, only seen by you" -msgstr "Ha de ser únic, nomes vist per tú" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title" -msgstr "Títol del menú" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title as seen by others" -msgstr "Títol del menú vist pels altres" - -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Allow bookmarks" -msgstr "Activa els marcadors" - -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2460 -msgid "Layouts" -msgstr "Dissenys" - -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:313 -#: ../../include/nav.php:170 ../../include/nav.php:272 -#: ../../include/help.php:68 ../../include/help.php:74 -msgid "Help" -msgstr "Ajuda" - -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" -msgstr "Pgina d'ajuda del llenguatge Comanche" - -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" -msgstr "Descripció del disseny pàgina" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "Descarrega l'arxiu PDL" - -#: ../../Zotlabs/Module/Cloud.php:129 -msgid "Please refresh page" -msgstr "Recarrega la pàgina" - -#: ../../Zotlabs/Module/Cloud.php:132 -msgid "Unknown error" -msgstr "S'ha produït un error desconegut" - -#: ../../Zotlabs/Module/Email_validation.php:24 -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "Ha fallat la verificació del token." - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "Cal verificar el correu" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "S'ha enviat al teu correu (%s) un token de verificació. Introdueix-lo aquí per a completar la verificació del compte. Tingues en compte que el correu pot trigar uns minuts en arribar, i que hi ha proveïdors de correu que el classificaran com a correu brossa." - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "Torna a enviar el correu" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "Token de validació" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "No s'ha trobat l'entrada" - -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:354 -msgid "post" -msgstr "entrada" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2030 -msgid "comment" -msgstr "comentari" - -#: ../../Zotlabs/Module/Tagger.php:119 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetat %3$s de %2$s amb %4$s" - -#: ../../Zotlabs/Module/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 "Alerta: segons quines combinacions podrien deixar el teu canal inusable. No és recomanable canviar aquesta configuració si no ets sents còmode/ i segur/a de com fer servir aquesta funcionalitat." - -#: ../../Zotlabs/Module/Defperms.php:246 -msgid "Automatic approval settings" -msgstr "Aprovació automàtica de soŀlicituds de connexió" - -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "El valor per defecte dels permisos individuals poden tenir valors per defecte segons el tipus de canal i les opcions de privacitat. Pot ser que no estiguis autoritzat/da a modificar-los." - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "No es coneix l'aplicació" - -#: ../../Zotlabs/Module/Authorize.php:22 -msgid "Authorize" -msgstr "Autoritza" - -#: ../../Zotlabs/Module/Authorize.php:23 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "Vols autoritzar l'aplicació %s a accedir a les dades del teu canal?" - -#: ../../Zotlabs/Module/Authorize.php:25 -msgid "Allow" -msgstr "Permet-ho" - -#: ../../Zotlabs/Module/Group.php:35 -msgid "Privacy group created." -msgstr "S'ha creat el grup de privacitat." - -#: ../../Zotlabs/Module/Group.php:38 -msgid "Could not create privacy group." -msgstr "No s'ha pogut crear el grup de privacitat." - -#: ../../Zotlabs/Module/Group.php:51 ../../Zotlabs/Module/Group.php:181 -#: ../../include/items.php:4125 -msgid "Privacy group not found." -msgstr "No s'ha trobat el grup de privacitat." - -#: ../../Zotlabs/Module/Group.php:67 -msgid "Privacy group updated." -msgstr "S'ha actualitzat el grup de privacitat." - -#: ../../Zotlabs/Module/Group.php:113 ../../Zotlabs/Module/Group.php:124 -#: ../../Zotlabs/Widget/Activity_filter.php:68 ../../include/features.php:221 -#: ../../include/nav.php:97 ../../include/group.php:320 -msgid "Privacy Groups" -msgstr "Grup de privacitat" - -#: ../../Zotlabs/Module/Group.php:114 -msgid "Add Group" -msgstr "Afegeix un grup" - -#: ../../Zotlabs/Module/Group.php:118 -msgid "Privacy group name" -msgstr "Nom del grup de privacitat" - -#: ../../Zotlabs/Module/Group.php:119 ../../Zotlabs/Module/Group.php:220 -msgid "Members are visible to other channels" -msgstr "Els membres son visibles en altres canals" - -#: ../../Zotlabs/Module/Group.php:126 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "Membres" - -#: ../../Zotlabs/Module/Group.php:151 -msgid "Privacy group removed." -msgstr "S'ha esborrat el grup de privacitat." - -#: ../../Zotlabs/Module/Group.php:153 -msgid "Unable to remove privacy group." -msgstr "No s'ha pogut esborrar el grup de privacitat." - -#: ../../Zotlabs/Module/Group.php:215 -#, php-format -msgid "Privacy Group: %s" -msgstr "Grup de privacitat: %s" - -#: ../../Zotlabs/Module/Group.php:217 -msgid "Privacy group name: " -msgstr "Nom del grup de privacitat:" - -#: ../../Zotlabs/Module/Group.php:222 -msgid "Delete Group" -msgstr "Esborra el grup" - -#: ../../Zotlabs/Module/Group.php:232 -msgid "Group members" -msgstr "Membres del grup" - -#: ../../Zotlabs/Module/Group.php:234 -msgid "Not in this group" -msgstr "No hi són al grup" - -#: ../../Zotlabs/Module/Group.php:266 -msgid "Click a channel to toggle membership" -msgstr "Fes clic a un canal per a ficar-lo o treure'l del grup" - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "Perfil no trobat." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminat." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "Nou perfil creat." - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "Perfil que no es pot clonar." - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Perfil que no es pot exportar." - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "Es requereix el Nom del Perfil." - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "Estat Marital" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "Company/a Romàntic" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "Agrada" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "Desagrada" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "Treball/Feina" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "Religió" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "Idees Polítiques" - -#: ../../Zotlabs/Module/Profiles.php:486 -#: ../../addon/openid/MysqlProvider.php:74 -msgid "Gender" -msgstr "Gènere" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "Preferència Sexual" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "Pàgina Personal" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "Interessos" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Perfil actualitzat." - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Amaga dels curiosos la teva llista de connexions d'aquest perfil" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "Modifica els detalls de perfil" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "Mostra aquest perfil" - -#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1319 -msgid "Edit visibility" -msgstr "Editar visibilitat" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "Eines per Perfils" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "Canviar la foto de portada" - -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 -msgid "Change profile photo" -msgstr "Canviar la foto del perfil" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "Crea un perfil nou amb aquesta configuració" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "Clonar aquest perfil" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "Elimina aquest perfil" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "Afegeix coses al perfil" - -#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1717 -msgid "Personal" -msgstr "Personal" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "Relació" - -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "Miscelania" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "Importa perfil des d'un arxiu" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "Exporta perfil a un arxiu" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "El teu gènere" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "Estat marital" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "Preferència sexual" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "Nom del perfil" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "Aquest es el teu perfil per defecte" - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "El teu nom complet" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "Títol/Descripció" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "Carrer" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "Població/Ciutat" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "Regió/Estat" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "Codi Postal" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "Qui (si es aplicable)" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Examples: cathy123, Cathy Williams, cathy@example.com" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "Des de (data)" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "Quelcom sobre tu" - -#: ../../Zotlabs/Module/Profiles.php:767 -#: ../../addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" -msgstr "URL de la pàgina d'inici" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "Ciutat Natal" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "Idees polítiques" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "Creences religioses" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "Paraules clau emprades en els llistats de directoris" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "Exemple: software de fotografia submarina" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "Interessos Musicals" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "Llibres, literatura" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "Televisió" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Pel·lícules/Dansa/Cultura/Entreteniment" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "Aficions/Interessos" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "Amor/Romace" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "Escola/Educació" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "Informació de contacte i xarxes socials" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "Els meus altres canals" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "Comunicacions" - -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 -msgid "Profile Image" -msgstr "Imatge del Perfil" - -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 -#: ../../include/nav.php:111 -msgid "Edit Profiles" -msgstr "Modifica els perfils" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "Aquesta pàgina només és accessible per als membres del node." - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "Benvingut/da" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "Què t'agradaria fer?" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "Marca aquesta pàgina si vols tornar-hi en un futur" - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "Puja una imatge de perfil" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "Puja una imatge de portada" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "Modifica el teu perfil per defecte" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 -msgid "View friend suggestions" -msgstr "Mostra suggerències de connexions" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "Mostra el directori del canal" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "Mostra o modifica la configuració del teu canal" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "Mostra la documentació del projecte" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "Ves a la pàgina del teu canal" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "Mostra les teves connexions o afegeix-ne una de nova introduint la seva adreça a mà." - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "Mostra el teu flux personal. Estarà buit mentre no et connectis amb ningú." - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "Mostra el flux públic. Avís: aquest contingut no està moderat" - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "Enllaç de la pàgina" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "Edita la Pàgina Web" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "Crear un nou canal" - -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:302 -#: ../../include/nav.php:94 -msgid "Channel Manager" -msgstr "Gestor de canals" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "Canal Actual" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "Canviar a un altre dels teus canals seleccionant-ho." - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "Canal per Defecte" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "Estableix com a Predeterminat" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "%d missatges nous" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "%d noves presentacions" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "Canal Delegat" - -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -#: ../../Zotlabs/Lib/Apps.php:293 ../../include/conversation.php:1902 -#: ../../include/features.php:123 ../../include/nav.php:450 -msgid "Cards" -msgstr "Targetes" - -#: ../../Zotlabs/Module/Cards.php:99 -msgid "Add Card" -msgstr "Afegeix una carta" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Aquest servidor de directori requereix un token de accès" - -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "About this site" -msgstr "Sobre aquest lloc web" - -#: ../../Zotlabs/Module/Siteinfo.php:22 -msgid "Site Name" -msgstr "Nom del lloc web" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Administrator" -msgstr "Administrador" - -#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:241 -msgid "Terms of Service" -msgstr "Condicions del Servei" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "Software and Project information" -msgstr "Informació del programari i del projecte" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "This site is powered by $Projectname" -msgstr "Aquest lloc web funciona amb $Projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "Els serveis d'identitat i la federació i descentralització de la xarxa funcionen amb Zot" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Additional federated transport protocols:" -msgstr "Altres protocols de transport federats:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -#, php-format -msgid "Version %s" -msgstr "Versió %s" - -#: ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Project homepage" -msgstr "Pàgina principal del projecte" - -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Developer homepage" -msgstr "Pàgina principal de desenvolupament" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "No valorat" - -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1087 -msgid "Ratings" -msgstr "Valoracions" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valoració:" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descripció:" - -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import Webpage Elements" -msgstr "Importa elements de pàgina web" - -#: ../../Zotlabs/Module/Webpages.php:55 -msgid "Import selected" -msgstr "Importa la selecció" - -#: ../../Zotlabs/Module/Webpages.php:78 -msgid "Export Webpage Elements" -msgstr "Exporta elements de pàgina web" - -#: ../../Zotlabs/Module/Webpages.php:79 -msgid "Export selected" -msgstr "Exporta la selecció" - -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:306 -#: ../../include/conversation.php:1924 ../../include/nav.php:473 -msgid "Webpages" -msgstr "Pàgines web" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Actions" -msgstr "Accions" - -#: ../../Zotlabs/Module/Webpages.php:249 -msgid "Page Link" -msgstr "Enllaç a Pàgina" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Títol de la pàgina" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "El tipus de fitxer és invàlid." - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Hi ha hagut un error descomprimint" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "El camí de carpeta és invàlid." - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "No s'ha detectat cap element de pàgina web." - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "S'ha completat la importació." - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account" -" password." -msgstr "No es permet canviar el nom d'un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al que pertany." - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 -#: ../../include/channel.php:599 -msgid "Reserved nickname. Please choose another." -msgstr "Àlies reservat. Tria un altre." - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 -#: ../../include/channel.php:604 -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" - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "Canvia el nom o adreça del canal" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "Es perdran totes les connexions amb xarxes externes!" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "Adreça de canal nova" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "Canvia el nom del canal" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "Article no editable" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "Modifica l'entrada" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "Missatge invàlid." - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "sense resultats" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "sincronització del canal processada" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "Posat en cua" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "enviat" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "acceptat per entregar" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "actualitzat" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "actualització ignorada" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "permís denegat" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "Contenidor no trobat" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "Recupera el correu" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "rebut correu duplicat" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "correu entregat" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de lliurament per %1$s" - -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Options" -msgstr "Opcions" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "Tornar a lliurar" - -#: ../../Zotlabs/Module/Sources.php:38 -msgid "Failed to create source. No channel selected." -msgstr "Error en crear l'origen. Cap canal seleccionat." - -#: ../../Zotlabs/Module/Sources.php:54 -msgid "Source created." -msgstr "Origen creat." - -#: ../../Zotlabs/Module/Sources.php:67 -msgid "Source updated." -msgstr "Origen actualitzat." - -#: ../../Zotlabs/Module/Sources.php:93 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:99 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 -msgid "Channel Sources" -msgstr "Canal Origen" - -#: ../../Zotlabs/Module/Sources.php:100 -msgid "Manage remote sources of content for your channel." -msgstr "Gestiona contingut per al teu canal d'origens remots" - -#: ../../Zotlabs/Module/Sources.php:101 ../../Zotlabs/Module/Sources.php:111 -msgid "New Source" -msgstr "Nou Origen" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:146 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa-ho tot o només allò seleccionat del següent canals, cap a aquest canal, i distribueix-lo d'acord a la configuració del teu canal." - -#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 -msgid "Only import content with these words (one per line)" -msgstr "Només importa contingut amb aquestes paraules (una per línia)" - -#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 -msgid "Leave blank to import all public content" -msgstr "Deixar en blanc per importar tot el contingut públic" - -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:153 -msgid "Channel Name" -msgstr "Nom del canal" - -#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Afegeix les següents categories d'entrades importades des d'aquest origen (separat per comes)" - -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -msgid "Resend posts with this channel as author" -msgstr "Reenvia les entrades que tinguin aquest canal com a autor/a" - -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -msgid "Copyrights may apply" -msgstr "Poden aplicar drets d'autor" - -#: ../../Zotlabs/Module/Sources.php:136 ../../Zotlabs/Module/Sources.php:166 -msgid "Source not found." -msgstr "No s'ha trobat la font." - -#: ../../Zotlabs/Module/Sources.php:143 -msgid "Edit Source" -msgstr "Edita la font" - -#: ../../Zotlabs/Module/Sources.php:144 -msgid "Delete Source" -msgstr "Esborra la font" - -#: ../../Zotlabs/Module/Sources.php:174 -msgid "Source removed" -msgstr "S'ha esborrat la font" - -#: ../../Zotlabs/Module/Sources.php:176 -msgid "Unable to remove source." -msgstr "No s'ha pogut esborrar la font." - -#: ../../Zotlabs/Module/Like.php:54 -msgid "Like/Dislike" -msgstr "M'agrada / No m'agrada" - -#: ../../Zotlabs/Module/Like.php:59 -msgid "This action is restricted to members." -msgstr "Aquesta acció està restringida als membres." - -#: ../../Zotlabs/Module/Like.php:60 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Entra amb la teva identitat $Projectname o registra't a $Projectname per continuar." - -#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 -msgid "Invalid request." -msgstr "Sol·licitud invàlida." - -#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 -msgid "channel" -msgstr "canal" - -#: ../../Zotlabs/Module/Like.php:150 -msgid "thing" -msgstr "cosa" - -#: ../../Zotlabs/Module/Like.php:196 -msgid "Channel unavailable." -msgstr "El canal està inactiu." - -#: ../../Zotlabs/Module/Like.php:244 -msgid "Previous action reversed." -msgstr "S'ha desfet l'acció anterior." - -#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1559 -#: ../../addon/pubcrawl/as.php:1544 ../../include/conversation.php:160 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s agrada %2$s de %3$s" - -#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1546 -#: ../../include/conversation.php:163 -#, 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:442 -#, 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:444 -#, 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:446 -#, 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:448 ../../addon/diaspora/Receiver.php:2102 -#, 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:450 ../../addon/diaspora/Receiver.php:2104 -#, 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:452 ../../addon/diaspora/Receiver.php:2106 -#, 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:564 -msgid "Action completed." -msgstr "S'ha completat l'acció." - -#: ../../Zotlabs/Module/Like.php:565 -msgid "Thank you." -msgstr "Gràcies." - -#: ../../Zotlabs/Module/Directory.php:106 -msgid "No default suggestions were found." -msgstr "No s'han trobat suggerències predefinides." - -#: ../../Zotlabs/Module/Directory.php:255 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoració" -msgstr[1] "%d valoracions" - -#: ../../Zotlabs/Module/Directory.php:266 -msgid "Gender: " -msgstr "Gènere:" - -#: ../../Zotlabs/Module/Directory.php:268 -msgid "Status: " -msgstr "Estatus:" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Homepage: " -msgstr "Pàgina Personal:" - -#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 -msgid "Age:" -msgstr "Edat:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 -#: ../../include/event.php:54 ../../include/event.php:86 -msgid "Location:" -msgstr "Localització:" - -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Description:" -msgstr "Descripció:" - -#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 -msgid "Hometown:" -msgstr "Ciutat Natal:" - -#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 -msgid "About:" -msgstr "Sobre:" - -#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1057 ../../include/channel.php:1376 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "Connecta " - -#: ../../Zotlabs/Module/Directory.php:339 -msgid "Public Forum:" -msgstr "Forum Públic:" - -#: ../../Zotlabs/Module/Directory.php:342 -msgid "Keywords: " -msgstr "Paraules Clau:" - -#: ../../Zotlabs/Module/Directory.php:345 -msgid "Don't suggest" -msgstr "No suggerir" - -#: ../../Zotlabs/Module/Directory.php:347 -msgid "Common connections (estimated):" -msgstr "Connexions en comú (aproximades):" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Global Directory" -msgstr "Directori Global" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Local Directory" -msgstr "Directori Local" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Finding:" -msgstr "Cercant:" - -#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canals Suggerits" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "next page" -msgstr "pàgina següent" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "previous page" -msgstr "pàgina anterior" - -#: ../../Zotlabs/Module/Directory.php:408 -msgid "Sort options" -msgstr "Opcions per ordenar" - -#: ../../Zotlabs/Module/Directory.php:409 -msgid "Alphabetic" -msgstr "Alfabètic" - -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Reverse Alphabetic" -msgstr "Alfabètic Invers" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "Newest to Oldest" -msgstr "De més Nou a més Vell" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Oldest to Newest" -msgstr "De més Antic a més Nou" - -#: ../../Zotlabs/Module/Directory.php:429 -msgid "No entries (some entries may be hidden)." -msgstr "Sense entrades (algunes podrien estar amagades)." - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Cerca a xchan" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca a xchan començant per (o webbie)" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "Ignora/Amaga" - -#: ../../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/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "Incapaç de trobar el destinatari." - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "Incapaç de comunicar amb el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "No puc verificar el canal demanat." - -#: ../../Zotlabs/Module/Mail.php:105 -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:160 -msgid "Messages" -msgstr "Missatges" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "missatge" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "Recupera el missatge." - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "Conversació eliminada." - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expira YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "El canal demanat no hi es en questa xarxa" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "Envia Missatge Privat" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "Per:" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "Assumpte:" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -msgid "Attach file" -msgstr "Adjunta arxiu" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "Envia" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1438 -msgid "Set expiration date" -msgstr "Ajusta la data d'expiració" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "Elimina el missatge" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "Informe d'entrega" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "Recupera el missatge" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "El missatge s'ha recuperat." - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "Conversació esborrada" - -#: ../../Zotlabs/Module/Mail.php:416 -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:420 -msgid "Send Reply" -msgstr "Envia Resposta" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "El teu missatge per %s (%s):" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "Nodes Públics" - -#: ../../Zotlabs/Module/Pubsites.php:27 -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:33 -msgid "Hub URL" -msgstr "URL del Node" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipus d'accés" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Condicions d'inscripció" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Estadístiques" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Programari" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "Puntua" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:269 -msgid "webpage" -msgstr "pàgina web" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:275 -msgid "block" -msgstr "bloc" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:272 -msgid "layout" -msgstr "disposició" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:278 -msgid "menu" -msgstr "menú" - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "%s element instal·lat" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "%s instal·lació d'element va fallar" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Tria una carpeta d'interès" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Desa el marcadors" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del marcador" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O introdueix el nom d'una carpeta de marcadors nova" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "Escriu el nom de la carpeta" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "o escull-ne una d'existent amb doble clic" - -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:162 -msgid "Save to Folder" -msgstr "Guardar en la Carpeta" - -#: ../../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/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Les contrasenyes no coincideixen." - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "S'ha registrat el compte amb èxit. Ara pots crear el teu primer canal..." - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació." - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "La teva inscripció esta pendent de validació pel propietari del lloc." - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "La teva inscripció no ha pogut ser processat. " - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "L'inscripció en aquest node està deshabilitat." - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "L'inscripció en aquest node es únicament per validació." - -#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 -msgid "Register at another affiliated hub." -msgstr "Inscripció en altre node afiliat" - -#: ../../Zotlabs/Module/Register.php:210 -msgid "Registration on this hub is by invitation only." -msgstr "El registre en aquest node funciona per invitació." - -#: ../../Zotlabs/Module/Register.php:221 -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à." - -#: ../../Zotlabs/Module/Register.php:247 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accepto el %s per a aquest lloc web" - -#: ../../Zotlabs/Module/Register.php:254 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "Tinc més de %s anys i accepto les %s" - -#: ../../Zotlabs/Module/Register.php:259 -msgid "Your email address" -msgstr "La teva adreça de correu electrónic" - -#: ../../Zotlabs/Module/Register.php:260 -msgid "Choose a password" -msgstr "Tria una contrasenya" - -#: ../../Zotlabs/Module/Register.php:261 -msgid "Please re-enter your password" -msgstr "Si et plau, re-entra la contrasenya" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "Please enter your invitation code" -msgstr "Si et plau, introdueix el teu codi d'invitació" - -#: ../../Zotlabs/Module/Register.php:263 -msgid "Your Name" -msgstr "El teu nom" - -#: ../../Zotlabs/Module/Register.php:263 -msgid "Real names are preferred." -msgstr "Considera de fer servir el teu nom real." - -#: ../../Zotlabs/Module/Register.php:265 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "El teu àlies servirà per crear un nom fàcil per recordar l'adreça del canal. Per exemple, àlies%s" - -#: ../../Zotlabs/Module/Register.php:266 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges." - -#: ../../Zotlabs/Module/Register.php:267 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:267 -msgid "yes" -msgstr "sí" - -#: ../../Zotlabs/Module/Register.php:294 ../../boot.php:1593 -#: ../../include/nav.php:158 -msgid "Register" -msgstr "Inscripció" - -#: ../../Zotlabs/Module/Register.php:295 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Aquest node demana que es verifiquin els comptes de correu. Un cop completat el formulari, comprova la teva safata d'entrada i segueix les instruccions que hi trobaràs." - -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Cover_photo.php:218 -msgid "Cover Photos" -msgstr "Fotos de Portada" - -#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4502 -msgid "female" -msgstr "femení" - -#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4503 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s actualitzà el seu %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4504 -msgid "male" -msgstr "masculí" - -#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4505 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s actualitzà el seu %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4507 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s actualitzà els seus %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2081 -msgid "cover photo" -msgstr "Foto de la portada" - -#: ../../Zotlabs/Module/Cover_photo.php:390 -msgid "Your cover photo may be visible to anybody on the internet" -msgstr "La teva foto de portada és pública i visible a tothom." - -#: ../../Zotlabs/Module/Cover_photo.php:394 -msgid "Change Cover Photo" -msgstr "Canvia la foto de portada" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "Cerca de Documentació" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1833 -#: ../../include/nav.php:383 -msgid "About" -msgstr "El Meu Perfil" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "Administradors" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "Desenvolupadors" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "Tutorials" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "$Projectname Documentació" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "Continguts" - -#: ../../Zotlabs/Module/Display.php:394 -msgid "Article" -msgstr "Article" - -#: ../../Zotlabs/Module/Display.php:446 -msgid "Item has been removed." -msgstr "S'ha esborrat l'element." - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "S'ha tret l'etiqueta" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Elimina l'etiqueta d'element" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Tria l'etiqueta a eliminar:" - -#: ../../Zotlabs/Module/Network.php:116 -msgid "No such group" -msgstr "No existeix el grup" - -#: ../../Zotlabs/Module/Network.php:157 -msgid "No such channel" -msgstr "No existeix el canal" - -#: ../../Zotlabs/Module/Network.php:242 -msgid "Privacy group is empty" -msgstr "El grup de privacitat està buit" - -#: ../../Zotlabs/Module/Network.php:253 -msgid "Privacy group: " -msgstr "Grup de privacitat:" - -#: ../../Zotlabs/Module/Network.php:304 ../../addon/redred/redred.php:65 -msgid "Invalid channel." -msgstr "El canal no és vàlid." - -#: ../../Zotlabs/Module/Acl.php:359 -msgid "network" -msgstr "xarxa" - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" - -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." -msgstr "Permisos Denegats." - -#: ../../Zotlabs/Module/Filestorage.php:112 -msgid "File not found." -msgstr "Arxiu no torbat." - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Edit file permissions" -msgstr "Edita els permisos d'arxiu" - -#: ../../Zotlabs/Module/Filestorage.php:177 -msgid "Set/edit permissions" -msgstr "Canvia/edita permisos" - -#: ../../Zotlabs/Module/Filestorage.php:178 -msgid "Include all files and sub folders" -msgstr "Inclou tots als arxius i subdirectoris" - -#: ../../Zotlabs/Module/Filestorage.php:179 -msgid "Return to file list" -msgstr "Tornar al llistat d'arxius" - -#: ../../Zotlabs/Module/Filestorage.php:181 -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:182 -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:184 -msgid "Share this file" -msgstr "Comparteix l'arxiu" - -#: ../../Zotlabs/Module/Filestorage.php:185 -msgid "Show URL to this file" -msgstr "Mostra la URL d'aquest arxiu" - -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "Show in your contacts shared folder" -msgstr "Mostra les carpetes compartides dels teus contactes" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "No s'ha trobat el canal" - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "No hi ha connexions en comú." - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "Mostra les connexions en comú" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "S'ha tornat a enviar la verificació de orreu" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "No s'ha pogut tornar a enviar el correu de verificació." - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Sense connexions." - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita el perfil [%s] de %s" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "Veure Connexions" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "Comptes bloquejats" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "Comptes caducats" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "Comptes a punt de caducar" - -#: ../../Zotlabs/Module/Admin.php:116 -msgid "Clones" -msgstr "Clons" - -#: ../../Zotlabs/Module/Admin.php:122 -msgid "Message queues" -msgstr "Cues de missatges" - -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" -msgstr "El teu programari cal que s'actualitzi" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Summary" -msgstr "Sumari" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Registered accounts" -msgstr "Comptes registrades" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Pending registrations" -msgstr "Comptes pendents d'inscripció" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Registered channels" -msgstr "Canals registrats" - -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Active addons" -msgstr "Extensions actives" - -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Version" -msgstr "Versió" - -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Repository version (master)" -msgstr "Versió (master) del repositori" - -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (dev)" -msgstr "Versió (desenvolupament) del repositori" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No s'han trobat restriccions de clase." - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Lloc web:" - -#: ../../Zotlabs/Module/Rate.php:159 -#, 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:160 -msgid "Rating (this information is public)" -msgstr "Valoració (aquesta informació és pública)" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "Edita la targeta" - -#: ../../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:108 -#, php-format -msgid "Site Member (%s)" -msgstr "Lloc d'Usuari (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" - -#: ../../Zotlabs/Module/Lostpass.php:68 -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:91 ../../boot.php:1622 -msgid "Password Reset" -msgstr "Restabliment de contrasenya" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "S'ha restablert la vostra contrasenya." - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "La nova contrasenya és" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "Desa o copia la nova contrasenya, i després" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "fes clic aquí per iniciar sessió" - -#: ../../Zotlabs/Module/Lostpass.php:96 -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:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "La teva contrasenya a %s ha canviat" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "No recordes la contrasenya?" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "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:132 -msgid "Email Address" -msgstr "Adreça electrònica" - -#: ../../Zotlabs/Module/Notifications.php:60 -#: ../../Zotlabs/Lib/ThreadItem.php:413 -msgid "Mark all seen" -msgstr "Marca tot com ja vist" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "0. Bàsic, principiant" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "1. Novell - amb pocs coneixements però amb ganes d'aprendre" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "2. Intermedi - més o menys còmode" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "3. Avançat - molt còmode" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "4. Expert - puc escriure codi en algun llenguatge de programació" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "5. Ninja - probablement en sé més que tu" - -#: ../../Zotlabs/Lib/Apps.php:294 -msgid "Site Admin" -msgstr "Administració" - -#: ../../Zotlabs/Lib/Apps.php:295 ../../addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "Informa d'errors" - -#: ../../Zotlabs/Lib/Apps.php:296 -msgid "View Bookmarks" -msgstr "Marcadors" - -#: ../../Zotlabs/Lib/Apps.php:297 -msgid "My Chatrooms" -msgstr "Les meves Sales de Xat" - -#: ../../Zotlabs/Lib/Apps.php:299 -msgid "Remote Diagnostics" -msgstr "Diagnòstics Remots" - -#: ../../Zotlabs/Lib/Apps.php:300 ../../include/features.php:435 -msgid "Suggest Channels" -msgstr "Suggerir Canals" - -#: ../../Zotlabs/Lib/Apps.php:301 ../../boot.php:1613 -#: ../../include/nav.php:120 ../../include/nav.php:124 -msgid "Login" -msgstr "Identifica't" - -#: ../../Zotlabs/Lib/Apps.php:303 -msgid "Activity" -msgstr "Activitat" - -#: ../../Zotlabs/Lib/Apps.php:307 ../../include/conversation.php:1940 -#: ../../include/features.php:96 ../../include/nav.php:489 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Lib/Apps.php:308 -msgid "Channel Home" -msgstr "Canal Personal" - -#: ../../Zotlabs/Lib/Apps.php:311 ../../include/conversation.php:1862 -#: ../../include/conversation.php:1865 -msgid "Events" -msgstr "Esdeveniments" - -#: ../../Zotlabs/Lib/Apps.php:312 -msgid "Directory" -msgstr "Directori" - -#: ../../Zotlabs/Lib/Apps.php:314 -msgid "Mail" -msgstr "Correu" - -#: ../../Zotlabs/Lib/Apps.php:317 -msgid "Chat" -msgstr "Xerrar" - -#: ../../Zotlabs/Lib/Apps.php:319 -msgid "Probe" -msgstr "Sondeig" - -#: ../../Zotlabs/Lib/Apps.php:320 -msgid "Suggest" -msgstr "Suggeriment" - -#: ../../Zotlabs/Lib/Apps.php:321 -msgid "Random Channel" -msgstr "Canal Aleatori" - -#: ../../Zotlabs/Lib/Apps.php:322 -msgid "Invite" -msgstr "Convida" - -#: ../../Zotlabs/Lib/Apps.php:323 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "Funcionalitats" - -#: ../../Zotlabs/Lib/Apps.php:324 ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Lib/Apps.php:325 -msgid "Post" -msgstr "Entrada" - -#: ../../Zotlabs/Lib/Apps.php:326 ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "Foto del Perfil" - -#: ../../Zotlabs/Lib/Apps.php:473 -msgid "Purchase" -msgstr "Compra" - -#: ../../Zotlabs/Lib/Apps.php:477 -msgid "Undelete" -msgstr "Desfés l'operació d'esborrar" - -#: ../../Zotlabs/Lib/Apps.php:485 -msgid "Add to app-tray" -msgstr "Afegeix a la safata d'aplicacions" - -#: ../../Zotlabs/Lib/Apps.php:486 -msgid "Remove from app-tray" -msgstr "Esborra de la safata d'aplicacions" - -#: ../../Zotlabs/Lib/Apps.php:487 -msgid "Pin to navbar" -msgstr "Fixa a la barra de navegació" - -#: ../../Zotlabs/Lib/Apps.php:488 -msgid "Unpin from navbar" -msgstr "Treu de la barra de navegació" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "per defecte" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "seguidor" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "contribuïdor" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "publicador" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:93 -msgid "(No Title)" -msgstr "(sense títol)" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:107 -msgid "Wiki page create failed." -msgstr "No s'ha pogut crear la pàgina a la wiki." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:120 -msgid "Wiki not found." -msgstr "No s'ha trobat la wiki." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:131 -msgid "Destination name already exists" -msgstr "El nom de destí ja existeix" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:163 -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -msgid "Page not found" -msgstr "No s'ha trobat la pàgina" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:194 -msgid "Error reading page content" -msgstr "S'ha produït un error en carregar el contingut de la pàgina" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:350 -#: ../../Zotlabs/Lib/NativeWikiPage.php:400 -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 -msgid "Error reading wiki" -msgstr "S'ha produït un error en carregar la wiki" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:388 -msgid "Page update failed." -msgstr "No s'ha pogut actualitzar la pàgina." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:422 -msgid "Nothing deleted" -msgstr "No s'ha esborrat res" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:488 -msgid "Compare: object not found." -msgstr "S'ha produït un error en comparar la pàgina." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:494 -msgid "Page updated" -msgstr "S'ha actualitzat la pàgina" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:497 -msgid "Untitled" -msgstr "Sense títol" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:503 -msgid "Wiki resource_id required for git commit" -msgstr "Per a fer el git commit cal el resource_id de la wiki" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:559 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "Missatge" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:746 -#: ../../include/bbcode.php:916 -msgid "Different viewers will see this text differently" -msgstr "Diferents observadors veuran aquest text de diferents formes" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 -msgid "Visible to your default audience" -msgstr "Visible per a la teva audiència " - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:106 -msgid "Only me" -msgstr "Només jo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "Públic" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "Ningú a la xarxa $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "Qualsevol compte a %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "Qualsevol de les meves connexions" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "Només les connexions que permeto específicament" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -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:150 -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:151 -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:152 -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:153 -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:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "Aquesta és la teva configuració per defecte per l'audiència de les teves pàgines web" - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "Perdut el nom de la sala" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "Nom de la sala duplicat" - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "Especificació de la sala invàlida." - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "Sala no trobada." - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "La sala es plena" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "Notificació de $Projectname" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 -#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "Gràcies," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "Aquest correu ha estat enviat per %1$s a %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "Per deixar de rebre aquests missatges, modifica la configuració de notificacions a %s" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "Per deixar de rebre aquests missatges, modifica la teva %s." - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Avís] S'ha rebut correu nou a %s" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s t'ha enviat un missatge privat a %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s t'ha enviat %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "un missatge privat" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Per favor, visita %s per a veure i/o respondre els teus missatges privats." - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "ha comentat" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "li ha agradat" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "no li ha agradat" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]%5$s de %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]la teva %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Avís] S'ha moderat el comentari de %2$s a la conversa #%1$d" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Avís] Comentari de %2$s a la conversa #%1$d" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "%1$s ha comentat en una conversa que estàs seguint." - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Si us plau visita %s per veure i/o contestar a la conversa" - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "Vés a %s per a aprovar o rebutjar el comentari." - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "A %1$s li ha agradat [zrl=%2$s]la teva %3$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Avís] Un \"m'agrada\" a la conversa #%1$d de %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "A %1$s li ha agradat una conversa que has creat." - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Avís] %s ha penjat una entrada al teu mur" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha publicat al mur del teu perfil a %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "%1$s ha publicat al [zrl=%2$s]teu mur[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Avís] %s t'ha etiquetat" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s t'ha etiquetat a %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "%1$s [zrl=%2$s]t'ha etiquetat[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Avís] %1$s t'ha fet un toc" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s t'ha fet un toc a %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s [zrl=%2$s]t'ha fet un toc[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Avís] %s t'ha etiquetat una entrada" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha etiquetat una entrada teva a %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "%1$s ha etiquetat [zrl=%2$s]la teva entrada[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Avís] S'ha rebut una sol·licitud de connexió" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "Has rebut una soŀlicitud de connexió de '%1$s' a %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "Has rebut [zrl=%1$s]una soŀlicitud de connexió[/zrl] de %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Pots visitar el seu perfil a %s" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Si us plau, visita %s per aprovar o rebutjar la petició de connexió." - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Avís] S'ha rebut una suggerència d'amistat" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Has rebut una soŀlicitud d'amistat de '%1$s' a %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "" -"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "Has rebut [zrl=%1$s]una soŀlicitud d'amistat[/zrl] per a %2$s de part de %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "Nom:" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "Foto:" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Per favor, visita %s per a aprovar o rebutjar la suggerencia." - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Avís]" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "Creada una nova entrada" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "comentat a l'entrada de %s" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "ha editat una entrada amb data de %s" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "ha editat un comentari amb data de %s" - -#: ../../Zotlabs/Lib/NativeWiki.php:151 -msgid "Wiki updated successfully" -msgstr "S'ha actualitzat la wiki amb èxit" - -#: ../../Zotlabs/Lib/NativeWiki.php:205 -msgid "Wiki files deleted successfully" -msgstr "S'han esborrat els fitxers de la wiki amb èxit" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "Error d'Actualització a %s" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "L'actualització %s ha fallat. Mira el registre d'errors." - -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:700 -msgid "Private Message" -msgstr "Missatge Privat" - -#: ../../Zotlabs/Lib/ThreadItem.php:152 ../../Zotlabs/Storage/Browser.php:280 -msgid "Admin Delete" -msgstr "Esborrat amb privilegis d'administració" - -#: ../../Zotlabs/Lib/ThreadItem.php:158 ../../include/conversation.php:690 -msgid "Select" -msgstr "Selecciona" - -#: ../../Zotlabs/Lib/ThreadItem.php:183 -msgid "I will attend" -msgstr "Assistiré" - -#: ../../Zotlabs/Lib/ThreadItem.php:183 -msgid "I will not attend" -msgstr "No assistiré" - -#: ../../Zotlabs/Lib/ThreadItem.php:183 -msgid "I might attend" -msgstr "Podria assistir" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 -msgid "I agree" -msgstr "D'acord" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 -msgid "I disagree" -msgstr "En desacord" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 -msgid "I abstain" -msgstr "M'abstinc" - -#: ../../Zotlabs/Lib/ThreadItem.php:247 ../../include/conversation.php:695 -msgid "Toggle Star Status" -msgstr "Canvia el Estat de la Preferència" - -#: ../../Zotlabs/Lib/ThreadItem.php:258 ../../include/conversation.php:707 -msgid "Message signature validated" -msgstr "Validada la signatura del missatge" - -#: ../../Zotlabs/Lib/ThreadItem.php:259 ../../include/conversation.php:708 -msgid "Message signature incorrect" -msgstr "Signatura del missatge incorrecta" - -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Add Tag" -msgstr "Afegeix Etiqueta" - -#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../include/taxonomy.php:575 -msgid "like" -msgstr "agrada" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 ../../include/taxonomy.php:576 -msgid "dislike" -msgstr "desagrada" - -#: ../../Zotlabs/Lib/ThreadItem.php:290 -msgid "Share This" -msgstr "Comparteix Això" - -#: ../../Zotlabs/Lib/ThreadItem.php:290 -msgid "share" -msgstr "comparteix" - -#: ../../Zotlabs/Lib/ThreadItem.php:299 -msgid "Delivery Report" -msgstr "Informe de Lliurament" - -#: ../../Zotlabs/Lib/ThreadItem.php:317 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentari" -msgstr[1] "%d commentaris" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../Zotlabs/Lib/ThreadItem.php:348 -#, php-format -msgid "View %s's profile - %s" -msgstr "Mostra el perfil de %s - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:351 -msgid "to" -msgstr "a" - -#: ../../Zotlabs/Lib/ThreadItem.php:352 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:353 -msgid "Wall-to-Wall" -msgstr "Mur-a-Mur" - -#: ../../Zotlabs/Lib/ThreadItem.php:354 -msgid "via Wall-To-Wall:" -msgstr "via Mur-a-Mur:" - -#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:766 -#, php-format -msgid "from %s" -msgstr "De %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:370 ../../include/conversation.php:769 -#, php-format -msgid "last edited: %s" -msgstr "últim editat: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:371 ../../include/conversation.php:770 -#, php-format -msgid "Expires: %s" -msgstr "Expira: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:379 -msgid "Attend" -msgstr "Assistir-hi" - -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Attendance Options" -msgstr "Opcions d'assistència" - -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Vote" -msgstr "Votar" - -#: ../../Zotlabs/Lib/ThreadItem.php:382 -msgid "Voting Options" -msgstr "Opcions de votació" - -#: ../../Zotlabs/Lib/ThreadItem.php:403 -#: ../../addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "Desa els marcadors" - -#: ../../Zotlabs/Lib/ThreadItem.php:404 -msgid "Add to Calendar" -msgstr "Afegeix al Calendari" - -#: ../../Zotlabs/Lib/ThreadItem.php:431 ../../include/conversation.php:483 -msgid "This is an unsaved preview" -msgstr "Això només és una vista prèvia, no està desada" - -#: ../../Zotlabs/Lib/ThreadItem.php:463 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra-ho tot" - -#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1388 -msgid "Bold" -msgstr "Negreta" - -#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1389 -msgid "Italic" -msgstr "Italica" - -#: ../../Zotlabs/Lib/ThreadItem.php:760 ../../include/conversation.php:1390 -msgid "Underline" -msgstr "Subratllat" - -#: ../../Zotlabs/Lib/ThreadItem.php:761 ../../include/conversation.php:1391 -msgid "Quote" -msgstr "Cometes" - -#: ../../Zotlabs/Lib/ThreadItem.php:762 ../../include/conversation.php:1392 -msgid "Code" -msgstr "Codi" - -#: ../../Zotlabs/Lib/ThreadItem.php:763 -msgid "Image" -msgstr "Imatge" - -#: ../../Zotlabs/Lib/ThreadItem.php:764 ../../include/conversation.php:1393 -msgid "Attach/Upload file" -msgstr "Adjunta i puja un arxiu" - -#: ../../Zotlabs/Lib/ThreadItem.php:765 -msgid "Insert Link" -msgstr "Insereix Enllaç" - -#: ../../Zotlabs/Lib/ThreadItem.php:766 -msgid "Video" -msgstr "Video" - -#: ../../Zotlabs/Lib/ThreadItem.php:776 -msgid "Your full name (required)" -msgstr "Nom complet (obligatori)" - -#: ../../Zotlabs/Lib/ThreadItem.php:777 -msgid "Your email address (required)" -msgstr "Adreça de correu (obligatòria)" - -#: ../../Zotlabs/Lib/ThreadItem.php:778 -msgid "Your website URL (optional)" -msgstr "Adreça web (opcional)" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a nivell local. Si us plau, tanca la sessió i torna-ho a intentar." - -#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 -#: ../../addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Benvingut %s. Autenticació remota reeixida." - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 -msgid "parent" -msgstr "amunt" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2817 -msgid "Collection" -msgstr "Col·lecció" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Principal" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Llista d'Adreçes" - -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:412 -#: ../../include/nav.php:415 -msgid "Calendar" -msgstr "Calendari" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Programació de la bústia d'entrada" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Programació de la bústia de sortida" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "Total" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "Compartit" - -#: ../../Zotlabs/Storage/Browser.php:277 -msgid "Add Files" -msgstr "Afegeix arxius" - -#: ../../Zotlabs/Storage/Browser.php:361 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Estàs emprant el %1$s de l'espai d'emmagatzematge disponible" - -#: ../../Zotlabs/Storage/Browser.php:366 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Estàs emprant %1$s de %2$s d'emmagatzematge d'arxius disponible.\n(%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:377 -msgid "WARNING:" -msgstr "ALERTA:" - -#: ../../Zotlabs/Storage/Browser.php:389 -msgid "Create new folder" -msgstr "Crea una nova carpeta" - -#: ../../Zotlabs/Storage/Browser.php:391 -msgid "Upload file" -msgstr "Puja arxiu" - -#: ../../Zotlabs/Storage/Browser.php:404 -msgid "Drop files here to immediately upload" -msgstr "Deixa anar fitxers aquí per a pujar-los immediatament" - -#: ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:100 -#: ../../Zotlabs/Widget/Notifications.php:119 -#: ../../Zotlabs/Widget/Notifications.php:120 -msgid "Forums" -msgstr "Forums" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "Escull canal" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "Llegir i escriure" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "Només lectura" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "Els meus calendaris" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "Calendaris compartits" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "Comparteix aquest calendari" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "Nom i color del calendari" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "Crea un nou calendari" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "Nom del calendari" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "Eines de calendari" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "Importa un calendari" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "Escull el calendari a on importar" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "Llibretes d'adreces" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "Nom de llibreta d'adreces" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "Crea una nova llibreta d'adreces" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "Nom de llibreta d'adreces" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "Eines de llibreta d'adreces" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "Importa una llibreta d'adreces" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "Escull la llibreta d'adreces a on importar" - -#: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 -msgid "Categories" -msgstr "Categories" - -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -#: ../../widgets/Netselect/Netselect.php:26 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 -msgid "Everything" -msgstr "Tot" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "Eina d'Esdeveniments" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "Exportar Calendari" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "Importar Calendari" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "Sales de Xat Suggerides" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "Panell de control" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "Crea una nova entrada" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "Menú de Correu Privat" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "Vista Combinada" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "Nou Missatge" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1876 ../../include/conversation.php:1879 -#: ../../include/nav.php:426 ../../include/nav.php:429 -msgid "Chatrooms" -msgstr "Sala per Xerrar" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "Visió General" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "Eines de Valoració" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "Valora'm" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "Veure Valoracions" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "Activitat" - -#: ../../Zotlabs/Widget/Activity_filter.php:24 -msgid "Personal Posts" -msgstr "Entrades personals" - -#: ../../Zotlabs/Widget/Activity_filter.php:28 -msgid "Show posts that mention or involve me" -msgstr "Mostra les entrades que m'inclouen" - -#: ../../Zotlabs/Widget/Activity_filter.php:39 -msgid "Starred Posts" -msgstr "Entrades destacades" - -#: ../../Zotlabs/Widget/Activity_filter.php:43 -msgid "Show posts that I have starred" -msgstr "Mostra les entrades que he destacat" - -#: ../../Zotlabs/Widget/Activity_filter.php:63 -#, php-format -msgid "Show posts related to the %s privacy group" -msgstr "Mostra les entrades relacionades amb el grup de privacitat %s" - -#: ../../Zotlabs/Widget/Activity_filter.php:72 -msgid "Show my privacy groups" -msgstr "Mostra els meus grups de privacitat" - -#: ../../Zotlabs/Widget/Activity_filter.php:93 -msgid "Show posts to this forum" -msgstr "Mostra les entrades a aquest fòrum" - -#: ../../Zotlabs/Widget/Activity_filter.php:104 -msgid "Show forums" -msgstr "Mostra els fòrums" - -#: ../../Zotlabs/Widget/Activity_filter.php:128 -#, php-format -msgid "Show posts that I have filed to %s" -msgstr "Mostra les entrades que he penjat a %s" - -#: ../../Zotlabs/Widget/Activity_filter.php:134 -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:488 -msgid "Saved Folders" -msgstr "Carpetes Guardades" - -#: ../../Zotlabs/Widget/Activity_filter.php:138 -msgid "Show filed post categories" -msgstr "Mostra les categories de les entrades pujades" - -#: ../../Zotlabs/Widget/Activity_filter.php:152 -msgid "Panel search" -msgstr "Panell de cerca" - -#: ../../Zotlabs/Widget/Activity_filter.php:162 -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:122 -#: ../../Zotlabs/Widget/Notifications.php:153 -msgid "Filter by name" -msgstr "Filtra per nom" - -#: ../../Zotlabs/Widget/Activity_filter.php:177 -msgid "Remove active filter" -msgstr "Esborra el filtre actual" - -#: ../../Zotlabs/Widget/Activity_filter.php:193 -msgid "Activity Filters" -msgstr "Filtres d'activitat" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tens %1$.0f de %2$.0f connexions permeses." - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "Afegeix una Nova Connexió" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "Introdueix l'adreça del canal" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples: bob@example.com, https://exemple.com/barbara" - -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wiki List" -msgstr "Llista de Wikis" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "Arxius" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "Missatges Rebuts" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "Missatges Enviats" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "Conversacions" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "Sense missatges." - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "Conversació esborrada" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "Membres de la Sala de Xat" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "foto/imatge" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "Plaç de remoció" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 -msgid "Saved Searches" -msgstr "Cerques Guardades" - -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:325 -msgid "add" -msgstr "afegeix" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Notes" - -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:89 -msgid "Add new page" -msgstr "Afegeix una pàgina nova" - -#: ../../Zotlabs/Widget/Wiki_pages.php:83 -msgid "Wiki Pages" -msgstr "Pàgines de Wikis" - -#: ../../Zotlabs/Widget/Wiki_pages.php:94 -msgid "Page name" -msgstr "Canvia el nom de la pàgina" - -#: ../../Zotlabs/Widget/Affinity.php:45 -msgid "Refresh" -msgstr "Refresc" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "Tasques" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "Suggerencies" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "Veure més....." - -#: ../../Zotlabs/Widget/Activity_order.php:86 -msgid "Commented Date" -msgstr "Data dels comentaris" - -#: ../../Zotlabs/Widget/Activity_order.php:90 -msgid "Order by last commented date" -msgstr "Ordena segons la data dels comentaris més recents" - -#: ../../Zotlabs/Widget/Activity_order.php:93 -msgid "Posted Date" -msgstr "Data de les entrades" - -#: ../../Zotlabs/Widget/Activity_order.php:97 -msgid "Order by last posted date" -msgstr "Ordena segons la data de publicació de les entrades" - -#: ../../Zotlabs/Widget/Activity_order.php:100 -msgid "Date Unthreaded" -msgstr "Data sense agrupar" - -#: ../../Zotlabs/Widget/Activity_order.php:104 -msgid "Order unthreaded by date" -msgstr "Ordena per data els comentaris i les publicacions sense agrupar-los per converses" - -#: ../../Zotlabs/Widget/Activity_order.php:119 -msgid "Activity Order" -msgstr "Ordre de les activitats" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "Fes clic per veure més" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 -#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 -msgid "Tags" -msgstr "Etiquetes" - -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" -msgstr "Coŀleccions d'aplicacions" - -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Available Apps" -msgstr "Aplicacions disponibles" - -#: ../../Zotlabs/Widget/Appstore.php:14 -msgid "Installed apps" -msgstr "Aplicacions instaŀlades" - -#: ../../Zotlabs/Widget/Newmember.php:24 -msgid "Profile Creation" -msgstr "Creació de perfils" - -#: ../../Zotlabs/Widget/Newmember.php:26 -msgid "Upload profile photo" -msgstr "Puja una foto de perfil" - -#: ../../Zotlabs/Widget/Newmember.php:27 -msgid "Upload cover photo" -msgstr "Puja una foto de portada" - -#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:113 -msgid "Edit your profile" -msgstr "Modifica el teu perfil" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Find and Connect with others" -msgstr "Cerca altres canals i connecta-t'hi" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "View the directory" -msgstr "Mostra la carpeta" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Manage your connections" -msgstr "Gestiona les teves conexions" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Communicate" -msgstr "Communica't" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View your channel homepage" -msgstr "Mostra el teu canal" - -#: ../../Zotlabs/Widget/Newmember.php:41 -msgid "View your network stream" -msgstr "Mostra el teu flux de xarxa" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Documentation" -msgstr "Documentació" - -#: ../../Zotlabs/Widget/Newmember.php:58 -msgid "View public stream" -msgstr "Mostra el flux públic" - -#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 -msgid "New Member Links" -msgstr "Enllaços de membres nous" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "Una inscripció per a ser membre està esperant confirmació" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "Revisa cua" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "Actualitzacions de Base de Dades" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:191 -msgid "Admin" -msgstr "Administració" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Addon Features" -msgstr "Funcions de les extensions" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "Configuració del compte" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "Configuració del canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Característiques addicionals" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "Configuració de les extensions" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Display settings" -msgstr "Configuració de pantalla" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "Manage locations" -msgstr "Gestiona ubicacions" - -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Exportat canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "OAuth1 apps" -msgstr "Aplicacions OAuth1" - -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "OAuth2 apps" -msgstr "Aplicacions OAuth2" - -#: ../../Zotlabs/Widget/Settings_menu.php:125 -msgid "Premium Channel Settings" -msgstr "Configuració dels canals prèmium" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "Sales de xat desades" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "Activitat nova a la xarxa" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "Notificacions noves d'activitat a la xarxa" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "Mostra l'activitat a la xarxa" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "Marca totes les notificacions com a vistes" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:152 -msgid "Show new posts only" -msgstr "Mostra només les entrades noves" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "Activitat nova al mur" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "Notificacions noves d'activitat al mur" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "Mostra l'activitat al teu mur" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:149 -msgid "Mark all notifications seen" -msgstr "Marca totes les notificacions com a vistes" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "Correus nous" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "Notificacions noves de correus" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "Mostra els correus privats" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "Marca tots els missatges com a llegits" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "Esdeveniments nous" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "Notificacions noves d'esdeveniments" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "Mostra els esdeveniments" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "Marcar tots els esdeveniments vistos" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "Notificacions noves de connexió" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "Mostra totes les connexions" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "Arxius nous" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "Notificacions noves d'arxius" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "Noticies" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "Mostra totes les notificacions" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "Marca totes les notificacions com a vistes" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "New Registrations" -msgstr "Inscripcions noves" - -#: ../../Zotlabs/Widget/Notifications.php:133 -msgid "New Registrations Notifications" -msgstr "Notificacions noves d'inscripció" - -#: ../../Zotlabs/Widget/Notifications.php:143 -msgid "Public Stream Notifications" -msgstr "Notificacions del flux públic" - -#: ../../Zotlabs/Widget/Notifications.php:146 -msgid "View the public stream" -msgstr "Mostra el flux públic" - -#: ../../Zotlabs/Widget/Notifications.php:161 -msgid "Sorry, you have got no notifications at the moment" -msgstr "No tens cap notificació" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "No s'ha trobat el canal font." - -#: ../../boot.php:1592 -msgid "Create an account to access services and applications" -msgstr "Crea un compte per tal d'accedir a serveis i aplicacions" - -#: ../../boot.php:1612 ../../include/nav.php:105 ../../include/nav.php:134 -#: ../../include/nav.php:153 -msgid "Logout" -msgstr "Surt" - -#: ../../boot.php:1616 -msgid "Login/Email" -msgstr "Correu d'usuari" - -#: ../../boot.php:1617 -msgid "Password" -msgstr "Contrasenya" - -#: ../../boot.php:1618 -msgid "Remember me" -msgstr "Recorda'm" - -#: ../../boot.php:1621 -msgid "Forgot your password?" -msgstr "Has perdut la Contrasenya?" - -#: ../../boot.php:2405 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "[$Projectname] Error de TLS per a %s" - -#: ../../boot.php:2410 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "El certificat SSL és invalid, soluciona-ho, si us plau." - -#: ../../boot.php:2526 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "[$Projectname] Les tasques del cron tasks no s'estan executant a %s" - -#: ../../boot.php:2531 -msgid "Cron/Scheduled tasks not running." -msgstr "No s'estan executant les tasques programades al cron." - -#: ../../boot.php:2532 ../../include/datetime.php:238 -msgid "never" -msgstr "mai" - -#: ../../view/theme/redbasic_c/php/config.php:16 -#: ../../view/theme/redbasic_c/php/config.php:19 -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "Focus (Hubzilla per defecte)" - -#: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "Configuració de tema" - -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "Barra de navegació estreta" - -#: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "Color de fons de la barra de navegació" - -#: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "Color de la icona de la barra de navegació" - -#: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "Color de la icona de la barra de navegació activa" - -#: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "Color dels enllaços" - -#: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "Ajusta el color del tipus de lletra per la senyera" - -#: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "Ajusta el color de fons" - -#: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "Ajusta la imatge de fons" - -#: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "ajusta el color dels articles de fons" - -#: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "Ajusta el color dels comentaris en segon pla" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "Ajusta la mida del tipus de lletra per tota l'aplicació" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "Exemples: 1rem, 100%, 16px" - -#: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "Ajusta el color del tipus de lletra per entrades i comentaris" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "Ajusta el radi de les cantonades" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "Exemple: 4px" - -#: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "Ajusta la profunditat d'ombres de les fotos" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "Ajusta l'amplada màxima de la zona de contingut en pixels" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "Deixa en blanc per l'amplada predeterminada" - -#: ../../view/theme/redbasic_c/php/config.php:115 -msgid "Left align page content" -msgstr "Alineació esquerra del contingut de la pàgina" - -#: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "Ajusta la mida de la foto del autor a la conversa" - -#: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "Ajusta la mida del seguidor de les fotos de l'autor" - -#: ../../widgets/Netselect/Netselect.php:24 -msgid "Network/Protocol" -msgstr "Xarxa/protocol" - -#: ../../widgets/Netselect/Netselect.php:28 ../../include/network.php:1772 -msgid "Zot" -msgstr "Zot" - -#: ../../widgets/Netselect/Netselect.php:31 ../../include/network.php:1770 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../widgets/Netselect/Netselect.php:33 ../../include/network.php:1763 -#: ../../include/network.php:1764 -msgid "Friendica" -msgstr "Friendica" - -#: ../../widgets/Netselect/Netselect.php:38 ../../include/network.php:1765 -msgid "OStatus" -msgstr "OStatus" - -#: ../../widgets/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1219 -#: ../../addon/pubcrawl/as.php:1374 ../../addon/pubcrawl/as.php:1553 -#: ../../include/network.php:1768 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "S'ha produït un o més errors en esborrar una taula de la base de dades" - -#: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:779 -msgid "Submit Settings" -msgstr "Desa els canvis" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "Vols eliminar les taules en desinstaŀlar?" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "En cas afirmatiu, s'esborraran de la base de dades les taules del Rendezvous en desinstaŀlar l'extensió." - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "Testimoni d'accés a Mapbox" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "Es farà servir aquest testimoni per a descarregar les tesseŀles des de Mapbox en comptes del servidor per defecte d'OpenStreetMap." - -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "Rendezvous" - -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "Un altre membre ha esborrat aquesta identitat per inactivitat. Pots crear-ne una nova amb el botó o recarregant la pàgina. Pots tornar a fer servir el mateix nom." - -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "Benvingut/da al Rendezvous!" - -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with" -" the other members, tap the GPS control. When your location is discovered, a" -" red dot will appear and others will be able to see you on the map." -msgstr "Escriu un nom per unir-te an aquest Rendezvous. Per a començar compartint la teva ubicació amb els altres membres, toca el control de GPS. Un cop descoberta la teva ubicació, apareixerà un punt vermell i la resta podran veure't en el mapa." - -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "Trobem-nos aquí" - -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "Nova xinxeta" - -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "Modifica la xinxeta" - -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "Nova identitat" - -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "Esborra la xinxeta" - -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "Esborra el membre" - -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "Modifica l'alerta de proximitat" - -#: ../../addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius" -" of you.

Enter a radius in meters (0 to disable):" -msgstr "Es mostrarà una alerta de proximitat si aquest membre està dins un cert radi de distància.

Introdueix un radi en metres (0 ho deshabilita):" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "distància" - -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "Distància d'alerta de proximitat (metres)" - -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the" -" marker location.

Enter a radius in meters (0 to disable):" -msgstr "Es mostrarà una alerta de proximitat quan siguis dins un cert radi de distància de la ubicació de la xinxeta.

Introdueix un radi en metres (0 ho deshabilita):" - -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "Alerta de proximitat de xinxeta" - -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "Nota de recordatori" - -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "Introdueix una nota per a mostrar amb l'alerta" - -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "Afegeix un rendezvous nou" - -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or" -" share their own locations with the group." -msgstr "Crea un rendezvous nou i comparteix-lo amb aquelles persones a qui vulguis convidar al grup. Qui obri l'enllaç es faran membres del rendezvous. Podran veure les ubicacions dels altres membres, afegir xinxetes al mapa i compartir les seves ubicacions amb el grup." - -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" -msgstr "No tens cap rendezvous. Pica el botó de sobre per a crear-ne un!" - -#: ../../addon/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "Opció X" - -#: ../../addon/skeleton/skeleton.php:61 -msgid "A setting" -msgstr "Opció Y" - -#: ../../addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" -msgstr "Configuració del Skeleton" - -#: ../../addon/gnusoc/gnusoc.php:258 -msgid "GNU-Social Protocol Settings updated." -msgstr "S'ha actualitzat la configuració del Protocol GNU-Social" - -#: ../../addon/gnusoc/gnusoc.php:277 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "El Protocol GNU-Social és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal." - -#: ../../addon/gnusoc/gnusoc.php:280 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "Habilita el Protocol GNU-Social per a aquest canal" - -#: ../../addon/gnusoc/gnusoc.php:284 -msgid "GNU-Social Protocol Settings" -msgstr "Configuració del Protocol GNU-Social " - -#: ../../addon/gnusoc/gnusoc.php:480 -msgid "Follow" -msgstr "Segueix" - -#: ../../addon/gnusoc/gnusoc.php:483 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "%1$s ara segueix a %2$s" - -#: ../../addon/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "S'ha actualitzat la configuració de Planetes." - -#: ../../addon/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "Habilita l'extensió Planetes" - -#: ../../addon/planets/planets.php:153 -msgid "Planets Settings" -msgstr "Configuració de Planetes" - -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "Opcions per defecte:" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "Identitats Clipart preferides" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "Llista d'identitats Clipart preferides. Aquestes es mostren primer" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "Paraula de cerca predeterminada" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "La paraula de cerca predeterminada. Aquestes es mostraran en segon lloc." - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "Acaba després de" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "Pàgina per carregar després d'haver seleccionat una imatge." - -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 -#: ../../include/nav.php:113 -msgid "Edit Profile" -msgstr "Modifica el meu perfil" - -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "Llista de perfils" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "Ordre de les preferides" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "Ordena les identitats Clipart preferides" - -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "La més nova primer" - -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "En ordre d'entrada" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "Ordre de les altres" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "Ordena les altres identitats Clipart." - -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "Les més descarregades primer" - -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "Les més votades primer" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "Missatge de les identitats preferides" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "Missatge per a mostrar per sobre dels resultats preferits." - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "Carregada per:" - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "Dibuixada per:" - -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "Fes servir aquesta imatge" - -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "O bé tria una imatge lliure d'OpenClipart.org:" - -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "Paraules de cerca" - -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "S'ha produït un error desconegut. Torna a provar-ho més tard." - -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "S'ha carregat la foto amb èxit." - -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "Marca contingut adult" - -#: ../../addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "Habilita una opció per a amagar fotos sensibles de la vista per defecte de l'àlbum." - -#: ../../addon/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "Publica a un Wordpress" - -#: ../../addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "Activa l'extensió Publica a un Wordpress" - -#: ../../addon/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "Nom d'usuari al Wordpress" - -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "Contrassenya al Wordpress" - -#: ../../addon/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "Adreça URL de l'API del Wordpress" - -#: ../../addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "Normalment https://el-meu-blog.cat/xmlrpc.php" - -#: ../../addon/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "Identitat blogid del Wordpress" - -#: ../../addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "Fer a llocs multi-usuari com wordpress.com . Deixa en blanc en cas contrari" - -#: ../../addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "Publica a Wordpress per defecte" - -#: ../../addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "Reenvia comentaris (necessita l'extensió hubzilla_wp)" - -#: ../../addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "Configuració d'entrades" - -#: ../../addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." -msgstr "S'ha desat la configuració." - -#: ../../addon/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "Aquesta extensió cerca paraules que especifiquis en les entrades, i amaga plegant qualsevol contingut que en contingui alguna. Així, no es mostrarà per defecte i no quedaràs exposat/da en llocs on més gent vegi la teva pantalla. Sempre es recomana etiquetar els continguts amb nuesa amb l'etiqueta #NSFW (insegur per a la feina, en anglès). Tanmateix, el filtre es pot fer servir per qualsevol tipus de contingut." - -#: ../../addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "Activa el filtre de contingut" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" -msgstr "Llista de paraules clau a amagar, separada per comes" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "Paraula, /expressió-regular/, lang=xx, lang=!xx. Nota: lang és per llengua en anglès" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "Configuració de Not Safe For Work" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "Filtre de contingut genèric" - -#: ../../addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "S'ha desat la configuració del NSFW." - -#: ../../addon/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "Possible contingut inadequat" - -#: ../../addon/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "%s - mostra" - -#: ../../addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "Publicar a Insanejournal" - -#: ../../addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "Habilita la publicació a InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "Nom d'usuari a InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "Contrasenya a InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "Publica per defecte a InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "Opcions de publicació a InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "S'han actualitzat els paàrmetres de InsaneJournal." - -#: ../../addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "Publica a Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "Habilita el connector per a publicar a la xarxa Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "Nom a Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "Contrasenya a Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "Publica a Dreamwidth per defecte" - -#: ../../addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "Opcions de publicació a Dreamwidth" - -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "S'ha registrat un nou compte" - -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "S'ha enviat el correu a %s. El nou compte és %s" - -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "Estadístiques del directori de Hubzilla" - -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "Hubs totals" - -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "Hubs de Hubzilla" - -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "Hubs de Friendica" - -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "Pods de Diaspora" - -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "Canals de Hubzilla" - -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "Canals de Friendica" - -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "Canals de Diaspora" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "De 35 o més anys d'edat" - -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "De 34 o menys anys d'edat" - -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "Mitjana d'edat" - -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "Sales de xat conegudes" - -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "Etiquetes conegudes" - -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "Tingueu en compte que les estadístiques de Diaspora i Friendica només són les **aquest directori** n'és conscient, i no totes les de la xarxa. Això també aplica a sales de xat," - -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "El teu Webbie:" - -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "Mida de lletra (px):" - -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "Enllaç:" - -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "Segueix-nos a Hubzilla" - -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "Incrusta:" - -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "S'han importat les fotos" - -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "Importa els àlbums de fotos de $Projectname" - -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "Importa els àlbums de fotos de $Projectname" - -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" -msgstr "Adreça URL arrel del servidor de Redmatrix" - -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" -msgstr "Nom d'usuari de Redmatrix" - -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" -msgstr "Contrasenya de Redmatrix" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "Importa només aquest album" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "Deixa-ho en blanc per a importar tots els àlbums" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "Nombre màxim d'importacions" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "Deixa-ho en blanc o amb un 0 per a importar-ho tot" - -#: ../../addon/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "Canals per connectar automàticament" - -#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 -msgid "Comma separated list" -msgstr "Llista amb separació per comes" - -#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Canals populars" - -#: ../../addon/irc/irc.php:53 -msgid "IRC Settings" -msgstr "Paràmetres de IRC" - -#: ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "S'han actualitzat els paràmetres de IRC." - -#: ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Sala de IRC" - -#: ../../addon/gallery/gallery.php:42 ../../addon/gallery/Mod_Gallery.php:111 -msgid "Gallery" -msgstr "Galeria" - -#: ../../addon/gallery/gallery.php:45 -msgid "Photo Gallery" -msgstr "Galeria d'imatges" - -#: ../../addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "Publica a LiveJournal" - -#: ../../addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "Habilita la publicació a LiveJournal" - -#: ../../addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "Nom a LiveJournal" - -#: ../../addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "Contrasenya a LiveJournal" - -#: ../../addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "Publica a LiveJournal per defecte" - -#: ../../addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "Paràmetres de LiveJournal" - -#: ../../addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "S'han desat els paràmetres de LiveJournal." - -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "No s'ha pogut autenticar la identitat OpenID que has proporcionat. Comprova que l'hagis introduïda bé." - -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "El missatge d'error ha estat:" - -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "Nom" - -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "Cognoms" - -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 -msgid "Nickname" -msgstr "Àlies" - -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "Nom complet" - -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "Imatge de perfil de 16x16 píxels" - -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "Imatge de perfil de 32x32 píxels" - -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "Imatge de perfil de 48x48 píxels" - -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "Imatge de perfil de 64x64 píxels" - -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "Imatge de perfil de 80x80 píxels" - -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "Imatge de perfil de 128x128 píxels" - -#: ../../addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "Zona horària" - -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "Any de naixement" - -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "Mes de naixement" - -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "Dia de naixement" - -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "Aniversar" - -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error d'OpenID. No s'ha aconseguit cap ID." - -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:317 -msgid "Login failed." -msgstr "Identificació fallida." - -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 -msgid "Male" -msgstr "Masculí" - -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 -msgid "Female" -msgstr "Femení" - -#: ../../addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "De res." - -#: ../../addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "Oh merda..." - -#: ../../addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "Ni ho pensis." - -#: ../../addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "<em poso vermell>" - -#: ../../addon/startpage/startpage.php:109 -msgid "Page to load after login" -msgstr "Pàgina a carregar després d'iniciar sessió" - -#: ../../addon/startpage/startpage.php:109 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "Exemples: "apps", "network?f=&gid=37" (grup de privacitat), "channel" or "notifications/system" (deixa-ho en blanc per a la pàgina per defecte, la del flux públic." - -#: ../../addon/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "Configuració de Pàgina d'inici" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "bofetades" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "ha fet una bofetada a" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "polvo" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "ha fet un polvo amb" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "amb dret de" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "ha patentat a" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "abraçada" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "ha abraçat" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "assassinat" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "ha assassinat" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "retre-li culte" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "ara ret culte a" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "un petó" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "ha fet un petó a" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "temptar" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "ha temptat a" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "aixecar-li una cella" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "li ha aixecat una cella a" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "insultar" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "ha insultat a" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "elogiar" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "ha elogiat a" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "sospitar" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "sospita de" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "menjar" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "s'ha menjat" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "cantar-ne les mil meravelles" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "està cantant les mil meravelles de" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "dubtar-ne" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "dubta de" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "fer-li una mirada assassina" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "li ha fet una mirada assassina a" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "follar-hi" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "ha follat amb" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "tirar-se'l/la" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "s'ha tirat a" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "declarar-li l'amor etern a" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "li ha declarar amor etern a" - -#: ../../addon/diaspora/diaspora.php:786 -msgid "Diaspora Protocol Settings updated." -msgstr "S'ha actualitzat la configuració del Protocol de Diàspora" - -#: ../../addon/diaspora/diaspora.php:805 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "El Protocol de Diàspora és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal." - -#: ../../addon/diaspora/diaspora.php:808 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activa el Protocol de Diàspora per aquest canal" - -#: ../../addon/diaspora/diaspora.php:812 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permet a qualsevol membre de Diàspora de comentar les teves entrades públiques" - -#: ../../addon/diaspora/diaspora.php:816 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Evita que les teves etiquetes siguin redirigides a altres llocs web" - -#: ../../addon/diaspora/diaspora.php:820 -msgid "" -"Sign and forward posts and comments with no existing Diaspora signature" -msgstr "Signa i reenvia entrades o comentaris encara que no tinguin una signatura de Diàspora vàlida." - -#: ../../addon/diaspora/diaspora.php:825 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "Etiquetes seguides (separades per comes i sense incloure #)" - -#: ../../addon/diaspora/diaspora.php:830 -msgid "Diaspora Protocol Settings" -msgstr "Configuració del Protocol de Diàspora" - -#: ../../addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "No s'ha trobat el nom d'usuari en el fitxer d'importació." - -#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:72 -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." - -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "El teu compte a %s caducarà d'aquí a pocs dies." - -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "El teu compte de prova a $Productname està a punt de caducar." - -#: ../../addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "Activa el Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "Configuració de Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "S'ha desat la configuració del Rainbowtag." - -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "Mostra els límits de pujada" - -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "Mida màxima configurada a $Projectname:" - -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "Mida màxima de fitxer del PHP (upload_max_filesize):" - -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "Mida màxima de consulta web del PHP (post_max_size > upload_max_filesize):" - -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "imatge de perfil genèrica" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "patró geomètric aleatori" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "cara de monstre" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "cara generada per ordinador" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "cara d'estil arcade retro" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "Foto de perfil per defecte al hub" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "Informació" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "L'extensió Libravatar també està instaŀlada. Desactiva-la o desactiva aquesta.
Libravatar rebotarà a Gravatar si no es troba res a Libravatar." - -#: ../../addon/gravatar/gravatar.php:150 -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "Des la configuració" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "Avatar per defecte" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "Escull l'avatar per defecte si no se'n troba cap al Gravatar. Consulta el README" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "Categorització de les imatges" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "Escull la categorització d'avatar per al teu lloc. Consulta el README" - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "S'ha actualitzat la configuració del Gravatar" - -#: ../../addon/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "Importació d'emmagatzematge de Hubzilla" - -#: ../../addon/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "Permet importar tots els arxius de núvol des d'un altre servidor." - -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "Adreça URL base de l'altre servidor Hubzilla" - -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "Més nous que aaaa-mm-dd" - -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "Més antics que aaaa-mm-dd" - -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Visitants recents del canal o perfil" - -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "Aquesta extensió encara no està configurada." - -#: ../../addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "Visita la configuració del Visage a %s" - -#: ../../addon/visage/visage.php:99 -msgid "your feature settings page" -msgstr "la pàgina de configuració de funcionalitats" - -#: ../../addon/visage/visage.php:112 -msgid "No entries." -msgstr "No hi ha entrades." - -#: ../../addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "Activa el registre de visitants de Visage" - -#: ../../addon/visage/visage.php:170 -msgid "Visage Settings" -msgstr "Configuració del Visage" - -#: ../../addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "S'ha actualitzat la configuració de NSAbait." - -#: ../../addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "Activa l'extensió NSAbait" - -#: ../../addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "Configuració del NSAbait" - -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "Envia un correu de prova" - -#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "No s'han trobat destinataris." - -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "S'ha enviat el correu." - -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "Ha fallat l'enviament de correu." - -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "Prova de correu" - -#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "Assumpte" - -#: ../../addon/mdpost/mdpost.php:41 -msgid "Use markdown for editing posts" -msgstr "Fes servir markdown per editar les entrades" - -#: ../../addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "Amplia" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" -msgstr "Adreça URL del servidor de tesseŀles" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of public tile servers" -msgstr "Una llista de servidors públics de tesseŀles" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "Adreça URL del servei Nominatim (geocoding invers)" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" -msgstr "Una llista de servidors públics de Nominatim" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" -msgstr "Zoom per defecte" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "El nivell de zoom predeterminat. (1: mínim, món. 18: màxim. També depèn del servidor)" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" -msgstr "Inclou una xinxeta al mapa" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." -msgstr "Inclou una xinxeta al mapa." - -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "text per incloure en totes les entrades que s'enviïn des d'aquest lloc" - -#: ../../addon/fuzzloc/fuzzloc.php:148 -msgid "Fuzzloc Settings updated." -msgstr "S'ha actualitzat la configuració de Fuzzloc." - -#: ../../addon/fuzzloc/fuzzloc.php:175 -msgid "" -"Fuzzloc allows you to blur your precise location if your channel uses " -"browser location mapping." -msgstr "El Fuzzloc permet difuminar la teva ubicació si el teu canal fa servir la ubicació precisa del navegador." - -#: ../../addon/fuzzloc/fuzzloc.php:178 -msgid "Enable Fuzzloc Plugin" -msgstr "Habilita l'extensió Fuzzloc" - -#: ../../addon/fuzzloc/fuzzloc.php:182 -msgid "Minimum offset in meters" -msgstr "Afegit mínim en metres" - -#: ../../addon/fuzzloc/fuzzloc.php:186 -msgid "Maximum offset in meters" -msgstr "Afegit màxim en metres" - -#: ../../addon/fuzzloc/fuzzloc.php:191 -msgid "Fuzzloc Settings" -msgstr "Configuració del Fuzzloc" - -#: ../../addon/rtof/rtof.php:45 -msgid "Post to Friendica" -msgstr "Publica a Friendica" - -#: ../../addon/rtof/rtof.php:62 -msgid "rtof Settings saved." -msgstr "S'ha desat la Configuració de rtof." - -#: ../../addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" -msgstr "Permet publicar a xarxes Friendica" - -#: ../../addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" -msgstr "Envia per defecte les entrades públiques cap a Friendica" - -#: ../../addon/rtof/rtof.php:89 -msgid "Friendica API Path" -msgstr "Ruta a l'API de Friendica" - -#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 -msgid "https://{sitename}/api" -msgstr "https://{nomdedomini}/api" - -#: ../../addon/rtof/rtof.php:93 -msgid "Friendica login name" -msgstr "Nom d'usuari a Friendica" - -#: ../../addon/rtof/rtof.php:97 -msgid "Friendica password" -msgstr "Contrasenya a Friendica" - -#: ../../addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" -msgstr "Configuració de Publicació de Hubzilla cap a Friendica" - -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 -#: ../../include/channel.php:1567 -msgid "Status:" -msgstr "Estatus:" - -#: ../../addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "Habilita l'extensió" - -#: ../../addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "Amaga el giny de xat Jappixmini" - -#: ../../addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "Nom a Jabber" - -#: ../../addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "Servidor de Jabber" - -#: ../../addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "URL de l'amfitrió BOSH de Jabber" - -#: ../../addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "Contrassenya de Jabber" - -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "Xifra la contrasenya de Jabber amb la del Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "Contrasenya del Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "Aprova automàticament les sol·licituds de subscripció de contactes de Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "Neteja la llista interna de contactes de Jabber" - -#: ../../addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "Ajuda de configuració" - -#: ../../addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "Paràmetres de Jappix Mini" - -#: ../../addon/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "Bloquejats actualment" - -#: ../../addon/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "No hi ha canals bloquejats" - -#: ../../addon/superblock/superblock.php:120 -msgid "Superblock Settings" -msgstr "Configuració del Superblock" - -#: ../../addon/superblock/superblock.php:345 -msgid "Block Completely" -msgstr "Bloqueja completament" - -#: ../../addon/superblock/superblock.php:394 -msgid "superblock settings updated" -msgstr "S'ha actualitzat la configuració del Superblock" - -#: ../../addon/nofed/nofed.php:42 -msgid "Federate" -msgstr "Federa" - -#: ../../addon/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "S'ha desat la configuració del NoFed." - -#: ../../addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "Permet commutar entre federar o no" - -#: ../../addon/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "Per defecte federa les entrades" - -#: ../../addon/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "Configuració del NoFed" - -#: ../../addon/redred/redred.php:45 -msgid "Post to Red" -msgstr "Publica a Red" - -#: ../../addon/redred/redred.php:60 -msgid "Channel is required." -msgstr "Cal un canal." - -#: ../../addon/redred/redred.php:76 -msgid "redred Settings saved." -msgstr "S'ha desat la configuració del RedRed" - -#: ../../addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" -msgstr "Permet publicar a un altre canal de Hubzilla" - -#: ../../addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" -msgstr "Envia per defecte les entrades públiques cap a l'altre canal de Hubzilla" - -#: ../../addon/redred/redred.php:103 -msgid "Hubzilla API Path" -msgstr "Ruta de l'API de Hubzilla" - -#: ../../addon/redred/redred.php:107 -msgid "Hubzilla login name" -msgstr "Nom d'usuari a l'altre Hubzilla" - -#: ../../addon/redred/redred.php:111 -msgid "Hubzilla channel name" -msgstr "Nom de canal a l'altre Hubzilla" - -#: ../../addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" -msgstr "Configuració del replicador de Hubzilla" - -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "Carpeta d'arxius de registre d'activitat" - -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "Carpeta per desar els registres circulars" - -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "Mida en Bytes del fitxer de registre abans de rotar" - -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "Número de fitxers de registre per a conservar" - -#: ../../addon/frphotos/frphotos.php:92 -msgid "Friendica Photo Album Import" -msgstr "Importa àlbums de fotos de Friendica" - -#: ../../addon/frphotos/frphotos.php:93 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "Aquesta acció importarà tots els teus àlbums de fotos de Friendica a aquest canal." - -#: ../../addon/frphotos/frphotos.php:94 -msgid "Friendica Server base URL" -msgstr "URL base del servidor de Friendica" - -#: ../../addon/frphotos/frphotos.php:95 -msgid "Friendica Login Username" -msgstr "Nom de registre a Friendica" - -#: ../../addon/frphotos/frphotos.php:96 -msgid "Friendica Login Password" -msgstr "Contrasenya a Friendica" - -#: ../../addon/pubcrawl/pubcrawl.php:1136 -msgid "ActivityPub Protocol Settings updated." -msgstr "S'ha actualitzat la configuració del Protocol ActivityPub." - -#: ../../addon/pubcrawl/pubcrawl.php:1145 -msgid "" -"The ActivityPub protocol does not support location independence. Connections" -" you make within that network may be unreachable from alternate channel " -"locations." -msgstr "El Protocol ActivityPub és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal." - -#: ../../addon/pubcrawl/pubcrawl.php:1148 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "Activa el Protocol ActivityPub en aquest canal" - -#: ../../addon/pubcrawl/pubcrawl.php:1151 -msgid "Deliver to ActivityPub recipients in privacy groups" -msgstr "Envia a identitats d'ActivityPub en grups de privacitat" - -#: ../../addon/pubcrawl/pubcrawl.php:1151 -msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" -msgstr "Pot comportar moltes mencions i revelar els teus grups de privacitat." - -#: ../../addon/pubcrawl/pubcrawl.php:1155 -msgid "Send multi-media HTML articles" -msgstr "Envia articles HTML multimèdia" - -#: ../../addon/pubcrawl/pubcrawl.php:1155 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "Incompatible amb alguns serveis de microbloguing com Mastodon" - -#: ../../addon/pubcrawl/pubcrawl.php:1159 -msgid "ActivityPub Protocol Settings" -msgstr "Configuració del Protocol ActivityPub" - -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "Servidors de projecte i Recursos" - -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "Creador del projecte i cap tècnic" - -#: ../../addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "Administradora, desenvolupadora, admin del directori, persona de suport" - -#: ../../addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "I els centenars d'altra gent i organitzacions que han ajudat que Hubzilla fos possible." - -#: ../../addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "Els projectes Redmatrix i Hubzilla són oferts principalment per voluntàries que donen el seu temps i experiència i que fins i tot solen posar-hi diners de la seva butxaca per a compartir serveis amb altres." - -#: ../../addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "No rebem cap mena de finançament corporatiu, ni posem anuncis ni recollim i venem les teves dades personals. Nosaltres no controlem les dades personals, sinó tu." - -#: ../../addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and" -" privacy." -msgstr "Ajuda'ns a mantenir la nostra feina pionera cap a la descentralització, la identitat a la web i la privacitat." - -#: ../../addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "Les teves donacions mantenen els servidors i els serveis corrent, i ens ajuda a oferir noves funcionalitats i continuar el desenvolupament en marxa." - -#: ../../addon/donate/donate.php:60 -msgid "Donate" -msgstr "Dóna" - -#: ../../addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "Tria un projecte, desenvolupador o hub públic per a donar suport amb una donació" - -#: ../../addon/donate/donate.php:63 -msgid "Donate Now" -msgstr "Dóna ara" - -#: ../../addon/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project " -"only)" -msgstr "O bé, fes-te patrocinador/a del projecte Hubzilla" - -#: ../../addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "Indica com vols aparèixer a la llista de patrocinadors: anònim, amb nom, o nom i cognoms" - -#: ../../addon/donate/donate.php:66 -msgid "Sponsor" -msgstr "Patrocinador" - -#: ../../addon/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "Agraïments especials a:" - -#: ../../addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "És un diccionari prou complet d'acords de guitarra. Llista la majoria de maneres possibles de tocar un cert acord, començant des de la base del mànec fins una mica més apunt del dotzè trast, a partir del qual es repeteixen. Ofereix també un parell d'afinacions no estàndards." - -#: ../../addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "Els noms dels acords estan formats per la nota fonamental en notació anglesa (A-G), i modificadors com \"sostingut\" (#) i \"bemoll\" (b). El programa entén la majoria de convencions com maj, min, dim, sus2, sus4 i aug, amb més d'un element potencialment." - -#: ../../addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "Exemples vàlids: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11" - -#: ../../addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "Acords de guitarra" - -#: ../../addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "El diccionari on-line d'acords" - -#: ../../addon/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "Afinació" - -#: ../../addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "Exemple de nom d'acord: Em7" - -#: ../../addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "Disposició per esquerrans" - -#: ../../addon/chords/chords.php:33 -msgid "Quick Reference" -msgstr "Xuleta" - -#: ../../addon/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "Publica a Libertree" - -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "Habilita la publicació a Libertree" - -#: ../../addon/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "Token per a l'API de Libertree" - -#: ../../addon/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "URL del servidor de Libertree" - -#: ../../addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "Publica a Libertree per defecte" - -#: ../../addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "Paràmetres de publicació a Libertree" - -#: ../../addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "S'han actualitzat els paràmetres de Libertree." - -#: ../../addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "Dóna-hi suport amb Flattr!" - -#: ../../addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "S'han actualitzat els paràmetres del giny de Flattr." - -#: ../../addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "Nom a Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "URL del lloc per a donar suport" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "Si la deixes buida, es farà servir la URL del canal" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "Títol del lloc a donar suport" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "Si el deixes buit, es farà servir el nom del canal a Hubzilla" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "Botó estàtic o dinàmic" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "estàtic" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "dinàmic" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "Aliniament del giny" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "esquerra" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "dreta" - -#: ../../addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "Habilita el giny de Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "Opcions del giny de Flattr" - -#: ../../addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" -msgstr "Publica a GNU Social" - -#: ../../addon/statusnet/statusnet.php:195 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Contacta l'administrador del teu lloc.
L'adreça URL de l'API no és vàlida." - -#: ../../addon/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "No s'ha trobat una API de GNU Social a la ruta introduïda." - -#: ../../addon/statusnet/statusnet.php:266 -msgid "GNU social settings updated." -msgstr "S'ha actualitzat la configuració de GNU Social " - -#: ../../addon/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" -msgstr "Claus OAuth de GNU Social diponibles públicament" - -#: ../../addon/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." -msgstr "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.
Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)" - -#: ../../addon/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" -msgstr "Proporciona credencials OAuth pròpies" - -#: ../../addon/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as" -" an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." -msgstr "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.
Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social." - -#: ../../addon/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" -msgstr "Clau de consumidor OAuth" - -#: ../../addon/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" -msgstr "Secret de consumidor OAuth" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Base API Path" -msgstr "Ruta arrel de l'API" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Remember the trailing /" -msgstr "Recorda la / final" - -#: ../../addon/statusnet/statusnet.php:345 -msgid "GNU social application name" -msgstr "Nom de l'aplicació GNU Social" - -#: ../../addon/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." -msgstr "Per tal de connectar al teu compte de GNU Social, fes clic al botó de sota per a obtenir un codi de seguretat de GNU Social. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques" - -#: ../../addon/statusnet/statusnet.php:370 -msgid "Log in with GNU social" -msgstr "Inicia la sessió amb GNU Social" - -#: ../../addon/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" -msgstr "Copia el codi de seguretat de GNU Social aquí" - -#: ../../addon/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" -msgstr "Aborta el procés de connexió" - -#: ../../addon/statusnet/statusnet.php:385 -msgid "Current GNU social API is" -msgstr "La ruta actual a l'API de GNU Social és" - -#: ../../addon/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" -msgstr "Aborta la connexió a GNU Social" - -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 -msgid "Currently connected to: " -msgstr "Actualment estàs connectat/da a:" - -#: ../../addon/statusnet/statusnet.php:406 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a GNU Social per a la teva identitat portarà a una pàgina en blanc avisant de la restricció." - -#: ../../addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "Permet publicar a GNU Social" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "Si s'activa, les entrades públiques poden ser penjades al compte associat de GNU Social" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" -msgstr "Per defecte publica a GNU Social" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de GNU Social" - -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 -msgid "Clear OAuth configuration" -msgstr "Esborra la configuració de OAuth" - -#: ../../addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" -msgstr "Configuració de Publica a GNU Social" - -#: ../../addon/statusnet/statusnet.php:892 -msgid "API URL" -msgstr "Adreça URL de l'API" - -#: ../../addon/statusnet/statusnet.php:895 -msgid "Application name" -msgstr "Nom de l'aplicació" - -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "Codi QR" - -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "Generador de codi QR" - -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "Escriu un text" - -#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 -msgid "Invalid game." -msgstr "El joc no és vàlid." - -#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 -msgid "You are not a player in this game." -msgstr "No ets un jugador en aquest joc." - -#: ../../addon/chess/chess.php:415 -msgid "You must be a local channel to create a game." -msgstr "Has de crear la partida des d'un canal local." - -#: ../../addon/chess/chess.php:433 -msgid "You must select one opponent that is not yourself." -msgstr "Has de triar un oponent diferent a tu mateix/a." - -#: ../../addon/chess/chess.php:444 -msgid "Random color chosen." -msgstr "S'ha escollit un color aleatori." - -#: ../../addon/chess/chess.php:452 -msgid "Error creating new game." -msgstr "S'ha produït un error en crear la partida." - -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 -msgid "Requested channel is not available." -msgstr "El canal demanat no està disponible." - -#: ../../addon/chess/chess.php:500 -msgid "You must select a local channel /chess/channelname" -msgstr "Has de triar un canal local /chess/nomdelcanal" - -#: ../../addon/chess/chess.php:1066 -msgid "Enable notifications" -msgstr "Activa les notificacions" - -#: ../../addon/twitter/twitter.php:99 -msgid "Post to Twitter" -msgstr "Publica a Twitter" - -#: ../../addon/twitter/twitter.php:155 -msgid "Twitter settings updated." -msgstr "S'ha actualitzat la configuració de Twitter." - -#: ../../addon/twitter/twitter.php:184 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "No s'ha trobat cap parell de claus de Twitter. Contacte l'administrador del teu lloc." - -#: ../../addon/twitter/twitter.php:206 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input" -" box below and submit the form. Only your public posts will" -" be posted to Twitter." -msgstr "L'extensió de Twitter està activada però encara no t'has connectat a cap compte de Twitter. Per a fer-ho, fes clic al botó de sota per a obtenir un PIN des de Twitter. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques" - -#: ../../addon/twitter/twitter.php:208 -msgid "Log in with Twitter" -msgstr "Inicia la sessió amb Twitter" - -#: ../../addon/twitter/twitter.php:211 -msgid "Copy the PIN from Twitter here" -msgstr "Copia el PIN de Twitter aquí" - -#: ../../addon/twitter/twitter.php:238 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a Twitter per a la teva identitat portarà a una pàgina en blanc avisant de la restricció." - -#: ../../addon/twitter/twitter.php:243 -msgid "Allow posting to Twitter" -msgstr "Permet publicar a Twitter" - -#: ../../addon/twitter/twitter.php:243 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "Si s'activa, les entrades públiques poden ser penjades al compte associat de Twitter" - -#: ../../addon/twitter/twitter.php:247 -msgid "Twitter post length" -msgstr "Llargada del tuit" - -#: ../../addon/twitter/twitter.php:247 -msgid "Maximum tweet length" -msgstr "Llargada màxima de tuit" - -#: ../../addon/twitter/twitter.php:252 -msgid "Send public postings to Twitter by default" -msgstr "Envia per defecte les entrades públiques cap a Twitter" - -#: ../../addon/twitter/twitter.php:252 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de Twitter" - -#: ../../addon/twitter/twitter.php:270 -msgid "Twitter Post Settings" -msgstr "Configuració de Twitter" - -#: ../../addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" -msgstr "Desactiva la funcionalitat" - -#: ../../addon/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." -msgstr "Amaga el botó i mostra les icones directament." - -#: ../../addon/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" -msgstr "Configuració de Smileybutton" - -#: ../../addon/cart/myshop.php:44 -msgid "Access Denied." -msgstr "S'ha denegat l'accés." - -#: ../../addon/cart/myshop.php:125 ../../addon/cart/cart.php:1324 -msgid "Order Not Found" -msgstr "No s'ha trobat l'ordre" - -#: ../../addon/cart/myshop.php:155 ../../addon/cart/myshop.php:191 -#: ../../addon/cart/myshop.php:225 ../../addon/cart/myshop.php:273 -#: ../../addon/cart/myshop.php:308 ../../addon/cart/myshop.php:331 -msgid "Access Denied" -msgstr "S'ha denegat l'accés" - -#: ../../addon/cart/myshop.php:200 ../../addon/cart/myshop.php:234 -#: ../../addon/cart/myshop.php:283 ../../addon/cart/myshop.php:341 -msgid "Invalid Item" -msgstr "L'article és invàlid" - -#: ../../addon/cart/cart.php:467 -msgid "[cart] Item Added" -msgstr "[cart] S'ha afegit un article" - -#: ../../addon/cart/cart.php:851 -msgid "Order already checked out." -msgstr "La comanda ja s'ha servit." - -#: ../../addon/cart/cart.php:1204 -msgid "Enable Shopping Cart" -msgstr "Habilita la cistella de la compra" - -#: ../../addon/cart/cart.php:1211 -msgid "Enable Test Catalog" -msgstr "Habilita un catàleg de prova" - -#: ../../addon/cart/cart.php:1219 -msgid "Enable Manual Payments" -msgstr "Habilita els pagaments manuals" - -#: ../../addon/cart/cart.php:1238 -msgid "Base Merchant Currency" -msgstr "Moneda base del comerç" - -#: ../../addon/cart/cart.php:1250 -msgid "Cart - Base Settings" -msgstr "Carretó - Configuració bàsica" - -#: ../../addon/cart/cart.php:1271 ../../addon/cart/cart.php:1274 -msgid "Shop" -msgstr "Botiga" - -#: ../../addon/cart/cart.php:1401 -msgid "You must be logged into the Grid to shop." -msgstr "Cal haver iniciat sessió per a poder comprar." - -#: ../../addon/cart/cart.php:1411 -msgid "Cart Not Enabled (profile: " -msgstr "La cistella no està habilitada (perfil:" - -#: ../../addon/cart/cart.php:1442 -#: ../../addon/cart/submodules/paypalbutton.php:417 -#: ../../addon/cart/manual_payments.php:37 -msgid "Order not found." -msgstr "No s'ha trobat l'ordre." - -#: ../../addon/cart/cart.php:1451 -msgid "Access denied." -msgstr "S'ha denegat l'accés." - -#: ../../addon/cart/cart.php:1503 ../../addon/cart/cart.php:1647 -msgid "No Order Found" -msgstr "No s'ha trobat cap ordre" - -#: ../../addon/cart/cart.php:1512 -msgid "An unknown error has occurred Please start again." -msgstr "S'ha produït un error inesperat. Torna-ho a provar." - -#: ../../addon/cart/cart.php:1680 -msgid "Invalid Payment Type. Please start again." -msgstr "El tipus de pagament no és vàlid. Torna a començar." - -#: ../../addon/cart/cart.php:1687 -msgid "Order not found" -msgstr "No s'ha trobat l'ordre" - -#: ../../addon/cart/submodules/paypalbutton.php:97 -msgid "Enable Paypal Button Module" -msgstr "Activa el mòdul del botó de Paypal" - -#: ../../addon/cart/submodules/paypalbutton.php:102 -msgid "Use Production Key" -msgstr "Fes servir la clau de producció" - -#: ../../addon/cart/submodules/paypalbutton.php:109 -msgid "Paypal Sandbox Client Key" -msgstr "Clau de client de Paypal del banc de proves" - -#: ../../addon/cart/submodules/paypalbutton.php:116 -msgid "Paypal Sandbox Secret Key" -msgstr "Clau secreta de Paypal del banc de proves" - -#: ../../addon/cart/submodules/paypalbutton.php:122 -msgid "Paypal Production Client Key" -msgstr "Clau de client de Paypal de producció" - -#: ../../addon/cart/submodules/paypalbutton.php:129 -msgid "Paypal Production Secret Key" -msgstr "Clau secreta de Paypal de producció" - -#: ../../addon/cart/submodules/paypalbutton.php:143 -msgid "Cart - Paypal Addon" -msgstr "Carretó - Extensió de Paypal" - -#: ../../addon/cart/submodules/paypalbutton.php:277 -msgid "Paypal button payments are not enabled." -msgstr "El botó de pagament per Paypal no està habilitat." - -#: ../../addon/cart/submodules/paypalbutton.php:295 -msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." -msgstr "El botó de pagament per Paypal no està ben configurat. Escull un altre mètode de pagament." - -#: ../../addon/cart/submodules/hzservices.php:71 -msgid "Enable Hubzilla Services Module" -msgstr "Activa el mòdul \"Serveis de Hubzilla\"" - -#: ../../addon/cart/submodules/hzservices.php:77 -msgid "Cart - Hubzilla Services Addon" -msgstr "Carretó - Extensió \"Serveis de Hubzilla\"" - -#: ../../addon/cart/submodules/hzservices.php:169 -msgid "New Sku" -msgstr "Nova SKU" - -#: ../../addon/cart/submodules/hzservices.php:204 -msgid "Cannot save edits to locked item." -msgstr "No s'han pogut desar els canvis a l'article perquè està bloquejat." - -#: ../../addon/cart/submodules/hzservices.php:252 -#: ../../addon/cart/submodules/hzservices.php:339 -msgid "SKU not found." -msgstr "Non s'ha trobat l'SKU" - -#: ../../addon/cart/submodules/hzservices.php:305 -#: ../../addon/cart/submodules/hzservices.php:309 -msgid "Invalid Activation Directive." -msgstr "La directiva d'activació és invàlida." - -#: ../../addon/cart/submodules/hzservices.php:380 -#: ../../addon/cart/submodules/hzservices.php:384 -msgid "Invalid Deactivation Directive." -msgstr "La directiva de desactivació és invàlida." - -#: ../../addon/cart/submodules/hzservices.php:570 -msgid "Add to this privacy group" -msgstr "Afegeix-ho al teu grup de privacitat" - -#: ../../addon/cart/submodules/hzservices.php:586 -msgid "Set user service class" -msgstr "Defineix la classe de servei de l'usuària" - -#: ../../addon/cart/submodules/hzservices.php:613 -msgid "You must be using a local account to purchase this service." -msgstr "Cal una sessió iniciada en aquest hub per a comprar el servei." - -#: ../../addon/cart/submodules/hzservices.php:651 -msgid "Changes Locked" -msgstr "Article bloquejat" - -#: ../../addon/cart/submodules/hzservices.php:655 -msgid "Item available for purchase." -msgstr "Article a la venda." - -#: ../../addon/cart/submodules/hzservices.php:662 -msgid "Price" -msgstr "Preu" - -#: ../../addon/cart/submodules/hzservices.php:665 -msgid "Add buyer to privacy group" -msgstr "Afegeix el comprador a un grup de privacitat" - -#: ../../addon/cart/submodules/hzservices.php:670 -msgid "Add buyer as connection" -msgstr "Connecta automàticament amb els canals de les compradores" - -#: ../../addon/cart/submodules/hzservices.php:677 -#: ../../addon/cart/submodules/hzservices.php:718 -msgid "Set Service Class" -msgstr "Defineix la classe de servei" - -#: ../../addon/cart/manual_payments.php:7 -msgid "Error: order mismatch. Please try again." -msgstr "Error: l'ordre no coincideix. Torna-ho a provar." - -#: ../../addon/cart/manual_payments.php:30 -msgid "Manual payments are not enabled." -msgstr "El pagament manual no està habilitat." - -#: ../../addon/cart/manual_payments.php:46 -msgid "Finished" -msgstr "Operació completa" - -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Aquest lloc web analitza el trànsit amb l'eina Piwik." - -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Si no vols que es registrin les teves visites d'aquesta manera, pots crear una cookie per fer que Piwik deixi de fer-ho. En anglès es coneix com \"opt-out\"." - -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "Adreça URL arrel del Piwik" - -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "Adreça absoluta a la instaŀlació de Piwik: sense protocol (http[s]) amb una barra (/) final" - -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "Identitat del lloc" - -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "Vols mostrar un enllaç per poder crear una cookie per evitar el seguiment?" - -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "Seguiment asíncron" - -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "Activa el seguiment d'errors de Javascript al frontend " - -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "Aquesta funcionalitat necessita una versió del Piwik >= 2.2.0" - -#: ../../addon/tour/tour.php:76 -msgid "Edit your profile and change settings." -msgstr "Modifica el teu perfil i canvia la configuració." - -#: ../../addon/tour/tour.php:77 -msgid "Click here to see activity from your connections." -msgstr "Clica aquí per a veure l'activitat de les teves connexions." - -#: ../../addon/tour/tour.php:78 -msgid "Click here to see your channel home." -msgstr "Clica aquí per a veure el mur del teu canal." - -#: ../../addon/tour/tour.php:79 -msgid "You can access your private messages from here." -msgstr "Pots accedir als teus missatges privats des d'aquí." - -#: ../../addon/tour/tour.php:80 -msgid "Create new events here." -msgstr "Pots crear esdeveniments des d'aquí." - -#: ../../addon/tour/tour.php:81 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "Pots acceptar connexions noves des d'aquí i canviar els permisos de les existents. També pots crear grups de contactes, per exemple." - -#: ../../addon/tour/tour.php:82 -msgid "System notifications will arrive here" -msgstr "Les notificacions t'arriben per aquí" - -#: ../../addon/tour/tour.php:83 -msgid "Search for content and users" -msgstr "Cerca contingut i usuaris" - -#: ../../addon/tour/tour.php:84 -msgid "Browse for new contacts" -msgstr "Explora per trobar nous contactes" - -#: ../../addon/tour/tour.php:85 -msgid "Launch installed apps" -msgstr "Obre aplicacions instaŀlades" - -#: ../../addon/tour/tour.php:86 -msgid "Looking for help? Click here." -msgstr "Que busques ajuda? Clica aquí." - -#: ../../addon/tour/tour.php:87 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "Hi ha hagut activitat nova a la teva xarxa. Clica aquí a veure què ha passat!" - -#: ../../addon/tour/tour.php:88 -msgid "You have received a new private message. Click here to see from who!" -msgstr "Has rebut un missatge privat. A veure de qui és!" - -#: ../../addon/tour/tour.php:89 -msgid "There are events this week. Click here too see which!" -msgstr "Hi ha esdeveniments aquesta setmana. Clica per veure quins!" - -#: ../../addon/tour/tour.php:90 -msgid "You have received a new introduction. Click here to see who!" -msgstr "Has rebut una presentació. Clica per veure de qui és!" - -#: ../../addon/tour/tour.php:91 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "Tens una notificació de sistema. Clica per veure què ha passat!" - -#: ../../addon/tour/tour.php:94 -msgid "Click here to share text, images, videos and sound." -msgstr "Clica aquí per a compartir text, imatges, vídeos, i sons." - -#: ../../addon/tour/tour.php:95 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "Si vols, pots posar un títol a les teves entrades. És una bona idea per a entrades llargues." - -#: ../../addon/tour/tour.php:96 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "Si afegeixes categories serà més fàcil de trobar l'entrada més endavant." - -#: ../../addon/tour/tour.php:97 -msgid "Share photos, links, location, etc." -msgstr "Comparteix fotos, enllaços, la ubicació, etc." - -#: ../../addon/tour/tour.php:98 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "Vols compartir un contingut només durant una estona? Fes-lo caducar a un cert moment." - -#: ../../addon/tour/tour.php:99 -msgid "You can password protect content." -msgstr "Pots protegir el contingut per contrasenya." - -#: ../../addon/tour/tour.php:100 -msgid "Choose who you share with." -msgstr "Escull amb qui ho vols compartir." - -#: ../../addon/tour/tour.php:102 -msgid "Click here when you are done." -msgstr "I clica aquí quan acabis." - -#: ../../addon/tour/tour.php:105 -msgid "Adjust from which channels posts should be displayed." -msgstr "Tria des de quins canals s'haurien de mostrar les entrades." - -#: ../../addon/tour/tour.php:106 -msgid "Only show posts from channels in the specified privacy group." -msgstr "Mostra només entrades de canals especificats en el grup de privacitat." - -#: ../../addon/tour/tour.php:110 -msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "Pots trobar fàcilment entrades que continguin etiquetes (paraules clau precedides per un símbol \"#\")." - -#: ../../addon/tour/tour.php:111 -msgid "Easily find posts in given category." -msgstr "Troba fàcilment entrades en una certa categoria." - -#: ../../addon/tour/tour.php:112 -msgid "Easily find posts by date." -msgstr "Troba fàcilment entrades per data." - -#: ../../addon/tour/tour.php:113 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we" -" think you might find interesting." -msgstr "Els usuaris que et suggerim s'han mostrat voluntaris a ser suggerits perquè els puguis afegir. Que potser t'interessa connectar-t'hi?" - -#: ../../addon/tour/tour.php:114 -msgid "Here you see channels you have connected to." -msgstr "Aquí pots veure els canals als quals estàs connectat/da." - -#: ../../addon/tour/tour.php:115 -msgid "Save your search so you can repeat it at a later date." -msgstr "Si deses la teva cerca la podràs repetir més tard." - -#: ../../addon/tour/tour.php:118 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It" -" is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "Si veus aquesta icona, pots donar per fet que el/la remitent és qui diu ser. De tota manera, és habitual que no es pugui verificar, i per tant, que de vegades falti aquesta icona. Però és només una capa més de seguretat del sistema." - -#: ../../addon/tour/tour.php:119 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "Alerta! Sembla que algú ha intentat falsificar un missatge! Pot ser que el remitent d'aquest missatge no sigui qui diu ser!" - -#: ../../addon/tour/tour.php:126 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "Benvingut/da a Hubzilla! T'agradaria fer un tur pel lloc?

Pots pausar-lo en qualsevol moment i continuar més tard on ho havies deixat. Per fer-ho navega a una altra pàgina o recarrega aquesta.

També pots avançar prement la tecla de retorn" - -#: ../../addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "Compartició d'identitats extesa" - -#: ../../addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "Comparteix la teva identitat amb tota la web. Si es deshabilita, la identitat només es comparteix amb altres nodes de $Projectname." - -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tres en ratlla 3D" - -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "Tres en ratlla 3D" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game" -msgstr "Nova partida" - -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "Nova partida amb desavantatge" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "El tres en ratlla en 3D és com el clàssic en 2D excepte que es juga en diversos nivells simultàniament." - -#: ../../addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "En aquest cas hi ha tres nivells. Guanya qui aconsegueixi fer 3 en ratlla en qualsevol nivell, així com amunt, avall, o en diagonal en qualsevol nivell" - -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "Una partida amb desavantatge desactiva la posició del centre perquè el jugador que aconsegueix aquest quadrat sol aconseguir un avantatge injust." - -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "Comences!" - -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "Aquest cop començo jo!" - -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "Has guanyat!" - -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "Empat!" - -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "He guanyat!" - -#: ../../addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "Missatge per mostrar en cada pàgina d'aquest servidor" - -#: ../../addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" -msgstr "Configuració del Pageheader" - -#: ../../addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." -msgstr "S'ha desat la configuració del Pageheader." - -#: ../../addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "Autentica'm automàticament només en hubs on hi tinc connexions" - -#: ../../addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "Per defecte se t'autentica en qualsevol hub de la xarxa" - -#: ../../addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "Configuració de l'Authchoose" - -#: ../../addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "S'ha actualitzat la configuració de l'Authchoose." - -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "solitari/ària" - -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "borratxo/a" - -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "calent/a" - -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "perplex/a" - -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "fotut/da" - -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "rematadament fotut/da" - -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "boig/boja" - -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "ferit/da" - -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "amb son" - -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "de mal humor" - -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "flipat/da" - -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "semi-conscient" - -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "enamorat/da" - -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "en zel" - -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "nu/nua" - -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "pudent/a" - -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "suat/da" - -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "sagnant" - -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "victoriós/a" - -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "derrotat/da" - -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "envejós/a" - -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "gelós/a" - -#: ../../addon/xmpp/xmpp.php:31 -msgid "XMPP settings updated." -msgstr "S'ha actualitzat la configuració de l'XMPP." - -#: ../../addon/xmpp/xmpp.php:53 -msgid "Enable Chat" -msgstr "Activa el xat" - -#: ../../addon/xmpp/xmpp.php:58 -msgid "Individual credentials" -msgstr "Credencials individuals" - -#: ../../addon/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" -msgstr "Servidor de Jabber BOSH" - -#: ../../addon/xmpp/xmpp.php:69 -msgid "XMPP Settings" -msgstr "Configuració XMPP" - -#: ../../addon/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" -msgstr "Nom de domini de Jabber BOSH" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "Use central userbase" -msgstr "Fes servir una base d'usuari/es central" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "Si s'activa, s'iniciarà sessió automàticament als membres en un servidor ejabberd. Aquest ha d'estar instaŀlat en la mateixa màquina amb credencials sincronitzades, mitjançant l'script \"auth_ejabberd.php\"." - -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "A qui agrado?" - -#: ../../addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "Has iniciat sessió a pumpio." - -#: ../../addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "torna a la pàgina de configuració" - -#: ../../addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "Publica a Pump.io" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "Nom del servidor de Pump.io" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "Sense \"http://\" ni \"https://\"" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "Nom d'usuari a Pump.io" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "Sense el nom de servidor" - -#: ../../addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "No has iniciat sessió a pumpio" - -#: ../../addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "[Re]autentica la teva connexió a pump.io" - -#: ../../addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "Activa l'extensió Publica a pump.io" - -#: ../../addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "Publica a Pump.io per defecte" - -#: ../../addon/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "Vols que les entrades siguin públiques?" - -#: ../../addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "Replica totes les entrades públiques" - -#: ../../addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "Configuració de les entrades de pump.io" - -#: ../../addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "S'ha desat la configuració de pump.io" - -#: ../../addon/ldapauth/ldapauth.php:70 -msgid "An account has been created for you." -msgstr "S'ha creat un compte nou." - -#: ../../addon/ldapauth/ldapauth.php:77 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "L'autenticació ha tingut èxit però no s'ha pogut crear un compte perquè no està permès." - -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Cerca %1$s(%2$s)" - -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "Cerca $Projectname" - -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "Importa l'emmagatzematge d'arxius de Redmatrix" - -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "Importa tots els teus arxius de núvol cap aquest canal." - -#: ../../addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "arxiu" - -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "Enviar correus a tothom" - -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "S'ha/n enviat %1$d de %2$d missatges." - -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "Envia un correu a tots els membres del hub." - -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "Adreça del remitent" - -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "Mode de proves (envia'l només a l'administrador del hub)" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Freqüentment" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Horariament" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos vegades al dia" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariament" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Setmanalment" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualment" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualment Masculí" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualment Femení" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Més aviat Masculí" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Més Aviat Femení" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Canvi de Sexe" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexual" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/selectors.php:49 ../../include/channel.php:1484 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/selectors.php:49 ../../include/channel.php:1486 -msgid "Non-specific" -msgstr "Indefinit" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indecís" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Homes" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Dones" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbianes" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sense Preferències" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Verge" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Desviat" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetixiste" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgies" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Solter" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solitari" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No Disponible" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Aplastat" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Encapritxat" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Promés" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infidel" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Adicte al Sexe" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amics amb Beneficis" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Ocupat" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casat" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casat Imaginàriament" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Parella" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitant" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Tradició" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Feliç" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "No Cerco" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Llibertí" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Traït" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separat" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciat" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciat Imaginàriament" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vidu/ua" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incert" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es Complicat" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No Et Fa Res" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregunta" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "li agrada %2$s de %1$s" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "no li agrada %2$s de %1$s" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s esta ara connectat amb %2$s" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a esperonat %2$s" - -#: ../../include/conversation.php:251 ../../include/text.php:1140 -#: ../../include/text.php:1144 -msgid "poked" -msgstr "esperonat" - -#: ../../include/conversation.php:739 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Mostra el perfil @%s de %s" - -#: ../../include/conversation.php:759 -msgid "Categories:" -msgstr "Categories:" - -#: ../../include/conversation.php:760 -msgid "Filed under:" -msgstr "Arxivar a:" - -#: ../../include/conversation.php:785 -msgid "View in context" -msgstr "Veure en context" - -#: ../../include/conversation.php:886 -msgid "remove" -msgstr "treu" - -#: ../../include/conversation.php:890 -msgid "Loading..." -msgstr "Carregant..." - -#: ../../include/conversation.php:891 -msgid "Delete Selected Items" -msgstr "Esborra els Articles Seleccionats" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Veure l'Origen" - -#: ../../include/conversation.php:944 -msgid "Follow Thread" -msgstr "Segueix el Fil" - -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Fil Abandonat" - -#: ../../include/conversation.php:1067 -msgid "Edit Connection" -msgstr "Modifica la Connexió" - -#: ../../include/conversation.php:1077 -msgid "Message" -msgstr "Missatge" - -#: ../../include/conversation.php:1211 -#, php-format -msgid "%s likes this." -msgstr "%s agrada això." - -#: ../../include/conversation.php:1211 -#, php-format -msgid "%s doesn't like this." -msgstr "%s no agrada això." - -#: ../../include/conversation.php:1215 -#, 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:1217 -#, 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:1223 -msgid "and" -msgstr "i" - -#: ../../include/conversation.php:1226 -#, 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:1227 -#, php-format -msgid "%s like this." -msgstr "%s agrada això." - -#: ../../include/conversation.php:1227 -#, php-format -msgid "%s don't like this." -msgstr "%s no agrada això." - -#: ../../include/conversation.php:1270 -msgid "Set your location" -msgstr "Ajusta la teva ubicació" - -#: ../../include/conversation.php:1271 -msgid "Clear browser location" -msgstr "Treu la localització del navegador" - -#: ../../include/conversation.php:1287 -msgid "Embed (existing) photo from your photo albums" -msgstr "Incrusta una imatge existent dels teus àlbums." - -#: ../../include/conversation.php:1323 -msgid "Tag term:" -msgstr "Paraula de l'Etiqueta:" - -#: ../../include/conversation.php:1324 -msgid "Where are you right now?" -msgstr "On ets ara?" - -#: ../../include/conversation.php:1329 -msgid "Choose a different album..." -msgstr "Tria un àlbum diferent..." - -#: ../../include/conversation.php:1333 -msgid "Comments enabled" -msgstr "S'han activat els comentaris" - -#: ../../include/conversation.php:1334 -msgid "Comments disabled" -msgstr "S'han activat els comentaris" - -#: ../../include/conversation.php:1383 -msgid "Page link name" -msgstr "Nom de la pàgina enllaçada" - -#: ../../include/conversation.php:1386 -msgid "Post as" -msgstr "Envia com" - -#: ../../include/conversation.php:1400 -msgid "Toggle voting" -msgstr "Commutar votació" - -#: ../../include/conversation.php:1403 -msgid "Disable comments" -msgstr "Desactiva els comentaris" - -#: ../../include/conversation.php:1404 -msgid "Toggle comments" -msgstr "Commuta l'estat dels comentaris" - -#: ../../include/conversation.php:1412 -msgid "Categories (optional, comma-separated list)" -msgstr "Categories (opcional, llista separada per comes)" - -#: ../../include/conversation.php:1435 -msgid "Other networks and post services" -msgstr "Altres xarxes i serveis de correu" - -#: ../../include/conversation.php:1441 -msgid "Set publish date" -msgstr "Ajusta la data de publicació" - -#: ../../include/conversation.php:1702 -msgid "Commented Order" -msgstr "Ordenar per Comentaris" - -#: ../../include/conversation.php:1705 -msgid "Sort by Comment Date" -msgstr "Ordenar per Data del Comentari" - -#: ../../include/conversation.php:1709 -msgid "Posted Order" -msgstr "Ordenar per Entrades" - -#: ../../include/conversation.php:1712 -msgid "Sort by Post Date" -msgstr "Ordenar per Data d' Entrada" - -#: ../../include/conversation.php:1720 -msgid "Posts that mention or involve you" -msgstr "Entrades que et mencionen o involucren" - -#: ../../include/conversation.php:1729 -msgid "Activity Stream - by date" -msgstr "Activitat del Flux - per data" - -#: ../../include/conversation.php:1735 -msgid "Starred" -msgstr "Preferit" - -#: ../../include/conversation.php:1738 -msgid "Favourite Posts" -msgstr "Entrades Favorites" - -#: ../../include/conversation.php:1745 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1748 -msgid "Posts flagged as SPAM" -msgstr "Entrades marcades com a SPAM" - -#: ../../include/conversation.php:1823 ../../include/nav.php:373 -msgid "Status Messages and Posts" -msgstr "Estat dels Missatges i Entrades" - -#: ../../include/conversation.php:1836 ../../include/nav.php:386 -msgid "Profile Details" -msgstr "Detalls del Perfil" - -#: ../../include/conversation.php:1846 ../../include/nav.php:396 -#: ../../include/photos.php:667 -msgid "Photo Albums" -msgstr "Albums de Fotos" - -#: ../../include/conversation.php:1854 ../../include/nav.php:404 -msgid "Files and Storage" -msgstr "Arxius i Emmagatzegament" - -#: ../../include/conversation.php:1891 ../../include/nav.php:439 -msgid "Bookmarks" -msgstr "Marcadors" - -#: ../../include/conversation.php:1894 ../../include/nav.php:442 -msgid "Saved Bookmarks" -msgstr "Marcadors desats" - -#: ../../include/conversation.php:1905 ../../include/nav.php:453 -msgid "View Cards" -msgstr "Mostra les targetes" - -#: ../../include/conversation.php:1913 -msgid "articles" -msgstr "articles" - -#: ../../include/conversation.php:1916 ../../include/nav.php:464 -msgid "View Articles" -msgstr "Mostra els articles" - -#: ../../include/conversation.php:1927 ../../include/nav.php:476 -msgid "View Webpages" -msgstr "Mostra les pàgines web" - -#: ../../include/conversation.php:1996 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Assistint" -msgstr[1] "Assistint" - -#: ../../include/conversation.php:1999 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Desassistint" -msgstr[1] "Desassistint" - -#: ../../include/conversation.php:2002 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indecís" -msgstr[1] "Indecisos" - -#: ../../include/conversation.php:2005 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Acord" -msgstr[1] "Acords" - -#: ../../include/conversation.php:2008 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Desacord" -msgstr[1] "Desacords" - -#: ../../include/conversation.php:2011 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Abstenirse" -msgstr[1] "Abstenirse" - -#: ../../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/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "marcadors de %1$s" - -#: ../../include/import.php:25 -msgid "Unable to import a removed channel." -msgstr "No s'ha pogut importar un canal esborrat." - -#: ../../include/import.php:51 -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:116 -msgid "Cloned channel not found. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." - -#: ../../include/text.php:492 -msgid "prev" -msgstr "prev" - -#: ../../include/text.php:494 -msgid "first" -msgstr "primer" - -#: ../../include/text.php:523 -msgid "last" -msgstr "últim" - -#: ../../include/text.php:526 -msgid "next" -msgstr "pròxim" - -#: ../../include/text.php:537 -msgid "older" -msgstr "el més antic" - -#: ../../include/text.php:539 -msgid "newer" -msgstr "El més nou" - -#: ../../include/text.php:963 -msgid "No connections" -msgstr "Sense Connexions" - -#: ../../include/text.php:995 -#, php-format -msgid "View all %s connections" -msgstr "Veure totes les connexions de %s" - -#: ../../include/text.php:1051 -#, php-format -msgid "Network: %s" -msgstr "Xarxa: %s" - -#: ../../include/text.php:1140 ../../include/text.php:1144 -msgid "poke" -msgstr "esperona" - -#: ../../include/text.php:1145 -msgid "ping" -msgstr "coloca" - -#: ../../include/text.php:1145 -msgid "pinged" -msgstr "colocat" - -#: ../../include/text.php:1146 -msgid "prod" -msgstr "picar" - -#: ../../include/text.php:1146 -msgid "prodded" -msgstr "picat" - -#: ../../include/text.php:1147 -msgid "slap" -msgstr "bufetada" - -#: ../../include/text.php:1147 -msgid "slapped" -msgstr "bufetejat" - -#: ../../include/text.php:1148 -msgid "finger" -msgstr "senyal" - -#: ../../include/text.php:1148 -msgid "fingered" -msgstr "senyalat" - -#: ../../include/text.php:1149 -msgid "rebuff" -msgstr "menyspreu" - -#: ../../include/text.php:1149 -msgid "rebuffed" -msgstr "menyspreuat" - -#: ../../include/text.php:1172 -msgid "happy" -msgstr "feliç" - -#: ../../include/text.php:1173 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1174 -msgid "mellow" -msgstr "melós" - -#: ../../include/text.php:1175 -msgid "tired" -msgstr "cansat" - -#: ../../include/text.php:1176 -msgid "perky" -msgstr "turgent" - -#: ../../include/text.php:1177 -msgid "angry" -msgstr "enfadat" - -#: ../../include/text.php:1178 -msgid "stupefied" -msgstr "estupefacte" - -#: ../../include/text.php:1179 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1180 -msgid "interested" -msgstr "Interessat" - -#: ../../include/text.php:1181 -msgid "bitter" -msgstr "amargat" - -#: ../../include/text.php:1182 -msgid "cheerful" -msgstr "feliç" - -#: ../../include/text.php:1183 -msgid "alive" -msgstr "viu" - -#: ../../include/text.php:1184 -msgid "annoyed" -msgstr "molest" - -#: ../../include/text.php:1185 -msgid "anxious" -msgstr "ansiós" - -#: ../../include/text.php:1186 -msgid "cranky" -msgstr "malagaitós" - -#: ../../include/text.php:1187 -msgid "disturbed" -msgstr "transtornat" - -#: ../../include/text.php:1188 -msgid "frustrated" -msgstr "frustrat" - -#: ../../include/text.php:1189 -msgid "depressed" -msgstr "deprimit" - -#: ../../include/text.php:1190 -msgid "motivated" -msgstr "motivat" - -#: ../../include/text.php:1191 -msgid "relaxed" -msgstr "relaxat" - -#: ../../include/text.php:1192 -msgid "surprised" -msgstr "sorprès" - -#: ../../include/text.php:1371 ../../include/js_strings.php:86 -msgid "Monday" -msgstr "Dilluns" - -#: ../../include/text.php:1371 ../../include/js_strings.php:87 -msgid "Tuesday" -msgstr "Dimarts" - -#: ../../include/text.php:1371 ../../include/js_strings.php:88 -msgid "Wednesday" -msgstr "Dimecres" - -#: ../../include/text.php:1371 ../../include/js_strings.php:89 -msgid "Thursday" -msgstr "Dijous" - -#: ../../include/text.php:1371 ../../include/js_strings.php:90 -msgid "Friday" -msgstr "Divendres" - -#: ../../include/text.php:1371 ../../include/js_strings.php:91 -msgid "Saturday" -msgstr "Dissabte" - -#: ../../include/text.php:1371 ../../include/js_strings.php:85 -msgid "Sunday" -msgstr "Diumenge" - -#: ../../include/text.php:1375 ../../include/js_strings.php:61 -msgid "January" -msgstr "Gener" - -#: ../../include/text.php:1375 ../../include/js_strings.php:62 -msgid "February" -msgstr "Febrer" - -#: ../../include/text.php:1375 ../../include/js_strings.php:63 -msgid "March" -msgstr "Març" - -#: ../../include/text.php:1375 ../../include/js_strings.php:64 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1375 -msgid "May" -msgstr "Maig" - -#: ../../include/text.php:1375 ../../include/js_strings.php:66 -msgid "June" -msgstr "Juny" - -#: ../../include/text.php:1375 ../../include/js_strings.php:67 -msgid "July" -msgstr "Juliol" - -#: ../../include/text.php:1375 ../../include/js_strings.php:68 -msgid "August" -msgstr "Agost" - -#: ../../include/text.php:1375 ../../include/js_strings.php:69 -msgid "September" -msgstr "Setembre" - -#: ../../include/text.php:1375 ../../include/js_strings.php:70 -msgid "October" -msgstr "Octubre" - -#: ../../include/text.php:1375 ../../include/js_strings.php:71 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1375 ../../include/js_strings.php:72 -msgid "December" -msgstr "Desembre" - -#: ../../include/text.php:1449 -msgid "Unknown Attachment" -msgstr "Adjunt Desconegut" - -#: ../../include/text.php:1451 ../../include/feedutils.php:860 -msgid "unknown" -msgstr "desconegut" - -#: ../../include/text.php:1487 -msgid "remove category" -msgstr "elimina categoria" - -#: ../../include/text.php:1561 -msgid "remove from file" -msgstr "elimina del arxiu" - -#: ../../include/text.php:1703 ../../include/message.php:12 -msgid "Download binary/encrypted content" -msgstr "Descarrega el binari o contingut xifrat" - -#: ../../include/text.php:1866 ../../include/language.php:397 -msgid "default" -msgstr "per defecte" - -#: ../../include/text.php:1874 -msgid "Page layout" -msgstr "Disseny de pàgina" - -#: ../../include/text.php:1874 -msgid "You can create your own with the layouts tool" -msgstr "Pots crear el teu propi amb l'editor de dissenys de pàgina." - -#: ../../include/text.php:1885 -msgid "HTML" -msgstr "HTML" - -#: ../../include/text.php:1888 -msgid "Comanche Layout" -msgstr "Disseny Comanche" - -#: ../../include/text.php:1893 -msgid "PHP" -msgstr "PHP" - -#: ../../include/text.php:1902 -msgid "Page content type" -msgstr "Tipus de contingut de la pàgina" - -#: ../../include/text.php:2035 -msgid "activity" -msgstr "activitat" - -#: ../../include/text.php:2135 -msgid "a-z, 0-9, -, and _ only" -msgstr "només caràcters alfanumèrics en minúscula (a-z, 0-9), guió (-) i guió baix (_)" - -#: ../../include/text.php:2455 -msgid "Design Tools" -msgstr "Eines de disseny" - -#: ../../include/text.php:2461 -msgid "Pages" -msgstr "Pàgines" - -#: ../../include/text.php:2483 -msgid "Import website..." -msgstr "Importa un lloc web" - -#: ../../include/text.php:2484 -msgid "Select folder to import" -msgstr "Escull la carpeta a on importar" - -#: ../../include/text.php:2485 -msgid "Import from a zipped folder:" -msgstr "Importa des d'una carpeta comprimida:" - -#: ../../include/text.php:2486 -msgid "Import from cloud files:" -msgstr "Importa des de fitxers penjats a un núvol:" - -#: ../../include/text.php:2487 -msgid "/cloud/channel/path/to/folder" -msgstr "/núvol/canal/ruta/a/la/carpeta" - -#: ../../include/text.php:2488 -msgid "Enter path to website files" -msgstr "Introdueix la ruta als arxius de la web" - -#: ../../include/text.php:2489 -msgid "Select folder" -msgstr "Escull la carpeta" - -#: ../../include/text.php:2490 -msgid "Export website..." -msgstr "Exporta un lloc web" - -#: ../../include/text.php:2491 -msgid "Export to a zip file" -msgstr "Exporta a una carpeta comprimida" - -#: ../../include/text.php:2492 -msgid "website.zip" -msgstr "lloc-web.zip" - -#: ../../include/text.php:2493 -msgid "Enter a name for the zip file." -msgstr "Introdueix un nom per al fitxer comprimit." - -#: ../../include/text.php:2494 -msgid "Export to cloud files" -msgstr "Exporta a arxius de núvol" - -#: ../../include/text.php:2495 -msgid "/path/to/export/folder" -msgstr "/ruta/a/la/carpeta/exportació" - -#: ../../include/text.php:2496 -msgid "Enter a path to a cloud files destination." -msgstr "Introdueix la ruta dels fitxers de núvol de destí." - -#: ../../include/text.php:2497 -msgid "Specify folder" -msgstr "Escull una carpeta" - -#: ../../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:223 -msgid "Common Connections" -msgstr "Connexions en comú" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "Mostra totes les connexions en comú amb %d" - -#: ../../include/markdown.php:158 ../../include/bbcode.php:358 -#, 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/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "El canal està bloquejat en aquest lloc." - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "Ubicació del canal perduda." - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "La resposta del canal remot fou incompleta." - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "Canal prèmium - ves a:" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "El canal fou esborrat i actualment no existeix." - -#: ../../include/follow.php:165 -msgid "Remote channel or protocol unavailable." -msgstr "El canal remot o el protocol no estan disponibles." - -#: ../../include/follow.php:188 -msgid "Channel discovery failed." -msgstr "Descobriment de canal fallit." - -#: ../../include/follow.php:200 -msgid "Protocol disabled." -msgstr "Protocol desactivat." - -#: ../../include/follow.php:211 -msgid "Cannot connect to yourself." -msgstr "No pots connectar amb tu mateix." - -#: ../../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 "%smostra'n menys" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%sdesplega" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%splega" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contrasenya massa curta" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Les paraules de pas no coincideixen" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "tothom" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contrasenya Secreta" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista per la Contrasenya" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Avis: Els permisos han canviat però encara no han estat enviats." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "tanca tot" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Res de nou per aquí" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valora Aquest Canal (això es farà públic)" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Descriu (opcional)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Si us plau, entra l'enllaç URL" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Hi ha canvis sense desar, estàs segur que vols abandonar la pàgina?" - -#: ../../include/js_strings.php:26 -msgid "lovely" -msgstr "encantador/a" - -#: ../../include/js_strings.php:27 -msgid "wonderful" -msgstr "meravellós/a" - -#: ../../include/js_strings.php:28 -msgid "fantastic" -msgstr "fantàstic/a" - -#: ../../include/js_strings.php:29 -msgid "great" -msgstr "genial" - -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" -msgstr "El nom que has escollit o bé ja està agafat o bé no és vàlid. Pots fer servir la suggerència (" - -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." -msgstr ") o provar amb un altre nom." - -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." -msgstr "El nom que has triat és vàlid." - -#: ../../include/js_strings.php:33 -msgid "A channel name is required." -msgstr "Cal un nom de canal." - -#: ../../include/js_strings.php:34 -msgid "This is a " -msgstr "Això és un" - -#: ../../include/js_strings.php:35 -msgid " channel name" -msgstr "nom del canal" - -#: ../../include/js_strings.php:41 -msgid "timeago.prefixAgo" -msgstr "fa" - -#: ../../include/js_strings.php:42 -msgid "timeago.prefixFromNow" -msgstr "d'aquí a" - -#: ../../include/js_strings.php:43 -msgid "timeago.suffixAgo" -msgstr "NONE" - -#: ../../include/js_strings.php:44 -msgid "timeago.suffixFromNow" -msgstr " NONE" - -#: ../../include/js_strings.php:47 -msgid "less than a minute" -msgstr "uns segons" - -#: ../../include/js_strings.php:48 -msgid "about a minute" -msgstr "prop d'un minut" - -#: ../../include/js_strings.php:49 -#, php-format -msgid "%d minutes" -msgstr "%d minuts" - -#: ../../include/js_strings.php:50 -msgid "about an hour" -msgstr "prop d'una hora" - -#: ../../include/js_strings.php:51 -#, php-format -msgid "about %d hours" -msgstr "unes %d hores" - -#: ../../include/js_strings.php:52 -msgid "a day" -msgstr "un dia" - -#: ../../include/js_strings.php:53 -#, php-format -msgid "%d days" -msgstr "%d dies" - -#: ../../include/js_strings.php:54 -msgid "about a month" -msgstr "prop d'un mes" - -#: ../../include/js_strings.php:55 -#, php-format -msgid "%d months" -msgstr "%d mesos" - -#: ../../include/js_strings.php:56 -msgid "about a year" -msgstr "prop d'un any" - -#: ../../include/js_strings.php:57 -#, php-format -msgid "%d years" -msgstr "%d anys" - -#: ../../include/js_strings.php:58 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:59 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:65 -msgctxt "long" -msgid "May" -msgstr "maig" - -#: ../../include/js_strings.php:73 -msgid "Jan" -msgstr "gen." - -#: ../../include/js_strings.php:74 -msgid "Feb" -msgstr "feb." - -#: ../../include/js_strings.php:75 -msgid "Mar" -msgstr "març" - -#: ../../include/js_strings.php:76 -msgid "Apr" -msgstr "abr." - -#: ../../include/js_strings.php:77 -msgctxt "short" -msgid "May" -msgstr "maig" - -#: ../../include/js_strings.php:78 -msgid "Jun" -msgstr "juny" - -#: ../../include/js_strings.php:79 -msgid "Jul" -msgstr "jul." - -#: ../../include/js_strings.php:80 -msgid "Aug" -msgstr "ag." - -#: ../../include/js_strings.php:81 -msgid "Sep" -msgstr "set." - -#: ../../include/js_strings.php:82 -msgid "Oct" -msgstr "oct." - -#: ../../include/js_strings.php:83 -msgid "Nov" -msgstr "nov." - -#: ../../include/js_strings.php:84 -msgid "Dec" -msgstr "des." - -#: ../../include/js_strings.php:92 -msgid "Sun" -msgstr "dg." - -#: ../../include/js_strings.php:93 -msgid "Mon" -msgstr "dl." - -#: ../../include/js_strings.php:94 -msgid "Tue" -msgstr "dm." - -#: ../../include/js_strings.php:95 -msgid "Wed" -msgstr "dc." - -#: ../../include/js_strings.php:96 -msgid "Thu" -msgstr "dj." - -#: ../../include/js_strings.php:97 -msgid "Fri" -msgstr "dv." - -#: ../../include/js_strings.php:98 -msgid "Sat" -msgstr "ds." - -#: ../../include/js_strings.php:99 -msgctxt "calendar" -msgid "today" -msgstr "avui" - -#: ../../include/js_strings.php:100 -msgctxt "calendar" -msgid "month" -msgstr "mes" - -#: ../../include/js_strings.php:101 -msgctxt "calendar" -msgid "week" -msgstr "setmana" - -#: ../../include/js_strings.php:102 -msgctxt "calendar" -msgid "day" -msgstr "dia" - -#: ../../include/js_strings.php:103 -msgctxt "calendar" -msgid "All day" -msgstr "Tot el dia" - -#: ../../include/message.php:40 -msgid "Unable to determine sender." -msgstr "incapaç de determinar el remitent" - -#: ../../include/message.php:79 -msgid "No recipient provided." -msgstr "No s'ha proporcionat bústia." - -#: ../../include/message.php:84 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:214 -msgid "Stored post could not be verified." -msgstr "L'entrada guardada no pot ser verificada" - -#: ../../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/attach.php:265 ../../include/attach.php:374 -msgid "Item was not found." -msgstr "Article no trobat." - -#: ../../include/attach.php:282 -msgid "Unknown error." -msgstr "Error desconegut." - -#: ../../include/attach.php:567 -msgid "No source file." -msgstr "No hi ha arxiu d'origen." - -#: ../../include/attach.php:589 -msgid "Cannot locate file to replace" -msgstr "No trobo l'arxiu a reemplaçar" - -#: ../../include/attach.php:608 -msgid "Cannot locate file to revise/update" -msgstr "No trobo l'arxiu a revisar/actualitzar" - -#: ../../include/attach.php:750 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "L'arxiu excedeix la mida limit de %d" - -#: ../../include/attach.php:771 -#, 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:953 -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:982 -msgid "Stored file could not be verified. Upload failed." -msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." - -#: ../../include/attach.php:1056 ../../include/attach.php:1072 -msgid "Path not available." -msgstr "Trajectòria no disponible" - -#: ../../include/attach.php:1121 ../../include/attach.php:1286 -msgid "Empty pathname" -msgstr "Trajèctoria vuida." - -#: ../../include/attach.php:1147 -msgid "duplicate filename or path" -msgstr "Nom o trajectòria duplicat" - -#: ../../include/attach.php:1172 -msgid "Path not found." -msgstr "Trajectòria no trobada." - -#: ../../include/attach.php:1240 -msgid "mkdir failed." -msgstr "mkdir va fracassar." - -#: ../../include/attach.php:1244 -msgid "database storage failed." -msgstr "Arxiu de base de dades va fallar." - -#: ../../include/attach.php:1292 -msgid "Empty path" -msgstr "Trajèctoria vuida" - -#: ../../include/security.php:541 -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/items.php:891 ../../include/items.php:951 -msgid "(Unknown)" -msgstr "(Desconegut)" - -#: ../../include/items.php:1137 -msgid "Visible to anybody on the internet." -msgstr "Visible per tothom a la Internet" - -#: ../../include/items.php:1139 -msgid "Visible to you only." -msgstr "Visible només per tú." - -#: ../../include/items.php:1141 -msgid "Visible to anybody in this network." -msgstr "Visible per tothom en aquesta xarxa." - -#: ../../include/items.php:1143 -msgid "Visible to anybody authenticated." -msgstr "Visible per tothom autenticat." - -#: ../../include/items.php:1145 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible per a tothom a %s." - -#: ../../include/items.php:1147 -msgid "Visible to all connections." -msgstr "Visible per a totes les connexions." - -#: ../../include/items.php:1149 -msgid "Visible to approved connections." -msgstr "Visible per a les connexions aprovades." - -#: ../../include/items.php:1151 -msgid "Visible to specific connections." -msgstr "Visible per a específiques connexions." - -#: ../../include/items.php:4141 -msgid "Privacy group is empty." -msgstr "El grup de privacitat està buit." - -#: ../../include/items.php:4148 -#, php-format -msgid "Privacy group: %s" -msgstr "Grup de privacitat: %s" - -#: ../../include/items.php:4160 -msgid "Connection not found." -msgstr "Connexió no trobada." - -#: ../../include/items.php:4509 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/items.php:4700 -#, php-format -msgid "[Edited %s]" -msgstr "[S'ha editat %s]" - -#: ../../include/items.php:4700 -msgctxt "edit_activity" -msgid "Post" -msgstr "Entrada" - -#: ../../include/items.php:4700 -msgctxt "edit_activity" -msgid "Comment" -msgstr "Comentari" - -#: ../../include/channel.php:35 -msgid "Unable to obtain identity information from database" -msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" - -#: ../../include/channel.php:68 -msgid "Empty name" -msgstr "Nom buit" - -#: ../../include/channel.php:71 -msgid "Name too long" -msgstr "Nom massa llarg" - -#: ../../include/channel.php:188 -msgid "No account identifier" -msgstr "Sense identificador de compte" - -#: ../../include/channel.php:200 -msgid "Nickname is required." -msgstr "Alies/malnom es requerit." - -#: ../../include/channel.php:277 -msgid "Unable to retrieve created identity" -msgstr "No es pot recuperar la identitat creada" - -#: ../../include/channel.php:373 -msgid "Default Profile" -msgstr "Perfil per Defecte" - -#: ../../include/channel.php:532 ../../include/channel.php:621 -msgid "Unable to retrieve modified identity" -msgstr "No s'ha pogut carregar la identitat modificada" - -#: ../../include/channel.php:1297 -msgid "Create New Profile" -msgstr "Crear un Perfil Nou" - -#: ../../include/channel.php:1318 -msgid "Visible to everybody" -msgstr "Visible per tothom" - -#: ../../include/channel.php:1395 ../../include/channel.php:1523 -msgid "Gender:" -msgstr "Gènere:" - -#: ../../include/channel.php:1397 ../../include/channel.php:1591 -msgid "Homepage:" -msgstr "Pàgina Personal:" - -#: ../../include/channel.php:1398 -msgid "Online Now" -msgstr "Ara en Linia" - -#: ../../include/channel.php:1451 -msgid "Change your profile photo" -msgstr "Canvia la foto de peril" - -#: ../../include/channel.php:1482 -msgid "Trans" -msgstr "Trans" - -#: ../../include/channel.php:1528 -msgid "Like this channel" -msgstr "M'agrada aquest canal" - -#: ../../include/channel.php:1552 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1553 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1560 -msgid "Birthday:" -msgstr "Aniversari:" - -#: ../../include/channel.php:1573 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/channel.php:1585 -msgid "Tags:" -msgstr "Etiquetes:" - -#: ../../include/channel.php:1589 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" - -#: ../../include/channel.php:1595 -msgid "Political Views:" -msgstr "Idees Polítiques:" - -#: ../../include/channel.php:1597 -msgid "Religion:" -msgstr "Religió:" - -#: ../../include/channel.php:1601 -msgid "Hobbies/Interests:" -msgstr "Aficions/Interessos:" - -#: ../../include/channel.php:1603 -msgid "Likes:" -msgstr "Agrada:" - -#: ../../include/channel.php:1605 -msgid "Dislikes:" -msgstr "Desagrada:" - -#: ../../include/channel.php:1607 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" - -#: ../../include/channel.php:1609 -msgid "My other channels:" -msgstr "Els meus altres canals:" - -#: ../../include/channel.php:1611 -msgid "Musical interests:" -msgstr "Interessos Musicals:" - -#: ../../include/channel.php:1613 -msgid "Books, literature:" -msgstr "Llibres, literatura:" - -#: ../../include/channel.php:1615 -msgid "Television:" -msgstr "Televisió:" - -#: ../../include/channel.php:1617 -msgid "Film/dance/culture/entertainment:" -msgstr "Películes/Dança/Cultura/Entreteniment:" - -#: ../../include/channel.php:1619 -msgid "Love/Romance:" -msgstr "Amor/Romace:" - -#: ../../include/channel.php:1621 -msgid "Work/employment:" -msgstr "Treball/feina:" - -#: ../../include/channel.php:1623 -msgid "School/education:" -msgstr "Escola/educació:" - -#: ../../include/channel.php:1646 -msgid "Like this thing" -msgstr "M'agrada això" - -#: ../../include/event.php:24 ../../include/event.php:71 -msgid "l F d, Y \\@ g:i A" -msgstr "l d \\d\\e/\\d' F de Y \\@ H:i T" - -#: ../../include/event.php:32 ../../include/event.php:75 -msgid "Starts:" -msgstr "Inicia:" - -#: ../../include/event.php:42 ../../include/event.php:79 -msgid "Finishes:" -msgstr "Acaba:" - -#: ../../include/event.php:1011 -msgid "This event has been added to your calendar." -msgstr "Aquest succés ha estat afegit al teu calendari." - -#: ../../include/event.php:1227 -msgid "Not specified" -msgstr "Sense especificar" - -#: ../../include/event.php:1228 -msgid "Needs Action" -msgstr "Necessita una Acció" - -#: ../../include/event.php:1229 -msgid "Completed" -msgstr "Completat" - -#: ../../include/event.php:1230 -msgid "In Process" -msgstr "En Procès" - -#: ../../include/event.php:1231 -msgid "Cancelled" -msgstr "Cancel·lat" - -#: ../../include/event.php:1310 ../../include/connections.php:698 -msgid "Home, Voice" -msgstr "Casa, veu" - -#: ../../include/event.php:1311 ../../include/connections.php:699 -msgid "Home, Fax" -msgstr "Casa, fax" - -#: ../../include/event.php:1313 ../../include/connections.php:701 -msgid "Work, Voice" -msgstr "Feina, veu" - -#: ../../include/event.php:1314 ../../include/connections.php:702 -msgid "Work, Fax" -msgstr "Feina, fax" - -#: ../../include/network.php:760 -msgid "view full size" -msgstr "Veure a mida competa" - -#: ../../include/network.php:1766 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:1767 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:1771 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:1773 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:1774 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:1775 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "Tria un idioma alternatiu" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "Qui pot veure això?" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "Selecció a mida" - -#: ../../include/acl_selectors.php:115 -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:116 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:150 -#, 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/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'" - -#: ../../include/bbcode.php:200 ../../include/bbcode.php:1202 -#: ../../include/bbcode.php:1205 ../../include/bbcode.php:1210 -#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1216 -#: ../../include/bbcode.php:1219 ../../include/bbcode.php:1224 -#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 -#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1238 -#: ../../include/bbcode.php:1241 -msgid "Image/photo" -msgstr "Imatge/foto" - -#: ../../include/bbcode.php:239 ../../include/bbcode.php:1252 -msgid "Encrypted content" -msgstr "Contingut encriptat" - -#: ../../include/bbcode.php:255 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "Instaŀla l'element %2$s del tipus %1$s" - -#: ../../include/bbcode.php:259 -#, 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:350 -msgid "card" -msgstr "targeta" - -#: ../../include/bbcode.php:352 -msgid "article" -msgstr "article" - -#: ../../include/bbcode.php:435 ../../include/bbcode.php:443 -msgid "Click to open/close" -msgstr "Clic per obrir/tancar" - -#: ../../include/bbcode.php:443 -msgid "spoiler" -msgstr "xafa guitarres" - -#: ../../include/bbcode.php:456 -msgid "View article" -msgstr "Mostra l'article" - -#: ../../include/bbcode.php:456 -msgid "View summary" -msgstr "Mostra'n un resum" - -#: ../../include/bbcode.php:1190 -msgid "$1 wrote:" -msgstr "$1 va escriure:" - -#: ../../include/oembed.php:224 -msgid "View PDF" -msgstr "Mostra el pdf" - -#: ../../include/oembed.php:347 -msgid " by " -msgstr "de" - -#: ../../include/oembed.php:348 -msgid " on " -msgstr "a" - -#: ../../include/oembed.php:377 -msgid "Embedded content" -msgstr "Contingut embegut" - -#: ../../include/oembed.php:386 -msgid "Embedding disabled" -msgstr "Incorporació desactivada" - -#: ../../include/zid.php:351 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s dóna la benvinguda a %2$s" - -#: ../../include/features.php:56 -msgid "General Features" -msgstr "Característiques Generals" - -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "Mostra el menú d'enllaços ràpids per a nous membres" - -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "Perfils Avançats" - -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "Seccions i seleccions addicionals de perfils " - -#: ../../include/features.php:78 -msgid "Profile Import/Export" -msgstr "Importar/Exportar Perfil" - -#: ../../include/features.php:79 -msgid "Save and load profile details across sites/channels" -msgstr "Guarda i carrega els detalls del perfil al llarg dels llocs/canals" - -#: ../../include/features.php:87 -msgid "Web Pages" -msgstr "Pàgines Web" - -#: ../../include/features.php:88 -msgid "Provide managed web pages on your channel" -msgstr "Proporcionar pàgines web gestionades al seu canal" - -#: ../../include/features.php:97 -msgid "Provide a wiki for your channel" -msgstr "Proporciona una wiki per al teu canal" - -#: ../../include/features.php:114 -msgid "Private Notes" -msgstr "Notes Privades" - -#: ../../include/features.php:115 -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:124 -msgid "Create personal planning cards" -msgstr "Crea targetes de planificació personal" - -#: ../../include/features.php:134 -msgid "Create interactive articles" -msgstr "Crea articles interactius" - -#: ../../include/features.php:142 -msgid "Navigation Channel Select" -msgstr "Navegació pel Selector de Canals" - -#: ../../include/features.php:143 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Canvieu els canals directament des del menú desplegable de navegació" - -#: ../../include/features.php:151 -msgid "Photo Location" -msgstr "Ubicació de la Foto" - -#: ../../include/features.php:152 -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:160 -msgid "Access Controlled Chatrooms" -msgstr "Accés Controlat a les Sales de Xat" - -#: ../../include/features.php:161 -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:170 -msgid "Smart Birthdays" -msgstr "Aniversaris Intel·ligents" - -#: ../../include/features.php:171 -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:179 -msgid "Event Timezone Selection" -msgstr "Zona horària dels esdeveniments" - -#: ../../include/features.php:180 -msgid "Allow event creation in timezones other than your own." -msgstr "Permet crear esdeveniments en zones horàries diferents a la teva." - -#: ../../include/features.php:189 -msgid "Premium Channel" -msgstr "Privilegis del Canal" - -#: ../../include/features.php:190 -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:198 -msgid "Advanced Directory Search" -msgstr "Cerca de directori avançada" - -#: ../../include/features.php:199 -msgid "Allows creation of complex directory search queries" -msgstr "Permet fer cerques de directori complexes" - -#: ../../include/features.php:207 -msgid "Advanced Theme and Layout Settings" -msgstr "Configuració de disseny i de tema avançada" - -#: ../../include/features.php:208 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permet configurar al detall els temes i els dissenys de pàgina" - -#: ../../include/features.php:217 -msgid "Access Control and Permissions" -msgstr "Control d'accés i permisos" - -#: ../../include/features.php:222 -msgid "Enable management and selection of privacy groups" -msgstr "Habilita la gestió i selecció de grups de privacitat" - -#: ../../include/features.php:230 -msgid "Multiple Profiles" -msgstr "Multiples Perfils" - -#: ../../include/features.php:231 -msgid "Ability to create multiple profiles" -msgstr "Capacitat per crear multiples perfils" - -#: ../../include/features.php:241 -msgid "Create custom connection permission limits" -msgstr "Personalitza els límits de permisos de les connexions" - -#: ../../include/features.php:249 -msgid "OAuth1 Clients" -msgstr "Clients OAuth1" - -#: ../../include/features.php:250 -msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." -msgstr "Gestiona els tokens d'autenticació OAuth1 per al mòbil i aplicacions remotes." - -#: ../../include/features.php:258 -msgid "OAuth2 Clients" -msgstr "Clients OAuth2" - -#: ../../include/features.php:259 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "Gestiona els tokens d'autenticació OAuth2 per al mòbil i aplicacions remotes." - -#: ../../include/features.php:267 -msgid "Access Tokens" -msgstr "Tokens d'accés" - -#: ../../include/features.php:268 -msgid "Create access tokens so that non-members can access private content." -msgstr "Crea tokens d'accés per tal que no-membres puguis accedir contingut privat." - -#: ../../include/features.php:279 -msgid "Post Composition Features" -msgstr "Característiques de Composició d'Entrades" - -#: ../../include/features.php:283 -msgid "Large Photos" -msgstr "Grans Fotos" - -#: ../../include/features.php:284 -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:293 -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:301 -msgid "Even More Encryption" -msgstr "Encara Més Encriptació" - -#: ../../include/features.php:302 -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:310 -msgid "Enable Voting Tools" -msgstr "Habilitar Eines de Votació" - -#: ../../include/features.php:311 -msgid "Provide a class of post which others can vote on" -msgstr "Proporcionar una classe d'entrada que altres puguin votar" - -#: ../../include/features.php:319 -msgid "Disable Comments" -msgstr "Deshabilita els comentaris" - -#: ../../include/features.php:320 -msgid "Provide the option to disable comments for a post" -msgstr "Proporciona l'opció de deshabilitar els comentaris per a una entrada" - -#: ../../include/features.php:328 -msgid "Delayed Posting" -msgstr "Retarda Publicació" - -#: ../../include/features.php:329 -msgid "Allow posts to be published at a later date" -msgstr "Permet que les publicacions es publiquin en data posterior" - -#: ../../include/features.php:337 -msgid "Content Expiration" -msgstr "Expiració del Contingut" - -#: ../../include/features.php:338 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps." - -#: ../../include/features.php:346 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Suprimeix Duplicats de Publicacions/Comentaris" - -#: ../../include/features.php:347 -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:355 -msgid "Auto-save drafts of posts and comments" -msgstr "Desa automàticament esborranys de les entrades i comentaris" - -#: ../../include/features.php:356 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help" -" prevent accidental loss of compositions" -msgstr "Desa esborranys automàticament en l'emmagatzematge local del navegador per a evitar perdre escrits per a comentaris o entrades" - -#: ../../include/features.php:367 -msgid "Network and Stream Filtering" -msgstr "Filtrat de Xarxa i Flux" - -#: ../../include/features.php:371 -msgid "Search by Date" -msgstr "Cerca per Data" - -#: ../../include/features.php:372 -msgid "Ability to select posts by date ranges" -msgstr "Capacitat per seleccionar entrades per rang de dates" - -#: ../../include/features.php:382 -msgid "Save search terms for re-use" -msgstr "Guardar els termin de la cerca per a re-usar" - -#: ../../include/features.php:390 -msgid "Alternate Stream Order" -msgstr "Diversos ordres al flux" - -#: ../../include/features.php:391 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" -msgstr "Permet canviar l'ordre dels continguts en el flux: segons la data de les entrades, segons la data de l'últim comentari, o segons la data de cada missatge sense agrupar per converses" - -#: ../../include/features.php:399 -msgid "Contact Filter" -msgstr "Filtre de contactes" - -#: ../../include/features.php:400 -msgid "Ability to display only posts of a selected contact" -msgstr "Permet mostrar només entrades d'un contacte determinat" - -#: ../../include/features.php:408 -msgid "Forum Filter" -msgstr "Filtre de fòrums" - -#: ../../include/features.php:409 -msgid "Ability to display only posts of a specific forum" -msgstr "Permet mostrar només entrades d'un fòrum determinat" - -#: ../../include/features.php:417 -msgid "Personal Posts Filter" -msgstr "Filtre d'interaccions amb mi" - -#: ../../include/features.php:418 -msgid "Ability to display only posts that you've interacted on" -msgstr "Permet mostrar només les entrades amb què has interactuat" - -#: ../../include/features.php:426 -msgid "Affinity Tool" -msgstr "Eina d'Afinitat" - -#: ../../include/features.php:427 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtre d'activitat del flux per importància de la relació" - -#: ../../include/features.php:436 -msgid "Show friend and connection suggestions" -msgstr "Suggereix connexions o amistats" - -#: ../../include/features.php:444 -msgid "Connection Filtering" -msgstr "Filtre de Connexió" - -#: ../../include/features.php:445 -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:457 -msgid "Post/Comment Tools" -msgstr "Eina d'Entrades/Comentaris" - -#: ../../include/features.php:461 -msgid "Community Tagging" -msgstr "Etiquetat per la Comunitat" - -#: ../../include/features.php:462 -msgid "Ability to tag existing posts" -msgstr "Capacitat d'etiquetar entrades existents" - -#: ../../include/features.php:470 -msgid "Post Categories" -msgstr "Categories d'Entrades" - -#: ../../include/features.php:471 -msgid "Add categories to your posts" -msgstr "Afegeix categoria a la teva entrada" - -#: ../../include/features.php:479 -msgid "Emoji Reactions" -msgstr "Reaccions dels Emoji" - -#: ../../include/features.php:480 -msgid "Add emoji reaction ability to posts" -msgstr "Afegeix un emoji habilitat per reaccionar a entrades" - -#: ../../include/features.php:489 -msgid "Ability to file posts under folders" -msgstr "Capacitat de arxivar entrades en les carpetes" - -#: ../../include/features.php:497 -msgid "Dislike Posts" -msgstr "No Agrada l'Entrada" - -#: ../../include/features.php:498 -msgid "Ability to dislike posts/comments" -msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" - -#: ../../include/features.php:506 -msgid "Star Posts" -msgstr "Entrades Excel·lents" - -#: ../../include/features.php:507 -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:515 -msgid "Tag Cloud" -msgstr "Núvol d'Etiquetes." - -#: ../../include/features.php:516 -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/taxonomy.php:320 -msgid "Trending" -msgstr "Tema del moment" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "Paraules clau" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "tinc" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "tens" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "vull" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "vols" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "agrada" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "desagrada" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "Adreça de correu electrònic no vàlida" - -#: ../../include/account.php:38 -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:44 -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:76 -msgid "An invitation is required." -msgstr "Es requereix Invitació" - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "L'invitació no ha pogut ser verificada" - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "Entra la informació sol·licitada" - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "Ha fallat guardar la informació del compte" - -#: ../../include/account.php:314 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Inscripció confirmada per %s" - -#: ../../include/account.php:385 -#, php-format -msgid "Registration request at %s" -msgstr "Sol·licitud d'inscripció a %s" - -#: ../../include/account.php:407 -msgid "your registration password" -msgstr "la teva contrasenya registrada" - -#: ../../include/account.php:413 ../../include/account.php:475 -#, php-format -msgid "Registration details for %s" -msgstr "Detalls de l'inscripció per %s" - -#: ../../include/account.php:486 -msgid "Account approved." -msgstr "Compte aprovat." - -#: ../../include/account.php:526 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscripció revocada per %s" - -#: ../../include/account.php:805 ../../include/account.php:807 -msgid "Click here to upgrade." -msgstr "Feu clic aquí per actualitzar." - -#: ../../include/account.php:813 -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:818 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el seu pla de subscripció." - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "Aniversari" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "Edat:" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "fa menys d'un segon" - -#: ../../include/datetime.php:262 -#, 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:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "any" -msgstr[1] "anys" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "mesos " - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "setmana" -msgstr[1] "setmanes" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dies" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "hores" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuts" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segon" -msgstr[1] "segons" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "Aniversari de %1$s" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliç Aniversari %1$s" - -#: ../../include/nav.php:88 -msgid "Remote authentication" -msgstr "Autenticació remota" - -#: ../../include/nav.php:88 -msgid "Click to authenticate to your home hub" -msgstr "Clica per autentificar-te en el teu node" - -#: ../../include/nav.php:94 -msgid "Manage your channels" -msgstr "Gestiona els teus canals" - -#: ../../include/nav.php:97 -msgid "Manage your privacy groups" -msgstr "Gestiona els teus grups de privacitat" - -#: ../../include/nav.php:99 -msgid "Account/Channel Settings" -msgstr "Configuració de compte i canal" - -#: ../../include/nav.php:105 ../../include/nav.php:134 -msgid "End this session" -msgstr "Finalitza aquesta sessió" - -#: ../../include/nav.php:108 -msgid "Your profile page" -msgstr "La teva pàgina de perfil" - -#: ../../include/nav.php:111 -msgid "Manage/Edit profiles" -msgstr "Gestiona/edita els perfils" - -#: ../../include/nav.php:120 ../../include/nav.php:124 -msgid "Sign in" -msgstr "Signatura" - -#: ../../include/nav.php:151 -msgid "Take me home" -msgstr "Porta'm a casa" - -#: ../../include/nav.php:153 -msgid "Log me out of this site" -msgstr "Tanca'm la sessió en aquest lloc web" - -#: ../../include/nav.php:158 -msgid "Create an account" -msgstr "Crear un compte" - -#: ../../include/nav.php:170 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: ../../include/nav.php:185 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "Cerca en el node @nom, !fòrum, #etiqueta, ?documentació, contingut" - -#: ../../include/nav.php:191 -msgid "Site Setup and Configuration" -msgstr "Configuració del node" - -#: ../../include/nav.php:282 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "@nom, !fòrum, #etiqueta, ?documentació, contingut" - -#: ../../include/nav.php:283 -msgid "Please wait..." -msgstr "Si us plau, espera......." - -#: ../../include/nav.php:289 -msgid "Add Apps" -msgstr "Afegeix aplicacions" - -#: ../../include/nav.php:290 -msgid "Arrange Apps" -msgstr "Endreça les aplicacions" - -#: ../../include/nav.php:291 -msgid "Toggle System Apps" -msgstr "Commuta l'estat de les aplicacions de sistema" - -#: ../../include/photos.php:151 -#, 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:162 -msgid "Image file is empty." -msgstr "El fitxer d'imatge esta buit." - -#: ../../include/photos.php:327 -msgid "Photo storage failed." -msgstr "Fracassà l'emmagatzematge de la Foto" - -#: ../../include/photos.php:376 -msgid "a new photo" -msgstr "Una foto nova" - -#: ../../include/photos.php:380 -#, 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:672 -msgid "Upload New Photos" -msgstr "Puja Noves Fotos" - -#: ../../include/zot.php:772 -msgid "Invalid data packet" -msgstr "paquet de dades invàlid" - -#: ../../include/zot.php:799 -msgid "Unable to verify channel signature" -msgstr "No es pot verificar la signatura del canal" - -#: ../../include/zot.php:2557 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No es pot verificar la signatura del lloc per %s" - -#: ../../include/zot.php:4221 -msgid "invalid target signature" -msgstr "Signatura objectiu invàlida" - -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Afegeix noves connexions a aquest grup de privacitat" - -#: ../../include/group.php:298 -msgid "edit" -msgstr "edita" - -#: ../../include/group.php:321 -msgid "Edit group" -msgstr "Editar grup" - -#: ../../include/group.php:322 -msgid "Add privacy group" -msgstr "Afegeix grup de privacitat" - -#: ../../include/group.php:323 -msgid "Channels not in any privacy group" -msgstr "Canals que no estan en cap grup de privacitat" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "Nova finestra" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del navegador" - -#: ../../include/auth.php:192 -msgid "Delegation session ended." -msgstr "S'ha tancat la sessió de delegació." - -#: ../../include/auth.php:196 -msgid "Logged out." -msgstr "Sortir." - -#: ../../include/auth.php:291 -msgid "Email validation is incomplete. Please check your email." -msgstr "Encara no s'ha validat el teu correu. Comprova la safata d'entrada i la paperera." - -#: ../../include/auth.php:307 -msgid "Failed authentication" -msgstr "Autenticació fallida" - -#: ../../include/help.php:34 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../include/help.php:78 -msgid "Not Found" -msgstr "No s'ha pogut trobar la pàgina" diff --git a/view/ca/hstrings.php b/view/ca/hstrings.php deleted file mode 100644 index d2954b2b7..000000000 --- a/view/ca/hstrings.php +++ /dev/null @@ -1,3356 +0,0 @@ - "S'ha enviat %d invitació.", - 1 => "S'han enviat %d invitacions.", -); -App::$strings["You have no more invitations available"] = "No pots enviar més invitacions"; -App::$strings["Send invitations"] = "Envia invitacions"; -App::$strings["Enter email addresses, one per line:"] = "Introdueix 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."] = "Vols sumar-te a la meva comunitat a \$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 (estan tots interconnectats)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu a la barra de cerca la meva adreça de la xarxa \$Projectname."; -App::$strings["or visit"] = "o bé visita"; -App::$strings["3. Click [Connect]"] = "3. Clica [connecta]"; -App::$strings["Submit"] = "Envia"; -App::$strings["Articles"] = "Articles"; -App::$strings["Add Article"] = "Afegeix un article"; -App::$strings["Item not found"] = "No s'ha trobat l'element"; -App::$strings["Layout Name"] = "Nom del disseny"; -App::$strings["Layout Description (Optional)"] = "Descripció del disseny (opcional)"; -App::$strings["Edit Layout"] = "Edita el disseny"; -App::$strings["Cancel"] = "Cancel·la"; -App::$strings["Permission denied"] = "S'ha denegat el permís"; -App::$strings["Invalid profile identifier."] = "L'identificador de perfil no és vàlid."; -App::$strings["Profile Visibility Editor"] = "Editor de la visibilitat del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Clica sobre un contacte per afegir-lo o esborrar-lo."; -App::$strings["Visible To"] = "Visible per"; -App::$strings["All Connections"] = "Totes les connexions"; -App::$strings["INVALID EVENT DISMISSED!"] = "S'HA DESCARTAT UN ESDEVENIMENT INVÀLID."; -App::$strings["Summary: "] = "Resum:"; -App::$strings["Unknown"] = "Desconegut"; -App::$strings["Date: "] = "Data:"; -App::$strings["Reason: "] = "Motiu:"; -App::$strings["INVALID CARD DISMISSED!"] = "S'HA DESCARTAT UNA TARGETA INVÀLIDA."; -App::$strings["Name: "] = "Nom:"; -App::$strings["Event title"] = "Títol de l'esdeveniment"; -App::$strings["Start date and time"] = "Data i hora d'inici"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "Exemple: AAAA-MM-DD HH:mm"; -App::$strings["End date and time"] = "Data i hora de fi"; -App::$strings["Description"] = "Descripció"; -App::$strings["Location"] = "Ubicació"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Següent"; -App::$strings["Today"] = "Avui"; -App::$strings["Month"] = "mes"; -App::$strings["Week"] = "setmana"; -App::$strings["Day"] = "dia"; -App::$strings["List month"] = "Mes en llista"; -App::$strings["List week"] = "Setmana en llista"; -App::$strings["List day"] = "Dia en llista"; -App::$strings["More"] = "Mostra més"; -App::$strings["Less"] = "Mostra menys"; -App::$strings["Select calendar"] = "Tria un calendari"; -App::$strings["Delete all"] = "Esborra'ls tots"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Malauradament encara no es poden editar esdeveniments periòdics."; -App::$strings["Name"] = "Nom"; -App::$strings["Organisation"] = "Organització"; -App::$strings["Title"] = "Títol"; -App::$strings["Phone"] = "Telèfon"; -App::$strings["Email"] = "Correu electrònic"; -App::$strings["Instant messenger"] = "Missatgeria instantània"; -App::$strings["Website"] = "Lloc web"; -App::$strings["Address"] = "Adreça"; -App::$strings["Note"] = "Nota"; -App::$strings["Mobile"] = "Mòbil"; -App::$strings["Home"] = "Inici"; -App::$strings["Work"] = "Feina"; -App::$strings["Add Contact"] = "Afegeix un contacte"; -App::$strings["Add Field"] = "Afegeix un camp"; -App::$strings["Update"] = "Actualitza"; -App::$strings["P.O. Box"] = "Apartat de correus"; -App::$strings["Additional"] = "Addicional"; -App::$strings["Street"] = "Carrer"; -App::$strings["Locality"] = "Localitat"; -App::$strings["Region"] = "Regió"; -App::$strings["ZIP Code"] = "Codi postal"; -App::$strings["Country"] = "País"; -App::$strings["Default Calendar"] = "Calendari per defecte"; -App::$strings["Default Addressbook"] = "Llibreta d'adreces per defecte"; -App::$strings["This site is not a directory server"] = "Aquest hub no és un servidor de directori"; -App::$strings["You must be logged in to see this page."] = "Has de tenir una sessió iniciada 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."] = "S'ha denegat el permís. La petició s'ha redirigit a la pàgina de perfil."; -App::$strings["Search Results For:"] = "Cerca resultats per:"; -App::$strings["Reset form"] = "Esborra el formulari"; -App::$strings["Export Channel"] = "Exporta un 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ò serveix com a còpia de seguretat de les teves connexions, permisos, perfil i dades bàsiques, i pots emprar-la per a importar aquestes dades des d'un altre hub. No conté el contingut del canal."; -App::$strings["Export Content"] = "Exporta'n 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 una còpia de seguretat en format JSON. Pot ser restaurada o importada des d'un altre hub. Això desa totes les teves connexions, permisos, dades de perfil i diversos mesos de publicacions. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que la preparació de l'arxiu pot trigar una estona, abans que el puguis començar a baixar."; -App::$strings["Export your posts from a given year."] = "Exporta les entrades d'un any determinat."; -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 entrades i converses d'un any o un mes en particular. Ajusta la data a la barra d'adreces del navegador per seleccionar altres dates. Si l'exportació falla (possiblement degut a l'esgotament de la memòria RAM del servidor), prova de nou amb un interval de dates més petit."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per exemple, per seleccionar totes les entrades d'aquest any, ves a %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per exemple, per seleccionar totes les entrades del mes de gener d'aquest any, ves a %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)."] = "Les còpies de seguretat amb contingut es poden importar o restaurar des d'aquesta adreça %2\$s. En aquest cas és aquest servidor, però també serviria en un altre hub que allotgés un clon del teu canal. Si vols restaurar més d'un arxiu de contingut, per evitar problemes importa'ls en ordre cronològic."; -App::$strings["Welcome to Hubzilla!"] = "Benvingut/da a Hubzilla!"; -App::$strings["You have got no unseen posts..."] = "No tens entrades pendents de veure..."; -App::$strings["Public access denied."] = "L'accés públic no està permès."; -App::$strings["Search"] = "Cerca"; -App::$strings["Items tagged with: %s"] = "Elements etiquetats amb: %s"; -App::$strings["Search results for: %s"] = "Resultats de cerca per: %s"; -App::$strings["Public Stream"] = "Flux públic"; -App::$strings["Location not found."] = "No s'ha trobat la ubicació."; -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."] = "Abans d'esborrar la ubicació principal actual, fes-ne principal una altra."; -App::$strings["Syncing locations"] = "S'estan sincronitzant les ubicacions"; -App::$strings["No locations found."] = "No s'ha trobat cap ubicació."; -App::$strings["Manage Channel Locations"] = "Gestiona les ubicacions del canal"; -App::$strings["Primary"] = "Primària"; -App::$strings["Drop"] = "Esborra"; -App::$strings["Sync Now"] = "Sincronitza ara"; -App::$strings["Please wait several minutes between consecutive operations."] = "Espera uns minuts entre operacions consecutives."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Si pots, és preferible esborrar la ubicació esborrant el canal des del servidor on està copiat."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Fes servir aquest formulari per a esborrar la ubicació del lloc si el hub ja no està operatiu."; -App::$strings["Change Order of Pinned Navbar Apps"] = "Canvia l'ordre de les aplicacions fixades a la barra de navegació"; -App::$strings["Change Order of App Tray Apps"] = "Canvia l'ordre de les aplicacions de la safata d'aplicacions"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Fes servir les fletxes per moure l'aplicació cap a l'esquerra (amunt) o cap a la dreta (avall)"; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Fes servir les fletxes per moure l'aplicació amunt o avall en la safata"; -App::$strings["Menu not found."] = "No s'ha trobat el menú."; -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."] = "No s'ha pogut afegir l'element de menú."; -App::$strings["Not found."] = "No s'ha trobat."; -App::$strings["Menu Item Permissions"] = "Permisos dels ítems de 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"] = "Destí de l'enllaç o del submenú"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introdueix la URL de l'enllaç o tria un nom de menú per crear un submenú"; -App::$strings["Use magic-auth if available"] = "Empra la magic-auth si està disponible"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Sí"; -App::$strings["Open link in new window"] = "Obre l'enllaç en una nova finestra"; -App::$strings["Order in list"] = "Ordre de la llista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts al final de la llista"; -App::$strings["Submit and finish"] = "Envia i acaba"; -App::$strings["Submit and continue"] = "Envia i continua"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Destí de l'enllaç"; -App::$strings["Edit menu"] = "Edita el menú"; -App::$strings["Edit element"] = "Edita l'element"; -App::$strings["Drop element"] = "Esborra l'element"; -App::$strings["New element"] = "Element nou"; -App::$strings["Edit this menu container"] = "Edita el contenidor de menú"; -App::$strings["Add menu element"] = "Afegeix un 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."] = "No s'ha trobat l'element de menú."; -App::$strings["Menu item deleted."] = "S'ha esborrat l'element de menú."; -App::$strings["Menu item could not be deleted."] = "No s'ha pogut esborrar l'element de menú."; -App::$strings["Edit Menu Element"] = "Editar elements del menú"; -App::$strings["Link text"] = "Text de l'enllaç"; -App::$strings["Calendar entries imported."] = "S'han importat les entrades de calendari."; -App::$strings["No calendar entries found."] = "No s'ha trobat cap entrada de calendari."; -App::$strings["Event can not end before it has started."] = "L'esdeveniment no pot acabar abans de començar."; -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"] = "esdeveniment"; -App::$strings["Edit event title"] = "Edita el títol de l'esdeveniment"; -App::$strings["Required"] = "Obligatori"; -App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; -App::$strings["Edit Category"] = "Edita la categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Edita la data i hora d'inici"; -App::$strings["Finish date and time are not known or not relevant"] = "L'hora d'acabar és desconeguda o irrellevant"; -App::$strings["Edit finish date and time"] = "Edita 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 de l'usuari/a"; -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"] = "Edita la descripció"; -App::$strings["Edit Location"] = "Edita la ubicació"; -App::$strings["Preview"] = "Vista prèvia"; -App::$strings["Permission settings"] = "Configuració de permisos"; -App::$strings["Timezone:"] = "Zona horària:"; -App::$strings["Advanced Options"] = "Opcions avançades"; -App::$strings["l, F j"] = "l, j \\d\\e 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"] = "Edita l'esdeveniment"; -App::$strings["Create Event"] = "Crear un esdeveniment nou"; -App::$strings["Export"] = "Exporta"; -App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; -App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; -App::$strings["App installed."] = "S'ha instaŀlat l'aplicació."; -App::$strings["Malformed app."] = "L'aplicació conté errors."; -App::$strings["Embed code"] = "Codi embegut"; -App::$strings["Edit App"] = "Edita una aplicació"; -App::$strings["Create App"] = "Crea una aplicació"; -App::$strings["Name of app"] = "Nom de l'aplicació"; -App::$strings["Location (URL) of app"] = "Adreça URL de l'aplicació"; -App::$strings["Photo icon URL"] = "Adreça URL de la icona de l'aplicació"; -App::$strings["80 x 80 pixels - optional"] = "80x80 píxels (opcional)"; -App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, llista separada per comes)"; -App::$strings["Version ID"] = "Identificador o número de versió"; -App::$strings["Price of app"] = "Preu de l'aplicació"; -App::$strings["Location (URL) to purchase app"] = "Adreça URL de compra de l'aplicació"; -App::$strings["Please login."] = "Inicia sessió."; -App::$strings["Hub not found."] = "No s'ha trobat el hub."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "estat"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s segueix %3\$s de %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha deixat de seguir %3\$s de %2\$s"; -App::$strings["Channel not found."] = "No s'ha trobat el canal."; -App::$strings["Insert web link"] = "Insereix un enllaç web"; -App::$strings["Title (optional)"] = "Títol (opcional)"; -App::$strings["Edit Article"] = "Edita l'article"; -App::$strings["Nothing to import."] = "No s'ha trobat res per importar."; -App::$strings["Unable to download data from old server"] = "No s'han pogut descarregar les dades del servidor antic"; -App::$strings["Imported file is empty."] = "El fitxer importat està buit."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atenció: Les versions de les bases de dades difereixen de %1\$d actualitzacions."; -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["File to Upload"] = "Fitxer per pujar"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f canals dels %2$.0f totals permesos."; -App::$strings["Loading"] = "S'està carregant"; -App::$strings["Your real name is recommended."] = "És recomanable fer servir el nom real."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Paula Gomila\", \"Manel i els seus cavalls\", \"Assemblea de veïnes del barri\", \"Filosofia\""; -App::$strings["This will be used to create a unique network address (like an email address)."] = "Es farà servir per crear una adreça de xarxa única, com la de email."; -App::$strings["Allowed characters are a-z 0-9, - and _"] = "Els caràcters permesos són lletres minúscules sense accents, números i guions: a-z, 0-9, -, _"; -App::$strings["Channel name"] = "Nom del canal"; -App::$strings["Choose a short nickname"] = "Tria un àlies curt"; -App::$strings["Channel role and privacy"] = "Rol i privacitat del canal"; -App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges."; -App::$strings["Read more about channel permission roles"] = "Llegeix més sobre els rols de permisos en els canals"; -App::$strings["Create a Channel"] = "Crea un canal"; -App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal és una identitat de xarxa única. Tant pot representar una persona (el seu perfil social), com un fòrum (un grup), una associació o la pàgina d'algun personatge públic, un flux de notícies, i moltes més coses."; -App::$strings["or import an existing channel from another location."] = "o bé importa un canal existent des d'una altra ubicació."; -App::$strings["Validate"] = "Valida-ho"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "No es permet esborrar un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al qual pertany."; -App::$strings["Remove This Channel"] = "Esborra aquest canal"; -App::$strings["WARNING: "] = "ALERTA:"; -App::$strings["This channel will be completely removed from the network. "] = "Aquest canal serà esborrat de la xarxa completament."; -App::$strings["This action is permanent and can not be undone!"] = "Aquesta acció és irreversible!"; -App::$strings["Please enter your password for verification:"] = "Per seguretat, torna a introduir la contrasenya per a confirmar aquesta acció:"; -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 es pot esborrar la instància del canal ubicada en aquest hub."; -App::$strings["Remove Channel"] = "Elimina el canal"; -App::$strings["Files: shared with me"] = "Arxius: compartits amb mi"; -App::$strings["NEW"] = "NOU"; -App::$strings["Size"] = "Mida"; -App::$strings["Last Modified"] = "Última modificació"; -App::$strings["Remove all files"] = "Esborra tots els arxius"; -App::$strings["Remove this file"] = "Esborra l'arxiu"; -App::$strings["\$Projectname Server - Setup"] = "Servidor de \$Projectname - Instaŀlació"; -App::$strings["Could not connect to database."] = "No s'ha pogut establir una connexió amb la base de dades"; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No s'ha pogut connectar amb la URL del lloc especificat. Comprova si hi ha un problema amb el certificat TLS o amb el registre DNS."; -App::$strings["Could not create table."] = "No s'ha pogut crear la taula."; -App::$strings["Your site database has been installed."] = "S'ha instaŀlat la base de dades del teu node."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Consulta el fitxer \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Comprovació del sistema"; -App::$strings["Check again"] = "Comprova de nou"; -App::$strings["Database connection"] = "Connexió amb la base de dades"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per tal d'instaŀlar \$Projectname cal configurar la connexió amb la base de dades."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Si tens dubtes sobre aquests paràmetres, posa't en contacte amb la proveïdora d'allotjament web o la persona que administradora del lloc."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de dades que especifiquis a continuació ja ha d'existir. Si no és així, crea-la abans de continuar."; -App::$strings["Database Server Name"] = "Nom del servidor de base de dades"; -App::$strings["Default is 127.0.0.1"] = "Per defecte és 127.0.0.1"; -App::$strings["Database Port"] = "Port per a la base de dades"; -App::$strings["Communication port number - use 0 for default"] = "Número del port. Posa 0 per fer servir el valor predeterminat"; -App::$strings["Database Login Name"] = "Nom d'usuari/a a la base de dades"; -App::$strings["Database Login Password"] = "Contrasenya d'usuari/a a la base de dades"; -App::$strings["Database Name"] = "Nom de la base de dades"; -App::$strings["Database Type"] = "Tipus de base de dades"; -App::$strings["Site administrator email address"] = "Adreça de correu de l'administrador/a del lloc"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "El teu compte de correu ha de coincidir-hi per poder emprar el panell web d'administració."; -App::$strings["Website URL"] = "Adreça URL del lloc web"; -App::$strings["Please use SSL (https) URL if available."] = "Si us plau, fes servir l'adreça amb TLS (https) si està disponible."; -App::$strings["Please select a default timezone for your website"] = "Escull la zona horària per defecte del teu lloc web"; -App::$strings["Site settings"] = "Configuració del lloc"; -App::$strings["PHP version 5.5 or greater is required."] = "Es necessita una versió de PHP igual o superior a la 5.5."; -App::$strings["PHP version"] = "Versió del PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No s'ha pogut trobar una versió de consola del PHP en la ruta del servidor 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."] = "Si no tens una versió de línia de comandes de PHP instaŀlada al servidor, no es podran fer sondejos periòdics en segon pla, fent servir el cron."; -App::$strings["PHP executable path"] = "Ruta al binari de PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introdueix la ruta al binari de php. Pots deixar-ho en blanc i continuar l'instaŀlació."; -App::$strings["Command line PHP"] = "Línia de comandes de PHP"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "No s'ha pogut fer servir PHP per línia de comandes perquè shell_exec() està deshabilitat. Cal habilitar-ho."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versió de línia de comandes de PHP al teu sistema no té el \"register_argc_argv\" activat."; -App::$strings["This is required for message delivery to work."] = "Això és necessari per poder lliurar missatges."; -App::$strings["PHP register_argc_argv"] = "register_argc_argv de PHP"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "El límit màxim de pujada està establerta en %s. El límit de pujada per arxiu de pujada és de %s. Es permeten pujar %d arxius alhora."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Pots modificar la configuració en l'arxiu de configuració php.ini del servidor."; -App::$strings["PHP upload limits"] = "Límits de pujada de PHP"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifratge"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si estàs fent servir un sistema operatiu Windows, consulta \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claus de xifratge"; -App::$strings["libCurl PHP module"] = "mòdul de PHP \"libCurl\""; -App::$strings["GD graphics PHP module"] = "mòdul de PHP \"GD graphics\""; -App::$strings["OpenSSL PHP module"] = "mòdul de PHP \"OpenSSL\""; -App::$strings["PDO database PHP module"] = "Mòdul PHP per la base de dades PDO"; -App::$strings["mb_string PHP module"] = "mòdul de PHP \"mb_string\""; -App::$strings["xml PHP module"] = "mòdul de PHP \"xml\""; -App::$strings["zip PHP module"] = "Mòdul PHP per als comprimits zip"; -App::$strings["Apache mod_rewrite module"] = "mòdul d'Apache: \"mod_rewrite\""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: es necessita el mòdul \"mod-rewrite\" del servidor web Apache, però no està instal·lat."; -App::$strings["exec"] = "exec"; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Error: no s'ha pogut fer servir exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini"; -App::$strings["shell_exec"] = "shell_exec"; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Error: no s'ha pogut fer servir shell_exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: es necessita el mòdul PHP \"libCURL\", però no està instal·lat."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: es necessita el mòdul PHP \"GD graphics\" amb support JPEG, però no està instal·lat."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: es necessita el mòdul PHP \"OpenSSL\", però no està instal·lat."; -App::$strings["Error: PDO database PHP module required but not installed."] = "Error: no s'ha trobat el mòdul PHP per a la base de dades PDO. Cal instaŀlar-lo."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: es necessita el mòdul PHP \"mb_string\", però no està instal·lat."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: es necessita el mòdul PHP \"xml\" per al DAV, però no està instal·lat."; -App::$strings["Error: zip PHP module required but not installed."] = "Error: no s'ha trobat el mòdul PHP per als fitxers zip. Cal instaŀlar-lo."; -App::$strings[".htconfig.php is writable"] = "L'arxiu «.htconfig.php» es pot modificar"; -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 permisos de modificació."; -App::$strings["Please see install/INSTALL.txt for additional information."] = "Consulta install/INSTALL.txt per a més informació."; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Aquest software fa servir el motor de plantilles Smarty3 per a renderitzar les vistes web. Smarty3 compila plantilles a PHP per a agilitzar-ne el renderitzat."; -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 tal de guardar aquestes plantilles compilades, el servidor web necessita tenir permís d'escriptura en el directori %s sota la carpeta principal."; -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 top level web folder"] = "Aquest software fa servir la carpeta \"store\" per a desar els arxius pujats. El servidor web necessita permís d'escriptura per a accedir-hi. Es troba a la carpeta 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."] = "No s'ha pogut validar el certificat TLS. 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 per 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!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi node."; -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 vàlid, 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 vàlid é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."] = "Si no tens cap dubte que el certificat és vàlid i signat per una autoritat de confiança, comprova si has instaŀlat malament un certificat intermedi. Tot i que els navegadors no en demanen, són necessaris per les connexions entre servidors."; -App::$strings["SSL certificate validation"] = "Validació del certificat TLS"; -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»"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "L'arxiu de configuracio de la base de dades «.htconfig.php» no s'ha pogut modificar. L'hauràs de modificar manualment amb el text de la caixa de text, i desar-lo a l'arrel del servidor web."; -App::$strings["Errors encountered creating database tables."] = "S'han produït errors en crear taules a la base de dades."; -App::$strings["

What next?

"] = "

I ara què

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT! Cal que configuris manualment una execució periòdica de l'enquestador (poller en anglès)."; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Configuració dels canals prèmium"; -App::$strings["Enable premium channel connection restrictions"] = "Activa l'opció de restringir les connexions dels canals prèmium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueix 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:"] = "Les possibles connexions 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 per la persona propietària del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal restringit o prèmium"; -App::$strings["Queue Statistics"] = "Estadístiques de la cua"; -App::$strings["Total Entries"] = "Total d'entrades"; -App::$strings["Priority"] = "Prioritat"; -App::$strings["Destination URL"] = "Adreça URL de Destí"; -App::$strings["Mark hub permanently offline"] = "Marca el node com a permanentment fora de línia"; -App::$strings["Empty queue for this hub"] = "Buida la cua per aquest node"; -App::$strings["Last known contact"] = "Últim contacte conegut"; -App::$strings["Off"] = "No"; -App::$strings["On"] = "Sí"; -App::$strings["Lock feature %s"] = "Bloqueja l'opció «%s»"; -App::$strings["Manage Additional Features"] = "Gestiona les funcionalitats addicionals"; -App::$strings["Update has been marked successful"] = "S'ha marcat l'actualització com a exitosa"; -App::$strings["Executing %s failed. Check system logs."] = "Ha fallat l'execució de %s. Comprova el registre del sistema."; -App::$strings["Update %s was successfully applied."] = "S'ha aplicat amb èxit l'actualització %s."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Es desconeix si l'actualització %s s'ha aplicat amb èxit, ja que no ha retornat cap resultat."; -App::$strings["Update function %s could not be found."] = "No s'ha pogut trobar la funció d'actualització %s."; -App::$strings["Failed Updates"] = "Actualitzacions fallides"; -App::$strings["Mark success (if update was manually applied)"] = "Marca com a exitosa. Fes-ho només si l'actualització s'ha aplicat de forma manual i saps del cert que ha estat així."; -App::$strings["Attempt to execute this update step automatically"] = "Prova a fer automàticament aquesta actualització"; -App::$strings["No failed updates."] = "No hi ha actualitzacions fallides."; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "S'ha [des]bloquejat %s compte", - 1 => "S'han [des]bloquejat %s comptes", -); -App::$strings["%s account deleted"] = array( - 0 => "S'ha esborrat el compte %s", - 1 => "S'han esborrat %s comptes", -); -App::$strings["Account not found"] = "No s'ha trobat el compte"; -App::$strings["Account '%s' deleted"] = "S'ha esborrat el compte '%s'"; -App::$strings["Account '%s' blocked"] = "S'ha bloquejat el compte '%s'"; -App::$strings["Account '%s' unblocked"] = "S'ha desbloquejat el compte '%s'"; -App::$strings["Administration"] = "Administració"; -App::$strings["Accounts"] = "Comptes"; -App::$strings["select all"] = "sel·leciona-ho tot"; -App::$strings["Registrations waiting for confirm"] = "Inscripcions esperant confirmació"; -App::$strings["Request date"] = "Data de la petició"; -App::$strings["No registrations."] = "Sense inscripcions."; -App::$strings["Approve"] = "Aprova"; -App::$strings["Deny"] = "Denega"; -App::$strings["Block"] = "Bloqueja"; -App::$strings["Unblock"] = "Desbloqueja"; -App::$strings["ID"] = "Identificador"; -App::$strings["All Channels"] = "Tots els canals"; -App::$strings["Register date"] = "Data d'inscripció"; -App::$strings["Last login"] = "Últim inici de sessió"; -App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Classe de servei"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "S'esborraran tots els comptes seleccionats!\\n\\nTot el que hagin publicat en aquest lloc també serà esborrat permanentment!\\n\\nN'estàs segur/a de continuar?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "El compte {0} serà eliminat!\\n\\nTot el que hagi publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur/a?"; -App::$strings["Log settings updated."] = "S'ha actualitzat la configuració del registre."; -App::$strings["Logs"] = "Registre"; -App::$strings["Clear"] = "Neteja"; -App::$strings["Debugging"] = "Depuració"; -App::$strings["Log file"] = "Arxiu de registre"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "El servidor web l'ha de poder modificar. Escriu la ruta relativa respecte a la carpeta arrel del servidor web."; -App::$strings["Log level"] = "Nivell de registre"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canal censurat/no censurat", - 1 => "S'han [des]censurat %s canals", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s codi permes/no permes al canal", - 1 => "S'han [des]activat %s codis de canal", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canal esborrat", - 1 => "S'han esborrat %s canals", -); -App::$strings["Channel not found"] = "No s'ha trobat el canal"; -App::$strings["Channel '%s' deleted"] = "S'ha esborrat el canal «%s»"; -App::$strings["Channel '%s' censored"] = "S'ha censurat el canal «%s»"; -App::$strings["Channel '%s' uncensored"] = "S'ha descensurat el canal «%s»"; -App::$strings["Channel '%s' code allowed"] = "S'ha activat un codi pel canal «%s»"; -App::$strings["Channel '%s' code disallowed"] = "S'ha desactivat un codi pel canal «%s»"; -App::$strings["Channels"] = "Canals"; -App::$strings["Censor"] = "Censura"; -App::$strings["Uncensor"] = "Descensura"; -App::$strings["Allow Code"] = "Activa el codi"; -App::$strings["Disallow Code"] = "Desactiva el codi"; -App::$strings["Channel"] = "Canal"; -App::$strings["UID"] = "Identificador"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Els canals seleccionats estan a punt de ser esborrats\\n\\nTotes les seves publicacions en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a? "; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} està a punt de ser esborrat!\\n\\nTotes les seves publicacions d'aquest en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a?"; -App::$strings["Theme settings updated."] = "S'ha actualitzat la configuració de tema."; -App::$strings["No themes found."] = "No s'ha trobat cap tema."; -App::$strings["Item not found."] = "No s'ha trobat l'element."; -App::$strings["Disable"] = "Desactiva"; -App::$strings["Enable"] = "Activa"; -App::$strings["Screenshot"] = "Captura de pantalla"; -App::$strings["Themes"] = "Temes"; -App::$strings["Toggle"] = "Commuta'n l'estat"; -App::$strings["Settings"] = "Configuració"; -App::$strings["Author: "] = "Autor/a:"; -App::$strings["Maintainer: "] = "Persona mantenidora:"; -App::$strings["[Experimental]"] = "[Experimental]"; -App::$strings["[Unsupported]"] = "[Incompatible]"; -App::$strings["Site settings updated."] = "S'ha actualitzat la configuració del lloc"; -App::$strings["Default"] = "Predeterminat"; -App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; -App::$strings["mobile"] = "mòbil"; -App::$strings["experimental"] = "experimental"; -App::$strings["unsupported"] = "incompatible"; -App::$strings["Yes - with approval"] = "Sí - amb aprovació"; -App::$strings["My site is not a public server"] = "El meu node no es un servidor públic"; -App::$strings["My site has paid access only"] = "El meu node només ofereix accés de pagament"; -App::$strings["My site has free access only"] = "El meu node només ofereix accés gratuït"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "El meu node ofereix comptes gratuïts i millores de pagament"; -App::$strings["Beginner/Basic"] = "Principiant/bàsica"; -App::$strings["Novice - not skilled but willing to learn"] = "Aprenent - amb poca experiència però amb ganes d'aprendre"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermedi - còmode en entorns informàtics"; -App::$strings["Advanced - very comfortable"] = "Avançat - molt còmode en entorns informàtics"; -App::$strings["Expert - I can write computer code"] = "Expert - Sé programar"; -App::$strings["Wizard - I probably know more than you do"] = "Bruixot - Segurament en sé més que tu"; -App::$strings["Default permission role for new accounts"] = "Rol de permisos per defecte per als comptes nous."; -App::$strings["This role will be used for the first channel created after registration."] = "S'aplicarà aquest rol al primer canal que es creï després del registre d'un compte."; -App::$strings["Site"] = "Node"; -App::$strings["Registration"] = "Inscripcions"; -App::$strings["File upload"] = "Pujada d'arxius"; -App::$strings["Policies"] = "Polítiques"; -App::$strings["Advanced"] = "Avançat"; -App::$strings["Site name"] = "Nom del node"; -App::$strings["Site default technical skill level"] = "Nivell per defecte del lloc de competències tècniques"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Es fa servir per oferir una experiència ajustada al nivell tècnic de cadascú"; -App::$strings["Lock the technical skill level setting"] = "Bloqueja el paràmetre de nivell tècnic"; -App::$strings["Members can set their own technical comfort level by default"] = "Per defecte, els/les membres poden modificar el paràmetre de nivell tècnic"; -App::$strings["Banner/Logo"] = "Cartell i logotip"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Es permet contingut HTML, CSS i JS, sense filtrar"; -App::$strings["Administrator Information"] = "Informació de l'administració"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informació per contactar amb les persones administradores del node. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode."; -App::$strings["Site Information"] = "Informació del node"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descripció del node visible públicament. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode."; -App::$strings["System language"] = "Llengua del sistema"; -App::$strings["System theme"] = "Tema del sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema per defecte. Les persones usuàries poden sobreescriure'l a la configuració de perfil: canvia la configuració de tema"; -App::$strings["Allow Feeds as Connections"] = "Permet connectar-se a fluxos RSS"; -App::$strings["(Heavy system resource usage)"] = "(Demana molts recursos de 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 total per les imatges pujades, en bytes. Per defecte és 0, que vol dir iŀlimitada."; -App::$strings["Does this site allow new member registration?"] = "Aquest node està obert a la inscripció de nous membres?"; -App::$strings["Invitation only"] = "Només per invitació"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet nous membres només a través d'invitacions. Perquè tingui efecte, les inscripcions han d'estar obertes a nous membres."; -App::$strings["Minimum age"] = "Edat mínima"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Edat mínima en anys per a poder crear un compte en aquest lloc."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Quina descripció s'acosta més al tipus de comptes oferts en aquest node?"; -App::$strings["Register text"] = "Text d'inscripció"; -App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà en gran a la pàgina d'inscripció"; -App::$strings["Site homepage to show visitors (default: login box)"] = "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'inici de sessió)"; -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: 'public' per a mostrar el flux públic, 'page/sys/home' per a mostrar una pàgina web de sistema de nom 'home', o 'include:home.html' per a incloure un arxiu."; -App::$strings["Preserve site homepage URL"] = "Preserva l'adreça URL de la pàgina d'inici"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la pàgina d'inici del node en un marc en el lloc original enlloc de redirigir-hi"; -App::$strings["Accounts abandoned after x days"] = "Els comptes es consideren abandonats després de X dies"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Estalviarà recursos del sistema en no sondejar nodes externs per a comptes abandonats. Un 0 vol dir \"mai\"."; -App::$strings["Allowed friend domains"] = "Dominis amb permisos de connexió"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Llista separada per comes de dominis en els quals està permès establir relacions d'amistat amb aquest node. S'accepten comodins (*). Deixa-ho buit per a acceptar qualsevol domini"; -App::$strings["Verify Email Addresses"] = "Verifica les adreces de correu electrònic"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activa per a comprovar l'adreça de correu emprada durant la inscripció d'un nou compte (recomanat)."; -App::$strings["Force publish"] = "Força la publicació"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Activa per a forçar que tots el perfils en aquest node siguin llistats en el directori del lloc."; -App::$strings["Import Public Streams"] = "Importar fluxos públics"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importa i permet l'accés a contingut públic sondejat d'altres llocs. Avís: aquest contingut no estarà moderat."; -App::$strings["Site only Public Streams"] = "Fluxos públics només locals"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permet accedir a aquell contingut públic que s'hagi originat en aquest lloc, suposant que no s'estan important fluxos públics d'altres nodes."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Permet a qualsevol persona d'internet d'accedir els fluxos públics"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desabilita-ho per a demanar iniciar sessió per poder-ho veure. Alerta: el contingut no estarà moderat."; -App::$strings["Only import Public stream posts with this text"] = "Importa només entrades del flux públics que continguin aquest text"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "paraules una per línia o #etiquetes o /patrons/ o idioma=xx, deixar en blanc per importar totes les entrades"; -App::$strings["Do not import Public stream posts with this text"] = "No importes entrades del flux públic que continguin aquest text"; -App::$strings["Login on Homepage"] = "Accés a la Pàgina d'inici"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut."; -App::$strings["Enable context help"] = "Activar l'ajuda contextual"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Mostra l'ajuda contextual per la pàgina actual quan el botó d'ajuda es pressionat."; -App::$strings["Reply-to email address for system generated email."] = "Adreça de correu de resposta per als correus generats."; -App::$strings["Sender (From) email address for system generated email."] = "Adreça de correu de remitent per als correus generats."; -App::$strings["Name of email sender for system generated email."] = "Nom visible de remitent per als correus generats."; -App::$strings["Directory Server URL"] = "URL del Servidor de Directoris"; -App::$strings["Default directory server"] = "Servidor de directori per defecte"; -App::$strings["Proxy user"] = "Usuari Proxy"; -App::$strings["Proxy URL"] = "URL del Proxy"; -App::$strings["Network timeout"] = "Temps d'espera de la xarxa"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)"; -App::$strings["Delivery interval"] = "Interval de lliurament"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats."; -App::$strings["Deliveries per process"] = "Entregues per processar"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Nombre de entregues a intentar processar en un únic procèss del sistema operatiu. Ajustar si es necessari per millorar el rendiment. Es recomana: 1-5."; -App::$strings["Queue Threshold"] = "Llindar de la cua"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Posposa el lliurament immediat si la cua conté més d'aquest nombre d'entrades."; -App::$strings["Poll interval"] = "interval de sondeig"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament."; -App::$strings["Path to ImageMagick convert program"] = "Ruta al programa de conversió d'imatges ImageMagick"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si se n'indica la ruta, es farà servir aquest programa per a generar miniatures per a imatges enormes (més de 4000 píxels d'ample o alt). En cas contrari es pot esgotar la memòria del servidor. Ruta d'exemple: /usr/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Permet miniatures en SVG a l'explorador de fitxers"; -App::$strings["WARNING: SVG images may contain malicious code."] = "Alerta: Les imatges SVG poden contenir codi maliciós."; -App::$strings["Maximum Load Average"] = "Càrrega Mitja Màxima"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Període d'expiració en dies per contingut importat (malla/xarxa)"; -App::$strings["0 for no expiration of imported content"] = "0 vol dir sense temps d'expiració pel contingut importat"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "No facis caducar les entrades que tinguin comentaris més nous que aquest nombre de dies"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidors públics: Pàgina d'arribada promocional per a nous usuaris o usuàries."; -App::$strings["Create this page first. Default is %s/register"] = "Crea primer aquesta pàgina. Per defecte és %s/register"; -App::$strings["Page to display after creating a new channel"] = "Pàgina que es mostrarà després d'haver creat un canal nou"; -App::$strings["Default: profiles"] = "Per defecte: profiles"; -App::$strings["Optional: site location"] = "Opcional: ubicació del node"; -App::$strings["Region or country"] = "Regió o país"; -App::$strings["Plugin %s disabled."] = "S'ha desactivat l'extensió %s."; -App::$strings["Plugin %s enabled."] = "S'ha activat l'extensió %s."; -App::$strings["Addons"] = "Extensions"; -App::$strings["Minimum project version: "] = "Versió mínima del projecte:"; -App::$strings["Maximum project version: "] = "Versió màxima del projecte:"; -App::$strings["Minimum PHP version: "] = "Versió mínima de PHP:"; -App::$strings["Compatible Server Roles: "] = "Rols de servidor compatibles"; -App::$strings["Requires: "] = "Demana:"; -App::$strings["Disabled - version incompatibility"] = "Desactivada - versions incompatibles"; -App::$strings["Enter the public git repository URL of the addon repo."] = "Introdueix la URL del repositori git d'extensions. Ha de ser un repositori públic."; -App::$strings["Addon repo git URL"] = "Adreça URL del repositori d'extensions."; -App::$strings["Custom repo name"] = "Nom personalitzat pel repositori"; -App::$strings["(optional)"] = "(opcional)"; -App::$strings["Download Addon Repo"] = "Descarrega el repositori"; -App::$strings["Install new repo"] = "Instal·la un nou repositori"; -App::$strings["Install"] = "Instal·la"; -App::$strings["Manage Repos"] = "Gestiona els repositoris"; -App::$strings["Installed Addon Repositories"] = "Repositoris instaŀlats"; -App::$strings["Install a New Addon Repository"] = "Instal·la un nou repositori"; -App::$strings["Switch branch"] = "Canvia de branca"; -App::$strings["Remove"] = "Esborra"; -App::$strings["New Profile Field"] = "Camp de Perfil Nou"; -App::$strings["Field nickname"] = "Àlies de Camp"; -App::$strings["System name of field"] = "nOM DEL SISTEMA DEL CAMP"; -App::$strings["Input type"] = "Tipus d'entrada"; -App::$strings["Field Name"] = "Nom de Camp"; -App::$strings["Label on profile pages"] = "Etiqueta a les pàgines de perfil"; -App::$strings["Help text"] = "Text d'ajuda"; -App::$strings["Additional info (optional)"] = "Informació adicional (opcional)"; -App::$strings["Save"] = "Guardar"; -App::$strings["Field definition not found"] = "No es troba la definició del camp"; -App::$strings["Edit Profile Field"] = "Modifica el camp de perfil"; -App::$strings["Profile Fields"] = "Camps del Perfil"; -App::$strings["Basic Profile Fields"] = "Camps Bàsics del Perfil"; -App::$strings["Advanced Profile Fields"] = "Camps Avançats del Perfil"; -App::$strings["(In addition to basic fields)"] = "( addicionalment als camps bàsics)"; -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["Password changed for account %d."] = "S'ha modificat la contrasenya pel compte %d."; -App::$strings["Account settings updated."] = "S'han actualitzat els paràmetres del compte."; -App::$strings["Account not found."] = "No s'ha trobat el compte."; -App::$strings["Account Edit"] = "Edita el compte"; -App::$strings["New Password"] = "Introdueix la nova contrasenya"; -App::$strings["New Password again"] = "Repeteix la nova contrasenya"; -App::$strings["Technical skill level"] = "Nivell de competències tècniques"; -App::$strings["Account language (for emails)"] = "Idioma pel compte (pels correus)"; -App::$strings["Service class"] = "Classe de servei"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:"; -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."] = "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament."; -App::$strings["Security"] = "Seguretat"; -App::$strings["Block public"] = "Bloca que sigui públic"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "activa per blocar l'accés a les pàgines personals públiques a tothom excepte aquells/es que s'hagin autenticat en aquest node."; -App::$strings["Provide a cloud root directory"] = "Ofereix un directori arrel de núvols"; -App::$strings["The cloud root directory lists all channel names which provide public files"] = "EL directori arrel de núvols llista tots els canals que ofereixen fitxers públicament"; -App::$strings["Show total disk space available to cloud uploads"] = "Mostra l'espai disc disponible per a pujar arxius als núvols"; -App::$strings["Set \"Transport Security\" HTTP header"] = "Set \"Transport Security\" HTTP header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Set \"Content Security Policy\" HTTP header"; -App::$strings["Allowed email domains"] = "Dominis de correu electonic acceptats"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "llista separada per comes de dominis d'adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini"; -App::$strings["Not allowed email domains"] = "Dominis de correu electrònic no acceptats"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "llista separada per comes de dominis d'adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats."; -App::$strings["Allow communications only from these sites"] = "Permetre comunicacions únicament des de aquests llocs"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un lloc per línia. Deixar en blanc per permetre, per defecte, la comunicació amb tothom."; -App::$strings["Block communications from these sites"] = "Bloca comunicacions que venen d'aquests llocs"; -App::$strings["Allow communications only from these channels"] = "Permet la comunicació només per aquests canals"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) per línia. Deixa en blanc per permetre, per defecte, la comunicació qualsevol canal."; -App::$strings["Block communications from these channels"] = "Bloca les comunicacions que venen d'aquests canals"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetre embeguts només de llocs web i enllaços segurs (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Permetre HTML embegut sense filtrar només d'aquests dominis."; -App::$strings["One site per line. By default embedded content is filtered."] = "Un lloc per línia. Per defecte el contingut embegut es filtrat."; -App::$strings["Block embedded HTML from these domains"] = "Bloca HTML embegut d'aquests dominis"; -App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; -App::$strings["Visible to:"] = "Visible per:"; -App::$strings["__ctx:acl__ Profile"] = "Perfil"; -App::$strings["Comment approved"] = "S'ha aprovat el comentari"; -App::$strings["Comment deleted"] = "S'ha esborrat el comentari"; -App::$strings["Permission Name is required."] = "Es necessita el nom del perfil."; -App::$strings["Permission category saved."] = "S'ha desat la categoria de permisos."; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Pots crear regles de permisos segons classe de persona o de connexió."; -App::$strings["Permission Categories"] = "Categories de permisos"; -App::$strings["Permission Name"] = "Nom de permís"; -App::$strings["My Settings"] = "La meva configuració"; -App::$strings["inherited"] = "heretat"; -App::$strings["Individual Permissions"] = "Permisos Individuals"; -App::$strings["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."] = "Alguns permisos pot ser que vinguin heretats de la configuració de privacitat del teu canal. Aquesta té més prioritat que les configuracions individuals. No pots canviar aquests paràmetres aquí."; -App::$strings["Friends"] = "Amics"; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Nobody except yourself"] = "Ningú excepte tú"; -App::$strings["Only those you specifically allow"] = "Només allò que específicament permetis"; -App::$strings["Approved connections"] = "Connexions aprovades"; -App::$strings["Any connections"] = "Qualsevol connexió"; -App::$strings["Anybody on this website"] = "Qualsevol en aquest lloc"; -App::$strings["Anybody in this network"] = "Qualsevol en aquesta xarxa"; -App::$strings["Anybody authenticated"] = "Qualsevol autenticat"; -App::$strings["Anybody on the internet"] = "Qualsevol a internet"; -App::$strings["Publish your default profile in the network directory"] = "Publica el teu perfil per defecte al directori de la xarxa"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Ens permets suggerir-te com a potencial amic als nous membres?"; -App::$strings["or"] = "o"; -App::$strings["Your channel address is"] = "La teva adreça del canal es"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "Les teves fotos i arxius estan disponibles mitjançant WebDAV a"; -App::$strings["Automatic membership approval"] = "Acceptació automàtica de membres"; -App::$strings["If enabled, connection requests will be approved without your interaction"] = "Si s'habilita, les soŀlicituds de connexió s'aprovaran automàticament sense requerir la teva interacció"; -App::$strings["Channel Settings"] = "Configuració de canal"; -App::$strings["Basic Settings"] = "Configuració bàsica"; -App::$strings["Full Name:"] = "Nom Complet:"; -App::$strings["Email Address:"] = "Adreça de E-Correu:"; -App::$strings["Your Timezone:"] = "La teva Franja Horària"; -App::$strings["Default Post Location:"] = "Localització Predeterminada de les Entrades:"; -App::$strings["Geographical location to display on your posts"] = "Posició geogràfica a mostrar a les teves entrades"; -App::$strings["Use Browser Location:"] = "Empra la Localització del Navegador:"; -App::$strings["Adult Content"] = "Contingut per a Adults"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Aquest canal publica freqúentment o amb regularitat contingut per a adults. (Si us plau, etiqueti qualsevol material per a adults amb #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configuració de seguretat i privacitat"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Els teus permisos estan configurats. Clic per veure/ajustar"; -App::$strings["Hide my online presence"] = "Amaga la meva presencia en línia"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evita mostrar en el teu perfil, que estàs en línia"; -App::$strings["Simple Privacy Settings:"] = "Configuració simple de privacitat:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Molt públic - extremadament permissiu (s'ha d'anar en compte)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)"; -App::$strings["Private - default private, never open or public"] = "Privat - privat per defecte, mai públic o obert"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloquejat - tothom bloquejat per defecte"; -App::$strings["Allow others to tag your posts"] = "Permet a altres etiquetar les teves entrades"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat"; -App::$strings["Channel Permission Limits"] = "Límits dels permisos del canal"; -App::$strings["Expire other channel content after this many days"] = "El contingut d'altes canals caduca després d'aquests dies"; -App::$strings["0 or blank to use the website limit."] = "0 o en blanc per emprar el limit del lloc web."; -App::$strings["This website expires after %d days."] = "Aquest lloc web expira després de %d dies."; -App::$strings["This website does not expire imported content."] = "A aquest lloc web no expira el contingut importat"; -App::$strings["The website limit takes precedence if lower than your limit."] = "El límit del lloc web pren la preferència si es inferior al teu límit."; -App::$strings["Maximum Friend Requests/Day:"] = "Nombre màxim de peticions d'amistat per dia"; -App::$strings["May reduce spam activity"] = "Pot reduir l'SPAM"; -App::$strings["Default Privacy Group"] = "Grup de privacitat per defecte"; -App::$strings["Use my default audience setting for the type of object published"] = "Empra la meva configuració d'audiència que hagi triat per al tipus d'entrada"; -App::$strings["Profile to assign new connections"] = "Perfil al qual assignar les connexions noves"; -App::$strings["Default Permissions Group"] = "Grup de permisos per defecte"; -App::$strings["Maximum private messages per day from unknown people:"] = "Nombre màxim de missatges privats de desconeguts al dia:"; -App::$strings["Useful to reduce spamming"] = "Útil per a reduir l'spam"; -App::$strings["Notification Settings"] = "Configuració de notificacions"; -App::$strings["By default post a status message when:"] = "Per defecte envia un missatge d'estat quan:"; -App::$strings["accepting a friend request"] = "S'accepta una sol·licitud d'amistat"; -App::$strings["joining a forum/community"] = "Apuntar-se a un fòrum o comunitat"; -App::$strings["making an interesting profile change"] = "Faci un canvi interesant al perfil"; -App::$strings["Send a notification email when:"] = "Notifica per correu quan:"; -App::$strings["You receive a connection request"] = "Rebi una petició de connexió"; -App::$strings["Your connections are confirmed"] = "Es confirma una connexió"; -App::$strings["Someone writes on your profile wall"] = "Algú ha escrit al mur del teu perfil"; -App::$strings["Someone writes a followup comment"] = "Algú ha escrit un comentari de resposta"; -App::$strings["You receive a private message"] = "Rebi un missatge privat"; -App::$strings["You receive a friend suggestion"] = "Rebi una suggerència d'amistat"; -App::$strings["You are tagged in a post"] = "Estàs etiquetat a l'entrada"; -App::$strings["You are poked/prodded/etc. in a post"] = "S'enfoten/te piquen/etc. en una entrada"; -App::$strings["Someone likes your post/comment"] = "A algú li ha agradat la teva entrada o comentari"; -App::$strings["Show visual notifications including:"] = "Mostra notificacion visuals, com ara:"; -App::$strings["Unseen grid activity"] = "Activitat de malla no vista"; -App::$strings["Unseen channel activity"] = "Activitat no vista del canal"; -App::$strings["Unseen private messages"] = "Missatges privats no llegits"; -App::$strings["Recommended"] = "Recomanat"; -App::$strings["Upcoming events"] = "Esdeveniments propers"; -App::$strings["Events today"] = "Esdeveniments d'avui"; -App::$strings["Upcoming birthdays"] = "Aniversaris propers"; -App::$strings["Not available in all themes"] = "No està disponible en tots els temes"; -App::$strings["System (personal) notifications"] = "Notificacions (personals) del sistema"; -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["Unseen shared files"] = "Fitxers compartits nous"; -App::$strings["Unseen public activity"] = "Activitat pública nova"; -App::$strings["Unseen likes and dislikes"] = "\"M'agrada\" i \"no m'agrada\" pendents"; -App::$strings["Unseen forum posts"] = "Entrades de fòrum no llegides"; -App::$strings["Email notification hub (hostname)"] = "Hub per a notificacions per correu (nom de domini)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "En cas que el teu canal estigui repicat en diversos hubs, habilita aquesta opció al teu hub preferit. Això evita notificacions duplicades. Exemple: %s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostra totes les novetats d'entrades de mur, missatges privats i 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"; -App::$strings["Advanced Account/Page Type Settings"] = "Configuració avançada de compte i de tipus de pàgina"; -App::$strings["Change the behaviour of this account for special situations"] = "Modifica el comportament d'aquest compte en situacions especials"; -App::$strings["Miscellaneous Settings"] = "Configuració diversa"; -App::$strings["Default photo upload folder"] = "Carpeta per defecte de fotos pujades"; -App::$strings["%Y - current year, %m - current month"] = "%Y - any en curs, %m - mes corrent"; -App::$strings["Default file upload folder"] = "Carpeta per defecte d'arxius pujats"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal per mostrar en les teves pàgines de canal"; -App::$strings["Remove this channel."] = "Elimina aquest canal."; -App::$strings["Firefox Share \$Projectname provider"] = "Firefox Share \$Projectname provider"; -App::$strings["Start calendar week on Monday"] = "Comença la setmana en dilluns"; -App::$strings["Additional Features"] = "Característiques Addicionals"; -App::$strings["Your technical skill level"] = "El teu nivell tècnic"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Es fa servir per a oferir-te una experiència i un seguit de funcionalitats addicionals d'acord amb la complexitat que desitgis."; -App::$strings["This channel is limited to %d tokens"] = "Aquest canal té un límit de %d tokens"; -App::$strings["Name and Password are required."] = "El nom i la contrasenya són necessaris."; -App::$strings["Token saved."] = "S'ha desat el token."; -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 private content."] = "Fes servir aquest formulari per a crear identificadors d'accés temporal per tal de compartir coses amb persones no membres. Aquestes identitats són reconegudes a \"Control d'accés\" i poden ser usades per iniciar sessió i accedir a contingut privat."; -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:"] = "Si vols donar enllaços que no requereixin dos passos, pots afegir la contrasenya d'accés a la URL per compartir. Per exemple:"; -App::$strings["Guest Access Tokens"] = "Tokens d'accés de convidat"; -App::$strings["Login Name"] = "Nom d'usuari"; -App::$strings["Login Password"] = "Contrasenya d'usuari"; -App::$strings["Expires (yyyy-mm-dd)"] = "Data de caducitat (aaaa-mm-dd)"; -App::$strings["Their Settings"] = "La seva configuració"; -App::$strings["Name and Secret are required"] = "Es necessiten el nom i el secret"; -App::$strings["Add OAuth2 application"] = "Afegeix una aplicació OAuth2"; -App::$strings["Name of application"] = "Nom de l'aplicatiu"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20"; -App::$strings["Redirect"] = "Redirecciona"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi."; -App::$strings["Grant Types"] = "Tipus de permís"; -App::$strings["leave blank unless your application sepcifically requires this"] = "deixa-ho en blanc si no és que la teva aplicació ho demana explícitament"; -App::$strings["Authorization scope"] = "Àmbit d'autorització"; -App::$strings["OAuth2 Application not found."] = "No s'ha trobat l'aplicació OAuth2."; -App::$strings["Add application"] = "Afegir aplicatiu"; -App::$strings["Connected OAuth2 Apps"] = "Aplicacions OAuth2 connectades"; -App::$strings["Client key starts with"] = "La clau del client comença amb"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Elimina autorització"; -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."; -App::$strings["Technical skill level updated"] = "S'ha actualitzat el nivell de competències tècniques"; -App::$strings["Password verification failed."] = "La verificació de la contrasenya ha fallat."; -App::$strings["Passwords do not match. Password unchanged."] = "Les contrasenyes no coincideixen. Contrasenya sense canvis."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis."; -App::$strings["Password changed."] = "Contrasenya canviada."; -App::$strings["Password update failed. Please try again."] = "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho."; -App::$strings["Account Settings"] = "Configuració del compte"; -App::$strings["Current Password"] = "Contrasenya Actual"; -App::$strings["Enter New Password"] = "Entra la Nova Contrasenya"; -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["Remove Account"] = "Esborra el Compte"; -App::$strings["Remove this account including all its channels"] = "Esborra aquest compte inclosos tots els seus canals"; -App::$strings["Affinity Slider settings updated."] = "S'ha actualitzat la configuració de la barra d'afinitat"; -App::$strings["No feature settings configured"] = "No hi ha opcions de les funcions configurades"; -App::$strings["Default maximum affinity level"] = "Nivell màxim d'afinitat predeterminat"; -App::$strings["0-99 default 99"] = "0-99 (per defecte 99)"; -App::$strings["Default minimum affinity level"] = "Nivell mínim d'afinitat predeterminat"; -App::$strings["0-99 - default 0"] = "0-99 (per defecte 0)"; -App::$strings["Affinity Slider Settings"] = "Configuració de la barra d'afinitat"; -App::$strings["Addon Settings"] = "Configuració de les extensions"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Desa els canvis en un panell abans d'obrir-ne un altre."; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Configuració de pantalla"; -App::$strings["Theme Settings"] = "Configuració de tema"; -App::$strings["Custom Theme Settings"] = "Configuració de temes personalitzats"; -App::$strings["Content Settings"] = "Configuració dels continguts"; -App::$strings["Display Theme:"] = "Tema de pantalla:"; -App::$strings["Select scheme"] = "Tria esquema"; -App::$strings["Preload images before rendering the page"] = "Precarrega les imatges abans de dibuixar la pàgina"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El temps subjectiu per carregar la pàgina pot ser llarg però la pàgina estarà preparada quan es mostri"; -App::$strings["Enable user zoom on mobile devices"] = "Zoom d'usuari en dispositius mòbils"; -App::$strings["Update browser every xx seconds"] = "Actualitza el navegador cada xx segons"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínim de 10 segons, sense màxim"; -App::$strings["Maximum number of conversations to load at any time:"] = "Nombre màxim de conversacions a càrregar cada vegada"; -App::$strings["Maximum of 100 items"] = "Màxim de 100 elements"; -App::$strings["Show emoticons (smilies) as images"] = "Mostra emoticons (smilies) com a imatges"; -App::$strings["Provide channel menu in navigation bar"] = "Mostra el menú de canal a la barra de navegació"; -App::$strings["Default: channel menu located in app menu"] = "Per defecte, el menú de canal es troba al menú d'aplicacions"; -App::$strings["Manual conversation updates"] = "Actualitza les converses manualment"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "Per defecte està habilitada perquè evita que la pàgina salti cap avall en actualitzar-se."; -App::$strings["Link post titles to source"] = "Enllaça a l'origen els títols de l'entrada"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de dissenys de pàgines de sistema (avançat)"; -App::$strings["Use blog/list mode on channel page"] = "Empra el mode blog/llista a la pàgina del canal"; -App::$strings["(comments displayed separately)"] = "(Observacions es mostren per separat)"; -App::$strings["Use blog/list mode on grid page"] = "Empra el mode de blog/llista a la pàgina de la malla"; -App::$strings["Channel page max height of content (in pixels)"] = "Alçada màxima de contingut (en píxels) de la pàgina de Canal"; -App::$strings["click to expand content exceeding this height"] = "Clic per expandir el contingut que excedeixi aquesta alçada"; -App::$strings["Grid page max height of content (in pixels)"] = "Alçada màxima dels continguts (en píxels) de la Pàgina de Malla "; -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["Consumer Key"] = "Consumer Key"; -App::$strings["Icon url"] = "Icona de url"; -App::$strings["Optional"] = "Opcional"; -App::$strings["Application not found."] = "Aplicatiu no trobat."; -App::$strings["Connected Apps"] = "Aplicatius Conectats"; -App::$strings["View Photo"] = "Mostra la imatge"; -App::$strings["Edit Album"] = "Modifica l'àlbum"; -App::$strings["Upload"] = "Pujar"; -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["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["Permissions"] = "Permisos "; -App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil"; -App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema."; -App::$strings["System Notifications"] = "Notificacions del sistema"; -App::$strings["Connection added."] = "S'ha afegit la connexió."; -App::$strings["Your service plan only allows %d channels."] = "El teu paquet de serveis només admet %d canals."; -App::$strings["No channel. Import failed."] = "Sense canal. No s'ha pogut importar."; -App::$strings["Import completed."] = "S'ha completat la importació."; -App::$strings["You must be logged in to use this feature."] = "Has d'estar registrat per fer servir aquesta funcionalitat."; -App::$strings["Import Channel"] = "Importa un canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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ó"; -App::$strings["Or provide the old server/hub details"] = "O proveeix els detalls de l'antic servidor/node"; -App::$strings["Your old identity address (xyz@example.com)"] = "La teva adreça de canal antiga. El format és canal@exemple.org"; -App::$strings["Your old login email address"] = "La teva adreça de correu electrònic antiga"; -App::$strings["Your old login password"] = "La teva contrasenya antiga"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importa, si es possible, missatges de fa uns quants mesos (limitat per la memòria disponible) "; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; -App::$strings["Make this hub my primary location"] = "Fes d'aquest node la meva ubicació primària"; -App::$strings["Move this channel (disable all previous locations)"] = "Moure aquest canal (desactiva totes les prèvies localitzacions)"; -App::$strings["Use this channel nickname instead of the one provided"] = "Fes servir aquest nom de canal en comptes del que has facilitat"; -App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Deixa-ho en blanc per a mantenir el teu nom de canal actual. Se t'assignarà un nom aleatori però similar a l'actual en cas que el nom actual ja estigui agafat en aquest node."; -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["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["Permissions denied."] = "Permís denegat."; -App::$strings["Import"] = "Importar"; -App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació"; -App::$strings["Return to your app and insert this Security Code:"] = "Torna a la teva aplicació i introdueix aquest codi de seguertat"; -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["Item not available."] = "Article no disponible."; -App::$strings["Edit Block"] = "Editar Bloc"; -App::$strings["vcard"] = "vcard (targeta estàndard de contacte)"; -App::$strings["Apps"] = "Aplicatius"; -App::$strings["Manage apps"] = "Gestiona apps"; -App::$strings["Create new app"] = "Crear una nova app"; -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["Active"] = "Actives"; -App::$strings["Blocked"] = "Bloquejades"; -App::$strings["Ignored"] = "Ignorades"; -App::$strings["Hidden"] = "Amagades"; -App::$strings["Archived/Unreachable"] = "Arxivades o inaccessibles"; -App::$strings["New"] = "Nou"; -App::$strings["All"] = "Tots"; -App::$strings["Active Connections"] = "Connexions actives"; -App::$strings["Show active connections"] = "Mostra les connexions actives"; -App::$strings["New Connections"] = "Noves Connexions"; -App::$strings["Show pending (new) connections"] = "Mostra les connexions pendents (noves)"; -App::$strings["Only show blocked connections"] = "Mostra només les connexions bloquejades"; -App::$strings["Only show ignored connections"] = "Mostra només les connexions ignorades"; -App::$strings["Only show archived/unreachable connections"] = "Mostra només les connexions arxivades o inaccessibles"; -App::$strings["Only show hidden connections"] = "Mostra només les connexions amagades"; -App::$strings["Show all connections"] = "Mostra totes les connexions"; -App::$strings["Pending approval"] = "Pendent d'aprovació"; -App::$strings["Archived"] = "Arxivades"; -App::$strings["Not connected at this location"] = "No està connectada des d'aquest aquest hub"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica la connexió"; -App::$strings["Delete connection"] = "Elimina la connexió"; -App::$strings["Channel address"] = "Adreça del canal"; -App::$strings["Network"] = "Xarxa"; -App::$strings["Call"] = "Crida"; -App::$strings["Status"] = "Estat"; -App::$strings["Connected"] = "Connectat"; -App::$strings["Approve connection"] = "Aprovar la Connexió "; -App::$strings["Ignore connection"] = "Ignorar connexió"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Activitat recent"; -App::$strings["Connections"] = "Connexions"; -App::$strings["Search your connections"] = "Cerca entre les teves connexions"; -App::$strings["Connections search"] = "Cerca connexions"; -App::$strings["Find"] = "Troba"; -App::$strings["item"] = "element"; -App::$strings["Bookmark added"] = "S'ha afegit el marcador"; -App::$strings["My Bookmarks"] = "Els meus marcadors"; -App::$strings["My Connections Bookmarks"] = "Els marcadors de les meves connexions"; -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"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa"; -App::$strings["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada"; -App::$strings["Album not found."] = "Àlbum no trobat"; -App::$strings["Delete Album"] = "Esborra Àlbum"; -App::$strings["Delete Photo"] = "Esborra Foto"; -App::$strings["No photos selected"] = "No has seleccionat fotos"; -App::$strings["Access to this item is restricted."] = "L'accés a aquest element esta restringit."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges."; -App::$strings["%1$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de l'espai per a imatges."; -App::$strings["Upload Photos"] = "Puja imatges"; -App::$strings["Enter an album name"] = "Escriu el nom del àlbum"; -App::$strings["or select an existing album (doubleclick)"] = "o bé fes doble clic a un d'existent"; -App::$strings["Create a status post for this upload"] = "Genera una entrada a partir de la pujada"; -App::$strings["Description (optional)"] = "Descripció (opcional)"; -App::$strings["Show Newest First"] = "Ordena de més nou a més antic"; -App::$strings["Show Oldest First"] = "Ordena de més antic a més nou"; -App::$strings["Add Photos"] = "Afegeix fotos"; -App::$strings["Permission denied. Access to this item may be restricted."] = "S'ha denegat el permís. Pot ser que l'accés estigui restringit."; -App::$strings["Photo not available"] = "La imatge no està disponible"; -App::$strings["Use as profile photo"] = "Fes-la imatge de perfil"; -App::$strings["Use as cover photo"] = "Emprar com a foto de portada"; -App::$strings["Private Photo"] = "Imatge privada"; -App::$strings["View Full Size"] = "Mostra a mida completa"; -App::$strings["Edit photo"] = "Modifica la imatge"; -App::$strings["Rotate CW (right)"] = "Tomba cap a la dreta"; -App::$strings["Rotate CCW (left)"] = "Tomba cap a l'esquerra"; -App::$strings["Move photo to album"] = "Mou la foto a un àlbum"; -App::$strings["Enter a new album name"] = "Escriu el nom del nou àlbum"; -App::$strings["or select an existing one (doubleclick)"] = "o bé fes doble clic a un d'existent"; -App::$strings["Add a Tag"] = "Afegeix una etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple: @joan, @Paula_Peris, @mar@exemple.org"; -App::$strings["Flag as adult in album view"] = "Marca com a contingut adult"; -App::$strings["I like this (toggle)"] = "M'agrada això (canvia)"; -App::$strings["I don't like this (toggle)"] = "No m'agrada això (canvia)"; -App::$strings["Please wait"] = "Si us plau, espera"; -App::$strings["This is you"] = "Ets tú"; -App::$strings["Comment"] = "Comentari"; -App::$strings["__ctx:title__ Likes"] = "Agrada"; -App::$strings["__ctx:title__ Dislikes"] = "Desagrada"; -App::$strings["__ctx:title__ Agree"] = "Acord"; -App::$strings["__ctx:title__ Disagree"] = "Desacord"; -App::$strings["__ctx:title__ Abstain"] = "Abstenirse"; -App::$strings["__ctx:title__ Attending"] = "Assistint"; -App::$strings["__ctx:title__ Not attending"] = "Desassistint"; -App::$strings["__ctx:title__ Might attend"] = "Podrien assistir"; -App::$strings["View all"] = "Veure tot"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Agrada", - 1 => "Agraden", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Desagrada", - 1 => "Desagrada", -); -App::$strings["Photo Tools"] = "Eines per Fotos"; -App::$strings["In This Photo:"] = "Hi apareixen:"; -App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Agrada"; -App::$strings["__ctx:noun__ Dislikes"] = "Desagrada"; -App::$strings["Close"] = "Tanca"; -App::$strings["Recent Photos"] = "Imatges recents"; -App::$strings["Profile Unavailable."] = "El perfil no està disponible."; -App::$strings["Not found"] = "No s'ha trobat"; -App::$strings["Invalid channel"] = "El canal és invàlid"; -App::$strings["Error retrieving wiki"] = "S'ha produït un error en carregar la wiki"; -App::$strings["Error creating zip file export folder"] = "S'ha produït un error en crear la carpeta per al fitxer comprimit d'exportació"; -App::$strings["Error downloading wiki: "] = "S'ha produït un error en descarregar la wiki:"; -App::$strings["Wikis"] = "Wikis"; -App::$strings["Download"] = "Descarrega"; -App::$strings["Create New"] = "Crear Nou"; -App::$strings["Wiki name"] = "Nom de la wiki"; -App::$strings["Content type"] = "Llenguatge de formatació"; -App::$strings["Markdown"] = "Markdown"; -App::$strings["BBcode"] = "BBCode"; -App::$strings["Text"] = "Cap (text pla)"; -App::$strings["Type"] = "Tipus"; -App::$strings["Any type"] = "Qualsevol"; -App::$strings["Lock content type"] = "Bloca el llenguatge de formatació"; -App::$strings["Create a status post for this wiki"] = "Crea una entrada d'estat per aquesta wiki"; -App::$strings["Edit Wiki Name"] = "Canvia el nom de la wiki"; -App::$strings["Wiki not found"] = "No s'ha trobat la wiki"; -App::$strings["Rename page"] = "Canvia el nom de la pàgina"; -App::$strings["Error retrieving page content"] = "S'ha produït un error en carregar el contingut de la pàgina"; -App::$strings["New page"] = "Crea una pàgina nova"; -App::$strings["Revision Comparison"] = "Comparació de revisió"; -App::$strings["Revert"] = "Reverteix"; -App::$strings["Short description of your changes (optional)"] = "Descripció curta dels canvis (opcional)"; -App::$strings["Source"] = "Font"; -App::$strings["New page name"] = "Nou nom de pàgina"; -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"] = "Escull 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["Error creating wiki. Invalid name."] = "S'ha produït un error en crear la wiki. El nom no és vàlid."; -App::$strings["A wiki with this name already exists."] = "Ja existeix una wiki amb aquest nom."; -App::$strings["Wiki created, but error creating Home page."] = "S'ha creat la wiki, però s'ha produït un error en crear-ne la pàgina principal."; -App::$strings["Error creating wiki"] = "S'ha produït un error en crear la wiki"; -App::$strings["Error updating wiki. Invalid name."] = "S'ha produït un error en actualitzar la wiki. El nom no és vàlid."; -App::$strings["Error updating wiki"] = "S'ha produït un error en actualitzar la wiki"; -App::$strings["Wiki delete permission denied."] = "No tens permís per a eliminar la wiki"; -App::$strings["Error deleting wiki"] = "S'ha produït un error en eliminar la wiki"; -App::$strings["New page created"] = "S'ha desat la nova pàgina"; -App::$strings["Cannot delete Home"] = "No es pot esborrar la pàgina principal"; -App::$strings["Current Revision"] = "Revisió actual"; -App::$strings["Selected Revision"] = "Revisió seleccionada"; -App::$strings["You must be authenticated."] = "Has d'estar autenticat."; -App::$strings["toggle full screen mode"] = "commuta el mode de pantalla completa"; -App::$strings["Layout updated."] = "S'ha actualitzat el disseny."; -App::$strings["Feature disabled."] = "Funcionalitat desactivada."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; -App::$strings["(modified)"] = "(modificat)"; -App::$strings["Reset"] = "Reajustar"; -App::$strings["Layout not found."] = "No s'ha trobat cap disseny de pàgina."; -App::$strings["Module Name:"] = "Nom del mòdul:"; -App::$strings["Layout Help"] = "Ajuda per al disseny de pàgina"; -App::$strings["Edit another layout"] = "Modifica un altre disseny"; -App::$strings["System layout"] = "Disseny del sistema"; -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["Image uploaded but image cropping failed."] = "S'ha pujat la imatge però no s'ha pogut retallar."; -App::$strings["Profile Photos"] = "Fotos del Perfil"; -App::$strings["Image resize failed."] = "No s'ha pogut escalar la imatge."; -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["Unable to process image"] = "incapaç de processar la imatge"; -App::$strings["Image upload failed."] = "La pujada de la imatge va fracassar."; -App::$strings["Unable to process image."] = "Incapaç de processar l'imatge."; -App::$strings["Photo not available."] = "Foto no disponible."; -App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "La teva foto de perfil predeterminada és pública i visible per a tothom. Les fotos de perfil dels perfils alternatius hereten els permisos del seu perfil."; -App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "La teva foto de perfil és pública i visible a tothom, i és probable que s'escampi per altres webs."; -App::$strings["Upload File:"] = "Puja Arxiu:"; -App::$strings["Select a profile:"] = "Tria un perfil:"; -App::$strings["Use Photo for Profile"] = "Fes servir la foto per al perfil"; -App::$strings["Change Profile Photo"] = "Canvia la imatge de perfil"; -App::$strings["Use"] = "Aplica"; -App::$strings["Use a photo from your albums"] = "Agafa una foto dels àlbums"; -App::$strings["Select existing photo"] = "Tria una foto existent"; -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["Away"] = "Absent"; -App::$strings["Online"] = "En connexió"; -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["Duplicate post suppressed."] = "Publicació duplicada s'ha suprimit."; -App::$strings["System error. Post not saved."] = "Hi ha hagut un error del sistema. L'entrada no s'ha desat."; -App::$strings["Your comment is awaiting approval."] = "El teu comentari encara no ha estat aprovat."; -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["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["requires approval"] = "requereix aprovació"; -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["shared a file with you"] = "ha compartit un fitxer amb tu"; -App::$strings["Private forum"] = "Fòrum privat"; -App::$strings["Public forum"] = "Fòrum públic"; -App::$strings["Invalid item."] = "Article invàlid."; -App::$strings["Page not found."] = "Pàgina no trobada."; -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["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ó."; -App::$strings["Failed to update connection record."] = "No s'ha pogut actualitzar el registre de connexió."; -App::$strings["is now connected to"] = "Ara està conectat amb"; -App::$strings["Could not access address book record."] = "No puc accedir al registre del contacte"; -App::$strings["Refresh failed - channel is currently unavailable."] = "Ha fallat la recàrrega - el canal es actualment inaccesible."; -App::$strings["Unable to set address book parameters."] = "No es poden ajustar els paràmetres dels contactes."; -App::$strings["Connection has been removed."] = "S'han eliminat les conexions."; -App::$strings["View Profile"] = "Mostra el meu perfil"; -App::$strings["View %s's profile"] = "Mostra el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recarrega els Permissos"; -App::$strings["Fetch updated permissions"] = "Obté els permisos actualitzats"; -App::$strings["Refresh Photo"] = "Recarrega la foto"; -App::$strings["Fetch updated photo"] = "Demana la nova foto al servidor"; -App::$strings["Recent Activity"] = "Activitat Recent"; -App::$strings["View recent posts and comments"] = "Mostra les entrades i comentaris recents"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió"; -App::$strings["This connection is blocked!"] = "Aquesta connexió està bloquejada!"; -App::$strings["Unignore"] = "Inhabilita"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora (o Considera) les communicacions entrants d'aquesta connexió"; -App::$strings["This connection is ignored!"] = "Aquesta connexió es ignorada!"; -App::$strings["Unarchive"] = "Desarxiva"; -App::$strings["Archive"] = "Arxiva"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arxiva (o Desarxiva) aquesta connexió - Marca el canal com a mort pero manté el contingut "; -App::$strings["This connection is archived!"] = "Aquesta connexió està arxivada!"; -App::$strings["Unhide"] = "Mostra"; -App::$strings["Hide"] = "Amaga"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Amaga (o Mostra) aquesta connexió de les altres connexions teves"; -App::$strings["This connection is hidden!"] = "Aquesta connexió està amagada!"; -App::$strings["Delete this connection"] = "Elimina aquesta connexió"; -App::$strings["Fetch Vcard"] = "Obté la targeta de contacte Vcard"; -App::$strings["Fetch electronic calling card for this connection"] = "Obté la targeta de trucada electrònica d'aquesta connexió"; -App::$strings["Open Individual Permissions section by default"] = "Obrir, per defecte, la secció de Permisos Individuals"; -App::$strings["Affinity"] = "Afinitat"; -App::$strings["Open Set Affinity section by default"] = "Obre per defecte la barra d'afinitat"; -App::$strings["Me"] = "Jo"; -App::$strings["Family"] = "Família"; -App::$strings["Acquaintances"] = "Coneguts"; -App::$strings["Filter"] = "Filtre"; -App::$strings["Open Custom Filter section by default"] = "Obrir, per defecte, la secció de Filtres a Mida"; -App::$strings["Approve this connection"] = "Apccepta aquesta connexió"; -App::$strings["Accept connection to allow communication"] = "Accepta la connexió per permetre la comunicació"; -App::$strings["Set Affinity"] = "Ajusta l'Afinitat"; -App::$strings["Set Profile"] = "Ajusta el Perfil"; -App::$strings["Set Affinity & Profile"] = "Ajusta Afinitat i Perfil"; -App::$strings["This connection is unreachable from this location."] = "Aquesta connexió no és accessible des d'aquest hub."; -App::$strings["This connection may be unreachable from other channel locations."] = "Aquesta connexió no és accessibles des d'altres hubs del canal."; -App::$strings["Location independence is not supported by their network."] = "La xarxa d'aquesta connexió no és compatible amb la independència de hub."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Aquesta connexió no és accessible des d'aquest hub. La seva xarxa no és compatible amb la independència de hub."; -App::$strings["Connection Default Permissions"] = "Permisos per Defecte de la Connexió"; -App::$strings["Connection: %s"] = "Connexió: %s"; -App::$strings["Apply these permissions automatically"] = "Aplica aquests permissos automaticament"; -App::$strings["Connection requests will be approved without your interaction"] = "Les peticions de connexió seran aprovades sense la teva interacció"; -App::$strings["Permission role"] = "Permisos de rol"; -App::$strings["Add permission role"] = "Afegir permisos de rol"; -App::$strings["This connection's primary address is"] = "La primera adreça d'aqueste connexió es"; -App::$strings["Available locations:"] = "Localització disponible:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions."; -App::$strings["Connection Tools"] = "Eines de Connexió"; -App::$strings["Slide to adjust your degree of friendship"] = "Llisca per ajustar el nivell d'amistat"; -App::$strings["Rating"] = "Valora"; -App::$strings["Slide to adjust your rating"] = "Llisca per ajustar la valoració"; -App::$strings["Optionally explain your rating"] = "Opcionalment pots explicar la teva valoració"; -App::$strings["Custom Filter"] = "Filtre a mida"; -App::$strings["Only import posts with this text"] = "Importa exclusivament entrades amb aquest text"; -App::$strings["Do not import posts with this text"] = "No importar entrades amb aquest text"; -App::$strings["This information is public!"] = "Aquesta informació es pública!"; -App::$strings["Connection Pending Approval"] = "Connexió Pendent d'Aprovació"; -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["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 pot ser que vinguin heretats de la configuració de privacitat. del teu canal. Aquesta té més prioritat que les configuracions individuals. Pots canviar aquí aquests permisos però no tindran cap impacte mentre no canviï la configuració del teu canal."; -App::$strings["Last update:"] = "Darrera actualització:"; -App::$strings["Details"] = "Detalls"; -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"] = "Desa aquesta sala"; -App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; -App::$strings["Encrypt text"] = "Text encriptat"; -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["%1\$s's Chatrooms"] = "%1\$s de Xats"; -App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles"; -App::$strings["Expiration"] = "Expiració"; -App::$strings["min"] = "min"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Files"] = "Arxius"; -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"] = "Activa els marcadors"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a desar 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["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"] = "Activa els marcadors"; -App::$strings["Layouts"] = "Dissenys"; -App::$strings["Help"] = "Ajuda"; -App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; -App::$strings["Layout Description"] = "Descripció del disseny pàgina"; -App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; -App::$strings["Please refresh page"] = "Recarrega la pàgina"; -App::$strings["Unknown error"] = "S'ha produït un error desconegut"; -App::$strings["Token verification failed."] = "Ha fallat la verificació del token."; -App::$strings["Email Verification Required"] = "Cal verificar el correu"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "S'ha enviat al teu correu (%s) un token de verificació. Introdueix-lo aquí per a completar la verificació del compte. Tingues en compte que el correu pot trigar uns minuts en arribar, i que hi ha proveïdors de correu que el classificaran com a correu brossa."; -App::$strings["Resend Email"] = "Torna a enviar el correu"; -App::$strings["Validation token"] = "Token de validació"; -App::$strings["Post not found."] = "No s'ha trobat l'entrada"; -App::$strings["post"] = "entrada"; -App::$strings["comment"] = "comentari"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetat %3\$s de %2\$s amb %4\$s"; -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."] = "Alerta: segons quines combinacions podrien deixar el teu canal inusable. No és recomanable canviar aquesta configuració si no ets sents còmode/ i segur/a de com fer servir aquesta funcionalitat."; -App::$strings["Automatic approval settings"] = "Aprovació automàtica de soŀlicituds de connexió"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "El valor per defecte dels permisos individuals poden tenir valors per defecte segons el tipus de canal i les opcions de privacitat. Pot ser que no estiguis autoritzat/da a modificar-los."; -App::$strings["Unknown App"] = "No es coneix l'aplicació"; -App::$strings["Authorize"] = "Autoritza"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "Vols autoritzar l'aplicació %s a accedir a les dades del teu canal?"; -App::$strings["Allow"] = "Permet-ho"; -App::$strings["Privacy group created."] = "S'ha creat el grup de privacitat."; -App::$strings["Could not create privacy group."] = "No s'ha pogut crear el grup de privacitat."; -App::$strings["Privacy group not found."] = "No s'ha trobat el grup de privacitat."; -App::$strings["Privacy group updated."] = "S'ha actualitzat el grup de privacitat."; -App::$strings["Privacy Groups"] = "Grup de privacitat"; -App::$strings["Add Group"] = "Afegeix un grup"; -App::$strings["Privacy group name"] = "Nom del grup de privacitat"; -App::$strings["Members are visible to other channels"] = "Els membres son visibles en altres canals"; -App::$strings["Members"] = "Membres"; -App::$strings["Privacy group removed."] = "S'ha esborrat el grup de privacitat."; -App::$strings["Unable to remove privacy group."] = "No s'ha pogut esborrar el grup de privacitat."; -App::$strings["Privacy Group: %s"] = "Grup de privacitat: %s"; -App::$strings["Privacy group name: "] = "Nom del grup de privacitat:"; -App::$strings["Delete Group"] = "Esborra el grup"; -App::$strings["Group members"] = "Membres del grup"; -App::$strings["Not in this group"] = "No hi són al grup"; -App::$strings["Click a channel to toggle membership"] = "Fes clic a un canal per a ficar-lo o treure'l del grup"; -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["Gender"] = "Gènere"; -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"] = "Modifica els detalls de perfil"; -App::$strings["View this profile"] = "Mostra 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 aquesta configuració"; -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["Relationship"] = "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["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["Homepage URL"] = "URL de la pàgina d'inici"; -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["Communications"] = "Comunicacions"; -App::$strings["Profile Image"] = "Imatge del Perfil"; -App::$strings["Edit Profiles"] = "Modifica els perfils"; -App::$strings["This page is available only to site members"] = "Aquesta pàgina només és accessible per als membres del node."; -App::$strings["Welcome"] = "Benvingut/da"; -App::$strings["What would you like to do?"] = "Què t'agradaria fer?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Marca aquesta pàgina si vols tornar-hi en un futur"; -App::$strings["Upload a profile photo"] = "Puja una imatge de perfil"; -App::$strings["Upload a cover photo"] = "Puja una imatge de portada"; -App::$strings["Edit your default profile"] = "Modifica el teu perfil per defecte"; -App::$strings["View friend suggestions"] = "Mostra suggerències de connexions"; -App::$strings["View the channel directory"] = "Mostra el directori del canal"; -App::$strings["View/edit your channel settings"] = "Mostra o modifica la configuració del teu canal"; -App::$strings["View the site or project documentation"] = "Mostra la documentació del projecte"; -App::$strings["Visit your channel homepage"] = "Ves a la pàgina del teu canal"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Mostra les teves connexions o afegeix-ne una de nova introduint la seva adreça a mà."; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Mostra el teu flux personal. Estarà buit mentre no et connectis amb ningú."; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Mostra el flux públic. Avís: aquest contingut no està moderat"; -App::$strings["Page link"] = "Enllaç de la pàgina"; -App::$strings["Edit Webpage"] = "Edita la Pàgina Web"; -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["Cards"] = "Targetes"; -App::$strings["Add Card"] = "Afegeix una carta"; -App::$strings["This directory server requires an access token"] = "Aquest servidor de directori requereix un token de accès"; -App::$strings["About this site"] = "Sobre aquest lloc web"; -App::$strings["Site Name"] = "Nom del lloc web"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["Terms of Service"] = "Condicions del Servei"; -App::$strings["Software and Project information"] = "Informació del programari i del projecte"; -App::$strings["This site is powered by \$Projectname"] = "Aquest lloc web funciona amb \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Els serveis d'identitat i la federació i descentralització de la xarxa funcionen amb Zot"; -App::$strings["Additional federated transport protocols:"] = "Altres protocols de transport federats:"; -App::$strings["Version %s"] = "Versió %s"; -App::$strings["Project homepage"] = "Pàgina principal del projecte"; -App::$strings["Developer homepage"] = "Pàgina principal de desenvolupament"; -App::$strings["No ratings"] = "No valorat"; -App::$strings["Ratings"] = "Valoracions"; -App::$strings["Rating: "] = "Valoració:"; -App::$strings["Website: "] = "Lloc web:"; -App::$strings["Description: "] = "Descripció:"; -App::$strings["Import Webpage Elements"] = "Importa elements de pàgina web"; -App::$strings["Import selected"] = "Importa la selecció"; -App::$strings["Export Webpage Elements"] = "Exporta elements de pàgina web"; -App::$strings["Export selected"] = "Exporta la selecció"; -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["Invalid file type."] = "El tipus de fitxer és invàlid."; -App::$strings["Error opening zip file"] = "Hi ha hagut un error descomprimint"; -App::$strings["Invalid folder path."] = "El camí de carpeta és invàlid."; -App::$strings["No webpage elements detected."] = "No s'ha detectat cap element de pàgina web."; -App::$strings["Import complete."] = "S'ha completat la importació."; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "No es permet canviar el nom d'un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al que pertany."; -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["Change channel nickname/address"] = "Canvia el nom o adreça del canal"; -App::$strings["Any/all connections on other networks will be lost!"] = "Es perdran totes les connexions amb xarxes externes!"; -App::$strings["New channel address"] = "Adreça de canal nova"; -App::$strings["Rename Channel"] = "Canvia el nom del canal"; -App::$strings["Item is not editable"] = "Article no editable"; -App::$strings["Edit post"] = "Modifica l'entrada"; -App::$strings["Invalid message"] = "Missatge invàlid."; -App::$strings["no results"] = "sense resultats"; -App::$strings["channel sync processed"] = "sincronització del canal processada"; -App::$strings["queued"] = "Posat en cua"; -App::$strings["posted"] = "enviat"; -App::$strings["accepted for delivery"] = "acceptat per entregar"; -App::$strings["updated"] = "actualitzat"; -App::$strings["update ignored"] = "actualització ignorada"; -App::$strings["permission denied"] = "permís denegat"; -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"] = "Opcions"; -App::$strings["Redeliver"] = "Tornar a lliurar"; -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."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Canal Origen"; -App::$strings["Manage remote sources of content for your channel."] = "Gestiona contingut per al teu canal d'origens remots"; -App::$strings["New Source"] = "Nou Origen"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa-ho tot o només allò seleccionat del següent canals, cap a aquest canal, i distribueix-lo d'acord a la configuració del teu canal."; -App::$strings["Only import content with these words (one per line)"] = "Només importa contingut amb aquestes paraules (una per línia)"; -App::$strings["Leave blank to import all public content"] = "Deixar en blanc per importar tot el contingut públic"; -App::$strings["Channel Name"] = "Nom del canal"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Afegeix les següents categories d'entrades importades des d'aquest origen (separat per comes)"; -App::$strings["Resend posts with this channel as author"] = "Reenvia les entrades que tinguin aquest canal com a autor/a"; -App::$strings["Copyrights may apply"] = "Poden aplicar drets d'autor"; -App::$strings["Source not found."] = "No s'ha trobat la font."; -App::$strings["Edit Source"] = "Edita la font"; -App::$strings["Delete Source"] = "Esborra la font"; -App::$strings["Source removed"] = "S'ha esborrat la font"; -App::$strings["Unable to remove source."] = "No s'ha pogut esborrar la font."; -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["%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["No default suggestions were found."] = "No s'han trobat suggerències predefinides."; -App::$strings["%d rating"] = array( - 0 => "%d valoració", - 1 => "%d valoracions", -); -App::$strings["Gender: "] = "Gènere:"; -App::$strings["Status: "] = "Estatus:"; -App::$strings["Homepage: "] = "Pàgina Personal:"; -App::$strings["Age:"] = "Edat:"; -App::$strings["Location:"] = "Localització:"; -App::$strings["Description:"] = "Descripció:"; -App::$strings["Hometown:"] = "Ciutat Natal:"; -App::$strings["About:"] = "Sobre:"; -App::$strings["Connect"] = "Connecta "; -App::$strings["Public Forum:"] = "Forum Públic:"; -App::$strings["Keywords: "] = "Paraules Clau:"; -App::$strings["Don't suggest"] = "No suggerir"; -App::$strings["Common connections (estimated):"] = "Connexions en comú (aproximades):"; -App::$strings["Global Directory"] = "Directori Global"; -App::$strings["Local Directory"] = "Directori Local"; -App::$strings["Finding:"] = "Cercant:"; -App::$strings["Channel Suggestions"] = "Canals Suggerits"; -App::$strings["next page"] = "pàgina següent"; -App::$strings["previous page"] = "pàgina anterior"; -App::$strings["Sort options"] = "Opcions per ordenar"; -App::$strings["Alphabetic"] = "Alfabètic"; -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["Xchan Lookup"] = "Cerca a xchan"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca a xchan començant per (o webbie)"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou."; -App::$strings["Ignore/Hide"] = "Ignora/Amaga"; -App::$strings["Unable to find your hub."] = "No es possible trobar el node"; -App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; -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"] = "missatge"; -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["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["Rate"] = "Puntua"; -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["Select a bookmark folder"] = "Tria una carpeta d'interès"; -App::$strings["Save Bookmark"] = "Desa el marcadors"; -App::$strings["URL of bookmark"] = "URL del marcador"; -App::$strings["Or enter new bookmark folder name"] = "O introdueix el nom d'una carpeta de marcadors nova"; -App::$strings["Enter a folder name"] = "Escriu el nom de la carpeta"; -App::$strings["or select an existing folder (doubleclick)"] = "o escull-ne una d'existent amb doble clic"; -App::$strings["Save to Folder"] = "Guardar en la Carpeta"; -App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei."; -App::$strings["Passwords do not match."] = "Les contrasenyes no coincideixen."; -App::$strings["Registration successful. Continue to create your first channel..."] = "S'ha registrat el compte amb èxit. Ara pots crear el teu primer canal..."; -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["Registration on this hub is by invitation only."] = "El registre en aquest node funciona per invitació."; -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["I accept the %s for this website"] = "Accepto el %s per a aquest lloc web"; -App::$strings["I am over %s years of age and accept the %s for this website"] = "Tinc més de %s anys i accepto les %s"; -App::$strings["Your email address"] = "La teva adreça de correu electrónic"; -App::$strings["Choose a password"] = "Tria una contrasenya"; -App::$strings["Please re-enter your password"] = "Si et plau, re-entra la contrasenya"; -App::$strings["Please enter your invitation code"] = "Si et plau, introdueix el teu codi d'invitació"; -App::$strings["Your Name"] = "El teu nom"; -App::$strings["Real names are preferred."] = "Considera de fer servir el teu nom real."; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies servirà per crear un nom fàcil per recordar l'adreça del canal. Per exemple, àlies%s"; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges."; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sí"; -App::$strings["Register"] = "Inscripció"; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Aquest node demana que es verifiquin els comptes de correu. Un cop completat el formulari, comprova la teva safata d'entrada i segueix les instruccions que hi trobaràs."; -App::$strings["Cover Photos"] = "Fotos de Portada"; -App::$strings["female"] = "femení"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s actualitzà el seu %2\$s"; -App::$strings["male"] = "masculí"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s actualitzà el seu %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s actualitzà els seus %2\$s"; -App::$strings["cover photo"] = "Foto de la portada"; -App::$strings["Your cover photo may be visible to anybody on the internet"] = "La teva foto de portada és pública i visible a tothom."; -App::$strings["Change Cover Photo"] = "Canvia la foto de portada"; -App::$strings["Documentation Search"] = "Cerca de Documentació"; -App::$strings["About"] = "El Meu Perfil"; -App::$strings["Administrators"] = "Administradors"; -App::$strings["Developers"] = "Desenvolupadors"; -App::$strings["Tutorials"] = "Tutorials"; -App::$strings["\$Projectname Documentation"] = "\$Projectname Documentació"; -App::$strings["Contents"] = "Continguts"; -App::$strings["Article"] = "Article"; -App::$strings["Item has been removed."] = "S'ha esborrat l'element."; -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["No such group"] = "No existeix el grup"; -App::$strings["No such channel"] = "No existeix el canal"; -App::$strings["Privacy group is empty"] = "El grup de privacitat està buit"; -App::$strings["Privacy group: "] = "Grup de privacitat:"; -App::$strings["Invalid channel."] = "El canal no és vàlid."; -App::$strings["network"] = "xarxa"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Benvingut a %s"; -App::$strings["Permission Denied."] = "Permisos Denegats."; -App::$strings["File not found."] = "Arxiu no torbat."; -App::$strings["Edit file permissions"] = "Edita els permisos d'arxiu"; -App::$strings["Set/edit permissions"] = "Canvia/edita permisos"; -App::$strings["Include all files and sub folders"] = "Inclou tots als arxius i subdirectoris"; -App::$strings["Return to file list"] = "Tornar al llistat d'arxius"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web"; -App::$strings["Share this file"] = "Comparteix l'arxiu"; -App::$strings["Show URL to this file"] = "Mostra la URL d'aquest arxiu"; -App::$strings["Show in your contacts shared folder"] = "Mostra les carpetes compartides dels teus contactes"; -App::$strings["No channel."] = "No s'ha trobat el canal"; -App::$strings["No connections in common."] = "No hi ha connexions en comú."; -App::$strings["View Common Connections"] = "Mostra les connexions en comú"; -App::$strings["Email verification resent"] = "S'ha tornat a enviar la verificació de orreu"; -App::$strings["Unable to resend email verification message."] = "No s'ha pogut tornar a enviar el correu de verificació."; -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["Blocked accounts"] = "Comptes bloquejats"; -App::$strings["Expired accounts"] = "Comptes caducats"; -App::$strings["Expiring accounts"] = "Comptes a punt de caducar"; -App::$strings["Clones"] = "Clons"; -App::$strings["Message queues"] = "Cues de missatges"; -App::$strings["Your software should be updated"] = "El teu programari cal que s'actualitzi"; -App::$strings["Summary"] = "Sumari"; -App::$strings["Registered accounts"] = "Comptes registrades"; -App::$strings["Pending registrations"] = "Comptes pendents d'inscripció"; -App::$strings["Registered channels"] = "Canals registrats"; -App::$strings["Active addons"] = "Extensions actives"; -App::$strings["Version"] = "Versió"; -App::$strings["Repository version (master)"] = "Versió (master) del repositori"; -App::$strings["Repository version (dev)"] = "Versió (desenvolupament) del repositori"; -App::$strings["No service class restrictions found."] = "No s'han trobat restriccions de clase."; -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["Edit Card"] = "Edita la targeta"; -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["Mark all seen"] = "Marca tot com ja vist"; -App::$strings["0. Beginner/Basic"] = "0. Bàsic, principiant"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novell - amb pocs coneixements però amb ganes d'aprendre"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermedi - més o menys còmode"; -App::$strings["3. Advanced - very comfortable"] = "3. Avançat - molt còmode"; -App::$strings["4. Expert - I can write computer code"] = "4. Expert - puc escriure codi en algun llenguatge de programació"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Ninja - probablement en sé més que tu"; -App::$strings["Site Admin"] = "Administració"; -App::$strings["Report Bug"] = "Informa d'errors"; -App::$strings["View Bookmarks"] = "Marcadors"; -App::$strings["My Chatrooms"] = "Les meves Sales de Xat"; -App::$strings["Remote Diagnostics"] = "Diagnòstics Remots"; -App::$strings["Suggest Channels"] = "Suggerir Canals"; -App::$strings["Login"] = "Identifica't"; -App::$strings["Activity"] = "Activitat"; -App::$strings["Wiki"] = "Wiki"; -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["Language"] = "Idioma"; -App::$strings["Post"] = "Entrada"; -App::$strings["Profile Photo"] = "Foto del Perfil"; -App::$strings["Purchase"] = "Compra"; -App::$strings["Undelete"] = "Desfés l'operació d'esborrar"; -App::$strings["Add to app-tray"] = "Afegeix a la safata d'aplicacions"; -App::$strings["Remove from app-tray"] = "Esborra de la safata d'aplicacions"; -App::$strings["Pin to navbar"] = "Fixa a la barra de navegació"; -App::$strings["Unpin from navbar"] = "Treu de la barra de navegació"; -App::$strings["__ctx:permcat__ default"] = "per defecte"; -App::$strings["__ctx:permcat__ follower"] = "seguidor"; -App::$strings["__ctx:permcat__ contributor"] = "contribuïdor"; -App::$strings["__ctx:permcat__ publisher"] = "publicador"; -App::$strings["(No Title)"] = "(sense títol)"; -App::$strings["Wiki page create failed."] = "No s'ha pogut crear la pàgina a la wiki."; -App::$strings["Wiki not found."] = "No s'ha trobat la wiki."; -App::$strings["Destination name already exists"] = "El nom de destí ja existeix"; -App::$strings["Page not found"] = "No s'ha trobat la pàgina"; -App::$strings["Error reading page content"] = "S'ha produït un error en carregar el contingut de la pàgina"; -App::$strings["Error reading wiki"] = "S'ha produït un error en carregar la wiki"; -App::$strings["Page update failed."] = "No s'ha pogut actualitzar la pàgina."; -App::$strings["Nothing deleted"] = "No s'ha esborrat res"; -App::$strings["Compare: object not found."] = "S'ha produït un error en comparar la pàgina."; -App::$strings["Page updated"] = "S'ha actualitzat la pàgina"; -App::$strings["Untitled"] = "Sense títol"; -App::$strings["Wiki resource_id required for git commit"] = "Per a fer el git commit cal el resource_id de la wiki"; -App::$strings["__ctx:wiki_history__ Message"] = "Missatge"; -App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes"; -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"] = "Aquesta és la teva configuració per defecte per l'audiència de les teves pàgines web"; -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."; -App::$strings["Room not found."] = "Sala no trobada."; -App::$strings["Room is full"] = "La sala es plena"; -App::$strings["\$Projectname Notification"] = "Notificació de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gràcies,"; -App::$strings["%s Administrator"] = "%s Administrador"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "Aquest correu ha estat enviat per %1\$s a %2\$s."; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Per deixar de rebre aquests missatges, modifica la configuració de notificacions a %s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "Per deixar de rebre aquests missatges, modifica la teva %s."; -App::$strings["%s "] = "%s "; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Avís] S'ha rebut correu nou a %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s t'ha enviat un missatge privat a %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s t'ha enviat %2\$s."; -App::$strings["a private message"] = "un missatge privat"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Per favor, visita %s per a veure i/o respondre els teus missatges privats."; -App::$strings["commented on"] = "ha comentat"; -App::$strings["liked"] = "li ha agradat"; -App::$strings["disliked"] = "no li ha agradat"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]la teva %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Avís] S'ha moderat el comentari de %2\$s a la conversa #%1\$d"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Avís] Comentari de %2\$s a la conversa #%1\$d"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s ha comentat en una conversa que estàs seguint."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Si us plau visita %s per veure i/o contestar a la conversa"; -App::$strings["Please visit %s to approve or reject this comment."] = "Vés a %s per a aprovar o rebutjar el comentari."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "A %1\$s li ha agradat [zrl=%2\$s]la teva %3\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Avís] Un \"m'agrada\" a la conversa #%1\$d de %2\$s"; -App::$strings["%1\$s liked an item/conversation you created."] = "A %1\$s li ha agradat una conversa que has creat."; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Avís] %s ha penjat una entrada al teu mur"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha publicat al mur del teu perfil a %2\$s"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s ha publicat al [zrl=%2\$s]teu mur[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Avís] %s t'ha etiquetat"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s t'ha etiquetat a %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]t'ha etiquetat[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Avís] %1\$s t'ha fet un toc"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$s t'ha fet un toc a %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]t'ha fet un toc[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Avís] %s t'ha etiquetat una entrada"; -App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetat una entrada teva a %2\$s"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha etiquetat [zrl=%2\$s]la teva entrada[/zrl]"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Avís] S'ha rebut una sol·licitud de connexió"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Has rebut una soŀlicitud de connexió de '%1\$s' a %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Has rebut [zrl=%1\$s]una soŀlicitud de connexió[/zrl] de %2\$s."; -App::$strings["You may visit their profile at %s"] = "Pots visitar el seu perfil a %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Si us plau, visita %s per aprovar o rebutjar la petició de connexió."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Avís] S'ha rebut una suggerència d'amistat"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has rebut una soŀlicitud d'amistat de '%1\$s' a %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Has rebut [zrl=%1\$s]una soŀlicitud d'amistat[/zrl] per a %2\$s de part de %3\$s."; -App::$strings["Name:"] = "Nom:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Per favor, visita %s per a aprovar o rebutjar la suggerencia."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Avís]"; -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["edited a post dated %s"] = "ha editat una entrada amb data de %s"; -App::$strings["edited a comment dated %s"] = "ha editat un comentari amb data de %s"; -App::$strings["Wiki updated successfully"] = "S'ha actualitzat la wiki amb èxit"; -App::$strings["Wiki files deleted successfully"] = "S'han esborrat els fitxers de la wiki amb èxit"; -App::$strings["Update Error at %s"] = "Error d'Actualització a %s"; -App::$strings["Update %s failed. See error logs."] = "L'actualització %s ha fallat. Mira el registre d'errors."; -App::$strings["Private Message"] = "Missatge Privat"; -App::$strings["Admin Delete"] = "Esborrat amb privilegis d'administració"; -App::$strings["Select"] = "Selecciona"; -App::$strings["I will attend"] = "Assistiré"; -App::$strings["I will not attend"] = "No assistiré"; -App::$strings["I might attend"] = "Podria assistir"; -App::$strings["I agree"] = "D'acord"; -App::$strings["I disagree"] = "En desacord"; -App::$strings["I abstain"] = "M'abstinc"; -App::$strings["Toggle Star Status"] = "Canvia el Estat de la Preferència"; -App::$strings["Message signature validated"] = "Validada la signatura del missatge"; -App::$strings["Message signature incorrect"] = "Signatura del missatge incorrecta"; -App::$strings["Add Tag"] = "Afegeix Etiqueta"; -App::$strings["like"] = "agrada"; -App::$strings["dislike"] = "desagrada"; -App::$strings["Share This"] = "Comparteix Això"; -App::$strings["share"] = "comparteix"; -App::$strings["Delivery Report"] = "Informe de Lliurament"; -App::$strings["%d comment"] = array( - 0 => "%d commentari", - 1 => "%d commentaris", -); -App::$strings["View %s's profile - %s"] = "Mostra el perfil de %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Mur-a-Mur"; -App::$strings["via Wall-To-Wall:"] = "via Mur-a-Mur:"; -App::$strings["from %s"] = "De %s"; -App::$strings["last edited: %s"] = "últim editat: %s"; -App::$strings["Expires: %s"] = "Expira: %s"; -App::$strings["Attend"] = "Assistir-hi"; -App::$strings["Attendance Options"] = "Opcions d'assistència"; -App::$strings["Vote"] = "Votar"; -App::$strings["Voting Options"] = "Opcions de votació"; -App::$strings["Save Bookmarks"] = "Desa els marcadors"; -App::$strings["Add to Calendar"] = "Afegeix al Calendari"; -App::$strings["This is an unsaved preview"] = "Això només és una vista prèvia, no està desada"; -App::$strings["%s show all"] = "%s mostra-ho tot"; -App::$strings["Bold"] = "Negreta"; -App::$strings["Italic"] = "Italica"; -App::$strings["Underline"] = "Subratllat"; -App::$strings["Quote"] = "Cometes"; -App::$strings["Code"] = "Codi"; -App::$strings["Image"] = "Imatge"; -App::$strings["Attach/Upload file"] = "Adjunta i puja un arxiu"; -App::$strings["Insert Link"] = "Insereix Enllaç"; -App::$strings["Video"] = "Video"; -App::$strings["Your full name (required)"] = "Nom complet (obligatori)"; -App::$strings["Your email address (required)"] = "Adreça de correu (obligatòria)"; -App::$strings["Your website URL (optional)"] = "Adreça web (opcional)"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a nivell local. Si us plau, tanca la sessió i torna-ho a intentar."; -App::$strings["Welcome %s. Remote authentication successful."] = "Benvingut %s. Autenticació remota reeixida."; -App::$strings["parent"] = "amunt"; -App::$strings["Collection"] = "Col·lecció"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Llista d'Adreçes"; -App::$strings["Calendar"] = "Calendari"; -App::$strings["Schedule Inbox"] = "Programació de la bústia d'entrada"; -App::$strings["Schedule Outbox"] = "Programació de la bústia de sortida"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Compartit"; -App::$strings["Add Files"] = "Afegeix arxius"; -App::$strings["You are using %1\$s of your available file storage."] = "Estàs emprant el %1\$s de l'espai d'emmagatzematge disponible"; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Estàs emprant %1\$s de %2\$s d'emmagatzematge d'arxius disponible.\n(%3\$s%)"; -App::$strings["WARNING:"] = "ALERTA:"; -App::$strings["Create new folder"] = "Crea una nova carpeta"; -App::$strings["Upload file"] = "Puja arxiu"; -App::$strings["Drop files here to immediately upload"] = "Deixa anar fitxers aquí per a pujar-los immediatament"; -App::$strings["Forums"] = "Forums"; -App::$strings["Select Channel"] = "Escull canal"; -App::$strings["Read-write"] = "Llegir i escriure"; -App::$strings["Read-only"] = "Només lectura"; -App::$strings["My Calendars"] = "Els meus calendaris"; -App::$strings["Shared Calendars"] = "Calendaris compartits"; -App::$strings["Share this calendar"] = "Comparteix aquest calendari"; -App::$strings["Calendar name and color"] = "Nom i color del calendari"; -App::$strings["Create new calendar"] = "Crea un nou calendari"; -App::$strings["Calendar Name"] = "Nom del calendari"; -App::$strings["Calendar Tools"] = "Eines de calendari"; -App::$strings["Import calendar"] = "Importa un calendari"; -App::$strings["Select a calendar to import to"] = "Escull el calendari a on importar"; -App::$strings["Addressbooks"] = "Llibretes d'adreces"; -App::$strings["Addressbook name"] = "Nom de llibreta d'adreces"; -App::$strings["Create new addressbook"] = "Crea una nova llibreta d'adreces"; -App::$strings["Addressbook Name"] = "Nom de llibreta d'adreces"; -App::$strings["Addressbook Tools"] = "Eines de llibreta d'adreces"; -App::$strings["Import addressbook"] = "Importa una llibreta d'adreces"; -App::$strings["Select an addressbook to import to"] = "Escull la llibreta d'adreces a on importar"; -App::$strings["Categories"] = "Categories"; -App::$strings["Everything"] = "Tot"; -App::$strings["Events Tools"] = "Eina d'Esdeveniments"; -App::$strings["Export Calendar"] = "Exportar Calendari"; -App::$strings["Import Calendar"] = "Importar Calendari"; -App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; -App::$strings["HQ Control Panel"] = "Panell de control"; -App::$strings["Create a new post"] = "Crea una nova entrada"; -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["Chatrooms"] = "Sala per Xerrar"; -App::$strings["Overview"] = "Visió General"; -App::$strings["Rating Tools"] = "Eines de Valoració"; -App::$strings["Rate Me"] = "Valora'm"; -App::$strings["View Ratings"] = "Veure Valoracions"; -App::$strings["__ctx:widget__ Activity"] = "Activitat"; -App::$strings["Personal Posts"] = "Entrades personals"; -App::$strings["Show posts that mention or involve me"] = "Mostra les entrades que m'inclouen"; -App::$strings["Starred Posts"] = "Entrades destacades"; -App::$strings["Show posts that I have starred"] = "Mostra les entrades que he destacat"; -App::$strings["Show posts related to the %s privacy group"] = "Mostra les entrades relacionades amb el grup de privacitat %s"; -App::$strings["Show my privacy groups"] = "Mostra els meus grups de privacitat"; -App::$strings["Show posts to this forum"] = "Mostra les entrades a aquest fòrum"; -App::$strings["Show forums"] = "Mostra els fòrums"; -App::$strings["Show posts that I have filed to %s"] = "Mostra les entrades que he penjat a %s"; -App::$strings["Saved Folders"] = "Carpetes Guardades"; -App::$strings["Show filed post categories"] = "Mostra les categories de les entrades pujades"; -App::$strings["Panel search"] = "Panell de cerca"; -App::$strings["Filter by name"] = "Filtra per nom"; -App::$strings["Remove active filter"] = "Esborra el filtre actual"; -App::$strings["Activity Filters"] = "Filtres d'activitat"; -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["Wiki List"] = "Llista de Wikis"; -App::$strings["Archives"] = "Arxius"; -App::$strings["Received Messages"] = "Missatges Rebuts"; -App::$strings["Sent Messages"] = "Missatges Enviats"; -App::$strings["Conversations"] = "Conversacions"; -App::$strings["No messages."] = "Sense missatges."; -App::$strings["Delete conversation"] = "Conversació esborrada"; -App::$strings["Chat Members"] = "Membres de la Sala de Xat"; -App::$strings["photo/image"] = "foto/imatge"; -App::$strings["Remove term"] = "Plaç de remoció"; -App::$strings["Saved Searches"] = "Cerques Guardades"; -App::$strings["add"] = "afegeix"; -App::$strings["Notes"] = "Notes"; -App::$strings["Add new page"] = "Afegeix una pàgina nova"; -App::$strings["Wiki Pages"] = "Pàgines de Wikis"; -App::$strings["Page name"] = "Canvia el nom de la pàgina"; -App::$strings["Refresh"] = "Refresc"; -App::$strings["Tasks"] = "Tasques"; -App::$strings["Suggestions"] = "Suggerencies"; -App::$strings["See more..."] = "Veure més....."; -App::$strings["Commented Date"] = "Data dels comentaris"; -App::$strings["Order by last commented date"] = "Ordena segons la data dels comentaris més recents"; -App::$strings["Posted Date"] = "Data de les entrades"; -App::$strings["Order by last posted date"] = "Ordena segons la data de publicació de les entrades"; -App::$strings["Date Unthreaded"] = "Data sense agrupar"; -App::$strings["Order unthreaded by date"] = "Ordena per data els comentaris i les publicacions sense agrupar-los per converses"; -App::$strings["Activity Order"] = "Ordre de les activitats"; -App::$strings["Click to show more"] = "Fes clic per veure més"; -App::$strings["Tags"] = "Etiquetes"; -App::$strings["App Collections"] = "Coŀleccions d'aplicacions"; -App::$strings["Available Apps"] = "Aplicacions disponibles"; -App::$strings["Installed apps"] = "Aplicacions instaŀlades"; -App::$strings["Profile Creation"] = "Creació de perfils"; -App::$strings["Upload profile photo"] = "Puja una foto de perfil"; -App::$strings["Upload cover photo"] = "Puja una foto de portada"; -App::$strings["Edit your profile"] = "Modifica el teu perfil"; -App::$strings["Find and Connect with others"] = "Cerca altres canals i connecta-t'hi"; -App::$strings["View the directory"] = "Mostra la carpeta"; -App::$strings["Manage your connections"] = "Gestiona les teves conexions"; -App::$strings["Communicate"] = "Communica't"; -App::$strings["View your channel homepage"] = "Mostra el teu canal"; -App::$strings["View your network stream"] = "Mostra el teu flux de xarxa"; -App::$strings["Documentation"] = "Documentació"; -App::$strings["View public stream"] = "Mostra el flux públic"; -App::$strings["New Member Links"] = "Enllaços de membres nous"; -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"] = "Administració"; -App::$strings["Addon Features"] = "Funcions de les extensions"; -App::$strings["Account settings"] = "Configuració del compte"; -App::$strings["Channel settings"] = "Configuració del canal"; -App::$strings["Additional features"] = "Característiques addicionals"; -App::$strings["Addon settings"] = "Configuració de les extensions"; -App::$strings["Display settings"] = "Configuració de pantalla"; -App::$strings["Manage locations"] = "Gestiona ubicacions"; -App::$strings["Export channel"] = "Exportat canal"; -App::$strings["OAuth1 apps"] = "Aplicacions OAuth1"; -App::$strings["OAuth2 apps"] = "Aplicacions OAuth2"; -App::$strings["Premium Channel Settings"] = "Configuració dels canals prèmium"; -App::$strings["Bookmarked Chatrooms"] = "Sales de xat desades"; -App::$strings["New Network Activity"] = "Activitat nova a la xarxa"; -App::$strings["New Network Activity Notifications"] = "Notificacions noves d'activitat a la xarxa"; -App::$strings["View your network activity"] = "Mostra l'activitat a la xarxa"; -App::$strings["Mark all notifications read"] = "Marca totes les notificacions com a vistes"; -App::$strings["Show new posts only"] = "Mostra només les entrades noves"; -App::$strings["New Home Activity"] = "Activitat nova al mur"; -App::$strings["New Home Activity Notifications"] = "Notificacions noves d'activitat al mur"; -App::$strings["View your home activity"] = "Mostra l'activitat al teu mur"; -App::$strings["Mark all notifications seen"] = "Marca totes les notificacions com a vistes"; -App::$strings["New Mails"] = "Correus nous"; -App::$strings["New Mails Notifications"] = "Notificacions noves de correus"; -App::$strings["View your private mails"] = "Mostra els correus privats"; -App::$strings["Mark all messages seen"] = "Marca tots els missatges com a llegits"; -App::$strings["New Events"] = "Esdeveniments nous"; -App::$strings["New Events Notifications"] = "Notificacions noves d'esdeveniments"; -App::$strings["View events"] = "Mostra els esdeveniments"; -App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos"; -App::$strings["New Connections Notifications"] = "Notificacions noves de connexió"; -App::$strings["View all connections"] = "Mostra totes les connexions"; -App::$strings["New Files"] = "Arxius nous"; -App::$strings["New Files Notifications"] = "Notificacions noves d'arxius"; -App::$strings["Notices"] = "Noticies"; -App::$strings["View all notices"] = "Mostra totes les notificacions"; -App::$strings["Mark all notices seen"] = "Marca totes les notificacions com a vistes"; -App::$strings["New Registrations"] = "Inscripcions noves"; -App::$strings["New Registrations Notifications"] = "Notificacions noves d'inscripció"; -App::$strings["Public Stream Notifications"] = "Notificacions del flux públic"; -App::$strings["View the public stream"] = "Mostra el flux públic"; -App::$strings["Sorry, you have got no notifications at the moment"] = "No tens cap notificació"; -App::$strings["Source channel not found."] = "No s'ha trobat el canal font."; -App::$strings["Create an account to access services and applications"] = "Crea un compte per tal d'accedir a serveis i aplicacions"; -App::$strings["Logout"] = "Surt"; -App::$strings["Login/Email"] = "Correu d'usuari"; -App::$strings["Password"] = "Contrasenya"; -App::$strings["Remember me"] = "Recorda'm"; -App::$strings["Forgot your password?"] = "Has perdut la Contrasenya?"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Error de TLS per a %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificat SSL és invalid, soluciona-ho, si us plau."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Les tasques del cron tasks no s'estan executant a %s"; -App::$strings["Cron/Scheduled tasks not running."] = "No s'estan executant les tasques programades al cron."; -App::$strings["never"] = "mai"; -App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla per defecte)"; -App::$strings["Theme settings"] = "Configuració de tema"; -App::$strings["Narrow navbar"] = "Barra de navegació estreta"; -App::$strings["Navigation bar background color"] = "Color de fons de la barra de navegació"; -App::$strings["Navigation bar icon color "] = "Color de la icona de la barra de navegació"; -App::$strings["Navigation bar active icon color "] = "Color de la icona de la barra de navegació activa"; -App::$strings["Link color"] = "Color dels enllaços"; -App::$strings["Set font-color for banner"] = "Ajusta el color del tipus de lletra per la senyera"; -App::$strings["Set the background color"] = "Ajusta el color de fons"; -App::$strings["Set the background image"] = "Ajusta la imatge de fons"; -App::$strings["Set the background color of items"] = "ajusta el color dels articles de fons"; -App::$strings["Set the background color of comments"] = "Ajusta el color dels comentaris en segon pla"; -App::$strings["Set font-size for the entire application"] = "Ajusta la mida del tipus de lletra per tota l'aplicació"; -App::$strings["Examples: 1rem, 100%, 16px"] = "Exemples: 1rem, 100%, 16px"; -App::$strings["Set font-color for posts and comments"] = "Ajusta el color del tipus de lletra per entrades i comentaris"; -App::$strings["Set radius of corners"] = "Ajusta el radi de les cantonades"; -App::$strings["Example: 4px"] = "Exemple: 4px"; -App::$strings["Set shadow depth of photos"] = "Ajusta la profunditat d'ombres de les fotos"; -App::$strings["Set maximum width of content region in pixel"] = "Ajusta l'amplada màxima de la zona de contingut en pixels"; -App::$strings["Leave empty for default width"] = "Deixa en blanc per l'amplada predeterminada"; -App::$strings["Left align page content"] = "Alineació esquerra del contingut de la pàgina"; -App::$strings["Set size of conversation author photo"] = "Ajusta la mida de la foto del autor a la conversa"; -App::$strings["Set size of followup author photos"] = "Ajusta la mida del seguidor de les fotos de l'autor"; -App::$strings["Network/Protocol"] = "Xarxa/protocol"; -App::$strings["Zot"] = "Zot"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["Errors encountered deleting database table "] = "S'ha produït un o més errors en esborrar una taula de la base de dades"; -App::$strings["Submit Settings"] = "Desa els canvis"; -App::$strings["Drop tables when uninstalling?"] = "Vols eliminar les taules en desinstaŀlar?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "En cas afirmatiu, s'esborraran de la base de dades les taules del Rendezvous en desinstaŀlar l'extensió."; -App::$strings["Mapbox Access Token"] = "Testimoni d'accés a Mapbox"; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Es farà servir aquest testimoni per a descarregar les tesseŀles des de Mapbox en comptes del servidor per defecte d'OpenStreetMap."; -App::$strings["Rendezvous"] = "Rendezvous"; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Un altre membre ha esborrat aquesta identitat per inactivitat. Pots crear-ne una nova amb el botó o recarregant la pàgina. Pots tornar a fer servir el mateix nom."; -App::$strings["Welcome to Rendezvous!"] = "Benvingut/da al Rendezvous!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Escriu un nom per unir-te an aquest Rendezvous. Per a començar compartint la teva ubicació amb els altres membres, toca el control de GPS. Un cop descoberta la teva ubicació, apareixerà un punt vermell i la resta podran veure't en el mapa."; -App::$strings["Let's meet here"] = "Trobem-nos aquí"; -App::$strings["New marker"] = "Nova xinxeta"; -App::$strings["Edit marker"] = "Modifica la xinxeta"; -App::$strings["New identity"] = "Nova identitat"; -App::$strings["Delete marker"] = "Esborra la xinxeta"; -App::$strings["Delete member"] = "Esborra el membre"; -App::$strings["Edit proximity alert"] = "Modifica l'alerta de proximitat"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Es mostrarà una alerta de proximitat si aquest membre està dins un cert radi de distància.

Introdueix un radi en metres (0 ho deshabilita):"; -App::$strings["distance"] = "distància"; -App::$strings["Proximity alert distance (meters)"] = "Distància d'alerta de proximitat (metres)"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Es mostrarà una alerta de proximitat quan siguis dins un cert radi de distància de la ubicació de la xinxeta.

Introdueix un radi en metres (0 ho deshabilita):"; -App::$strings["Marker proximity alert"] = "Alerta de proximitat de xinxeta"; -App::$strings["Reminder note"] = "Nota de recordatori"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Introdueix una nota per a mostrar amb l'alerta"; -App::$strings["Add new rendezvous"] = "Afegeix un rendezvous nou"; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Crea un rendezvous nou i comparteix-lo amb aquelles persones a qui vulguis convidar al grup. Qui obri l'enllaç es faran membres del rendezvous. Podran veure les ubicacions dels altres membres, afegir xinxetes al mapa i compartir les seves ubicacions amb el grup."; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "No tens cap rendezvous. Pica el botó de sobre per a crear-ne un!"; -App::$strings["Some setting"] = "Opció X"; -App::$strings["A setting"] = "Opció Y"; -App::$strings["Skeleton Settings"] = "Configuració del Skeleton"; -App::$strings["GNU-Social Protocol Settings updated."] = "S'ha actualitzat la configuració del Protocol GNU-Social"; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El Protocol GNU-Social és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal."; -App::$strings["Enable the GNU-Social protocol for this channel"] = "Habilita el Protocol GNU-Social per a aquest canal"; -App::$strings["GNU-Social Protocol Settings"] = "Configuració del Protocol GNU-Social "; -App::$strings["Follow"] = "Segueix"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s ara segueix a %2\$s"; -App::$strings["Planets Settings updated."] = "S'ha actualitzat la configuració de Planetes."; -App::$strings["Enable Planets Plugin"] = "Habilita l'extensió Planetes"; -App::$strings["Planets Settings"] = "Configuració de Planetes"; -App::$strings["System defaults:"] = "Opcions per defecte:"; -App::$strings["Preferred Clipart IDs"] = "Identitats Clipart preferides"; -App::$strings["List of preferred clipart ids. These will be shown first."] = "Llista d'identitats Clipart preferides. Aquestes es mostren primer"; -App::$strings["Default Search Term"] = "Paraula de cerca predeterminada"; -App::$strings["The default search term. These will be shown second."] = "La paraula de cerca predeterminada. Aquestes es mostraran en segon lloc."; -App::$strings["Return After"] = "Acaba després de"; -App::$strings["Page to load after image selection."] = "Pàgina per carregar després d'haver seleccionat una imatge."; -App::$strings["Edit Profile"] = "Modifica el meu perfil"; -App::$strings["Profile List"] = "Llista de perfils"; -App::$strings["Order of Preferred"] = "Ordre de les preferides"; -App::$strings["Sort order of preferred clipart ids."] = "Ordena les identitats Clipart preferides"; -App::$strings["Newest first"] = "La més nova primer"; -App::$strings["As entered"] = "En ordre d'entrada"; -App::$strings["Order of other"] = "Ordre de les altres"; -App::$strings["Sort order of other clipart ids."] = "Ordena les altres identitats Clipart."; -App::$strings["Most downloaded first"] = "Les més descarregades primer"; -App::$strings["Most liked first"] = "Les més votades primer"; -App::$strings["Preferred IDs Message"] = "Missatge de les identitats preferides"; -App::$strings["Message to display above preferred results."] = "Missatge per a mostrar per sobre dels resultats preferits."; -App::$strings["Uploaded by: "] = "Carregada per:"; -App::$strings["Drawn by: "] = "Dibuixada per:"; -App::$strings["Use this image"] = "Fes servir aquesta imatge"; -App::$strings["Or select from a free OpenClipart.org image:"] = "O bé tria una imatge lliure d'OpenClipart.org:"; -App::$strings["Search Term"] = "Paraules de cerca"; -App::$strings["Unknown error. Please try again later."] = "S'ha produït un error desconegut. Torna a provar-ho més tard."; -App::$strings["Profile photo updated successfully."] = "S'ha carregat la foto amb èxit."; -App::$strings["Flag Adult Photos"] = "Marca contingut adult"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Habilita una opció per a amagar fotos sensibles de la vista per defecte de l'àlbum."; -App::$strings["Post to WordPress"] = "Publica a un Wordpress"; -App::$strings["Enable WordPress Post Plugin"] = "Activa l'extensió Publica a un Wordpress"; -App::$strings["WordPress username"] = "Nom d'usuari al Wordpress"; -App::$strings["WordPress password"] = "Contrassenya al Wordpress"; -App::$strings["WordPress API URL"] = "Adreça URL de l'API del Wordpress"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Normalment https://el-meu-blog.cat/xmlrpc.php"; -App::$strings["WordPress blogid"] = "Identitat blogid del Wordpress"; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Fer a llocs multi-usuari com wordpress.com . Deixa en blanc en cas contrari"; -App::$strings["Post to WordPress by default"] = "Publica a Wordpress per defecte"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Reenvia comentaris (necessita l'extensió hubzilla_wp)"; -App::$strings["WordPress Post Settings"] = "Configuració d'entrades"; -App::$strings["Wordpress Settings saved."] = "S'ha desat la configuració."; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Aquesta extensió cerca paraules que especifiquis en les entrades, i amaga plegant qualsevol contingut que en contingui alguna. Així, no es mostrarà per defecte i no quedaràs exposat/da en llocs on més gent vegi la teva pantalla. Sempre es recomana etiquetar els continguts amb nuesa amb l'etiqueta #NSFW (insegur per a la feina, en anglès). Tanmateix, el filtre es pot fer servir per qualsevol tipus de contingut."; -App::$strings["Enable Content filter"] = "Activa el filtre de contingut"; -App::$strings["Comma separated list of keywords to hide"] = "Llista de paraules clau a amagar, separada per comes"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Paraula, /expressió-regular/, lang=xx, lang=!xx. Nota: lang és per llengua en anglès"; -App::$strings["Not Safe For Work Settings"] = "Configuració de Not Safe For Work"; -App::$strings["General Purpose Content Filter"] = "Filtre de contingut genèric"; -App::$strings["NSFW Settings saved."] = "S'ha desat la configuració del NSFW."; -App::$strings["Possible adult content"] = "Possible contingut inadequat"; -App::$strings["%s - view"] = "%s - mostra"; -App::$strings["Post to Insanejournal"] = "Publicar a Insanejournal"; -App::$strings["Enable InsaneJournal Post Plugin"] = "Habilita la publicació a InsaneJournal"; -App::$strings["InsaneJournal username"] = "Nom d'usuari a InsaneJournal"; -App::$strings["InsaneJournal password"] = "Contrasenya a InsaneJournal"; -App::$strings["Post to InsaneJournal by default"] = "Publica per defecte a InsaneJournal"; -App::$strings["InsaneJournal Post Settings"] = "Opcions de publicació a InsaneJournal"; -App::$strings["Insane Journal Settings saved."] = "S'han actualitzat els paàrmetres de InsaneJournal."; -App::$strings["Post to Dreamwidth"] = "Publica a Dreamwidth"; -App::$strings["Enable Dreamwidth Post Plugin"] = "Habilita el connector per a publicar a la xarxa Dreamwidth"; -App::$strings["Dreamwidth username"] = "Nom a Dreamwidth"; -App::$strings["Dreamwidth password"] = "Contrasenya a Dreamwidth"; -App::$strings["Post to Dreamwidth by default"] = "Publica a Dreamwidth per defecte"; -App::$strings["Dreamwidth Post Settings"] = "Opcions de publicació a Dreamwidth"; -App::$strings["New registration"] = "S'ha registrat un nou compte"; -App::$strings["Message sent to %s. New account registration: %s"] = "S'ha enviat el correu a %s. El nou compte és %s"; -App::$strings["Hubzilla Directory Stats"] = "Estadístiques del directori de Hubzilla"; -App::$strings["Total Hubs"] = "Hubs totals"; -App::$strings["Hubzilla Hubs"] = "Hubs de Hubzilla"; -App::$strings["Friendica Hubs"] = "Hubs de Friendica"; -App::$strings["Diaspora Pods"] = "Pods de Diaspora"; -App::$strings["Hubzilla Channels"] = "Canals de Hubzilla"; -App::$strings["Friendica Channels"] = "Canals de Friendica"; -App::$strings["Diaspora Channels"] = "Canals de Diaspora"; -App::$strings["Aged 35 and above"] = "De 35 o més anys d'edat"; -App::$strings["Aged 34 and under"] = "De 34 o menys anys d'edat"; -App::$strings["Average Age"] = "Mitjana d'edat"; -App::$strings["Known Chatrooms"] = "Sales de xat conegudes"; -App::$strings["Known Tags"] = "Etiquetes conegudes"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Tingueu en compte que les estadístiques de Diaspora i Friendica només són les **aquest directori** n'és conscient, i no totes les de la xarxa. Això també aplica a sales de xat,"; -App::$strings["Your Webbie:"] = "El teu Webbie:"; -App::$strings["Fontsize (px):"] = "Mida de lletra (px):"; -App::$strings["Link:"] = "Enllaç:"; -App::$strings["Like us on Hubzilla"] = "Segueix-nos a Hubzilla"; -App::$strings["Embed:"] = "Incrusta:"; -App::$strings["Photos imported"] = "S'han importat les fotos"; -App::$strings["Redmatrix Photo Album Import"] = "Importa els àlbums de fotos de \$Projectname"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Importa els àlbums de fotos de \$Projectname"; -App::$strings["Redmatrix Server base URL"] = "Adreça URL arrel del servidor de Redmatrix"; -App::$strings["Redmatrix Login Username"] = "Nom d'usuari de Redmatrix"; -App::$strings["Redmatrix Login Password"] = "Contrasenya de Redmatrix"; -App::$strings["Import just this album"] = "Importa només aquest album"; -App::$strings["Leave blank to import all albums"] = "Deixa-ho en blanc per a importar tots els àlbums"; -App::$strings["Maximum count to import"] = "Nombre màxim d'importacions"; -App::$strings["0 or blank to import all available"] = "Deixa-ho en blanc o amb un 0 per a importar-ho tot"; -App::$strings["Channels to auto connect"] = "Canals per connectar automàticament"; -App::$strings["Comma separated list"] = "Llista amb separació per comes"; -App::$strings["Popular Channels"] = "Canals populars"; -App::$strings["IRC Settings"] = "Paràmetres de IRC"; -App::$strings["IRC settings saved."] = "S'han actualitzat els paràmetres de IRC."; -App::$strings["IRC Chatroom"] = "Sala de IRC"; -App::$strings["Gallery"] = "Galeria"; -App::$strings["Photo Gallery"] = "Galeria d'imatges"; -App::$strings["Post to LiveJournal"] = "Publica a LiveJournal"; -App::$strings["Enable LiveJournal Post Plugin"] = "Habilita la publicació a LiveJournal"; -App::$strings["LiveJournal username"] = "Nom a LiveJournal"; -App::$strings["LiveJournal password"] = "Contrasenya a LiveJournal"; -App::$strings["Post to LiveJournal by default"] = "Publica a LiveJournal per defecte"; -App::$strings["LiveJournal Post Settings"] = "Paràmetres de LiveJournal"; -App::$strings["LiveJournal Settings saved."] = "S'han desat els paràmetres de LiveJournal."; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "No s'ha pogut autenticar la identitat OpenID que has proporcionat. Comprova que l'hagis introduïda bé."; -App::$strings["The error message was:"] = "El missatge d'error ha estat:"; -App::$strings["First Name"] = "Nom"; -App::$strings["Last Name"] = "Cognoms"; -App::$strings["Nickname"] = "Àlies"; -App::$strings["Full Name"] = "Nom complet"; -App::$strings["Profile Photo 16px"] = "Imatge de perfil de 16x16 píxels"; -App::$strings["Profile Photo 32px"] = "Imatge de perfil de 32x32 píxels"; -App::$strings["Profile Photo 48px"] = "Imatge de perfil de 48x48 píxels"; -App::$strings["Profile Photo 64px"] = "Imatge de perfil de 64x64 píxels"; -App::$strings["Profile Photo 80px"] = "Imatge de perfil de 80x80 píxels"; -App::$strings["Profile Photo 128px"] = "Imatge de perfil de 128x128 píxels"; -App::$strings["Timezone"] = "Zona horària"; -App::$strings["Birth Year"] = "Any de naixement"; -App::$strings["Birth Month"] = "Mes de naixement"; -App::$strings["Birth Day"] = "Dia de naixement"; -App::$strings["Birthdate"] = "Aniversar"; -App::$strings["OpenID protocol error. No ID returned."] = "Error d'OpenID. No s'ha aconseguit cap ID."; -App::$strings["Login failed."] = "Identificació fallida."; -App::$strings["Male"] = "Masculí"; -App::$strings["Female"] = "Femení"; -App::$strings["You're welcome."] = "De res."; -App::$strings["Ah shucks..."] = "Oh merda..."; -App::$strings["Don't mention it."] = "Ni ho pensis."; -App::$strings["<blush>"] = "<em poso vermell>"; -App::$strings["Page to load after login"] = "Pàgina a carregar després d'iniciar sessió"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Exemples: "apps", "network?f=&gid=37" (grup de privacitat), "channel" or "notifications/system" (deixa-ho en blanc per a la pàgina per defecte, la del flux públic."; -App::$strings["Startpage Settings"] = "Configuració de Pàgina d'inici"; -App::$strings["bitchslap"] = "bofetades"; -App::$strings["bitchslapped"] = "ha fet una bofetada a"; -App::$strings["shag"] = "polvo"; -App::$strings["shagged"] = "ha fet un polvo amb"; -App::$strings["patent"] = "amb dret de"; -App::$strings["patented"] = "ha patentat a"; -App::$strings["hug"] = "abraçada"; -App::$strings["hugged"] = "ha abraçat"; -App::$strings["murder"] = "assassinat"; -App::$strings["murdered"] = "ha assassinat"; -App::$strings["worship"] = "retre-li culte"; -App::$strings["worshipped"] = "ara ret culte a"; -App::$strings["kiss"] = "un petó"; -App::$strings["kissed"] = "ha fet un petó a"; -App::$strings["tempt"] = "temptar"; -App::$strings["tempted"] = "ha temptat a"; -App::$strings["raise eyebrows at"] = "aixecar-li una cella"; -App::$strings["raised their eyebrows at"] = "li ha aixecat una cella a"; -App::$strings["insult"] = "insultar"; -App::$strings["insulted"] = "ha insultat a"; -App::$strings["praise"] = "elogiar"; -App::$strings["praised"] = "ha elogiat a"; -App::$strings["be dubious of"] = "sospitar"; -App::$strings["was dubious of"] = "sospita de"; -App::$strings["eat"] = "menjar"; -App::$strings["ate"] = "s'ha menjat"; -App::$strings["giggle and fawn at"] = "cantar-ne les mil meravelles"; -App::$strings["giggled and fawned at"] = "està cantant les mil meravelles de"; -App::$strings["doubt"] = "dubtar-ne"; -App::$strings["doubted"] = "dubta de"; -App::$strings["glare"] = "fer-li una mirada assassina"; -App::$strings["glared at"] = "li ha fet una mirada assassina a"; -App::$strings["fuck"] = "follar-hi"; -App::$strings["fucked"] = "ha follat amb"; -App::$strings["bonk"] = "tirar-se'l/la"; -App::$strings["bonked"] = "s'ha tirat a"; -App::$strings["declare undying love for"] = "declarar-li l'amor etern a"; -App::$strings["declared undying love for"] = "li ha declarar amor etern a"; -App::$strings["Diaspora Protocol Settings updated."] = "S'ha actualitzat la configuració del Protocol de Diàspora"; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El Protocol de Diàspora és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal."; -App::$strings["Enable the Diaspora protocol for this channel"] = "Activa el Protocol de Diàspora per aquest canal"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permet a qualsevol membre de Diàspora de comentar les teves entrades públiques"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Evita que les teves etiquetes siguin redirigides a altres llocs web"; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signa i reenvia entrades o comentaris encara que no tinguin una signatura de Diàspora vàlida."; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Etiquetes seguides (separades per comes i sense incloure #)"; -App::$strings["Diaspora Protocol Settings"] = "Configuració del Protocol de Diàspora"; -App::$strings["No username found in import file."] = "No s'ha trobat el nom d'usuari en el fitxer 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["Your account on %s will expire in a few days."] = "El teu compte a %s caducarà d'aquí a pocs dies."; -App::$strings["Your $Productname test account is about to expire."] = "El teu compte de prova a $Productname està a punt de caducar."; -App::$strings["Enable Rainbowtag"] = "Activa el Rainbowtag"; -App::$strings["Rainbowtag Settings"] = "Configuració de Rainbowtag"; -App::$strings["Rainbowtag Settings saved."] = "S'ha desat la configuració del Rainbowtag."; -App::$strings["Show Upload Limits"] = "Mostra els límits de pujada"; -App::$strings["Hubzilla configured maximum size: "] = "Mida màxima configurada a \$Projectname:"; -App::$strings["PHP upload_max_filesize: "] = "Mida màxima de fitxer del PHP (upload_max_filesize):"; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "Mida màxima de consulta web del PHP (post_max_size > upload_max_filesize):"; -App::$strings["generic profile image"] = "imatge de perfil genèrica"; -App::$strings["random geometric pattern"] = "patró geomètric aleatori"; -App::$strings["monster face"] = "cara de monstre"; -App::$strings["computer generated face"] = "cara generada per ordinador"; -App::$strings["retro arcade style face"] = "cara d'estil arcade retro"; -App::$strings["Hub default profile photo"] = "Foto de perfil per defecte al hub"; -App::$strings["Information"] = "Informació"; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extensió Libravatar també està instaŀlada. Desactiva-la o desactiva aquesta.
Libravatar rebotarà a Gravatar si no es troba res a Libravatar."; -App::$strings["Save Settings"] = "Des la configuració"; -App::$strings["Default avatar image"] = "Avatar per defecte"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Escull l'avatar per defecte si no se'n troba cap al Gravatar. Consulta el README"; -App::$strings["Rating of images"] = "Categorització de les imatges"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Escull la categorització d'avatar per al teu lloc. Consulta el README"; -App::$strings["Gravatar settings updated."] = "S'ha actualitzat la configuració del Gravatar"; -App::$strings["Hubzilla File Storage Import"] = "Importació d'emmagatzematge de Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Permet importar tots els arxius de núvol des d'un altre servidor."; -App::$strings["Hubzilla Server base URL"] = "Adreça URL base de l'altre servidor Hubzilla"; -App::$strings["Since modified date yyyy-mm-dd"] = "Més nous que aaaa-mm-dd"; -App::$strings["Until modified date yyyy-mm-dd"] = "Més antics que aaaa-mm-dd"; -App::$strings["Recent Channel/Profile Viewers"] = "Visitants recents del canal o perfil"; -App::$strings["This plugin/addon has not been configured."] = "Aquesta extensió encara no està configurada."; -App::$strings["Please visit the Visage settings on %s"] = "Visita la configuració del Visage a %s"; -App::$strings["your feature settings page"] = "la pàgina de configuració de funcionalitats"; -App::$strings["No entries."] = "No hi ha entrades."; -App::$strings["Enable Visage Visitor Logging"] = "Activa el registre de visitants de Visage"; -App::$strings["Visage Settings"] = "Configuració del Visage"; -App::$strings["Nsabait Settings updated."] = "S'ha actualitzat la configuració de NSAbait."; -App::$strings["Enable NSAbait Plugin"] = "Activa l'extensió NSAbait"; -App::$strings["NSAbait Settings"] = "Configuració del NSAbait"; -App::$strings["Send test email"] = "Envia un correu de prova"; -App::$strings["No recipients found."] = "No s'han trobat destinataris."; -App::$strings["Mail sent."] = "S'ha enviat el correu."; -App::$strings["Sending of mail failed."] = "Ha fallat l'enviament de correu."; -App::$strings["Mail Test"] = "Prova de correu"; -App::$strings["Message subject"] = "Assumpte"; -App::$strings["Use markdown for editing posts"] = "Fes servir markdown per editar les entrades"; -App::$strings["View Larger"] = "Amplia"; -App::$strings["Tile Server URL"] = "Adreça URL del servidor de tesseŀles"; -App::$strings["A list of public tile servers"] = "Una llista de servidors públics de tesseŀles"; -App::$strings["Nominatim (reverse geocoding) Server URL"] = "Adreça URL del servei Nominatim (geocoding invers)"; -App::$strings["A list of Nominatim servers"] = "Una llista de servidors públics de Nominatim"; -App::$strings["Default zoom"] = "Zoom per defecte"; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "El nivell de zoom predeterminat. (1: mínim, món. 18: màxim. També depèn del servidor)"; -App::$strings["Include marker on map"] = "Inclou una xinxeta al mapa"; -App::$strings["Include a marker on the map."] = "Inclou una xinxeta al mapa."; -App::$strings["text to include in all outgoing posts from this site"] = "text per incloure en totes les entrades que s'enviïn des d'aquest lloc"; -App::$strings["Fuzzloc Settings updated."] = "S'ha actualitzat la configuració de Fuzzloc."; -App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "El Fuzzloc permet difuminar la teva ubicació si el teu canal fa servir la ubicació precisa del navegador."; -App::$strings["Enable Fuzzloc Plugin"] = "Habilita l'extensió Fuzzloc"; -App::$strings["Minimum offset in meters"] = "Afegit mínim en metres"; -App::$strings["Maximum offset in meters"] = "Afegit màxim en metres"; -App::$strings["Fuzzloc Settings"] = "Configuració del Fuzzloc"; -App::$strings["Post to Friendica"] = "Publica a Friendica"; -App::$strings["rtof Settings saved."] = "S'ha desat la Configuració de rtof."; -App::$strings["Allow posting to Friendica"] = "Permet publicar a xarxes Friendica"; -App::$strings["Send public postings to Friendica by default"] = "Envia per defecte les entrades públiques cap a Friendica"; -App::$strings["Friendica API Path"] = "Ruta a l'API de Friendica"; -App::$strings["https://{sitename}/api"] = "https://{nomdedomini}/api"; -App::$strings["Friendica login name"] = "Nom d'usuari a Friendica"; -App::$strings["Friendica password"] = "Contrasenya a Friendica"; -App::$strings["Hubzilla to Friendica Post Settings"] = "Configuració de Publicació de Hubzilla cap a Friendica"; -App::$strings["Status:"] = "Estatus:"; -App::$strings["Activate addon"] = "Habilita l'extensió"; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Amaga el giny de xat Jappixmini"; -App::$strings["Jabber username"] = "Nom a Jabber"; -App::$strings["Jabber server"] = "Servidor de Jabber"; -App::$strings["Jabber BOSH host URL"] = "URL de l'amfitrió BOSH de Jabber"; -App::$strings["Jabber password"] = "Contrassenya de Jabber"; -App::$strings["Encrypt Jabber password with Hubzilla password"] = "Xifra la contrasenya de Jabber amb la del Hubzilla"; -App::$strings["Hubzilla password"] = "Contrasenya del Hubzilla"; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Aprova automàticament les sol·licituds de subscripció de contactes de Hubzilla"; -App::$strings["Purge internal list of jabber addresses of contacts"] = "Neteja la llista interna de contactes de Jabber"; -App::$strings["Configuration Help"] = "Ajuda de configuració"; -App::$strings["Jappix Mini Settings"] = "Paràmetres de Jappix Mini"; -App::$strings["Currently blocked"] = "Bloquejats actualment"; -App::$strings["No channels currently blocked"] = "No hi ha canals bloquejats"; -App::$strings["Superblock Settings"] = "Configuració del Superblock"; -App::$strings["Block Completely"] = "Bloqueja completament"; -App::$strings["superblock settings updated"] = "S'ha actualitzat la configuració del Superblock"; -App::$strings["Federate"] = "Federa"; -App::$strings["nofed Settings saved."] = "S'ha desat la configuració del NoFed."; -App::$strings["Allow Federation Toggle"] = "Permet commutar entre federar o no"; -App::$strings["Federate posts by default"] = "Per defecte federa les entrades"; -App::$strings["NoFed Settings"] = "Configuració del NoFed"; -App::$strings["Post to Red"] = "Publica a Red"; -App::$strings["Channel is required."] = "Cal un canal."; -App::$strings["redred Settings saved."] = "S'ha desat la configuració del RedRed"; -App::$strings["Allow posting to another Hubzilla Channel"] = "Permet publicar a un altre canal de Hubzilla"; -App::$strings["Send public postings to Hubzilla channel by default"] = "Envia per defecte les entrades públiques cap a l'altre canal de Hubzilla"; -App::$strings["Hubzilla API Path"] = "Ruta de l'API de Hubzilla"; -App::$strings["Hubzilla login name"] = "Nom d'usuari a l'altre Hubzilla"; -App::$strings["Hubzilla channel name"] = "Nom de canal a l'altre Hubzilla"; -App::$strings["Hubzilla Crosspost Settings"] = "Configuració del replicador de Hubzilla"; -App::$strings["Logfile archive directory"] = "Carpeta d'arxius de registre d'activitat"; -App::$strings["Directory to store rotated logs"] = "Carpeta per desar els registres circulars"; -App::$strings["Logfile size in bytes before rotating"] = "Mida en Bytes del fitxer de registre abans de rotar"; -App::$strings["Number of logfiles to retain"] = "Número de fitxers de registre per a conservar"; -App::$strings["Friendica Photo Album Import"] = "Importa àlbums de fotos de Friendica"; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Aquesta acció importarà tots els teus àlbums de fotos de Friendica a aquest canal."; -App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica"; -App::$strings["Friendica Login Username"] = "Nom de registre a Friendica"; -App::$strings["Friendica Login Password"] = "Contrasenya a Friendica"; -App::$strings["ActivityPub Protocol Settings updated."] = "S'ha actualitzat la configuració del Protocol ActivityPub."; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El Protocol ActivityPub és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal."; -App::$strings["Enable the ActivityPub protocol for this channel"] = "Activa el Protocol ActivityPub en aquest canal"; -App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Envia a identitats d'ActivityPub en grups de privacitat"; -App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Pot comportar moltes mencions i revelar els teus grups de privacitat."; -App::$strings["Send multi-media HTML articles"] = "Envia articles HTML multimèdia"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "Incompatible amb alguns serveis de microbloguing com Mastodon"; -App::$strings["ActivityPub Protocol Settings"] = "Configuració del Protocol ActivityPub"; -App::$strings["Project Servers and Resources"] = "Servidors de projecte i Recursos"; -App::$strings["Project Creator and Tech Lead"] = "Creador del projecte i cap tècnic"; -App::$strings["Admin, developer, directorymin, support bloke"] = "Administradora, desenvolupadora, admin del directori, persona de suport"; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "I els centenars d'altra gent i organitzacions que han ajudat que Hubzilla fos possible."; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Els projectes Redmatrix i Hubzilla són oferts principalment per voluntàries que donen el seu temps i experiència i que fins i tot solen posar-hi diners de la seva butxaca per a compartir serveis amb altres."; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "No rebem cap mena de finançament corporatiu, ni posem anuncis ni recollim i venem les teves dades personals. Nosaltres no controlem les dades personals, sinó tu."; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Ajuda'ns a mantenir la nostra feina pionera cap a la descentralització, la identitat a la web i la privacitat."; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Les teves donacions mantenen els servidors i els serveis corrent, i ens ajuda a oferir noves funcionalitats i continuar el desenvolupament en marxa."; -App::$strings["Donate"] = "Dóna"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Tria un projecte, desenvolupador o hub públic per a donar suport amb una donació"; -App::$strings["Donate Now"] = "Dóna ara"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "O bé, fes-te patrocinador/a del projecte Hubzilla"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Indica com vols aparèixer a la llista de patrocinadors: anònim, amb nom, o nom i cognoms"; -App::$strings["Sponsor"] = "Patrocinador"; -App::$strings["Special thanks to: "] = "Agraïments especials a:"; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "És un diccionari prou complet d'acords de guitarra. Llista la majoria de maneres possibles de tocar un cert acord, començant des de la base del mànec fins una mica més apunt del dotzè trast, a partir del qual es repeteixen. Ofereix també un parell d'afinacions no estàndards."; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "Els noms dels acords estan formats per la nota fonamental en notació anglesa (A-G), i modificadors com \"sostingut\" (#) i \"bemoll\" (b). El programa entén la majoria de convencions com maj, min, dim, sus2, sus4 i aug, amb més d'un element potencialment."; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Exemples vàlids: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11"; -App::$strings["Guitar Chords"] = "Acords de guitarra"; -App::$strings["The complete online chord dictionary"] = "El diccionari on-line d'acords"; -App::$strings["Tuning"] = "Afinació"; -App::$strings["Chord name: example: Em7"] = "Exemple de nom d'acord: Em7"; -App::$strings["Show for left handed stringing"] = "Disposició per esquerrans"; -App::$strings["Quick Reference"] = "Xuleta"; -App::$strings["Post to Libertree"] = "Publica a Libertree"; -App::$strings["Enable Libertree Post Plugin"] = "Habilita la publicació a Libertree"; -App::$strings["Libertree API token"] = "Token per a l'API de Libertree"; -App::$strings["Libertree site URL"] = "URL del servidor de Libertree"; -App::$strings["Post to Libertree by default"] = "Publica a Libertree per defecte"; -App::$strings["Libertree Post Settings"] = "Paràmetres de publicació a Libertree"; -App::$strings["Libertree Settings saved."] = "S'han actualitzat els paràmetres de Libertree."; -App::$strings["Flattr this!"] = "Dóna-hi suport amb Flattr!"; -App::$strings["Flattr widget settings updated."] = "S'han actualitzat els paràmetres del giny de Flattr."; -App::$strings["Flattr user"] = "Nom a Flattr"; -App::$strings["URL of the Thing to flattr"] = "URL del lloc per a donar suport"; -App::$strings["If empty channel URL is used"] = "Si la deixes buida, es farà servir la URL del canal"; -App::$strings["Title of the Thing to flattr"] = "Títol del lloc a donar suport"; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Si el deixes buit, es farà servir el nom del canal a Hubzilla"; -App::$strings["Static or dynamic flattr button"] = "Botó estàtic o dinàmic"; -App::$strings["static"] = "estàtic"; -App::$strings["dynamic"] = "dinàmic"; -App::$strings["Alignment of the widget"] = "Aliniament del giny"; -App::$strings["left"] = "esquerra"; -App::$strings["right"] = "dreta"; -App::$strings["Enable Flattr widget"] = "Habilita el giny de Flattr"; -App::$strings["Flattr Widget Settings"] = "Opcions del giny de Flattr"; -App::$strings["Post to GNU social"] = "Publica a GNU Social"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Contacta l'administrador del teu lloc.
L'adreça URL de l'API no és vàlida."; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "No s'ha trobat una API de GNU Social a la ruta introduïda."; -App::$strings["GNU social settings updated."] = "S'ha actualitzat la configuració de GNU Social "; -App::$strings["Globally Available GNU social OAuthKeys"] = "Claus OAuth de GNU Social diponibles públicament"; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.
Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)"; -App::$strings["Provide your own OAuth Credentials"] = "Proporciona credencials OAuth pròpies"; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.
Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social."; -App::$strings["OAuth Consumer Key"] = "Clau de consumidor OAuth"; -App::$strings["OAuth Consumer Secret"] = "Secret de consumidor OAuth"; -App::$strings["Base API Path"] = "Ruta arrel de l'API"; -App::$strings["Remember the trailing /"] = "Recorda la / final"; -App::$strings["GNU social application name"] = "Nom de l'aplicació GNU Social"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Per tal de connectar al teu compte de GNU Social, fes clic al botó de sota per a obtenir un codi de seguretat de GNU Social. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques"; -App::$strings["Log in with GNU social"] = "Inicia la sessió amb GNU Social"; -App::$strings["Copy the security code from GNU social here"] = "Copia el codi de seguretat de GNU Social aquí"; -App::$strings["Cancel Connection Process"] = "Aborta el procés de connexió"; -App::$strings["Current GNU social API is"] = "La ruta actual a l'API de GNU Social és"; -App::$strings["Cancel GNU social Connection"] = "Aborta la connexió a GNU Social"; -App::$strings["Currently connected to: "] = "Actualment estàs connectat/da a:"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a GNU Social per a la teva identitat portarà a una pàgina en blanc avisant de la restricció."; -App::$strings["Allow posting to GNU social"] = "Permet publicar a GNU Social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si s'activa, les entrades públiques poden ser penjades al compte associat de GNU Social"; -App::$strings["Post to GNU social by default"] = "Per defecte publica a GNU Social"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de GNU Social"; -App::$strings["Clear OAuth configuration"] = "Esborra la configuració de OAuth"; -App::$strings["GNU social Post Settings"] = "Configuració de Publica a GNU Social"; -App::$strings["API URL"] = "Adreça URL de l'API"; -App::$strings["Application name"] = "Nom de l'aplicació"; -App::$strings["QR code"] = "Codi QR"; -App::$strings["QR Generator"] = "Generador de codi QR"; -App::$strings["Enter some text"] = "Escriu un text"; -App::$strings["Invalid game."] = "El joc no és vàlid."; -App::$strings["You are not a player in this game."] = "No ets un jugador en aquest joc."; -App::$strings["You must be a local channel to create a game."] = "Has de crear la partida des d'un canal local."; -App::$strings["You must select one opponent that is not yourself."] = "Has de triar un oponent diferent a tu mateix/a."; -App::$strings["Random color chosen."] = "S'ha escollit un color aleatori."; -App::$strings["Error creating new game."] = "S'ha produït un error en crear la partida."; -App::$strings["Requested channel is not available."] = "El canal demanat no està disponible."; -App::$strings["You must select a local channel /chess/channelname"] = "Has de triar un canal local /chess/nomdelcanal"; -App::$strings["Enable notifications"] = "Activa les notificacions"; -App::$strings["Post to Twitter"] = "Publica a Twitter"; -App::$strings["Twitter settings updated."] = "S'ha actualitzat la configuració de Twitter."; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No s'ha trobat cap parell de claus de Twitter. Contacte l'administrador del teu lloc."; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "L'extensió de Twitter està activada però encara no t'has connectat a cap compte de Twitter. Per a fer-ho, fes clic al botó de sota per a obtenir un PIN des de Twitter. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques"; -App::$strings["Log in with Twitter"] = "Inicia la sessió amb Twitter"; -App::$strings["Copy the PIN from Twitter here"] = "Copia el PIN de Twitter aquí"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a Twitter per a la teva identitat portarà a una pàgina en blanc avisant de la restricció."; -App::$strings["Allow posting to Twitter"] = "Permet publicar a Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si s'activa, les entrades públiques poden ser penjades al compte associat de Twitter"; -App::$strings["Twitter post length"] = "Llargada del tuit"; -App::$strings["Maximum tweet length"] = "Llargada màxima de tuit"; -App::$strings["Send public postings to Twitter by default"] = "Envia per defecte les entrades públiques cap a Twitter"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de Twitter"; -App::$strings["Twitter Post Settings"] = "Configuració de Twitter"; -App::$strings["Deactivate the feature"] = "Desactiva la funcionalitat"; -App::$strings["Hide the button and show the smilies directly."] = "Amaga el botó i mostra les icones directament."; -App::$strings["Smileybutton Settings"] = "Configuració de Smileybutton"; -App::$strings["Access Denied."] = "S'ha denegat l'accés."; -App::$strings["Order Not Found"] = "No s'ha trobat l'ordre"; -App::$strings["Access Denied"] = "S'ha denegat l'accés"; -App::$strings["Invalid Item"] = "L'article és invàlid"; -App::$strings["[cart] Item Added"] = "[cart] S'ha afegit un article"; -App::$strings["Order already checked out."] = "La comanda ja s'ha servit."; -App::$strings["Enable Shopping Cart"] = "Habilita la cistella de la compra"; -App::$strings["Enable Test Catalog"] = "Habilita un catàleg de prova"; -App::$strings["Enable Manual Payments"] = "Habilita els pagaments manuals"; -App::$strings["Base Merchant Currency"] = "Moneda base del comerç"; -App::$strings["Cart - Base Settings"] = "Carretó - Configuració bàsica"; -App::$strings["Shop"] = "Botiga"; -App::$strings["You must be logged into the Grid to shop."] = "Cal haver iniciat sessió per a poder comprar."; -App::$strings["Cart Not Enabled (profile: "] = "La cistella no està habilitada (perfil:"; -App::$strings["Order not found."] = "No s'ha trobat l'ordre."; -App::$strings["Access denied."] = "S'ha denegat l'accés."; -App::$strings["No Order Found"] = "No s'ha trobat cap ordre"; -App::$strings["An unknown error has occurred Please start again."] = "S'ha produït un error inesperat. Torna-ho a provar."; -App::$strings["Invalid Payment Type. Please start again."] = "El tipus de pagament no és vàlid. Torna a començar."; -App::$strings["Order not found"] = "No s'ha trobat l'ordre"; -App::$strings["Enable Paypal Button Module"] = "Activa el mòdul del botó de Paypal"; -App::$strings["Use Production Key"] = "Fes servir la clau de producció"; -App::$strings["Paypal Sandbox Client Key"] = "Clau de client de Paypal del banc de proves"; -App::$strings["Paypal Sandbox Secret Key"] = "Clau secreta de Paypal del banc de proves"; -App::$strings["Paypal Production Client Key"] = "Clau de client de Paypal de producció"; -App::$strings["Paypal Production Secret Key"] = "Clau secreta de Paypal de producció"; -App::$strings["Cart - Paypal Addon"] = "Carretó - Extensió de Paypal"; -App::$strings["Paypal button payments are not enabled."] = "El botó de pagament per Paypal no està habilitat."; -App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "El botó de pagament per Paypal no està ben configurat. Escull un altre mètode de pagament."; -App::$strings["Enable Hubzilla Services Module"] = "Activa el mòdul \"Serveis de Hubzilla\""; -App::$strings["Cart - Hubzilla Services Addon"] = "Carretó - Extensió \"Serveis de Hubzilla\""; -App::$strings["New Sku"] = "Nova SKU"; -App::$strings["Cannot save edits to locked item."] = "No s'han pogut desar els canvis a l'article perquè està bloquejat."; -App::$strings["SKU not found."] = "Non s'ha trobat l'SKU"; -App::$strings["Invalid Activation Directive."] = "La directiva d'activació és invàlida."; -App::$strings["Invalid Deactivation Directive."] = "La directiva de desactivació és invàlida."; -App::$strings["Add to this privacy group"] = "Afegeix-ho al teu grup de privacitat"; -App::$strings["Set user service class"] = "Defineix la classe de servei de l'usuària"; -App::$strings["You must be using a local account to purchase this service."] = "Cal una sessió iniciada en aquest hub per a comprar el servei."; -App::$strings["Changes Locked"] = "Article bloquejat"; -App::$strings["Item available for purchase."] = "Article a la venda."; -App::$strings["Price"] = "Preu"; -App::$strings["Add buyer to privacy group"] = "Afegeix el comprador a un grup de privacitat"; -App::$strings["Add buyer as connection"] = "Connecta automàticament amb els canals de les compradores"; -App::$strings["Set Service Class"] = "Defineix la classe de servei"; -App::$strings["Error: order mismatch. Please try again."] = "Error: l'ordre no coincideix. Torna-ho a provar."; -App::$strings["Manual payments are not enabled."] = "El pagament manual no està habilitat."; -App::$strings["Finished"] = "Operació completa"; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Aquest lloc web analitza el trànsit amb l'eina Piwik."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si no vols que es registrin les teves visites d'aquesta manera, pots crear una cookie per fer que Piwik deixi de fer-ho. En anglès es coneix com \"opt-out\"."; -App::$strings["Piwik Base URL"] = "Adreça URL arrel del Piwik"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Adreça absoluta a la instaŀlació de Piwik: sense protocol (http[s]) amb una barra (/) final"; -App::$strings["Site ID"] = "Identitat del lloc"; -App::$strings["Show opt-out cookie link?"] = "Vols mostrar un enllaç per poder crear una cookie per evitar el seguiment?"; -App::$strings["Asynchronous tracking"] = "Seguiment asíncron"; -App::$strings["Enable frontend JavaScript error tracking"] = "Activa el seguiment d'errors de Javascript al frontend "; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Aquesta funcionalitat necessita una versió del Piwik >= 2.2.0"; -App::$strings["Edit your profile and change settings."] = "Modifica el teu perfil i canvia la configuració."; -App::$strings["Click here to see activity from your connections."] = "Clica aquí per a veure l'activitat de les teves connexions."; -App::$strings["Click here to see your channel home."] = "Clica aquí per a veure el mur del teu canal."; -App::$strings["You can access your private messages from here."] = "Pots accedir als teus missatges privats des d'aquí."; -App::$strings["Create new events here."] = "Pots crear esdeveniments des d'aquí."; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Pots acceptar connexions noves des d'aquí i canviar els permisos de les existents. També pots crear grups de contactes, per exemple."; -App::$strings["System notifications will arrive here"] = "Les notificacions t'arriben per aquí"; -App::$strings["Search for content and users"] = "Cerca contingut i usuaris"; -App::$strings["Browse for new contacts"] = "Explora per trobar nous contactes"; -App::$strings["Launch installed apps"] = "Obre aplicacions instaŀlades"; -App::$strings["Looking for help? Click here."] = "Que busques ajuda? Clica aquí."; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Hi ha hagut activitat nova a la teva xarxa. Clica aquí a veure què ha passat!"; -App::$strings["You have received a new private message. Click here to see from who!"] = "Has rebut un missatge privat. A veure de qui és!"; -App::$strings["There are events this week. Click here too see which!"] = "Hi ha esdeveniments aquesta setmana. Clica per veure quins!"; -App::$strings["You have received a new introduction. Click here to see who!"] = "Has rebut una presentació. Clica per veure de qui és!"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = "Tens una notificació de sistema. Clica per veure què ha passat!"; -App::$strings["Click here to share text, images, videos and sound."] = "Clica aquí per a compartir text, imatges, vídeos, i sons."; -App::$strings["You can write an optional title for your update (good for long posts)."] = "Si vols, pots posar un títol a les teves entrades. És una bona idea per a entrades llargues."; -App::$strings["Entering some categories here makes it easier to find your post later."] = "Si afegeixes categories serà més fàcil de trobar l'entrada més endavant."; -App::$strings["Share photos, links, location, etc."] = "Comparteix fotos, enllaços, la ubicació, etc."; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Vols compartir un contingut només durant una estona? Fes-lo caducar a un cert moment."; -App::$strings["You can password protect content."] = "Pots protegir el contingut per contrasenya."; -App::$strings["Choose who you share with."] = "Escull amb qui ho vols compartir."; -App::$strings["Click here when you are done."] = "I clica aquí quan acabis."; -App::$strings["Adjust from which channels posts should be displayed."] = "Tria des de quins canals s'haurien de mostrar les entrades."; -App::$strings["Only show posts from channels in the specified privacy group."] = "Mostra només entrades de canals especificats en el grup de privacitat."; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Pots trobar fàcilment entrades que continguin etiquetes (paraules clau precedides per un símbol \"#\")."; -App::$strings["Easily find posts in given category."] = "Troba fàcilment entrades en una certa categoria."; -App::$strings["Easily find posts by date."] = "Troba fàcilment entrades per data."; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Els usuaris que et suggerim s'han mostrat voluntaris a ser suggerits perquè els puguis afegir. Que potser t'interessa connectar-t'hi?"; -App::$strings["Here you see channels you have connected to."] = "Aquí pots veure els canals als quals estàs connectat/da."; -App::$strings["Save your search so you can repeat it at a later date."] = "Si deses la teva cerca la podràs repetir més tard."; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si veus aquesta icona, pots donar per fet que el/la remitent és qui diu ser. De tota manera, és habitual que no es pugui verificar, i per tant, que de vegades falti aquesta icona. Però és només una capa més de seguretat del sistema."; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Alerta! Sembla que algú ha intentat falsificar un missatge! Pot ser que el remitent d'aquest missatge no sigui qui diu ser!"; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Benvingut/da a Hubzilla! T'agradaria fer un tur pel lloc?

Pots pausar-lo en qualsevol moment i continuar més tard on ho havies deixat. Per fer-ho navega a una altra pàgina o recarrega aquesta.

També pots avançar prement la tecla de retorn"; -App::$strings["Extended Identity Sharing"] = "Compartició d'identitats extesa"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Comparteix la teva identitat amb tota la web. Si es deshabilita, la identitat només es comparteix amb altres nodes de \$Projectname."; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tres en ratlla 3D"; -App::$strings["3D Tic-Tac-Toe"] = "Tres en ratlla 3D"; -App::$strings["New game"] = "Nova partida"; -App::$strings["New game with handicap"] = "Nova partida amb desavantatge"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "El tres en ratlla en 3D és com el clàssic en 2D excepte que es juga en diversos nivells simultàniament."; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "En aquest cas hi ha tres nivells. Guanya qui aconsegueixi fer 3 en ratlla en qualsevol nivell, així com amunt, avall, o en diagonal en qualsevol nivell"; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Una partida amb desavantatge desactiva la posició del centre perquè el jugador que aconsegueix aquest quadrat sol aconseguir un avantatge injust."; -App::$strings["You go first..."] = "Comences!"; -App::$strings["I'm going first this time..."] = "Aquest cop començo jo!"; -App::$strings["You won!"] = "Has guanyat!"; -App::$strings["\"Cat\" game!"] = "Empat!"; -App::$strings["I won!"] = "He guanyat!"; -App::$strings["Message to display on every page on this server"] = "Missatge per mostrar en cada pàgina d'aquest servidor"; -App::$strings["Pageheader Settings"] = "Configuració del Pageheader"; -App::$strings["pageheader Settings saved."] = "S'ha desat la configuració del Pageheader."; -App::$strings["Only authenticate automatically to sites of your friends"] = "Autentica'm automàticament només en hubs on hi tinc connexions"; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "Per defecte se t'autentica en qualsevol hub de la xarxa"; -App::$strings["Authchoose Settings"] = "Configuració de l'Authchoose"; -App::$strings["Atuhchoose Settings updated."] = "S'ha actualitzat la configuració de l'Authchoose."; -App::$strings["lonely"] = "solitari/ària"; -App::$strings["drunk"] = "borratxo/a"; -App::$strings["horny"] = "calent/a"; -App::$strings["stoned"] = "perplex/a"; -App::$strings["fucked up"] = "fotut/da"; -App::$strings["clusterfucked"] = "rematadament fotut/da"; -App::$strings["crazy"] = "boig/boja"; -App::$strings["hurt"] = "ferit/da"; -App::$strings["sleepy"] = "amb son"; -App::$strings["grumpy"] = "de mal humor"; -App::$strings["high"] = "flipat/da"; -App::$strings["semi-conscious"] = "semi-conscient"; -App::$strings["in love"] = "enamorat/da"; -App::$strings["in lust"] = "en zel"; -App::$strings["naked"] = "nu/nua"; -App::$strings["stinky"] = "pudent/a"; -App::$strings["sweaty"] = "suat/da"; -App::$strings["bleeding out"] = "sagnant"; -App::$strings["victorious"] = "victoriós/a"; -App::$strings["defeated"] = "derrotat/da"; -App::$strings["envious"] = "envejós/a"; -App::$strings["jealous"] = "gelós/a"; -App::$strings["XMPP settings updated."] = "S'ha actualitzat la configuració de l'XMPP."; -App::$strings["Enable Chat"] = "Activa el xat"; -App::$strings["Individual credentials"] = "Credencials individuals"; -App::$strings["Jabber BOSH server"] = "Servidor de Jabber BOSH"; -App::$strings["XMPP Settings"] = "Configuració XMPP"; -App::$strings["Jabber BOSH host"] = "Nom de domini de Jabber BOSH"; -App::$strings["Use central userbase"] = "Fes servir una base d'usuari/es central"; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Si s'activa, s'iniciarà sessió automàticament als membres en un servidor ejabberd. Aquest ha d'estar instaŀlat en la mateixa màquina amb credencials sincronitzades, mitjançant l'script \"auth_ejabberd.php\"."; -App::$strings["Who likes me?"] = "A qui agrado?"; -App::$strings["You are now authenticated to pumpio."] = "Has iniciat sessió a pumpio."; -App::$strings["return to the featured settings page"] = "torna a la pàgina de configuració"; -App::$strings["Post to Pump.io"] = "Publica a Pump.io"; -App::$strings["Pump.io servername"] = "Nom del servidor de Pump.io"; -App::$strings["Without \"http://\" or \"https://\""] = "Sense \"http://\" ni \"https://\""; -App::$strings["Pump.io username"] = "Nom d'usuari a Pump.io"; -App::$strings["Without the servername"] = "Sense el nom de servidor"; -App::$strings["You are not authenticated to pumpio"] = "No has iniciat sessió a pumpio"; -App::$strings["(Re-)Authenticate your pump.io connection"] = "[Re]autentica la teva connexió a pump.io"; -App::$strings["Enable pump.io Post Plugin"] = "Activa l'extensió Publica a pump.io"; -App::$strings["Post to pump.io by default"] = "Publica a Pump.io per defecte"; -App::$strings["Should posts be public"] = "Vols que les entrades siguin públiques?"; -App::$strings["Mirror all public posts"] = "Replica totes les entrades públiques"; -App::$strings["Pump.io Post Settings"] = "Configuració de les entrades de pump.io"; -App::$strings["PumpIO Settings saved."] = "S'ha desat la configuració de pump.io"; -App::$strings["An account has been created for you."] = "S'ha creat un compte nou."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "L'autenticació ha tingut èxit però no s'ha pogut crear un compte perquè no està permès."; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s(%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Search \$Projectname"] = "Cerca \$Projectname"; -App::$strings["Redmatrix File Storage Import"] = "Importa l'emmagatzematge d'arxius de Redmatrix"; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Importa tots els teus arxius de núvol cap aquest canal."; -App::$strings["file"] = "arxiu"; -App::$strings["Send email to all members"] = "Enviar correus a tothom"; -App::$strings["%1\$d of %2\$d messages sent."] = "S'ha/n enviat %1\$d de %2\$d missatges."; -App::$strings["Send email to all hub members."] = "Envia un correu a tots els membres del hub."; -App::$strings["Sender Email address"] = "Adreça del remitent"; -App::$strings["Test mode (only send to hub administrator)"] = "Mode de proves (envia'l només a l'administrador del hub)"; -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["likes %1\$s's %2\$s"] = "li agrada %2\$s de %1\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "no li agrada %2\$s de %1\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s"; -App::$strings["poked"] = "esperonat"; -App::$strings["View %s's profile @ %s"] = "Mostra el perfil @%s de %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["Loading..."] = "Carregant..."; -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["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["Embed (existing) photo from your photo albums"] = "Incrusta una imatge existent dels teus àlbums."; -App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; -App::$strings["Where are you right now?"] = "On ets ara?"; -App::$strings["Choose a different album..."] = "Tria un àlbum diferent..."; -App::$strings["Comments enabled"] = "S'han activat els comentaris"; -App::$strings["Comments disabled"] = "S'han activat els comentaris"; -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["Disable comments"] = "Desactiva els comentaris"; -App::$strings["Toggle comments"] = "Commuta l'estat dels comentaris"; -App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; -App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu"; -App::$strings["Set publish date"] = "Ajusta la data de publicació"; -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["Profile Details"] = "Detalls del Perfil"; -App::$strings["Photo Albums"] = "Albums de Fotos"; -App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; -App::$strings["Bookmarks"] = "Marcadors"; -App::$strings["Saved Bookmarks"] = "Marcadors desats"; -App::$strings["View Cards"] = "Mostra les targetes"; -App::$strings["articles"] = "articles"; -App::$strings["View Articles"] = "Mostra els articles"; -App::$strings["View Webpages"] = "Mostra les 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["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["%1\$s's bookmarks"] = "marcadors de %1\$s"; -App::$strings["Unable to import a removed channel."] = "No s'ha pogut importar un canal esborrat."; -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["Cloned channel not found. Import failed."] = "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat."; -App::$strings["prev"] = "prev"; -App::$strings["first"] = "primer"; -App::$strings["last"] = "últim"; -App::$strings["next"] = "pròxim"; -App::$strings["older"] = "el més antic"; -App::$strings["newer"] = "El més nou"; -App::$strings["No connections"] = "Sense Connexions"; -App::$strings["View all %s connections"] = "Veure totes les connexions de %s"; -App::$strings["Network: %s"] = "Xarxa: %s"; -App::$strings["poke"] = "esperona"; -App::$strings["ping"] = "coloca"; -App::$strings["pinged"] = "colocat"; -App::$strings["prod"] = "picar"; -App::$strings["prodded"] = "picat"; -App::$strings["slap"] = "bufetada"; -App::$strings["slapped"] = "bufetejat"; -App::$strings["finger"] = "senyal"; -App::$strings["fingered"] = "senyalat"; -App::$strings["rebuff"] = "menyspreu"; -App::$strings["rebuffed"] = "menyspreuat"; -App::$strings["happy"] = "feliç"; -App::$strings["sad"] = "trist"; -App::$strings["mellow"] = "melós"; -App::$strings["tired"] = "cansat"; -App::$strings["perky"] = "turgent"; -App::$strings["angry"] = "enfadat"; -App::$strings["stupefied"] = "estupefacte"; -App::$strings["puzzled"] = "perplexe"; -App::$strings["interested"] = "Interessat"; -App::$strings["bitter"] = "amargat"; -App::$strings["cheerful"] = "feliç"; -App::$strings["alive"] = "viu"; -App::$strings["annoyed"] = "molest"; -App::$strings["anxious"] = "ansiós"; -App::$strings["cranky"] = "malagaitós"; -App::$strings["disturbed"] = "transtornat"; -App::$strings["frustrated"] = "frustrat"; -App::$strings["depressed"] = "deprimit"; -App::$strings["motivated"] = "motivat"; -App::$strings["relaxed"] = "relaxat"; -App::$strings["surprised"] = "sorprès"; -App::$strings["Monday"] = "Dilluns"; -App::$strings["Tuesday"] = "Dimarts"; -App::$strings["Wednesday"] = "Dimecres"; -App::$strings["Thursday"] = "Dijous"; -App::$strings["Friday"] = "Divendres"; -App::$strings["Saturday"] = "Dissabte"; -App::$strings["Sunday"] = "Diumenge"; -App::$strings["January"] = "Gener"; -App::$strings["February"] = "Febrer"; -App::$strings["March"] = "Març"; -App::$strings["April"] = "Abril"; -App::$strings["May"] = "Maig"; -App::$strings["June"] = "Juny"; -App::$strings["July"] = "Juliol"; -App::$strings["August"] = "Agost"; -App::$strings["September"] = "Setembre"; -App::$strings["October"] = "Octubre"; -App::$strings["November"] = "Novembre"; -App::$strings["December"] = "Desembre"; -App::$strings["Unknown Attachment"] = "Adjunt Desconegut"; -App::$strings["unknown"] = "desconegut"; -App::$strings["remove category"] = "elimina categoria"; -App::$strings["remove from file"] = "elimina del arxiu"; -App::$strings["Download binary/encrypted content"] = "Descarrega el binari o contingut xifrat"; -App::$strings["default"] = "per defecte"; -App::$strings["Page layout"] = "Disseny de pàgina"; -App::$strings["You can create your own with the layouts tool"] = "Pots crear el teu propi amb l'editor de dissenys de pàgina."; -App::$strings["HTML"] = "HTML"; -App::$strings["Comanche Layout"] = "Disseny Comanche"; -App::$strings["PHP"] = "PHP"; -App::$strings["Page content type"] = "Tipus de contingut de la pàgina"; -App::$strings["activity"] = "activitat"; -App::$strings["a-z, 0-9, -, and _ only"] = "només caràcters alfanumèrics en minúscula (a-z, 0-9), guió (-) i guió baix (_)"; -App::$strings["Design Tools"] = "Eines de disseny"; -App::$strings["Pages"] = "Pàgines"; -App::$strings["Import website..."] = "Importa un lloc web"; -App::$strings["Select folder to import"] = "Escull la carpeta a on importar"; -App::$strings["Import from a zipped folder:"] = "Importa des d'una carpeta comprimida:"; -App::$strings["Import from cloud files:"] = "Importa des de fitxers penjats a un núvol:"; -App::$strings["/cloud/channel/path/to/folder"] = "/núvol/canal/ruta/a/la/carpeta"; -App::$strings["Enter path to website files"] = "Introdueix la ruta als arxius de la web"; -App::$strings["Select folder"] = "Escull la carpeta"; -App::$strings["Export website..."] = "Exporta un lloc web"; -App::$strings["Export to a zip file"] = "Exporta a una carpeta comprimida"; -App::$strings["website.zip"] = "lloc-web.zip"; -App::$strings["Enter a name for the zip file."] = "Introdueix un nom per al fitxer comprimit."; -App::$strings["Export to cloud files"] = "Exporta a arxius de núvol"; -App::$strings["/path/to/export/folder"] = "/ruta/a/la/carpeta/exportació"; -App::$strings["Enter a path to a cloud files destination."] = "Introdueix la ruta dels fitxers de núvol de destí."; -App::$strings["Specify folder"] = "Escull una carpeta"; -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["Common Connections"] = "Connexions en comú"; -App::$strings["View all %d common connections"] = "Mostra totes les connexions en comú amb %d"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s"; -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["Premium channel - please visit:"] = "Canal prèmium - ves a:"; -App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix."; -App::$strings["Remote channel or protocol unavailable."] = "El canal remot o el protocol no estan disponibles."; -App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; -App::$strings["Protocol disabled."] = "Protocol desactivat."; -App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; -App::$strings["Delete this item?"] = "Esborrar aquest item?"; -App::$strings["%s show less"] = "%smostra'n menys"; -App::$strings["%s expand"] = "%sdesplega"; -App::$strings["%s collapse"] = "%splega"; -App::$strings["Password too short"] = "Contrasenya massa curta"; -App::$strings["Passwords do not match"] = "Les paraules de pas no coincideixen"; -App::$strings["everybody"] = "tothom"; -App::$strings["Secret Passphrase"] = "Contrasenya Secreta"; -App::$strings["Passphrase hint"] = "Pista per la Contrasenya"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Avis: Els permisos han canviat però encara no han estat enviats."; -App::$strings["close all"] = "tanca tot"; -App::$strings["Nothing new here"] = "Res de nou per aquí"; -App::$strings["Rate This Channel (this is public)"] = "Valora Aquest Canal (això es farà públic)"; -App::$strings["Describe (optional)"] = "Descriu (opcional)"; -App::$strings["Please enter a link URL"] = "Si us plau, entra l'enllaç URL"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Hi ha canvis sense desar, estàs segur que vols abandonar la pàgina?"; -App::$strings["lovely"] = "encantador/a"; -App::$strings["wonderful"] = "meravellós/a"; -App::$strings["fantastic"] = "fantàstic/a"; -App::$strings["great"] = "genial"; -App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "El nom que has escollit o bé ja està agafat o bé no és vàlid. Pots fer servir la suggerència ("; -App::$strings[") or enter a new one."] = ") o provar amb un altre nom."; -App::$strings["Thank you, this nickname is valid."] = "El nom que has triat és vàlid."; -App::$strings["A channel name is required."] = "Cal un nom de canal."; -App::$strings["This is a "] = "Això és un"; -App::$strings[" channel name"] = "nom del canal"; -App::$strings["timeago.prefixAgo"] = "fa"; -App::$strings["timeago.prefixFromNow"] = "d'aquí a"; -App::$strings["timeago.suffixAgo"] = "NONE"; -App::$strings["timeago.suffixFromNow"] = " NONE"; -App::$strings["less than a minute"] = "uns segons"; -App::$strings["about a minute"] = "prop d'un minut"; -App::$strings["%d minutes"] = "%d minuts"; -App::$strings["about an hour"] = "prop d'una hora"; -App::$strings["about %d hours"] = "unes %d hores"; -App::$strings["a day"] = "un dia"; -App::$strings["%d days"] = "%d dies"; -App::$strings["about a month"] = "prop d'un mes"; -App::$strings["%d months"] = "%d mesos"; -App::$strings["about a year"] = "prop d'un any"; -App::$strings["%d years"] = "%d anys"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "maig"; -App::$strings["Jan"] = "gen."; -App::$strings["Feb"] = "feb."; -App::$strings["Mar"] = "març"; -App::$strings["Apr"] = "abr."; -App::$strings["__ctx:short__ May"] = "maig"; -App::$strings["Jun"] = "juny"; -App::$strings["Jul"] = "jul."; -App::$strings["Aug"] = "ag."; -App::$strings["Sep"] = "set."; -App::$strings["Oct"] = "oct."; -App::$strings["Nov"] = "nov."; -App::$strings["Dec"] = "des."; -App::$strings["Sun"] = "dg."; -App::$strings["Mon"] = "dl."; -App::$strings["Tue"] = "dm."; -App::$strings["Wed"] = "dc."; -App::$strings["Thu"] = "dj."; -App::$strings["Fri"] = "dv."; -App::$strings["Sat"] = "ds."; -App::$strings["__ctx:calendar__ today"] = "avui"; -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["Unable to determine sender."] = "incapaç de determinar el remitent"; -App::$strings["No recipient provided."] = "No s'ha proporcionat bústia."; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada"; -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["Item was not found."] = "Article no trobat."; -App::$strings["Unknown error."] = "Error desconegut."; -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["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 de privacitat està buit."; -App::$strings["Privacy group: %s"] = "Grup de privacitat: %s"; -App::$strings["Connection not found."] = "Connexió no trobada."; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["[Edited %s]"] = "[S'ha editat %s]"; -App::$strings["__ctx:edit_activity__ Post"] = "Entrada"; -App::$strings["__ctx:edit_activity__ Comment"] = "Comentari"; -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["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada"; -App::$strings["Default Profile"] = "Perfil per Defecte"; -App::$strings["Unable to retrieve modified identity"] = "No s'ha pogut carregar la identitat modificada"; -App::$strings["Create New Profile"] = "Crear un Perfil Nou"; -App::$strings["Visible to everybody"] = "Visible per tothom"; -App::$strings["Gender:"] = "Gènere:"; -App::$strings["Homepage:"] = "Pàgina Personal:"; -App::$strings["Online Now"] = "Ara en Linia"; -App::$strings["Change your profile photo"] = "Canvia la foto de peril"; -App::$strings["Trans"] = "Trans"; -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["Tags:"] = "Etiquetes:"; -App::$strings["Sexual Preference:"] = "Preferència Sexual:"; -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["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["Home, Voice"] = "Casa, veu"; -App::$strings["Home, Fax"] = "Casa, fax"; -App::$strings["Work, Voice"] = "Feina, veu"; -App::$strings["Work, Fax"] = "Feina, fax"; -App::$strings["view full size"] = "Veure a mida competa"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Select an alternate language"] = "Tria un idioma alternatiu"; -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["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["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/photo"] = "Imatge/foto"; -App::$strings["Encrypted content"] = "Contingut encriptat"; -App::$strings["Install %1\$s element %2\$s"] = "Instaŀla l'element %2\$s del tipus %1\$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["card"] = "targeta"; -App::$strings["article"] = "article"; -App::$strings["Click to open/close"] = "Clic per obrir/tancar"; -App::$strings["spoiler"] = "xafa guitarres"; -App::$strings["View article"] = "Mostra l'article"; -App::$strings["View summary"] = "Mostra'n un resum"; -App::$strings["$1 wrote:"] = "$1 va escriure:"; -App::$strings["View PDF"] = "Mostra el pdf"; -App::$strings[" by "] = "de"; -App::$strings[" on "] = "a"; -App::$strings["Embedded content"] = "Contingut embegut"; -App::$strings["Embedding disabled"] = "Incorporació desactivada"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s dóna la benvinguda a %2\$s"; -App::$strings["General Features"] = "Característiques Generals"; -App::$strings["Display new member quick links menu"] = "Mostra el menú d'enllaços ràpids per a nous membres"; -App::$strings["Advanced Profiles"] = "Perfils Avançats"; -App::$strings["Additional profile sections and selections"] = "Seccions i seleccions addicionals de perfils "; -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"] = "Proporciona una wiki per al teu canal"; -App::$strings["Private Notes"] = "Notes Privades"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Activa l'eina per guardar notes i recordatoris (nota:no està encriptat)"; -App::$strings["Create personal planning cards"] = "Crea targetes de planificació personal"; -App::$strings["Create interactive articles"] = "Crea articles interactius"; -App::$strings["Navigation Channel Select"] = "Navegació pel Selector de Canals"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Canvieu els canals directament des del menú desplegable de navegació"; -App::$strings["Photo Location"] = "Ubicació de la Foto"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si les dades d'ubicació estàn disponibles a les fotos pujades, vincular a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Accés Controlat a les Sales de Xat"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proveeix sales de Xat i serveis de Xat amb control d'accés."; -App::$strings["Smart Birthdays"] = "Aniversaris Intel·ligents"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Fes, conscients de la zona horària, els esdeveniments d'aniversari, en cas que els teus amics estiguin dispersos per tot el planeta."; -App::$strings["Event Timezone Selection"] = "Zona horària dels esdeveniments"; -App::$strings["Allow event creation in timezones other than your own."] = "Permet crear esdeveniments en zones horàries diferents a la teva."; -App::$strings["Premium Channel"] = "Privilegis del Canal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Li permet establir restriccions i els termes en els quals es connecten amb el seu canal"; -App::$strings["Advanced Directory Search"] = "Cerca de directori avançada"; -App::$strings["Allows creation of complex directory search queries"] = "Permet fer cerques de directori complexes"; -App::$strings["Advanced Theme and Layout Settings"] = "Configuració de disseny i de tema avançada"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Permet configurar al detall els temes i els dissenys de pàgina"; -App::$strings["Access Control and Permissions"] = "Control d'accés i permisos"; -App::$strings["Enable management and selection of privacy groups"] = "Habilita la gestió i selecció de grups de privacitat"; -App::$strings["Multiple Profiles"] = "Multiples Perfils"; -App::$strings["Ability to create multiple profiles"] = "Capacitat per crear multiples perfils"; -App::$strings["Create custom connection permission limits"] = "Personalitza els límits de permisos de les connexions"; -App::$strings["OAuth1 Clients"] = "Clients OAuth1"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Gestiona els tokens d'autenticació OAuth1 per al mòbil i aplicacions remotes."; -App::$strings["OAuth2 Clients"] = "Clients OAuth2"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Gestiona els tokens d'autenticació OAuth2 per al mòbil i aplicacions remotes."; -App::$strings["Access Tokens"] = "Tokens d'accés"; -App::$strings["Create access tokens so that non-members can access private content."] = "Crea tokens d'accés per tal que no-membres puguis accedir contingut privat."; -App::$strings["Post Composition Features"] = "Característiques de Composició d'Entrades"; -App::$strings["Large Photos"] = "Grans Fotos"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inclou gran (1024px) foto de miniatura a les entrades. Si no està activat, empra petita (640px) foto de miniatura."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automàticament el contingut del canal des de altres canals o feeds"; -App::$strings["Even More Encryption"] = "Encara Més Encriptació"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permet l'encripció opcional del contingut extrem-a-extrem amb clau secreta compartida"; -App::$strings["Enable Voting Tools"] = "Habilitar Eines de Votació"; -App::$strings["Provide a class of post which others can vote on"] = "Proporcionar una classe d'entrada que altres puguin votar"; -App::$strings["Disable Comments"] = "Deshabilita els comentaris"; -App::$strings["Provide the option to disable comments for a post"] = "Proporciona l'opció de deshabilitar els comentaris per a una entrada"; -App::$strings["Delayed Posting"] = "Retarda Publicació"; -App::$strings["Allow posts to be published at a later date"] = "Permet que les publicacions es publiquin en data posterior"; -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."; -App::$strings["Suppress Duplicate Posts/Comments"] = "Suprimeix Duplicats de Publicacions/Comentaris"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Evita que publicacions amb identic contingut siguin publicades amb menys de dos minuts entre entregues."; -App::$strings["Auto-save drafts of posts and comments"] = "Desa automàticament esborranys de les entrades i comentaris"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Desa esborranys automàticament en l'emmagatzematge local del navegador per a evitar perdre escrits per a comentaris o entrades"; -App::$strings["Network and Stream Filtering"] = "Filtrat de Xarxa i Flux"; -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["Save search terms for re-use"] = "Guardar els termin de la cerca per a re-usar"; -App::$strings["Alternate Stream Order"] = "Diversos ordres al flux"; -App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Permet canviar l'ordre dels continguts en el flux: segons la data de les entrades, segons la data de l'últim comentari, o segons la data de cada missatge sense agrupar per converses"; -App::$strings["Contact Filter"] = "Filtre de contactes"; -App::$strings["Ability to display only posts of a selected contact"] = "Permet mostrar només entrades d'un contacte determinat"; -App::$strings["Forum Filter"] = "Filtre de fòrums"; -App::$strings["Ability to display only posts of a specific forum"] = "Permet mostrar només entrades d'un fòrum determinat"; -App::$strings["Personal Posts Filter"] = "Filtre d'interaccions amb mi"; -App::$strings["Ability to display only posts that you've interacted on"] = "Permet mostrar només les entrades amb què has interactuat"; -App::$strings["Affinity Tool"] = "Eina d'Afinitat"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtre d'activitat del flux per importància de la relació"; -App::$strings["Show friend and connection suggestions"] = "Suggereix connexions o amistats"; -App::$strings["Connection Filtering"] = "Filtre de Connexió"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtre de missatges d'entrada de conexions, basat en paraules clau/contingut "; -App::$strings["Post/Comment Tools"] = "Eina d'Entrades/Comentaris"; -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["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"; -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["Trending"] = "Tema del moment"; -App::$strings["Keywords"] = "Paraules clau"; -App::$strings["have"] = "tinc"; -App::$strings["has"] = "tens"; -App::$strings["want"] = "vull"; -App::$strings["wants"] = "vols"; -App::$strings["likes"] = "agrada"; -App::$strings["dislikes"] = "desagrada"; -App::$strings["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["Birthday"] = "Aniversari"; -App::$strings["Age: "] = "Edat:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; -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["Remote authentication"] = "Autenticació remota"; -App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; -App::$strings["Manage your channels"] = "Gestiona els teus canals"; -App::$strings["Manage your privacy groups"] = "Gestiona els teus grups de privacitat"; -App::$strings["Account/Channel Settings"] = "Configuració de compte i canal"; -App::$strings["End this session"] = "Finalitza aquesta sessió"; -App::$strings["Your profile page"] = "La teva pàgina de perfil"; -App::$strings["Manage/Edit profiles"] = "Gestiona/edita els perfils"; -App::$strings["Sign in"] = "Signatura"; -App::$strings["Take me home"] = "Porta'm a casa"; -App::$strings["Log me out of this site"] = "Tanca'm la sessió en aquest lloc web"; -App::$strings["Create an account"] = "Crear un compte"; -App::$strings["Help and documentation"] = "Ajuda i documentació"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Cerca en el node @nom, !fòrum, #etiqueta, ?documentació, contingut"; -App::$strings["Site Setup and Configuration"] = "Configuració del node"; -App::$strings["@name, !forum, #tag, ?doc, content"] = "@nom, !fòrum, #etiqueta, ?documentació, contingut"; -App::$strings["Please wait..."] = "Si us plau, espera......."; -App::$strings["Add Apps"] = "Afegeix aplicacions"; -App::$strings["Arrange Apps"] = "Endreça les aplicacions"; -App::$strings["Toggle System Apps"] = "Commuta l'estat de les aplicacions de sistema"; -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["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"] = "Afegeix noves connexions a aquest grup de privacitat"; -App::$strings["edit"] = "edita"; -App::$strings["Edit group"] = "Editar grup"; -App::$strings["Add privacy group"] = "Afegeix grup de privacitat"; -App::$strings["Channels not in any privacy group"] = "Canals que no estan en cap grup de privacitat"; -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["Delegation session ended."] = "S'ha tancat la sessió de delegació."; -App::$strings["Logged out."] = "Sortir."; -App::$strings["Email validation is incomplete. Please check your email."] = "Encara no s'ha validat el teu correu. Comprova la safata d'entrada i la paperera."; -App::$strings["Failed authentication"] = "Autenticació fallida"; -App::$strings["Help:"] = "Ajuda:"; -App::$strings["Not Found"] = "No s'ha pogut trobar la pàgina"; diff --git a/view/ca/messages.po b/view/ca/messages.po index 6abe8ca65..e7bbc980b 100644 --- a/view/ca/messages.po +++ b/view/ca/messages.po @@ -1,3351 +1,13251 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project -# This file is distributed under the same license as the Red package. +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. # # Translators: -# fadelkon , 2015 -# Rafael Garau, 2016 -# Rafael Garau, 2013-2015 -# Rafael Garau, 2015 +# fadelkon , 2015-2016 +# fadelkon , 2018 +# Rafael, 2015 +# Rafael Garau, 2016-2017 # Rafael Garau, 2015 msgid "" msgstr "" -"Project-Id-Version: Redmatrix\n" +"Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-08 00:01-0700\n" -"PO-Revision-Date: 2017-09-23 19:03+0000\n" -"Last-Translator: Rafael Garau\n" -"Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/red-matrix/language/ca_ES/)\n" +"POT-Creation-Date: 2018-07-18 11:47+0200\n" +"PO-Revision-Date: 2018-08-20 19:57+0000\n" +"Last-Translator: fadelkon \n" +"Language-Team: Catalan (Spain) (http://www.transifex.com/Friendica/hubzilla/language/ca_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "No s'ha trobat cap nom d'usuari a l'arxiu d'importació." - -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "No s'ha pogut importar el canal perquè l'adreça única de canal no s'ha pogut crear." - -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "S'ha completat la importació." - -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "amunt" - -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2561 -msgid "Collection" -msgstr "Col·lecció" - -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principal" - -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Llista d'adreces" - -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendari" - -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Programa la bústia d'entrada" - -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Programa la bústia de sortida" - -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1030 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" -msgstr "Desconegut" - -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "Hi ha %1$s en ús" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "Hi ha en ús %1$s de %2$s (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1620 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Arxius" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Total" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Compartit" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152 -#: ../../mod/layouts.php:175 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/webpages.php:180 -msgid "Create" -msgstr "Crea" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:718 -#: ../../mod/photos.php:1248 ../../mod/profile_photo.php:362 -msgid "Upload" -msgstr "Puja" - -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nom" - -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "Tipus" - -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Mida" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Darrera modificació" - -#: ../../include/RedDAV/RedBrowser.php:266 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:108 -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:242 -#: ../../mod/connections.php:255 ../../mod/connections.php:274 -#: ../../mod/editblock.php:134 ../../mod/editlayout.php:133 -#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:178 -#: ../../mod/settings.php:650 ../../mod/layouts.php:183 ../../mod/menu.php:106 -#: ../../mod/thing.php:255 ../../mod/webpages.php:181 -msgid "Edit" -msgstr "Edita" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:671 -#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/photos.php:1062 -#: ../../mod/blocks.php:155 ../../mod/connedit.php:563 -#: ../../mod/editblock.php:180 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:225 ../../mod/group.php:176 -#: ../../mod/settings.php:651 ../../mod/thing.php:256 -#: ../../mod/webpages.php:183 -msgid "Delete" -msgstr "Esborra" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Crea una carpeta nova" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Puja arxiu" - -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'" - -#: ../../include/photo/photo_driver.php:703 ../../mod/photos.php:92 -#: ../../mod/photos.php:637 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -msgid "Profile Photos" -msgstr "Fotos del Perfil" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1550 -msgid "Logout" -msgstr "Desconectar" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Finalitza aquesta sessió" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Personal" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Les teves entrades i converses" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "Veure Perfil" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "La teva pàgina de perfil" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Editar Perfils" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Gestiona/Edita perfils" - -#: ../../include/nav.php:95 ../../include/identity.php:987 -msgid "Edit Profile" -msgstr "Edita Perfil" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Edita el teu perfil" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1611 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Les Teves Fotos" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Els teus arxius" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Xerrar" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Les teves sales de xerrar" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1646 -msgid "Bookmarks" -msgstr "Marcadors" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Els teus marcadors" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1656 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Pàgines web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Les teves pàgines web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1551 -msgid "Login" -msgstr "Identifica't" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Signatura" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - click per desconectar" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Autenticació remota" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Click per autentificar-te en el teu Lloc " - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Pàgina Personal" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1527 -msgid "Register" -msgstr "Registre" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Crear un compte" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Ajuda" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Ajuda i documentació" - -#: ../../include/nav.php:163 ../../include/widgets.php:91 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Aplicatius" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Aplicacions, utilitats, enllaços, jocs" - -#: ../../include/nav.php:165 ../../include/text.php:914 -#: ../../include/text.php:926 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Cerca" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Cerca en el contingut del lloc" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "Directori" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Directori de Canals" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matriu/Matrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "El teu matrix" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Marca totes les notificacions de matrix vistes" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Canal Personal" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Canal personal" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Marca totes les notificacions de canal vistes" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "Connexions" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Noticies" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notificacions" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Veure totes les Notificacions" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marca totes les notificacions vistes" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Correu" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Correu privat" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Veure tots els missatges privats" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Marcar tots els missatges privats vistos" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../include/nav.php:199 ../../include/widgets.php:577 -msgid "New Message" -msgstr "Escriu un missatge" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "Events" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Calendari d'Events" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Veure tots els events" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Marcar tots els events vistos" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Gestor del Canal" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gestiona els Teus Canals" - -#: ../../include/nav.php:208 ../../include/widgets.php:556 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "Configuració" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Ajustos de Compte/Canal" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Ajustos i Configuració del Lloc" - -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "Carregant..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@name, #tag, content" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Si us plau, espera......." - -#: ../../include/network.php:650 -msgid "view full size" -msgstr "Mostra a mida competa" - -#: ../../include/network.php:1600 ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "Notificació de $Projectname" - -#: ../../include/network.php:1601 ../../include/diaspora.php:2526 -#: ../../include/diaspora.php:2537 ../../include/enotify.php:59 -#: ../../mod/p.php:46 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/network.php:1603 ../../include/enotify.php:61 -msgid "Thank You," -msgstr "Gràcies," - -#: ../../include/network.php:1605 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "Administrador de %s" - -#: ../../include/network.php:1647 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/network.php:1661 -msgid "No Subject" -msgstr "Sense assumpte" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:393 -msgid "first" -msgstr "primer" - -#: ../../include/text.php:422 -msgid "last" -msgstr "últim" - -#: ../../include/text.php:425 -msgid "next" -msgstr "següent" - -#: ../../include/text.php:435 -msgid "older" -msgstr "més antic" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "més nou" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "No hi ha connexions" - -#: ../../include/text.php:844 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "Hi ha %d connexió" -msgstr[1] "Hi ha %d connexions" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Mostra les connexions" - -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 -msgid "Save" -msgstr "Desa" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "fes-li un toc" - -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha fet un toc a" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "fes-li ping" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "ha fet ping a" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "pica" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "ha picat" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "fes-li un cop de palmell" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "ha fet un cop de palmell a" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "acaricia" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "ha acariciat" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "aparta" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "ha apartat" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "feliç" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "tendre" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "cansat" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "animat" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "enfadat" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "encantat" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "perplex" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "Interessat" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "amargat" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "viu" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "molest" +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "Pot veure el flux i entrades del meu canal" -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "ansiós" +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "Pot enviar-me el flux i entrades del seu canal" -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "de mala bava" +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Pot veure el perfil del meu canal per defecte" -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "transtornat" +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Pot veure les meves connexions" -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "frustrat" +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Pot veure les meves fotos i arxius" -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "deprimit" +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "Pot pujar i modificar els meus fitxers i fotos" -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "motivat" +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "Pot veure les pàgines web del meu canal" -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "relaxat" +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Por veure les meves pàgines wiki" -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "sorprès" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "dilluns" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "dimarts" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "dimecres" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "dijous" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "divendres" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "dissabte" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "diumenge" - -#: ../../include/text.php:1201 -msgid "January" -msgstr "gener" - -#: ../../include/text.php:1201 -msgid "February" -msgstr "febrer" - -#: ../../include/text.php:1201 -msgid "March" -msgstr "març" - -#: ../../include/text.php:1201 -msgid "April" -msgstr "abril" - -#: ../../include/text.php:1201 ../../mod/uexport.php:58 -#: ../../mod/uexport.php:59 -msgid "May" -msgstr "maig" - -#: ../../include/text.php:1201 -msgid "June" -msgstr "juny" - -#: ../../include/text.php:1201 -msgid "July" -msgstr "juliol" - -#: ../../include/text.php:1201 -msgid "August" -msgstr "agost" - -#: ../../include/text.php:1201 -msgid "September" -msgstr "setembre" - -#: ../../include/text.php:1201 -msgid "October" -msgstr "octubre" - -#: ../../include/text.php:1201 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1201 -msgid "December" -msgstr "desembre" - -#: ../../include/text.php:1306 -msgid "unknown.???" -msgstr "desconegut.???" - -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1343 -msgid "remove category" -msgstr "elimina la categoria" - -#: ../../include/text.php:1418 -msgid "remove from file" -msgstr "elimina de l'arxiu" - -#: ../../include/text.php:1506 ../../include/text.php:1517 -msgid "Click to open/close" -msgstr "Fes clic per obrir/tancar" - -#: ../../include/text.php:1673 ../../mod/events.php:474 -msgid "Link to Source" -msgstr "Enllaç a la font" - -#: ../../include/text.php:1694 ../../include/text.php:1765 -msgid "default" -msgstr "per defecte" - -#: ../../include/text.php:1702 -msgid "Page layout" -msgstr "Disseny de la pàgina" - -#: ../../include/text.php:1702 -msgid "You can create your own with the layouts tool" -msgstr "Pots crear el teu propi disseny de pàgina amb l'editor" - -#: ../../include/text.php:1743 -msgid "Page content type" -msgstr "Tipus de contingut de la pàgina" - -#: ../../include/text.php:1777 -msgid "Select an alternate language" -msgstr "Tria un idioma alternatiu" - -#: ../../include/text.php:1896 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1899 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "esdeveniment" - -#: ../../include/text.php:1902 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "estat" - -#: ../../include/text.php:1904 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "comentari" - -#: ../../include/text.php:1909 -msgid "activity" -msgstr "activitat" - -#: ../../include/text.php:2204 -msgid "Design Tools" -msgstr "Eines de disseny" - -#: ../../include/text.php:2207 ../../mod/blocks.php:147 +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "Pot crear i modificar les pàgines web del meu canal" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Pot escriure a les meves pàgines wiki" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "Pot penjar entrades al mur del meu canal" + +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "Pot comentar i fer \"m'agrada\" a les meves entrades" + +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" +msgstr "Pot enviar-me missatges privats" + +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "Pot fer m'agrada i no m'agrada als perfils i coses del perfil" + +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can forward to all my channel connections via ! mentions in posts" +msgstr "Pot fer arribar entrades a totes les meves connexions fent servir mencions amb \"!\"" + +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can chat with me" +msgstr "Pot xatejar amb mi" + +#: ../../Zotlabs/Access/Permissions.php:72 +msgid "Can source my public posts in derived channels" +msgstr "Pot fer servir les meves entrades per publicar automàticament en altres canals" + +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" +msgstr "Pot administrar el meu canal" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "Xarxes Socials" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "Social - Federació" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "Social - Principalment públic" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "Social - Restingit" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "Social - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "Fòrum comunitari" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "Fòrum - Principalment públic" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "Fòrum - Restringit" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "Fòrum - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "Republicador" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "Republicador - Principalment públic" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "Republicador - Restringit" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "Objectiu Especial" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Personatge públic / Plataforma" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "Especial - Repositori d'un Grup" + +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:172 +#: ../../Zotlabs/Module/Settings/Channel.php:496 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Register.php:233 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:703 +#: ../../include/connections.php:710 +msgid "Other" +msgstr "Altres" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "Personalitzat, mode expert" + +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:33 +#: ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 +msgid "Requested profile is not available." +msgstr "El perfil demanat no està disponible." + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:115 +#: ../../Zotlabs/Module/Channel.php:281 ../../Zotlabs/Module/Channel.php:320 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Settings/Features.php:38 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1108 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Cloud.php:40 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:12 +#: ../../Zotlabs/Module/Group.php:24 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:77 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:313 +#: ../../Zotlabs/Module/Cover_photo.php:326 +#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:140 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 +#: ../../include/attach.php:197 ../../include/attach.php:270 +#: ../../include/attach.php:379 ../../include/attach.php:393 +#: ../../include/attach.php:400 ../../include/attach.php:482 +#: ../../include/attach.php:1042 ../../include/attach.php:1116 +#: ../../include/attach.php:1281 ../../include/items.php:3653 +#: ../../include/photos.php:27 +msgid "Permission denied." +msgstr "S'ha denegat el permís." + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Nom del bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2458 msgid "Blocks" msgstr "Blocs" -#: ../../include/text.php:2208 ../../mod/menu.php:101 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Títol del bloc" -#: ../../include/text.php:2209 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Dissenys" +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "Creat" -#: ../../include/text.php:2210 -msgid "Pages" -msgstr "Pàgines" +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "Editat" -#: ../../include/widgets.php:35 ../../include/contact_widgets.php:92 -#: ../../include/taxonomy.php:264 -msgid "Categories" -msgstr "Categories" +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:188 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:181 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "Crea" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Settings/Oauth2.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:216 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Lib/Apps.php:475 ../../Zotlabs/Lib/ThreadItem.php:128 +#: ../../Zotlabs/Storage/Browser.php:290 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 +#: ../../include/channel.php:1300 ../../include/menu.php:118 +msgid "Edit" +msgstr "Edita" -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "Personal" +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1107 +#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../include/conversation.php:1374 +msgid "Share" +msgstr "Comparteix" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Crear Personal App" +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Settings/Oauth2.php:151 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:289 +#: ../../Zotlabs/Module/Photos.php:1208 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:476 +#: ../../Zotlabs/Lib/ThreadItem.php:148 ../../Zotlabs/Storage/Browser.php:291 +#: ../../include/conversation.php:691 ../../include/conversation.php:736 +msgid "Delete" +msgstr "Esborra" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Editar Personal App" +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +msgid "View" +msgstr "Mostra" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:964 ../../mod/match.php:64 -#: ../../mod/directory.php:316 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Connecta " +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "S'ha superat el límit total d'invitacions." -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignora/Amaga" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "Suggerencies" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Veure més....." - -#: ../../include/widgets.php:166 +#: ../../Zotlabs/Module/Invite.php:53 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tens %1$.0f de %2$.0f connexions permeses." +msgid "%s : Not a valid email address." +msgstr "L'adreça de correu %s no és vàlida." -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Afegeix una Nova Connexió" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Suma't a $Projectname!" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Introdueix la adreça del canal" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "S'ha superat el límit d'invitacions. Posa't en contacte amb l'administrador del lloc." -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple: pep@exemple.com, http://exemple.com/vinyet" +#: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 +#, php-format +msgid "%s : Message delivery failed." +msgstr "No s'ha pogut lliurar la invitació a %s" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notes" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "S'ha enviat %d invitació." +msgstr[1] "S'han enviat %d invitacions." -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Plaç de remoció" +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "No pots enviar més invitacions" -#: ../../include/widgets.php:274 ../../include/features.php:70 -msgid "Saved Searches" -msgstr "Cerques desades" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Envia invitacions" -#: ../../include/widgets.php:275 ../../include/group.php:303 -msgid "add" -msgstr "afegeix" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Introdueix les adreces de correu electrònic, una per línia:" -#: ../../include/widgets.php:304 ../../include/contact_widgets.php:57 -#: ../../include/features.php:83 -msgid "Saved Folders" -msgstr "Carpetes Guardades" +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "El teu missatge:" -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Tot" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Vols sumar-te a la meva comunitat a $Projectname?" -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Arxius" +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Hauràs de facilitar aquest codi d'invitació:" -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "Jo" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Pots registrar-te a qualsevol node de $Projectname (estan tots interconnectats)" -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "Família" +#: ../../Zotlabs/Module/Invite.php:146 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Escriu a la barra de cerca la meva adreça de la xarxa $Projectname." -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:585 -#: ../../mod/settings.php:345 ../../mod/settings.php:349 -#: ../../mod/settings.php:350 ../../mod/settings.php:353 -#: ../../mod/settings.php:364 +#: ../../Zotlabs/Module/Invite.php:147 +msgid "or visit" +msgstr "o bé visita" + +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "3. Clica [connecta]" + +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:259 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 +#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Addons.php:438 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:112 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Channel.php:516 +#: ../../Zotlabs/Module/Settings/Features.php:79 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Oauth2.php:85 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Import.php:565 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1087 +#: ../../Zotlabs/Module/Photos.php:1127 ../../Zotlabs/Module/Photos.php:1245 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Group.php:121 ../../Zotlabs/Module/Group.php:137 +#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Editpost.php:85 +#: ../../Zotlabs/Module/Sources.php:117 ../../Zotlabs/Module/Sources.php:154 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 +#: ../../Zotlabs/Module/Filestorage.php:183 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Lib/ThreadItem.php:757 +#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:284 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:830 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 +#: ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 +#: ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1159 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 +#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/cart/cart.php:1251 +#: ../../addon/cart/submodules/paypalbutton.php:144 +#: ../../addon/cart/submodules/hzservices.php:78 +#: ../../addon/cart/submodules/hzservices.php:647 +#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "Envia" + +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 +#: ../../Zotlabs/Lib/Apps.php:292 ../../include/features.php:133 +#: ../../include/nav.php:461 +msgid "Articles" +msgstr "Articles" + +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Afegeix un article" + +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "No s'ha trobat l'element" + +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Nom del disseny" + +#: ../../Zotlabs/Module/Editlayout.php:129 +#: ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Descripció del disseny (opcional)" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Edita el disseny" + +#: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Cdav.php:899 +#: ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Admin/Addons.php:423 +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:347 +#: ../../Zotlabs/Module/Wiki.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editpost.php:109 ../../Zotlabs/Module/Filer.php:55 +#: ../../Zotlabs/Module/Cover_photo.php:399 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Card_edit.php:131 +#: ../../include/conversation.php:1397 ../../include/conversation.php:1446 +msgid "Cancel" +msgstr "Cancel·la" + +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Group.php:83 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:364 +msgid "Permission denied" +msgstr "S'ha denegat el permís" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "L'identificador de perfil no és vàlid." + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Editor de la visibilitat del perfil" + +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 +msgid "Profile" +msgstr "Perfil" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Clica sobre un contacte per afegir-lo o esborrar-lo." + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Visible per" + +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:200 +msgid "All Connections" +msgstr "Totes les connexions" + +#: ../../Zotlabs/Module/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "S'HA DESCARTAT UN ESDEVENIMENT INVÀLID." + +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Resum:" + +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:822 ../../Zotlabs/Module/Photos.php:1278 +#: ../../Zotlabs/Lib/Apps.php:819 ../../Zotlabs/Lib/Apps.php:898 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:961 +#: ../../include/conversation.php:1165 +msgid "Unknown" +msgstr "Desconegut" + +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Data:" + +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Motiu:" + +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "S'HA DESCARTAT UNA TARGETA INVÀLIDA." + +#: ../../Zotlabs/Module/Cdav.php:794 +msgid "Name: " +msgstr "Nom:" + +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Títol de l'esdeveniment" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Data i hora d'inici" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Exemple: AAAA-MM-DD HH:mm" + +#: ../../Zotlabs/Module/Cdav.php:870 +msgid "End date and time" +msgstr "Data i hora de fi" + +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +#: ../../addon/cart/submodules/hzservices.php:659 +msgid "Description" +msgstr "Descripció" + +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicació" + +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:976 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Photos.php:985 +msgid "Next" +msgstr "Següent" + +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Avui" + +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "mes" + +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "setmana" + +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "dia" + +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Mes en llista" + +#: ../../Zotlabs/Module/Cdav.php:886 +msgid "List week" +msgstr "Setmana en llista" + +#: ../../Zotlabs/Module/Cdav.php:887 +msgid "List day" +msgstr "Dia en llista" + +#: ../../Zotlabs/Module/Cdav.php:894 +msgid "More" +msgstr "Mostra més" + +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Mostra menys" + +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Tria un calendari" + +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Esborra'ls tots" + +#: ../../Zotlabs/Module/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "Malauradament encara no es poden editar esdeveniments periòdics." + +#: ../../Zotlabs/Module/Cdav.php:1170 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Module/Group.php:125 +#: ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +msgid "Name" +msgstr "Nom" + +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Organització" + +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Títol" + +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "Telèfon" + +#: ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +msgid "Email" +msgstr "Correu electrònic" + +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "Missatgeria instantània" + +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "Lloc web" + +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "Adreça" + +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "Nota" + +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 +#: ../../include/connections.php:696 +msgid "Mobile" +msgstr "Mòbil" + +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 +#: ../../include/connections.php:697 +msgid "Home" +msgstr "Inici" + +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 +#: ../../include/connections.php:700 +msgid "Work" +msgstr "Feina" + +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "Afegeix un contacte" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "Afegeix un camp" + +#: ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Settings/Oauth2.php:40 +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Lib/Apps.php:456 +msgid "Update" +msgstr "Actualitza" + +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "Apartat de correus" + +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Addicional" + +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Carrer" + +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Localitat" + +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Regió" + +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "Codi postal" + +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "País" + +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Calendari per defecte" + +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Llibreta d'adreces per defecte" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Aquest hub no és un servidor de directori" + +#: ../../Zotlabs/Module/Channel.php:35 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 +msgid "You must be logged in to see this page." +msgstr "Has de tenir una sessió iniciada per a veure aquesta pàgina." + +#: ../../Zotlabs/Module/Channel.php:50 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Entrades i comentaris" + +#: ../../Zotlabs/Module/Channel.php:57 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Només entrades" + +#: ../../Zotlabs/Module/Channel.php:112 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "S'ha denegat el permís. La petició s'ha redirigit a la pàgina de perfil." + +#: ../../Zotlabs/Module/Channel.php:129 ../../Zotlabs/Module/Network.php:174 +msgid "Search Results For:" +msgstr "Cerca resultats per:" + +#: ../../Zotlabs/Module/Channel.php:164 ../../Zotlabs/Module/Hq.php:134 +#: ../../Zotlabs/Module/Pubstream.php:80 ../../Zotlabs/Module/Display.php:81 +#: ../../Zotlabs/Module/Network.php:204 +msgid "Reset form" +msgstr "Esborra el formulari" + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Exporta un canal" + +#: ../../Zotlabs/Module/Uexport.php:59 +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ò serveix com a còpia de seguretat de les teves connexions, permisos, perfil i dades bàsiques, i pots emprar-la per a importar aquestes dades des d'un altre hub. No conté el contingut del canal." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Exporta'n el contingut" + +#: ../../Zotlabs/Module/Uexport.php:61 +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 una còpia de seguretat en format JSON. Pot ser restaurada o importada des d'un altre hub. Això desa totes les teves connexions, permisos, dades de perfil i diversos mesos de publicacions. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que la preparació de l'arxiu pot trigar una estona, abans que el puguis començar a baixar." + +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Exporta les entrades d'un any determinat." + +#: ../../Zotlabs/Module/Uexport.php:65 +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 entrades i converses d'un any o un mes en particular. Ajusta la data a la barra d'adreces del navegador per seleccionar altres dates. Si l'exportació falla (possiblement degut a l'esgotament de la memòria RAM del servidor), prova de nou amb un interval de dates més petit." + +#: ../../Zotlabs/Module/Uexport.php:66 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per exemple, per seleccionar totes les entrades d'aquest any, ves a %2$s" + +#: ../../Zotlabs/Module/Uexport.php:67 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per exemple, per seleccionar totes les entrades del mes de gener d'aquest any, ves a %2$s" + +#: ../../Zotlabs/Module/Uexport.php:68 +#, 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 "Les còpies de seguretat amb contingut es poden importar o restaurar des d'aquesta adreça %2$s. En aquest cas és aquest servidor, però també serviria en un altre hub que allotgés un clon del teu canal. Si vols restaurar més d'un arxiu de contingut, per evitar problemes importa'ls en ordre cronològic." + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "Benvingut/da a Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "No tens entrades pendents de veure..." + +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:545 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "L'accés públic no està permès." + +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 +#: ../../Zotlabs/Lib/Apps.php:318 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../Zotlabs/Widget/Activity_filter.php:148 ../../include/text.php:1062 +#: ../../include/text.php:1074 ../../include/acl_selectors.php:118 +#: ../../include/nav.php:185 +msgid "Search" +msgstr "Cerca" + +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elements etiquetats amb: %s" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "Resultats de cerca per: %s" + +#: ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Public Stream" +msgstr "Flux públic" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "No s'ha trobat la ubicació." + +#: ../../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 "Abans d'esborrar la ubicació principal actual, fes-ne principal una altra." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "S'estan sincronitzant les ubicacions" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No s'ha trobat cap ubicació." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestiona les ubicacions del canal" + +#: ../../Zotlabs/Module/Locs.php:119 ../../Zotlabs/Module/Admin.php:115 +msgid "Primary" +msgstr "Primària" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:176 +msgid "Drop" +msgstr "Esborra" + +#: ../../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 "Espera uns 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 "Si pots, és preferible esborrar la ubicació esborrant el canal des del servidor on està copiat." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Fes servir aquest formulari per a esborrar la ubicació del lloc si el hub ja no està operatiu." + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Canvia l'ordre de les aplicacions fixades a la barra de navegació" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Canvia l'ordre de les aplicacions de la safata d'aplicacions" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the" +" navbar" +msgstr "Fes servir les fletxes per moure l'aplicació cap a l'esquerra (amunt) o cap a la dreta (avall)" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Fes servir les fletxes per moure l'aplicació amunt o avall en la safata" + +#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:208 +msgid "Menu not found." +msgstr "No s'ha trobat el menú." + +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." +msgstr "Incapaç de crear l'element." + +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." +msgstr "Incapaç d'actualitzar un element del menú." + +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." +msgstr "No s'ha pogut afegir l'element de menú." + +#: ../../Zotlabs/Module/Mitem.php:134 ../../Zotlabs/Module/Menu.php:231 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No s'ha trobat." + +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" +msgstr "Permisos dels ítems de menú" + +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "(click to open/close)" +msgstr "(clica per obrir/tancar)" + +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" +msgstr "Nom de l'enllaç" + +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" +msgstr "Destí de l'enllaç o del submenú" + +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introdueix la URL de l'enllaç o tria un nom de menú per crear un submenú" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" +msgstr "Empra la magic-auth si està disponible" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 +#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Connedit.php:396 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Menu.php:162 +#: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Defperms.php:180 +#: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Sources.php:116 +#: ../../Zotlabs/Module/Sources.php:151 +#: ../../Zotlabs/Module/Filestorage.php:178 +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1618 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1206 ../../addon/cart/cart.php:1213 +#: ../../addon/cart/cart.php:1221 +#: ../../addon/cart/submodules/paypalbutton.php:99 +#: ../../addon/cart/submodules/paypalbutton.php:104 +#: ../../addon/cart/submodules/hzservices.php:73 +#: ../../addon/cart/submodules/hzservices.php:653 +#: ../../addon/cart/submodules/hzservices.php:657 +#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "No" +msgstr "No" + +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 +#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Connedit.php:396 +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +#: ../../Zotlabs/Module/Filestorage.php:178 +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1618 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1206 ../../addon/cart/cart.php:1213 +#: ../../addon/cart/cart.php:1221 +#: ../../addon/cart/submodules/paypalbutton.php:99 +#: ../../addon/cart/submodules/paypalbutton.php:104 +#: ../../addon/cart/submodules/hzservices.php:73 +#: ../../addon/cart/submodules/hzservices.php:653 +#: ../../addon/cart/submodules/hzservices.php:657 +#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "Sí" + +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" +msgstr "Obre l'enllaç en una nova finestra" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" +msgstr "Ordre de la llista" + +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Els números més alts al final de la llista" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" +msgstr "Envia i acaba" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" +msgstr "Envia i continua" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" +msgstr "Destí de l'enllaç" + +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" +msgstr "Edita el menú" + +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" +msgstr "Edita l'element" + +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" +msgstr "Esborra l'element" + +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" +msgstr "Element nou" + +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" +msgstr "Edita el contenidor de menú" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" +msgstr "Afegeix un element de menú" + +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" +msgstr "Esborra aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" +msgstr "Edita aquest article del menú" + +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." +msgstr "No s'ha trobat l'element de menú." + +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." +msgstr "S'ha esborrat l'element de menú." + +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." +msgstr "No s'ha pogut esborrar l'element de menú." + +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" +msgstr "Editar elements del menú" + +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" +msgstr "Text de l'enllaç" + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "S'han importat les entrades de calendari." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "No s'ha trobat cap entrada de calendari." + +#: ../../Zotlabs/Module/Events.php:110 +msgid "Event can not end before it has started." +msgstr "L'esdeveniment no pot acabar abans de començar." + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "No s'ha pogut generar la vista prèvia." + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "Cal indicar l'inici i el final de l'esdeveniment." + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "No s'ha trobat l'esdeveniment." + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 +#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 +#: ../../include/text.php:2025 ../../include/event.php:1153 +msgid "event" +msgstr "esdeveniment" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Edita el títol de l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../include/datetime.php:211 +msgid "Required" +msgstr "Obligatori" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Categories (llista separada per comes)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Edita la categoria" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Edita la data i hora d'inici" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +msgid "Finish date and time are not known or not relevant" +msgstr "L'hora d'acabar és desconeguda o irrellevant" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Edit finish date and time" +msgstr "Edita la data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Data i hora de finalització" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "Ajusta a la zona horària de l'usuari/a" + +#: ../../Zotlabs/Module/Events.php:471 +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:473 +msgid "Edit Description" +msgstr "Edita la descripció" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Edita la ubicació" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1128 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:767 +#: ../../include/conversation.php:1341 +msgid "Preview" +msgstr "Vista prèvia" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1413 +msgid "Permission settings" +msgstr "Configuració de permisos" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Zona horària:" + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Opcions avançades" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "l, j \\d\\e F" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Edita l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Esborra l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 +#: ../../include/text.php:1844 +msgid "Link to Source" +msgstr "Enllaç a la font" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "calendari" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Edita l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Crear un esdeveniment nou" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 +#: ../../include/channel.php:1647 +msgid "Export" +msgstr "Exporta" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "S'ha eliminat l'esdeveniment" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "No s'ha pogut esborrar l'esdeveniment" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "S'ha instaŀlat l'aplicació." + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "L'aplicació conté errors." + +#: ../../Zotlabs/Module/Appman.php:130 +msgid "Embed code" +msgstr "Codi embegut" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Edit App" +msgstr "Edita una aplicació" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Create App" +msgstr "Crea una aplicació" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Name of app" +msgstr "Nom de l'aplicació" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Location (URL) of app" +msgstr "Adreça URL de l'aplicació" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Photo icon URL" +msgstr "Adreça URL de la icona de l'aplicació" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "80 x 80 pixels - optional" +msgstr "80x80 píxels (opcional)" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Categories (optional, comma separated list)" +msgstr "Categories (opcional, llista separada per comes)" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Version ID" +msgstr "Identificador o número de versió" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Price of app" +msgstr "Preu de l'aplicació" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Location (URL) to purchase app" +msgstr "Adreça URL de compra de l'aplicació" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inicia sessió." + +#: ../../Zotlabs/Module/Magic.php:76 +msgid "Hub not found." +msgstr "No s'ha trobat el hub." + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:384 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1530 ../../addon/pubcrawl/as.php:1509 +#: ../../include/conversation.php:116 ../../include/text.php:2022 +msgid "photo" +msgstr "foto" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 +#: ../../addon/diaspora/Receiver.php:1530 ../../addon/pubcrawl/as.php:1509 +#: ../../include/conversation.php:144 ../../include/text.php:2028 +msgid "status" +msgstr "estat" + +#: ../../Zotlabs/Module/Subthread.php:142 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s segueix %3$s de %2$s" + +#: ../../Zotlabs/Module/Subthread.php:144 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ha deixat de seguir %3$s de %2$s" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "No s'ha trobat el canal." + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../include/conversation.php:1283 +msgid "Insert web link" +msgstr "Insereix un enllaç web" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:703 +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../include/conversation.php:1409 +msgid "Title (optional)" +msgstr "Títol (opcional)" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Edita l'article" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:66 +msgid "Nothing to import." +msgstr "No s'ha trobat res per importar." + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:81 +#: ../../Zotlabs/Module/Import.php:97 +msgid "Unable to download data from old server" +msgstr "No s'han pogut descarregar les dades del servidor antic" + +#: ../../Zotlabs/Module/Import_items.php:77 +#: ../../Zotlabs/Module/Import.php:104 +msgid "Imported file is empty." +msgstr "El fitxer importat està buit." + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atenció: Les versions de les bases de dades difereixen de %1$d actualitzacions." + +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "S'ha completat la importació" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Importa articles" + +#: ../../Zotlabs/Module/Import_items.php:126 +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/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:548 +msgid "File to Upload" +msgstr "Fitxer per pujar" + +#: ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Has creat %1$.0f canals dels %2$.0f totals permesos." + +#: ../../Zotlabs/Module/New_channel.php:154 +#: ../../Zotlabs/Module/New_channel.php:161 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:276 +msgid "Loading" +msgstr "S'està carregant" + +#: ../../Zotlabs/Module/New_channel.php:156 +msgid "Your real name is recommended." +msgstr "És recomanable fer servir el nom real." + +#: ../../Zotlabs/Module/New_channel.php:157 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Exemples: \"Paula Gomila\", \"Manel i els seus cavalls\", \"Assemblea de veïnes del barri\", \"Filosofia\"" + +#: ../../Zotlabs/Module/New_channel.php:162 +msgid "" +"This will be used to create a unique network address (like an email " +"address)." +msgstr "Es farà servir per crear una adreça de xarxa única, com la de email." + +#: ../../Zotlabs/Module/New_channel.php:164 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "Els caràcters permesos són lletres minúscules sense accents, números i guions: a-z, 0-9, -, _" + +#: ../../Zotlabs/Module/New_channel.php:174 +msgid "Channel name" +msgstr "Nom del canal" + +#: ../../Zotlabs/Module/New_channel.php:176 +#: ../../Zotlabs/Module/Register.php:265 +msgid "Choose a short nickname" +msgstr "Tria un àlies curt" + +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Settings/Channel.php:560 +#: ../../Zotlabs/Module/Register.php:266 +msgid "Channel role and privacy" +msgstr "Rol i privacitat del canal" + +#: ../../Zotlabs/Module/New_channel.php:177 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." +msgstr "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges." + +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:266 +msgid "Read more about channel permission roles" +msgstr "Llegeix més sobre els rols de permisos en els canals" + +#: ../../Zotlabs/Module/New_channel.php:180 +msgid "Create a Channel" +msgstr "Crea un canal" + +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed," +" and many other things." +msgstr "Un canal és una identitat de xarxa única. Tant pot representar una persona (el seu perfil social), com un fòrum (un grup), una associació o la pàgina d'algun personatge públic, un flux de notícies, i moltes més coses." + +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "" +"or import an existing channel from another location." +msgstr "o bé importa un canal existent des d'una altra ubicació." + +#: ../../Zotlabs/Module/New_channel.php:187 +msgid "Validate" +msgstr "Valida-ho" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "No es permet esborrar un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al qual pertany." + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Esborra aquest canal" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "ALERTA:" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Aquest canal serà esborrat de la xarxa completament." + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Aquesta acció és irreversible!" + +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Per seguretat, torna a introduir la contrasenya per a confirmar aquesta acció:" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina aquest canal i els seus clons de la xarxa" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Per defecte, només es pot esborrar la instància del canal ubicada en aquest hub." + +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:622 +msgid "Remove Channel" +msgstr "Elimina el canal" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "Arxius: compartits amb mi" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "NOU" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1451 +msgid "Size" +msgstr "Mida" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:288 +msgid "Last Modified" +msgstr "Última modificació" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Esborra tots els arxius" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Esborra l'arxiu" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "Servidor de $Projectname - Instaŀlació" + +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." +msgstr "No s'ha pogut establir una connexió amb la base de dades" + +#: ../../Zotlabs/Module/Setup.php:178 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No s'ha pogut connectar amb la URL del lloc especificat. Comprova si hi ha un problema amb el certificat TLS o amb el registre DNS." + +#: ../../Zotlabs/Module/Setup.php:185 +msgid "Could not create table." +msgstr "No s'ha pogut crear la taula." + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." +msgstr "S'ha instaŀlat la base de dades del teu node." + +#: ../../Zotlabs/Module/Setup.php:197 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." + +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:749 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Consulta el fitxer \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" +msgstr "Comprovació del sistema" + +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" +msgstr "Comprova de nou" + +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" +msgstr "Connexió amb la base de dades" + +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per tal d'instaŀlar $Projectname cal configurar la connexió amb la base de dades." + +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Si tens dubtes sobre aquests paràmetres, posa't en contacte amb la proveïdora d'allotjament web o la persona que administradora del lloc." + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de dades que especifiquis a continuació ja ha d'existir. Si no és així, crea-la abans de continuar." + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Server Name" +msgstr "Nom del servidor de base de dades" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "Per defecte és 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" +msgstr "Port per a la base de dades" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" +msgstr "Número del port. Posa 0 per fer servir el valor predeterminat" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" +msgstr "Nom d'usuari/a a la base de dades" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" +msgstr "Contrasenya d'usuari/a a la base de dades" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" +msgstr "Nom de la base de dades" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Tipus de base de dades" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" +msgstr "Adreça de correu de l'administrador/a del lloc" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "El teu compte de correu ha de coincidir-hi per poder emprar el panell web d'administració." + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" +msgstr "Adreça URL del lloc web" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." +msgstr "Si us plau, fes servir l'adreça amb TLS (https) si està disponible." + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" +msgstr "Escull la zona horària per defecte del teu lloc web" + +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" +msgstr "Configuració del lloc" + +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "Es necessita una versió de PHP igual o superior a la 5.5." + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "Versió del PHP" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No s'ha pogut trobar una versió de consola del PHP en la ruta del servidor web." + +#: ../../Zotlabs/Module/Setup.php:402 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Si no tens una versió de línia de comandes de PHP instaŀlada al servidor, no es podran fer sondejos periòdics en segon pla, fent servir el cron." + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "PHP executable path" +msgstr "Ruta al binari de PHP" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introdueix la ruta al binari de php. Pots deixar-ho en blanc i continuar l'instaŀlació." + +#: ../../Zotlabs/Module/Setup.php:411 +msgid "Command line PHP" +msgstr "Línia de comandes de PHP" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "No s'ha pogut fer servir PHP per línia de comandes perquè shell_exec() està deshabilitat. Cal habilitar-ho." + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versió de línia de comandes de PHP al teu sistema no té el \"register_argc_argv\" activat." + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "Això és necessari per poder lliurar missatges." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" +msgstr "register_argc_argv de PHP" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "El límit màxim de pujada està establerta en %s. El límit de pujada per arxiu de pujada és de %s. Es permeten pujar %d arxius alhora." + +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Pots modificar la configuració en l'arxiu de configuració php.ini del servidor." + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "Límits de pujada de PHP" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifratge" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si estàs fent servir un sistema operatiu Windows, consulta \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../Zotlabs/Module/Setup.php:480 +msgid "Generate encryption keys" +msgstr "Generar claus de xifratge" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "mòdul de PHP \"libCurl\"" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "mòdul de PHP \"GD graphics\"" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "mòdul de PHP \"OpenSSL\"" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "Mòdul PHP per la base de dades PDO" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "mòdul de PHP \"mb_string\"" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "mòdul de PHP \"xml\"" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "Mòdul PHP per als comprimits zip" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "mòdul d'Apache: \"mod_rewrite\"" + +#: ../../Zotlabs/Module/Setup.php:507 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: es necessita el mòdul \"mod-rewrite\" del servidor web Apache, però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "exec" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "Error: no s'ha pogut fer servir exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "shell_exec" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: no s'ha pogut fer servir shell_exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: es necessita el mòdul PHP \"libCURL\", però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:531 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: es necessita el mòdul PHP \"GD graphics\" amb support JPEG, però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: es necessita el mòdul PHP \"OpenSSL\", però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "Error: no s'ha trobat el mòdul PHP per a la base de dades PDO. Cal instaŀlar-lo." + +#: ../../Zotlabs/Module/Setup.php:543 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: es necessita el mòdul PHP \"mb_string\", però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: es necessita el mòdul PHP \"xml\" per al DAV, però no està instal·lat." + +#: ../../Zotlabs/Module/Setup.php:551 +msgid "Error: zip PHP module required but not installed." +msgstr "Error: no s'ha trobat el mòdul PHP per als fitxers zip. Cal instaŀlar-lo." + +#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +msgid ".htconfig.php is writable" +msgstr "L'arxiu «.htconfig.php» es pot modificar" + +#: ../../Zotlabs/Module/Setup.php:575 +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:576 +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 permisos de modificació." + +#: ../../Zotlabs/Module/Setup.php:577 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "Consulta install/INSTALL.txt per a més informació." + +#: ../../Zotlabs/Module/Setup.php:593 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "Aquest software fa servir el motor de plantilles Smarty3 per a renderitzar les vistes web. Smarty3 compila plantilles a PHP per a agilitzar-ne el renderitzat." + +#: ../../Zotlabs/Module/Setup.php:594 +#, 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 permís d'escriptura en el directori %s sota la carpeta principal." + +#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 +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:596 +#, 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:599 +#, php-format +msgid "%s is writable" +msgstr "Es pot escriure a %s" + +#: ../../Zotlabs/Module/Setup.php:615 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level" +" web folder" +msgstr "Aquest software fa servir la carpeta \"store\" per a desar els arxius pujats. El servidor web necessita permís d'escriptura per a accedir-hi. Es troba a la carpeta arrel del servidor web." + +#: ../../Zotlabs/Module/Setup.php:619 +msgid "store is writable" +msgstr "Es pot escriure al magatzem (store)" + +#: ../../Zotlabs/Module/Setup.php:651 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "No s'ha pogut validar el certificat TLS. Arregla-ho o deshabilita l'accés https a aquest lloc." + +#: ../../Zotlabs/Module/Setup.php:652 +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 per 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:653 +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:654 +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 vàlid, 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:655 +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 vàlid és molt important." + +#: ../../Zotlabs/Module/Setup.php:656 +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:658 +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 "Si no tens cap dubte que el certificat és vàlid i signat per una autoritat de confiança, comprova si has instaŀlat malament un certificat intermedi. Tot i que els navegadors no en demanen, són necessaris per les connexions entre servidors." + +#: ../../Zotlabs/Module/Setup.php:660 +msgid "SSL certificate validation" +msgstr "Validació del certificat TLS" + +#: ../../Zotlabs/Module/Setup.php:666 +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:669 +msgid "Url rewrite is working" +msgstr "Es poden reescriure les URL a «.htaccess»" + +#: ../../Zotlabs/Module/Setup.php:683 +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. L'hauràs de modificar manualment amb el text de la caixa de text, i desar-lo a l'arrel del servidor web." + +#: ../../Zotlabs/Module/Setup.php:707 +#: ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "S'han produït errors en crear taules a la base de dades." + +#: ../../Zotlabs/Module/Setup.php:747 +msgid "

What next?

" +msgstr "

I ara què

" + +#: ../../Zotlabs/Module/Setup.php:748 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT! Cal que configuris manualment una execució periòdica de l'enquestador (poller en anglès)." + +#: ../../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ó dels canals prèmium" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Activa l'opció de restringir les connexions dels canals prèmium" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Si us plau, introdueix 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 "Les possibles connexions 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 per la persona propietària del canal.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal restringit o prèmium" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Estadístiques de la cua" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Total d'entrades" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Prioritat" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "Adreça URL de Destí" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Marca el node com a permanentment fora de línia" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Buida la cua per aquest node" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Últim contacte conegut" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "Off" +msgstr "No" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "On" +msgstr "Sí" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Bloqueja l'opció «%s»" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Gestiona les funcionalitats addicionals" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "S'ha marcat l'actualització com a exitosa" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ha fallat l'execució de %s. Comprova el registre del sistema." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "S'ha aplicat amb èxit l'actualització %s." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Es desconeix si l'actualització %s s'ha aplicat amb èxit, ja que no ha retornat cap resultat." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "No s'ha pogut trobar la funció d'actualització %s." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Actualitzacions fallides" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marca com a exitosa. Fes-ho només si l'actualització s'ha aplicat de forma manual i saps del cert que ha estat així." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Prova a fer automàticament aquesta actualització" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "No hi ha actualitzacions fallides." + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "S'ha [des]bloquejat %s compte" +msgstr[1] "S'han [des]bloquejat %s comptes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "S'ha esborrat el compte %s" +msgstr[1] "S'han esborrat %s comptes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "No s'ha trobat el compte" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2490 +#, php-format +msgid "Account '%s' deleted" +msgstr "S'ha esborrat el compte '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "S'ha bloquejat el compte '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "S'ha desbloquejat el compte '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Addons.php:341 +#: ../../Zotlabs/Module/Admin/Addons.php:436 +#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Administration" +msgstr "Administració" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "Comptes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "sel·leciona-ho tot" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "Inscripcions esperant confirmació" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "Data de la petició" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "Sense inscripcions." + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:735 +msgid "Approve" +msgstr "Aprova" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:26 +msgid "Deny" +msgstr "Denega" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "Bloqueja" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Unblock" +msgstr "Desbloqueja" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "Identificador" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "All Channels" +msgstr "Tots els canals" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "Data d'inscripció" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "Últim inici de sessió" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "Caduca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "Classe de servei" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "S'esborraran tots els comptes seleccionats!\\n\\nTot el que hagin publicat en aquest lloc també serà esborrat permanentment!\\n\\nN'estàs segur/a de continuar?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El compte {0} serà eliminat!\\n\\nTot el que hagi publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur/a?" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "S'ha actualitzat la configuració del registre." + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "Registre" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Neteja" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Depuració" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Arxiu de registre" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "El servidor web l'ha de poder modificar. Escriu la ruta relativa respecte a la carpeta arrel del servidor web." + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Nivell de registre" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canal censurat/no censurat" +msgstr[1] "S'han [des]censurat %s canals" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s codi permes/no permes al canal" +msgstr[1] "S'han [des]activat %s codis de canal" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canal esborrat" +msgstr[1] "S'han esborrat %s canals" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "No s'ha trobat el canal" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "S'ha esborrat el canal «%s»" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "S'ha censurat el canal «%s»" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "S'ha descensurat el canal «%s»" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "S'ha activat un codi pel canal «%s»" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "S'ha desactivat un codi pel canal «%s»" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:114 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "Canals" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Censura" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "Descensura" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Activa el codi" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Desactiva el codi" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1820 ../../include/nav.php:370 +msgid "Channel" +msgstr "Canal" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "Identificador" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Els canals seleccionats estan a punt de ser esborrats\\n\\nTotes les seves publicacions en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a? " + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El canal {0} està a punt de ser esborrat!\\n\\nTotes les seves publicacions d'aquest en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a?" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "S'ha actualitzat la configuració de tema." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "No s'ha trobat cap tema." + +#: ../../Zotlabs/Module/Admin/Themes.php:72 +#: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 +#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3566 +msgid "Item not found." +msgstr "No s'ha trobat l'element." + +#: ../../Zotlabs/Module/Admin/Themes.php:95 +#: ../../Zotlabs/Module/Admin/Addons.php:310 +msgid "Disable" +msgstr "Desactiva" + +#: ../../Zotlabs/Module/Admin/Themes.php:97 +#: ../../Zotlabs/Module/Admin/Addons.php:313 +msgid "Enable" +msgstr "Activa" + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "Temes" + +#: ../../Zotlabs/Module/Admin/Themes.php:124 +#: ../../Zotlabs/Module/Admin/Addons.php:343 +msgid "Toggle" +msgstr "Commuta'n l'estat" + +#: ../../Zotlabs/Module/Admin/Themes.php:125 +#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:304 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:99 +msgid "Settings" +msgstr "Configuració" + +#: ../../Zotlabs/Module/Admin/Themes.php:134 +#: ../../Zotlabs/Module/Admin/Addons.php:351 +msgid "Author: " +msgstr "Autor/a:" + +#: ../../Zotlabs/Module/Admin/Themes.php:135 +#: ../../Zotlabs/Module/Admin/Addons.php:352 +msgid "Maintainer: " +msgstr "Persona mantenidora:" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[Incompatible]" + +#: ../../Zotlabs/Module/Admin/Site.php:172 +msgid "Site settings updated." +msgstr "S'ha actualitzat la configuració del lloc" + +#: ../../Zotlabs/Module/Admin/Site.php:198 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3078 +msgid "Default" +msgstr "Predeterminat" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (Incompatible)" + +#: ../../Zotlabs/Module/Admin/Site.php:216 +msgid "mobile" +msgstr "mòbil" + +#: ../../Zotlabs/Module/Admin/Site.php:218 +msgid "experimental" +msgstr "experimental" + +#: ../../Zotlabs/Module/Admin/Site.php:220 +msgid "unsupported" +msgstr "incompatible" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "Yes - with approval" +msgstr "Sí - amb aprovació" + +#: ../../Zotlabs/Module/Admin/Site.php:273 +msgid "My site is not a public server" +msgstr "El meu node no es un servidor públic" + +#: ../../Zotlabs/Module/Admin/Site.php:274 +msgid "My site has paid access only" +msgstr "El meu node només ofereix accés de pagament" + +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "My site has free access only" +msgstr "El meu node només ofereix accés gratuït" + +#: ../../Zotlabs/Module/Admin/Site.php:276 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "El meu node ofereix comptes gratuïts i millores de pagament" + +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Beginner/Basic" +msgstr "Principiant/bàsica" + +#: ../../Zotlabs/Module/Admin/Site.php:289 +msgid "Novice - not skilled but willing to learn" +msgstr "Aprenent - amb poca experiència però amb ganes d'aprendre" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedi - còmode en entorns informàtics" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Advanced - very comfortable" +msgstr "Avançat - molt còmode en entorns informàtics" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Expert - I can write computer code" +msgstr "Expert - Sé programar" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Wizard - I probably know more than you do" +msgstr "Bruixot - Segurament en sé més que tu" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Default permission role for new accounts" +msgstr "Rol de permisos per defecte per als comptes nous." + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "S'aplicarà aquest rol al primer canal que es creï després del registre d'un compte." + +#: ../../Zotlabs/Module/Admin/Site.php:308 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "Node" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Register.php:278 +msgid "Registration" +msgstr "Inscripcions" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "File upload" +msgstr "Pujada d'arxius" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Policies" +msgstr "Polítiques" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avançat" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +#: ../../addon/statusnet/statusnet.php:891 +msgid "Site name" +msgstr "Nom del node" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Site default technical skill level" +msgstr "Nivell per defecte del lloc de competències tècniques" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Es fa servir per oferir una experiència ajustada al nivell tècnic de cadascú" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Lock the technical skill level setting" +msgstr "Bloqueja el paràmetre de nivell tècnic" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Members can set their own technical comfort level by default" +msgstr "Per defecte, els/les membres poden modificar el paràmetre de nivell tècnic" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Banner/Logo" +msgstr "Cartell i logotip" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Es permet contingut HTML, CSS i JS, sense filtrar" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Administrator Information" +msgstr "Informació de l'administració" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informació per contactar amb les persones administradores del node. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Siteinfo.php:24 +msgid "Site Information" +msgstr "Informació del node" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Descripció del node visible públicament. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode." + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "System language" +msgstr "Llengua del sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "System theme" +msgstr "Tema del sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema del sistema per defecte. Les persones usuàries poden sobreescriure'l a la configuració de perfil: canvia la configuració de tema" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Allow Feeds as Connections" +msgstr "Permet connectar-se a fluxos RSS" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "(Heavy system resource usage)" +msgstr "(Demana molts recursos de sistema)" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Maximum image size" +msgstr "Mida màxima d'imatge" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Mida màxima total per les imatges pujades, en bytes. Per defecte és 0, que vol dir iŀlimitada." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Does this site allow new member registration?" +msgstr "Aquest node està obert a la inscripció de nous membres?" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Invitation only" +msgstr "Només per invitació" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Només permet nous membres només a través d'invitacions. Perquè tingui efecte, les inscripcions han d'estar obertes a nous membres." + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Minimum age" +msgstr "Edat mínima" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Edat mínima en anys per a poder crear un compte en aquest lloc." + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Quina descripció s'acosta més al tipus de comptes oferts en aquest node?" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Register text" +msgstr "Text d'inscripció" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Will be displayed prominently on the registration page." +msgstr "Es mostrarà en gran a la pàgina d'inscripció" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'inici de sessió)" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "exemple: 'public' per a mostrar el flux públic, 'page/sys/home' per a mostrar una pàgina web de sistema de nom 'home', o 'include:home.html' per a incloure un arxiu." + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Preserve site homepage URL" +msgstr "Preserva l'adreça URL de la pàgina d'inici" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la pàgina d'inici del node en un marc en el lloc original enlloc de redirigir-hi" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Accounts abandoned after x days" +msgstr "Els comptes es consideren abandonats després de X dies" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Estalviarà recursos del sistema en no sondejar nodes externs per a comptes abandonats. Un 0 vol dir \"mai\"." + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "Allowed friend domains" +msgstr "Dominis amb permisos de connexió" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Llista separada per comes de dominis en els quals està permès establir relacions d'amistat amb aquest node. S'accepten comodins (*). Deixa-ho buit per a acceptar qualsevol domini" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Verify Email Addresses" +msgstr "Verifica les adreces de correu electrònic" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Activa per a comprovar l'adreça de correu emprada durant la inscripció d'un nou compte (recomanat)." + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Force publish" +msgstr "Força la publicació" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Activa per a forçar que tots el perfils en aquest node siguin llistats en el directori del lloc." + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Import Public Streams" +msgstr "Importar fluxos públics" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importa i permet l'accés a contingut públic sondejat d'altres llocs. Avís: aquest contingut no estarà moderat." + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Site only Public Streams" +msgstr "Fluxos públics només locals" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Permet accedir a aquell contingut públic que s'hagi originat en aquest lloc, suposant que no s'estan important fluxos públics d'altres nodes." + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Permet a qualsevol persona d'internet d'accedir els fluxos públics" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Desabilita-ho per a demanar iniciar sessió per poder-ho veure. Alerta: el contingut no estarà moderat." + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Only import Public stream posts with this text" +msgstr "Importa només entrades del flux públics que continguin aquest text" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:348 +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +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/Admin/Site.php:348 +msgid "Do not import Public stream posts with this text" +msgstr "No importes entrades del flux públic que continguin aquest text" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "Login on Homepage" +msgstr "Accés a la Pàgina d'inici" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut." + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Enable context help" +msgstr "Activar l'ajuda contextual" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Mostra l'ajuda contextual per la pàgina actual quan el botó d'ajuda es pressionat." + +#: ../../Zotlabs/Module/Admin/Site.php:354 +msgid "Reply-to email address for system generated email." +msgstr "Adreça de correu de resposta per als correus generats." + +#: ../../Zotlabs/Module/Admin/Site.php:355 +msgid "Sender (From) email address for system generated email." +msgstr "Adreça de correu de remitent per als correus generats." + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Name of email sender for system generated email." +msgstr "Nom visible de remitent per als correus generats." + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Directory Server URL" +msgstr "URL del Servidor de Directoris" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Default directory server" +msgstr "Servidor de directori per defecte" + +#: ../../Zotlabs/Module/Admin/Site.php:360 +msgid "Proxy user" +msgstr "Usuari Proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:361 +msgid "Proxy URL" +msgstr "URL del Proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:362 +msgid "Network timeout" +msgstr "Temps d'espera de la xarxa" + +#: ../../Zotlabs/Module/Admin/Site.php:362 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)" + +#: ../../Zotlabs/Module/Admin/Site.php:363 +msgid "Delivery interval" +msgstr "Interval de lliurament" + +#: ../../Zotlabs/Module/Admin/Site.php:363 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats." + +#: ../../Zotlabs/Module/Admin/Site.php:364 +msgid "Deliveries per process" +msgstr "Entregues per processar" + +#: ../../Zotlabs/Module/Admin/Site.php:364 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Nombre de entregues a intentar processar en un únic procèss del sistema operatiu. Ajustar si es necessari per millorar el rendiment. Es recomana: 1-5." + +#: ../../Zotlabs/Module/Admin/Site.php:365 +msgid "Queue Threshold" +msgstr "Llindar de la cua" + +#: ../../Zotlabs/Module/Admin/Site.php:365 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Posposa el lliurament immediat si la cua conté més d'aquest nombre d'entrades." + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "Poll interval" +msgstr "interval de sondeig" + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament." + +#: ../../Zotlabs/Module/Admin/Site.php:367 +msgid "Path to ImageMagick convert program" +msgstr "Ruta al programa de conversió d'imatges ImageMagick" + +#: ../../Zotlabs/Module/Admin/Site.php:367 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Si se n'indica la ruta, es farà servir aquest programa per a generar miniatures per a imatges enormes (més de 4000 píxels d'ample o alt). En cas contrari es pot esgotar la memòria del servidor. Ruta d'exemple: /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:368 +msgid "Allow SVG thumbnails in file browser" +msgstr "Permet miniatures en SVG a l'explorador de fitxers" + +#: ../../Zotlabs/Module/Admin/Site.php:368 +msgid "WARNING: SVG images may contain malicious code." +msgstr "Alerta: Les imatges SVG poden contenir codi maliciós." + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Maximum Load Average" +msgstr "Càrrega Mitja Màxima" + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte." + +#: ../../Zotlabs/Module/Admin/Site.php:370 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Període d'expiració en dies per contingut importat (malla/xarxa)" + +#: ../../Zotlabs/Module/Admin/Site.php:370 +msgid "0 for no expiration of imported content" +msgstr "0 vol dir sense temps d'expiració pel contingut importat" + +#: ../../Zotlabs/Module/Admin/Site.php:371 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "No facis caducar les entrades que tinguin comentaris més nous que aquest nombre de dies" + +#: ../../Zotlabs/Module/Admin/Site.php:373 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Servidors públics: Pàgina d'arribada promocional per a nous usuaris o usuàries." + +#: ../../Zotlabs/Module/Admin/Site.php:373 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Crea primer aquesta pàgina. Per defecte és %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:374 +msgid "Page to display after creating a new channel" +msgstr "Pàgina que es mostrarà després d'haver creat un canal nou" + +#: ../../Zotlabs/Module/Admin/Site.php:374 +msgid "Default: profiles" +msgstr "Per defecte: profiles" + +#: ../../Zotlabs/Module/Admin/Site.php:376 +msgid "Optional: site location" +msgstr "Opcional: ubicació del node" + +#: ../../Zotlabs/Module/Admin/Site.php:376 +msgid "Region or country" +msgstr "Regió o país" + +#: ../../Zotlabs/Module/Admin/Addons.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "S'ha desactivat l'extensió %s." + +#: ../../Zotlabs/Module/Admin/Addons.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "S'ha activat l'extensió %s." + +#: ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:437 ../../Zotlabs/Widget/Admin.php:27 +msgid "Addons" +msgstr "Extensions" + +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum project version: " +msgstr "Versió mínima del projecte:" + +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Maximum project version: " +msgstr "Versió màxima del projecte:" + +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Minimum PHP version: " +msgstr "Versió mínima de PHP:" + +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Compatible Server Roles: " +msgstr "Rols de servidor compatibles" + +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Requires: " +msgstr "Demana:" + +#: ../../Zotlabs/Module/Admin/Addons.php:358 +#: ../../Zotlabs/Module/Admin/Addons.php:442 +msgid "Disabled - version incompatibility" +msgstr "Desactivada - versions incompatibles" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "Enter the public git repository URL of the addon repo." +msgstr "Introdueix la URL del repositori git d'extensions. Ha de ser un repositori públic." + +#: ../../Zotlabs/Module/Admin/Addons.php:412 +msgid "Addon repo git URL" +msgstr "Adreça URL del repositori d'extensions." + +#: ../../Zotlabs/Module/Admin/Addons.php:413 +msgid "Custom repo name" +msgstr "Nom personalitzat pel repositori" + +#: ../../Zotlabs/Module/Admin/Addons.php:413 +msgid "(optional)" +msgstr "(opcional)" + +#: ../../Zotlabs/Module/Admin/Addons.php:414 +msgid "Download Addon Repo" +msgstr "Descarrega el repositori" + +#: ../../Zotlabs/Module/Admin/Addons.php:421 +msgid "Install new repo" +msgstr "Instal·la un nou repositori" + +#: ../../Zotlabs/Module/Admin/Addons.php:422 ../../Zotlabs/Lib/Apps.php:456 +msgid "Install" +msgstr "Instal·la" + +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Manage Repos" +msgstr "Gestiona els repositoris" + +#: ../../Zotlabs/Module/Admin/Addons.php:446 +msgid "Installed Addon Repositories" +msgstr "Repositoris instaŀlats" + +#: ../../Zotlabs/Module/Admin/Addons.php:447 +msgid "Install a New Addon Repository" +msgstr "Instal·la un nou repositori" + +#: ../../Zotlabs/Module/Admin/Addons.php:454 +msgid "Switch branch" +msgstr "Canvia de branca" + +#: ../../Zotlabs/Module/Admin/Addons.php:455 +#: ../../Zotlabs/Module/Photos.php:1025 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" +msgstr "Esborra" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Camp de Perfil Nou" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Àlies de Camp" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "nOM DEL SISTEMA DEL CAMP" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Tipus d'entrada" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Nom de Camp" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Etiqueta a les pàgines de perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Text d'ajuda" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Informació adicional (opcional)" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1063 +#: ../../include/text.php:1075 +msgid "Save" +msgstr "Guardar" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "No es troba la definició del camp" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Modifica el camp de perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "Camps del Perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Camps Bàsics del Perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Camps Avançats del Perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "( addicionalment als camps bàsics)" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Tots els camps disponibles" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "Camps Personalitzats" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Crear un Camp Personalitzat" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "S'ha modificat la contrasenya pel compte %d." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "S'han actualitzat els paràmetres del compte." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "No s'ha trobat el compte." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Edita el compte" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Introdueix la nova contrasenya" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Repeteix la nova contrasenya" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Nivell de competències tècniques" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Idioma pel compte (pels correus)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Classe de servei" + +#: ../../Zotlabs/Module/Admin/Security.php:83 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur." + +#: ../../Zotlabs/Module/Admin/Security.php:86 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:" + +#: ../../Zotlabs/Module/Admin/Security.php:87 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" + +#: ../../Zotlabs/Module/Admin/Security.php:88 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament." + +#: ../../Zotlabs/Module/Admin/Security.php:93 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "Seguretat" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block public" +msgstr "Bloca que sigui públic" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "activa per blocar l'accés a les pàgines personals públiques a tothom excepte aquells/es que s'hagin autenticat en aquest node." + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Provide a cloud root directory" +msgstr "Ofereix un directori arrel de núvols" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "EL directori arrel de núvols llista tots els canals que ofereixen fitxers públicament" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Show total disk space available to cloud uploads" +msgstr "Mostra l'espai disc disponible per a pujar arxius als núvols" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Set \"Transport Security\" HTTP header" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Set \"Content Security Policy\" HTTP header" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Allowed email domains" +msgstr "Dominis de correu electonic acceptats" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "llista separada per comes de dominis d'adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Not allowed email domains" +msgstr "Dominis de correu electrònic no acceptats" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "llista separada per comes de dominis d'adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats." + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Allow communications only from these sites" +msgstr "Permetre comunicacions únicament des de aquests llocs" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un lloc per línia. Deixar en blanc per permetre, per defecte, la comunicació amb tothom." + +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Block communications from these sites" +msgstr "Bloca comunicacions que venen d'aquests llocs" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Allow communications only from these channels" +msgstr "Permet la comunicació només per aquests canals" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (hash) per línia. Deixa en blanc per permetre, per defecte, la comunicació qualsevol canal." + +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Block communications from these channels" +msgstr "Bloca les comunicacions que venen d'aquests canals" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetre embeguts només de llocs web i enllaços segurs (SSL)." + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Permetre HTML embegut sense filtrar només d'aquests dominis." + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un lloc per línia. Per defecte el contingut embegut es filtrat." + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Block embedded HTML from these domains" +msgstr "Bloca HTML embegut d'aquests dominis" + +#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:120 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "Perfil" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "S'ha aprovat el comentari" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "S'ha esborrat el comentari" + +#: ../../Zotlabs/Module/Settings/Permcats.php:23 +msgid "Permission Name is required." +msgstr "Es necessita el nom del perfil." + +#: ../../Zotlabs/Module/Settings/Permcats.php:42 +msgid "Permission category saved." +msgstr "S'ha desat la categoria de permisos." + +#: ../../Zotlabs/Module/Settings/Permcats.php:66 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Pots crear regles de permisos segons classe de persona o de connexió." + +#: ../../Zotlabs/Module/Settings/Permcats.php:99 +#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 +msgid "Permission Categories" +msgstr "Categories de permisos" + +#: ../../Zotlabs/Module/Settings/Permcats.php:107 +msgid "Permission Name" +msgstr "Nom de permís" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +msgid "My Settings" +msgstr "La meva configuració" + +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +msgid "inherited" +msgstr "heretat" + +#: ../../Zotlabs/Module/Settings/Permcats.php:113 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +msgid "Individual Permissions" +msgstr "Permisos Individuals" + +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:894 +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 "Alguns permisos pot ser que vinguin heretats de la configuració de privacitat del teu canal. Aquesta té més prioritat que les configuracions individuals. No pots canviar aquests paràmetres aquí." + +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:73 +#: ../../Zotlabs/Module/Settings/Channel.php:76 +#: ../../Zotlabs/Module/Settings/Channel.php:87 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:437 +#: ../../include/channel.php:438 ../../include/channel.php:445 msgid "Friends" msgstr "Amics" -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "Coneguts" +#: ../../Zotlabs/Module/Settings/Channel.php:272 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 +#: ../../Zotlabs/Module/Settings/Channel.php:333 +msgid "Nobody except yourself" +msgstr "Ningú excepte tú" + +#: ../../Zotlabs/Module/Settings/Channel.php:334 +msgid "Only those you specifically allow" +msgstr "Només allò que específicament permetis" + +#: ../../Zotlabs/Module/Settings/Channel.php:335 +msgid "Approved connections" +msgstr "Connexions aprovades" + +#: ../../Zotlabs/Module/Settings/Channel.php:336 +msgid "Any connections" +msgstr "Qualsevol connexió" + +#: ../../Zotlabs/Module/Settings/Channel.php:337 +msgid "Anybody on this website" +msgstr "Qualsevol en aquest lloc" + +#: ../../Zotlabs/Module/Settings/Channel.php:338 +msgid "Anybody in this network" +msgstr "Qualsevol en aquesta xarxa" + +#: ../../Zotlabs/Module/Settings/Channel.php:339 +msgid "Anybody authenticated" +msgstr "Qualsevol autenticat" + +#: ../../Zotlabs/Module/Settings/Channel.php:340 +msgid "Anybody on the internet" +msgstr "Qualsevol a internet" + +#: ../../Zotlabs/Module/Settings/Channel.php:415 +msgid "Publish your default profile in the network directory" +msgstr "Publica el teu perfil per defecte al directori de la xarxa" + +#: ../../Zotlabs/Module/Settings/Channel.php:420 +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/Channel.php:424 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Settings/Channel.php:433 +msgid "Your channel address is" +msgstr "La teva adreça del canal es" + +#: ../../Zotlabs/Module/Settings/Channel.php:436 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "Les teves fotos i arxius estan disponibles mitjançant WebDAV a" + +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "Automatic membership approval" +msgstr "Acceptació automàtica de membres" + +#: ../../Zotlabs/Module/Settings/Channel.php:488 +#: ../../Zotlabs/Module/Defperms.php:239 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Si s'habilita, les soŀlicituds de connexió s'aprovaran automàticament sense requerir la teva interacció" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "Channel Settings" +msgstr "Configuració de canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Basic Settings" +msgstr "Configuració bàsica" + +#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../include/channel.php:1521 +msgid "Full Name:" +msgstr "Nom Complet:" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Adreça de E-Correu:" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Your Timezone:" +msgstr "La teva Franja Horària" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Default Post Location:" +msgstr "Localització Predeterminada de les Entrades:" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Geographical location to display on your posts" +msgstr "Posició geogràfica a mostrar a les teves entrades" + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Use Browser Location:" +msgstr "Empra la Localització del Navegador:" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "Adult Content" +msgstr "Contingut per a Adults" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +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/Channel.php:530 +msgid "Security and Privacy Settings" +msgstr "Configuració de seguretat i privacitat" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Els teus permisos estan configurats. Clic per veure/ajustar" + +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Hide my online presence" +msgstr "Amaga la meva presencia en línia" + +#: ../../Zotlabs/Module/Settings/Channel.php:534 +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/Channel.php:536 +msgid "Simple Privacy Settings:" +msgstr "Configuració simple de privacitat:" + +#: ../../Zotlabs/Module/Settings/Channel.php:537 +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/Channel.php:538 +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/Channel.php:539 +msgid "Private - default private, never open or public" +msgstr "Privat - privat per defecte, mai públic o obert" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloquejat - tothom bloquejat per defecte" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Allow others to tag your posts" +msgstr "Permet a altres etiquetar les teves entrades" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +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/Channel.php:544 +msgid "Channel Permission Limits" +msgstr "Límits dels permisos del canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Expire other channel content after this many days" +msgstr "El contingut d'altes canals caduca després d'aquests dies" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "0 or blank to use the website limit." +msgstr "0 o en blanc per emprar el limit del lloc web." + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +#, php-format +msgid "This website expires after %d days." +msgstr "Aquest lloc web expira després de %d dies." + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "This website does not expire imported content." +msgstr "A aquest lloc web no expira el contingut importat" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +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/Channel.php:547 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre màxim de peticions d'amistat per dia" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "May reduce spam activity" +msgstr "Pot reduir l'SPAM" + +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "Default Privacy Group" +msgstr "Grup de privacitat per defecte" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Use my default audience setting for the type of object published" +msgstr "Empra la meva configuració d'audiència que hagi triat per al tipus d'entrada" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "Profile to assign new connections" +msgstr "Perfil al qual assignar les connexions noves" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "Default Permissions Group" +msgstr "Grup de permisos per defecte" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Maximum private messages per day from unknown people:" +msgstr "Nombre màxim de missatges privats de desconeguts al dia:" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Useful to reduce spamming" +msgstr "Útil per a reduir l'spam" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Configuració de notificacions" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "By default post a status message when:" +msgstr "Per defecte envia un missatge d'estat quan:" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "accepting a friend request" +msgstr "S'accepta una sol·licitud d'amistat" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "joining a forum/community" +msgstr "Apuntar-se a un fòrum o comunitat" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "making an interesting profile change" +msgstr "Faci un canvi interesant al perfil" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Send a notification email when:" +msgstr "Notifica per correu quan:" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "You receive a connection request" +msgstr "Rebi una petició de connexió" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Your connections are confirmed" +msgstr "Es confirma una connexió" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Someone writes on your profile wall" +msgstr "Algú ha escrit al mur del teu perfil" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Someone writes a followup comment" +msgstr "Algú ha escrit un comentari de resposta" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "You receive a private message" +msgstr "Rebi un missatge privat" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "You receive a friend suggestion" +msgstr "Rebi una suggerència d'amistat" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "You are tagged in a post" +msgstr "Estàs etiquetat a l'entrada" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "You are poked/prodded/etc. in a post" +msgstr "S'enfoten/te piquen/etc. en una entrada" + +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "Someone likes your post/comment" +msgstr "A algú li ha agradat la teva entrada o comentari" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Show visual notifications including:" +msgstr "Mostra notificacion visuals, com ara:" + +#: ../../Zotlabs/Module/Settings/Channel.php:590 +msgid "Unseen grid activity" +msgstr "Activitat de malla no vista" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Unseen channel activity" +msgstr "Activitat no vista del canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Unseen private messages" +msgstr "Missatges privats no llegits" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:597 +#: ../../Zotlabs/Module/Settings/Channel.php:598 +#: ../../Zotlabs/Module/Settings/Channel.php:599 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "Recomanat" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Upcoming events" +msgstr "Esdeveniments propers" + +#: ../../Zotlabs/Module/Settings/Channel.php:594 +msgid "Events today" +msgstr "Esdeveniments d'avui" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Upcoming birthdays" +msgstr "Aniversaris propers" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Not available in all themes" +msgstr "No està disponible en tots els temes" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "System (personal) notifications" +msgstr "Notificacions (personals) del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "System info messages" +msgstr "Missatges d'informació del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:598 +msgid "System critical alerts" +msgstr "Alertes crítiques del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "New connections" +msgstr "Noves connexions" + +#: ../../Zotlabs/Module/Settings/Channel.php:600 +msgid "System Registrations" +msgstr "Inscripcions del Sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Unseen shared files" +msgstr "Fitxers compartits nous" + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Unseen public activity" +msgstr "Activitat pública nova" + +#: ../../Zotlabs/Module/Settings/Channel.php:603 +msgid "Unseen likes and dislikes" +msgstr "\"M'agrada\" i \"no m'agrada\" pendents" + +#: ../../Zotlabs/Module/Settings/Channel.php:604 +msgid "Unseen forum posts" +msgstr "Entrades de fòrum no llegides" + +#: ../../Zotlabs/Module/Settings/Channel.php:605 +msgid "Email notification hub (hostname)" +msgstr "Hub per a notificacions per correu (nom de domini)" + +#: ../../Zotlabs/Module/Settings/Channel.php:605 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "En cas que el teu canal estigui repicat en diversos hubs, habilita aquesta opció al teu hub preferit. Això evita notificacions duplicades. Exemple: %s" + +#: ../../Zotlabs/Module/Settings/Channel.php:606 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "Mostra totes les novetats d'entrades de mur, missatges privats i connexions a Notícies" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +msgid "Notify me of events this many days in advance" +msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +msgid "Must be greater than 0" +msgstr "Ha de ser més gran que 0" + +#: ../../Zotlabs/Module/Settings/Channel.php:614 +msgid "Advanced Account/Page Type Settings" +msgstr "Configuració avançada de compte i de tipus de pàgina" + +#: ../../Zotlabs/Module/Settings/Channel.php:615 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica el comportament d'aquest compte en situacions especials" + +#: ../../Zotlabs/Module/Settings/Channel.php:617 +msgid "Miscellaneous Settings" +msgstr "Configuració diversa" + +#: ../../Zotlabs/Module/Settings/Channel.php:618 +msgid "Default photo upload folder" +msgstr "Carpeta per defecte de fotos pujades" + +#: ../../Zotlabs/Module/Settings/Channel.php:618 +#: ../../Zotlabs/Module/Settings/Channel.php:619 +msgid "%Y - current year, %m - current month" +msgstr "%Y - any en curs, %m - mes corrent" + +#: ../../Zotlabs/Module/Settings/Channel.php:619 +msgid "Default file upload folder" +msgstr "Carpeta per defecte d'arxius pujats" + +#: ../../Zotlabs/Module/Settings/Channel.php:621 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal per mostrar en les teves pàgines de canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:623 +msgid "Remove this channel." +msgstr "Elimina aquest canal." + +#: ../../Zotlabs/Module/Settings/Channel.php:624 +msgid "Firefox Share $Projectname provider" +msgstr "Firefox Share $Projectname provider" + +#: ../../Zotlabs/Module/Settings/Channel.php:625 +msgid "Start calendar week on Monday" +msgstr "Comença la setmana en dilluns" + +#: ../../Zotlabs/Module/Settings/Features.php:73 +msgid "Additional Features" +msgstr "Característiques Addicionals" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "El teu nivell tècnic" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Es fa servir per a oferir-te una experiència i un seguit de funcionalitats addicionals d'acord amb la complexitat que desitgis." + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Aquest canal té un límit de %d tokens" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "El nom i la contrasenya són necessaris." + +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "S'ha desat el token." + +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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 private content." +msgstr "Fes servir aquest formulari per a crear identificadors d'accés temporal per tal de compartir coses amb persones no membres. Aquestes identitats són reconegudes a \"Control d'accés\" i poden ser usades per iniciar sessió i accedir a contingut privat." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +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 "Si vols donar enllaços que no requereixin dos passos, pots afegir la contrasenya d'accés a la URL per compartir. Per exemple:" + +#: ../../Zotlabs/Module/Settings/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:100 +msgid "Guest Access Tokens" +msgstr "Tokens d'accés de convidat" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nom d'usuari" + +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Contrasenya d'usuari" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Data de caducitat (aaaa-mm-dd)" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "Their Settings" +msgstr "La seva configuració" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:36 +msgid "Name and Secret are required" +msgstr "Es necessiten el nom i el secret" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:84 +msgid "Add OAuth2 application" +msgstr "Afegeix una aplicació OAuth2" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +msgid "Name of application" +msgstr "Nom de l'aplicatiu" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Redirect" +msgstr "Redirecciona" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +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/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "Grant Types" +msgstr "Tipus de permís" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:91 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +#: ../../Zotlabs/Module/Settings/Oauth2.php:119 +msgid "leave blank unless your application sepcifically requires this" +msgstr "deixa-ho en blanc si no és que la teva aplicació ho demana explícitament" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:91 +#: ../../Zotlabs/Module/Settings/Oauth2.php:119 +msgid "Authorization scope" +msgstr "Àmbit d'autorització" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:103 +msgid "OAuth2 Application not found." +msgstr "No s'ha trobat l'aplicació OAuth2." + +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth2.php:149 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +msgid "Add application" +msgstr "Afegir aplicatiu" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:148 +msgid "Connected OAuth2 Apps" +msgstr "Aplicacions OAuth2 connectades" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:152 +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "Client key starts with" +msgstr "La clau del client comença amb" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:153 +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "No name" +msgstr "Sin nombre" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:154 +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +msgid "Remove authorization" +msgstr "Elimina autorització" + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "E-correu no vàlid." + +#: ../../Zotlabs/Module/Settings/Account.php:23 +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/Account.php:32 +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/Account.php:40 +msgid "Technical skill level updated" +msgstr "S'ha actualitzat el nivell de competències tècniques" + +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "La verificació de la contrasenya ha fallat." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." + +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis." + +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Contrasenya canviada." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +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/Account.php:112 +msgid "Account Settings" +msgstr "Configuració del compte" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Contrasenya Actual" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Entra la Nova Contrasenya" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Confirma la Nova Contrasenya" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Deixa els camps de contrasenya en blanc llevat que la vulguis canviar" + +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Esborra el Compte" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Esborra aquest compte inclosos tots els seus canals" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "S'ha actualitzat la configuració de la barra d'afinitat" + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "No hi ha opcions de les funcions configurades" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "Nivell màxim d'afinitat predeterminat" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 (per defecte 99)" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "Nivell mínim d'afinitat predeterminat" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 (per defecte 0)" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "Configuració de la barra d'afinitat" + +#: ../../Zotlabs/Module/Settings/Featured.php:67 +msgid "Addon Settings" +msgstr "Configuració de les extensions" + +#: ../../Zotlabs/Module/Settings/Featured.php:68 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Desa els canvis en un panell abans d'obrir-ne un altre." + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Configuració de pantalla" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Configuració de tema" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Configuració de temes personalitzats" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Configuració dels continguts" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Tema de pantalla:" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Tria esquema" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Precarrega les imatges abans de dibuixar la pàgina" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +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/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom d'usuari en dispositius mòbils" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Actualitza el navegador cada xx segons" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínim de 10 segons, sense màxim" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum number of conversations to load at any time:" +msgstr "Nombre màxim de conversacions a càrregar cada vegada" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum of 100 items" +msgstr "Màxim de 100 elements" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra emoticons (smilies) com a imatges" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "Mostra el menú de canal a la barra de navegació" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "Per defecte, el menú de canal es troba al menú d'aplicacions" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "Actualitza les converses manualment" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "Per defecte està habilitada perquè evita que la pàgina salti cap avall en actualitzar-se." + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Enllaça a l'origen els títols de l'entrada" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de dissenys de pàgines de sistema (avançat)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Empra el mode blog/llista a la pàgina del canal" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(Observacions es mostren per separat)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +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/Display.php:212 +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/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "click to expand content exceeding this height" +msgstr "Clic per expandir el contingut que excedeixi aquesta alçada" + +#: ../../Zotlabs/Module/Settings/Display.php:213 +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/Oauth.php:35 +msgid "Name is required" +msgstr "Es requereix un Nom" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "Es requereix Clau (Key) i el Secret (Secret)" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "Icona de url" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 +msgid "Optional" +msgstr "Opcional" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "Aplicatiu no trobat." + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "Aplicatius Conectats" + +#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1355 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "Mostra la imatge" + +#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Photos.php:847 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "Modifica l'àlbum" + +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Photos.php:717 +#: ../../Zotlabs/Module/Profile_photo.php:459 +#: ../../Zotlabs/Module/Cover_photo.php:395 +#: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Cdav.php:133 +#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "Pujar" + +#: ../../Zotlabs/Module/Achievements.php:38 +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/Thing.php:120 +msgid "Thing updated" +msgstr "S'ha actualitzat la cosa" + +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" +msgstr "No s'ha pogut emmagatzemar l'objecte" + +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" +msgstr "S'ha afegit la cosa" + +#: ../../Zotlabs/Module/Thing.php:202 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" +msgstr "Mostra la cosa" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." +msgstr "no s'ha trobat l'element." + +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" +msgstr "Edita la cosa" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" +msgstr "Tria un perfil" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" +msgstr "Publica una activitat" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" +msgstr "S'envia només a visitants del perfil corresponent" + +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" +msgstr "Nom de la cosa. Exemple: patata" + +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" +msgstr "Adreça URL de la cosa (opcional)" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "Adreça URL de la foto d'una cosa (opcional)" + +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +#: ../../Zotlabs/Module/Photos.php:707 ../../Zotlabs/Module/Photos.php:1076 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:170 +#: ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "Permisos " + +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" +msgstr "Afegeix una cosa al teu perfil" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "No more system notifications." +msgstr "No hi ha més notificacions del sistema." + +#: ../../Zotlabs/Module/Notify.php:65 +#: ../../Zotlabs/Module/Notifications.php:59 +msgid "System Notifications" +msgstr "Notificacions del sistema" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "S'ha afegit la connexió." + +#: ../../Zotlabs/Module/Import.php:146 +#, 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:173 +msgid "No channel. Import failed." +msgstr "Sense canal. No s'ha pogut importar." + +#: ../../Zotlabs/Module/Import.php:513 +#: ../../addon/diaspora/import_diaspora.php:139 +msgid "Import completed." +msgstr "S'ha completat la importació." + +#: ../../Zotlabs/Module/Import.php:541 +msgid "You must be logged in to use this feature." +msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." + +#: ../../Zotlabs/Module/Import.php:546 +msgid "Import Channel" +msgstr "Importa un canal" + +#: ../../Zotlabs/Module/Import.php:547 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Empra aquest formulari per importar un canal existent en un altre servidor/concentrador. Pots recuperar el canal des de l'antic servidor/concentrador via la xarxa o mitjançant un fitxer d'exportació" + +#: ../../Zotlabs/Module/Import.php:549 +msgid "Or provide the old server/hub details" +msgstr "O proveeix els detalls de l'antic servidor/node" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "La teva adreça de correu electrònic antiga" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La teva contrasenya antiga" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Importa, si es possible, missatges de fa uns quants mesos (limitat per la memòria disponible) " + +#: ../../Zotlabs/Module/Import.php:556 +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/Import.php:558 +msgid "Make this hub my primary location" +msgstr "Fes d'aquest node la meva ubicació primària" + +#: ../../Zotlabs/Module/Import.php:559 +msgid "Move this channel (disable all previous locations)" +msgstr "Moure aquest canal (desactiva totes les prèvies localitzacions)" + +#: ../../Zotlabs/Module/Import.php:560 +msgid "Use this channel nickname instead of the one provided" +msgstr "Fes servir aquest nom de canal en comptes del que has facilitat" + +#: ../../Zotlabs/Module/Import.php:560 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this " +"site." +msgstr "Deixa-ho en blanc per a mantenir el teu nom de canal actual. Se t'assignarà un nom aleatori però similar a l'actual en cas que el nom actual ja estigui agafat en aquest node." + +#: ../../Zotlabs/Module/Import.php:562 +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/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Ha fallat l'autentificació." + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1614 +#: ../../include/channel.php:2334 +msgid "Remote Authentication" +msgstr "Autentificació Remota" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2335 +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:77 ../../include/channel.php:2336 +msgid "Authenticate" +msgstr "Autentica't" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permís denegat." + +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2482 +msgid "Import" +msgstr "Importar" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Autoritza la connexió de l'aplicació" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Torna a la teva aplicació i introdueix aquest codi de seguertat" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Si et plau, identifica't per continuar." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +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/Attach.php:13 +msgid "Item not available." +msgstr "Article no disponible." + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Editar Bloc" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "vcard (targeta estàndard de contacte)" + +#: ../../Zotlabs/Module/Apps.php:50 ../../Zotlabs/Lib/Apps.php:291 +msgid "Apps" +msgstr "Aplicatius" + +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage apps" +msgstr "Gestiona apps" + +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create new app" +msgstr "Crear una nova app" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 +#, 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:315 +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/Connections.php:55 +#: ../../Zotlabs/Module/Connections.php:112 +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Active" +msgstr "Actives" + +#: ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Blocked" +msgstr "Bloquejades" + +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Ignored" +msgstr "Ignorades" + +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:185 +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Hidden" +msgstr "Amagades" + +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Archived/Unreachable" +msgstr "Arxivades o inaccessibles" + +#: ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:179 +#: ../../Zotlabs/Module/Notifications.php:50 +#: ../../include/conversation.php:1726 +msgid "New" +msgstr "Nou" + +#: ../../Zotlabs/Module/Connections.php:94 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "Tots" -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "Refresc" +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" +msgstr "Connexions actives" -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "Ajustos de Compte" +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" +msgstr "Mostra les connexions actives" -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "Ajustos de Canal" +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "Noves Connexions" -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "Característiques addicionals" +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" +msgstr "Mostra les connexions pendents (noves)" -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "Ajustos de Característica/Afegit" +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Only show blocked connections" +msgstr "Mostra només les connexions bloquejades" -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "Ajustos de pantalla" +#: ../../Zotlabs/Module/Connections.php:174 +msgid "Only show ignored connections" +msgstr "Mostra només les connexions ignorades" -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "Apps connectades" +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show archived/unreachable connections" +msgstr "Mostra només les connexions arxivades o inaccessibles" -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "Exportat canal" +#: ../../Zotlabs/Module/Connections.php:188 +msgid "Only show hidden connections" +msgstr "Mostra només les connexions amagades" -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "Permisos per Defecte de la Connexió" +#: ../../Zotlabs/Module/Connections.php:203 +msgid "Show all connections" +msgstr "Mostra totes les connexions" -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "Ajustos Premium de Canal" +#: ../../Zotlabs/Module/Connections.php:257 +msgid "Pending approval" +msgstr "Pendent d'aprovació" -#: ../../include/widgets.php:548 ../../include/features.php:59 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Fonts del canal" +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Archived" +msgstr "Arxivades" -#: ../../include/widgets.php:569 ../../mod/mail.php:128 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Missatges" +#: ../../Zotlabs/Module/Connections.php:262 +msgid "Not connected at this location" +msgstr "No està connectada des d'aquest aquest hub" -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "Comprova el correu" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "Sales de xat" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "Sales de xat preferides" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "Sales de Xat Suggerides" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "foto/imatge" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "Valora'm" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "Mostra les valoracions" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "Concentradors Públics" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nova finestra" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del navegador" - -#: ../../include/Contact.php:212 +#: ../../Zotlabs/Module/Connections.php:279 #, php-format -msgid "User '%s' deleted" -msgstr "usuari '%s' esborrat" +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "No s'ha proporcionat bústia." +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Edit connection" +msgstr "Modifica la connexió" -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[no subject]" +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Delete connection" +msgstr "Elimina la connexió" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "incapaç de determinar el remitent" +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Channel address" +msgstr "Adreça del canal" -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "L'entrada guardada no pot ser verificada" +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Network" +msgstr "Xarxa" -#: ../../include/zot.php:685 -msgid "Invalid data packet" -msgstr "paquet de dades invàlid" +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Call" +msgstr "Crida" -#: ../../include/zot.php:701 -msgid "Unable to verify channel signature" -msgstr "No es pot verificar la signatura del canal" +#: ../../Zotlabs/Module/Connections.php:298 +msgid "Status" +msgstr "Estat" -#: ../../include/zot.php:2209 +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Connected" +msgstr "Connectat" + +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Approve connection" +msgstr "Aprovar la Connexió " + +#: ../../Zotlabs/Module/Connections.php:304 +msgid "Ignore connection" +msgstr "Ignorar connexió" + +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Ignore" +msgstr "Ignora" + +#: ../../Zotlabs/Module/Connections.php:306 +msgid "Recent activity" +msgstr "Activitat recent" + +#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:298 +#: ../../include/text.php:975 +msgid "Connections" +msgstr "Connexions" + +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Search your connections" +msgstr "Cerca entre les teves connexions" + +#: ../../Zotlabs/Module/Connections.php:337 +msgid "Connections search" +msgstr "Cerca connexions" + +#: ../../Zotlabs/Module/Connections.php:338 +#: ../../Zotlabs/Module/Directory.php:401 +#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Troba" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "element" + +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "S'ha afegit el marcador" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "Els meus marcadors" + +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "Els marcadors de les meves connexions" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "L'esborrat de comptes no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya." + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Esborra el compte" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa" + +#: ../../Zotlabs/Module/Photos.php:78 +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:94 ../../Zotlabs/Module/Photos.php:113 +msgid "Album not found." +msgstr "Àlbum no trobat" + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "Esborra Àlbum" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1088 +msgid "Delete Photo" +msgstr "Esborra Foto" + +#: ../../Zotlabs/Module/Photos.php:556 +msgid "No photos selected" +msgstr "No has seleccionat fotos" + +#: ../../Zotlabs/Module/Photos.php:605 +msgid "Access to this item is restricted." +msgstr "L'accés a aquest element esta restringit." + +#: ../../Zotlabs/Module/Photos.php:651 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "No es pot verificar la signatura del lloc per %s" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges." -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "ha creat una nova entrada" - -#: ../../include/notify.php:24 +#: ../../Zotlabs/Module/Photos.php:654 #, php-format -msgid "commented on %s's post" -msgstr "ha comentat l'entrada de %s" +msgid "%1$.2f MB photo storage used." +msgstr "S'estan fent servir %1$.2f MB de l'espai per a imatges." -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "Missatge Privat" +#: ../../Zotlabs/Module/Photos.php:696 +msgid "Upload Photos" +msgstr "Puja imatges" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "Selecciona" +#: ../../Zotlabs/Module/Photos.php:700 +msgid "Enter an album name" +msgstr "Escriu el nom del àlbum" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Guardar en la Carpeta" +#: ../../Zotlabs/Module/Photos.php:701 +msgid "or select an existing album (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Hi seré" +#: ../../Zotlabs/Module/Photos.php:702 +msgid "Create a status post for this upload" +msgstr "Genera una entrada a partir de la pujada" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "No hi seré" +#: ../../Zotlabs/Module/Photos.php:704 +msgid "Description (optional)" +msgstr "Descripció (opcional)" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Potser hi sóc" +#: ../../Zotlabs/Module/Photos.php:790 +msgid "Show Newest First" +msgstr "Ordena de més nou a més antic" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Hi estic a favor" +#: ../../Zotlabs/Module/Photos.php:792 +msgid "Show Oldest First" +msgstr "Ordena de més antic a més nou" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Hi estic en contra" +#: ../../Zotlabs/Module/Photos.php:849 ../../Zotlabs/Module/Photos.php:1386 +msgid "Add Photos" +msgstr "Afegeix fotos" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Voto en blanc" +#: ../../Zotlabs/Module/Photos.php:897 +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." -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "Mostra-ho tot" +#: ../../Zotlabs/Module/Photos.php:899 +msgid "Photo not available" +msgstr "La imatge no està disponible" -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1712 -#: ../../include/identity.php:1274 ../../include/taxonomy.php:396 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "M'agrada" -msgstr[1] "M'agrada" +#: ../../Zotlabs/Module/Photos.php:957 +msgid "Use as profile photo" +msgstr "Fes-la imatge de perfil" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No m'agrada" -msgstr[1] "No m'agrada" +#: ../../Zotlabs/Module/Photos.php:958 +msgid "Use as cover photo" +msgstr "Emprar com a foto de portada" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Marca'l com a preferit" +#: ../../Zotlabs/Module/Photos.php:965 +msgid "Private Photo" +msgstr "Imatge privada" -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Treu-lo de preferits" +#: ../../Zotlabs/Module/Photos.php:980 +msgid "View Full Size" +msgstr "Mostra a mida completa" -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Canvia el Estat de la Preferència" +#: ../../Zotlabs/Module/Photos.php:1062 +msgid "Edit photo" +msgstr "Modifica la imatge" -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "preferit" +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Rotate CW (right)" +msgstr "Tomba cap a la dreta" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "Validada la signatura del missatge" +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "Rotate CCW (left)" +msgstr "Tomba cap a l'esquerra" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "Signatura del missatge incorrecta" +#: ../../Zotlabs/Module/Photos.php:1068 +msgid "Move photo to album" +msgstr "Mou la foto a un àlbum" -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Afegeix Etiqueta" +#: ../../Zotlabs/Module/Photos.php:1069 +msgid "Enter a new album name" +msgstr "Escriu el nom del nou àlbum" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "or select an existing one (doubleclick)" +msgstr "o bé fes doble clic a un d'existent" + +#: ../../Zotlabs/Module/Photos.php:1075 +msgid "Add a Tag" +msgstr "Afegeix una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1083 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" + +#: ../../Zotlabs/Module/Photos.php:1086 +msgid "Flag as adult in album view" +msgstr "Marca com a contingut adult" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:285 msgid "I like this (toggle)" msgstr "M'agrada això (canvia)" -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "agrada" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 +#: ../../Zotlabs/Module/Photos.php:1106 ../../Zotlabs/Lib/ThreadItem.php:286 msgid "I don't like this (toggle)" msgstr "No m'agrada això (canvia)" -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 +#: ../../Zotlabs/Module/Photos.php:1108 ../../Zotlabs/Lib/ThreadItem.php:432 +#: ../../include/conversation.php:787 +msgid "Please wait" +msgstr "Si us plau, espera" + +#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Lib/ThreadItem.php:754 +msgid "This is you" +msgstr "Ets tú" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1244 +#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentari" + +#: ../../Zotlabs/Module/Photos.php:1142 ../../include/conversation.php:619 +msgctxt "title" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1142 ../../include/conversation.php:619 +msgctxt "title" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1143 ../../include/conversation.php:620 +msgctxt "title" +msgid "Agree" +msgstr "Acord" + +#: ../../Zotlabs/Module/Photos.php:1143 ../../include/conversation.php:620 +msgctxt "title" +msgid "Disagree" +msgstr "Desacord" + +#: ../../Zotlabs/Module/Photos.php:1143 ../../include/conversation.php:620 +msgctxt "title" +msgid "Abstain" +msgstr "Abstenirse" + +#: ../../Zotlabs/Module/Photos.php:1144 ../../include/conversation.php:621 +msgctxt "title" +msgid "Attending" +msgstr "Assistint" + +#: ../../Zotlabs/Module/Photos.php:1144 ../../include/conversation.php:621 +msgctxt "title" +msgid "Not attending" +msgstr "Desassistint" + +#: ../../Zotlabs/Module/Photos.php:1144 ../../include/conversation.php:621 +msgctxt "title" +msgid "Might attend" +msgstr "Podrien assistir" + +#: ../../Zotlabs/Module/Photos.php:1161 ../../Zotlabs/Module/Photos.php:1173 +#: ../../Zotlabs/Lib/ThreadItem.php:212 ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "View all" +msgstr "Veure tot" + +#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:216 +#: ../../include/conversation.php:1990 ../../include/channel.php:1539 +#: ../../include/taxonomy.php:661 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Agrada" +msgstr[1] "Agraden" + +#: ../../Zotlabs/Module/Photos.php:1170 ../../Zotlabs/Lib/ThreadItem.php:221 +#: ../../include/conversation.php:1993 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Desagrada" +msgstr[1] "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1270 +msgid "Photo Tools" +msgstr "Eines per Fotos" + +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "In This Photo:" +msgstr "Hi apareixen:" + +#: ../../Zotlabs/Module/Photos.php:1284 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1292 ../../Zotlabs/Lib/ThreadItem.php:420 +msgctxt "noun" +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +msgctxt "noun" +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Photos.php:1298 ../../Zotlabs/Lib/ThreadItem.php:426 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "Tanca" + +#: ../../Zotlabs/Module/Photos.php:1370 ../../Zotlabs/Module/Photos.php:1383 +#: ../../Zotlabs/Module/Photos.php:1384 ../../include/photos.php:668 +msgid "Recent Photos" +msgstr "Imatges recents" + +#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1293 +msgid "Profile Unavailable." +msgstr "El perfil no està disponible." + +#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:123 +msgid "Not found" +msgstr "No s'ha trobat" + +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:51 +#: ../../addon/cart/cart.php:1420 +#: ../../addon/cart/submodules/paypalbutton.php:481 +#: ../../addon/cart/manual_payments.php:62 +msgid "Invalid channel" +msgstr "El canal és invàlid" + +#: ../../Zotlabs/Module/Wiki.php:124 +msgid "Error retrieving wiki" +msgstr "S'ha produït un error en carregar la wiki" + +#: ../../Zotlabs/Module/Wiki.php:131 +msgid "Error creating zip file export folder" +msgstr "S'ha produït un error en crear la carpeta per al fitxer comprimit d'exportació" + +#: ../../Zotlabs/Module/Wiki.php:182 +msgid "Error downloading wiki: " +msgstr "S'ha produït un error en descarregar la wiki:" + +#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1937 +#: ../../include/nav.php:486 +msgid "Wikis" +msgstr "Wikis" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Download" +msgstr "Descarrega" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 +msgid "Create New" +msgstr "Crear Nou" + +#: ../../Zotlabs/Module/Wiki.php:207 +msgid "Wiki name" +msgstr "Nom de la wiki" + +#: ../../Zotlabs/Module/Wiki.php:208 +msgid "Content type" +msgstr "Llenguatge de formatació" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1886 +msgid "Markdown" +msgstr "Markdown" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1884 +msgid "BBcode" +msgstr "BBCode" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1887 +msgid "Text" +msgstr "Cap (text pla)" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:286 +msgid "Type" +msgstr "Tipus" + +#: ../../Zotlabs/Module/Wiki.php:211 +msgid "Any type" +msgstr "Qualsevol" + +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "Bloca el llenguatge de formatació" + +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Create a status post for this wiki" +msgstr "Crea una entrada d'estat per aquesta wiki" + +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "Canvia el nom de la wiki" + +#: ../../Zotlabs/Module/Wiki.php:262 +msgid "Wiki not found" +msgstr "No s'ha trobat la wiki" + +#: ../../Zotlabs/Module/Wiki.php:286 +msgid "Rename page" +msgstr "Canvia el nom de la pàgina" + +#: ../../Zotlabs/Module/Wiki.php:307 +msgid "Error retrieving page content" +msgstr "S'ha produït un error en carregar el contingut de la pàgina" + +#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +msgid "New page" +msgstr "Crea una pàgina nova" + +#: ../../Zotlabs/Module/Wiki.php:345 +msgid "Revision Comparison" +msgstr "Comparació de revisió" + +#: ../../Zotlabs/Module/Wiki.php:346 +msgid "Revert" +msgstr "Reverteix" + +#: ../../Zotlabs/Module/Wiki.php:353 +msgid "Short description of your changes (optional)" +msgstr "Descripció curta dels canvis (opcional)" + +#: ../../Zotlabs/Module/Wiki.php:362 +msgid "Source" +msgstr "Font" + +#: ../../Zotlabs/Module/Wiki.php:372 +msgid "New page name" +msgstr "Nou nom de pàgina" + +#: ../../Zotlabs/Module/Wiki.php:377 +msgid "Embed image from photo albums" +msgstr "Embeu una imatge dels àlbums de fotos" + +#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1396 +msgid "Embed an image from your albums" +msgstr "Embeu una imatge dels teus àlbums" + +#: ../../Zotlabs/Module/Wiki.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:400 +#: ../../include/conversation.php:1398 ../../include/conversation.php:1445 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:401 +#: ../../include/conversation.php:1327 +msgid "Choose images to embed" +msgstr "Tria una imatge per a embeure-la" + +#: ../../Zotlabs/Module/Wiki.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:402 +#: ../../include/conversation.php:1328 +msgid "Choose an album" +msgstr "Tria un àlbum" + +#: ../../Zotlabs/Module/Wiki.php:383 +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:403 +msgid "Choose a different album" +msgstr "Escull un àlbum diferent" + +#: ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:404 +#: ../../include/conversation.php:1330 +msgid "Error getting album list" +msgstr "Ha ocorregut un error quan treia la llista de àlbums" + +#: ../../Zotlabs/Module/Wiki.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:405 +#: ../../include/conversation.php:1331 +msgid "Error getting photo link" +msgstr "Ha ocorregut un error quan treia l'enllaç a la foto" + +#: ../../Zotlabs/Module/Wiki.php:386 +#: ../../Zotlabs/Module/Profile_photo.php:472 +#: ../../Zotlabs/Module/Cover_photo.php:406 +#: ../../include/conversation.php:1332 +msgid "Error getting album" +msgstr "Ha ocorregut un error treient l'àlbum" + +#: ../../Zotlabs/Module/Wiki.php:462 +msgid "Error creating wiki. Invalid name." +msgstr "S'ha produït un error en crear la wiki. El nom no és vàlid." + +#: ../../Zotlabs/Module/Wiki.php:469 +msgid "A wiki with this name already exists." +msgstr "Ja existeix una wiki amb aquest nom." + +#: ../../Zotlabs/Module/Wiki.php:482 +msgid "Wiki created, but error creating Home page." +msgstr "S'ha creat la wiki, però s'ha produït un error en crear-ne la pàgina principal." + +#: ../../Zotlabs/Module/Wiki.php:489 +msgid "Error creating wiki" +msgstr "S'ha produït un error en crear la wiki" + +#: ../../Zotlabs/Module/Wiki.php:512 +msgid "Error updating wiki. Invalid name." +msgstr "S'ha produït un error en actualitzar la wiki. El nom no és vàlid." + +#: ../../Zotlabs/Module/Wiki.php:532 +msgid "Error updating wiki" +msgstr "S'ha produït un error en actualitzar la wiki" + +#: ../../Zotlabs/Module/Wiki.php:547 +msgid "Wiki delete permission denied." +msgstr "No tens permís per a eliminar la wiki" + +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error deleting wiki" +msgstr "S'ha produït un error en eliminar la wiki" + +#: ../../Zotlabs/Module/Wiki.php:590 +msgid "New page created" +msgstr "S'ha desat la nova pàgina" + +#: ../../Zotlabs/Module/Wiki.php:711 +msgid "Cannot delete Home" +msgstr "No es pot esborrar la pàgina principal" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Current Revision" +msgstr "Revisió actual" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Selected Revision" +msgstr "Revisió seleccionada" + +#: ../../Zotlabs/Module/Wiki.php:825 +msgid "You must be authenticated." +msgstr "Has d'estar autenticat." + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "commuta el mode de pantalla completa" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "S'ha actualitzat el disseny." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Funcionalitat desactivada." + +#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripció de Pàgines" + +#: ../../Zotlabs/Module/Pdledit.php:68 +msgid "(modified)" +msgstr "(modificat)" + +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Reajustar" + +#: ../../Zotlabs/Module/Pdledit.php:85 +msgid "Layout not found." +msgstr "No s'ha trobat cap disseny de pàgina." + +#: ../../Zotlabs/Module/Pdledit.php:91 +msgid "Module Name:" +msgstr "Nom del mòdul:" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Ajuda per al disseny de pàgina" + +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Edit another layout" +msgstr "Modifica un altre disseny" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "System layout" +msgstr "Disseny del sistema" + +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:316 +#: ../../include/conversation.php:1097 +msgid "Poke" +msgstr "Esperonar" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Emprenyar algú" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "Esperonat/Picat" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "emprenyar, picar o fer altres coses a algú" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "Destinatari" + +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Tria que vols fer amb el destinatari" + +#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Fer aquesta entrada privada" + +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:57 +msgid "Image uploaded but image cropping failed." +msgstr "S'ha pujat la imatge però no s'ha pogut retallar." + +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +#: ../../include/photo/photo_driver.php:741 +msgid "Profile Photos" +msgstr "Fotos del Perfil" + +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:191 +msgid "Image resize failed." +msgstr "No s'ha pogut escalar la imatge." + +#: ../../Zotlabs/Module/Profile_photo.php:218 +#: ../../addon/openclipatar/openclipatar.php:298 +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:225 +#: ../../Zotlabs/Module/Cover_photo.php:205 ../../include/photos.php:196 +msgid "Unable to process image" +msgstr "incapaç de processar la imatge" + +#: ../../Zotlabs/Module/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:229 +msgid "Image upload failed." +msgstr "La pujada de la imatge va fracassar." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:246 +msgid "Unable to process image." +msgstr "Incapaç de processar l'imatge." + +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:339 +#: ../../Zotlabs/Module/Cover_photo.php:354 +msgid "Photo not available." +msgstr "Foto no disponible." + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" +msgstr "La teva foto de perfil predeterminada és pública i visible per a tothom. Les fotos de perfil dels perfils alternatius hereten els permisos del seu perfil." + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "La teva foto de perfil és pública i visible a tothom, i és probable que s'escampi per altres webs." + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:392 +msgid "Upload File:" +msgstr "Puja Arxiu:" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +#: ../../Zotlabs/Module/Cover_photo.php:393 +msgid "Select a profile:" +msgstr "Tria un perfil:" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use Photo for Profile" +msgstr "Fes servir la foto per al perfil" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Change Profile Photo" +msgstr "Canvia la imatge de perfil" + +#: ../../Zotlabs/Module/Profile_photo.php:459 +msgid "Use" +msgstr "Aplica" + +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Cover_photo.php:397 +#: ../../Zotlabs/Module/Cover_photo.php:398 +msgid "Use a photo from your albums" +msgstr "Agafa una foto dels àlbums" + +#: ../../Zotlabs/Module/Profile_photo.php:474 +#: ../../Zotlabs/Module/Cover_photo.php:409 +msgid "Select existing photo" +msgstr "Tria una foto existent" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:426 +msgid "Crop Image" +msgstr "Retalla Imatge" + +#: ../../Zotlabs/Module/Profile_photo.php:494 +#: ../../Zotlabs/Module/Cover_photo.php:427 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Si us plau, retalla la imatge per a una optima visualització" + +#: ../../Zotlabs/Module/Profile_photo.php:496 +#: ../../Zotlabs/Module/Cover_photo.php:429 +msgid "Done Editing" +msgstr "Edició Feta" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Absent" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "En connexió" + +#: ../../Zotlabs/Module/Item.php:194 +msgid "Unable to locate original post." +msgstr "No s'ha pogut trobar l'entrada original." + +#: ../../Zotlabs/Module/Item.php:477 +msgid "Empty post discarded." +msgstr "S'ha descartat l'entrada perquè no té contingut." + +#: ../../Zotlabs/Module/Item.php:864 +msgid "Duplicate post suppressed." +msgstr "Publicació duplicada s'ha suprimit." + +#: ../../Zotlabs/Module/Item.php:1009 +msgid "System error. Post not saved." +msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." + +#: ../../Zotlabs/Module/Item.php:1045 +msgid "Your comment is awaiting approval." +msgstr "El teu comentari encara no ha estat aprovat." + +#: ../../Zotlabs/Module/Item.php:1162 +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:1191 +#, 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:1198 +#, 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/Ping.php:332 +msgid "sent you a private message" +msgstr "Se t'ha enviat un missatge privat" + +#: ../../Zotlabs/Module/Ping.php:385 +msgid "added your channel" +msgstr "el teu canal s'ha afegit" + +#: ../../Zotlabs/Module/Ping.php:409 +msgid "requires approval" +msgstr "requereix aprovació" + +#: ../../Zotlabs/Module/Ping.php:419 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:437 +msgid "[today]" +msgstr "[avui]" + +#: ../../Zotlabs/Module/Ping.php:446 +msgid "posted an event" +msgstr "enviat un esdeveniment" + +#: ../../Zotlabs/Module/Ping.php:479 +msgid "shared a file with you" +msgstr "ha compartit un fitxer amb tu" + +#: ../../Zotlabs/Module/Ping.php:654 +msgid "Private forum" +msgstr "Fòrum privat" + +#: ../../Zotlabs/Module/Ping.php:654 +msgid "Public forum" +msgstr "Fòrum públic" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "Article invàlid." + +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 +#: ../../Zotlabs/Module/Display.php:175 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 +#: ../../include/help.php:81 +msgid "Page not found." +msgstr "Pàgina no trobada." + +#: ../../Zotlabs/Module/Page.php:173 +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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "No s'ha pogut accedir al llibre de contactes." + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "No s'ha trobat el perfil indicat." + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "S'ha actualitzat la connexió." + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "No s'ha pogut actualitzar el registre de connexió." + +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "Ara està conectat amb" + +#: ../../Zotlabs/Module/Connedit.php:427 +msgid "Could not access address book record." +msgstr "No puc accedir al registre del contacte" + +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Ha fallat la recàrrega - el canal es actualment inaccesible." + +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Unable to set address book parameters." +msgstr "No es poden ajustar els paràmetres dels contactes." + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Connection has been removed." +msgstr "S'han eliminat les conexions." + +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:309 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1037 ../../include/nav.php:108 +msgid "View Profile" +msgstr "Mostra el meu perfil" + +#: ../../Zotlabs/Module/Connedit.php:597 +#, php-format +msgid "View %s's profile" +msgstr "Mostra el perfil de %s" + +#: ../../Zotlabs/Module/Connedit.php:601 +msgid "Refresh Permissions" +msgstr "Recarrega els Permissos" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Obté els permisos actualitzats" + +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "Recarrega la foto" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "Demana la nova foto al servidor" + +#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1047 +msgid "Recent Activity" +msgstr "Activitat Recent" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Mostra les entrades i comentaris recents" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "Aquesta connexió està bloquejada!" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Inhabilita" + +#: ../../Zotlabs/Module/Connedit.php:633 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió" + +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "This connection is ignored!" +msgstr "Aquesta connexió es ignorada!" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Unarchive" +msgstr "Desarxiva" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Archive" +msgstr "Arxiva" + +#: ../../Zotlabs/Module/Connedit.php:641 +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:642 +msgid "This connection is archived!" +msgstr "Aquesta connexió està arxivada!" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Unhide" +msgstr "Mostra" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Hide" +msgstr "Amaga" + +#: ../../Zotlabs/Module/Connedit.php:649 +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:650 +msgid "This connection is hidden!" +msgstr "Aquesta connexió està amagada!" + +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Delete this connection" +msgstr "Elimina aquesta connexió" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "Obté la targeta de contacte Vcard" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "Obté la targeta de trucada electrònica d'aquesta connexió" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "Obrir, per defecte, la secció de Permisos Individuals" + +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "Afinitat" + +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "Obre per defecte la barra d'afinitat" + +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +msgid "Me" +msgstr "Jo" + +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +msgid "Family" +msgstr "Família" + +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +msgid "Acquaintances" +msgstr "Coneguts" + +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "Filtre" + +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "Obrir, per defecte, la secció de Filtres a Mida" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Approve this connection" +msgstr "Apccepta aquesta connexió" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Accept connection to allow communication" +msgstr "Accepta la connexió per permetre la comunicació" + +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Ajusta l'Afinitat" + +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Ajusta el Perfil" + +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Ajusta Afinitat i Perfil" + +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "Aquesta connexió no és accessible des d'aquest hub." + +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "Aquesta connexió no és accessibles des d'altres hubs del canal." + +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "La xarxa d'aquesta connexió no és compatible amb la independència de hub." + +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "Aquesta connexió no és accessible des d'aquest hub. La seva xarxa no és compatible amb la independència de hub." + +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Connection Default Permissions" +msgstr "Permisos per Defecte de la Connexió" + +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4158 +#, php-format +msgid "Connection: %s" +msgstr "Connexió: %s" + +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Aplica aquests permissos automaticament" + +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "Connection requests will be approved without your interaction" +msgstr "Les peticions de connexió seran aprovades sense la teva interacció" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "Permisos de rol" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "Afegir permisos de rol" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "La primera adreça d'aqueste connexió es" + +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Localització disponible:" + +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +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:867 +msgid "Connection Tools" +msgstr "Eines de Connexió" + +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Slide to adjust your degree of friendship" +msgstr "Llisca per ajustar el nivell d'amistat" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valora" + +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Llisca per ajustar la valoració" + +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Opcionalment pots explicar la teva valoració" + +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Filtre a mida" + +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "Importa exclusivament entrades amb aquest text" + +#: ../../Zotlabs/Module/Connedit.php:876 +msgid "Do not import posts with this text" +msgstr "No importar entrades amb aquest text" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "Aquesta informació es pública!" + +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Connexió Pendent d'Aprovació" + +#: ../../Zotlabs/Module/Connedit.php:888 +#, 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:895 +msgid "" +"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." +msgstr "Alguns permisos pot ser que vinguin heretats de la configuració de privacitat. del teu canal. Aquesta té més prioritat que les configuracions individuals. Pots canviar aquí aquests permisos però no tindran cap impacte mentre no canviï la configuració del teu canal." + +#: ../../Zotlabs/Module/Connedit.php:896 +msgid "Last update:" +msgstr "Darrera actualització:" + +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "Detalls" + +#: ../../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 "Desa aquesta sala" + +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1322 +msgid "Please enter a link URL:" +msgstr "Si us plau entra l'enllaç URL:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:771 +#: ../../include/conversation.php:1443 +msgid "Encrypt text" +msgstr "Text encriptat" + +#: ../../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:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$s de Xats" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "No hi ha sales de xat disponibles" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Expiració" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:310 +#: ../../include/conversation.php:1843 ../../include/nav.php:393 +msgid "Photos" +msgstr "Fotos" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:305 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1851 +#: ../../include/nav.php:401 +msgid "Files" +msgstr "Arxius" + +#: ../../Zotlabs/Module/Menu.php:67 +msgid "Unable to update menu." +msgstr "No s'ha pogut actualitzar el menú." + +#: ../../Zotlabs/Module/Menu.php:78 +msgid "Unable to create menu." +msgstr "No s'ha pogut crear el menú." + +#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 +msgid "Menu Name" +msgstr "Nom del menú" + +#: ../../Zotlabs/Module/Menu.php:160 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nom únic (no visible a la pàgina web) - requerit" + +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:161 +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:162 +msgid "Allow Bookmarks" +msgstr "Activa els marcadors" + +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú es pot emprar per a desar marcadors" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 +msgid "Submit and proceed" +msgstr "Envia i procedeix" + +#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2459 +msgid "Menus" +msgstr "Menús" + +#: ../../Zotlabs/Module/Menu.php:180 +msgid "Bookmarks allowed" +msgstr "Marcadors permesos" + +#: ../../Zotlabs/Module/Menu.php:182 +msgid "Delete this menu" +msgstr "Esborra el menú" + +#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 +msgid "Edit menu contents" +msgstr "Edita el contingut del menú" + +#: ../../Zotlabs/Module/Menu.php:184 +msgid "Edit this menu" +msgstr "Edita el menú" + +#: ../../Zotlabs/Module/Menu.php:200 +msgid "Menu could not be deleted." +msgstr "El menu no es pot esborrar." + +#: ../../Zotlabs/Module/Menu.php:213 +msgid "Edit Menu" +msgstr "Edita Menú" + +#: ../../Zotlabs/Module/Menu.php:217 +msgid "Add or remove entries to this menu" +msgstr "Afegeix o esborra entrades a aquest menú" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Menu name" +msgstr "Nom del Menú" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Must be unique, only seen by you" +msgstr "Ha de ser únic, nomes vist per tú" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title" +msgstr "Títol del menú" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title as seen by others" +msgstr "Títol del menú vist pels altres" + +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Allow bookmarks" +msgstr "Activa els marcadors" + +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2460 +msgid "Layouts" +msgstr "Dissenys" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:313 +#: ../../include/nav.php:170 ../../include/nav.php:272 +#: ../../include/help.php:68 ../../include/help.php:74 +msgid "Help" +msgstr "Ajuda" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Pgina d'ajuda del llenguatge Comanche" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Descripció del disseny pàgina" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Descarrega l'arxiu PDL" + +#: ../../Zotlabs/Module/Cloud.php:129 +msgid "Please refresh page" +msgstr "Recarrega la pàgina" + +#: ../../Zotlabs/Module/Cloud.php:132 +msgid "Unknown error" +msgstr "S'ha produït un error desconegut" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Ha fallat la verificació del token." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Cal verificar el correu" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "S'ha enviat al teu correu (%s) un token de verificació. Introdueix-lo aquí per a completar la verificació del compte. Tingues en compte que el correu pot trigar uns minuts en arribar, i que hi ha proveïdors de correu que el classificaran com a correu brossa." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Torna a enviar el correu" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Token de validació" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "No s'ha trobat l'entrada" + +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 +#: ../../include/bbcode.php:354 +msgid "post" +msgstr "entrada" + +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2030 +msgid "comment" +msgstr "comentari" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetat %3$s de %2$s amb %4$s" + +#: ../../Zotlabs/Module/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 "Alerta: segons quines combinacions podrien deixar el teu canal inusable. No és recomanable canviar aquesta configuració si no ets sents còmode/ i segur/a de com fer servir aquesta funcionalitat." + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "Aprovació automàtica de soŀlicituds de connexió" + +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "El valor per defecte dels permisos individuals poden tenir valors per defecte segons el tipus de canal i les opcions de privacitat. Pot ser que no estiguis autoritzat/da a modificar-los." + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "No es coneix l'aplicació" + +#: ../../Zotlabs/Module/Authorize.php:22 +msgid "Authorize" +msgstr "Autoritza" + +#: ../../Zotlabs/Module/Authorize.php:23 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "Vols autoritzar l'aplicació %s a accedir a les dades del teu canal?" + +#: ../../Zotlabs/Module/Authorize.php:25 +msgid "Allow" +msgstr "Permet-ho" + +#: ../../Zotlabs/Module/Group.php:35 +msgid "Privacy group created." +msgstr "S'ha creat el grup de privacitat." + +#: ../../Zotlabs/Module/Group.php:38 +msgid "Could not create privacy group." +msgstr "No s'ha pogut crear el grup de privacitat." + +#: ../../Zotlabs/Module/Group.php:51 ../../Zotlabs/Module/Group.php:181 +#: ../../include/items.php:4125 +msgid "Privacy group not found." +msgstr "No s'ha trobat el grup de privacitat." + +#: ../../Zotlabs/Module/Group.php:67 +msgid "Privacy group updated." +msgstr "S'ha actualitzat el grup de privacitat." + +#: ../../Zotlabs/Module/Group.php:113 ../../Zotlabs/Module/Group.php:124 +#: ../../Zotlabs/Widget/Activity_filter.php:68 ../../include/features.php:221 +#: ../../include/nav.php:97 ../../include/group.php:320 +msgid "Privacy Groups" +msgstr "Grup de privacitat" + +#: ../../Zotlabs/Module/Group.php:114 +msgid "Add Group" +msgstr "Afegeix un grup" + +#: ../../Zotlabs/Module/Group.php:118 +msgid "Privacy group name" +msgstr "Nom del grup de privacitat" + +#: ../../Zotlabs/Module/Group.php:119 ../../Zotlabs/Module/Group.php:220 +msgid "Members are visible to other channels" +msgstr "Els membres son visibles en altres canals" + +#: ../../Zotlabs/Module/Group.php:126 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "Membres" + +#: ../../Zotlabs/Module/Group.php:151 +msgid "Privacy group removed." +msgstr "S'ha esborrat el grup de privacitat." + +#: ../../Zotlabs/Module/Group.php:153 +msgid "Unable to remove privacy group." +msgstr "No s'ha pogut esborrar el grup de privacitat." + +#: ../../Zotlabs/Module/Group.php:215 +#, php-format +msgid "Privacy Group: %s" +msgstr "Grup de privacitat: %s" + +#: ../../Zotlabs/Module/Group.php:217 +msgid "Privacy group name: " +msgstr "Nom del grup de privacitat:" + +#: ../../Zotlabs/Module/Group.php:222 +msgid "Delete Group" +msgstr "Esborra el grup" + +#: ../../Zotlabs/Module/Group.php:232 +msgid "Group members" +msgstr "Membres del grup" + +#: ../../Zotlabs/Module/Group.php:234 +msgid "Not in this group" +msgstr "No hi són al grup" + +#: ../../Zotlabs/Module/Group.php:266 +msgid "Click a channel to toggle membership" +msgstr "Fes clic a un canal per a ficar-lo o treure'l del grup" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Perfil no trobat." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminat." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Perfil-" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "Nou perfil creat." + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Perfil que no es pot clonar." + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Perfil que no es pot exportar." + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Es requereix el Nom del Perfil." + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "Estat Marital" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Company/a Romàntic" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "Agrada" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "Desagrada" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "Treball/Feina" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Religió" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Idees Polítiques" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "Gènere" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Preferència Sexual" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Pàgina Personal" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Interessos" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Perfil actualitzat." + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "Amaga dels curiosos la teva llista de connexions d'aquest perfil" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "Modifica els detalls de perfil" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "Mostra aquest perfil" + +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 +#: ../../include/channel.php:1319 +msgid "Edit visibility" +msgstr "Editar visibilitat" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "Eines per Perfils" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "Canviar la foto de portada" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 +msgid "Change profile photo" +msgstr "Canviar la foto del perfil" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "Crea un perfil nou amb aquesta configuració" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "Clonar aquest perfil" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "Elimina aquest perfil" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "Afegeix coses al perfil" + +#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1717 +msgid "Personal" +msgstr "Personal" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "Relació" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "Miscelania" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "Importa perfil des d'un arxiu" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "Exporta perfil a un arxiu" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "El teu gènere" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "Estat marital" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "Preferència sexual" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "Nom del perfil" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "Aquest es el teu perfil per defecte" + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "El teu nom complet" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "Títol/Descripció" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "Carrer" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "Població/Ciutat" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "Regió/Estat" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "Codi Postal" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "Qui (si es aplicable)" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Examples: cathy123, Cathy Williams, cathy@example.com" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "Des de (data)" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "Quelcom sobre tu" + +#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "URL de la pàgina d'inici" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "Ciutat Natal" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "Idees polítiques" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "Creences religioses" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "Paraules clau emprades en els llistats de directoris" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "Exemple: software de fotografia submarina" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "Interessos Musicals" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "Llibres, literatura" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "Televisió" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Pel·lícules/Dansa/Cultura/Entreteniment" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "Aficions/Interessos" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "Amor/Romace" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "Escola/Educació" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "Informació de contacte i xarxes socials" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "Els meus altres canals" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "Comunicacions" + +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 +msgid "Profile Image" +msgstr "Imatge del Perfil" + +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 +#: ../../include/nav.php:111 +msgid "Edit Profiles" +msgstr "Modifica els perfils" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Aquesta pàgina només és accessible per als membres del node." + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Benvingut/da" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Què t'agradaria fer?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Marca aquesta pàgina si vols tornar-hi en un futur" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Puja una imatge de perfil" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Puja una imatge de portada" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Modifica el teu perfil per defecte" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 +msgid "View friend suggestions" +msgstr "Mostra suggerències de connexions" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "Mostra el directori del canal" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Mostra o modifica la configuració del teu canal" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Mostra la documentació del projecte" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Ves a la pàgina del teu canal" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Mostra les teves connexions o afegeix-ne una de nova introduint la seva adreça a mà." + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Mostra el teu flux personal. Estarà buit mentre no et connectis amb ningú." + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Mostra el flux públic. Avís: aquest contingut no està moderat" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Enllaç de la pàgina" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Edita la Pàgina Web" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Crear un nou canal" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:302 +#: ../../include/nav.php:94 +msgid "Channel Manager" +msgstr "Gestor de canals" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Canal Actual" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "Canviar a un altre dels teus canals seleccionant-ho." + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "Canal per Defecte" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Estableix com a Predeterminat" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "%d missatges nous" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%d noves presentacions" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Canal Delegat" + +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 +#: ../../Zotlabs/Lib/Apps.php:293 ../../include/conversation.php:1902 +#: ../../include/features.php:123 ../../include/nav.php:450 +msgid "Cards" +msgstr "Targetes" + +#: ../../Zotlabs/Module/Cards.php:99 +msgid "Add Card" +msgstr "Afegeix una carta" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Aquest servidor de directori requereix un token de accès" + +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" +msgstr "Sobre aquest lloc web" + +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" +msgstr "Nom del lloc web" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" +msgstr "Administrador" + +#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:241 +msgid "Terms of Service" +msgstr "Condicions del Servei" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" +msgstr "Informació del programari i del projecte" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" +msgstr "Aquest lloc web funciona amb $Projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "Els serveis d'identitat i la federació i descentralització de la xarxa funcionen amb Zot" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "Altres protocols de transport federats:" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "Versió %s" + +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" +msgstr "Pàgina principal del projecte" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" +msgstr "Pàgina principal de desenvolupament" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "No valorat" + +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1087 +msgid "Ratings" +msgstr "Valoracions" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valoració:" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Lloc web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descripció:" + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Importa elements de pàgina web" + +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Importa la selecció" + +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Exporta elements de pàgina web" + +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "Exporta la selecció" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:306 +#: ../../include/conversation.php:1924 ../../include/nav.php:473 +msgid "Webpages" +msgstr "Pàgines web" + +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Accions" + +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Enllaç a Pàgina" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Títol de la pàgina" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "El tipus de fitxer és invàlid." + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Hi ha hagut un error descomprimint" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "El camí de carpeta és invàlid." + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "No s'ha detectat cap element de pàgina web." + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "S'ha completat la importació." + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "No es permet canviar el nom d'un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al que pertany." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 +#: ../../include/channel.php:599 +msgid "Reserved nickname. Please choose another." +msgstr "Àlies reservat. Tria un altre." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 +#: ../../include/channel.php:604 +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" + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Canvia el nom o adreça del canal" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "Es perdran totes les connexions amb xarxes externes!" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Adreça de canal nova" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Canvia el nom del canal" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "Article no editable" + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "Modifica l'entrada" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "Missatge invàlid." + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "sense resultats" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "sincronització del canal processada" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "Posat en cua" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "enviat" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "acceptat per entregar" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "actualitzat" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "actualització ignorada" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "permís denegat" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "Contenidor no trobat" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "Recupera el correu" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "rebut correu duplicat" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "correu entregat" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Informe de lliurament per %1$s" + +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Options" +msgstr "Opcions" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "Tornar a lliurar" + +#: ../../Zotlabs/Module/Sources.php:38 +msgid "Failed to create source. No channel selected." +msgstr "Error en crear l'origen. Cap canal seleccionat." + +#: ../../Zotlabs/Module/Sources.php:54 +msgid "Source created." +msgstr "Origen creat." + +#: ../../Zotlabs/Module/Sources.php:67 +msgid "Source updated." +msgstr "Origen actualitzat." + +#: ../../Zotlabs/Module/Sources.php:93 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:99 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 +msgid "Channel Sources" +msgstr "Canal Origen" + +#: ../../Zotlabs/Module/Sources.php:100 +msgid "Manage remote sources of content for your channel." +msgstr "Gestiona contingut per al teu canal d'origens remots" + +#: ../../Zotlabs/Module/Sources.php:101 ../../Zotlabs/Module/Sources.php:111 +msgid "New Source" +msgstr "Nou Origen" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:146 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa-ho tot o només allò seleccionat del següent canals, cap a aquest canal, i distribueix-lo d'acord a la configuració del teu canal." + +#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 +msgid "Only import content with these words (one per line)" +msgstr "Només importa contingut amb aquestes paraules (una per línia)" + +#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 +msgid "Leave blank to import all public content" +msgstr "Deixar en blanc per importar tot el contingut públic" + +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:153 +msgid "Channel Name" +msgstr "Nom del canal" + +#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Afegeix les següents categories d'entrades importades des d'aquest origen (separat per comes)" + +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +msgid "Resend posts with this channel as author" +msgstr "Reenvia les entrades que tinguin aquest canal com a autor/a" + +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +msgid "Copyrights may apply" +msgstr "Poden aplicar drets d'autor" + +#: ../../Zotlabs/Module/Sources.php:136 ../../Zotlabs/Module/Sources.php:166 +msgid "Source not found." +msgstr "No s'ha trobat la font." + +#: ../../Zotlabs/Module/Sources.php:143 +msgid "Edit Source" +msgstr "Edita la font" + +#: ../../Zotlabs/Module/Sources.php:144 +msgid "Delete Source" +msgstr "Esborra la font" + +#: ../../Zotlabs/Module/Sources.php:174 +msgid "Source removed" +msgstr "S'ha esborrat la font" + +#: ../../Zotlabs/Module/Sources.php:176 +msgid "Unable to remove source." +msgstr "No s'ha pogut esborrar la font." + +#: ../../Zotlabs/Module/Like.php:54 +msgid "Like/Dislike" +msgstr "M'agrada / No m'agrada" + +#: ../../Zotlabs/Module/Like.php:59 +msgid "This action is restricted to members." +msgstr "Aquesta acció està restringida als membres." + +#: ../../Zotlabs/Module/Like.php:60 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Entra amb la teva identitat $Projectname o registra't a $Projectname per continuar." + +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 +msgid "Invalid request." +msgstr "Sol·licitud invàlida." + +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 +msgid "channel" +msgstr "canal" + +#: ../../Zotlabs/Module/Like.php:150 +msgid "thing" +msgstr "cosa" + +#: ../../Zotlabs/Module/Like.php:196 +msgid "Channel unavailable." +msgstr "El canal està inactiu." + +#: ../../Zotlabs/Module/Like.php:244 +msgid "Previous action reversed." +msgstr "S'ha desfet l'acció anterior." + +#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1559 +#: ../../addon/pubcrawl/as.php:1544 ../../include/conversation.php:160 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s agrada %2$s de %3$s" + +#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1546 +#: ../../include/conversation.php:163 +#, 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:442 +#, 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:444 +#, 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:446 +#, 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:448 ../../addon/diaspora/Receiver.php:2102 +#, 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:450 ../../addon/diaspora/Receiver.php:2104 +#, 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:452 ../../addon/diaspora/Receiver.php:2106 +#, 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:564 +msgid "Action completed." +msgstr "S'ha completat l'acció." + +#: ../../Zotlabs/Module/Like.php:565 +msgid "Thank you." +msgstr "Gràcies." + +#: ../../Zotlabs/Module/Directory.php:106 +msgid "No default suggestions were found." +msgstr "No s'han trobat suggerències predefinides." + +#: ../../Zotlabs/Module/Directory.php:255 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoració" +msgstr[1] "%d valoracions" + +#: ../../Zotlabs/Module/Directory.php:266 +msgid "Gender: " +msgstr "Gènere:" + +#: ../../Zotlabs/Module/Directory.php:268 +msgid "Status: " +msgstr "Estatus:" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Homepage: " +msgstr "Pàgina Personal:" + +#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 +msgid "Age:" +msgstr "Edat:" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 +#: ../../include/event.php:54 ../../include/event.php:86 +msgid "Location:" +msgstr "Localització:" + +#: ../../Zotlabs/Module/Directory.php:330 +msgid "Description:" +msgstr "Descripció:" + +#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 +msgid "Hometown:" +msgstr "Ciutat Natal:" + +#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 +msgid "About:" +msgstr "Sobre:" + +#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1057 ../../include/channel.php:1376 +#: ../../include/connections.php:110 +msgid "Connect" +msgstr "Connecta " + +#: ../../Zotlabs/Module/Directory.php:339 +msgid "Public Forum:" +msgstr "Forum Públic:" + +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Keywords: " +msgstr "Paraules Clau:" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Don't suggest" +msgstr "No suggerir" + +#: ../../Zotlabs/Module/Directory.php:347 +msgid "Common connections (estimated):" +msgstr "Connexions en comú (aproximades):" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Global Directory" +msgstr "Directori Global" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Local Directory" +msgstr "Directori Local" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Finding:" +msgstr "Cercant:" + +#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canals Suggerits" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "next page" +msgstr "pàgina següent" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "previous page" +msgstr "pàgina anterior" + +#: ../../Zotlabs/Module/Directory.php:408 +msgid "Sort options" +msgstr "Opcions per ordenar" + +#: ../../Zotlabs/Module/Directory.php:409 +msgid "Alphabetic" +msgstr "Alfabètic" + +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Reverse Alphabetic" +msgstr "Alfabètic Invers" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Newest to Oldest" +msgstr "De més Nou a més Vell" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Oldest to Newest" +msgstr "De més Antic a més Nou" + +#: ../../Zotlabs/Module/Directory.php:429 +msgid "No entries (some entries may be hidden)." +msgstr "Sense entrades (algunes podrien estar amagades)." + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Cerca a xchan" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca a xchan començant per (o webbie)" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "Ignora/Amaga" + +#: ../../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/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "Incapaç de trobar el destinatari." + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "Incapaç de comunicar amb el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "No puc verificar el canal demanat." + +#: ../../Zotlabs/Module/Mail.php:105 +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:160 +msgid "Messages" +msgstr "Missatges" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "missatge" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Recupera el missatge." + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Conversació eliminada." + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expira YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "El canal demanat no hi es en questa xarxa" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Envia Missatge Privat" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "Per:" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Assumpte:" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +msgid "Attach file" +msgstr "Adjunta arxiu" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Envia" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1438 +msgid "Set expiration date" +msgstr "Ajusta la data d'expiració" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Elimina el missatge" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Informe d'entrega" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Recupera el missatge" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "El missatge s'ha recuperat." + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Conversació esborrada" + +#: ../../Zotlabs/Module/Mail.php:416 +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:420 +msgid "Send Reply" +msgstr "Envia Resposta" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "El teu missatge per %s (%s):" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "Nodes Públics" + +#: ../../Zotlabs/Module/Pubsites.php:27 +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:33 +msgid "Hub URL" +msgstr "URL del Node" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipus d'accés" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Condicions d'inscripció" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Estadístiques" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Programari" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Puntua" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:269 +msgid "webpage" +msgstr "pàgina web" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:275 +msgid "block" +msgstr "bloc" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:272 +msgid "layout" +msgstr "disposició" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:278 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "%s element instal·lat" + +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "%s instal·lació d'element va fallar" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Tria una carpeta d'interès" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Desa el marcadors" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del marcador" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introdueix el nom d'una carpeta de marcadors nova" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "Escriu el nom de la carpeta" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "o escull-ne una d'existent amb doble clic" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:162 +msgid "Save to Folder" +msgstr "Guardar en la Carpeta" + +#: ../../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/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà." + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Les contrasenyes no coincideixen." + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "S'ha registrat el compte amb èxit. Ara pots crear el teu primer canal..." + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrat amb èxit. Si et plau revisa el teu correu electrònic per a les instruccions de validació." + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "La teva inscripció esta pendent de validació pel propietari del lloc." + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "La teva inscripció no ha pogut ser processat. " + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "L'inscripció en aquest node està deshabilitat." + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "L'inscripció en aquest node es únicament per validació." + +#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 +msgid "Register at another affiliated hub." +msgstr "Inscripció en altre node afiliat" + +#: ../../Zotlabs/Module/Register.php:210 +msgid "Registration on this hub is by invitation only." +msgstr "El registre en aquest node funciona per invitació." + +#: ../../Zotlabs/Module/Register.php:221 +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à." + +#: ../../Zotlabs/Module/Register.php:247 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accepto el %s per a aquest lloc web" + +#: ../../Zotlabs/Module/Register.php:254 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "Tinc més de %s anys i accepto les %s" + +#: ../../Zotlabs/Module/Register.php:259 +msgid "Your email address" +msgstr "La teva adreça de correu electrónic" + +#: ../../Zotlabs/Module/Register.php:260 +msgid "Choose a password" +msgstr "Tria una contrasenya" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Please re-enter your password" +msgstr "Si et plau, re-entra la contrasenya" + +#: ../../Zotlabs/Module/Register.php:262 +msgid "Please enter your invitation code" +msgstr "Si et plau, introdueix el teu codi d'invitació" + +#: ../../Zotlabs/Module/Register.php:263 +msgid "Your Name" +msgstr "El teu nom" + +#: ../../Zotlabs/Module/Register.php:263 +msgid "Real names are preferred." +msgstr "Considera de fer servir el teu nom real." + +#: ../../Zotlabs/Module/Register.php:265 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "El teu àlies servirà per crear un nom fàcil per recordar l'adreça del canal. Per exemple, àlies%s" + +#: ../../Zotlabs/Module/Register.php:266 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges." + +#: ../../Zotlabs/Module/Register.php:267 +msgid "no" +msgstr "no" + +#: ../../Zotlabs/Module/Register.php:267 +msgid "yes" +msgstr "sí" + +#: ../../Zotlabs/Module/Register.php:294 ../../boot.php:1593 +#: ../../include/nav.php:158 +msgid "Register" +msgstr "Inscripció" + +#: ../../Zotlabs/Module/Register.php:295 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Aquest node demana que es verifiquin els comptes de correu. Un cop completat el formulari, comprova la teva safata d'entrada i segueix les instruccions que hi trobaràs." + +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Cover_photo.php:218 +msgid "Cover Photos" +msgstr "Fotos de Portada" + +#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4502 +msgid "female" +msgstr "femení" + +#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4503 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s actualitzà el seu %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4504 +msgid "male" +msgstr "masculí" + +#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4505 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s actualitzà el seu %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4507 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s actualitzà els seus %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2081 +msgid "cover photo" +msgstr "Foto de la portada" + +#: ../../Zotlabs/Module/Cover_photo.php:390 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "La teva foto de portada és pública i visible a tothom." + +#: ../../Zotlabs/Module/Cover_photo.php:394 +msgid "Change Cover Photo" +msgstr "Canvia la foto de portada" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Cerca de Documentació" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1833 +#: ../../include/nav.php:383 +msgid "About" +msgstr "El Meu Perfil" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "Administradors" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "Desenvolupadors" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "Tutorials" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "$Projectname Documentació" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "Continguts" + +#: ../../Zotlabs/Module/Display.php:394 +msgid "Article" +msgstr "Article" + +#: ../../Zotlabs/Module/Display.php:446 +msgid "Item has been removed." +msgstr "S'ha esborrat l'element." + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "S'ha tret l'etiqueta" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Elimina l'etiqueta d'element" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Tria l'etiqueta a eliminar:" + +#: ../../Zotlabs/Module/Network.php:116 +msgid "No such group" +msgstr "No existeix el grup" + +#: ../../Zotlabs/Module/Network.php:157 +msgid "No such channel" +msgstr "No existeix el canal" + +#: ../../Zotlabs/Module/Network.php:242 +msgid "Privacy group is empty" +msgstr "El grup de privacitat està buit" + +#: ../../Zotlabs/Module/Network.php:253 +msgid "Privacy group: " +msgstr "Grup de privacitat:" + +#: ../../Zotlabs/Module/Network.php:304 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "El canal no és vàlid." + +#: ../../Zotlabs/Module/Acl.php:359 +msgid "network" +msgstr "xarxa" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Benvingut a %s" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Permisos Denegats." + +#: ../../Zotlabs/Module/Filestorage.php:112 +msgid "File not found." +msgstr "Arxiu no torbat." + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Edit file permissions" +msgstr "Edita els permisos d'arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:177 +msgid "Set/edit permissions" +msgstr "Canvia/edita permisos" + +#: ../../Zotlabs/Module/Filestorage.php:178 +msgid "Include all files and sub folders" +msgstr "Inclou tots als arxius i subdirectoris" + +#: ../../Zotlabs/Module/Filestorage.php:179 +msgid "Return to file list" +msgstr "Tornar al llistat d'arxius" + +#: ../../Zotlabs/Module/Filestorage.php:181 +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:182 +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:184 +msgid "Share this file" +msgstr "Comparteix l'arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:185 +msgid "Show URL to this file" +msgstr "Mostra la URL d'aquest arxiu" + +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Storage/Browser.php:405 +msgid "Show in your contacts shared folder" +msgstr "Mostra les carpetes compartides dels teus contactes" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "No s'ha trobat el canal" + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "No hi ha connexions en comú." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Mostra les connexions en comú" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "S'ha tornat a enviar la verificació de orreu" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "No s'ha pogut tornar a enviar el correu de verificació." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Sense connexions." + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita el perfil [%s] de %s" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "Veure Connexions" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "Comptes bloquejats" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "Comptes caducats" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "Comptes a punt de caducar" + +#: ../../Zotlabs/Module/Admin.php:116 +msgid "Clones" +msgstr "Clons" + +#: ../../Zotlabs/Module/Admin.php:122 +msgid "Message queues" +msgstr "Cues de missatges" + +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "El teu programari cal que s'actualitzi" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Summary" +msgstr "Sumari" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered accounts" +msgstr "Comptes registrades" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Pending registrations" +msgstr "Comptes pendents d'inscripció" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Registered channels" +msgstr "Canals registrats" + +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Active addons" +msgstr "Extensions actives" + +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Version" +msgstr "Versió" + +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Repository version (master)" +msgstr "Versió (master) del repositori" + +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (dev)" +msgstr "Versió (desenvolupament) del repositori" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No s'han trobat restriccions de clase." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Lloc web:" + +#: ../../Zotlabs/Module/Rate.php:159 +#, 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:160 +msgid "Rating (this information is public)" +msgstr "Valoració (aquesta informació és pública)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Edita la targeta" + +#: ../../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:108 +#, php-format +msgid "Site Member (%s)" +msgstr "Lloc d'Usuari (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" + +#: ../../Zotlabs/Module/Lostpass.php:68 +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:91 ../../boot.php:1622 +msgid "Password Reset" +msgstr "Restabliment de contrasenya" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "S'ha restablert la vostra contrasenya." + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "La nova contrasenya és" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "Desa o copia la nova contrasenya, i després" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "fes clic aquí per iniciar sessió" + +#: ../../Zotlabs/Module/Lostpass.php:96 +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:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "La teva contrasenya a %s ha canviat" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "No recordes la contrasenya?" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "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:132 +msgid "Email Address" +msgstr "Adreça electrònica" + +#: ../../Zotlabs/Module/Notifications.php:60 +#: ../../Zotlabs/Lib/ThreadItem.php:413 +msgid "Mark all seen" +msgstr "Marca tot com ja vist" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "0. Bàsic, principiant" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "1. Novell - amb pocs coneixements però amb ganes d'aprendre" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "2. Intermedi - més o menys còmode" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "3. Avançat - molt còmode" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "4. Expert - puc escriure codi en algun llenguatge de programació" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "5. Ninja - probablement en sé més que tu" + +#: ../../Zotlabs/Lib/Apps.php:294 +msgid "Site Admin" +msgstr "Administració" + +#: ../../Zotlabs/Lib/Apps.php:295 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Informa d'errors" + +#: ../../Zotlabs/Lib/Apps.php:296 +msgid "View Bookmarks" +msgstr "Marcadors" + +#: ../../Zotlabs/Lib/Apps.php:297 +msgid "My Chatrooms" +msgstr "Les meves Sales de Xat" + +#: ../../Zotlabs/Lib/Apps.php:299 +msgid "Remote Diagnostics" +msgstr "Diagnòstics Remots" + +#: ../../Zotlabs/Lib/Apps.php:300 ../../include/features.php:435 +msgid "Suggest Channels" +msgstr "Suggerir Canals" + +#: ../../Zotlabs/Lib/Apps.php:301 ../../boot.php:1613 +#: ../../include/nav.php:120 ../../include/nav.php:124 +msgid "Login" +msgstr "Identifica't" + +#: ../../Zotlabs/Lib/Apps.php:303 +msgid "Activity" +msgstr "Activitat" + +#: ../../Zotlabs/Lib/Apps.php:307 ../../include/conversation.php:1940 +#: ../../include/features.php:96 ../../include/nav.php:489 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:308 +msgid "Channel Home" +msgstr "Canal Personal" + +#: ../../Zotlabs/Lib/Apps.php:311 ../../include/conversation.php:1862 +#: ../../include/conversation.php:1865 +msgid "Events" +msgstr "Esdeveniments" + +#: ../../Zotlabs/Lib/Apps.php:312 +msgid "Directory" +msgstr "Directori" + +#: ../../Zotlabs/Lib/Apps.php:314 +msgid "Mail" +msgstr "Correu" + +#: ../../Zotlabs/Lib/Apps.php:317 +msgid "Chat" +msgstr "Xerrar" + +#: ../../Zotlabs/Lib/Apps.php:319 +msgid "Probe" +msgstr "Sondeig" + +#: ../../Zotlabs/Lib/Apps.php:320 +msgid "Suggest" +msgstr "Suggeriment" + +#: ../../Zotlabs/Lib/Apps.php:321 +msgid "Random Channel" +msgstr "Canal Aleatori" + +#: ../../Zotlabs/Lib/Apps.php:322 +msgid "Invite" +msgstr "Convida" + +#: ../../Zotlabs/Lib/Apps.php:323 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "Funcionalitats" + +#: ../../Zotlabs/Lib/Apps.php:324 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Lib/Apps.php:325 +msgid "Post" +msgstr "Entrada" + +#: ../../Zotlabs/Lib/Apps.php:326 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "Foto del Perfil" + +#: ../../Zotlabs/Lib/Apps.php:473 +msgid "Purchase" +msgstr "Compra" + +#: ../../Zotlabs/Lib/Apps.php:477 +msgid "Undelete" +msgstr "Desfés l'operació d'esborrar" + +#: ../../Zotlabs/Lib/Apps.php:485 +msgid "Add to app-tray" +msgstr "Afegeix a la safata d'aplicacions" + +#: ../../Zotlabs/Lib/Apps.php:486 +msgid "Remove from app-tray" +msgstr "Esborra de la safata d'aplicacions" + +#: ../../Zotlabs/Lib/Apps.php:487 +msgid "Pin to navbar" +msgstr "Fixa a la barra de navegació" + +#: ../../Zotlabs/Lib/Apps.php:488 +msgid "Unpin from navbar" +msgstr "Treu de la barra de navegació" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "per defecte" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "seguidor" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "contribuïdor" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "publicador" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +msgid "(No Title)" +msgstr "(sense títol)" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +msgid "Wiki page create failed." +msgstr "No s'ha pogut crear la pàgina a la wiki." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +msgid "Wiki not found." +msgstr "No s'ha trobat la wiki." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:131 +msgid "Destination name already exists" +msgstr "El nom de destí ja existeix" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:163 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +msgid "Page not found" +msgstr "No s'ha trobat la pàgina" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +msgid "Error reading page content" +msgstr "S'ha produït un error en carregar el contingut de la pàgina" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:350 +#: ../../Zotlabs/Lib/NativeWikiPage.php:400 +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Error reading wiki" +msgstr "S'ha produït un error en carregar la wiki" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +msgid "Page update failed." +msgstr "No s'ha pogut actualitzar la pàgina." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +msgid "Nothing deleted" +msgstr "No s'ha esborrat res" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +msgid "Compare: object not found." +msgstr "S'ha produït un error en comparar la pàgina." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +msgid "Page updated" +msgstr "S'ha actualitzat la pàgina" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +msgid "Untitled" +msgstr "Sense títol" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +msgid "Wiki resource_id required for git commit" +msgstr "Per a fer el git commit cal el resource_id de la wiki" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "Missatge" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:746 +#: ../../include/bbcode.php:916 +msgid "Different viewers will see this text differently" +msgstr "Diferents observadors veuran aquest text de diferents formes" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "Visible per a la teva audiència " + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "Només jo" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "Públic" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "Ningú a la xarxa $Projectname" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "Qualsevol compte a %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "Qualsevol de les meves connexions" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "Només les connexions que permeto específicament" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Qualsevol persona autenticada (podria incloure als usuaris d'altres xarxes)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +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:150 +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:151 +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:152 +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:153 +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:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "Aquesta és la teva configuració per defecte per l'audiència de les teves pàgines web" + +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "Perdut el nom de la sala" + +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "Nom de la sala duplicat" + +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "Especificació de la sala invàlida." + +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "Sala no trobada." + +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "La sala es plena" + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "Notificació de $Projectname" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "Gràcies," + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Aquest correu ha estat enviat per %1$s a %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Per deixar de rebre aquests missatges, modifica la configuració de notificacions a %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Per deixar de rebre aquests missatges, modifica la teva %s." + +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Avís] S'ha rebut correu nou a %s" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s t'ha enviat un missatge privat a %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s t'ha enviat %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "un missatge privat" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Per favor, visita %s per a veure i/o respondre els teus missatges privats." + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "ha comentat" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "li ha agradat" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "no li ha agradat" + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]%5$s de %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]la teva %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Avís] S'ha moderat el comentari de %2$s a la conversa #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Avís] Comentari de %2$s a la conversa #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "%1$s ha comentat en una conversa que estàs seguint." + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Si us plau visita %s per veure i/o contestar a la conversa" + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "Vés a %s per a aprovar o rebutjar el comentari." + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "A %1$s li ha agradat [zrl=%2$s]la teva %3$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Avís] Un \"m'agrada\" a la conversa #%1$d de %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "A %1$s li ha agradat una conversa que has creat." + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Avís] %s ha penjat una entrada al teu mur" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha publicat al mur del teu perfil a %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$s ha publicat al [zrl=%2$s]teu mur[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Avís] %s t'ha etiquetat" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s t'ha etiquetat a %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s [zrl=%2$s]t'ha etiquetat[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Avís] %1$s t'ha fet un toc" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s t'ha fet un toc a %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl=%2$s]t'ha fet un toc[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Avís] %s t'ha etiquetat una entrada" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha etiquetat una entrada teva a %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$s ha etiquetat [zrl=%2$s]la teva entrada[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Avís] S'ha rebut una sol·licitud de connexió" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "Has rebut una soŀlicitud de connexió de '%1$s' a %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "Has rebut [zrl=%1$s]una soŀlicitud de connexió[/zrl] de %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Pots visitar el seu perfil a %s" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Si us plau, visita %s per aprovar o rebutjar la petició de connexió." + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Avís] S'ha rebut una suggerència d'amistat" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Has rebut una soŀlicitud d'amistat de '%1$s' a %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "" +"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "Has rebut [zrl=%1$s]una soŀlicitud d'amistat[/zrl] per a %2$s de part de %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "Nom:" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Per favor, visita %s per a aprovar o rebutjar la suggerencia." + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Avís]" + +#: ../../Zotlabs/Lib/Enotify.php:808 +msgid "created a new post" +msgstr "Creada una nova entrada" + +#: ../../Zotlabs/Lib/Enotify.php:809 +#, php-format +msgid "commented on %s's post" +msgstr "comentat a l'entrada de %s" + +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "ha editat una entrada amb data de %s" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "ha editat un comentari amb data de %s" + +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "S'ha actualitzat la wiki amb èxit" + +#: ../../Zotlabs/Lib/NativeWiki.php:205 +msgid "Wiki files deleted successfully" +msgstr "S'han esborrat els fitxers de la wiki amb èxit" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "Error d'Actualització a %s" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "L'actualització %s ha fallat. Mira el registre d'errors." + +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:700 +msgid "Private Message" +msgstr "Missatge Privat" + +#: ../../Zotlabs/Lib/ThreadItem.php:152 ../../Zotlabs/Storage/Browser.php:280 +msgid "Admin Delete" +msgstr "Esborrat amb privilegis d'administració" + +#: ../../Zotlabs/Lib/ThreadItem.php:158 ../../include/conversation.php:690 +msgid "Select" +msgstr "Selecciona" + +#: ../../Zotlabs/Lib/ThreadItem.php:183 +msgid "I will attend" +msgstr "Assistiré" + +#: ../../Zotlabs/Lib/ThreadItem.php:183 +msgid "I will not attend" +msgstr "No assistiré" + +#: ../../Zotlabs/Lib/ThreadItem.php:183 +msgid "I might attend" +msgstr "Podria assistir" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 +msgid "I agree" +msgstr "D'acord" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 +msgid "I disagree" +msgstr "En desacord" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 +msgid "I abstain" +msgstr "M'abstinc" + +#: ../../Zotlabs/Lib/ThreadItem.php:247 ../../include/conversation.php:695 +msgid "Toggle Star Status" +msgstr "Canvia el Estat de la Preferència" + +#: ../../Zotlabs/Lib/ThreadItem.php:258 ../../include/conversation.php:707 +msgid "Message signature validated" +msgstr "Validada la signatura del missatge" + +#: ../../Zotlabs/Lib/ThreadItem.php:259 ../../include/conversation.php:708 +msgid "Message signature incorrect" +msgstr "Signatura del missatge incorrecta" + +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Add Tag" +msgstr "Afegeix Etiqueta" + +#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../include/taxonomy.php:575 +msgid "like" +msgstr "agrada" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 ../../include/taxonomy.php:576 msgid "dislike" msgstr "desagrada" -#: ../../include/ItemObject.php:259 +#: ../../Zotlabs/Lib/ThreadItem.php:290 msgid "Share This" msgstr "Comparteix Això" -#: ../../include/ItemObject.php:259 +#: ../../Zotlabs/Lib/ThreadItem.php:290 msgid "share" msgstr "comparteix" -#: ../../include/ItemObject.php:277 +#: ../../Zotlabs/Lib/ThreadItem.php:299 +msgid "Delivery Report" +msgstr "Informe de Lliurament" + +#: ../../Zotlabs/Lib/ThreadItem.php:317 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commentari" msgstr[1] "%d commentaris" -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../Zotlabs/Lib/ThreadItem.php:348 #, php-format msgid "View %s's profile - %s" -msgstr "Veure %s de perfil - %s" +msgstr "Mostra el perfil de %s - %s" -#: ../../include/ItemObject.php:299 +#: ../../Zotlabs/Lib/ThreadItem.php:351 msgid "to" msgstr "a" -#: ../../include/ItemObject.php:300 +#: ../../Zotlabs/Lib/ThreadItem.php:352 msgid "via" msgstr "via" -#: ../../include/ItemObject.php:301 +#: ../../Zotlabs/Lib/ThreadItem.php:353 msgid "Wall-to-Wall" msgstr "Mur-a-Mur" -#: ../../include/ItemObject.php:302 +#: ../../Zotlabs/Lib/ThreadItem.php:354 msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur:" -#: ../../include/ItemObject.php:313 ../../include/conversation.php:727 +#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:766 #, php-format msgid "from %s" msgstr "De %s" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:730 +#: ../../Zotlabs/Lib/ThreadItem.php:370 ../../include/conversation.php:769 #, php-format msgid "last edited: %s" msgstr "últim editat: %s" -#: ../../include/ItemObject.php:317 ../../include/conversation.php:731 +#: ../../Zotlabs/Lib/ThreadItem.php:371 ../../include/conversation.php:770 #, php-format msgid "Expires: %s" msgstr "Expira: %s" -#: ../../include/ItemObject.php:338 -msgid "Save Bookmarks" -msgstr "Guarda Favorits" +#: ../../Zotlabs/Lib/ThreadItem.php:379 +msgid "Attend" +msgstr "Assistir-hi" -#: ../../include/ItemObject.php:339 +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Attendance Options" +msgstr "Opcions d'assistència" + +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Vote" +msgstr "Votar" + +#: ../../Zotlabs/Lib/ThreadItem.php:382 +msgid "Voting Options" +msgstr "Opcions de votació" + +#: ../../Zotlabs/Lib/ThreadItem.php:403 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "Desa els marcadors" + +#: ../../Zotlabs/Lib/ThreadItem.php:404 msgid "Add to Calendar" msgstr "Afegeix al Calendari" -#: ../../include/ItemObject.php:348 -msgid "Mark all seen" -msgstr "Marca tot com ja vist" +#: ../../Zotlabs/Lib/ThreadItem.php:431 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "Això només és una vista prèvia, no està desada" -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "M'agrada" +#: ../../Zotlabs/Lib/ThreadItem.php:463 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostra-ho tot" -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "No m'agrada" - -#: ../../include/ItemObject.php:360 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "Tanca" - -#: ../../include/ItemObject.php:365 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/mail.php:241 -#: ../../mod/mail.php:356 ../../mod/photos.php:962 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:123 -#: ../../mod/editwebpage.php:192 -msgid "Please wait" -msgstr "Si us plau, espera" - -#: ../../include/ItemObject.php:385 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] mostra-ho tot" - -#: ../../include/ItemObject.php:666 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "Ets tú" - -#: ../../include/ItemObject.php:668 ../../include/js_strings.php:6 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Comentari" - -#: ../../include/ItemObject.php:669 ../../include/js_strings.php:22 -#: ../../mod/mail.php:355 ../../mod/admin.php:453 ../../mod/admin.php:819 -#: ../../mod/admin.php:986 ../../mod/admin.php:1118 ../../mod/admin.php:1312 -#: ../../mod/admin.php:1397 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 -#: ../../mod/appman.php:99 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/poke.php:166 ../../mod/bulksetclose.php:24 ../../mod/poll.php:68 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:93 -#: ../../mod/profiles.php:667 ../../mod/connedit.php:704 -#: ../../mod/rate.php:167 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/import.php:592 ../../mod/invite.php:142 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/mitem.php:235 ../../mod/mood.php:134 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/xchan.php:11 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Desa" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1192 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:179 +#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1388 msgid "Bold" msgstr "Negreta" -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1193 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 -#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:180 +#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1389 msgid "Italic" msgstr "Italica" -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1194 -#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 -#: ../../mod/editpost.php:109 ../../mod/editwebpage.php:181 +#: ../../Zotlabs/Lib/ThreadItem.php:760 ../../include/conversation.php:1390 msgid "Underline" msgstr "Subratllat" -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1195 -#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 -#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:182 +#: ../../Zotlabs/Lib/ThreadItem.php:761 ../../include/conversation.php:1391 msgid "Quote" msgstr "Cometes" -#: ../../include/ItemObject.php:674 ../../include/conversation.php:1196 -#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 -#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:183 +#: ../../Zotlabs/Lib/ThreadItem.php:762 ../../include/conversation.php:1392 msgid "Code" msgstr "Codi" -#: ../../include/ItemObject.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:763 msgid "Image" msgstr "Imatge" -#: ../../include/ItemObject.php:676 +#: ../../Zotlabs/Lib/ThreadItem.php:764 ../../include/conversation.php:1393 +msgid "Attach/Upload file" +msgstr "Adjunta i puja un arxiu" + +#: ../../Zotlabs/Lib/ThreadItem.php:765 msgid "Insert Link" msgstr "Insereix Enllaç" -#: ../../include/ItemObject.php:677 +#: ../../Zotlabs/Lib/ThreadItem.php:766 msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:678 ../../include/conversation.php:1166 -#: ../../include/page_widgets.php:40 ../../mod/photos.php:982 -#: ../../mod/editblock.php:170 ../../mod/editpost.php:143 -#: ../../mod/editwebpage.php:214 ../../mod/events.php:690 -#: ../../mod/webpages.php:188 -msgid "Preview" -msgstr "Previsualitza" +#: ../../Zotlabs/Lib/ThreadItem.php:776 +msgid "Your full name (required)" +msgstr "Nom complet (obligatori)" -#: ../../include/ItemObject.php:681 ../../include/conversation.php:1247 -#: ../../mod/mail.php:247 ../../mod/mail.php:361 ../../mod/editpost.php:151 -msgid "Encrypt text" -msgstr "Text encriptat" +#: ../../Zotlabs/Lib/ThreadItem.php:777 +msgid "Your email address (required)" +msgstr "Adreça de correu (obligatòria)" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Adreça de correu electrònic no vàlida" +#: ../../Zotlabs/Lib/ThreadItem.php:778 +msgid "Your website URL (optional)" +msgstr "Adreça web (opcional)" -#: ../../include/account.php:29 -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" +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a nivell local. Si us plau, tanca la sessió i torna-ho a intentar." -#: ../../include/account.php:35 -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:67 -msgid "An invitation is required." -msgstr "Es requereix Invitació" - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "La invitació no ha pogut ser verificada" - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Entra la informació sol·licitada" - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "No s'ha pogut desar la informació del compte" - -#: ../../include/account.php:246 +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 #, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmació del registre de %s" +msgid "Welcome %s. Remote authentication successful." +msgstr "Benvingut %s. Autenticació remota reeixida." -#: ../../include/account.php:312 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 +msgid "parent" +msgstr "amunt" + +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2817 +msgid "Collection" +msgstr "Col·lecció" + +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Principal" + +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Llista d'Adreçes" + +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:412 +#: ../../include/nav.php:415 +msgid "Calendar" +msgstr "Calendari" + +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Programació de la bústia d'entrada" + +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Programació de la bústia de sortida" + +#: ../../Zotlabs/Storage/Browser.php:273 +msgid "Total" +msgstr "Total" + +#: ../../Zotlabs/Storage/Browser.php:275 +msgid "Shared" +msgstr "Compartit" + +#: ../../Zotlabs/Storage/Browser.php:277 +msgid "Add Files" +msgstr "Afegeix arxius" + +#: ../../Zotlabs/Storage/Browser.php:361 #, php-format -msgid "Registration request at %s" -msgstr "Sol·licitud de registre a %s" +msgid "You are using %1$s of your available file storage." +msgstr "Estàs emprant el %1$s de l'espai d'emmagatzematge disponible" -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "la teva contrasenya registrada" - -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../Zotlabs/Storage/Browser.php:366 #, php-format -msgid "Registration details for %s" -msgstr "Detalls del registre per %s" +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Estàs emprant %1$s de %2$s d'emmagatzematge d'arxius disponible.\n(%3$s%)" -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Compte aprovat." +#: ../../Zotlabs/Storage/Browser.php:377 +msgid "WARNING:" +msgstr "ALERTA:" -#: ../../include/account.php:447 +#: ../../Zotlabs/Storage/Browser.php:389 +msgid "Create new folder" +msgstr "Crea una nova carpeta" + +#: ../../Zotlabs/Storage/Browser.php:391 +msgid "Upload file" +msgstr "Puja arxiu" + +#: ../../Zotlabs/Storage/Browser.php:404 +msgid "Drop files here to immediately upload" +msgstr "Deixa anar fitxers aquí per a pujar-los immediatament" + +#: ../../Zotlabs/Widget/Forums.php:100 +#: ../../Zotlabs/Widget/Activity_filter.php:100 +#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:120 +msgid "Forums" +msgstr "Forums" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "Escull canal" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "Llegir i escriure" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "Només lectura" + +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "Els meus calendaris" + +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "Calendaris compartits" + +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "Comparteix aquest calendari" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "Nom i color del calendari" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "Crea un nou calendari" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "Nom del calendari" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "Eines de calendari" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "Importa un calendari" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "Escull el calendari a on importar" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "Llibretes d'adreces" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "Nom de llibreta d'adreces" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "Crea una nova llibreta d'adreces" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "Nom de llibreta d'adreces" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "Eines de llibreta d'adreces" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "Importa una llibreta d'adreces" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "Escull la llibreta d'adreces a on importar" + +#: ../../Zotlabs/Widget/Appcategories.php:43 +#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 +#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 +msgid "Categories" +msgstr "Categories" + +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +#: ../../widgets/Netselect/Netselect.php:26 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +msgid "Everything" +msgstr "Tot" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Eina d'Esdeveniments" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Exportar Calendari" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Importar Calendari" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Sales de Xat Suggerides" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "Panell de control" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "Crea una nova entrada" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Menú de Correu Privat" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Vista Combinada" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Safata de sortida" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Nou Missatge" + +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1876 ../../include/conversation.php:1879 +#: ../../include/nav.php:426 ../../include/nav.php:429 +msgid "Chatrooms" +msgstr "Sala per Xerrar" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Visió General" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Eines de Valoració" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "Valora'm" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Veure Valoracions" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Activitat" + +#: ../../Zotlabs/Widget/Activity_filter.php:24 +msgid "Personal Posts" +msgstr "Entrades personals" + +#: ../../Zotlabs/Widget/Activity_filter.php:28 +msgid "Show posts that mention or involve me" +msgstr "Mostra les entrades que m'inclouen" + +#: ../../Zotlabs/Widget/Activity_filter.php:39 +msgid "Starred Posts" +msgstr "Entrades destacades" + +#: ../../Zotlabs/Widget/Activity_filter.php:43 +msgid "Show posts that I have starred" +msgstr "Mostra les entrades que he destacat" + +#: ../../Zotlabs/Widget/Activity_filter.php:63 #, php-format -msgid "Registration revoked for %s" -msgstr "S'ha revocat el registre de %s" +msgid "Show posts related to the %s privacy group" +msgstr "Mostra les entrades relacionades amb el grup de privacitat %s" -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "S'ha verificat el compte. Inicia la sessió per continuar." +#: ../../Zotlabs/Widget/Activity_filter.php:72 +msgid "Show my privacy groups" +msgstr "Mostra els meus grups de privacitat" -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Feu clic aquí per actualitzar." +#: ../../Zotlabs/Widget/Activity_filter.php:93 +msgid "Show posts to this forum" +msgstr "Mostra les entrades a aquest fòrum" -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Aquesta acció sobrepassa els límits establerts pel seu pla de subscripció." +#: ../../Zotlabs/Widget/Activity_filter.php:104 +msgid "Show forums" +msgstr "Mostra els fòrums" -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Aquesta acció no està disponible en el seu pla de subscripció." - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Contingut embegut" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Incorporació desactivada" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Visible per a la teva audiència " - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:571 -#: ../../mod/photos.php:934 ../../mod/chat.php:209 ../../mod/events.php:691 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "Permisos " - -#: ../../include/activities.php:39 -msgid " and " -msgstr "i" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "Perfil públic" - -#: ../../include/activities.php:56 +#: ../../Zotlabs/Widget/Activity_filter.php:128 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s canviat %2$s a “%3$s”" +msgid "Show posts that I have filed to %s" +msgstr "Mostra les entrades que he penjat a %s" -#: ../../include/activities.php:57 +#: ../../Zotlabs/Widget/Activity_filter.php:134 +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:488 +msgid "Saved Folders" +msgstr "Carpetes Guardades" + +#: ../../Zotlabs/Widget/Activity_filter.php:138 +msgid "Show filed post categories" +msgstr "Mostra les categories de les entrades pujades" + +#: ../../Zotlabs/Widget/Activity_filter.php:152 +msgid "Panel search" +msgstr "Panell de cerca" + +#: ../../Zotlabs/Widget/Activity_filter.php:162 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:122 +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "Filter by name" +msgstr "Filtra per nom" + +#: ../../Zotlabs/Widget/Activity_filter.php:177 +msgid "Remove active filter" +msgstr "Esborra el filtre actual" + +#: ../../Zotlabs/Widget/Activity_filter.php:193 +msgid "Activity Filters" +msgstr "Filtres d'activitat" + +#: ../../Zotlabs/Widget/Follow.php:22 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visita %1$s de %2$s" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tens %1$.0f de %2$.0f connexions permeses." -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s Ha actualitzat %2$s, canviant %3$s." +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Afegeix una Nova Connexió" -#: ../../include/api.php:1203 -msgid "Public Timeline" -msgstr "Cronologia pública" +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Introdueix l'adreça del canal" -#: ../../include/apps.php:128 -msgid "Site Admin" +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples: bob@example.com, https://exemple.com/barbara" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wiki List" +msgstr "Llista de Wikis" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Arxius" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Missatges Rebuts" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Missatges Enviats" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Conversacions" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Sense missatges." + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Conversació esborrada" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Membres de la Sala de Xat" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "foto/imatge" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Plaç de remoció" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 +msgid "Saved Searches" +msgstr "Cerques Guardades" + +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:325 +msgid "add" +msgstr "afegeix" + +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Notes" + +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:89 +msgid "Add new page" +msgstr "Afegeix una pàgina nova" + +#: ../../Zotlabs/Widget/Wiki_pages.php:83 +msgid "Wiki Pages" +msgstr "Pàgines de Wikis" + +#: ../../Zotlabs/Widget/Wiki_pages.php:94 +msgid "Page name" +msgstr "Canvia el nom de la pàgina" + +#: ../../Zotlabs/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Refresc" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Tasques" + +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Suggerencies" + +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Veure més....." + +#: ../../Zotlabs/Widget/Activity_order.php:86 +msgid "Commented Date" +msgstr "Data dels comentaris" + +#: ../../Zotlabs/Widget/Activity_order.php:90 +msgid "Order by last commented date" +msgstr "Ordena segons la data dels comentaris més recents" + +#: ../../Zotlabs/Widget/Activity_order.php:93 +msgid "Posted Date" +msgstr "Data de les entrades" + +#: ../../Zotlabs/Widget/Activity_order.php:97 +msgid "Order by last posted date" +msgstr "Ordena segons la data de publicació de les entrades" + +#: ../../Zotlabs/Widget/Activity_order.php:100 +msgid "Date Unthreaded" +msgstr "Data sense agrupar" + +#: ../../Zotlabs/Widget/Activity_order.php:104 +msgid "Order unthreaded by date" +msgstr "Ordena per data els comentaris i les publicacions sense agrupar-los per converses" + +#: ../../Zotlabs/Widget/Activity_order.php:119 +msgid "Activity Order" +msgstr "Ordre de les activitats" + +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Fes clic per veure més" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 +#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 +msgid "Tags" +msgstr "Etiquetes" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "Coŀleccions d'aplicacions" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Available Apps" +msgstr "Aplicacions disponibles" + +#: ../../Zotlabs/Widget/Appstore.php:14 +msgid "Installed apps" +msgstr "Aplicacions instaŀlades" + +#: ../../Zotlabs/Widget/Newmember.php:24 +msgid "Profile Creation" +msgstr "Creació de perfils" + +#: ../../Zotlabs/Widget/Newmember.php:26 +msgid "Upload profile photo" +msgstr "Puja una foto de perfil" + +#: ../../Zotlabs/Widget/Newmember.php:27 +msgid "Upload cover photo" +msgstr "Puja una foto de portada" + +#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:113 +msgid "Edit your profile" +msgstr "Modifica el teu perfil" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Find and Connect with others" +msgstr "Cerca altres canals i connecta-t'hi" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "View the directory" +msgstr "Mostra la carpeta" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Manage your connections" +msgstr "Gestiona les teves conexions" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Communicate" +msgstr "Communica't" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View your channel homepage" +msgstr "Mostra el teu canal" + +#: ../../Zotlabs/Widget/Newmember.php:41 +msgid "View your network stream" +msgstr "Mostra el teu flux de xarxa" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Documentation" +msgstr "Documentació" + +#: ../../Zotlabs/Widget/Newmember.php:58 +msgid "View public stream" +msgstr "Mostra el flux públic" + +#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 +msgid "New Member Links" +msgstr "Enllaços de membres nous" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Una inscripció per a ser membre està esperant confirmació" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Revisa cua" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "Actualitzacions de Base de Dades" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:191 +msgid "Admin" msgstr "Administració" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adreçes" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" +msgstr "Funcions de les extensions" -#: ../../include/apps.php:138 ../../include/identity.php:1248 -#: ../../include/identity.php:1365 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Configuració del compte" -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Ànim" +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Configuració del canal" -#: ../../include/apps.php:145 ../../include/conversation.php:959 -msgid "Poke" -msgstr "Emprenya" +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Característiques addicionals" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Sondeig" +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "Configuració de les extensions" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Suggeriment" +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Configuració de pantalla" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Canal Aleatori" +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Gestiona ubicacions" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Convida" +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Exportat canal" -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funcionalitats" +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "OAuth1 apps" +msgstr "Aplicacions OAuth1" -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Idioma" +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "OAuth2 apps" +msgstr "Aplicacions OAuth2" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Entrada" +#: ../../Zotlabs/Widget/Settings_menu.php:125 +msgid "Premium Channel Settings" +msgstr "Configuració dels canals prèmium" -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Foto del Perfil" +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Sales de xat desades" -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "Actualització" +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Activitat nova a la xarxa" -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Instal·lar" +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Notificacions noves d'activitat a la xarxa" -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Compra" +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "Mostra l'activitat a la xarxa" -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:305 ../../include/attach.php:319 -#: ../../include/attach.php:350 ../../include/attach.php:546 -#: ../../include/attach.php:618 ../../include/chat.php:131 -#: ../../include/items.php:4383 ../../include/photos.php:26 -#: ../../mod/mail.php:114 ../../mod/achievements.php:30 ../../mod/page.php:31 -#: ../../mod/page.php:86 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/pdledit.php:21 ../../mod/appman.php:66 ../../mod/photos.php:69 -#: ../../mod/authtest.php:13 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/poke.php:128 -#: ../../mod/bookmarks.php:46 ../../mod/manage.php:6 ../../mod/channel.php:100 -#: ../../mod/channel.php:219 ../../mod/channel.php:262 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/common.php:35 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/notifications.php:66 -#: ../../mod/connections.php:29 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/connedit.php:348 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/events.php:249 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/register.php:72 ../../mod/fsuggest.php:78 ../../mod/regmod.php:17 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/service_limits.php:7 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/settings.php:570 -#: ../../mod/item.php:206 ../../mod/item.php:214 ../../mod/item.php:1005 -#: ../../mod/setup.php:223 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/sharedwithme.php:7 -#: ../../mod/like.php:178 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/message.php:16 ../../mod/mitem.php:111 -#: ../../mod/mood.php:111 ../../mod/suggest.php:26 ../../mod/network.php:12 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/thing.php:269 ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69 ../../index.php:186 -#: ../../index.php:397 -msgid "Permission denied." -msgstr "Permís denegat." +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "Marca totes les notificacions com a vistes" -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "Article no trobat." +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:152 +msgid "Show new posts only" +msgstr "Mostra només les entrades noves" -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "No hi ha arxiu d'origen." +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "Activitat nova al mur" -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "No trobo l'arxiu a reemplaçar" +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "Notificacions noves d'activitat al mur" -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "No trobo l'arxiu a revisar/actualitzar" +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "Mostra l'activitat al teu mur" -#: ../../include/attach.php:410 +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:149 +msgid "Mark all notifications seen" +msgstr "Marca totes les notificacions com a vistes" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "Correus nous" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "Notificacions noves de correus" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "Mostra els correus privats" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "Marca tots els missatges com a llegits" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "Esdeveniments nous" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "Notificacions noves d'esdeveniments" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "Mostra els esdeveniments" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Marcar tots els esdeveniments vistos" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "Notificacions noves de connexió" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "Mostra totes les connexions" + +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "Arxius nous" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "Notificacions noves d'arxius" + +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Noticies" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "Mostra totes les notificacions" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "Marca totes les notificacions com a vistes" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "New Registrations" +msgstr "Inscripcions noves" + +#: ../../Zotlabs/Widget/Notifications.php:133 +msgid "New Registrations Notifications" +msgstr "Notificacions noves d'inscripció" + +#: ../../Zotlabs/Widget/Notifications.php:143 +msgid "Public Stream Notifications" +msgstr "Notificacions del flux públic" + +#: ../../Zotlabs/Widget/Notifications.php:146 +msgid "View the public stream" +msgstr "Mostra el flux públic" + +#: ../../Zotlabs/Widget/Notifications.php:161 +msgid "Sorry, you have got no notifications at the moment" +msgstr "No tens cap notificació" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "No s'ha trobat el canal font." + +#: ../../boot.php:1592 +msgid "Create an account to access services and applications" +msgstr "Crea un compte per tal d'accedir a serveis i aplicacions" + +#: ../../boot.php:1612 ../../include/nav.php:105 ../../include/nav.php:134 +#: ../../include/nav.php:153 +msgid "Logout" +msgstr "Surt" + +#: ../../boot.php:1616 +msgid "Login/Email" +msgstr "Correu d'usuari" + +#: ../../boot.php:1617 +msgid "Password" +msgstr "Contrasenya" + +#: ../../boot.php:1618 +msgid "Remember me" +msgstr "Recorda'm" + +#: ../../boot.php:1621 +msgid "Forgot your password?" +msgstr "Has perdut la Contrasenya?" + +#: ../../boot.php:2405 #, php-format -msgid "File exceeds size limit of %d" -msgstr "L'arxiu excedeix la mida limit de %d" +msgid "[$Projectname] Website SSL error for %s" +msgstr "[$Projectname] Error de TLS per a %s" -#: ../../include/attach.php:422 +#: ../../boot.php:2410 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "El certificat SSL és invalid, soluciona-ho, si us plau." + +#: ../../boot.php:2526 #, 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." +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "[$Projectname] Les tasques del cron tasks no s'estan executant a %s" -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Pujada del arxiu fallida. Possible límit del sistema o acció interrompuda." +#: ../../boot.php:2531 +msgid "Cron/Scheduled tasks not running." +msgstr "No s'estan executant les tasques programades al cron." -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." +#: ../../boot.php:2532 ../../include/datetime.php:238 +msgid "never" +msgstr "mai" -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "Trajectòria no disponible" +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Hubzilla per defecte)" -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "Trajèctoria vuida." +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Configuració de tema" -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "Nom o trajectòria duplicat" +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Barra de navegació estreta" -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Trajectòria no trobada." +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Color de fons de la barra de navegació" -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir va fracassar." +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Color de la icona de la barra de navegació" -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "Arxiu de base de dades va fallar." +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Color de la icona de la barra de navegació activa" -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Sortir." +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "Color dels enllaços" -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Autenticació fallida" +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Ajusta el color del tipus de lletra per la senyera" -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Identificació fallida." +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Ajusta el color de fons" -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Adjuntat:" +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Ajusta la imatge de fons" -#: ../../include/bb2diaspora.php:459 ../../include/event.php:22 -msgid "l F d, Y \\@ g:i A" -msgstr "l d \\d\\e/\\d' F de Y \\@ H:i T" +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "ajusta el color dels articles de fons" -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "Notificació d'esdeveniment de $Projectname" +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Ajusta el color dels comentaris en segon pla" -#: ../../include/bb2diaspora.php:465 ../../include/event.php:30 -msgid "Starts:" -msgstr "Comença:" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Ajusta la mida del tipus de lletra per tota l'aplicació" -#: ../../include/bb2diaspora.php:473 ../../include/event.php:40 -msgid "Finishes:" -msgstr "Acaba:" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "Exemples: 1rem, 100%, 16px" -#: ../../include/bb2diaspora.php:481 ../../include/event.php:50 -#: ../../include/identity.php:1015 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "Lloc:" +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Ajusta el color del tipus de lletra per entrades i comentaris" -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 -msgid "Image/photo" -msgstr "Imatge/foto" +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Ajusta el radi de les cantonades" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 -msgid "Encrypted content" -msgstr "Contingut encriptat" +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "Exemple: 4px" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instal·la l'element %s:" +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Ajusta la profunditat d'ombres de les fotos" -#: ../../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." +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Ajusta l'amplada màxima de la zona de contingut en pixels" -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "pàgina web" +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Deixa en blanc per l'amplada predeterminada" -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "disseny" +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "Alineació esquerra del contingut de la pàgina" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "bloc" +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Ajusta la mida de la foto del autor a la conversa" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "menú" +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Ajusta la mida del seguidor de les fotos de l'autor" -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "QR code" +#: ../../widgets/Netselect/Netselect.php:24 +msgid "Network/Protocol" +msgstr "Xarxa/protocol" -#: ../../include/bbcode.php:266 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s va escriure la següent %2$s %3$s" +#: ../../widgets/Netselect/Netselect.php:28 ../../include/network.php:1772 +msgid "Zot" +msgstr "Zot" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "entrada" - -#: ../../include/bbcode.php:518 -msgid "Different viewers will see this text differently" -msgstr "Diferents observadors veuran aquest text de diferents formes" - -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:756 -msgid "$1 wrote:" -msgstr "$1 va escriure:" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadors de %1$s" - -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Perdut el nom de la sala" - -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Nom de la sala duplicat" - -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Especificació de la sala invàlida." - -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Sala no trobada." - -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "La sala es plena" - -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Predeterminat" - -#: ../../include/security.php:349 -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/contact_selectors.php:56 -msgid "Frequently" -msgstr "Sovint" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dos cops al dia" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diàriament" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Setmanalment" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualment" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1553 -msgid "Email" -msgstr "Correu electrònic" - -#: ../../include/contact_selectors.php:80 +#: ../../widgets/Netselect/Netselect.php:31 ../../include/network.php:1770 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../widgets/Netselect/Netselect.php:33 ../../include/network.php:1763 +#: ../../include/network.php:1764 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../widgets/Netselect/Netselect.php:38 ../../include/network.php:1765 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../widgets/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1219 +#: ../../addon/pubcrawl/as.php:1374 ../../addon/pubcrawl/as.php:1553 +#: ../../include/network.php:1768 +msgid "ActivityPub" +msgstr "ActivityPub" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "S'ha produït un o més errors en esborrar una taula de la base de dades" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../addon/rendezvous/rendezvous.php:95 +#: ../../addon/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "Desa els canvis" -#: ../../include/contact_widgets.php:14 +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "Vols eliminar les taules en desinstaŀlar?" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "En cas afirmatiu, s'esborraran de la base de dades les taules del Rendezvous en desinstaŀlar l'extensió." + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "Testimoni d'accés a Mapbox" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "Es farà servir aquest testimoni per a descarregar les tesseŀles des de Mapbox en comptes del servidor per defecte d'OpenStreetMap." + +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "Rendezvous" + +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "Un altre membre ha esborrat aquesta identitat per inactivitat. Pots crear-ne una nova amb el botó o recarregant la pàgina. Pots tornar a fer servir el mateix nom." + +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "Benvingut/da al Rendezvous!" + +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with" +" the other members, tap the GPS control. When your location is discovered, a" +" red dot will appear and others will be able to see you on the map." +msgstr "Escriu un nom per unir-te an aquest Rendezvous. Per a començar compartint la teva ubicació amb els altres membres, toca el control de GPS. Un cop descoberta la teva ubicació, apareixerà un punt vermell i la resta podran veure't en el mapa." + +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "Trobem-nos aquí" + +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "Nova xinxeta" + +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "Modifica la xinxeta" + +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "Nova identitat" + +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "Esborra la xinxeta" + +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "Esborra el membre" + +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "Modifica l'alerta de proximitat" + +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius" +" of you.

Enter a radius in meters (0 to disable):" +msgstr "Es mostrarà una alerta de proximitat si aquest membre està dins un cert radi de distància.

Introdueix un radi en metres (0 ho deshabilita):" + +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "distància" + +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "Distància d'alerta de proximitat (metres)" + +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the" +" marker location.

Enter a radius in meters (0 to disable):" +msgstr "Es mostrarà una alerta de proximitat quan siguis dins un cert radi de distància de la ubicació de la xinxeta.

Introdueix un radi en metres (0 ho deshabilita):" + +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "Alerta de proximitat de xinxeta" + +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "Nota de recordatori" + +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "Introdueix una nota per a mostrar amb l'alerta" + +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "Afegeix un rendezvous nou" + +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or" +" share their own locations with the group." +msgstr "Crea un rendezvous nou i comparteix-lo amb aquelles persones a qui vulguis convidar al grup. Qui obri l'enllaç es faran membres del rendezvous. Podran veure les ubicacions dels altres membres, afegir xinxetes al mapa i compartir les seves ubicacions amb el grup." + +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" +msgstr "No tens cap rendezvous. Pica el botó de sobre per a crear-ne un!" + +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "Opció X" + +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "Opció Y" + +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "Configuració del Skeleton" + +#: ../../addon/gnusoc/gnusoc.php:258 +msgid "GNU-Social Protocol Settings updated." +msgstr "S'ha actualitzat la configuració del Protocol GNU-Social" + +#: ../../addon/gnusoc/gnusoc.php:277 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El Protocol GNU-Social és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal." + +#: ../../addon/gnusoc/gnusoc.php:280 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "Habilita el Protocol GNU-Social per a aquest canal" + +#: ../../addon/gnusoc/gnusoc.php:284 +msgid "GNU-Social Protocol Settings" +msgstr "Configuració del Protocol GNU-Social " + +#: ../../addon/gnusoc/gnusoc.php:480 +msgid "Follow" +msgstr "Segueix" + +#: ../../addon/gnusoc/gnusoc.php:483 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitació disponible" -msgstr[1] "%d invitacions disponibles" +msgid "%1$s is now following %2$s" +msgstr "%1$s ara segueix a %2$s" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "Avançat" +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "S'ha actualitzat la configuració de Planetes." -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Troba Canals" +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "Habilita l'extensió Planetes" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Entra un nom o interes" +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "Configuració de Planetes" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Conecta/Segueix" +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "Opcions per defecte:" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Lionel Messi, Futbolista" +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "Identitats Clipart preferides" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:273 -#: ../../mod/directory.php:379 ../../mod/directory.php:384 -msgid "Find" -msgstr "Troba" +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "Llista d'identitats Clipart preferides. Aquestes es mostren primer" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Canals Suggerits" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "Paraula de cerca predeterminada" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Perfil Aleatori" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "La paraula de cerca predeterminada. Aquestes es mostraran en segon lloc." -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Convida Amics" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "Acaba després de" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avançat: nom=pep i pais=eire" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "Pàgina per carregar després d'haver seleccionat una imatge." -#: ../../include/contact_widgets.php:125 +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 +#: ../../include/nav.php:113 +msgid "Edit Profile" +msgstr "Modifica el meu perfil" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "Llista de perfils" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "Ordre de les preferides" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "Ordena les identitats Clipart preferides" + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "La més nova primer" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "En ordre d'entrada" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "Ordre de les altres" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "Ordena les altres identitats Clipart." + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "Les més descarregades primer" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "Les més votades primer" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "Missatge de les identitats preferides" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "Missatge per a mostrar per sobre dels resultats preferits." + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "Carregada per:" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "Dibuixada per:" + +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Fes servir aquesta imatge" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "O bé tria una imatge lliure d'OpenClipart.org:" + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "Paraules de cerca" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "S'ha produït un error desconegut. Torna a provar-ho més tard." + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "S'ha carregat la foto amb èxit." + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Marca contingut adult" + +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Habilita una opció per a amagar fotos sensibles de la vista per defecte de l'àlbum." + +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "Publica a un Wordpress" + +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "Activa l'extensió Publica a un Wordpress" + +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "Nom d'usuari al Wordpress" + +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "Contrassenya al Wordpress" + +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "Adreça URL de l'API del Wordpress" + +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "Normalment https://el-meu-blog.cat/xmlrpc.php" + +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "Identitat blogid del Wordpress" + +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "Fer a llocs multi-usuari com wordpress.com . Deixa en blanc en cas contrari" + +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "Publica a Wordpress per defecte" + +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "Reenvia comentaris (necessita l'extensió hubzilla_wp)" + +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "Configuració d'entrades" + +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "S'ha desat la configuració." + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Aquesta extensió cerca paraules que especifiquis en les entrades, i amaga plegant qualsevol contingut que en contingui alguna. Així, no es mostrarà per defecte i no quedaràs exposat/da en llocs on més gent vegi la teva pantalla. Sempre es recomana etiquetar els continguts amb nuesa amb l'etiqueta #NSFW (insegur per a la feina, en anglès). Tanmateix, el filtre es pot fer servir per qualsevol tipus de contingut." + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "Activa el filtre de contingut" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "Llista de paraules clau a amagar, separada per comes" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "Paraula, /expressió-regular/, lang=xx, lang=!xx. Nota: lang és per llengua en anglès" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "Configuració de Not Safe For Work" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "Filtre de contingut genèric" + +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "S'ha desat la configuració del NSFW." + +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "Possible contingut inadequat" + +#: ../../addon/nsfw/nsfw.php:222 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d connexió en comú" -msgstr[1] "%d connexions en comú" +msgid "%s - view" +msgstr "%s - mostra" -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "mostrar més" +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "Publicar a Insanejournal" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "canal" +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Habilita la publicació a InsaneJournal" -#: ../../include/conversation.php:164 ../../include/diaspora.php:2152 -#: ../../mod/like.php:397 +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Nom d'usuari a InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "Contrasenya a InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "Publica per defecte a InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "Opcions de publicació a InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "S'han actualitzat els paàrmetres de InsaneJournal." + +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "Publica a Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "Habilita el connector per a publicar a la xarxa Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "Nom a Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "Contrasenya a Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "Publica a Dreamwidth per defecte" + +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "Opcions de publicació a Dreamwidth" + +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "S'ha registrat un nou compte" + +#: ../../addon/notifyadmin/notifyadmin.php:42 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s li agrada %3$s de %2$s" +msgid "Message sent to %s. New account registration: %s" +msgstr "S'ha enviat el correu a %s. El nou compte és %s" -#: ../../include/conversation.php:167 ../../mod/like.php:399 +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "Estadístiques del directori de Hubzilla" + +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "Hubs totals" + +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "Hubs de Hubzilla" + +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "Hubs de Friendica" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "Pods de Diaspora" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "Canals de Hubzilla" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "Canals de Friendica" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "Canals de Diaspora" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "De 35 o més anys d'edat" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "De 34 o menys anys d'edat" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "Mitjana d'edat" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "Sales de xat conegudes" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "Etiquetes conegudes" + +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "Tingueu en compte que les estadístiques de Diaspora i Friendica només són les **aquest directori** n'és conscient, i no totes les de la xarxa. Això també aplica a sales de xat," + +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "El teu Webbie:" + +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "Mida de lletra (px):" + +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "Enllaç:" + +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Segueix-nos a Hubzilla" + +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "Incrusta:" + +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "S'han importat les fotos" + +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "Importa els àlbums de fotos de $Projectname" + +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "Importa els àlbums de fotos de $Projectname" + +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "Adreça URL arrel del servidor de Redmatrix" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "Nom d'usuari de Redmatrix" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "Contrasenya de Redmatrix" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "Importa només aquest album" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "Deixa-ho en blanc per a importar tots els àlbums" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "Nombre màxim d'importacions" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "Deixa-ho en blanc o amb un 0 per a importar-ho tot" + +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "Canals per connectar automàticament" + +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" +msgstr "Llista amb separació per comes" + +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Canals populars" + +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" +msgstr "Paràmetres de IRC" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "S'han actualitzat els paràmetres de IRC." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "Sala de IRC" + +#: ../../addon/gallery/gallery.php:42 ../../addon/gallery/Mod_Gallery.php:111 +msgid "Gallery" +msgstr "Galeria" + +#: ../../addon/gallery/gallery.php:45 +msgid "Photo Gallery" +msgstr "Galeria d'imatges" + +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "Publica a LiveJournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "Habilita la publicació a LiveJournal" + +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "Nom a LiveJournal" + +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "Contrasenya a LiveJournal" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "Publica a LiveJournal per defecte" + +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "Paràmetres de LiveJournal" + +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "S'han desat els paràmetres de LiveJournal." + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "No s'ha pogut autenticar la identitat OpenID que has proporcionat. Comprova que l'hagis introduïda bé." + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "El missatge d'error ha estat:" + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "Nom" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "Cognoms" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" +msgstr "Àlies" + +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "Nom complet" + +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "Imatge de perfil de 16x16 píxels" + +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "Imatge de perfil de 32x32 píxels" + +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "Imatge de perfil de 48x48 píxels" + +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "Imatge de perfil de 64x64 píxels" + +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "Imatge de perfil de 80x80 píxels" + +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "Imatge de perfil de 128x128 píxels" + +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "Zona horària" + +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "Any de naixement" + +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "Mes de naixement" + +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "Dia de naixement" + +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "Aniversar" + +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error d'OpenID. No s'ha aconseguit cap ID." + +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:317 +msgid "Login failed." +msgstr "Identificació fallida." + +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1480 +msgid "Male" +msgstr "Masculí" + +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1478 +msgid "Female" +msgstr "Femení" + +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "De res." + +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "Oh merda..." + +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "Ni ho pensis." + +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "<em poso vermell>" + +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "Pàgina a carregar després d'iniciar sessió" + +#: ../../addon/startpage/startpage.php:109 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "Exemples: "apps", "network?f=&gid=37" (grup de privacitat), "channel" or "notifications/system" (deixa-ho en blanc per a la pàgina per defecte, la del flux públic." + +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "Configuració de Pàgina d'inici" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "bofetades" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "ha fet una bofetada a" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "polvo" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "ha fet un polvo amb" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "amb dret de" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "ha patentat a" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "abraçada" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "ha abraçat" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "assassinat" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "ha assassinat" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "retre-li culte" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "ara ret culte a" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "un petó" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "ha fet un petó a" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "temptar" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "ha temptat a" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "aixecar-li una cella" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "li ha aixecat una cella a" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "insultar" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "ha insultat a" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "elogiar" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "ha elogiat a" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "sospitar" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "sospita de" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "menjar" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "s'ha menjat" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "cantar-ne les mil meravelles" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "està cantant les mil meravelles de" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "dubtar-ne" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "dubta de" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "fer-li una mirada assassina" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "li ha fet una mirada assassina a" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "follar-hi" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "ha follat amb" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "tirar-se'l/la" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "s'ha tirat a" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "declarar-li l'amor etern a" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "li ha declarar amor etern a" + +#: ../../addon/diaspora/diaspora.php:786 +msgid "Diaspora Protocol Settings updated." +msgstr "S'ha actualitzat la configuració del Protocol de Diàspora" + +#: ../../addon/diaspora/diaspora.php:805 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El Protocol de Diàspora és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal." + +#: ../../addon/diaspora/diaspora.php:808 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Activa el Protocol de Diàspora per aquest canal" + +#: ../../addon/diaspora/diaspora.php:812 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Permet a qualsevol membre de Diàspora de comentar les teves entrades públiques" + +#: ../../addon/diaspora/diaspora.php:816 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Evita que les teves etiquetes siguin redirigides a altres llocs web" + +#: ../../addon/diaspora/diaspora.php:820 +msgid "" +"Sign and forward posts and comments with no existing Diaspora signature" +msgstr "Signa i reenvia entrades o comentaris encara que no tinguin una signatura de Diàspora vàlida." + +#: ../../addon/diaspora/diaspora.php:825 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "Etiquetes seguides (separades per comes i sense incloure #)" + +#: ../../addon/diaspora/diaspora.php:830 +msgid "Diaspora Protocol Settings" +msgstr "Configuració del Protocol de Diàspora" + +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "No s'ha trobat el nom d'usuari en el fitxer d'importació." + +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:72 +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." + +#: ../../addon/testdrive/testdrive.php:104 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s no agrada %2$s de %3$s" +msgid "Your account on %s will expire in a few days." +msgstr "El teu compte a %s caducarà d'aquí a pocs dies." -#: ../../include/conversation.php:204 +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "El teu compte de prova a $Productname està a punt de caducar." + +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "Activa el Rainbowtag" + +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "Configuració de Rainbowtag" + +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "S'ha desat la configuració del Rainbowtag." + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "Mostra els límits de pujada" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "Mida màxima configurada a $Projectname:" + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "Mida màxima de fitxer del PHP (upload_max_filesize):" + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "Mida màxima de consulta web del PHP (post_max_size > upload_max_filesize):" + +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "imatge de perfil genèrica" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "patró geomètric aleatori" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "cara de monstre" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "cara generada per ordinador" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "cara d'estil arcade retro" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Foto de perfil per defecte al hub" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Informació" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "L'extensió Libravatar també està instaŀlada. Desactiva-la o desactiva aquesta.
Libravatar rebotarà a Gravatar si no es troba res a Libravatar." + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "Des la configuració" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "Avatar per defecte" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Escull l'avatar per defecte si no se'n troba cap al Gravatar. Consulta el README" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "Categorització de les imatges" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Escull la categorització d'avatar per al teu lloc. Consulta el README" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "S'ha actualitzat la configuració del Gravatar" + +#: ../../addon/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "Importació d'emmagatzematge de Hubzilla" + +#: ../../addon/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "Permet importar tots els arxius de núvol des d'un altre servidor." + +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "Adreça URL base de l'altre servidor Hubzilla" + +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "Més nous que aaaa-mm-dd" + +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "Més antics que aaaa-mm-dd" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Visitants recents del canal o perfil" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "Aquesta extensió encara no està configurada." + +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "Visita la configuració del Visage a %s" + +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "la pàgina de configuració de funcionalitats" + +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "No hi ha entrades." + +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "Activa el registre de visitants de Visage" + +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "Configuració del Visage" + +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "S'ha actualitzat la configuració de NSAbait." + +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "Activa l'extensió NSAbait" + +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "Configuració del NSAbait" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "Envia un correu de prova" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "No s'han trobat destinataris." + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "S'ha enviat el correu." + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "Ha fallat l'enviament de correu." + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "Prova de correu" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "Assumpte" + +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Fes servir markdown per editar les entrades" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "Amplia" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "Adreça URL del servidor de tesseŀles" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "Una llista de servidors públics de tesseŀles" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "Adreça URL del servei Nominatim (geocoding invers)" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "Una llista de servidors públics de Nominatim" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "Zoom per defecte" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "El nivell de zoom predeterminat. (1: mínim, món. 18: màxim. També depèn del servidor)" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "Inclou una xinxeta al mapa" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "Inclou una xinxeta al mapa." + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "text per incloure en totes les entrades que s'enviïn des d'aquest lloc" + +#: ../../addon/fuzzloc/fuzzloc.php:148 +msgid "Fuzzloc Settings updated." +msgstr "S'ha actualitzat la configuració de Fuzzloc." + +#: ../../addon/fuzzloc/fuzzloc.php:175 +msgid "" +"Fuzzloc allows you to blur your precise location if your channel uses " +"browser location mapping." +msgstr "El Fuzzloc permet difuminar la teva ubicació si el teu canal fa servir la ubicació precisa del navegador." + +#: ../../addon/fuzzloc/fuzzloc.php:178 +msgid "Enable Fuzzloc Plugin" +msgstr "Habilita l'extensió Fuzzloc" + +#: ../../addon/fuzzloc/fuzzloc.php:182 +msgid "Minimum offset in meters" +msgstr "Afegit mínim en metres" + +#: ../../addon/fuzzloc/fuzzloc.php:186 +msgid "Maximum offset in meters" +msgstr "Afegit màxim en metres" + +#: ../../addon/fuzzloc/fuzzloc.php:191 +msgid "Fuzzloc Settings" +msgstr "Configuració del Fuzzloc" + +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "Publica a Friendica" + +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "S'ha desat la Configuració de rtof." + +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "Permet publicar a xarxes Friendica" + +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "Envia per defecte les entrades públiques cap a Friendica" + +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "Ruta a l'API de Friendica" + +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "https://{nomdedomini}/api" + +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "Nom d'usuari a Friendica" + +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "Contrasenya a Friendica" + +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "Configuració de Publicació de Hubzilla cap a Friendica" + +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 +#: ../../include/channel.php:1567 +msgid "Status:" +msgstr "Estatus:" + +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "Habilita l'extensió" + +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "Amaga el giny de xat Jappixmini" + +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "Nom a Jabber" + +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "Servidor de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "URL de l'amfitrió BOSH de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "Contrassenya de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "Xifra la contrasenya de Jabber amb la del Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "Contrasenya del Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "Aprova automàticament les sol·licituds de subscripció de contactes de Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Neteja la llista interna de contactes de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "Ajuda de configuració" + +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "Paràmetres de Jappix Mini" + +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "Bloquejats actualment" + +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "No hi ha canals bloquejats" + +#: ../../addon/superblock/superblock.php:120 +msgid "Superblock Settings" +msgstr "Configuració del Superblock" + +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "Bloqueja completament" + +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "S'ha actualitzat la configuració del Superblock" + +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "Federa" + +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "S'ha desat la configuració del NoFed." + +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "Permet commutar entre federar o no" + +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "Per defecte federa les entrades" + +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "Configuració del NoFed" + +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "Publica a Red" + +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "Cal un canal." + +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "S'ha desat la configuració del RedRed" + +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "Permet publicar a un altre canal de Hubzilla" + +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "Envia per defecte les entrades públiques cap a l'altre canal de Hubzilla" + +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "Ruta de l'API de Hubzilla" + +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "Nom d'usuari a l'altre Hubzilla" + +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "Nom de canal a l'altre Hubzilla" + +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "Configuració del replicador de Hubzilla" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "Carpeta d'arxius de registre d'activitat" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "Carpeta per desar els registres circulars" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "Mida en Bytes del fitxer de registre abans de rotar" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "Número de fitxers de registre per a conservar" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "Friendica Photo Album Import" +msgstr "Importa àlbums de fotos de Friendica" + +#: ../../addon/frphotos/frphotos.php:93 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "Aquesta acció importarà tots els teus àlbums de fotos de Friendica a aquest canal." + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Server base URL" +msgstr "URL base del servidor de Friendica" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Username" +msgstr "Nom de registre a Friendica" + +#: ../../addon/frphotos/frphotos.php:96 +msgid "Friendica Login Password" +msgstr "Contrasenya a Friendica" + +#: ../../addon/pubcrawl/pubcrawl.php:1136 +msgid "ActivityPub Protocol Settings updated." +msgstr "S'ha actualitzat la configuració del Protocol ActivityPub." + +#: ../../addon/pubcrawl/pubcrawl.php:1145 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El Protocol ActivityPub és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal." + +#: ../../addon/pubcrawl/pubcrawl.php:1148 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "Activa el Protocol ActivityPub en aquest canal" + +#: ../../addon/pubcrawl/pubcrawl.php:1151 +msgid "Deliver to ActivityPub recipients in privacy groups" +msgstr "Envia a identitats d'ActivityPub en grups de privacitat" + +#: ../../addon/pubcrawl/pubcrawl.php:1151 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" +msgstr "Pot comportar moltes mencions i revelar els teus grups de privacitat." + +#: ../../addon/pubcrawl/pubcrawl.php:1155 +msgid "Send multi-media HTML articles" +msgstr "Envia articles HTML multimèdia" + +#: ../../addon/pubcrawl/pubcrawl.php:1155 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "Incompatible amb alguns serveis de microbloguing com Mastodon" + +#: ../../addon/pubcrawl/pubcrawl.php:1159 +msgid "ActivityPub Protocol Settings" +msgstr "Configuració del Protocol ActivityPub" + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "Servidors de projecte i Recursos" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "Creador del projecte i cap tècnic" + +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "Administradora, desenvolupadora, admin del directori, persona de suport" + +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "I els centenars d'altra gent i organitzacions que han ajudat que Hubzilla fos possible." + +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "Els projectes Redmatrix i Hubzilla són oferts principalment per voluntàries que donen el seu temps i experiència i que fins i tot solen posar-hi diners de la seva butxaca per a compartir serveis amb altres." + +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "No rebem cap mena de finançament corporatiu, ni posem anuncis ni recollim i venem les teves dades personals. Nosaltres no controlem les dades personals, sinó tu." + +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and" +" privacy." +msgstr "Ajuda'ns a mantenir la nostra feina pionera cap a la descentralització, la identitat a la web i la privacitat." + +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "Les teves donacions mantenen els servidors i els serveis corrent, i ens ajuda a oferir noves funcionalitats i continuar el desenvolupament en marxa." + +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "Dóna" + +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "Tria un projecte, desenvolupador o hub públic per a donar suport amb una donació" + +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "Dóna ara" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project " +"only)" +msgstr "O bé, fes-te patrocinador/a del projecte Hubzilla" + +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "Indica com vols aparèixer a la llista de patrocinadors: anònim, amb nom, o nom i cognoms" + +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "Patrocinador" + +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "Agraïments especials a:" + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "És un diccionari prou complet d'acords de guitarra. Llista la majoria de maneres possibles de tocar un cert acord, començant des de la base del mànec fins una mica més apunt del dotzè trast, a partir del qual es repeteixen. Ofereix també un parell d'afinacions no estàndards." + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "Els noms dels acords estan formats per la nota fonamental en notació anglesa (A-G), i modificadors com \"sostingut\" (#) i \"bemoll\" (b). El programa entén la majoria de convencions com maj, min, dim, sus2, sus4 i aug, amb més d'un element potencialment." + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Exemples vàlids: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11" + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Acords de guitarra" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "El diccionari on-line d'acords" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Afinació" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Exemple de nom d'acord: Em7" + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Disposició per esquerrans" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Xuleta" + +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "Publica a Libertree" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Habilita la publicació a Libertree" + +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "Token per a l'API de Libertree" + +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "URL del servidor de Libertree" + +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "Publica a Libertree per defecte" + +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "Paràmetres de publicació a Libertree" + +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "S'han actualitzat els paràmetres de Libertree." + +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "Dóna-hi suport amb Flattr!" + +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "S'han actualitzat els paràmetres del giny de Flattr." + +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "Nom a Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "URL del lloc per a donar suport" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "Si la deixes buida, es farà servir la URL del canal" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "Títol del lloc a donar suport" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "Si el deixes buit, es farà servir el nom del canal a Hubzilla" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "Botó estàtic o dinàmic" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "estàtic" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "dinàmic" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "Aliniament del giny" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "esquerra" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "dreta" + +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "Habilita el giny de Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "Opcions del giny de Flattr" + +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "Publica a GNU Social" + +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Contacta l'administrador del teu lloc.
L'adreça URL de l'API no és vàlida." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "No s'ha trobat una API de GNU Social a la ruta introduïda." + +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "S'ha actualitzat la configuració de GNU Social " + +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "Claus OAuth de GNU Social diponibles públicament" + +#: ../../addon/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.
Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)" + +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "Proporciona credencials OAuth pròpies" + +#: ../../addon/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as" +" an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.
Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social." + +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "Clau de consumidor OAuth" + +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "Secret de consumidor OAuth" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "Ruta arrel de l'API" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "Recorda la / final" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "Nom de l'aplicació GNU Social" + +#: ../../addon/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "Per tal de connectar al teu compte de GNU Social, fes clic al botó de sota per a obtenir un codi de seguretat de GNU Social. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques" + +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "Inicia la sessió amb GNU Social" + +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "Copia el codi de seguretat de GNU Social aquí" + +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "Aborta el procés de connexió" + +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "La ruta actual a l'API de GNU Social és" + +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "Aborta la connexió a GNU Social" + +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +msgid "Currently connected to: " +msgstr "Actualment estàs connectat/da a:" + +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a GNU Social per a la teva identitat portarà a una pàgina en blanc avisant de la restricció." + +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "Permet publicar a GNU Social" + +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "Si s'activa, les entrades públiques poden ser penjades al compte associat de GNU Social" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "Per defecte publica a GNU Social" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de GNU Social" + +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +msgid "Clear OAuth configuration" +msgstr "Esborra la configuració de OAuth" + +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "Configuració de Publica a GNU Social" + +#: ../../addon/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "Adreça URL de l'API" + +#: ../../addon/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "Nom de l'aplicació" + +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "Codi QR" + +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "Generador de codi QR" + +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "Escriu un text" + +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +msgid "Invalid game." +msgstr "El joc no és vàlid." + +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "No ets un jugador en aquest joc." + +#: ../../addon/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "Has de crear la partida des d'un canal local." + +#: ../../addon/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "Has de triar un oponent diferent a tu mateix/a." + +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "S'ha escollit un color aleatori." + +#: ../../addon/chess/chess.php:452 +msgid "Error creating new game." +msgstr "S'ha produït un error en crear la partida." + +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 +msgid "Requested channel is not available." +msgstr "El canal demanat no està disponible." + +#: ../../addon/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "Has de triar un canal local /chess/nomdelcanal" + +#: ../../addon/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "Activa les notificacions" + +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "Publica a Twitter" + +#: ../../addon/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "S'ha actualitzat la configuració de Twitter." + +#: ../../addon/twitter/twitter.php:184 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "No s'ha trobat cap parell de claus de Twitter. Contacte l'administrador del teu lloc." + +#: ../../addon/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "L'extensió de Twitter està activada però encara no t'has connectat a cap compte de Twitter. Per a fer-ho, fes clic al botó de sota per a obtenir un PIN des de Twitter. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques" + +#: ../../addon/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "Inicia la sessió amb Twitter" + +#: ../../addon/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "Copia el PIN de Twitter aquí" + +#: ../../addon/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a Twitter per a la teva identitat portarà a una pàgina en blanc avisant de la restricció." + +#: ../../addon/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "Permet publicar a Twitter" + +#: ../../addon/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "Si s'activa, les entrades públiques poden ser penjades al compte associat de Twitter" + +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Llargada del tuit" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Llargada màxima de tuit" + +#: ../../addon/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "Envia per defecte les entrades públiques cap a Twitter" + +#: ../../addon/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de Twitter" + +#: ../../addon/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "Configuració de Twitter" + +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "Desactiva la funcionalitat" + +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "Amaga el botó i mostra les icones directament." + +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "Configuració de Smileybutton" + +#: ../../addon/cart/myshop.php:44 +msgid "Access Denied." +msgstr "S'ha denegat l'accés." + +#: ../../addon/cart/myshop.php:125 ../../addon/cart/cart.php:1324 +msgid "Order Not Found" +msgstr "No s'ha trobat l'ordre" + +#: ../../addon/cart/myshop.php:155 ../../addon/cart/myshop.php:191 +#: ../../addon/cart/myshop.php:225 ../../addon/cart/myshop.php:273 +#: ../../addon/cart/myshop.php:308 ../../addon/cart/myshop.php:331 +msgid "Access Denied" +msgstr "S'ha denegat l'accés" + +#: ../../addon/cart/myshop.php:200 ../../addon/cart/myshop.php:234 +#: ../../addon/cart/myshop.php:283 ../../addon/cart/myshop.php:341 +msgid "Invalid Item" +msgstr "L'article és invàlid" + +#: ../../addon/cart/cart.php:467 +msgid "[cart] Item Added" +msgstr "[cart] S'ha afegit un article" + +#: ../../addon/cart/cart.php:851 +msgid "Order already checked out." +msgstr "La comanda ja s'ha servit." + +#: ../../addon/cart/cart.php:1204 +msgid "Enable Shopping Cart" +msgstr "Habilita la cistella de la compra" + +#: ../../addon/cart/cart.php:1211 +msgid "Enable Test Catalog" +msgstr "Habilita un catàleg de prova" + +#: ../../addon/cart/cart.php:1219 +msgid "Enable Manual Payments" +msgstr "Habilita els pagaments manuals" + +#: ../../addon/cart/cart.php:1238 +msgid "Base Merchant Currency" +msgstr "Moneda base del comerç" + +#: ../../addon/cart/cart.php:1250 +msgid "Cart - Base Settings" +msgstr "Carretó - Configuració bàsica" + +#: ../../addon/cart/cart.php:1271 ../../addon/cart/cart.php:1274 +msgid "Shop" +msgstr "Botiga" + +#: ../../addon/cart/cart.php:1401 +msgid "You must be logged into the Grid to shop." +msgstr "Cal haver iniciat sessió per a poder comprar." + +#: ../../addon/cart/cart.php:1411 +msgid "Cart Not Enabled (profile: " +msgstr "La cistella no està habilitada (perfil:" + +#: ../../addon/cart/cart.php:1442 +#: ../../addon/cart/submodules/paypalbutton.php:417 +#: ../../addon/cart/manual_payments.php:37 +msgid "Order not found." +msgstr "No s'ha trobat l'ordre." + +#: ../../addon/cart/cart.php:1451 +msgid "Access denied." +msgstr "S'ha denegat l'accés." + +#: ../../addon/cart/cart.php:1503 ../../addon/cart/cart.php:1647 +msgid "No Order Found" +msgstr "No s'ha trobat cap ordre" + +#: ../../addon/cart/cart.php:1512 +msgid "An unknown error has occurred Please start again." +msgstr "S'ha produït un error inesperat. Torna-ho a provar." + +#: ../../addon/cart/cart.php:1680 +msgid "Invalid Payment Type. Please start again." +msgstr "El tipus de pagament no és vàlid. Torna a començar." + +#: ../../addon/cart/cart.php:1687 +msgid "Order not found" +msgstr "No s'ha trobat l'ordre" + +#: ../../addon/cart/submodules/paypalbutton.php:97 +msgid "Enable Paypal Button Module" +msgstr "Activa el mòdul del botó de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:102 +msgid "Use Production Key" +msgstr "Fes servir la clau de producció" + +#: ../../addon/cart/submodules/paypalbutton.php:109 +msgid "Paypal Sandbox Client Key" +msgstr "Clau de client de Paypal del banc de proves" + +#: ../../addon/cart/submodules/paypalbutton.php:116 +msgid "Paypal Sandbox Secret Key" +msgstr "Clau secreta de Paypal del banc de proves" + +#: ../../addon/cart/submodules/paypalbutton.php:122 +msgid "Paypal Production Client Key" +msgstr "Clau de client de Paypal de producció" + +#: ../../addon/cart/submodules/paypalbutton.php:129 +msgid "Paypal Production Secret Key" +msgstr "Clau secreta de Paypal de producció" + +#: ../../addon/cart/submodules/paypalbutton.php:143 +msgid "Cart - Paypal Addon" +msgstr "Carretó - Extensió de Paypal" + +#: ../../addon/cart/submodules/paypalbutton.php:277 +msgid "Paypal button payments are not enabled." +msgstr "El botó de pagament per Paypal no està habilitat." + +#: ../../addon/cart/submodules/paypalbutton.php:295 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." +msgstr "El botó de pagament per Paypal no està ben configurat. Escull un altre mètode de pagament." + +#: ../../addon/cart/submodules/hzservices.php:71 +msgid "Enable Hubzilla Services Module" +msgstr "Activa el mòdul \"Serveis de Hubzilla\"" + +#: ../../addon/cart/submodules/hzservices.php:77 +msgid "Cart - Hubzilla Services Addon" +msgstr "Carretó - Extensió \"Serveis de Hubzilla\"" + +#: ../../addon/cart/submodules/hzservices.php:169 +msgid "New Sku" +msgstr "Nova SKU" + +#: ../../addon/cart/submodules/hzservices.php:204 +msgid "Cannot save edits to locked item." +msgstr "No s'han pogut desar els canvis a l'article perquè està bloquejat." + +#: ../../addon/cart/submodules/hzservices.php:252 +#: ../../addon/cart/submodules/hzservices.php:339 +msgid "SKU not found." +msgstr "Non s'ha trobat l'SKU" + +#: ../../addon/cart/submodules/hzservices.php:305 +#: ../../addon/cart/submodules/hzservices.php:309 +msgid "Invalid Activation Directive." +msgstr "La directiva d'activació és invàlida." + +#: ../../addon/cart/submodules/hzservices.php:380 +#: ../../addon/cart/submodules/hzservices.php:384 +msgid "Invalid Deactivation Directive." +msgstr "La directiva de desactivació és invàlida." + +#: ../../addon/cart/submodules/hzservices.php:570 +msgid "Add to this privacy group" +msgstr "Afegeix-ho al teu grup de privacitat" + +#: ../../addon/cart/submodules/hzservices.php:586 +msgid "Set user service class" +msgstr "Defineix la classe de servei de l'usuària" + +#: ../../addon/cart/submodules/hzservices.php:613 +msgid "You must be using a local account to purchase this service." +msgstr "Cal una sessió iniciada en aquest hub per a comprar el servei." + +#: ../../addon/cart/submodules/hzservices.php:651 +msgid "Changes Locked" +msgstr "Article bloquejat" + +#: ../../addon/cart/submodules/hzservices.php:655 +msgid "Item available for purchase." +msgstr "Article a la venda." + +#: ../../addon/cart/submodules/hzservices.php:662 +msgid "Price" +msgstr "Preu" + +#: ../../addon/cart/submodules/hzservices.php:665 +msgid "Add buyer to privacy group" +msgstr "Afegeix el comprador a un grup de privacitat" + +#: ../../addon/cart/submodules/hzservices.php:670 +msgid "Add buyer as connection" +msgstr "Connecta automàticament amb els canals de les compradores" + +#: ../../addon/cart/submodules/hzservices.php:677 +#: ../../addon/cart/submodules/hzservices.php:718 +msgid "Set Service Class" +msgstr "Defineix la classe de servei" + +#: ../../addon/cart/manual_payments.php:7 +msgid "Error: order mismatch. Please try again." +msgstr "Error: l'ordre no coincideix. Torna-ho a provar." + +#: ../../addon/cart/manual_payments.php:30 +msgid "Manual payments are not enabled." +msgstr "El pagament manual no està habilitat." + +#: ../../addon/cart/manual_payments.php:46 +msgid "Finished" +msgstr "Operació completa" + +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Aquest lloc web analitza el trànsit amb l'eina Piwik." + +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "Si no vols que es registrin les teves visites d'aquesta manera, pots crear una cookie per fer que Piwik deixi de fer-ho. En anglès es coneix com \"opt-out\"." + +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "Adreça URL arrel del Piwik" + +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Adreça absoluta a la instaŀlació de Piwik: sense protocol (http[s]) amb una barra (/) final" + +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "Identitat del lloc" + +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "Vols mostrar un enllaç per poder crear una cookie per evitar el seguiment?" + +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "Seguiment asíncron" + +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "Activa el seguiment d'errors de Javascript al frontend " + +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "Aquesta funcionalitat necessita una versió del Piwik >= 2.2.0" + +#: ../../addon/tour/tour.php:76 +msgid "Edit your profile and change settings." +msgstr "Modifica el teu perfil i canvia la configuració." + +#: ../../addon/tour/tour.php:77 +msgid "Click here to see activity from your connections." +msgstr "Clica aquí per a veure l'activitat de les teves connexions." + +#: ../../addon/tour/tour.php:78 +msgid "Click here to see your channel home." +msgstr "Clica aquí per a veure el mur del teu canal." + +#: ../../addon/tour/tour.php:79 +msgid "You can access your private messages from here." +msgstr "Pots accedir als teus missatges privats des d'aquí." + +#: ../../addon/tour/tour.php:80 +msgid "Create new events here." +msgstr "Pots crear esdeveniments des d'aquí." + +#: ../../addon/tour/tour.php:81 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "Pots acceptar connexions noves des d'aquí i canviar els permisos de les existents. També pots crear grups de contactes, per exemple." + +#: ../../addon/tour/tour.php:82 +msgid "System notifications will arrive here" +msgstr "Les notificacions t'arriben per aquí" + +#: ../../addon/tour/tour.php:83 +msgid "Search for content and users" +msgstr "Cerca contingut i usuaris" + +#: ../../addon/tour/tour.php:84 +msgid "Browse for new contacts" +msgstr "Explora per trobar nous contactes" + +#: ../../addon/tour/tour.php:85 +msgid "Launch installed apps" +msgstr "Obre aplicacions instaŀlades" + +#: ../../addon/tour/tour.php:86 +msgid "Looking for help? Click here." +msgstr "Que busques ajuda? Clica aquí." + +#: ../../addon/tour/tour.php:87 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "Hi ha hagut activitat nova a la teva xarxa. Clica aquí a veure què ha passat!" + +#: ../../addon/tour/tour.php:88 +msgid "You have received a new private message. Click here to see from who!" +msgstr "Has rebut un missatge privat. A veure de qui és!" + +#: ../../addon/tour/tour.php:89 +msgid "There are events this week. Click here too see which!" +msgstr "Hi ha esdeveniments aquesta setmana. Clica per veure quins!" + +#: ../../addon/tour/tour.php:90 +msgid "You have received a new introduction. Click here to see who!" +msgstr "Has rebut una presentació. Clica per veure de qui és!" + +#: ../../addon/tour/tour.php:91 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "Tens una notificació de sistema. Clica per veure què ha passat!" + +#: ../../addon/tour/tour.php:94 +msgid "Click here to share text, images, videos and sound." +msgstr "Clica aquí per a compartir text, imatges, vídeos, i sons." + +#: ../../addon/tour/tour.php:95 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "Si vols, pots posar un títol a les teves entrades. És una bona idea per a entrades llargues." + +#: ../../addon/tour/tour.php:96 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "Si afegeixes categories serà més fàcil de trobar l'entrada més endavant." + +#: ../../addon/tour/tour.php:97 +msgid "Share photos, links, location, etc." +msgstr "Comparteix fotos, enllaços, la ubicació, etc." + +#: ../../addon/tour/tour.php:98 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "Vols compartir un contingut només durant una estona? Fes-lo caducar a un cert moment." + +#: ../../addon/tour/tour.php:99 +msgid "You can password protect content." +msgstr "Pots protegir el contingut per contrasenya." + +#: ../../addon/tour/tour.php:100 +msgid "Choose who you share with." +msgstr "Escull amb qui ho vols compartir." + +#: ../../addon/tour/tour.php:102 +msgid "Click here when you are done." +msgstr "I clica aquí quan acabis." + +#: ../../addon/tour/tour.php:105 +msgid "Adjust from which channels posts should be displayed." +msgstr "Tria des de quins canals s'haurien de mostrar les entrades." + +#: ../../addon/tour/tour.php:106 +msgid "Only show posts from channels in the specified privacy group." +msgstr "Mostra només entrades de canals especificats en el grup de privacitat." + +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "Pots trobar fàcilment entrades que continguin etiquetes (paraules clau precedides per un símbol \"#\")." + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts in given category." +msgstr "Troba fàcilment entrades en una certa categoria." + +#: ../../addon/tour/tour.php:112 +msgid "Easily find posts by date." +msgstr "Troba fàcilment entrades per data." + +#: ../../addon/tour/tour.php:113 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we" +" think you might find interesting." +msgstr "Els usuaris que et suggerim s'han mostrat voluntaris a ser suggerits perquè els puguis afegir. Que potser t'interessa connectar-t'hi?" + +#: ../../addon/tour/tour.php:114 +msgid "Here you see channels you have connected to." +msgstr "Aquí pots veure els canals als quals estàs connectat/da." + +#: ../../addon/tour/tour.php:115 +msgid "Save your search so you can repeat it at a later date." +msgstr "Si deses la teva cerca la podràs repetir més tard." + +#: ../../addon/tour/tour.php:118 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It" +" is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "Si veus aquesta icona, pots donar per fet que el/la remitent és qui diu ser. De tota manera, és habitual que no es pugui verificar, i per tant, que de vegades falti aquesta icona. Però és només una capa més de seguretat del sistema." + +#: ../../addon/tour/tour.php:119 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "Alerta! Sembla que algú ha intentat falsificar un missatge! Pot ser que el remitent d'aquest missatge no sigui qui diu ser!" + +#: ../../addon/tour/tour.php:126 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "Benvingut/da a Hubzilla! T'agradaria fer un tur pel lloc?

Pots pausar-lo en qualsevol moment i continuar més tard on ho havies deixat. Per fer-ho navega a una altra pàgina o recarrega aquesta.

També pots avançar prement la tecla de retorn" + +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "Compartició d'identitats extesa" + +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "Comparteix la teva identitat amb tota la web. Si es deshabilita, la identitat només es comparteix amb altres nodes de $Projectname." + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Tres en ratlla 3D" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "Tres en ratlla 3D" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "Nova partida" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "Nova partida amb desavantatge" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "El tres en ratlla en 3D és com el clàssic en 2D excepte que es juga en diversos nivells simultàniament." + +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "En aquest cas hi ha tres nivells. Guanya qui aconsegueixi fer 3 en ratlla en qualsevol nivell, així com amunt, avall, o en diagonal en qualsevol nivell" + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "Una partida amb desavantatge desactiva la posició del centre perquè el jugador que aconsegueix aquest quadrat sol aconseguir un avantatge injust." + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "Comences!" + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "Aquest cop començo jo!" + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "Has guanyat!" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "Empat!" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "He guanyat!" + +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "Missatge per mostrar en cada pàgina d'aquest servidor" + +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "Configuració del Pageheader" + +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "S'ha desat la configuració del Pageheader." + +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "Autentica'm automàticament només en hubs on hi tinc connexions" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "Per defecte se t'autentica en qualsevol hub de la xarxa" + +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "Configuració de l'Authchoose" + +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "S'ha actualitzat la configuració de l'Authchoose." + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "solitari/ària" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "borratxo/a" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "calent/a" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "perplex/a" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "fotut/da" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "rematadament fotut/da" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "boig/boja" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "ferit/da" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "amb son" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "de mal humor" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "flipat/da" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "semi-conscient" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "enamorat/da" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "en zel" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "nu/nua" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "pudent/a" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "suat/da" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "sagnant" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "victoriós/a" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "derrotat/da" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "envejós/a" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "gelós/a" + +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "S'ha actualitzat la configuració de l'XMPP." + +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "Activa el xat" + +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "Credencials individuals" + +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "Servidor de Jabber BOSH" + +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "Configuració XMPP" + +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "Nom de domini de Jabber BOSH" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "Fes servir una base d'usuari/es central" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "Si s'activa, s'iniciarà sessió automàticament als membres en un servidor ejabberd. Aquest ha d'estar instaŀlat en la mateixa màquina amb credencials sincronitzades, mitjançant l'script \"auth_ejabberd.php\"." + +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "A qui agrado?" + +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "Has iniciat sessió a pumpio." + +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "torna a la pàgina de configuració" + +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "Publica a Pump.io" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "Nom del servidor de Pump.io" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "Sense \"http://\" ni \"https://\"" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "Nom d'usuari a Pump.io" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "Sense el nom de servidor" + +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "No has iniciat sessió a pumpio" + +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "[Re]autentica la teva connexió a pump.io" + +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "Activa l'extensió Publica a pump.io" + +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "Publica a Pump.io per defecte" + +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "Vols que les entrades siguin públiques?" + +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "Replica totes les entrades públiques" + +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "Configuració de les entrades de pump.io" + +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "S'ha desat la configuració de pump.io" + +#: ../../addon/ldapauth/ldapauth.php:70 +msgid "An account has been created for you." +msgstr "S'ha creat un compte nou." + +#: ../../addon/ldapauth/ldapauth.php:77 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "L'autenticació ha tingut èxit però no s'ha pogut crear un compte perquè no està permès." + +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Cerca %1$s(%2$s)" + +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "Cerca $Projectname" + +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "Importa l'emmagatzematge d'arxius de Redmatrix" + +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "Importa tots els teus arxius de núvol cap aquest canal." + +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "arxiu" + +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "Enviar correus a tothom" + +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "S'ha/n enviat %1$d de %2$d missatges." + +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "Envia un correu a tots els membres del hub." + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "Adreça del remitent" + +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "Mode de proves (envia'l només a l'administrador del hub)" + +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Freqüentment" + +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Horariament" + +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos vegades al dia" + +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Diariament" + +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Setmanalment" + +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Mensualment" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualment Masculí" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actualment Femení" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Més aviat Masculí" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Més Aviat Femení" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Canvi de Sexe" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexual" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" + +#: ../../include/selectors.php:49 ../../include/channel.php:1484 +msgid "Neuter" +msgstr "Neutre" + +#: ../../include/selectors.php:49 ../../include/channel.php:1486 +msgid "Non-specific" +msgstr "Indefinit" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indecís" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Homes" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Dones" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Gay" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbianes" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sense Preferències" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Verge" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Desviat" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetixiste" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgies" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Solter" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solitari" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No Disponible" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Aplastat" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Encapritxat" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Promés" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infidel" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Adicte al Sexe" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amics amb Beneficis" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Ocupat" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casat" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casat Imaginàriament" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Parella" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitant" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Tradició" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Feliç" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No Cerco" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Llibertí" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Traït" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separat" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciat" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciat Imaginàriament" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vidu/ua" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incert" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es Complicat" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "No Et Fa Res" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregunta" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "li agrada %2$s de %1$s" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "no li agrada %2$s de %1$s" + +#: ../../include/conversation.php:212 #, php-format msgid "%1$s is now connected with %2$s" msgstr "%1$s esta ara connectat amb %2$s" -#: ../../include/conversation.php:239 +#: ../../include/conversation.php:247 #, php-format msgid "%1$s poked %2$s" -msgstr "%1$s emprenyat %2$s" +msgstr "%1$s a esperonat %2$s" -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s es %2$s" +#: ../../include/conversation.php:251 ../../include/text.php:1140 +#: ../../include/text.php:1144 +msgid "poked" +msgstr "esperonat" -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "M'agrada" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "No m'agrada" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "A favor" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "En contra" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "En blanc" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "Assistint" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "Desassistint" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "Podrien assistir" - -#: ../../include/conversation.php:703 +#: ../../include/conversation.php:739 #, php-format msgid "View %s's profile @ %s" -msgstr "Vista %s del perfil @ %s" +msgstr "Mostra el perfil @%s de %s" -#: ../../include/conversation.php:718 +#: ../../include/conversation.php:759 msgid "Categories:" msgstr "Categories:" -#: ../../include/conversation.php:719 +#: ../../include/conversation.php:760 msgid "Filed under:" msgstr "Arxivar a:" -#: ../../include/conversation.php:746 +#: ../../include/conversation.php:785 msgid "View in context" msgstr "Veure en context" -#: ../../include/conversation.php:857 +#: ../../include/conversation.php:886 msgid "remove" msgstr "treu" -#: ../../include/conversation.php:862 +#: ../../include/conversation.php:890 +msgid "Loading..." +msgstr "Carregant..." + +#: ../../include/conversation.php:891 msgid "Delete Selected Items" msgstr "Esborra els Articles Seleccionats" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:934 msgid "View Source" msgstr "Veure l'Origen" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:944 msgid "Follow Thread" msgstr "Segueix el Fil" -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "Veure Status" +#: ../../include/conversation.php:953 +msgid "Unfollow Thread" +msgstr "Fil Abandonat" -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "Veure Fotos" +#: ../../include/conversation.php:1067 +msgid "Edit Connection" +msgstr "Modifica la Connexió" -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "Activitat de Matrix" +#: ../../include/conversation.php:1077 +msgid "Message" +msgstr "Missatge" -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "Editar Contacte" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "Enviar MP" - -#: ../../include/conversation.php:1073 +#: ../../include/conversation.php:1211 #, php-format msgid "%s likes this." -msgstr "A %s li agrada això." +msgstr "%s agrada això." -#: ../../include/conversation.php:1073 +#: ../../include/conversation.php:1211 #, php-format msgid "%s doesn't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1077 +#: ../../include/conversation.php:1215 #, 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:1079 +#: ../../include/conversation.php:1217 #, 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:1085 +#: ../../include/conversation.php:1223 msgid "and" msgstr "i" -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1226 #, 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:1089 +#: ../../include/conversation.php:1227 #, php-format msgid "%s like this." msgstr "%s agrada això." -#: ../../include/conversation.php:1089 +#: ../../include/conversation.php:1227 #, php-format msgid "%s don't like this." msgstr "%s no agrada això." -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "Visible a tothom" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Si us plau entra l'enllaç URL:" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "Si us plau entra l'enllaç/URL a un video:" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "Si us plau, entra l'enllaç/URL a un audio:" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "Paraula de l'Etiqueta:" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Guardar en la Carpeta" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "On ets ara?" - -#: ../../include/conversation.php:1158 ../../mod/mail.php:175 -#: ../../mod/mail.php:290 ../../mod/editpost.php:47 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expira YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1185 ../../mod/photos.php:961 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:184 -#: ../../mod/webpages.php:182 -msgid "Share" -msgstr "Compartir" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "Nom de la pàgina enllaçada" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "Envia com" - -#: ../../include/conversation.php:1197 ../../mod/mail.php:238 -#: ../../mod/mail.php:352 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:184 -msgid "Upload photo" -msgstr "Puja foto" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "puja foto" - -#: ../../include/conversation.php:1199 ../../mod/mail.php:239 -#: ../../mod/mail.php:353 ../../mod/editblock.php:142 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:185 -msgid "Attach file" -msgstr "Adjunta arxiu" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "adjunta arxiu" - -#: ../../include/conversation.php:1201 ../../mod/mail.php:240 -#: ../../mod/mail.php:354 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:186 -msgid "Insert web link" -msgstr "Insereix enllaç web" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "enllaç web" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "Insereix enllaç video" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "enllaç video" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "Insereix enllaç d'audio" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "enllaç d'audio" - -#: ../../include/conversation.php:1207 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:145 ../../mod/editpost.php:118 -#: ../../mod/editwebpage.php:190 +#: ../../include/conversation.php:1270 msgid "Set your location" msgstr "Ajusta la teva ubicació" -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "ajusta localització" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "Commutar votació" - -#: ../../include/conversation.php:1212 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:191 +#: ../../include/conversation.php:1271 msgid "Clear browser location" msgstr "Treu la localització del navegador" -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "treu localització" +#: ../../include/conversation.php:1287 +msgid "Embed (existing) photo from your photo albums" +msgstr "Incrusta una imatge existent dels teus àlbums." -#: ../../include/conversation.php:1215 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:135 ../../mod/editwebpage.php:207 -msgid "Title (optional)" -msgstr "Títol (opcional)" +#: ../../include/conversation.php:1323 +msgid "Tag term:" +msgstr "Paraula de l'Etiqueta:" -#: ../../include/conversation.php:1219 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:162 ../../mod/editpost.php:137 -#: ../../mod/editwebpage.php:209 +#: ../../include/conversation.php:1324 +msgid "Where are you right now?" +msgstr "On ets ara?" + +#: ../../include/conversation.php:1329 +msgid "Choose a different album..." +msgstr "Tria un àlbum diferent..." + +#: ../../include/conversation.php:1333 +msgid "Comments enabled" +msgstr "S'han activat els comentaris" + +#: ../../include/conversation.php:1334 +msgid "Comments disabled" +msgstr "S'han activat els comentaris" + +#: ../../include/conversation.php:1383 +msgid "Page link name" +msgstr "Nom de la pàgina enllaçada" + +#: ../../include/conversation.php:1386 +msgid "Post as" +msgstr "Envia com" + +#: ../../include/conversation.php:1400 +msgid "Toggle voting" +msgstr "Commutar votació" + +#: ../../include/conversation.php:1403 +msgid "Disable comments" +msgstr "Desactiva els comentaris" + +#: ../../include/conversation.php:1404 +msgid "Toggle comments" +msgstr "Commuta l'estat dels comentaris" + +#: ../../include/conversation.php:1412 msgid "Categories (optional, comma-separated list)" msgstr "Categories (opcional, llista separada per comes)" -#: ../../include/conversation.php:1221 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:124 -#: ../../mod/editwebpage.php:193 -msgid "Permission settings" -msgstr "Ajustos de permisos" +#: ../../include/conversation.php:1435 +msgid "Other networks and post services" +msgstr "Altres xarxes i serveis de correu" -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "permisos " +#: ../../include/conversation.php:1441 +msgid "Set publish date" +msgstr "Ajusta la data de publicació" -#: ../../include/conversation.php:1230 ../../mod/editblock.php:158 -#: ../../mod/editlayout.php:155 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:202 -msgid "Public post" -msgstr "Entrada pública" - -#: ../../include/conversation.php:1232 ../../mod/editblock.php:165 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:138 -#: ../../mod/editwebpage.php:210 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1245 ../../mod/mail.php:245 -#: ../../mod/mail.php:359 ../../mod/editblock.php:175 -#: ../../mod/editlayout.php:172 ../../mod/editpost.php:149 -#: ../../mod/editwebpage.php:219 -msgid "Set expiration date" -msgstr "Ajusta la data d'expiració" - -#: ../../include/conversation.php:1249 ../../mod/editpost.php:153 -#: ../../mod/events.php:674 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1250 ../../mod/editpost.php:154 -#: ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:589 -#: ../../mod/settings.php:615 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Cancel·la" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "Descobrir" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "Importar fluxos públics" - -#: ../../include/conversation.php:1500 +#: ../../include/conversation.php:1702 msgid "Commented Order" -msgstr "Ordre per Comentaris" +msgstr "Ordenar per Comentaris" -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1705 msgid "Sort by Comment Date" msgstr "Ordenar per Data del Comentari" -#: ../../include/conversation.php:1507 +#: ../../include/conversation.php:1709 msgid "Posted Order" msgstr "Ordenar per Entrades" -#: ../../include/conversation.php:1510 +#: ../../include/conversation.php:1712 msgid "Sort by Post Date" msgstr "Ordenar per Data d' Entrada" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1720 msgid "Posts that mention or involve you" msgstr "Entrades que et mencionen o involucren" -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "Nou" - -#: ../../include/conversation.php:1527 +#: ../../include/conversation.php:1729 msgid "Activity Stream - by date" -msgstr "Flux d'activitat - per data" +msgstr "Activitat del Flux - per data" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1735 msgid "Starred" msgstr "Preferit" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1738 msgid "Favourite Posts" msgstr "Entrades Favorites" -#: ../../include/conversation.php:1543 +#: ../../include/conversation.php:1745 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1546 +#: ../../include/conversation.php:1748 msgid "Posts flagged as SPAM" msgstr "Entrades marcades com a SPAM" -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "Canal" - -#: ../../include/conversation.php:1593 +#: ../../include/conversation.php:1823 ../../include/nav.php:373 msgid "Status Messages and Posts" msgstr "Estat dels Missatges i Entrades" -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "Sobre mi" - -#: ../../include/conversation.php:1605 +#: ../../include/conversation.php:1836 ../../include/nav.php:386 msgid "Profile Details" msgstr "Detalls del Perfil" -#: ../../include/conversation.php:1614 ../../include/photos.php:359 +#: ../../include/conversation.php:1846 ../../include/nav.php:396 +#: ../../include/photos.php:667 msgid "Photo Albums" msgstr "Albums de Fotos" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1854 ../../include/nav.php:404 msgid "Files and Storage" msgstr "Arxius i Emmagatzegament" -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Sala per Xerrar" +#: ../../include/conversation.php:1891 ../../include/nav.php:439 +msgid "Bookmarks" +msgstr "Marcadors" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1894 ../../include/nav.php:442 msgid "Saved Bookmarks" -msgstr "Marcadors Guardats" +msgstr "Marcadors desats" -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Gestió de Pàgines Web" +#: ../../include/conversation.php:1905 ../../include/nav.php:453 +msgid "View Cards" +msgstr "Mostra les targetes" -#: ../../include/conversation.php:1718 +#: ../../include/conversation.php:1913 +msgid "articles" +msgstr "articles" + +#: ../../include/conversation.php:1916 ../../include/nav.php:464 +msgid "View Articles" +msgstr "Mostra els articles" + +#: ../../include/conversation.php:1927 ../../include/nav.php:476 +msgid "View Webpages" +msgstr "Mostra les pàgines web" + +#: ../../include/conversation.php:1996 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Assistint" msgstr[1] "Assistint" -#: ../../include/conversation.php:1721 +#: ../../include/conversation.php:1999 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Desassistint" msgstr[1] "Desassistint" -#: ../../include/conversation.php:1724 +#: ../../include/conversation.php:2002 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indecís" msgstr[1] "Indecisos" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:2005 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" -msgstr[0] "A favor" -msgstr[1] "A favor" +msgstr[0] "Acord" +msgstr[1] "Acords" -#: ../../include/conversation.php:1730 +#: ../../include/conversation.php:2008 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" -msgstr[0] "En contra" -msgstr[1] "En contra" +msgstr[0] "Desacord" +msgstr[1] "Desacords" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:2011 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" -msgstr[0] "En blanc" -msgstr[1] "En blanc" +msgstr[0] "Abstenirse" +msgstr[1] "Abstenirse" -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Miscelania" - -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD o MM-DD" - -#: ../../include/datetime.php:235 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/events.php:672 -msgid "Required" -msgstr "Requerit" - -#: ../../include/datetime.php:262 ../../boot.php:2358 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "fa menys d'un segon" - -#: ../../include/datetime.php:271 -msgid "year" -msgstr "any" - -#: ../../include/datetime.php:271 -msgid "years" -msgstr "anys" - -#: ../../include/datetime.php:272 -msgid "month" -msgstr "mes" - -#: ../../include/datetime.php:272 -msgid "months" -msgstr "mesos" - -#: ../../include/datetime.php:273 -msgid "week" -msgstr "setmana" - -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "setmanes" - -#: ../../include/datetime.php:274 -msgid "day" -msgstr "dia" - -#: ../../include/datetime.php:274 -msgid "days" -msgstr "dies" - -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "hora" - -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "hores" - -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "minuts" - -#: ../../include/datetime.php:277 -msgid "second" -msgstr "segon" - -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "segons" - -#: ../../include/datetime.php:285 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "Fa %1$d i %2$s" - -#: ../../include/datetime.php:519 -#, php-format -msgid "%1$s's birthday" -msgstr "Aniversari de %1$s" - -#: ../../include/datetime.php:520 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliç Aniversari %1$s" - -#: ../../include/diaspora.php:2498 -msgid "Please choose" -msgstr "Escull" - -#: ../../include/diaspora.php:2500 -msgid "Agree" -msgstr "A favor" - -#: ../../include/diaspora.php:2502 -msgid "Disagree" -msgstr "En contra" - -#: ../../include/diaspora.php:2504 -msgid "Abstain" -msgstr "En blanc" - -#: ../../include/dimport.php:34 ../../include/identity.php:217 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "L'àlies té caràcters no suportats o ja està agafat en aquest lloc." - -#: ../../include/dir_fns.php:126 +#: ../../include/dir_fns.php:141 msgid "Directory Options" -msgstr "Opcions de carpeta" +msgstr "Opcions de Directori" -#: ../../include/dir_fns.php:128 +#: ../../include/dir_fns.php:143 msgid "Safe Mode" -msgstr "Mode Segur" +msgstr "Manera Segura" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:428 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/connedit.php:647 -#: ../../mod/connedit.php:675 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "No" -msgstr "No" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:430 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "Yes" -msgstr "Sí" - -#: ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:144 msgid "Public Forums Only" -msgstr "Només fòrums públics" +msgstr "Només Fòrums Públics" -#: ../../include/dir_fns.php:130 +#: ../../include/dir_fns.php:145 msgid "This Website Only" -msgstr "Només aquest lloc web" +msgstr "Només Aquest Lloc Web" -#: ../../include/enotify.php:96 +#: ../../include/bookmarks.php:34 #, php-format -msgid "%s " -msgstr "%s " +msgid "%1$s's bookmarks" +msgstr "marcadors de %1$s" -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notificació] Un nou missatge s'ha rebut a %s" +#: ../../include/import.php:25 +msgid "Unable to import a removed channel." +msgstr "No s'ha pogut importar un canal esborrat." -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s t'ha enviat un nou missatge privat a %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s t'ha enviat %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un missatge privat" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Per favor, visita %s per a veure i/o respondre els teus missatges privats." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s comentat en [zrl=%3$s]a %4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s comentat en [zrl=%3$s]%4$s de %5$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s comentat en [zrl=%3$s]el teu %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notify] Comentari a la conversa #%1$d per %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s comentat en un article/conversa que havies estat seguint." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Si us plau visita %s per veure i/o contestar a la conversa" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Avís] %s ha escrit una entrada al teu mur" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha escrit una entrada al teu mur en %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s enviat correu a [zrl=%3$s]el teu mur[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notificació] %s t'ha etiquetat" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s t'ha etiquetat a %3$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]t'ha etiquetat[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Avís] %1$s s'en fot de tu" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s s'en fot de tú a %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]s'en fot de tú[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Avís] %s ha etiquetat la teva entrada" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha etiquetat la teva entrada a %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s etiquetat [zrl=%3$s]la teva entrada[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Avís] Presentació rebuda" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, has rebut una nova petició de connexió de '%2$s' a %3$s" - -#: ../../include/enotify.php:272 -#, php-format +#: ../../include/import.php:51 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, has rebut [zrl=%2$s]una nova petició de connexió[/zrl] de %3$s." +"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/enotify.php:276 ../../include/enotify.php:295 +#: ../../include/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." + +#: ../../include/text.php:492 +msgid "prev" +msgstr "prev" + +#: ../../include/text.php:494 +msgid "first" +msgstr "primer" + +#: ../../include/text.php:523 +msgid "last" +msgstr "últim" + +#: ../../include/text.php:526 +msgid "next" +msgstr "pròxim" + +#: ../../include/text.php:537 +msgid "older" +msgstr "el més antic" + +#: ../../include/text.php:539 +msgid "newer" +msgstr "El més nou" + +#: ../../include/text.php:963 +msgid "No connections" +msgstr "Sense Connexions" + +#: ../../include/text.php:995 #, php-format -msgid "You may visit their profile at %s" -msgstr "Pots visitar el seu perfil a %s" +msgid "View all %s connections" +msgstr "Veure totes les connexions de %s" -#: ../../include/enotify.php:278 +#: ../../include/text.php:1051 #, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Si us plau, visita %s per aprovar o rebutjar la petició de connexió." +msgid "Network: %s" +msgstr "Xarxa: %s" -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notificació] Rebuda suggerencia d'amistat" +#: ../../include/text.php:1140 ../../include/text.php:1144 +msgid "poke" +msgstr "esperona" -#: ../../include/enotify.php:286 +#: ../../include/text.php:1145 +msgid "ping" +msgstr "coloca" + +#: ../../include/text.php:1145 +msgid "pinged" +msgstr "colocat" + +#: ../../include/text.php:1146 +msgid "prod" +msgstr "picar" + +#: ../../include/text.php:1146 +msgid "prodded" +msgstr "picat" + +#: ../../include/text.php:1147 +msgid "slap" +msgstr "bufetada" + +#: ../../include/text.php:1147 +msgid "slapped" +msgstr "bufetejat" + +#: ../../include/text.php:1148 +msgid "finger" +msgstr "senyal" + +#: ../../include/text.php:1148 +msgid "fingered" +msgstr "senyalat" + +#: ../../include/text.php:1149 +msgid "rebuff" +msgstr "menyspreu" + +#: ../../include/text.php:1149 +msgid "rebuffed" +msgstr "menyspreuat" + +#: ../../include/text.php:1172 +msgid "happy" +msgstr "feliç" + +#: ../../include/text.php:1173 +msgid "sad" +msgstr "trist" + +#: ../../include/text.php:1174 +msgid "mellow" +msgstr "melós" + +#: ../../include/text.php:1175 +msgid "tired" +msgstr "cansat" + +#: ../../include/text.php:1176 +msgid "perky" +msgstr "turgent" + +#: ../../include/text.php:1177 +msgid "angry" +msgstr "enfadat" + +#: ../../include/text.php:1178 +msgid "stupefied" +msgstr "estupefacte" + +#: ../../include/text.php:1179 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1180 +msgid "interested" +msgstr "Interessat" + +#: ../../include/text.php:1181 +msgid "bitter" +msgstr "amargat" + +#: ../../include/text.php:1182 +msgid "cheerful" +msgstr "feliç" + +#: ../../include/text.php:1183 +msgid "alive" +msgstr "viu" + +#: ../../include/text.php:1184 +msgid "annoyed" +msgstr "molest" + +#: ../../include/text.php:1185 +msgid "anxious" +msgstr "ansiós" + +#: ../../include/text.php:1186 +msgid "cranky" +msgstr "malagaitós" + +#: ../../include/text.php:1187 +msgid "disturbed" +msgstr "transtornat" + +#: ../../include/text.php:1188 +msgid "frustrated" +msgstr "frustrat" + +#: ../../include/text.php:1189 +msgid "depressed" +msgstr "deprimit" + +#: ../../include/text.php:1190 +msgid "motivated" +msgstr "motivat" + +#: ../../include/text.php:1191 +msgid "relaxed" +msgstr "relaxat" + +#: ../../include/text.php:1192 +msgid "surprised" +msgstr "sorprès" + +#: ../../include/text.php:1371 ../../include/js_strings.php:86 +msgid "Monday" +msgstr "Dilluns" + +#: ../../include/text.php:1371 ../../include/js_strings.php:87 +msgid "Tuesday" +msgstr "Dimarts" + +#: ../../include/text.php:1371 ../../include/js_strings.php:88 +msgid "Wednesday" +msgstr "Dimecres" + +#: ../../include/text.php:1371 ../../include/js_strings.php:89 +msgid "Thursday" +msgstr "Dijous" + +#: ../../include/text.php:1371 ../../include/js_strings.php:90 +msgid "Friday" +msgstr "Divendres" + +#: ../../include/text.php:1371 ../../include/js_strings.php:91 +msgid "Saturday" +msgstr "Dissabte" + +#: ../../include/text.php:1371 ../../include/js_strings.php:85 +msgid "Sunday" +msgstr "Diumenge" + +#: ../../include/text.php:1375 ../../include/js_strings.php:61 +msgid "January" +msgstr "Gener" + +#: ../../include/text.php:1375 ../../include/js_strings.php:62 +msgid "February" +msgstr "Febrer" + +#: ../../include/text.php:1375 ../../include/js_strings.php:63 +msgid "March" +msgstr "Març" + +#: ../../include/text.php:1375 ../../include/js_strings.php:64 +msgid "April" +msgstr "Abril" + +#: ../../include/text.php:1375 +msgid "May" +msgstr "Maig" + +#: ../../include/text.php:1375 ../../include/js_strings.php:66 +msgid "June" +msgstr "Juny" + +#: ../../include/text.php:1375 ../../include/js_strings.php:67 +msgid "July" +msgstr "Juliol" + +#: ../../include/text.php:1375 ../../include/js_strings.php:68 +msgid "August" +msgstr "Agost" + +#: ../../include/text.php:1375 ../../include/js_strings.php:69 +msgid "September" +msgstr "Setembre" + +#: ../../include/text.php:1375 ../../include/js_strings.php:70 +msgid "October" +msgstr "Octubre" + +#: ../../include/text.php:1375 ../../include/js_strings.php:71 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1375 ../../include/js_strings.php:72 +msgid "December" +msgstr "Desembre" + +#: ../../include/text.php:1449 +msgid "Unknown Attachment" +msgstr "Adjunt Desconegut" + +#: ../../include/text.php:1451 ../../include/feedutils.php:860 +msgid "unknown" +msgstr "desconegut" + +#: ../../include/text.php:1487 +msgid "remove category" +msgstr "elimina categoria" + +#: ../../include/text.php:1561 +msgid "remove from file" +msgstr "elimina del arxiu" + +#: ../../include/text.php:1703 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "Descarrega el binari o contingut xifrat" + +#: ../../include/text.php:1866 ../../include/language.php:397 +msgid "default" +msgstr "per defecte" + +#: ../../include/text.php:1874 +msgid "Page layout" +msgstr "Disseny de pàgina" + +#: ../../include/text.php:1874 +msgid "You can create your own with the layouts tool" +msgstr "Pots crear el teu propi amb l'editor de dissenys de pàgina." + +#: ../../include/text.php:1885 +msgid "HTML" +msgstr "HTML" + +#: ../../include/text.php:1888 +msgid "Comanche Layout" +msgstr "Disseny Comanche" + +#: ../../include/text.php:1893 +msgid "PHP" +msgstr "PHP" + +#: ../../include/text.php:1902 +msgid "Page content type" +msgstr "Tipus de contingut de la pàgina" + +#: ../../include/text.php:2035 +msgid "activity" +msgstr "activitat" + +#: ../../include/text.php:2135 +msgid "a-z, 0-9, -, and _ only" +msgstr "només caràcters alfanumèrics en minúscula (a-z, 0-9), guió (-) i guió baix (_)" + +#: ../../include/text.php:2455 +msgid "Design Tools" +msgstr "Eines de disseny" + +#: ../../include/text.php:2461 +msgid "Pages" +msgstr "Pàgines" + +#: ../../include/text.php:2483 +msgid "Import website..." +msgstr "Importa un lloc web" + +#: ../../include/text.php:2484 +msgid "Select folder to import" +msgstr "Escull la carpeta a on importar" + +#: ../../include/text.php:2485 +msgid "Import from a zipped folder:" +msgstr "Importa des d'una carpeta comprimida:" + +#: ../../include/text.php:2486 +msgid "Import from cloud files:" +msgstr "Importa des de fitxers penjats a un núvol:" + +#: ../../include/text.php:2487 +msgid "/cloud/channel/path/to/folder" +msgstr "/núvol/canal/ruta/a/la/carpeta" + +#: ../../include/text.php:2488 +msgid "Enter path to website files" +msgstr "Introdueix la ruta als arxius de la web" + +#: ../../include/text.php:2489 +msgid "Select folder" +msgstr "Escull la carpeta" + +#: ../../include/text.php:2490 +msgid "Export website..." +msgstr "Exporta un lloc web" + +#: ../../include/text.php:2491 +msgid "Export to a zip file" +msgstr "Exporta a una carpeta comprimida" + +#: ../../include/text.php:2492 +msgid "website.zip" +msgstr "lloc-web.zip" + +#: ../../include/text.php:2493 +msgid "Enter a name for the zip file." +msgstr "Introdueix un nom per al fitxer comprimit." + +#: ../../include/text.php:2494 +msgid "Export to cloud files" +msgstr "Exporta a arxius de núvol" + +#: ../../include/text.php:2495 +msgid "/path/to/export/folder" +msgstr "/ruta/a/la/carpeta/exportació" + +#: ../../include/text.php:2496 +msgid "Enter a path to a cloud files destination." +msgstr "Introdueix la ruta dels fitxers de núvol de destí." + +#: ../../include/text.php:2497 +msgid "Specify folder" +msgstr "Escull una carpeta" + +#: ../../include/contact_widgets.php:11 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, has rebut una suggerència d'amistat de '%2$s' a %3$s" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitació disponible" +msgstr[1] "%d invitacions disponibles" -#: ../../include/enotify.php:287 +#: ../../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:223 +msgid "Common Connections" +msgstr "Connexions en comú" + +#: ../../include/contact_widgets.php:228 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, has rebut [zrl=%2$s]una suggerència d'amistat[/zrl] per %3$s de %4$s." +msgid "View all %d common connections" +msgstr "Mostra totes les connexions en comú amb %d" -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nom:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 +#: ../../include/markdown.php:158 ../../include/bbcode.php:358 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Per favor, visita %s per a aprovar o rebutjar la suggerencia." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s va escriure el següent %2$s %3$s" -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Notificació]" - -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "S'ha afegit l'activitat al teu calendari." - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Característiques generals" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Caducitat del contingut" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina entrades, comentaris i/o missatges privats al cap d'un cert temps" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Múltiples perfils" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Capacitat de crear diversos perfils" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Perfils avançats" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Seccions i seleccions addicionals de perfils" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importació i exportació de perfil" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Desa i carrega els detalls del perfil a través de llocs i canals" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Pàgines web" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Proporcionar pàgines web gestionades al seu canal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Notes privades" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Activa una eina per a crear notes i recordatoris" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Navegació pel selector de canals" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Canvieu els canals directament des del menú desplegable de navegació" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Ubicació de les fotos" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Quan una imatge pujada porti incrustada la seva localització, enllaça-la a un mapa automàticament." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Mode expert" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Activa el mode expert per a mostrar opcions avançades de configuració" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Canal prèmium" - -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Permet establir restriccions i condicions a qui es connecti al teu canal" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Més funcionalitats de redacció d'entrades" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Habilita el Markdown" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Permet emprar \"Markdown\" per donar format a les entrades" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Fotos grans" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Inclou miniatures d'imatge grans (640px) en les entrades. Si no està activat, petites (320px)." - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automàticament el contingut del canal des d'altres canals o feeds" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Encara més xifratge" - -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permet el xifratge opcional de contingut extrem-a-extrem amb clau simètrica" - -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "Habilita eines de vot" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Proporcionar una classe d'entrada que altres puguin votar" - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Filtres de xarxa de contactes i de flux d'activitat" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Cerca per data" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Capacitat per seleccionar entrades per rang de dates" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtre de col·leccions" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Habilita un giny per mostrar només les entrades de les col·leccions seleccionades" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Conserva les paraules de cerca per reutilitzar-les" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Pestanya de participació en la xarxa" - -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Afegeix una pestanya que mostri només les entrades de xarxa on hi hagis intervingut" - -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "Pestanya de novetats a la xarxa" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Afegeix una pestanya que mostri tota l'activitat nova de la Xarxa" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Filtre d'activitat per afinitat" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtra el flux d'activitat segons el tipus de relació amb l'actor de l'activitat" - -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "Filtre d'entrades per paraules clau" - -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra les entrades de les teves connexions segons paraules clau i contingut" - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Suggeix-me canals" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Mostra suggerències de canals" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Eines d'entrades i comentaris" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Etiquetes" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Capacitat d'etiquetar entrades existents" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Categories d'Entrades" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Afegeix categoria a la teva entrada" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Capacitat de arxivar entrades en les carpetes" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "\"No m'agrada\"" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Capacitat per marcar amb un \"no m'agrada\" les entrades i els comentaris" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Entrades Excel·lents" - -#: ../../include/features.php:85 -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:86 -msgid "Tag Cloud" -msgstr "Núvol d'Etiquetes." - -#: ../../include/features.php:86 -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/follow.php:28 +#: ../../include/follow.php:37 msgid "Channel is blocked on this site." msgstr "El canal està bloquejat en aquest lloc." -#: ../../include/follow.php:33 +#: ../../include/follow.php:42 msgid "Channel location missing." -msgstr "Falta la ubicació del canal." +msgstr "Ubicació del canal perduda." -#: ../../include/follow.php:83 +#: ../../include/follow.php:84 msgid "Response from remote channel was incomplete." msgstr "La resposta del canal remot fou incompleta." -#: ../../include/follow.php:100 +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "Canal prèmium - ves a:" + +#: ../../include/follow.php:110 msgid "Channel was deleted and no longer exists." msgstr "El canal fou esborrat i actualment no existeix." -#: ../../include/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." -msgstr "Protocol desactivat." +#: ../../include/follow.php:165 +msgid "Remote channel or protocol unavailable." +msgstr "El canal remot o el protocol no estan disponibles." -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "El protocol està bloquejat per a aquest canal." - -#: ../../include/follow.php:179 +#: ../../include/follow.php:188 msgid "Channel discovery failed." msgstr "Descobriment de canal fallit." -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "compte local no trobat." +#: ../../include/follow.php:200 +msgid "Protocol disabled." +msgstr "Protocol desactivat." -#: ../../include/follow.php:224 +#: ../../include/follow.php:211 msgid "Cannot connect to yourself." msgstr "No pots connectar amb tu mateix." -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Privacitat de grup predeterminada per a contactes nous" - -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Tots els canals" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "edita" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Col·leccions" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Edita col·leccions" - -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Afegeix una nova col·lecció" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Canals a cap col·lecció" - -#: ../../include/identity.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" - -#: ../../include/identity.php:67 -msgid "Empty name" -msgstr "Nom buit" - -#: ../../include/identity.php:70 -msgid "Name too long" -msgstr "Nom massa llarg" - -#: ../../include/identity.php:186 -msgid "No account identifier" -msgstr "Sense identificador de compte" - -#: ../../include/identity.php:198 -msgid "Nickname is required." -msgstr "Alies/malnom es requerit." - -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Àlies reservat. Tria un altre." - -#: ../../include/identity.php:292 -msgid "Unable to retrieve created identity" -msgstr "No es pot recuperar la identitat creada" - -#: ../../include/identity.php:350 -msgid "Default Profile" -msgstr "Perfil per Defecte" - -#: ../../include/identity.php:767 -msgid "Requested channel is not available." -msgstr "El canal demanat no està disponible." - -#: ../../include/identity.php:814 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:27 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54 -#: ../../mod/hcard.php:8 ../../mod/layouts.php:29 ../../mod/webpages.php:29 -msgid "Requested profile is not available." -msgstr "El perfil demanat no està disponible." - -#: ../../include/identity.php:977 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Canviar la foto del perfil" - -#: ../../include/identity.php:983 -msgid "Profiles" -msgstr "Perfils" - -#: ../../include/identity.php:983 -msgid "Manage/edit profiles" -msgstr "Gestiona/edita perfils" - -#: ../../include/identity.php:984 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Crear un Perfil Nou" - -#: ../../include/identity.php:999 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Imatge del Perfil" - -#: ../../include/identity.php:1002 -msgid "visible to everybody" -msgstr "visible per tothom" - -#: ../../include/identity.php:1003 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Editar visibilitat" - -#: ../../include/identity.php:1019 ../../include/identity.php:1258 -msgid "Gender:" -msgstr "Gènere:" - -#: ../../include/identity.php:1020 ../../include/identity.php:1302 -msgid "Status:" -msgstr "Estatus:" - -#: ../../include/identity.php:1021 ../../include/identity.php:1313 -msgid "Homepage:" -msgstr "Pàgina Personal:" - -#: ../../include/identity.php:1022 -msgid "Online Now" -msgstr "Ara en Linia" - -#: ../../include/identity.php:1105 ../../include/identity.php:1183 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../include/identity.php:1106 ../../include/identity.php:1184 -msgid "F d" -msgstr "F d" - -#: ../../include/identity.php:1151 ../../include/identity.php:1223 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[avui]" - -#: ../../include/identity.php:1162 -msgid "Birthday Reminders" -msgstr "Recordatori d'Aniversaris" - -#: ../../include/identity.php:1163 -msgid "Birthdays this week:" -msgstr "Aniversari aquesta setmana:" - -#: ../../include/identity.php:1216 -msgid "[No description]" -msgstr "[Sense descripció]" - -#: ../../include/identity.php:1234 -msgid "Event Reminders" -msgstr "Recordatori d'Events" - -#: ../../include/identity.php:1235 -msgid "Events this week:" -msgstr "Event aquesta setmana:" - -#: ../../include/identity.php:1256 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "Nom Complet:" - -#: ../../include/identity.php:1263 -msgid "Like this channel" -msgstr "M'agrada aquest canal" - -#: ../../include/identity.php:1287 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/identity.php:1288 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1295 -msgid "Birthday:" -msgstr "Aniversari:" - -#: ../../include/identity.php:1299 ../../mod/directory.php:297 -msgid "Age:" -msgstr "Edat:" - -#: ../../include/identity.php:1308 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/identity.php:1311 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Preferència Sexual:" - -#: ../../include/identity.php:1315 ../../mod/profiles.php:693 -#: ../../mod/directory.php:313 -msgid "Hometown:" -msgstr "Ciutat Natal:" - -#: ../../include/identity.php:1317 -msgid "Tags:" -msgstr "Etiquetes:" - -#: ../../include/identity.php:1319 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Idees Polítiques:" - -#: ../../include/identity.php:1321 -msgid "Religion:" -msgstr "Religió:" - -#: ../../include/identity.php:1323 ../../mod/directory.php:315 -msgid "About:" -msgstr "Sobre mi:" - -#: ../../include/identity.php:1325 -msgid "Hobbies/Interests:" -msgstr "Aficions/Interessos:" - -#: ../../include/identity.php:1327 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "M'agrada:" - -#: ../../include/identity.php:1329 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "No li agrada:" - -#: ../../include/identity.php:1331 -msgid "Contact information and Social Networks:" -msgstr "Informació de contacte i Xarxes Socials:" - -#: ../../include/identity.php:1333 -msgid "My other channels:" -msgstr "Els meus altres canals:" - -#: ../../include/identity.php:1335 -msgid "Musical interests:" -msgstr "Interessos Musicals:" - -#: ../../include/identity.php:1337 -msgid "Books, literature:" -msgstr "Llibres, literatura:" - -#: ../../include/identity.php:1339 -msgid "Television:" -msgstr "Televisió:" - -#: ../../include/identity.php:1341 -msgid "Film/dance/culture/entertainment:" -msgstr "Películes/Dança/Cultura/Entreteniment:" - -#: ../../include/identity.php:1343 -msgid "Love/Romance:" -msgstr "Amor/Romace:" - -#: ../../include/identity.php:1345 -msgid "Work/employment:" -msgstr "Treball/feina:" - -#: ../../include/identity.php:1347 -msgid "School/education:" -msgstr "Escola/educació:" - -#: ../../include/identity.php:1367 -msgid "Like this thing" -msgstr "M'agrada això" - -#: ../../include/items.php:413 ../../mod/bulksetclose.php:11 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../index.php:396 -msgid "Permission denied" -msgstr "Permís denegat" - -#: ../../include/items.php:1101 ../../include/items.php:1147 -msgid "(Unknown)" -msgstr "(Desconegut)" - -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "Visible per tothom a la Internet" - -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "Visible només per tú." - -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "Visible per tothom en aquesta xarxa." - -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "Visible per tothom autenticat." - -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible per a tothom a %s." - -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "Visible per a totes les connexions." - -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "Visible per a les connexions aprovades." - -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "Visible per a específiques connexions." - -#: ../../include/items.php:4310 ../../mod/admin.php:167 -#: ../../mod/admin.php:1025 ../../mod/admin.php:1225 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:74 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Element no trobat." - -#: ../../include/items.php:4787 ../../mod/bulksetclose.php:51 -#: ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Col·lecció no trobada." - -#: ../../include/items.php:4803 -msgid "Collection is empty." -msgstr "La col·lecció esta buida." - -#: ../../include/items.php:4810 -#, php-format -msgid "Collection: %s" -msgstr "Col·lecció: %s" - -#: ../../include/items.php:4820 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "Connexió: %s" - -#: ../../include/items.php:4822 -msgid "Connection not found." -msgstr "Connexió no trobada." - #: ../../include/js_strings.php:5 msgid "Delete this item?" -msgstr "Vols esborrar aquest element?" +msgstr "Esborrar aquest item?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostra'n menys" +#, php-format +msgid "%s show less" +msgstr "%smostra'n menys" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandeix" +#, php-format +msgid "%s expand" +msgstr "%sdesplega" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] colapsa" +#, php-format +msgid "%s collapse" +msgstr "%splega" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -3353,27 +13253,27 @@ msgstr "Contrasenya massa curta" #: ../../include/js_strings.php:12 msgid "Passwords do not match" -msgstr "Les contrasenyes no coincideixen" +msgstr "Les paraules de pas no coincideixen" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "tothom" #: ../../include/js_strings.php:14 msgid "Secret Passphrase" -msgstr "Contrasenya secreta" +msgstr "Contrasenya Secreta" #: ../../include/js_strings.php:15 msgid "Passphrase hint" -msgstr "Pista per la contrasenya" +msgstr "Pista per la Contrasenya" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Avís: Els permisos han canviat però encara no han estat enviats." +msgstr "Avis: Els permisos han canviat però encara no han estat enviats." #: ../../include/js_strings.php:17 msgid "close all" -msgstr "tanca-ho tot" +msgstr "tanca tot" #: ../../include/js_strings.php:18 msgid "Nothing new here" @@ -3381,12 +13281,7 @@ msgstr "Res de nou per aquí" #: ../../include/js_strings.php:19 msgid "Rate This Channel (this is public)" -msgstr "Valora aquest Canal (això es farà públic)" - -#: ../../include/js_strings.php:20 ../../mod/connedit.php:683 -#: ../../mod/rate.php:156 -msgid "Rating" -msgstr "Valoració" +msgstr "Valora Aquest Canal (això es farà públic)" #: ../../include/js_strings.php:21 msgid "Describe (optional)" @@ -3394,5777 +13289,1489 @@ msgstr "Descriu (opcional)" #: ../../include/js_strings.php:23 msgid "Please enter a link URL" -msgstr "Si us plau, introdueix una adreça URL" +msgstr "Si us plau, entra l'enllaç URL" #: ../../include/js_strings.php:24 msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Hi ha canvis sense desar, estàs segur que vols abandonar la pàgina?" #: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +msgid "lovely" +msgstr "encantador/a" #: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +msgid "wonderful" +msgstr "meravellós/a" #: ../../include/js_strings.php:28 -msgid "ago" -msgstr "enrere" +msgid "fantastic" +msgstr "fantàstic/a" #: ../../include/js_strings.php:29 -msgid "from now" -msgstr "des d'ara" +msgid "great" +msgstr "genial" #: ../../include/js_strings.php:30 -msgid "less than a minute" -msgstr "menys d'un minut" +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "El nom que has escollit o bé ja està agafat o bé no és vàlid. Pots fer servir la suggerència (" #: ../../include/js_strings.php:31 +msgid ") or enter a new one." +msgstr ") o provar amb un altre nom." + +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "El nom que has triat és vàlid." + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "Cal un nom de canal." + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "Això és un" + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr "nom del canal" + +#: ../../include/js_strings.php:41 +msgid "timeago.prefixAgo" +msgstr "fa" + +#: ../../include/js_strings.php:42 +msgid "timeago.prefixFromNow" +msgstr "d'aquí a" + +#: ../../include/js_strings.php:43 +msgid "timeago.suffixAgo" +msgstr "NONE" + +#: ../../include/js_strings.php:44 +msgid "timeago.suffixFromNow" +msgstr " NONE" + +#: ../../include/js_strings.php:47 +msgid "less than a minute" +msgstr "uns segons" + +#: ../../include/js_strings.php:48 msgid "about a minute" msgstr "prop d'un minut" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:49 #, php-format msgid "%d minutes" msgstr "%d minuts" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:50 msgid "about an hour" msgstr "prop d'una hora" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:51 #, php-format msgid "about %d hours" -msgstr "al voltant de %d hores" +msgstr "unes %d hores" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:52 msgid "a day" msgstr "un dia" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:53 #, php-format msgid "%d days" msgstr "%d dies" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:54 msgid "about a month" msgstr "prop d'un mes" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:55 #, php-format msgid "%d months" msgstr "%d mesos" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:56 msgid "about a year" msgstr "prop d'un any" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:57 #, php-format msgid "%d years" msgstr "%d anys" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:58 msgid " " msgstr " " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:59 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Pàgina Nova" +#: ../../include/js_strings.php:65 +msgctxt "long" +msgid "May" +msgstr "maig" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" +#: ../../include/js_strings.php:73 +msgid "Jan" +msgstr "gen." + +#: ../../include/js_strings.php:74 +msgid "Feb" +msgstr "feb." + +#: ../../include/js_strings.php:75 +msgid "Mar" +msgstr "març" + +#: ../../include/js_strings.php:76 +msgid "Apr" +msgstr "abr." + +#: ../../include/js_strings.php:77 +msgctxt "short" +msgid "May" +msgstr "maig" + +#: ../../include/js_strings.php:78 +msgid "Jun" +msgstr "juny" + +#: ../../include/js_strings.php:79 +msgid "Jul" +msgstr "jul." + +#: ../../include/js_strings.php:80 +msgid "Aug" +msgstr "ag." + +#: ../../include/js_strings.php:81 +msgid "Sep" +msgstr "set." + +#: ../../include/js_strings.php:82 +msgid "Oct" +msgstr "oct." + +#: ../../include/js_strings.php:83 +msgid "Nov" +msgstr "nov." + +#: ../../include/js_strings.php:84 +msgid "Dec" +msgstr "des." + +#: ../../include/js_strings.php:92 +msgid "Sun" +msgstr "dg." + +#: ../../include/js_strings.php:93 +msgid "Mon" +msgstr "dl." + +#: ../../include/js_strings.php:94 +msgid "Tue" +msgstr "dm." + +#: ../../include/js_strings.php:95 +msgid "Wed" +msgstr "dc." + +#: ../../include/js_strings.php:96 +msgid "Thu" +msgstr "dj." + +#: ../../include/js_strings.php:97 +msgid "Fri" +msgstr "dv." + +#: ../../include/js_strings.php:98 +msgid "Sat" +msgstr "ds." + +#: ../../include/js_strings.php:99 +msgctxt "calendar" +msgid "today" +msgstr "avui" + +#: ../../include/js_strings.php:100 +msgctxt "calendar" +msgid "month" +msgstr "mes" + +#: ../../include/js_strings.php:101 +msgctxt "calendar" +msgid "week" +msgstr "setmana" + +#: ../../include/js_strings.php:102 +msgctxt "calendar" +msgid "day" +msgstr "dia" + +#: ../../include/js_strings.php:103 +msgctxt "calendar" +msgid "All day" +msgstr "Tot el dia" + +#: ../../include/message.php:40 +msgid "Unable to determine sender." +msgstr "incapaç de determinar el remitent" + +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "No s'ha proporcionat bústia." + +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:214 +msgid "Stored post could not be verified." +msgstr "L'entrada guardada no pot ser verificada" + +#: ../../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/attach.php:265 ../../include/attach.php:374 +msgid "Item was not found." +msgstr "Article no trobat." + +#: ../../include/attach.php:282 +msgid "Unknown error." +msgstr "Error desconegut." + +#: ../../include/attach.php:567 +msgid "No source file." +msgstr "No hi ha arxiu d'origen." + +#: ../../include/attach.php:589 +msgid "Cannot locate file to replace" +msgstr "No trobo l'arxiu a reemplaçar" + +#: ../../include/attach.php:608 +msgid "Cannot locate file to revise/update" +msgstr "No trobo l'arxiu a revisar/actualitzar" + +#: ../../include/attach.php:750 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "L'arxiu excedeix la mida limit de %d" + +#: ../../include/attach.php:771 +#, 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:953 +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:982 +msgid "Stored file could not be verified. Upload failed." +msgstr "L'arxiu guardat no es pot verificar. Pujada fallida." + +#: ../../include/attach.php:1056 ../../include/attach.php:1072 +msgid "Path not available." +msgstr "Trajectòria no disponible" + +#: ../../include/attach.php:1121 ../../include/attach.php:1286 +msgid "Empty pathname" +msgstr "Trajèctoria vuida." + +#: ../../include/attach.php:1147 +msgid "duplicate filename or path" +msgstr "Nom o trajectòria duplicat" + +#: ../../include/attach.php:1172 +msgid "Path not found." +msgstr "Trajectòria no trobada." + +#: ../../include/attach.php:1240 +msgid "mkdir failed." +msgstr "mkdir va fracassar." + +#: ../../include/attach.php:1244 +msgid "database storage failed." +msgstr "Arxiu de base de dades va fallar." + +#: ../../include/attach.php:1292 +msgid "Empty path" +msgstr "Trajèctoria vuida" + +#: ../../include/security.php:541 +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/items.php:891 ../../include/items.php:951 +msgid "(Unknown)" +msgstr "(Desconegut)" + +#: ../../include/items.php:1137 +msgid "Visible to anybody on the internet." +msgstr "Visible per tothom a la Internet" + +#: ../../include/items.php:1139 +msgid "Visible to you only." +msgstr "Visible només per tú." + +#: ../../include/items.php:1141 +msgid "Visible to anybody in this network." +msgstr "Visible per tothom en aquesta xarxa." + +#: ../../include/items.php:1143 +msgid "Visible to anybody authenticated." +msgstr "Visible per tothom autenticat." + +#: ../../include/items.php:1145 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible per a tothom a %s." + +#: ../../include/items.php:1147 +msgid "Visible to all connections." +msgstr "Visible per a totes les connexions." + +#: ../../include/items.php:1149 +msgid "Visible to approved connections." +msgstr "Visible per a les connexions aprovades." + +#: ../../include/items.php:1151 +msgid "Visible to specific connections." +msgstr "Visible per a específiques connexions." + +#: ../../include/items.php:4141 +msgid "Privacy group is empty." +msgstr "El grup de privacitat està buit." + +#: ../../include/items.php:4148 +#, php-format +msgid "Privacy group: %s" +msgstr "Grup de privacitat: %s" + +#: ../../include/items.php:4160 +msgid "Connection not found." +msgstr "Connexió no trobada." + +#: ../../include/items.php:4509 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../include/items.php:4700 +#, php-format +msgid "[Edited %s]" +msgstr "[S'ha editat %s]" + +#: ../../include/items.php:4700 +msgctxt "edit_activity" +msgid "Post" +msgstr "Entrada" + +#: ../../include/items.php:4700 +msgctxt "edit_activity" +msgid "Comment" +msgstr "Comentari" + +#: ../../include/channel.php:35 +msgid "Unable to obtain identity information from database" +msgstr "Incapaç de trobar l'informació d'identitat a la base de dades" + +#: ../../include/channel.php:68 +msgid "Empty name" +msgstr "Nom buit" + +#: ../../include/channel.php:71 +msgid "Name too long" +msgstr "Nom massa llarg" + +#: ../../include/channel.php:188 +msgid "No account identifier" +msgstr "Sense identificador de compte" + +#: ../../include/channel.php:200 +msgid "Nickname is required." +msgstr "Alies/malnom es requerit." + +#: ../../include/channel.php:277 +msgid "Unable to retrieve created identity" +msgstr "No es pot recuperar la identitat creada" + +#: ../../include/channel.php:373 +msgid "Default Profile" +msgstr "Perfil per Defecte" + +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "No s'ha pogut carregar la identitat modificada" + +#: ../../include/channel.php:1297 +msgid "Create New Profile" +msgstr "Crear un Perfil Nou" + +#: ../../include/channel.php:1318 +msgid "Visible to everybody" +msgstr "Visible per tothom" + +#: ../../include/channel.php:1395 ../../include/channel.php:1523 +msgid "Gender:" +msgstr "Gènere:" + +#: ../../include/channel.php:1397 ../../include/channel.php:1591 +msgid "Homepage:" +msgstr "Pàgina Personal:" + +#: ../../include/channel.php:1398 +msgid "Online Now" +msgstr "Ara en Linia" + +#: ../../include/channel.php:1451 +msgid "Change your profile photo" +msgstr "Canvia la foto de peril" + +#: ../../include/channel.php:1482 +msgid "Trans" +msgstr "Trans" + +#: ../../include/channel.php:1528 +msgid "Like this channel" +msgstr "M'agrada aquest canal" + +#: ../../include/channel.php:1552 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1553 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1560 +msgid "Birthday:" +msgstr "Aniversari:" + +#: ../../include/channel.php:1573 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/channel.php:1585 +msgid "Tags:" +msgstr "Etiquetes:" + +#: ../../include/channel.php:1589 +msgid "Sexual Preference:" +msgstr "Preferència Sexual:" + +#: ../../include/channel.php:1595 +msgid "Political Views:" +msgstr "Idees Polítiques:" + +#: ../../include/channel.php:1597 +msgid "Religion:" +msgstr "Religió:" + +#: ../../include/channel.php:1601 +msgid "Hobbies/Interests:" +msgstr "Aficions/Interessos:" + +#: ../../include/channel.php:1603 +msgid "Likes:" +msgstr "Agrada:" + +#: ../../include/channel.php:1605 +msgid "Dislikes:" +msgstr "Desagrada:" + +#: ../../include/channel.php:1607 +msgid "Contact information and Social Networks:" +msgstr "Informació de contacte i Xarxes Socials:" + +#: ../../include/channel.php:1609 +msgid "My other channels:" +msgstr "Els meus altres canals:" + +#: ../../include/channel.php:1611 +msgid "Musical interests:" +msgstr "Interessos Musicals:" + +#: ../../include/channel.php:1613 +msgid "Books, literature:" +msgstr "Llibres, literatura:" + +#: ../../include/channel.php:1615 +msgid "Television:" +msgstr "Televisió:" + +#: ../../include/channel.php:1617 +msgid "Film/dance/culture/entertainment:" +msgstr "Películes/Dança/Cultura/Entreteniment:" + +#: ../../include/channel.php:1619 +msgid "Love/Romance:" +msgstr "Amor/Romace:" + +#: ../../include/channel.php:1621 +msgid "Work/employment:" +msgstr "Treball/feina:" + +#: ../../include/channel.php:1623 +msgid "School/education:" +msgstr "Escola/educació:" + +#: ../../include/channel.php:1646 +msgid "Like this thing" +msgstr "M'agrada això" + +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "l d \\d\\e/\\d' F de Y \\@ H:i T" + +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Inicia:" + +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Acaba:" + +#: ../../include/event.php:1011 +msgid "This event has been added to your calendar." +msgstr "Aquest succés ha estat afegit al teu calendari." + +#: ../../include/event.php:1227 +msgid "Not specified" +msgstr "Sense especificar" + +#: ../../include/event.php:1228 +msgid "Needs Action" +msgstr "Necessita una Acció" + +#: ../../include/event.php:1229 +msgid "Completed" +msgstr "Completat" + +#: ../../include/event.php:1230 +msgid "In Process" +msgstr "En Procès" + +#: ../../include/event.php:1231 +msgid "Cancelled" +msgstr "Cancel·lat" + +#: ../../include/event.php:1310 ../../include/connections.php:698 +msgid "Home, Voice" +msgstr "Casa, veu" + +#: ../../include/event.php:1311 ../../include/connections.php:699 +msgid "Home, Fax" +msgstr "Casa, fax" + +#: ../../include/event.php:1313 ../../include/connections.php:701 +msgid "Work, Voice" +msgstr "Feina, veu" + +#: ../../include/event.php:1314 ../../include/connections.php:702 +msgid "Work, Fax" +msgstr "Feina, fax" + +#: ../../include/network.php:760 +msgid "view full size" +msgstr "Veure a mida competa" + +#: ../../include/network.php:1766 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:1767 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:1771 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:1773 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:1774 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:1775 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "Tria un idioma alternatiu" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "Qui pot veure això?" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Selecció a mida" + +#: ../../include/acl_selectors.php:115 +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:116 +msgid "Show" msgstr "Mostra" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Accions" +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "No mostrar" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Enllaç de la pàgina" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Títol" - -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:108 ../../mod/webpages.php:192 -msgid "Created" -msgstr "Creat" - -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:109 ../../mod/webpages.php:193 -msgid "Edited" -msgstr "Editat" - -#: ../../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 photo albums" -msgstr "Pot veure el meus àlbums de fotos" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Pot veure les meves connexions" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Pot veure al meu magatzem d'arxius" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Pot veure les meves pàgines web" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Pot enviar-me el flux i entrades del seu canal" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pot fer entrades a la meva pàgina de canal (\"mur\")" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Pot fer comentaris o dir si agrada en les meves entrades" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Pot enviar-me un missatge de correu privat" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Pot enviar fotos al meus àlbums de fotos" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Pot dir si agrada/desagrada " - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Perfils i altres coses a més d'entrades/comentaris" - -#: ../../include/permissions.php:41 -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:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançat - capaç de crear canals de grups de foro" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Pot xatejar amb mi (si estic disponible)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Pot escriure al meu magatzem d'arxius" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Pot editar les meves pàgines web" - -#: ../../include/permissions.php:46 -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:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Quelcom avançat - molt útil en comunitats obertes" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Pot administrar els meus recursos del canal" - -#: ../../include/permissions.php:48 +#: ../../include/acl_selectors.php:150 +#, php-format msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremadament avançat. No toquis res si no saps que estàs fent" +"Post permissions %s cannot be changed %s after a post is shared.
These" +" permissions set who is allowed to view the post." +msgstr "Els permisos d'entrada %s no poden esser canviats %s posteriorment a que una entrada ja està compartida.
Aquest ajust dels permisos indica qui pot veure l'entrada." -#: ../../include/permissions.php:893 -msgid "Social Networking" -msgstr "Xarxes Socials" +#: ../../include/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No s'ha trobat informació de DNS pel servidor de base de dades '%s'" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Més aviat Públic" +#: ../../include/bbcode.php:200 ../../include/bbcode.php:1202 +#: ../../include/bbcode.php:1205 ../../include/bbcode.php:1210 +#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1216 +#: ../../include/bbcode.php:1219 ../../include/bbcode.php:1224 +#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 +#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1238 +#: ../../include/bbcode.php:1241 +msgid "Image/photo" +msgstr "Imatge/foto" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Restringit" +#: ../../include/bbcode.php:239 ../../include/bbcode.php:1252 +msgid "Encrypted content" +msgstr "Contingut encriptat" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privat" +#: ../../include/bbcode.php:255 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "Instaŀla l'element %2$s del tipus %1$s" -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Foro de Comunitat" +#: ../../include/bbcode.php:259 +#, 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/permissions.php:895 -msgid "Feed Republish" -msgstr "Republicador" +#: ../../include/bbcode.php:350 +msgid "card" +msgstr "targeta" -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Objectiu Especial" +#: ../../include/bbcode.php:352 +msgid "article" +msgstr "article" -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Celebritat/Faristol" +#: ../../include/bbcode.php:435 ../../include/bbcode.php:443 +msgid "Click to open/close" +msgstr "Clic per obrir/tancar" -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Repositori de Grup" +#: ../../include/bbcode.php:443 +msgid "spoiler" +msgstr "xafa guitarres" -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Altres" +#: ../../include/bbcode.php:456 +msgid "View article" +msgstr "Mostra l'article" -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Personalitzat/Mode Expert" +#: ../../include/bbcode.php:456 +msgid "View summary" +msgstr "Mostra'n un resum" -#: ../../include/photos.php:94 +#: ../../include/bbcode.php:1190 +msgid "$1 wrote:" +msgstr "$1 va escriure:" + +#: ../../include/oembed.php:224 +msgid "View PDF" +msgstr "Mostra el pdf" + +#: ../../include/oembed.php:347 +msgid " by " +msgstr "de" + +#: ../../include/oembed.php:348 +msgid " on " +msgstr "a" + +#: ../../include/oembed.php:377 +msgid "Embedded content" +msgstr "Contingut embegut" + +#: ../../include/oembed.php:386 +msgid "Embedding disabled" +msgstr "Incorporació desactivada" + +#: ../../include/zid.php:351 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s dóna la benvinguda a %2$s" + +#: ../../include/features.php:56 +msgid "General Features" +msgstr "Característiques Generals" + +#: ../../include/features.php:61 +msgid "Display new member quick links menu" +msgstr "Mostra el menú d'enllaços ràpids per a nous membres" + +#: ../../include/features.php:69 +msgid "Advanced Profiles" +msgstr "Perfils Avançats" + +#: ../../include/features.php:70 +msgid "Additional profile sections and selections" +msgstr "Seccions i seleccions addicionals de perfils " + +#: ../../include/features.php:78 +msgid "Profile Import/Export" +msgstr "Importar/Exportar Perfil" + +#: ../../include/features.php:79 +msgid "Save and load profile details across sites/channels" +msgstr "Guarda i carrega els detalls del perfil al llarg dels llocs/canals" + +#: ../../include/features.php:87 +msgid "Web Pages" +msgstr "Pàgines Web" + +#: ../../include/features.php:88 +msgid "Provide managed web pages on your channel" +msgstr "Proporcionar pàgines web gestionades al seu canal" + +#: ../../include/features.php:97 +msgid "Provide a wiki for your channel" +msgstr "Proporciona una wiki per al teu canal" + +#: ../../include/features.php:114 +msgid "Private Notes" +msgstr "Notes Privades" + +#: ../../include/features.php:115 +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:124 +msgid "Create personal planning cards" +msgstr "Crea targetes de planificació personal" + +#: ../../include/features.php:134 +msgid "Create interactive articles" +msgstr "Crea articles interactius" + +#: ../../include/features.php:142 +msgid "Navigation Channel Select" +msgstr "Navegació pel Selector de Canals" + +#: ../../include/features.php:143 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Canvieu els canals directament des del menú desplegable de navegació" + +#: ../../include/features.php:151 +msgid "Photo Location" +msgstr "Ubicació de la Foto" + +#: ../../include/features.php:152 +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:160 +msgid "Access Controlled Chatrooms" +msgstr "Accés Controlat a les Sales de Xat" + +#: ../../include/features.php:161 +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:170 +msgid "Smart Birthdays" +msgstr "Aniversaris Intel·ligents" + +#: ../../include/features.php:171 +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:179 +msgid "Event Timezone Selection" +msgstr "Zona horària dels esdeveniments" + +#: ../../include/features.php:180 +msgid "Allow event creation in timezones other than your own." +msgstr "Permet crear esdeveniments en zones horàries diferents a la teva." + +#: ../../include/features.php:189 +msgid "Premium Channel" +msgstr "Privilegis del Canal" + +#: ../../include/features.php:190 +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:198 +msgid "Advanced Directory Search" +msgstr "Cerca de directori avançada" + +#: ../../include/features.php:199 +msgid "Allows creation of complex directory search queries" +msgstr "Permet fer cerques de directori complexes" + +#: ../../include/features.php:207 +msgid "Advanced Theme and Layout Settings" +msgstr "Configuració de disseny i de tema avançada" + +#: ../../include/features.php:208 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permet configurar al detall els temes i els dissenys de pàgina" + +#: ../../include/features.php:217 +msgid "Access Control and Permissions" +msgstr "Control d'accés i permisos" + +#: ../../include/features.php:222 +msgid "Enable management and selection of privacy groups" +msgstr "Habilita la gestió i selecció de grups de privacitat" + +#: ../../include/features.php:230 +msgid "Multiple Profiles" +msgstr "Multiples Perfils" + +#: ../../include/features.php:231 +msgid "Ability to create multiple profiles" +msgstr "Capacitat per crear multiples perfils" + +#: ../../include/features.php:241 +msgid "Create custom connection permission limits" +msgstr "Personalitza els límits de permisos de les connexions" + +#: ../../include/features.php:249 +msgid "OAuth1 Clients" +msgstr "Clients OAuth1" + +#: ../../include/features.php:250 +msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." +msgstr "Gestiona els tokens d'autenticació OAuth1 per al mòbil i aplicacions remotes." + +#: ../../include/features.php:258 +msgid "OAuth2 Clients" +msgstr "Clients OAuth2" + +#: ../../include/features.php:259 +msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." +msgstr "Gestiona els tokens d'autenticació OAuth2 per al mòbil i aplicacions remotes." + +#: ../../include/features.php:267 +msgid "Access Tokens" +msgstr "Tokens d'accés" + +#: ../../include/features.php:268 +msgid "Create access tokens so that non-members can access private content." +msgstr "Crea tokens d'accés per tal que no-membres puguis accedir contingut privat." + +#: ../../include/features.php:279 +msgid "Post Composition Features" +msgstr "Característiques de Composició d'Entrades" + +#: ../../include/features.php:283 +msgid "Large Photos" +msgstr "Grans Fotos" + +#: ../../include/features.php:284 +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:293 +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:301 +msgid "Even More Encryption" +msgstr "Encara Més Encriptació" + +#: ../../include/features.php:302 +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:310 +msgid "Enable Voting Tools" +msgstr "Habilitar Eines de Votació" + +#: ../../include/features.php:311 +msgid "Provide a class of post which others can vote on" +msgstr "Proporcionar una classe d'entrada que altres puguin votar" + +#: ../../include/features.php:319 +msgid "Disable Comments" +msgstr "Deshabilita els comentaris" + +#: ../../include/features.php:320 +msgid "Provide the option to disable comments for a post" +msgstr "Proporciona l'opció de deshabilitar els comentaris per a una entrada" + +#: ../../include/features.php:328 +msgid "Delayed Posting" +msgstr "Retarda Publicació" + +#: ../../include/features.php:329 +msgid "Allow posts to be published at a later date" +msgstr "Permet que les publicacions es publiquin en data posterior" + +#: ../../include/features.php:337 +msgid "Content Expiration" +msgstr "Expiració del Contingut" + +#: ../../include/features.php:338 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "eliminarà entrades/comentaris i/o missatges privats en un període determinat de temps." + +#: ../../include/features.php:346 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Suprimeix Duplicats de Publicacions/Comentaris" + +#: ../../include/features.php:347 +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:355 +msgid "Auto-save drafts of posts and comments" +msgstr "Desa automàticament esborranys de les entrades i comentaris" + +#: ../../include/features.php:356 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help" +" prevent accidental loss of compositions" +msgstr "Desa esborranys automàticament en l'emmagatzematge local del navegador per a evitar perdre escrits per a comentaris o entrades" + +#: ../../include/features.php:367 +msgid "Network and Stream Filtering" +msgstr "Filtrat de Xarxa i Flux" + +#: ../../include/features.php:371 +msgid "Search by Date" +msgstr "Cerca per Data" + +#: ../../include/features.php:372 +msgid "Ability to select posts by date ranges" +msgstr "Capacitat per seleccionar entrades per rang de dates" + +#: ../../include/features.php:382 +msgid "Save search terms for re-use" +msgstr "Guardar els termin de la cerca per a re-usar" + +#: ../../include/features.php:390 +msgid "Alternate Stream Order" +msgstr "Diversos ordres al flux" + +#: ../../include/features.php:391 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "Permet canviar l'ordre dels continguts en el flux: segons la data de les entrades, segons la data de l'últim comentari, o segons la data de cada missatge sense agrupar per converses" + +#: ../../include/features.php:399 +msgid "Contact Filter" +msgstr "Filtre de contactes" + +#: ../../include/features.php:400 +msgid "Ability to display only posts of a selected contact" +msgstr "Permet mostrar només entrades d'un contacte determinat" + +#: ../../include/features.php:408 +msgid "Forum Filter" +msgstr "Filtre de fòrums" + +#: ../../include/features.php:409 +msgid "Ability to display only posts of a specific forum" +msgstr "Permet mostrar només entrades d'un fòrum determinat" + +#: ../../include/features.php:417 +msgid "Personal Posts Filter" +msgstr "Filtre d'interaccions amb mi" + +#: ../../include/features.php:418 +msgid "Ability to display only posts that you've interacted on" +msgstr "Permet mostrar només les entrades amb què has interactuat" + +#: ../../include/features.php:426 +msgid "Affinity Tool" +msgstr "Eina d'Afinitat" + +#: ../../include/features.php:427 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtre d'activitat del flux per importància de la relació" + +#: ../../include/features.php:436 +msgid "Show friend and connection suggestions" +msgstr "Suggereix connexions o amistats" + +#: ../../include/features.php:444 +msgid "Connection Filtering" +msgstr "Filtre de Connexió" + +#: ../../include/features.php:445 +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:457 +msgid "Post/Comment Tools" +msgstr "Eina d'Entrades/Comentaris" + +#: ../../include/features.php:461 +msgid "Community Tagging" +msgstr "Etiquetat per la Comunitat" + +#: ../../include/features.php:462 +msgid "Ability to tag existing posts" +msgstr "Capacitat d'etiquetar entrades existents" + +#: ../../include/features.php:470 +msgid "Post Categories" +msgstr "Categories d'Entrades" + +#: ../../include/features.php:471 +msgid "Add categories to your posts" +msgstr "Afegeix categoria a la teva entrada" + +#: ../../include/features.php:479 +msgid "Emoji Reactions" +msgstr "Reaccions dels Emoji" + +#: ../../include/features.php:480 +msgid "Add emoji reaction ability to posts" +msgstr "Afegeix un emoji habilitat per reaccionar a entrades" + +#: ../../include/features.php:489 +msgid "Ability to file posts under folders" +msgstr "Capacitat de arxivar entrades en les carpetes" + +#: ../../include/features.php:497 +msgid "Dislike Posts" +msgstr "No Agrada l'Entrada" + +#: ../../include/features.php:498 +msgid "Ability to dislike posts/comments" +msgstr "Capacitat per marcar amb \"No Agrada\" les entrades/comentaris" + +#: ../../include/features.php:506 +msgid "Star Posts" +msgstr "Entrades Excel·lents" + +#: ../../include/features.php:507 +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:515 +msgid "Tag Cloud" +msgstr "Núvol d'Etiquetes." + +#: ../../include/features.php:516 +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/taxonomy.php:320 +msgid "Trending" +msgstr "Tema del moment" + +#: ../../include/taxonomy.php:552 +msgid "Keywords" +msgstr "Paraules clau" + +#: ../../include/taxonomy.php:573 +msgid "have" +msgstr "tinc" + +#: ../../include/taxonomy.php:573 +msgid "has" +msgstr "tens" + +#: ../../include/taxonomy.php:574 +msgid "want" +msgstr "vull" + +#: ../../include/taxonomy.php:574 +msgid "wants" +msgstr "vols" + +#: ../../include/taxonomy.php:575 +msgid "likes" +msgstr "agrada" + +#: ../../include/taxonomy.php:576 +msgid "dislikes" +msgstr "desagrada" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "Adreça de correu electrònic no vàlida" + +#: ../../include/account.php:38 +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:44 +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:76 +msgid "An invitation is required." +msgstr "Es requereix Invitació" + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "L'invitació no ha pogut ser verificada" + +#: ../../include/account.php:158 +msgid "Please enter the required information." +msgstr "Entra la informació sol·licitada" + +#: ../../include/account.php:225 +msgid "Failed to store account information." +msgstr "Ha fallat guardar la informació del compte" + +#: ../../include/account.php:314 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Inscripció confirmada per %s" + +#: ../../include/account.php:385 +#, php-format +msgid "Registration request at %s" +msgstr "Sol·licitud d'inscripció a %s" + +#: ../../include/account.php:407 +msgid "your registration password" +msgstr "la teva contrasenya registrada" + +#: ../../include/account.php:413 ../../include/account.php:475 +#, php-format +msgid "Registration details for %s" +msgstr "Detalls de l'inscripció per %s" + +#: ../../include/account.php:486 +msgid "Account approved." +msgstr "Compte aprovat." + +#: ../../include/account.php:526 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscripció revocada per %s" + +#: ../../include/account.php:805 ../../include/account.php:807 +msgid "Click here to upgrade." +msgstr "Feu clic aquí per actualitzar." + +#: ../../include/account.php:813 +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:818 +msgid "This action is not available under your subscription plan." +msgstr "Aquesta acció no està disponible en el seu pla de subscripció." + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "Aniversari" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "Edat:" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD o MM-DD" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "fa menys d'un segon" + +#: ../../include/datetime.php:262 +#, 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:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "any" +msgstr[1] "anys" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "mesos " + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "setmana" +msgstr[1] "setmanes" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dies" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hores" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minut" +msgstr[1] "minuts" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segon" +msgstr[1] "segons" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "Aniversari de %1$s" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliç Aniversari %1$s" + +#: ../../include/nav.php:88 +msgid "Remote authentication" +msgstr "Autenticació remota" + +#: ../../include/nav.php:88 +msgid "Click to authenticate to your home hub" +msgstr "Clica per autentificar-te en el teu node" + +#: ../../include/nav.php:94 +msgid "Manage your channels" +msgstr "Gestiona els teus canals" + +#: ../../include/nav.php:97 +msgid "Manage your privacy groups" +msgstr "Gestiona els teus grups de privacitat" + +#: ../../include/nav.php:99 +msgid "Account/Channel Settings" +msgstr "Configuració de compte i canal" + +#: ../../include/nav.php:105 ../../include/nav.php:134 +msgid "End this session" +msgstr "Finalitza aquesta sessió" + +#: ../../include/nav.php:108 +msgid "Your profile page" +msgstr "La teva pàgina de perfil" + +#: ../../include/nav.php:111 +msgid "Manage/Edit profiles" +msgstr "Gestiona/edita els perfils" + +#: ../../include/nav.php:120 ../../include/nav.php:124 +msgid "Sign in" +msgstr "Signatura" + +#: ../../include/nav.php:151 +msgid "Take me home" +msgstr "Porta'm a casa" + +#: ../../include/nav.php:153 +msgid "Log me out of this site" +msgstr "Tanca'm la sessió en aquest lloc web" + +#: ../../include/nav.php:158 +msgid "Create an account" +msgstr "Crear un compte" + +#: ../../include/nav.php:170 +msgid "Help and documentation" +msgstr "Ajuda i documentació" + +#: ../../include/nav.php:185 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "Cerca en el node @nom, !fòrum, #etiqueta, ?documentació, contingut" + +#: ../../include/nav.php:191 +msgid "Site Setup and Configuration" +msgstr "Configuració del node" + +#: ../../include/nav.php:282 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "@nom, !fòrum, #etiqueta, ?documentació, contingut" + +#: ../../include/nav.php:283 +msgid "Please wait..." +msgstr "Si us plau, espera......." + +#: ../../include/nav.php:289 +msgid "Add Apps" +msgstr "Afegeix aplicacions" + +#: ../../include/nav.php:290 +msgid "Arrange Apps" +msgstr "Endreça les aplicacions" + +#: ../../include/nav.php:291 +msgid "Toggle System Apps" +msgstr "Commuta l'estat de les aplicacions de sistema" + +#: ../../include/photos.php:151 #, 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:101 +#: ../../include/photos.php:162 msgid "Image file is empty." msgstr "El fitxer d'imatge esta buit." -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "incapaç de processar la imatge" - -#: ../../include/photos.php:199 +#: ../../include/photos.php:327 msgid "Photo storage failed." msgstr "Fracassà l'emmagatzematge de la Foto" -#: ../../include/photos.php:363 +#: ../../include/photos.php:376 +msgid "a new photo" +msgstr "Una foto nova" + +#: ../../include/photos.php:380 +#, 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:672 msgid "Upload New Photos" msgstr "Puja Noves Fotos" -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Etiquetes" +#: ../../include/zot.php:772 +msgid "Invalid data packet" +msgstr "paquet de dades invàlid" -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Paraules clau" +#: ../../include/zot.php:799 +msgid "Unable to verify channel signature" +msgstr "No es pot verificar la signatura del canal" -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "tinc" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "tens" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "vull" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "vols" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "li agrada" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "no li agrada" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Masculí" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Femení" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualment Masculí" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualment Femení" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Més aviat Masculí" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Més Aviat Femení" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Canvi de Sexe" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexual" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Indefinit" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indecís" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Homes" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Dones" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbianes" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Sense Preferències" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexual" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Verge" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Desviat" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetixiste" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Orgies" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Asexual" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Solter" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Solitari" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponible" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "No Disponible" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Aplastat" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Encapritxat" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Promés" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infidel" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Adicte al Sexe" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amics amb Beneficis" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Ocupat" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Casat" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Casat Imaginàriament" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Parella" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Cohabitant" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Tradició" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Feliç" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "No Cerco" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Llibertí" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Traït" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separat" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Inestable" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorciat" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Divorciat Imaginàriament" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Vidu/ua" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Incert" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es Complicat" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "No Et Fa Res" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Pregunta" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Incapaç de trobar el destinatari." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Incapaç de comunicar amb el canal demanat." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "No puc verificar el canal demanat." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionat te restriccions sobre els missatges privats. L'enviament ha fallat." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Missatge eliminat." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Recupera el missatge." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Envia Missatge Privat" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Per:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Assumpte:" - -#: ../../mod/mail.php:235 ../../mod/mail.php:348 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Envia" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Missatge no trobat." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Elimina el missatge" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Recupera el missatge" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "El missatge s'ha recuperat." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversació Privada" - -#: ../../mod/mail.php:336 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Conversació esborrada" - -#: ../../mod/mail.php:338 -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." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Envia Resposta" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Concentrador no trobat." - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Algunes propostes sobre què pots fer quan ets nou per aquí" - -#: ../../mod/page.php:36 ../../mod/block.php:27 -msgid "Invalid item." -msgstr "Article invàlid." - -#: ../../mod/page.php:52 ../../mod/block.php:39 ../../mod/wall_upload.php:29 -msgid "Channel not found." -msgstr "Canal no trobat." - -#: ../../mod/page.php:89 ../../mod/block.php:75 ../../mod/display.php:110 -#: ../../mod/help.php:79 ../../index.php:245 -msgid "Page not found." -msgstr "Pàgina no trobada." - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "Lorem Ipsum" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "xarxa" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Ajustos de tema actualitzats." - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "Lloc" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Comptes" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "Canals" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "Temes" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Revisa cua" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Configuració del Perfil" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Actualitzacions de Base de Dades" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "Logs" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Característiques del Plugin" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Registre d'usuaris esperant confirmació" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Comptes" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# comptes bloquejats" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# comptes expirats" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# comptes expirant" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Canals" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primari" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# clons" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Cues de missatges" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "Administració" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Sumari" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Comptes registrades" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "Comptes pendents de registre" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Canals registrats" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "Plugins actius" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versió" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "Ajustos del Lloc actualitzats" - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "mòbil" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "experimental" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "no soportat" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "Sí - amb aprovació" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "El meu lloc no es un servidor públic" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "El meu lloc te accès per pagament" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "El meu lloc te lliure accés" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "El meu lloc te comptes gratis amb opció de millores per pagament" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registre" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "Pujar arxiu" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "Polítiques" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "Nom del lloc" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "Senyera/Logo" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "Informació de l'Administrador" - -#: ../../mod/admin.php:463 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informació per contactar amb els administradors del lloc. Mostrada a la pàgina d'informació del lloc. Es pot emprar BBCode aquí" - -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "Idioma del sistema" - -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "Tema del sistema" - -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema per defecte - pot ser sobrescrit pel perfils dels usuaris - Ajustos de canvi del tema" - -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "Tema del sistema per a mòbils" - -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "Tema per a aparells mòbils" - -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "Activat el Protocol Diaspora" - -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Comunicar amb Diaspora i Friendica - experimental" - -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "Permetre Retroalimentadors com Connexions" - -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "(Demana molts recursos del sistema)" - -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "Mida màxima d'imatge" - -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Mida màxima en bytes de imatges pujades. Per defecte es 0, el que vol dir sense límits." - -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "Permet aquest lloc registre de nous membres?" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "text de registre" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "Es mostrarà preminentment a la pàgina de registre" - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'identificació)" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "exemple: 'públic' per a mostrar un flux públic, 'page/sys/home' per a mostrar una pàgina web dita 'home' o 'include:home.html' per a incloure un arxiu." - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "Preservar URL de la pàgina web" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la pàgina web del lloc en un marc en el lloc original enlloc de redirigir cap a ella" - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "Els copmte es consideren abandonats despres de x dies" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "No malgastar recursos del sistema sondejant llocs externs per acomptes abandonats. Entrar 0 vol dir sense límit de temps." - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "dominis amics permesos" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "llista separada per comes de dominis en els que està permès establir relacions d'amistat amb aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "Dominis de correu electonic acceptats" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "llista separada per comes de dominis de adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini" - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "Dominis de correu electrònic no acceptats" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "llista separada per comes de dominis de adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats." - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "Bloc públic" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Activa per a bloquejar l'accés públic a totes les pàgines públiques personals excepte si estàs identificat en el sistema." - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "Verifica l'Adreça de Correu Electrònic" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activa per comprovar l'adreça de correu electrònic emprada durant el registre d'un nou compte (recomanat)" - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "Forza la publicació" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Activa per forzar que tots el perfils en aquest lloc siguin llistats en el directori del lloc." - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "Desactiva la pestañnya de descobrir" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Treu la pesranya per veure contingut públic de la xarxa extret d'origens triats per aquest lloc." - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "Accés a la Pàgina d'inici" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut." - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "Usuari Proxy" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "URL del Proxy" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "Temps d'espera de la xarxa" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)" - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "Interval de lliurament" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats." - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "interval de sondeig" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament." - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "Càrrega Mitja Màxima" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte." - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Periode d'expiració per a contingut importat (matrix/xarxa)" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "0 vol dir sense temps d'expiració pel contingut importat" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "No es troba servidor" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "per a canal" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "al servidor" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "Estat" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "Servidor" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "Actualització marcada amb exit" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Executant %s ha fallat. Comprova els logs del sistema." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Actualització %s es va realitzar correctament." - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Actualització %s no ha retornat l'estat. Es desconeix si ha finalitzat amb exit." - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "La funció d'actualitzacio %s no es pot trobar." - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "No hi ha actualitzacions fallides." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Actualitzacions Fallides" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Marca èxit (si l'actualització s'ha aplicat de forma manual)" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Prova a fer automàticament aquesta actualització" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "Cua d'Estadístiques" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "Total d'Entrades" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "Prioritat" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "URL de Destí" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "Marca el concentrador coma permanentment fora de línia" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "Cua buida per aquest concentrador" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "Últim contacte conegut" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "S'ha [des]bloquejat %s usuari" -msgstr[1] "S'han [des]bloquejat %s comptes" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "S'ha esborrat %s compte" -msgstr[1] "S'han esborrat %s comptes" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "Compte no trobat" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "S'ha esborrat el compte '%s'" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "S'ha bloquejat el compte '%s'" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "S'ha desbloquejat el compte '%s'" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "Usuaris" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "Sel·leciona-ho tot" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "Registres d'usuaris pendents de confirmació" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "Data de la petició" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "Sense registracions." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "Aprovat" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "Denegat" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "Bloquejat" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "Desbloquejat" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "Data de registre" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "Darrera identificació" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "Expira" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "Classe de Servei" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els comptes seleccionats seran eliminats!\\n\\nTot el que hagin publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur de continuar?" - -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'usuari {0} serà eliminat!\\n\\nTot el que hagi publicat l'usuari en aquest lloc serà esborrat de permanentment!\\n\\nN'estàs segur?" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canal censurat/no censurat" -msgstr[1] "%s canals censurats/no censurats" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s codi permes/no permes al canal" -msgstr[1] "%s codi permesos/no permesos al canal" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal esborrat" -msgstr[1] "%s canals esborrats" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "Canal no trobat" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' esborrat" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurat" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurat" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Canal '%s' permet codi" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Canal '%s' no permet codi" - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "Censurat" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "No censurat" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "Permet Codi" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "No Permet Codi" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:994 ../../mod/profiles.php:447 -msgid "Address" -msgstr "Adreça" - -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Els canals sel·leccionats s'esborraran!\\n\\nTotes les publicacions d'aquests canals en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur? " - -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} serà esborrat!\\n\\nTotes les publicacions d'aquest canal en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur?" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s desactivat." - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s activat." - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "Desactivat" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "Activat" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "Commutar" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "No s'han trobat temes." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "Copia de pantalla" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[No soportat]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "Registre d'ajustos actualitzat." - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "Neteja" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "Depurant" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "Arxiu de registre" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior de Red" - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "Nivell de registre" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "Camp de Perfil Nou" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "Àlies de Camp" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "nOM DEL SISTEMA DEL CAMP" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "Tipus d'entrada" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "Nom de Camp" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "Etiqueta a les pàgines de perfil" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "Text d'ajuda" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "Informació adicional (opcional)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "No es troba la definició del camp" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "Camp d'Edició del Perfil" - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Aquest ajust requereix un procés espedial i l'edició esta bloquejada." - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Editor de Configuració" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "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." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoritza la connexió de l'aplicació" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna a la teva aplicació i insereix aquest Codi de Seguretat:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Si et plau, identifica't per continuar." - -#: ../../mod/api.php:104 -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." - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "S'ha actualitzat el disseny" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripció de Pàgines" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "No s'ha trobat el disseny de pàgina." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nom del mòdul:" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "Ajuda sobre el disseny de pàgina" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Aplicació instal·lada." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Aplicació amb errors" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Codi embegut" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Edita l'Aplicació" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crea l'Aplicació" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nom de l'Aplicació" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ubicació (URL) de l'aplicació" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Descripció" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Foto icona URL" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versió ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preu de l'aplicació" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ubicació (URL) per comprar l'aplicació" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "La informació del propietari de la pàgina no va poder ser recuperada" - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "Àlbum no trobat" - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "Esborra Àlbum" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "Esborra Foto" - -#: ../../mod/photos.php:441 ../../mod/directory.php:59 -#: ../../mod/display.php:13 ../../mod/ratings.php:82 ../../mod/search.php:13 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Accés públic denegat." - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "No has seleccionat fotos" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "L'accés a aquest element esta restringit." - -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hi ha en ús %1$.2f MB de %2$.2f MB de l'espai d'imatges." - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hi ha en ús %1$.2f MB de l'espai d'imatges." - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "Puja imatges" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "Escriu el nom del nou àlbum" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "o bé fes doble clic a un d'existent" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "Genera una entrada a partir de la pujada" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "No s'ha pogut descodificar el nom de l'àlbum" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "Imatges de contactes" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "Ordena de més nou a més antic" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "Ordena de més antic a més nou" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "Mostra la imatge" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "Modifica l'àlbum" - -#: ../../mod/photos.php:761 -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." - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "La imatge no està disponible" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "Fes-la imatge de perfil" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "Imatge privada" - -#: ../../mod/photos.php:839 ../../mod/events.php:505 -msgid "Previous" -msgstr "Anterior" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "Mostra a mida completa" - -#: ../../mod/photos.php:848 ../../mod/events.php:506 ../../mod/setup.php:281 -msgid "Next" -msgstr "Pròxim" - -#: ../../mod/photos.php:887 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Esborra" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "Modifica la imatge" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "Tomba cap a la dreta" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "Tomba cap a l'esquerra" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "Llegenda" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "Afegeix una etiqueta" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple: @joan, @Paula_Peris, @mar@exemple.org" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "Marca com a contingut adult" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "Hi apareixen:" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "Mapa" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "Mostra'n l'àlbum" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "Imatges recents" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Article no disponible." - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "Se t'ha enviat un missatge privat" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "el teu canal s'ha afegit" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "enviat un event" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Nom del Bloc" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Títol del bloc" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Emprenyat/Picat" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "emprenyar, picar o fer altres coses a algú" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatari" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Tria que vols fer amb el destinatari" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Fer aquesta entrada privada" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Favorit afegit" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Els Meus Favorits" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Les connexions dels meus Favorits" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Has creat %1$.0f de %2$.0f canals permesos." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Crear un nou canal" - -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Canal Actual" - -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Canviar a un altre dels teus canals seleccionant-ho." - -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Canal per Defecte" - -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Estableix com a Predeterminat" - -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d missatges nous" - -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "%d noves presentacions" - -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Canals Delegats" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Perfils compatibles" - -#: ../../mod/match.php:31 -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." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "té interès en:" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "No s'han trobat perfils compatibles" - -#: ../../mod/bulksetclose.php:89 ../../mod/group.php:196 -msgid "Members" -msgstr "Membres" - -#: ../../mod/bulksetclose.php:91 ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Tots els Canals Connectats" - -#: ../../mod/bulksetclose.php:126 ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Clic sobre el canal per afegir o esborrar." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Enquesta" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Mostra els resultats" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Has d'estar identificat per a veure aquesta pàgina." - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficients. Petició redirigida a la pàgina del perfil." - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a nivell local. Si us plau, tanca la sessió i torna-ho a intentar." - -#: ../../mod/post.php:287 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Benvingut %s. Autenticació remota reeixida." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "No s'ha trobat la sala" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Abandona la sala" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina la sala" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Absent" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Estic connectat/da" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Fes favorit aquest xat" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nova sala per a Xerrar" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nom del Xat" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s de Xats" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Absent" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "En connexió" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "URL sol·licitada retorna error: %1$s" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "$Projectname - Convidats: Nom d'usuari: {el teu correu electrònic}, Contrasenya: +++" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "No s'ha trobat el canal" - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Connexions en comú" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "No hi ha connexions en comú." - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "S'ha pujat la imatge però no s'ha pogut retallar." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "No s'ha pogut escalar la imatge." - -#: ../../mod/profile_photo.php:206 -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»" - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La imatge excedeix la mida límit de %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Incapaç de processar l'imatge." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto no disponible." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Puja Arxiu:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Tria un perfil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Puja una Foto pel Perfil" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "salta aquest pas" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "tria una foto del teu àlbum de fotos" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Retalla Imatge" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Si us plau, retalla la imatge per a una optima visualització" - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Edició Feta" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Imatge pujada exitosament." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "La pujada de la imatge va fracassar." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "La reducció de mida de la imatge [%s] va fracassar." - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continua" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuració de Canals Premium" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Habilita les restriccions de connexió del canal premium" - -#: ../../mod/connect.php:88 -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." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -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:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Connexions potencials veuran el següent text abans de continuar:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -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." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No s'han proporcionat instruccions específiques pel propietari del canal.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal Restringit o Premium" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Sol·licitud d'identificació invàlida." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Descarta" - -#: ../../mod/notifications.php:51 ../../mod/connedit.php:539 -msgid "Ignore" -msgstr "Ignora" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "No hi ha més notificacions de sistema." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Notificacions de sistema" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "Bloquejades" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "Ignorades" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "Amagades" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "Arxivades" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "Suggereix noves connexions" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Noves Connexions" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Mostra les connexions pendents (noves)" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Totes les Connexions" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "Mostra totes les connexions" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "No bloquejades" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "Mostra només les connexions no bloquejades" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "Mostra només les connexions bloquejades" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "Mostra només les connexions ignorades" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "Mostra només les connexions arxivades" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "Mostra només les connexions amagades" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "Modifica la connexió" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "Cerca entre les teves connexions" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "Cercant:" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Perfil no trobat." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Perfil eliminat." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nou perfil creat." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Perfil que no es pot clonar." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Perfil que no es pot exportar." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Es requereix el Nom del Perfil." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Estat Marital" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Company/a Romàntic" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "M'agrada" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "No m'agrada" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Treball/Feina" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religió" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Idees Polítiques" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Gènere" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Preferència Sexual" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Pàgina Personal" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Interessos" - -#: ../../mod/profiles.php:454 ../../mod/pubsites.php:26 -msgid "Location" -msgstr "Localització" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Perfil actualitzat." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Amaga la teva llista de contactes/amics dels visitadors d'aquest perfil?" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Edita els Detalls del Perfil" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Veure aquest perfil" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Canviar Foto del Perfil" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Crea un perfil nou amb aquests ajustos" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Clonar aquest perfil" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Elimina aquest perfil" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importa perfil des d'un arxiu" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Exporta perfil a un arxiu" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Nom del Perfil:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "El Teu Nom Complet" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Títol/Descripció:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "El Teu Gènere:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Aniversari:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Carrer:" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Població/Ciutat:" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Codi Postal:" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "País:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Regió/Estat:" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Marital Estatus:" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Qui: (si es aplicable)" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Examples: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Des de [data]:" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Pàgina Personal URL:" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Creences Religioses:" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Paraules Clau:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Exemple: software de fotografia submarina" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Emprat en els llistats de directoris" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Escriu unes línies sobre tu:" - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Aficions/Interessos" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Informació de Contacte i Xarxes Socials" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Els meus altres canals" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Interessos Musicals" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Llibres, literatura" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Televisió" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Pel·lícules/Dansa/Cultura/Entreteniment" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Amor/Romace" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Treball/feina" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Escola/educació" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Aquest es el teu perfil per defecte" - -#: ../../mod/profiles.php:728 -msgid "Age: " -msgstr "Edat:" - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Edita/Gestiona Perfils" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Afegeix coses al perfil" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Inclou objectius desitjables al teu perfil" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "No s'ha pogut accedir al llibre de contactes." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "No s'ha trobat el perfil indicat." - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "S'ha actualitzat la connexió." - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "No s'ha pogut actualitzar el registre de connexió." - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "Ara està conectat amb" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "No puc accedir al registre del contacte" - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Ha fallat la recàrrega - el canal es actualment inaccesible." - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "No es poden ajustar els paràmetres dels contactes." - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "S'han eliminat les conexions." - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "Mostra el perfil de %s" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "Recarrega els Permissos" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "Obté els permisos actualitzats" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "Activitat Recent" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "Mostra les entrades i comentaris recents" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "Aquesta connexió està bloquejada!" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "Inhabilita" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora (o Considera) les communicacions entrants d'aquesta connexió" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "Aquesta connexió es ignorada!" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "Desarxiva" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "Arxiva" - -#: ../../mod/connedit.php:550 -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 " - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "Aquesta connexió està arxivada!" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "Mostra" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "Amaga" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Amaga (o Mostra) aquesta connexió de les altres connexions teves" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "Aquesta connexió està amagada!" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "Elimina aquesta connexió" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "Apccepta aquesta connexió" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "Accepta la connexió per permetre la comunicació" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "Ajusta l'Afinitat" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "Ajusta el Perfil" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "Ajusta Afinitat i Perfil" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "Aplica aquests permissos automaticament" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "La direcció d'aquesta connexió es" - -#: ../../mod/connedit.php:680 -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." - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "Llisca per ajustar el nivell d'amistat" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "Llisca per ajustar la valoració" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "Opcionalment pots explicar la teva valoració" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "Filtre a mida" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "Importa exclusivament entrades amb aquest text" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "paraules una per línia o #etiquetes o /patrons/, deixar en blanc per importar totes les entrades" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "No importar entrades amb aquest text" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "Aquesta informació es pública!" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "Connexió Pendent d'Aprovació" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "Petició de Connexió" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) voldria conectar amb tu. Aprova aquesta connexió per permetre la connexió." - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "Aprovar més tard" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "heretat" - -#: ../../mod/connedit.php:705 -#, 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." - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "Els seus Ajustos" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "Els Meus Ajustos" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "Permisos Individuals" - -#: ../../mod/connedit.php:711 -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 "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í." - -#: ../../mod/connedit.php:712 -msgid "" -"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." -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." - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "Darrera actualització:" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identificador invàlid de perfil." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Perfil del Editor de Visibilitat" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clica sobre el contacte per afegir o esborrar." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visible per" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "Canal de $Projectname" - -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoració" -msgstr[1] "%d valoracions" - -#: ../../mod/directory.php:245 -msgid "Gender: " -msgstr "Gènere:" - -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "Estatus:" - -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "Pàgina Personal:" - -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "Descripció:" - -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "Forum Públic:" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "Paraules Clau:" - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "No suggerir" - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "Connexions en comú:" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "Directori Global" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "Directori Local" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "Cercant:" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "pàgina següent" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "pàgina anterior" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "Opcions per ordenar" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "Alfabètic" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "Alfabètic Invers" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "De més Nou a més Vell" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "De més Antic a més Nou" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "Sense entrades (algunes podrien estar amagades)." - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Llocs públics" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links may " -"provide additional details." -msgstr "Els llocs llistats permeten registrar usuaris de la xarxa $Projectname. Com que tots els llocs estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns llocs poden demanar subscripció o oferir serveis addicional de pagament. Per a més detalls, proveu de seguir els enllaços dels proveïdors." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Valora aquest hub" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "Adreça URL del web" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Tipus d'accés" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Condicions de registre" - -#: ../../mod/pubsites.php:26 -msgid "Project" -msgstr "Projecte" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Mostra la valoració del hub" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Puntua" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Mostra les valoracions" - -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45 -msgid "This site is not a directory server" -msgstr "Aquest lloc web no és un servidor de directori" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Aquest servidor de directori requereix un token de accès" - -#: ../../mod/editblock.php:78 ../../mod/editblock.php:94 -#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "No s'ha trobat l'element" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "Eliminar bloc?" - -#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 -#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:187 -msgid "Insert YouTube video" -msgstr "insereix video YouTube" - -#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:188 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insereix video Vorbis [.ogg]" - -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:189 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insereix audio Vorbis [.ogg]" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "Editar Bloc" - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "Esborrar el disseny?" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Descripció del disseny (opcional)" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Nom del disseny" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "Edita el disseny" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Article no editable" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "Esborrar ítem" - -#: ../../mod/editpost.php:158 ../../mod/rpost.php:131 -msgid "Edit post" -msgstr "Modifica l'entrada" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "No es possible trobar el concentrador" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Entrada realitzada amb èxit. " - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "Esborrar pàgina web?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Títol de la pàgina enllaçada" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Edita la Pàgina Web" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Lloc web:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal Remot [%s] (encara no es coneix en aquest lloc)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Valoració (aquesta informació és pública)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalment pots explicar la teva qualificació (aquesta informació és pública)" - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Entrades de Calendari importades." - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "No es troben entrades decalendari." - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "L'esdeveniment ha de començar abans d'acabar." - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "No s'ha pogut generar la vista prèvia." - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "Cal indicar l'inici i el final de l'esdeveniment." - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "No s'ha trobat l'esdeveniment." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "I dia j, F" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "Edita l'esdeveniment" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "Esborra l'esdeveniment" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "calendari" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "Crea un esdeveniment nou" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "Exporta" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "Importar" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "S'ha eliminat l'esdeveniment" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "No s'ha pogut esborrar l'esdeveniment" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "Detalls de l'esdeveniment" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "La data d'inici i el títol són obligatoris." - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "Categories (llista separada per comes)" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "Inici:" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "La data i hora de final no és coneguda o irrellevant" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "Final:" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "Ajusta a la zona horària del visitant." - -#: ../../mod/events.php:680 -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." - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "Títol:" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "Comparteix aquest esdeveniment" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "No valorat" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valoracions" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Valoració:" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Lloc web:" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Descripció:" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Tria una carpeta d'interès" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Guarda Favorits" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL de favorit" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O entra un nou nom de favorit" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- selecciona -" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Permisos Denegats." - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "Arxiu no torbat." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Edita els permisos d'arxiu" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Canvia/edita permisos" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Inclou tots als arxius i subdirectoris" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Tornar al llistat d'arxius" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada" - -#: ../../mod/filestorage.php:155 -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" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Comparteix l'arxiu" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Mostra la URL d'aquest arxiu" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Avisa els teus contactes d'aquest arxiu" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "S'ha afegit el canal." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre màxim de registres diaris excedit. Si us plau, provau demà." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "El registre ha fallat. Si et plau, indica que acceptes les Condicions del Servei." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Les contrasenyes no coincideixen." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "registrat amb èxit. Si et plau revisa el teu e-correu per a instruccions de validació." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "El teu registre esta pendent de validació pel propietari del lloc." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "El teu registre no ha pogut ser processat. " - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "El registre en aquest lloc/centre es únicament per validació." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registre en altre lloc/centre afiliat" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "El lloc ha excedit el límit màxim diari de nous comptes/registres. Provau demà." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Condicions del Servei" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accepto el %s per a aquest lloc web" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tinc més de 13 anys i accepto les %s d'aquest lloc web" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "La pertinença en aquest lloc es per invitació exclusivament." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Si et plau, introdueix el teu codi d'invitació" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "La teva adreça de correu electrónic" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Tria una contrasenya" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Si et plau, re-entra la contrasenya" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contacte no trobat." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggeriment d'amistat enviada." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Amics Suggerits" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggereix un amic per a %s" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inicia Sessió." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Creada una col·lecció" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "No puc crear la col·lecció." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Col·lecció actualitzada." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Creada una col·lecció de canals." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nom de la Col·lecció:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Els membres son visibles en altres canals" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Col·lecció esborrada." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Incapaç d'esborrar la col·lecció." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Editor de Col·leccions" - -#: ../../mod/removeaccount.php:30 -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." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Esborra el compte" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ALERTA:" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Aquesta acció és irreversible!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Aquesta acció requereix tornar a introduir la contrasenya:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons." - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Per defecte, només les instancies dels canal ubicats en aquest concentrador poden esser esborrades de la xarxa" - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "Esborra el Compte" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../mod/help.php:76 ../../index.php:242 -msgid "Not Found" -msgstr "No s'ha pogut trobar la pàgina" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "Documentació de $Projectname" - -#: ../../mod/removeme.php:29 -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." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Elimina Aquest Canal" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Aquest canal serà completament eliminat de la xarxa." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina aquest canal i els seus clons de la xarxa" - -#: ../../mod/removeme.php:60 -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 concentrador pot esser esborrat de la xarxa" - -#: ../../mod/removeme.php:61 ../../mod/settings.php:1137 -msgid "Remove Channel" -msgstr "Elimina el canal" - -#: ../../mod/home.php:58 ../../mod/home.php:66 ../../mod/siteinfo.php:155 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "Benvingut a %s" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Em trobat un problema durant l'inici de sessió amb el OpenID que has facilitat. verifica l'ortografia correcta de la ID." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "El missatge d'error fou:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Ha fallat l'autentificació." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Autentificació Remota" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introdueix la teva adreça del canal (eg canal@exemple.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Autentica't" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Nom" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Cognoms" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Àlies" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nom Sencer" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto del Perfil 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto del Perfil 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto del Perfil 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto del Perfil 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto del Perfil 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto del Perfil 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Zona horària" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "URL de la pàgina d'inici" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Any de Naixement" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mes de Naixement" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Dia de Naixement" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Aniversari" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s element instal·lat" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "%s instal·lació d'element va fallar" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elements etiquetats amb: %s" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "Resultats de cerca per: %s" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "El teu paquet de serveis només admet %d canals." - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "No hi ha res a importar." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "No s'han pogut descarregar les dades del servidor antic" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "El fitxer importat està buit." - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "Les dades subministrades no son compatibles amb aquest projecte." - -#: ../../mod/import.php:115 -#, 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." - -#: ../../mod/import.php:135 -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." - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal no s'ha pogut clonar." - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat." - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "Has d'estar registrat per fer servir aquesta funcionalitat." - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "Importa un canal" - -#: ../../mod/import.php:580 -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ó" - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "Fitxer a pujar" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "O proveeix els detalls de l'antic servidor/concentrador" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "La teva adreça de canal antiga. El format és canal@exemple.org" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "La teva adreça de correu electrònic antiga" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "La teva contrasenya antiga" - -#: ../../mod/import.php:586 -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 hub 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." - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "Fes d'aquest hub la meva ubicació primària" - -#: ../../mod/import.php:588 -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" - -#: ../../mod/import.php:589 -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." - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "No s'han trobat restriccions de clase." - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "El límit total invitacions s'ha superat." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: adreça de correu electrònic no vàlida." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Si us plau, uneix-te a Red" - -#: ../../mod/invite.php:87 -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." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Entrega del Missatge fallida." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d missatge enviat." -msgstr[1] "%d missatges enviats." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "No té més invitacions disponibles" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Enviar invitacions" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Introduïu les adreces de correu electrònic, una per línia:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Si us plau uneix-te la meva comunitat en $Projectname." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Has de proporcionar aquest codi d'invitació:" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registre en qualsevol lloc del $Projectname (estàn tots interconnectats)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Entra a la meva adreça de xarxa al $Projectname, a la barra de cerca del lloc." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "o visita" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Click [Conectar]" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Es requereix un Nom" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Es requereix Clau (Key) i el Secret (Secret)" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "Actualitzats els Ajustos de Política de Diaspora." - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "Les contrasenyes no coincideixen. Contrasenya sense canvis." - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis." - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "Contrasenya canviada." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "E-correu no vàlid." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "Adreça d'e-correu protegida. No es pot canviar a aquest e-correu." - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "Fallada del sistema al guardar un nou correu. Si us plau, proba de nou." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "Ajustes actualizados." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "Afegir aplicatiu" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "Nom de l'aplicatiu" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "Redirecciona" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi." - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "Icona de url" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "Opcional" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "No pots editar aquest aplicatiu." - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "Aplicatius Conectats" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "La clau del client comença amb" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "Sin nombre" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "Elimina autorització" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "No hi ha opcions de les funcions configurades" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "Ajustos de Característica/Afegit" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Ajustos pel emulador de Diaspora incorporat" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permetre que cualsevol membre de Diaspora pugui comentar les teves entrades públiques" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activa el protocol Diaspora en aquest canal" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "Política d'Ajustos de Diaspora" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Evita que els teus hashtags puguin ser redirigits a altres llocs" - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "Ajustos de Compte" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "Entra la Nova Contrasenya" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "Confirma la Nova Contrasenya:" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "Deixa els camps de contrasenya en blanc llevat que la volguis canviar" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "Adreça de E-Correu:" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "Esborra aquest compte inclosos tots els seus canals" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "Apagat" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "Funcionant" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "Característiques Addicionals" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "Ajustos de Connector" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "No emprar tema especial per aparells mòbils" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "Ajustos de Pantalla" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "Ajustos de Tema" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "Ajustos Personals de Tema" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "Ajustos de Contingut" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "Ajustos de Tema:" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "Tema Mòbil:" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom d'usuari en dispositius mòbils" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "Actualitza el navegador cada xx segons" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínim de 10 segons, sense màxim" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "Nombre màxim de conversacions a càrregar cada vegada" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "Màxim de 100 elements" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra emoticons (smilies) com a imatges" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "Enllaça a l'origen els títols de l'entrada" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de disseny de pàgina - (avançat)" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "Empra el mode blog/llista a la pàgina del canal" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "(Observacions es mostren per separat)" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "Empra mode blog/llista a la pàgina de matrix" - -#: ../../mod/settings.php:870 -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" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "Clic per expandir el contingut que excedeixi aquesta alçada" - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "Alçada màxima del contingut (en píxels) de la pàgina Matrix" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "Ningú excepte tú" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "Només allò que específicament permetis" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "Connexions aprovades" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "Qualsevol connexió" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "Qualsevol en aquest lloc" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "Qualsevol en aquesta xarxa" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "Qualsevol autenticat" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "Qualsevol a internet" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "Publica el teu perfil per defecte al directori de la xarxa" - -#: ../../mod/settings.php:991 -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?" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "La teva direcció del canal es" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "Ajustos del Canal" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "Ajustos Bàsics" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "La teva Franja Horària" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "Localització Predeterminada de les Entrades:" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "Posició geogràfica a mostrar a les teves entrades" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "Empra la Localització del Navegador:" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "Contingut per a Adults" - -#: ../../mod/settings.php:1062 -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)" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "Ajustos de Seguretat i Privacitat" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Els teus permisos estan configurats. Clic per veure/ajustar" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "Amaga la meva presencia en línia" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evita mostrar en el teu perfil, que estàs en línia" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "Ajustos simples de privacitat:" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Molt públic - extremadament permissiu (s'ha d'anar en compte)" - -#: ../../mod/settings.php:1072 -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)" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "Privat - privat per defecte, mai públic o obert" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloquejat - tothom bloquejat per defecte" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "Permet a altres etiquetar les teves entrades" - -#: ../../mod/settings.php:1076 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat" - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "Ajustos avançats de privacitat" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "El contingut d'altes canals caduca després d'aquests dies" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "0 o vuit evita caducitat" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre màxim de peticions d'amistat per dia" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "Pot reduir l'SPAM" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "Permisos de publicació per defecte" - -#: ../../mod/settings.php:1083 ../../mod/mitem.php:155 ../../mod/mitem.php:227 -msgid "(click to open/close)" -msgstr "(clica per obrir/tancar)" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "Categoria de permisos de canal:" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "Nombre màxim de missatges privats de desconeguts al dia:" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "Útil per a reduir l'spam" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "Ajustos de notificacions" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "Per defecte envia un missatge d'estat quan:" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "Acceptar una sol·licitud d'amistat" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "Apuntar-se a un fòrum o comunitat" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "faci un canvi interesant al perfil" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "Notifica per correu quan:" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "Rebi una petició de connexió" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "Es confirma una connexió" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "Algú ha escrit al mur del teu perfil" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "Algú ha escrit un comentari de resposta" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "Rebi un missatge privat" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "Rebi una suggerència d'amistat" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "Estàs etiquetat a l'entrada" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "S'enfoten/te piquen/etc. en una entrada" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "Mostra notificacion visuals, com ara:" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "Activitat no vista a la xarxa" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "Activitat no vista del canal" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "Missatges privats no llegits" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "Recomanat" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "Esdeveniments propers" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "Esdeveniments d'avui" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "Aniversaris propers" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "No està disponible en tots els temes" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "Notificacions (personals) de sistema" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "Missatges d'informació del sistema" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "Alertes crítiques del sistema" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "Noves connexions" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "Registres del sistema" - -#: ../../mod/settings.php:1125 -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\"" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "Notifica'm dels esdeveniments amb aquests dies d'antelació" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "Ha de ser més gran que 0" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustos avançats de compte i tipus de pàgina" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica el comportament d'aquest compte en situacions especials" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Activa el mode d'expert (a Ajustos > Més funcions)" - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "Ajustos diversos" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal per mostrar en les teves pàgines de canal" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "Elimina aquest canal." - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "No s'ha pogut trobar l'entrada original." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "S'ha descartat l'entrada perquè no té contingut." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "No està permès el contingut de tipus executable en aquest canal." - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "Hi ha hagut un error del sistema. L'entrada no s'ha desat." - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "No s'ha pogut obtenir informació de l'entrada a la base de dades." - -#: ../../mod/item.php:1153 -#, 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)." - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Has assolit el teu limit de %1$.0f pàgines web." - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Configuració" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "No puc connectar amb la base de dades" - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No s'ha pogut connectar a l'URL del lloc especificat. Possible problema amb el certificat SSL o de DNS." - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "No puc crear la taula." - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "La teva base de dades del lloc s'ha instal·lat." - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades." - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"." - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "Comprovació del sistema" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "Comprova de nou" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "Connexió de base de dades" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per tal d'instaŀlar $Projectname cal configurar la connexió a la base de dades." - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Si us plau, poseu-vos en contacte amb el proveïdor de serveis o administrador del lloc si vostè té preguntes sobre aquests paràmetres." - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de dades s'especifica a continuació ja ha d'existir. Si no és així, si us plau crear-la abans de continuar." - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "Base de Dades Nom del Servidor" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "Per defecte es localhost" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "Port per a la Base de Dades" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "Numero del port de comunicacions - empra 0 per defecte" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "Base de Dades Nom d'Accès" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "Base de Dades Contrasenya d'Accès" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "Nom de la Base de Dades" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "Tipus de Base de Dades" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "Adreça de correu de l'administrador del lloc" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "El teu compte de email ha de coincidir amb això per poder emprar el panel web d'administrador." - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "URL del lloc web" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "Si us plau, empra SSL (https) URL si està disponible." - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "Si us plau, tria la zona horària del teu lloc web" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "Ajustos del lloc" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No s'ha pogut trobar una versió de línia d'ordres del PHP en el PATH del servidor web." - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si vostè no té una versió de línia d'ordres del PHP instal·lada al servidor, vostè no serà capaç d'executar sondejos en segon pla via cron." - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "Camí cap l'executable de PHP" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introdueix el camí cap l'executable de php. Pots deixa-ho en blanc i continuar l'instal·lació." - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "Línia d'ordres de PHP" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versió de línia d'ordres de PHP al teu sistema no te el \"register_argc_argv\" activat." - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "Això es requereix per que funcioni l'entrega de missatges." - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La mida màxima que se't permet pujar està establerta en %s. La mida màxima per arxiu pujat es de %s. Se't permet pujar fins a %d arxius d'una vegada." - -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Pots ajustar aquests valors a l'arxiu php.ini del servidor" - -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "Límits de pujada de PHP" - -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no es capaç de generar claus d'encriptació" - -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si esta funcionant sota Windows, per favor, miri \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "Generar claus de xifrat" - -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "mòdul PHP libCurl " - -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "mòdul PHP GD gràfics" - -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "mòdul PHP OpenSSL" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "mòdul PHP mysqli o postgres" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "mòdul PHP mb_string" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "mòdul PHP mcrypt" - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "Mòdul xml de PHP" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "mòdul Apache mod_rewrite" - -#: ../../mod/setup.php:510 -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." - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:516 -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" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: el mòdul PHP libCURL es requereix però no està instal·lat." - -#: ../../mod/setup.php:528 -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." - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el mòdul PHP openssl es requereix però no està instal·lat." - -#: ../../mod/setup.php:536 -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." - -#: ../../mod/setup.php:540 -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." - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: el mòdul PHP mcrypt es requereix però no està instal·lat." - -#: ../../mod/setup.php:548 -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." - -#: ../../mod/setup.php:566 -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." - -#: ../../mod/setup.php:567 -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ó." - -#: ../../mod/setup.php:568 -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." - -#: ../../mod/setup.php:569 -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\"." - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr "L'arxiu «.htconfig.php» es pot modificar" - -#: ../../mod/setup.php:586 -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." - -#: ../../mod/setup.php:587 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Per tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal de Red." - -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -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." - -#: ../../mod/setup.php:589 -#, 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é." - -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" -msgstr "Es pot escriure a %s" - -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web." - -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "Es pot escriure al magatzem (store)" - -#: ../../mod/setup.php:645 -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" - -#: ../../mod/setup.php:646 -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!" - -#: ../../mod/setup.php:647 -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 hub." - -#: ../../mod/setup.php:648 -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." - -#: ../../mod/setup.php:649 -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." - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Hi ha autoritats de certificació reconegudes que ofereixen certificats gratuïts." - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "Validació del certificat SSL" - -#: ../../mod/setup.php:658 -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:" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "Es poden reescriure les URL a «.htaccess»" - -#: ../../mod/setup.php:670 -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." - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "S'han produït errors mentre es creaven taules a la base de dades." - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

I ara què?

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT! Cal que configuris manualment una execució periòdica del \"poller\"." - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Pgina d'ajuda del llenguatge Comanche" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Descripció del disseny" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "Descarrega l'arxiu PDL" - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Arxius: compartits amb jo" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NOU" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Esborra tots els arxius" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Esborra l'arxiu" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "M'agrada / No m'agrada" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Aquesta acció està restringida als membres." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Entra amb la teva identitat $Projectname o registra't a $Projectname per continuar." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Sol·licitud invàlida." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "cosa" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "El canal està inactiu." - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "S'ha desfet l'acció anterior." - -#: ../../mod/like.php:401 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s està a favor de %3$s de %2$s" - -#: ../../mod/like.php:403 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s està en contra de %3$s de %2$s" - -#: ../../mod/like.php:405 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s ha votat en blanc en %3$s de %2$s" - -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s assistirà a %3$s de %2$s" - -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s no assistirà a %3$s de %2$s" - -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s potser assistirà a %3$s de %2$s" - -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "S'ha completat l'acció." - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "Gràcies." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Versió %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/addons/apps Instal·lats:" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Plugins/addons/apps no instal·lats" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Aquest és un hub de $Projectname, una xarxa cooperativa mundial de llocs web descentralitzats amb gran control de la privacitat." - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Etiqueta:" - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Última actualització en rerefons:" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "Correguent en el lloc web" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per saber-ne més de $Projectname." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Per informar d'errors o problemes ves a" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "$projectname emisions" - -#: ../../mod/siteinfo.php:168 -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" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Administradors del lloc" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "informació privada remota no disponible." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visible per:" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Situació que no es troba." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "La ubicació primària no es pot treure." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "No es troben els llocs." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Gestionar Ubicacions de Canal" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Ubicació (direcció)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Ubicació Primària" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Treure la ubicació" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Error en crear l'origen. Cap canal seleccionat." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Origen creat." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Origen actualitzat." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestiona contingut per al teu canal d'origens remots" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nou Origen" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar tot o sel·lecciona contingut dels següents canals, en aquest canal i distribueix-lo d'acord als teus ajustos de canals." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Només importa contingut amb aquestes paraules (una per línia)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Deixar en blanc per importar tot el contingut públic" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nom del canal" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "No s'ha trobat la font." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Edita la font" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Esborra la font" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "S'ha esborrat la font" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "No s'ha pogut esborrar la font." - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "No es troba un compte vàlid." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Sol·licitud de restabliment de contrasenya emesa. Consulta el teu correu electrònic." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Lloc d'Usuari (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "S'ha soŀlicitat restablir la contrasenya al hub %s" - -#: ../../mod/lostpass.php:63 -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." - -#: ../../mod/lostpass.php:86 ../../boot.php:1559 -msgid "Password Reset" -msgstr "Restabliment de contrasenya" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "S'ha restablert la vostra contrasenya." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "La nova contrasenya és" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Desa o copia la nova contrasenya, i després" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "fes clic aquí per iniciar sessió" - -#: ../../mod/lostpass.php:91 -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ó." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "La teva contrasenya a %s ha canviat" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "No recordes la contrasenya?" - -#: ../../mod/lostpass.php:124 -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." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Adreça electrònica" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Reajustar" - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "No s'ha pogut actualitzar el menú." - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "No s'ha pogut crear el menú." - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "Nom del menú" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom únic (no visible a la pàgina web) - requerit" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "Títol del menú" - -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible a la pàgina web - deixar buit per a no posar títol" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "Permetre Marcadors" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú es pot emprar per a guardar marcadors" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "Envia i procedeix" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "Menysprea" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "Marcadors permesos" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "Esborra el menú" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "Edita el contingut del menú" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "Edita el menú" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "El menu no es pot esborrar." - -#: ../../mod/menu.php:138 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menú no trobat." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "Edita Menú" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "Afegeix o esborra entrades a aquest menú" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "Nom del Menú" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "Ha de ser únic, nomes vist per tú" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "Títol del menú" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "Títol del menú vist pels altres" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "Marcadors permesos" - -#: ../../mod/menu.php:160 ../../mod/mitem.php:116 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "No trobat." - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversació eliminada." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Sense missatges." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Incapaç de crear l'element." - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "Incapaç d'actualitzar un element del menú." - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "Incapaç d'afegir l'element del menú." - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos de l'Article del Menú" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "Nom de l'Enllaç" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Enllaç o Submenú Objectiu" - -#: ../../mod/mitem.php:158 -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ú" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Empra magic-auth si esta disponible" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "Obrir l'enllaç en una nova finestra" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "Ordre per llista" - -#: ../../mod/mitem.php:161 ../../mod/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" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "Envia i termina" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "Envia i continua" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "Menú:" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "Enllaç Objectiu" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "Edita menú" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "Edita element" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "Deixa anar element" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "Nou element" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "Edita aquest contenidor de menú" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "Afegeix element de menú" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "Esborra aquest article del menú" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "Edita aquest article del menú" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "Article del menú no trobat." - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "Article del menú eliminat." - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Article del menú no es pot eliminar." - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar Element del Menú" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "Enllaç de text" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s esta seguint %2$s de %3$s" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Estableix el teu estat d'ànim actual i digues-li als teus amics" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou." - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetat %3$s de %2$s amb %4$s" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "S'ha tret l'etiqueta" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Elimina l'etiqueta d'element" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Tria l'etiqueta a eliminar:" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "No existeix el grup" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "No existeix el canal" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Cerca resultats per:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "La coŀlecció és buida" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Coŀlecció:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Connexió:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "La connexió és invàlida." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocol OpenID. No ha retornat ID" - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Afegeix un Canal" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Un canal es la teva pròpia col·lecció de pàgines web. Un canal pot emprat per mantenir perfils a una xarxa social, blocs, grups de conversació, fòrums, pàgines de famosos, i molt més. Pots crear tants canals com el teu servei d'internet et permeti." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Exemples: \"Joan Tou\", \"Manel i els seus esquirols\", \"Fútbol\", \"Grup de Gegants\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Tria un àlies curt" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "El teu àlies es pot emprar per crear un canal fàcilment memoritzatble (com una adreça de correu electrònic) que pot ser compartit amb altres." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "O importa un canal existent d'un altre lloc" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Tria un tipus de canal (com a xarxa social o fòrum comunitari) i els requisits de privacitat, així podem proposar el que te el permisos més adients." - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "tipus de Canal" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Llegeix més sobre els rols" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "S'ha actualitzat la cosa" - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "No s'ha pogut emmagatzemar l'objecte" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "S'ha afegit la cosa" - -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "Mostra la cosa" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "no s'ha trobat l'element." - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "Edita la cosa" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "Tria un perfil" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "Publica una activitat" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "S'envia només a visitants del perfil corresponent" - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "Nom de la cosa. Exemple: patata" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "Adreça URL de la cosa (opcional)" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "Adreça URL de la foto d'una cosa (opcional)" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "Afegeix una cosa al teu perfil" - -#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 -msgid "Export Channel" -msgstr "Exportar Canal" - -#: ../../mod/uexport.php:52 -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 a un fitxer dades bàsiques del canal. Serveix com a còpia de seguretat de les teves connexions, permisos, perfil però no de contingut, i es pot usar per importar-ho a un nou servidor. " - -#: ../../mod/uexport.php:53 -msgid "Export Content" -msgstr "Exportar el Contingut" - -#: ../../mod/uexport.php:54 -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ó i contingut recent del teu canal a un fitxer JSON. Aquesta còpia de seguretat pot ser restablerta a un altre hub o a aquest mateix. Conté totes les teves connexions, permisos, dades de perfil i diversos mesos d'entrades, així que pot resultar molt gran. Per això, poden passar uns quants minuts fins que la descàrrega s'iniciï." - -#: ../../mod/uexport.php:55 -msgid "Export your posts from a given year or month:" -msgstr "Exporta les teves entrades d'un any o mes determinats:" - -#: ../../mod/uexport.php:57 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Click on one of the recent years or months below." -msgstr "També pots exportar les teves entrades i converses dins d'un any o mes en particualr. Fes clic a un mes o any d'aquí sota." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jan" -msgstr "gen." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Feb" -msgstr "febr." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Mar" -msgstr "març" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Apr" -msgstr "abr." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jun" -msgstr "juny" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jul" -msgstr "jul." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Aug" -msgstr "ag." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Sep" -msgstr "set." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Oct" -msgstr "oct." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Nov" -msgstr "nov." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Dec" -msgstr "des." - -#: ../../mod/uexport.php:60 -msgid "" -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "En cas que falli l'exportació, prova-ho de nou demanant un interval de dates més curt. El servidor del hub podria haver fet curt de memòria RAM." - -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"Or adjust the date in your browser location bar to select other dates. For " -"example the year 2013; %1$s/2013 or the month " -"September 2013; %1$s/2013/9" -msgstr "O bé ajusta la data de la barra de localització per escollir unes altres dates. Per exemple, l'any 2013; %1$s/2013 o el setembre de 2013; %1$s/2013/9" - -#: ../../mod/uexport.php:62 -msgid "Please visit" -msgstr "Visita" - -#: ../../mod/uexport.php:62 -msgid "on another hub to import the backup files(s)." -msgstr "en un altre hub per tal de restablir la/es còpia/es de seguretat." - -#: ../../mod/uexport.php:63 -msgid "" -"We advise you to clone the channel on the new hub first and than to import " -"the backup file(s) (from the same channel) in chronological order. Importing" -" the backup files into another channel will certainly give permission " -"issues." -msgstr "És recomanable clonar el canal en el hub nou abans d'importar la/es còpia/es de seguretat del mateix canal. Importar una còpia de seguretat d'un canal des d'un altre canal donarà problemes de permisos. Si n'hi ha més d'una, també cal importar les còpies en ordre cronològic, de més antic a més nou." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 -#: ../../mod/update_public.php:21 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Contingut embegut - recarrega la pàgina per veure-ho]" - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Sense connexions." - -#: ../../mod/viewconnections.php:75 +#: ../../include/zot.php:2557 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita el perfil [%s] de %s" - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Origen de l'article" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Vots totals" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Valoració mitjana" - -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "Títol de la pàgina" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Cerca a xchan" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca a xchan començant per (o webbie)" +msgid "Unable to verify site signature for %s" +msgstr "No es pot verificar la signatura del lloc per %s" -#: ../../mod/zfinger.php:24 +#: ../../include/zot.php:4221 msgid "invalid target signature" msgstr "Signatura objectiu invàlida" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Esquema per defecte" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Ajustos de tema" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Estableix l'esquema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Ajusta la mida del tipus de lletra per a entrades i comentaris" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Estableix el tipus de lletra" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Estableix el conjunt d'icones" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Estableix una mida petita per l'ombrejat, per defecte 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Estableix una mida petita per l'ombrejat, per defecte 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Estableix el color de l'ombra, per defecte #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Estableix el radi, per defecte 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Estableix l'alçada de línia per a entrades i comentaris" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Estableix la imatge de fons" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Estableix els adjunts en segon pla" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Estableix del color de fons" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Estableix la imatge de fons de secció" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Estableix el color de fons de secció" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Estableix el color dels elements (en notació hexadecimal)" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Estableix el color dels enllaços (en notació hexadecimal)" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Estableix el l'amplada màxima dels elements. Per defecte, 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Estableix l'amplada mínima dels elements. Per defecte, 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Estableix l'amplada per defecte del contingut. Per defecte, 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Estableix el color del text (en notació hexadecimal)" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Estableix la mida de la imatge de fons (background-size)" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacitat dels elements" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostra només previsualitzacions d'entrades" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Mostra la barra lateral a la pàgina del canal" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Color de la barra de navegació" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Paràmetre \"float\" dels elements" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Desplaçament esquerra de l'element de secció" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Desplaçament dret de l'element de secció" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Amplada de la secció" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Desplaçament esquerra del costat" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Desplaçament dret de l'element del costat" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Clar (predeterminat)" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" -msgstr "Tria esquema" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Barra de navegació estreta" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Color de fons de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Gradient de color de la part superior de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Gradient de color de la part inferior de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Gradient de color de la part superior del botó actiu de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Gradient de color de la part inferior del botó actiu de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Color de la vora de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Color bàsic de la icona de la barra de navegació" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Color de la icona de la barra de navegació activa" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "color dels enllaços" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Estableix el color de lletra del rètol" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Estableix el color de fons" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Estableix la imatge de fons" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Estableix el color de fons dels elements" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Estableix el color de fons dels comentaris" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Estableix el color de la vora dels comentaris" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Estableix el sagnat dels comentaris" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Estableix el color bàsic de les icones dels elements" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Estableix el color de les icones dels elements en passar-hi per damunt" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Estableix la mida de lletra per tota l'aplicació" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" -msgstr "Exemple: 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Estableix el color del text d'entrades i comentaris" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Estableix el radi de les cantonades" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Estableix la profunditat d'ombres de les fotos" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of content region in pixel" -msgstr "Estableix l'amplada màxima de la zona de contingut en píxels" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" -msgstr "Deixa-ho en blanc per fixar a l'amplada per defecte." - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "Centra el contingut de la pàgina" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Estableix la opacitat mínima de la barra de navegació per ser amagada" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Estableix la mida de la foto de conversa de l'autor" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Estableix la mida de les fotos de seguiment de l'autor" - -#: ../../boot.php:1356 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "L'actualització %s ha fallat. Consulta el registre d'errors." - -#: ../../boot.php:1359 -#, php-format -msgid "Update Error at %s" -msgstr "Error d'actualització a %s" - -#: ../../boot.php:1526 +#: ../../include/group.php:22 msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Crea un compte per accedir als serveis i aplicacions dins de RedMatrix" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grup esborrat amb aquest nom fou reviscolat. Els permisos dels items existents poden aplicar-se a aquest grup i qualsevol membre futur. Si no es això el que vols, si et plau, crea un altre grup amb un nom diferent." -#: ../../boot.php:1554 -msgid "Password" -msgstr "Contrasenya" +#: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Afegeix noves connexions a aquest grup de privacitat" -#: ../../boot.php:1555 -msgid "Remember me" -msgstr "Recorda'm" +#: ../../include/group.php:298 +msgid "edit" +msgstr "edita" -#: ../../boot.php:1558 -msgid "Forgot your password?" -msgstr "Has perdut la contrasenya?" +#: ../../include/group.php:321 +msgid "Edit group" +msgstr "Editar grup" -#: ../../boot.php:2182 -msgid "toggle mobile" -msgstr "commuta format mòbil/escriptori" +#: ../../include/group.php:322 +msgid "Add privacy group" +msgstr "Afegeix grup de privacitat" -#: ../../boot.php:2317 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "El certificat SSL és invàlid. Cal arreglar-ho." +#: ../../include/group.php:323 +msgid "Channels not in any privacy group" +msgstr "Canals que no estan en cap grup de privacitat" -#: ../../boot.php:2320 -#, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Error de SSL per la web %s" +#: ../../include/connections.php:133 +msgid "New window" +msgstr "Nova finestra" -#: ../../boot.php:2357 -msgid "Cron/Scheduled tasks not running." -msgstr "No s'estan executan les tasques programades al cron." +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "Obrir la localització seleccionada en un altre finestra o pestanya del navegador" -#: ../../boot.php:2361 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] No s'estan executan les tasques programades del cron a %s" +#: ../../include/auth.php:192 +msgid "Delegation session ended." +msgstr "S'ha tancat la sessió de delegació." + +#: ../../include/auth.php:196 +msgid "Logged out." +msgstr "Sortir." + +#: ../../include/auth.php:291 +msgid "Email validation is incomplete. Please check your email." +msgstr "Encara no s'ha validat el teu correu. Comprova la safata d'entrada i la paperera." + +#: ../../include/auth.php:307 +msgid "Failed authentication" +msgstr "Autenticació fallida" + +#: ../../include/help.php:34 +msgid "Help:" +msgstr "Ajuda:" + +#: ../../include/help.php:78 +msgid "Not Found" +msgstr "No s'ha pogut trobar la pàgina" diff --git a/view/ca/strings.php b/view/ca/strings.php index 87753bdb2..d2954b2b7 100644 --- a/view/ca/strings.php +++ b/view/ca/strings.php @@ -4,349 +4,1710 @@ if(! function_exists("string_plural_select_ca")) { function string_plural_select_ca($n){ return ($n != 1);; }} -; -App::$strings["No username found in import file."] = "No s'ha trobat cap 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["Import completed."] = "S'ha completat la importació."; -App::$strings["parent"] = "amunt"; -App::$strings["Collection"] = "Col·lecció"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Llista d'adreces"; -App::$strings["Calendar"] = "Calendari"; -App::$strings["Schedule Inbox"] = "Programa la bústia d'entrada"; -App::$strings["Schedule Outbox"] = "Programa la bústia de sortida"; -App::$strings["Unknown"] = "Desconegut"; -App::$strings["%1\$s used"] = "Hi ha %1\$s en ús"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "Hi ha en ús %1\$s de %2\$s (%3\$s%)"; -App::$strings["Files"] = "Arxius"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Compartit"; -App::$strings["Create"] = "Crea"; -App::$strings["Upload"] = "Puja"; -App::$strings["Name"] = "Nom"; -App::$strings["Type"] = "Tipus"; -App::$strings["Size"] = "Mida"; -App::$strings["Last Modified"] = "Darrera modificació"; -App::$strings["Edit"] = "Edita"; -App::$strings["Delete"] = "Esborra"; -App::$strings["Create new folder"] = "Crea una carpeta nova"; -App::$strings["Upload file"] = "Puja arxiu"; -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["Profile Photos"] = "Fotos del Perfil"; -App::$strings["Logout"] = "Desconectar"; -App::$strings["End this session"] = "Finalitza aquesta sessió"; -App::$strings["Home"] = "Personal"; -App::$strings["Your posts and conversations"] = "Les teves entrades i converses"; -App::$strings["View Profile"] = "Veure Perfil"; -App::$strings["Your profile page"] = "La teva pàgina de perfil"; -App::$strings["Edit Profiles"] = "Editar Perfils"; -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["Photos"] = "Fotos"; -App::$strings["Your photos"] = "Les Teves Fotos"; -App::$strings["Your files"] = "Els teus arxius"; -App::$strings["Chat"] = "Xerrar"; -App::$strings["Your chatrooms"] = "Les teves sales de xerrar"; -App::$strings["Bookmarks"] = "Marcadors"; -App::$strings["Your bookmarks"] = "Els teus marcadors"; -App::$strings["Webpages"] = "Pàgines web"; -App::$strings["Your webpages"] = "Les teves pàgines web"; -App::$strings["Login"] = "Identifica't"; -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"] = "Click per autentificar-te en el teu Lloc "; -App::$strings["Home Page"] = "Pàgina Personal"; -App::$strings["Register"] = "Registre"; -App::$strings["Create an account"] = "Crear un compte"; -App::$strings["Help"] = "Ajuda"; -App::$strings["Help and documentation"] = "Ajuda i documentació"; -App::$strings["Apps"] = "Aplicatius"; -App::$strings["Applications, utilities, links, games"] = "Aplicacions, utilitats, enllaços, jocs"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search site content"] = "Cerca en el contingut del lloc"; -App::$strings["Directory"] = "Directori"; -App::$strings["Channel Directory"] = "Directori de Canals"; -App::$strings["Matrix"] = "Matriu/Matrix"; -App::$strings["Your matrix"] = "El teu matrix"; -App::$strings["Mark all matrix notifications seen"] = "Marca totes les notificacions de matrix vistes"; -App::$strings["Channel Home"] = "Canal Personal"; -App::$strings["Channel home"] = "Canal personal"; -App::$strings["Mark all channel notifications seen"] = "Marca totes les notificacions de canal vistes"; -App::$strings["Connections"] = "Connexions"; -App::$strings["Notices"] = "Noticies"; -App::$strings["Notifications"] = "Notificacions"; -App::$strings["See all notifications"] = "Veure totes les Notificacions"; -App::$strings["Mark all system notifications seen"] = "Marca totes les notificacions vistes"; -App::$strings["Mail"] = "Correu"; -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"] = "Escriu un missatge"; -App::$strings["Events"] = "Events"; -App::$strings["Event Calendar"] = "Calendari d'Events"; -App::$strings["See all events"] = "Veure tots els events"; -App::$strings["Mark all events seen"] = "Marcar tots els events vistos"; -App::$strings["Channel Manager"] = "Gestor del Canal"; -App::$strings["Manage Your Channels"] = "Gestiona els Teus Canals"; -App::$strings["Settings"] = "Configuració"; -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, content"] = "@name, #tag, content"; -App::$strings["Please wait..."] = "Si us plau, espera......."; -App::$strings["view full size"] = "Mostra a mida competa"; -App::$strings["\$Projectname Notification"] = "Notificació de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gràcies,"; -App::$strings["%s Administrator"] = "Administrador de %s"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sense assumpte"; -App::$strings["prev"] = "anterior"; -App::$strings["first"] = "primer"; -App::$strings["last"] = "últim"; -App::$strings["next"] = "següent"; -App::$strings["older"] = "més antic"; -App::$strings["newer"] = "més nou"; -App::$strings["No connections"] = "No hi ha connexions"; -App::$strings["%d Connection"] = array( - 0 => "Hi ha %d connexió", - 1 => "Hi ha %d connexions", -); -App::$strings["View Connections"] = "Mostra les connexions"; -App::$strings["Save"] = "Desa"; -App::$strings["poke"] = "fes-li un toc"; -App::$strings["poked"] = "ha fet un toc a"; -App::$strings["ping"] = "fes-li ping"; -App::$strings["pinged"] = "ha fet ping a"; -App::$strings["prod"] = "pica"; -App::$strings["prodded"] = "ha picat"; -App::$strings["slap"] = "fes-li un cop de palmell"; -App::$strings["slapped"] = "ha fet un cop de palmell a"; -App::$strings["finger"] = "acaricia"; -App::$strings["fingered"] = "ha acariciat"; -App::$strings["rebuff"] = "aparta"; -App::$strings["rebuffed"] = "ha apartat"; -App::$strings["happy"] = "feliç"; -App::$strings["sad"] = "trist"; -App::$strings["mellow"] = "tendre"; -App::$strings["tired"] = "cansat"; -App::$strings["perky"] = "animat"; -App::$strings["angry"] = "enfadat"; -App::$strings["stupified"] = "encantat"; -App::$strings["puzzled"] = "perplex"; -App::$strings["interested"] = "Interessat"; -App::$strings["bitter"] = "amargat"; -App::$strings["cheerful"] = "alegre"; -App::$strings["alive"] = "viu"; -App::$strings["annoyed"] = "molest"; -App::$strings["anxious"] = "ansiós"; -App::$strings["cranky"] = "de mala bava"; -App::$strings["disturbed"] = "transtornat"; -App::$strings["frustrated"] = "frustrat"; -App::$strings["depressed"] = "deprimit"; -App::$strings["motivated"] = "motivat"; -App::$strings["relaxed"] = "relaxat"; -App::$strings["surprised"] = "sorprès"; -App::$strings["Monday"] = "dilluns"; -App::$strings["Tuesday"] = "dimarts"; -App::$strings["Wednesday"] = "dimecres"; -App::$strings["Thursday"] = "dijous"; -App::$strings["Friday"] = "divendres"; -App::$strings["Saturday"] = "dissabte"; -App::$strings["Sunday"] = "diumenge"; -App::$strings["January"] = "gener"; -App::$strings["February"] = "febrer"; -App::$strings["March"] = "març"; -App::$strings["April"] = "abril"; -App::$strings["May"] = "maig"; -App::$strings["June"] = "juny"; -App::$strings["July"] = "juliol"; -App::$strings["August"] = "agost"; -App::$strings["September"] = "setembre"; -App::$strings["October"] = "octubre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "desembre"; -App::$strings["unknown.???"] = "desconegut.???"; -App::$strings["bytes"] = "bytes"; -App::$strings["remove category"] = "elimina la categoria"; -App::$strings["remove from file"] = "elimina de l'arxiu"; -App::$strings["Click to open/close"] = "Fes clic per obrir/tancar"; -App::$strings["Link to Source"] = "Enllaç a la font"; -App::$strings["default"] = "per defecte"; -App::$strings["Page layout"] = "Disseny de la pàgina"; -App::$strings["You can create your own with the layouts tool"] = "Pots crear el teu propi disseny de pàgina amb l'editor"; -App::$strings["Page content type"] = "Tipus de contingut de la pàgina"; -App::$strings["Select an alternate language"] = "Tria un idioma alternatiu"; -App::$strings["photo"] = "foto"; -App::$strings["event"] = "esdeveniment"; -App::$strings["status"] = "estat"; -App::$strings["comment"] = "comentari"; -App::$strings["activity"] = "activitat"; -App::$strings["Design Tools"] = "Eines de disseny"; +App::$rtl = 0; +App::$strings["Can view my channel stream and posts"] = "Pot veure el flux i entrades del meu canal"; +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 perfil del meu 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 les meves fotos i arxius"; +App::$strings["Can upload/modify my file storage and photos"] = "Pot pujar i modificar els meus fitxers i fotos"; +App::$strings["Can view my channel webpages"] = "Pot veure les pàgines web del meu canal"; +App::$strings["Can view my wiki pages"] = "Por veure les meves pàgines wiki"; +App::$strings["Can create/edit my channel webpages"] = "Pot crear i modificar les pàgines web del meu canal"; +App::$strings["Can write to my wiki pages"] = "Pot escriure a les meves pàgines wiki"; +App::$strings["Can post on my channel (wall) page"] = "Pot penjar entrades al mur del meu canal"; +App::$strings["Can comment on or like my posts"] = "Pot comentar i fer \"m'agrada\" a les meves entrades"; +App::$strings["Can send me private mail messages"] = "Pot enviar-me missatges privats"; +App::$strings["Can like/dislike profiles and profile things"] = "Pot fer m'agrada i no m'agrada als perfils i coses del perfil"; +App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "Pot fer arribar entrades a totes les meves connexions fent servir mencions amb \"!\""; +App::$strings["Can chat with me"] = "Pot xatejar amb mi"; +App::$strings["Can source my public posts in derived channels"] = "Pot fer servir les meves entrades per publicar automàticament en altres canals"; +App::$strings["Can administer my channel"] = "Pot administrar el meu canal"; +App::$strings["Social Networking"] = "Xarxes Socials"; +App::$strings["Social - Federation"] = "Social - Federació"; +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"] = "Fòrum comunitari"; +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"] = "Republicador - Principalment públic"; +App::$strings["Feed - Restricted"] = "Republicador - Restringit"; +App::$strings["Special Purpose"] = "Objectiu Especial"; +App::$strings["Special - Celebrity/Soapbox"] = "Especial - Personatge públic / Plataforma"; +App::$strings["Special - Group Repository"] = "Especial - Repositori d'un Grup"; +App::$strings["Other"] = "Altres"; +App::$strings["Custom/Expert Mode"] = "Personalitzat, mode expert"; +App::$strings["Requested profile is not available."] = "El perfil demanat no està disponible."; +App::$strings["Permission denied."] = "S'ha denegat el permís."; +App::$strings["Block Name"] = "Nom del bloc"; App::$strings["Blocks"] = "Blocs"; -App::$strings["Menus"] = "Menús"; -App::$strings["Layouts"] = "Dissenys"; -App::$strings["Pages"] = "Pàgines"; -App::$strings["Categories"] = "Categories"; -App::$strings["System"] = "Sistema"; -App::$strings["Personal"] = "Personal"; -App::$strings["Create Personal App"] = "Crear Personal App"; -App::$strings["Edit Personal App"] = "Editar Personal App"; -App::$strings["Connect"] = "Connecta "; -App::$strings["Ignore/Hide"] = "Ignora/Amaga"; -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 the channel address"] = "Introdueix la adreça del canal"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: pep@exemple.com, http://exemple.com/vinyet"; -App::$strings["Notes"] = "Notes"; -App::$strings["Remove term"] = "Plaç de remoció"; -App::$strings["Saved Searches"] = "Cerques desades"; -App::$strings["add"] = "afegeix"; -App::$strings["Saved Folders"] = "Carpetes Guardades"; -App::$strings["Everything"] = "Tot"; -App::$strings["Archives"] = "Arxius"; -App::$strings["Me"] = "Jo"; -App::$strings["Family"] = "Família"; +App::$strings["Block Title"] = "Títol del bloc"; +App::$strings["Created"] = "Creat"; +App::$strings["Edited"] = "Editat"; +App::$strings["Create"] = "Crea"; +App::$strings["Edit"] = "Edita"; +App::$strings["Share"] = "Comparteix"; +App::$strings["Delete"] = "Esborra"; +App::$strings["View"] = "Mostra"; +App::$strings["Total invitation limit exceeded."] = "S'ha superat el límit total d'invitacions."; +App::$strings["%s : Not a valid email address."] = "L'adreça de correu %s no és vàlida."; +App::$strings["Please join us on \$Projectname"] = "Suma't a \$Projectname!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "S'ha superat el límit d'invitacions. Posa't en contacte amb l'administrador del lloc."; +App::$strings["%s : Message delivery failed."] = "No s'ha pogut lliurar la invitació a %s"; +App::$strings["%d message sent."] = array( + 0 => "S'ha enviat %d invitació.", + 1 => "S'han enviat %d invitacions.", +); +App::$strings["You have no more invitations available"] = "No pots enviar més invitacions"; +App::$strings["Send invitations"] = "Envia invitacions"; +App::$strings["Enter email addresses, one per line:"] = "Introdueix 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."] = "Vols sumar-te a la meva comunitat a \$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 (estan tots interconnectats)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Escriu a la barra de cerca la meva adreça de la xarxa \$Projectname."; +App::$strings["or visit"] = "o bé visita"; +App::$strings["3. Click [Connect]"] = "3. Clica [connecta]"; +App::$strings["Submit"] = "Envia"; +App::$strings["Articles"] = "Articles"; +App::$strings["Add Article"] = "Afegeix un article"; +App::$strings["Item not found"] = "No s'ha trobat l'element"; +App::$strings["Layout Name"] = "Nom del disseny"; +App::$strings["Layout Description (Optional)"] = "Descripció del disseny (opcional)"; +App::$strings["Edit Layout"] = "Edita el disseny"; +App::$strings["Cancel"] = "Cancel·la"; +App::$strings["Permission denied"] = "S'ha denegat el permís"; +App::$strings["Invalid profile identifier."] = "L'identificador de perfil no és vàlid."; +App::$strings["Profile Visibility Editor"] = "Editor de la visibilitat del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Clica sobre un contacte per afegir-lo o esborrar-lo."; +App::$strings["Visible To"] = "Visible per"; +App::$strings["All Connections"] = "Totes les connexions"; +App::$strings["INVALID EVENT DISMISSED!"] = "S'HA DESCARTAT UN ESDEVENIMENT INVÀLID."; +App::$strings["Summary: "] = "Resum:"; +App::$strings["Unknown"] = "Desconegut"; +App::$strings["Date: "] = "Data:"; +App::$strings["Reason: "] = "Motiu:"; +App::$strings["INVALID CARD DISMISSED!"] = "S'HA DESCARTAT UNA TARGETA INVÀLIDA."; +App::$strings["Name: "] = "Nom:"; +App::$strings["Event title"] = "Títol de l'esdeveniment"; +App::$strings["Start date and time"] = "Data i hora d'inici"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Exemple: AAAA-MM-DD HH:mm"; +App::$strings["End date and time"] = "Data i hora de fi"; +App::$strings["Description"] = "Descripció"; +App::$strings["Location"] = "Ubicació"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Següent"; +App::$strings["Today"] = "Avui"; +App::$strings["Month"] = "mes"; +App::$strings["Week"] = "setmana"; +App::$strings["Day"] = "dia"; +App::$strings["List month"] = "Mes en llista"; +App::$strings["List week"] = "Setmana en llista"; +App::$strings["List day"] = "Dia en llista"; +App::$strings["More"] = "Mostra més"; +App::$strings["Less"] = "Mostra menys"; +App::$strings["Select calendar"] = "Tria un calendari"; +App::$strings["Delete all"] = "Esborra'ls tots"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Malauradament encara no es poden editar esdeveniments periòdics."; +App::$strings["Name"] = "Nom"; +App::$strings["Organisation"] = "Organització"; +App::$strings["Title"] = "Títol"; +App::$strings["Phone"] = "Telèfon"; +App::$strings["Email"] = "Correu electrònic"; +App::$strings["Instant messenger"] = "Missatgeria instantània"; +App::$strings["Website"] = "Lloc web"; +App::$strings["Address"] = "Adreça"; +App::$strings["Note"] = "Nota"; +App::$strings["Mobile"] = "Mòbil"; +App::$strings["Home"] = "Inici"; +App::$strings["Work"] = "Feina"; +App::$strings["Add Contact"] = "Afegeix un contacte"; +App::$strings["Add Field"] = "Afegeix un camp"; +App::$strings["Update"] = "Actualitza"; +App::$strings["P.O. Box"] = "Apartat de correus"; +App::$strings["Additional"] = "Addicional"; +App::$strings["Street"] = "Carrer"; +App::$strings["Locality"] = "Localitat"; +App::$strings["Region"] = "Regió"; +App::$strings["ZIP Code"] = "Codi postal"; +App::$strings["Country"] = "País"; +App::$strings["Default Calendar"] = "Calendari per defecte"; +App::$strings["Default Addressbook"] = "Llibreta d'adreces per defecte"; +App::$strings["This site is not a directory server"] = "Aquest hub no és un servidor de directori"; +App::$strings["You must be logged in to see this page."] = "Has de tenir una sessió iniciada 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."] = "S'ha denegat el permís. La petició s'ha redirigit a la pàgina de perfil."; +App::$strings["Search Results For:"] = "Cerca resultats per:"; +App::$strings["Reset form"] = "Esborra el formulari"; +App::$strings["Export Channel"] = "Exporta un 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ò serveix com a còpia de seguretat de les teves connexions, permisos, perfil i dades bàsiques, i pots emprar-la per a importar aquestes dades des d'un altre hub. No conté el contingut del canal."; +App::$strings["Export Content"] = "Exporta'n 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 una còpia de seguretat en format JSON. Pot ser restaurada o importada des d'un altre hub. Això desa totes les teves connexions, permisos, dades de perfil i diversos mesos de publicacions. L'arxiu pot ser MOLT gran. Si et plau, sigues pacient ja que la preparació de l'arxiu pot trigar una estona, abans que el puguis començar a baixar."; +App::$strings["Export your posts from a given year."] = "Exporta les entrades d'un any determinat."; +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 entrades i converses d'un any o un mes en particular. Ajusta la data a la barra d'adreces del navegador per seleccionar altres dates. Si l'exportació falla (possiblement degut a l'esgotament de la memòria RAM del servidor), prova de nou amb un interval de dates més petit."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per exemple, per seleccionar totes les entrades d'aquest any, ves a %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per exemple, per seleccionar totes les entrades del mes de gener d'aquest any, ves a %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)."] = "Les còpies de seguretat amb contingut es poden importar o restaurar des d'aquesta adreça %2\$s. En aquest cas és aquest servidor, però també serviria en un altre hub que allotgés un clon del teu canal. Si vols restaurar més d'un arxiu de contingut, per evitar problemes importa'ls en ordre cronològic."; +App::$strings["Welcome to Hubzilla!"] = "Benvingut/da a Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "No tens entrades pendents de veure..."; +App::$strings["Public access denied."] = "L'accés públic no està permès."; +App::$strings["Search"] = "Cerca"; +App::$strings["Items tagged with: %s"] = "Elements etiquetats amb: %s"; +App::$strings["Search results for: %s"] = "Resultats de cerca per: %s"; +App::$strings["Public Stream"] = "Flux públic"; +App::$strings["Location not found."] = "No s'ha trobat la ubicació."; +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."] = "Abans d'esborrar la ubicació principal actual, fes-ne principal una altra."; +App::$strings["Syncing locations"] = "S'estan sincronitzant les ubicacions"; +App::$strings["No locations found."] = "No s'ha trobat cap ubicació."; +App::$strings["Manage Channel Locations"] = "Gestiona les ubicacions del canal"; +App::$strings["Primary"] = "Primària"; +App::$strings["Drop"] = "Esborra"; +App::$strings["Sync Now"] = "Sincronitza ara"; +App::$strings["Please wait several minutes between consecutive operations."] = "Espera uns minuts entre operacions consecutives."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Si pots, és preferible esborrar la ubicació esborrant el canal des del servidor on està copiat."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Fes servir aquest formulari per a esborrar la ubicació del lloc si el hub ja no està operatiu."; +App::$strings["Change Order of Pinned Navbar Apps"] = "Canvia l'ordre de les aplicacions fixades a la barra de navegació"; +App::$strings["Change Order of App Tray Apps"] = "Canvia l'ordre de les aplicacions de la safata d'aplicacions"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Fes servir les fletxes per moure l'aplicació cap a l'esquerra (amunt) o cap a la dreta (avall)"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Fes servir les fletxes per moure l'aplicació amunt o avall en la safata"; +App::$strings["Menu not found."] = "No s'ha trobat el menú."; +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."] = "No s'ha pogut afegir l'element de menú."; +App::$strings["Not found."] = "No s'ha trobat."; +App::$strings["Menu Item Permissions"] = "Permisos dels ítems de 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"] = "Destí de l'enllaç o del submenú"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introdueix la URL de l'enllaç o tria un nom de menú per crear un submenú"; +App::$strings["Use magic-auth if available"] = "Empra la magic-auth si està disponible"; +App::$strings["No"] = "No"; +App::$strings["Yes"] = "Sí"; +App::$strings["Open link in new window"] = "Obre l'enllaç en una nova finestra"; +App::$strings["Order in list"] = "Ordre de la llista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Els números més alts al final de la llista"; +App::$strings["Submit and finish"] = "Envia i acaba"; +App::$strings["Submit and continue"] = "Envia i continua"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Destí de l'enllaç"; +App::$strings["Edit menu"] = "Edita el menú"; +App::$strings["Edit element"] = "Edita l'element"; +App::$strings["Drop element"] = "Esborra l'element"; +App::$strings["New element"] = "Element nou"; +App::$strings["Edit this menu container"] = "Edita el contenidor de menú"; +App::$strings["Add menu element"] = "Afegeix un 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."] = "No s'ha trobat l'element de menú."; +App::$strings["Menu item deleted."] = "S'ha esborrat l'element de menú."; +App::$strings["Menu item could not be deleted."] = "No s'ha pogut esborrar l'element de menú."; +App::$strings["Edit Menu Element"] = "Editar elements del menú"; +App::$strings["Link text"] = "Text de l'enllaç"; +App::$strings["Calendar entries imported."] = "S'han importat les entrades de calendari."; +App::$strings["No calendar entries found."] = "No s'ha trobat cap entrada de calendari."; +App::$strings["Event can not end before it has started."] = "L'esdeveniment no pot acabar abans de començar."; +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"] = "esdeveniment"; +App::$strings["Edit event title"] = "Edita el títol de l'esdeveniment"; +App::$strings["Required"] = "Obligatori"; +App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; +App::$strings["Edit Category"] = "Edita la categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Edita la data i hora d'inici"; +App::$strings["Finish date and time are not known or not relevant"] = "L'hora d'acabar és desconeguda o irrellevant"; +App::$strings["Edit finish date and time"] = "Edita 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 de l'usuari/a"; +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"] = "Edita la descripció"; +App::$strings["Edit Location"] = "Edita la ubicació"; +App::$strings["Preview"] = "Vista prèvia"; +App::$strings["Permission settings"] = "Configuració de permisos"; +App::$strings["Timezone:"] = "Zona horària:"; +App::$strings["Advanced Options"] = "Opcions avançades"; +App::$strings["l, F j"] = "l, j \\d\\e 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"] = "Edita l'esdeveniment"; +App::$strings["Create Event"] = "Crear un esdeveniment nou"; +App::$strings["Export"] = "Exporta"; +App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; +App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; +App::$strings["App installed."] = "S'ha instaŀlat l'aplicació."; +App::$strings["Malformed app."] = "L'aplicació conté errors."; +App::$strings["Embed code"] = "Codi embegut"; +App::$strings["Edit App"] = "Edita una aplicació"; +App::$strings["Create App"] = "Crea una aplicació"; +App::$strings["Name of app"] = "Nom de l'aplicació"; +App::$strings["Location (URL) of app"] = "Adreça URL de l'aplicació"; +App::$strings["Photo icon URL"] = "Adreça URL de la icona de l'aplicació"; +App::$strings["80 x 80 pixels - optional"] = "80x80 píxels (opcional)"; +App::$strings["Categories (optional, comma separated list)"] = "Categories (opcional, llista separada per comes)"; +App::$strings["Version ID"] = "Identificador o número de versió"; +App::$strings["Price of app"] = "Preu de l'aplicació"; +App::$strings["Location (URL) to purchase app"] = "Adreça URL de compra de l'aplicació"; +App::$strings["Please login."] = "Inicia sessió."; +App::$strings["Hub not found."] = "No s'ha trobat el hub."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "estat"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s segueix %3\$s de %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha deixat de seguir %3\$s de %2\$s"; +App::$strings["Channel not found."] = "No s'ha trobat el canal."; +App::$strings["Insert web link"] = "Insereix un enllaç web"; +App::$strings["Title (optional)"] = "Títol (opcional)"; +App::$strings["Edit Article"] = "Edita l'article"; +App::$strings["Nothing to import."] = "No s'ha trobat res per importar."; +App::$strings["Unable to download data from old server"] = "No s'han pogut descarregar les dades del servidor antic"; +App::$strings["Imported file is empty."] = "El fitxer importat està buit."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atenció: Les versions de les bases de dades difereixen de %1\$d actualitzacions."; +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["File to Upload"] = "Fitxer per pujar"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Has creat %1$.0f canals dels %2$.0f totals permesos."; +App::$strings["Loading"] = "S'està carregant"; +App::$strings["Your real name is recommended."] = "És recomanable fer servir el nom real."; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Exemples: \"Paula Gomila\", \"Manel i els seus cavalls\", \"Assemblea de veïnes del barri\", \"Filosofia\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "Es farà servir per crear una adreça de xarxa única, com la de email."; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "Els caràcters permesos són lletres minúscules sense accents, números i guions: a-z, 0-9, -, _"; +App::$strings["Channel name"] = "Nom del canal"; +App::$strings["Choose a short nickname"] = "Tria un àlies curt"; +App::$strings["Channel role and privacy"] = "Rol i privacitat del canal"; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges."; +App::$strings["Read more about channel permission roles"] = "Llegeix més sobre els rols de permisos en els canals"; +App::$strings["Create a Channel"] = "Crea un canal"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal és una identitat de xarxa única. Tant pot representar una persona (el seu perfil social), com un fòrum (un grup), una associació o la pàgina d'algun personatge públic, un flux de notícies, i moltes més coses."; +App::$strings["or import an existing channel from another location."] = "o bé importa un canal existent des d'una altra ubicació."; +App::$strings["Validate"] = "Valida-ho"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "No es permet esborrar un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al qual pertany."; +App::$strings["Remove This Channel"] = "Esborra aquest canal"; +App::$strings["WARNING: "] = "ALERTA:"; +App::$strings["This channel will be completely removed from the network. "] = "Aquest canal serà esborrat de la xarxa completament."; +App::$strings["This action is permanent and can not be undone!"] = "Aquesta acció és irreversible!"; +App::$strings["Please enter your password for verification:"] = "Per seguretat, torna a introduir la contrasenya per a confirmar aquesta acció:"; +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 es pot esborrar la instància del canal ubicada en aquest hub."; +App::$strings["Remove Channel"] = "Elimina el canal"; +App::$strings["Files: shared with me"] = "Arxius: compartits amb mi"; +App::$strings["NEW"] = "NOU"; +App::$strings["Size"] = "Mida"; +App::$strings["Last Modified"] = "Última modificació"; +App::$strings["Remove all files"] = "Esborra tots els arxius"; +App::$strings["Remove this file"] = "Esborra l'arxiu"; +App::$strings["\$Projectname Server - Setup"] = "Servidor de \$Projectname - Instaŀlació"; +App::$strings["Could not connect to database."] = "No s'ha pogut establir una connexió amb la base de dades"; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No s'ha pogut connectar amb la URL del lloc especificat. Comprova si hi ha un problema amb el certificat TLS o amb el registre DNS."; +App::$strings["Could not create table."] = "No s'ha pogut crear la taula."; +App::$strings["Your site database has been installed."] = "S'ha instaŀlat la base de dades del teu node."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Consulta el fitxer \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Comprovació del sistema"; +App::$strings["Check again"] = "Comprova de nou"; +App::$strings["Database connection"] = "Connexió amb la base de dades"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per tal d'instaŀlar \$Projectname cal configurar la connexió amb la base de dades."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Si tens dubtes sobre aquests paràmetres, posa't en contacte amb la proveïdora d'allotjament web o la persona que administradora del lloc."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de dades que especifiquis a continuació ja ha d'existir. Si no és així, crea-la abans de continuar."; +App::$strings["Database Server Name"] = "Nom del servidor de base de dades"; +App::$strings["Default is 127.0.0.1"] = "Per defecte és 127.0.0.1"; +App::$strings["Database Port"] = "Port per a la base de dades"; +App::$strings["Communication port number - use 0 for default"] = "Número del port. Posa 0 per fer servir el valor predeterminat"; +App::$strings["Database Login Name"] = "Nom d'usuari/a a la base de dades"; +App::$strings["Database Login Password"] = "Contrasenya d'usuari/a a la base de dades"; +App::$strings["Database Name"] = "Nom de la base de dades"; +App::$strings["Database Type"] = "Tipus de base de dades"; +App::$strings["Site administrator email address"] = "Adreça de correu de l'administrador/a del lloc"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "El teu compte de correu ha de coincidir-hi per poder emprar el panell web d'administració."; +App::$strings["Website URL"] = "Adreça URL del lloc web"; +App::$strings["Please use SSL (https) URL if available."] = "Si us plau, fes servir l'adreça amb TLS (https) si està disponible."; +App::$strings["Please select a default timezone for your website"] = "Escull la zona horària per defecte del teu lloc web"; +App::$strings["Site settings"] = "Configuració del lloc"; +App::$strings["PHP version 5.5 or greater is required."] = "Es necessita una versió de PHP igual o superior a la 5.5."; +App::$strings["PHP version"] = "Versió del PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No s'ha pogut trobar una versió de consola del PHP en la ruta del servidor 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."] = "Si no tens una versió de línia de comandes de PHP instaŀlada al servidor, no es podran fer sondejos periòdics en segon pla, fent servir el cron."; +App::$strings["PHP executable path"] = "Ruta al binari de PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introdueix la ruta al binari de php. Pots deixar-ho en blanc i continuar l'instaŀlació."; +App::$strings["Command line PHP"] = "Línia de comandes de PHP"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "No s'ha pogut fer servir PHP per línia de comandes perquè shell_exec() està deshabilitat. Cal habilitar-ho."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versió de línia de comandes de PHP al teu sistema no té el \"register_argc_argv\" activat."; +App::$strings["This is required for message delivery to work."] = "Això és necessari per poder lliurar missatges."; +App::$strings["PHP register_argc_argv"] = "register_argc_argv de PHP"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "El límit màxim de pujada està establerta en %s. El límit de pujada per arxiu de pujada és de %s. Es permeten pujar %d arxius alhora."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Pots modificar la configuració en l'arxiu de configuració php.ini del servidor."; +App::$strings["PHP upload limits"] = "Límits de pujada de PHP"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifratge"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si estàs fent servir un sistema operatiu Windows, consulta \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generar claus de xifratge"; +App::$strings["libCurl PHP module"] = "mòdul de PHP \"libCurl\""; +App::$strings["GD graphics PHP module"] = "mòdul de PHP \"GD graphics\""; +App::$strings["OpenSSL PHP module"] = "mòdul de PHP \"OpenSSL\""; +App::$strings["PDO database PHP module"] = "Mòdul PHP per la base de dades PDO"; +App::$strings["mb_string PHP module"] = "mòdul de PHP \"mb_string\""; +App::$strings["xml PHP module"] = "mòdul de PHP \"xml\""; +App::$strings["zip PHP module"] = "Mòdul PHP per als comprimits zip"; +App::$strings["Apache mod_rewrite module"] = "mòdul d'Apache: \"mod_rewrite\""; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: es necessita el mòdul \"mod-rewrite\" del servidor web Apache, però no està instal·lat."; +App::$strings["exec"] = "exec"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Error: no s'ha pogut fer servir exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Error: no s'ha pogut fer servir shell_exec. Cal instaŀlar-lo o bé habilitar-lo al php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: es necessita el mòdul PHP \"libCURL\", però no està instal·lat."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: es necessita el mòdul PHP \"GD graphics\" amb support JPEG, però no està instal·lat."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: es necessita el mòdul PHP \"OpenSSL\", però no està instal·lat."; +App::$strings["Error: PDO database PHP module required but not installed."] = "Error: no s'ha trobat el mòdul PHP per a la base de dades PDO. Cal instaŀlar-lo."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: es necessita el mòdul PHP \"mb_string\", però no està instal·lat."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: es necessita el mòdul PHP \"xml\" per al DAV, però no està instal·lat."; +App::$strings["Error: zip PHP module required but not installed."] = "Error: no s'ha trobat el mòdul PHP per als fitxers zip. Cal instaŀlar-lo."; +App::$strings[".htconfig.php is writable"] = "L'arxiu «.htconfig.php» es pot modificar"; +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 permisos de modificació."; +App::$strings["Please see install/INSTALL.txt for additional information."] = "Consulta install/INSTALL.txt per a més informació."; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Aquest software fa servir el motor de plantilles Smarty3 per a renderitzar les vistes web. Smarty3 compila plantilles a PHP per a agilitzar-ne el renderitzat."; +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 tal de guardar aquestes plantilles compilades, el servidor web necessita tenir permís d'escriptura en el directori %s sota la carpeta principal."; +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 top level web folder"] = "Aquest software fa servir la carpeta \"store\" per a desar els arxius pujats. El servidor web necessita permís d'escriptura per a accedir-hi. Es troba a la carpeta 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."] = "No s'ha pogut validar el certificat TLS. 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 per 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!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi node."; +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 vàlid, 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 vàlid é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."] = "Si no tens cap dubte que el certificat és vàlid i signat per una autoritat de confiança, comprova si has instaŀlat malament un certificat intermedi. Tot i que els navegadors no en demanen, són necessaris per les connexions entre servidors."; +App::$strings["SSL certificate validation"] = "Validació del certificat TLS"; +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»"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "L'arxiu de configuracio de la base de dades «.htconfig.php» no s'ha pogut modificar. L'hauràs de modificar manualment amb el text de la caixa de text, i desar-lo a l'arrel del servidor web."; +App::$strings["Errors encountered creating database tables."] = "S'han produït errors en crear taules a la base de dades."; +App::$strings["

What next?

"] = "

I ara què

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT! Cal que configuris manualment una execució periòdica de l'enquestador (poller en anglès)."; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Configuració dels canals prèmium"; +App::$strings["Enable premium channel connection restrictions"] = "Activa l'opció de restringir les connexions dels canals prèmium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Si us plau, introdueix 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:"] = "Les possibles connexions 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 per la persona propietària del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal restringit o prèmium"; +App::$strings["Queue Statistics"] = "Estadístiques de la cua"; +App::$strings["Total Entries"] = "Total d'entrades"; +App::$strings["Priority"] = "Prioritat"; +App::$strings["Destination URL"] = "Adreça URL de Destí"; +App::$strings["Mark hub permanently offline"] = "Marca el node com a permanentment fora de línia"; +App::$strings["Empty queue for this hub"] = "Buida la cua per aquest node"; +App::$strings["Last known contact"] = "Últim contacte conegut"; +App::$strings["Off"] = "No"; +App::$strings["On"] = "Sí"; +App::$strings["Lock feature %s"] = "Bloqueja l'opció «%s»"; +App::$strings["Manage Additional Features"] = "Gestiona les funcionalitats addicionals"; +App::$strings["Update has been marked successful"] = "S'ha marcat l'actualització com a exitosa"; +App::$strings["Executing %s failed. Check system logs."] = "Ha fallat l'execució de %s. Comprova el registre del sistema."; +App::$strings["Update %s was successfully applied."] = "S'ha aplicat amb èxit l'actualització %s."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Es desconeix si l'actualització %s s'ha aplicat amb èxit, ja que no ha retornat cap resultat."; +App::$strings["Update function %s could not be found."] = "No s'ha pogut trobar la funció d'actualització %s."; +App::$strings["Failed Updates"] = "Actualitzacions fallides"; +App::$strings["Mark success (if update was manually applied)"] = "Marca com a exitosa. Fes-ho només si l'actualització s'ha aplicat de forma manual i saps del cert que ha estat així."; +App::$strings["Attempt to execute this update step automatically"] = "Prova a fer automàticament aquesta actualització"; +App::$strings["No failed updates."] = "No hi ha actualitzacions fallides."; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "S'ha [des]bloquejat %s compte", + 1 => "S'han [des]bloquejat %s comptes", +); +App::$strings["%s account deleted"] = array( + 0 => "S'ha esborrat el compte %s", + 1 => "S'han esborrat %s comptes", +); +App::$strings["Account not found"] = "No s'ha trobat el compte"; +App::$strings["Account '%s' deleted"] = "S'ha esborrat el compte '%s'"; +App::$strings["Account '%s' blocked"] = "S'ha bloquejat el compte '%s'"; +App::$strings["Account '%s' unblocked"] = "S'ha desbloquejat el compte '%s'"; +App::$strings["Administration"] = "Administració"; +App::$strings["Accounts"] = "Comptes"; +App::$strings["select all"] = "sel·leciona-ho tot"; +App::$strings["Registrations waiting for confirm"] = "Inscripcions esperant confirmació"; +App::$strings["Request date"] = "Data de la petició"; +App::$strings["No registrations."] = "Sense inscripcions."; +App::$strings["Approve"] = "Aprova"; +App::$strings["Deny"] = "Denega"; +App::$strings["Block"] = "Bloqueja"; +App::$strings["Unblock"] = "Desbloqueja"; +App::$strings["ID"] = "Identificador"; +App::$strings["All Channels"] = "Tots els canals"; +App::$strings["Register date"] = "Data d'inscripció"; +App::$strings["Last login"] = "Últim inici de sessió"; +App::$strings["Expires"] = "Caduca"; +App::$strings["Service Class"] = "Classe de servei"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "S'esborraran tots els comptes seleccionats!\\n\\nTot el que hagin publicat en aquest lloc també serà esborrat permanentment!\\n\\nN'estàs segur/a de continuar?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "El compte {0} serà eliminat!\\n\\nTot el que hagi publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur/a?"; +App::$strings["Log settings updated."] = "S'ha actualitzat la configuració del registre."; +App::$strings["Logs"] = "Registre"; +App::$strings["Clear"] = "Neteja"; +App::$strings["Debugging"] = "Depuració"; +App::$strings["Log file"] = "Arxiu de registre"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "El servidor web l'ha de poder modificar. Escriu la ruta relativa respecte a la carpeta arrel del servidor web."; +App::$strings["Log level"] = "Nivell de registre"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s canal censurat/no censurat", + 1 => "S'han [des]censurat %s canals", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s codi permes/no permes al canal", + 1 => "S'han [des]activat %s codis de canal", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canal esborrat", + 1 => "S'han esborrat %s canals", +); +App::$strings["Channel not found"] = "No s'ha trobat el canal"; +App::$strings["Channel '%s' deleted"] = "S'ha esborrat el canal «%s»"; +App::$strings["Channel '%s' censored"] = "S'ha censurat el canal «%s»"; +App::$strings["Channel '%s' uncensored"] = "S'ha descensurat el canal «%s»"; +App::$strings["Channel '%s' code allowed"] = "S'ha activat un codi pel canal «%s»"; +App::$strings["Channel '%s' code disallowed"] = "S'ha desactivat un codi pel canal «%s»"; +App::$strings["Channels"] = "Canals"; +App::$strings["Censor"] = "Censura"; +App::$strings["Uncensor"] = "Descensura"; +App::$strings["Allow Code"] = "Activa el codi"; +App::$strings["Disallow Code"] = "Desactiva el codi"; +App::$strings["Channel"] = "Canal"; +App::$strings["UID"] = "Identificador"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Els canals seleccionats estan a punt de ser esborrats\\n\\nTotes les seves publicacions en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a? "; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} està a punt de ser esborrat!\\n\\nTotes les seves publicacions d'aquest en aquest lloc s'eliminaran de forma permanent!\\n\\nN'estàs segur/a?"; +App::$strings["Theme settings updated."] = "S'ha actualitzat la configuració de tema."; +App::$strings["No themes found."] = "No s'ha trobat cap tema."; +App::$strings["Item not found."] = "No s'ha trobat l'element."; +App::$strings["Disable"] = "Desactiva"; +App::$strings["Enable"] = "Activa"; +App::$strings["Screenshot"] = "Captura de pantalla"; +App::$strings["Themes"] = "Temes"; +App::$strings["Toggle"] = "Commuta'n l'estat"; +App::$strings["Settings"] = "Configuració"; +App::$strings["Author: "] = "Autor/a:"; +App::$strings["Maintainer: "] = "Persona mantenidora:"; +App::$strings["[Experimental]"] = "[Experimental]"; +App::$strings["[Unsupported]"] = "[Incompatible]"; +App::$strings["Site settings updated."] = "S'ha actualitzat la configuració del lloc"; +App::$strings["Default"] = "Predeterminat"; +App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; +App::$strings["mobile"] = "mòbil"; +App::$strings["experimental"] = "experimental"; +App::$strings["unsupported"] = "incompatible"; +App::$strings["Yes - with approval"] = "Sí - amb aprovació"; +App::$strings["My site is not a public server"] = "El meu node no es un servidor públic"; +App::$strings["My site has paid access only"] = "El meu node només ofereix accés de pagament"; +App::$strings["My site has free access only"] = "El meu node només ofereix accés gratuït"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "El meu node ofereix comptes gratuïts i millores de pagament"; +App::$strings["Beginner/Basic"] = "Principiant/bàsica"; +App::$strings["Novice - not skilled but willing to learn"] = "Aprenent - amb poca experiència però amb ganes d'aprendre"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedi - còmode en entorns informàtics"; +App::$strings["Advanced - very comfortable"] = "Avançat - molt còmode en entorns informàtics"; +App::$strings["Expert - I can write computer code"] = "Expert - Sé programar"; +App::$strings["Wizard - I probably know more than you do"] = "Bruixot - Segurament en sé més que tu"; +App::$strings["Default permission role for new accounts"] = "Rol de permisos per defecte per als comptes nous."; +App::$strings["This role will be used for the first channel created after registration."] = "S'aplicarà aquest rol al primer canal que es creï després del registre d'un compte."; +App::$strings["Site"] = "Node"; +App::$strings["Registration"] = "Inscripcions"; +App::$strings["File upload"] = "Pujada d'arxius"; +App::$strings["Policies"] = "Polítiques"; +App::$strings["Advanced"] = "Avançat"; +App::$strings["Site name"] = "Nom del node"; +App::$strings["Site default technical skill level"] = "Nivell per defecte del lloc de competències tècniques"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Es fa servir per oferir una experiència ajustada al nivell tècnic de cadascú"; +App::$strings["Lock the technical skill level setting"] = "Bloqueja el paràmetre de nivell tècnic"; +App::$strings["Members can set their own technical comfort level by default"] = "Per defecte, els/les membres poden modificar el paràmetre de nivell tècnic"; +App::$strings["Banner/Logo"] = "Cartell i logotip"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Es permet contingut HTML, CSS i JS, sense filtrar"; +App::$strings["Administrator Information"] = "Informació de l'administració"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informació per contactar amb les persones administradores del node. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode."; +App::$strings["Site Information"] = "Informació del node"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descripció del node visible públicament. Es mostra a la pàgina d'informació del node. S'hi pot emprar BBCode."; +App::$strings["System language"] = "Llengua del sistema"; +App::$strings["System theme"] = "Tema del sistema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema per defecte. Les persones usuàries poden sobreescriure'l a la configuració de perfil: canvia la configuració de tema"; +App::$strings["Allow Feeds as Connections"] = "Permet connectar-se a fluxos RSS"; +App::$strings["(Heavy system resource usage)"] = "(Demana molts recursos de 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 total per les imatges pujades, en bytes. Per defecte és 0, que vol dir iŀlimitada."; +App::$strings["Does this site allow new member registration?"] = "Aquest node està obert a la inscripció de nous membres?"; +App::$strings["Invitation only"] = "Només per invitació"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Només permet nous membres només a través d'invitacions. Perquè tingui efecte, les inscripcions han d'estar obertes a nous membres."; +App::$strings["Minimum age"] = "Edat mínima"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Edat mínima en anys per a poder crear un compte en aquest lloc."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Quina descripció s'acosta més al tipus de comptes oferts en aquest node?"; +App::$strings["Register text"] = "Text d'inscripció"; +App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà en gran a la pàgina d'inscripció"; +App::$strings["Site homepage to show visitors (default: login box)"] = "Pàgina d'inici a mostrar als visitants (per defecte: la pàgina d'inici de sessió)"; +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: 'public' per a mostrar el flux públic, 'page/sys/home' per a mostrar una pàgina web de sistema de nom 'home', o 'include:home.html' per a incloure un arxiu."; +App::$strings["Preserve site homepage URL"] = "Preserva l'adreça URL de la pàgina d'inici"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la pàgina d'inici del node en un marc en el lloc original enlloc de redirigir-hi"; +App::$strings["Accounts abandoned after x days"] = "Els comptes es consideren abandonats després de X dies"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Estalviarà recursos del sistema en no sondejar nodes externs per a comptes abandonats. Un 0 vol dir \"mai\"."; +App::$strings["Allowed friend domains"] = "Dominis amb permisos de connexió"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Llista separada per comes de dominis en els quals està permès establir relacions d'amistat amb aquest node. S'accepten comodins (*). Deixa-ho buit per a acceptar qualsevol domini"; +App::$strings["Verify Email Addresses"] = "Verifica les adreces de correu electrònic"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activa per a comprovar l'adreça de correu emprada durant la inscripció d'un nou compte (recomanat)."; +App::$strings["Force publish"] = "Força la publicació"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Activa per a forçar que tots el perfils en aquest node siguin llistats en el directori del lloc."; +App::$strings["Import Public Streams"] = "Importar fluxos públics"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importa i permet l'accés a contingut públic sondejat d'altres llocs. Avís: aquest contingut no estarà moderat."; +App::$strings["Site only Public Streams"] = "Fluxos públics només locals"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permet accedir a aquell contingut públic que s'hagi originat en aquest lloc, suposant que no s'estan important fluxos públics d'altres nodes."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Permet a qualsevol persona d'internet d'accedir els fluxos públics"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desabilita-ho per a demanar iniciar sessió per poder-ho veure. Alerta: el contingut no estarà moderat."; +App::$strings["Only import Public stream posts with this text"] = "Importa només entrades del flux públics que continguin aquest text"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "paraules una per línia o #etiquetes o /patrons/ o idioma=xx, deixar en blanc per importar totes les entrades"; +App::$strings["Do not import Public stream posts with this text"] = "No importes entrades del flux públic que continguin aquest text"; +App::$strings["Login on Homepage"] = "Accés a la Pàgina d'inici"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut."; +App::$strings["Enable context help"] = "Activar l'ajuda contextual"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Mostra l'ajuda contextual per la pàgina actual quan el botó d'ajuda es pressionat."; +App::$strings["Reply-to email address for system generated email."] = "Adreça de correu de resposta per als correus generats."; +App::$strings["Sender (From) email address for system generated email."] = "Adreça de correu de remitent per als correus generats."; +App::$strings["Name of email sender for system generated email."] = "Nom visible de remitent per als correus generats."; +App::$strings["Directory Server URL"] = "URL del Servidor de Directoris"; +App::$strings["Default directory server"] = "Servidor de directori per defecte"; +App::$strings["Proxy user"] = "Usuari Proxy"; +App::$strings["Proxy URL"] = "URL del Proxy"; +App::$strings["Network timeout"] = "Temps d'espera de la xarxa"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)"; +App::$strings["Delivery interval"] = "Interval de lliurament"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats."; +App::$strings["Deliveries per process"] = "Entregues per processar"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Nombre de entregues a intentar processar en un únic procèss del sistema operatiu. Ajustar si es necessari per millorar el rendiment. Es recomana: 1-5."; +App::$strings["Queue Threshold"] = "Llindar de la cua"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Posposa el lliurament immediat si la cua conté més d'aquest nombre d'entrades."; +App::$strings["Poll interval"] = "interval de sondeig"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament."; +App::$strings["Path to ImageMagick convert program"] = "Ruta al programa de conversió d'imatges ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si se n'indica la ruta, es farà servir aquest programa per a generar miniatures per a imatges enormes (més de 4000 píxels d'ample o alt). En cas contrari es pot esgotar la memòria del servidor. Ruta d'exemple: /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Permet miniatures en SVG a l'explorador de fitxers"; +App::$strings["WARNING: SVG images may contain malicious code."] = "Alerta: Les imatges SVG poden contenir codi maliciós."; +App::$strings["Maximum Load Average"] = "Càrrega Mitja Màxima"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Període d'expiració en dies per contingut importat (malla/xarxa)"; +App::$strings["0 for no expiration of imported content"] = "0 vol dir sense temps d'expiració pel contingut importat"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "No facis caducar les entrades que tinguin comentaris més nous que aquest nombre de dies"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidors públics: Pàgina d'arribada promocional per a nous usuaris o usuàries."; +App::$strings["Create this page first. Default is %s/register"] = "Crea primer aquesta pàgina. Per defecte és %s/register"; +App::$strings["Page to display after creating a new channel"] = "Pàgina que es mostrarà després d'haver creat un canal nou"; +App::$strings["Default: profiles"] = "Per defecte: profiles"; +App::$strings["Optional: site location"] = "Opcional: ubicació del node"; +App::$strings["Region or country"] = "Regió o país"; +App::$strings["Plugin %s disabled."] = "S'ha desactivat l'extensió %s."; +App::$strings["Plugin %s enabled."] = "S'ha activat l'extensió %s."; +App::$strings["Addons"] = "Extensions"; +App::$strings["Minimum project version: "] = "Versió mínima del projecte:"; +App::$strings["Maximum project version: "] = "Versió màxima del projecte:"; +App::$strings["Minimum PHP version: "] = "Versió mínima de PHP:"; +App::$strings["Compatible Server Roles: "] = "Rols de servidor compatibles"; +App::$strings["Requires: "] = "Demana:"; +App::$strings["Disabled - version incompatibility"] = "Desactivada - versions incompatibles"; +App::$strings["Enter the public git repository URL of the addon repo."] = "Introdueix la URL del repositori git d'extensions. Ha de ser un repositori públic."; +App::$strings["Addon repo git URL"] = "Adreça URL del repositori d'extensions."; +App::$strings["Custom repo name"] = "Nom personalitzat pel repositori"; +App::$strings["(optional)"] = "(opcional)"; +App::$strings["Download Addon Repo"] = "Descarrega el repositori"; +App::$strings["Install new repo"] = "Instal·la un nou repositori"; +App::$strings["Install"] = "Instal·la"; +App::$strings["Manage Repos"] = "Gestiona els repositoris"; +App::$strings["Installed Addon Repositories"] = "Repositoris instaŀlats"; +App::$strings["Install a New Addon Repository"] = "Instal·la un nou repositori"; +App::$strings["Switch branch"] = "Canvia de branca"; +App::$strings["Remove"] = "Esborra"; +App::$strings["New Profile Field"] = "Camp de Perfil Nou"; +App::$strings["Field nickname"] = "Àlies de Camp"; +App::$strings["System name of field"] = "nOM DEL SISTEMA DEL CAMP"; +App::$strings["Input type"] = "Tipus d'entrada"; +App::$strings["Field Name"] = "Nom de Camp"; +App::$strings["Label on profile pages"] = "Etiqueta a les pàgines de perfil"; +App::$strings["Help text"] = "Text d'ajuda"; +App::$strings["Additional info (optional)"] = "Informació adicional (opcional)"; +App::$strings["Save"] = "Guardar"; +App::$strings["Field definition not found"] = "No es troba la definició del camp"; +App::$strings["Edit Profile Field"] = "Modifica el camp de perfil"; +App::$strings["Profile Fields"] = "Camps del Perfil"; +App::$strings["Basic Profile Fields"] = "Camps Bàsics del Perfil"; +App::$strings["Advanced Profile Fields"] = "Camps Avançats del Perfil"; +App::$strings["(In addition to basic fields)"] = "( addicionalment als camps bàsics)"; +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["Password changed for account %d."] = "S'ha modificat la contrasenya pel compte %d."; +App::$strings["Account settings updated."] = "S'han actualitzat els paràmetres del compte."; +App::$strings["Account not found."] = "No s'ha trobat el compte."; +App::$strings["Account Edit"] = "Edita el compte"; +App::$strings["New Password"] = "Introdueix la nova contrasenya"; +App::$strings["New Password again"] = "Repeteix la nova contrasenya"; +App::$strings["Technical skill level"] = "Nivell de competències tècniques"; +App::$strings["Account language (for emails)"] = "Idioma pel compte (pels correus)"; +App::$strings["Service class"] = "Classe de servei"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:"; +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."] = "Tota la resta de contingut embegut seà filtrat, excepte contingut embegut d'aquest lloc que està blocat explícitament."; +App::$strings["Security"] = "Seguretat"; +App::$strings["Block public"] = "Bloca que sigui públic"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "activa per blocar l'accés a les pàgines personals públiques a tothom excepte aquells/es que s'hagin autenticat en aquest node."; +App::$strings["Provide a cloud root directory"] = "Ofereix un directori arrel de núvols"; +App::$strings["The cloud root directory lists all channel names which provide public files"] = "EL directori arrel de núvols llista tots els canals que ofereixen fitxers públicament"; +App::$strings["Show total disk space available to cloud uploads"] = "Mostra l'espai disc disponible per a pujar arxius als núvols"; +App::$strings["Set \"Transport Security\" HTTP header"] = "Set \"Transport Security\" HTTP header"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Set \"Content Security Policy\" HTTP header"; +App::$strings["Allowed email domains"] = "Dominis de correu electonic acceptats"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "llista separada per comes de dominis d'adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini"; +App::$strings["Not allowed email domains"] = "Dominis de correu electrònic no acceptats"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "llista separada per comes de dominis d'adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats."; +App::$strings["Allow communications only from these sites"] = "Permetre comunicacions únicament des de aquests llocs"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un lloc per línia. Deixar en blanc per permetre, per defecte, la comunicació amb tothom."; +App::$strings["Block communications from these sites"] = "Bloca comunicacions que venen d'aquests llocs"; +App::$strings["Allow communications only from these channels"] = "Permet la comunicació només per aquests canals"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) per línia. Deixa en blanc per permetre, per defecte, la comunicació qualsevol canal."; +App::$strings["Block communications from these channels"] = "Bloca les comunicacions que venen d'aquests canals"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetre embeguts només de llocs web i enllaços segurs (SSL)."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Permetre HTML embegut sense filtrar només d'aquests dominis."; +App::$strings["One site per line. By default embedded content is filtered."] = "Un lloc per línia. Per defecte el contingut embegut es filtrat."; +App::$strings["Block embedded HTML from these domains"] = "Bloca HTML embegut d'aquests dominis"; +App::$strings["Remote privacy information not available."] = "informació privada remota no disponible."; +App::$strings["Visible to:"] = "Visible per:"; +App::$strings["__ctx:acl__ Profile"] = "Perfil"; +App::$strings["Comment approved"] = "S'ha aprovat el comentari"; +App::$strings["Comment deleted"] = "S'ha esborrat el comentari"; +App::$strings["Permission Name is required."] = "Es necessita el nom del perfil."; +App::$strings["Permission category saved."] = "S'ha desat la categoria de permisos."; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Pots crear regles de permisos segons classe de persona o de connexió."; +App::$strings["Permission Categories"] = "Categories de permisos"; +App::$strings["Permission Name"] = "Nom de permís"; +App::$strings["My Settings"] = "La meva configuració"; +App::$strings["inherited"] = "heretat"; +App::$strings["Individual Permissions"] = "Permisos Individuals"; +App::$strings["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."] = "Alguns permisos pot ser que vinguin heretats de la configuració de privacitat del teu canal. Aquesta té més prioritat que les configuracions individuals. No pots canviar aquests paràmetres aquí."; App::$strings["Friends"] = "Amics"; -App::$strings["Acquaintances"] = "Coneguts"; +App::$strings["Settings updated."] = "Ajustes actualizados."; +App::$strings["Nobody except yourself"] = "Ningú excepte tú"; +App::$strings["Only those you specifically allow"] = "Només allò que específicament permetis"; +App::$strings["Approved connections"] = "Connexions aprovades"; +App::$strings["Any connections"] = "Qualsevol connexió"; +App::$strings["Anybody on this website"] = "Qualsevol en aquest lloc"; +App::$strings["Anybody in this network"] = "Qualsevol en aquesta xarxa"; +App::$strings["Anybody authenticated"] = "Qualsevol autenticat"; +App::$strings["Anybody on the internet"] = "Qualsevol a internet"; +App::$strings["Publish your default profile in the network directory"] = "Publica el teu perfil per defecte al directori de la xarxa"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Ens permets suggerir-te com a potencial amic als nous membres?"; +App::$strings["or"] = "o"; +App::$strings["Your channel address is"] = "La teva adreça del canal es"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "Les teves fotos i arxius estan disponibles mitjançant WebDAV a"; +App::$strings["Automatic membership approval"] = "Acceptació automàtica de membres"; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "Si s'habilita, les soŀlicituds de connexió s'aprovaran automàticament sense requerir la teva interacció"; +App::$strings["Channel Settings"] = "Configuració de canal"; +App::$strings["Basic Settings"] = "Configuració bàsica"; +App::$strings["Full Name:"] = "Nom Complet:"; +App::$strings["Email Address:"] = "Adreça de E-Correu:"; +App::$strings["Your Timezone:"] = "La teva Franja Horària"; +App::$strings["Default Post Location:"] = "Localització Predeterminada de les Entrades:"; +App::$strings["Geographical location to display on your posts"] = "Posició geogràfica a mostrar a les teves entrades"; +App::$strings["Use Browser Location:"] = "Empra la Localització del Navegador:"; +App::$strings["Adult Content"] = "Contingut per a Adults"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Aquest canal publica freqúentment o amb regularitat contingut per a adults. (Si us plau, etiqueti qualsevol material per a adults amb #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Configuració de seguretat i privacitat"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Els teus permisos estan configurats. Clic per veure/ajustar"; +App::$strings["Hide my online presence"] = "Amaga la meva presencia en línia"; +App::$strings["Prevents displaying in your profile that you are online"] = "Evita mostrar en el teu perfil, que estàs en línia"; +App::$strings["Simple Privacy Settings:"] = "Configuració simple de privacitat:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Molt públic - extremadament permissiu (s'ha d'anar en compte)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)"; +App::$strings["Private - default private, never open or public"] = "Privat - privat per defecte, mai públic o obert"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloquejat - tothom bloquejat per defecte"; +App::$strings["Allow others to tag your posts"] = "Permet a altres etiquetar les teves entrades"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat"; +App::$strings["Channel Permission Limits"] = "Límits dels permisos del canal"; +App::$strings["Expire other channel content after this many days"] = "El contingut d'altes canals caduca després d'aquests dies"; +App::$strings["0 or blank to use the website limit."] = "0 o en blanc per emprar el limit del lloc web."; +App::$strings["This website expires after %d days."] = "Aquest lloc web expira després de %d dies."; +App::$strings["This website does not expire imported content."] = "A aquest lloc web no expira el contingut importat"; +App::$strings["The website limit takes precedence if lower than your limit."] = "El límit del lloc web pren la preferència si es inferior al teu límit."; +App::$strings["Maximum Friend Requests/Day:"] = "Nombre màxim de peticions d'amistat per dia"; +App::$strings["May reduce spam activity"] = "Pot reduir l'SPAM"; +App::$strings["Default Privacy Group"] = "Grup de privacitat per defecte"; +App::$strings["Use my default audience setting for the type of object published"] = "Empra la meva configuració d'audiència que hagi triat per al tipus d'entrada"; +App::$strings["Profile to assign new connections"] = "Perfil al qual assignar les connexions noves"; +App::$strings["Default Permissions Group"] = "Grup de permisos per defecte"; +App::$strings["Maximum private messages per day from unknown people:"] = "Nombre màxim de missatges privats de desconeguts al dia:"; +App::$strings["Useful to reduce spamming"] = "Útil per a reduir l'spam"; +App::$strings["Notification Settings"] = "Configuració de notificacions"; +App::$strings["By default post a status message when:"] = "Per defecte envia un missatge d'estat quan:"; +App::$strings["accepting a friend request"] = "S'accepta una sol·licitud d'amistat"; +App::$strings["joining a forum/community"] = "Apuntar-se a un fòrum o comunitat"; +App::$strings["making an interesting profile change"] = "Faci un canvi interesant al perfil"; +App::$strings["Send a notification email when:"] = "Notifica per correu quan:"; +App::$strings["You receive a connection request"] = "Rebi una petició de connexió"; +App::$strings["Your connections are confirmed"] = "Es confirma una connexió"; +App::$strings["Someone writes on your profile wall"] = "Algú ha escrit al mur del teu perfil"; +App::$strings["Someone writes a followup comment"] = "Algú ha escrit un comentari de resposta"; +App::$strings["You receive a private message"] = "Rebi un missatge privat"; +App::$strings["You receive a friend suggestion"] = "Rebi una suggerència d'amistat"; +App::$strings["You are tagged in a post"] = "Estàs etiquetat a l'entrada"; +App::$strings["You are poked/prodded/etc. in a post"] = "S'enfoten/te piquen/etc. en una entrada"; +App::$strings["Someone likes your post/comment"] = "A algú li ha agradat la teva entrada o comentari"; +App::$strings["Show visual notifications including:"] = "Mostra notificacion visuals, com ara:"; +App::$strings["Unseen grid activity"] = "Activitat de malla no vista"; +App::$strings["Unseen channel activity"] = "Activitat no vista del canal"; +App::$strings["Unseen private messages"] = "Missatges privats no llegits"; +App::$strings["Recommended"] = "Recomanat"; +App::$strings["Upcoming events"] = "Esdeveniments propers"; +App::$strings["Events today"] = "Esdeveniments d'avui"; +App::$strings["Upcoming birthdays"] = "Aniversaris propers"; +App::$strings["Not available in all themes"] = "No està disponible en tots els temes"; +App::$strings["System (personal) notifications"] = "Notificacions (personals) del sistema"; +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["Unseen shared files"] = "Fitxers compartits nous"; +App::$strings["Unseen public activity"] = "Activitat pública nova"; +App::$strings["Unseen likes and dislikes"] = "\"M'agrada\" i \"no m'agrada\" pendents"; +App::$strings["Unseen forum posts"] = "Entrades de fòrum no llegides"; +App::$strings["Email notification hub (hostname)"] = "Hub per a notificacions per correu (nom de domini)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "En cas que el teu canal estigui repicat en diversos hubs, habilita aquesta opció al teu hub preferit. Això evita notificacions duplicades. Exemple: %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostra totes les novetats d'entrades de mur, missatges privats i 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"; +App::$strings["Advanced Account/Page Type Settings"] = "Configuració avançada de compte i de tipus de pàgina"; +App::$strings["Change the behaviour of this account for special situations"] = "Modifica el comportament d'aquest compte en situacions especials"; +App::$strings["Miscellaneous Settings"] = "Configuració diversa"; +App::$strings["Default photo upload folder"] = "Carpeta per defecte de fotos pujades"; +App::$strings["%Y - current year, %m - current month"] = "%Y - any en curs, %m - mes corrent"; +App::$strings["Default file upload folder"] = "Carpeta per defecte d'arxius pujats"; +App::$strings["Personal menu to display in your channel pages"] = "Menú personal per mostrar en les teves pàgines de canal"; +App::$strings["Remove this channel."] = "Elimina aquest canal."; +App::$strings["Firefox Share \$Projectname provider"] = "Firefox Share \$Projectname provider"; +App::$strings["Start calendar week on Monday"] = "Comença la setmana en dilluns"; +App::$strings["Additional Features"] = "Característiques Addicionals"; +App::$strings["Your technical skill level"] = "El teu nivell tècnic"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Es fa servir per a oferir-te una experiència i un seguit de funcionalitats addicionals d'acord amb la complexitat que desitgis."; +App::$strings["This channel is limited to %d tokens"] = "Aquest canal té un límit de %d tokens"; +App::$strings["Name and Password are required."] = "El nom i la contrasenya són necessaris."; +App::$strings["Token saved."] = "S'ha desat el token."; +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 private content."] = "Fes servir aquest formulari per a crear identificadors d'accés temporal per tal de compartir coses amb persones no membres. Aquestes identitats són reconegudes a \"Control d'accés\" i poden ser usades per iniciar sessió i accedir a contingut privat."; +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:"] = "Si vols donar enllaços que no requereixin dos passos, pots afegir la contrasenya d'accés a la URL per compartir. Per exemple:"; +App::$strings["Guest Access Tokens"] = "Tokens d'accés de convidat"; +App::$strings["Login Name"] = "Nom d'usuari"; +App::$strings["Login Password"] = "Contrasenya d'usuari"; +App::$strings["Expires (yyyy-mm-dd)"] = "Data de caducitat (aaaa-mm-dd)"; +App::$strings["Their Settings"] = "La seva configuració"; +App::$strings["Name and Secret are required"] = "Es necessiten el nom i el secret"; +App::$strings["Add OAuth2 application"] = "Afegeix una aplicació OAuth2"; +App::$strings["Name of application"] = "Nom de l'aplicatiu"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20"; +App::$strings["Redirect"] = "Redirecciona"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi."; +App::$strings["Grant Types"] = "Tipus de permís"; +App::$strings["leave blank unless your application sepcifically requires this"] = "deixa-ho en blanc si no és que la teva aplicació ho demana explícitament"; +App::$strings["Authorization scope"] = "Àmbit d'autorització"; +App::$strings["OAuth2 Application not found."] = "No s'ha trobat l'aplicació OAuth2."; +App::$strings["Add application"] = "Afegir aplicatiu"; +App::$strings["Connected OAuth2 Apps"] = "Aplicacions OAuth2 connectades"; +App::$strings["Client key starts with"] = "La clau del client comença amb"; +App::$strings["No name"] = "Sin nombre"; +App::$strings["Remove authorization"] = "Elimina autorització"; +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."; +App::$strings["Technical skill level updated"] = "S'ha actualitzat el nivell de competències tècniques"; +App::$strings["Password verification failed."] = "La verificació de la contrasenya ha fallat."; +App::$strings["Passwords do not match. Password unchanged."] = "Les contrasenyes no coincideixen. Contrasenya sense canvis."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis."; +App::$strings["Password changed."] = "Contrasenya canviada."; +App::$strings["Password update failed. Please try again."] = "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho."; +App::$strings["Account Settings"] = "Configuració del compte"; +App::$strings["Current Password"] = "Contrasenya Actual"; +App::$strings["Enter New Password"] = "Entra la Nova Contrasenya"; +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["Remove Account"] = "Esborra el Compte"; +App::$strings["Remove this account including all its channels"] = "Esborra aquest compte inclosos tots els seus canals"; +App::$strings["Affinity Slider settings updated."] = "S'ha actualitzat la configuració de la barra d'afinitat"; +App::$strings["No feature settings configured"] = "No hi ha opcions de les funcions configurades"; +App::$strings["Default maximum affinity level"] = "Nivell màxim d'afinitat predeterminat"; +App::$strings["0-99 default 99"] = "0-99 (per defecte 99)"; +App::$strings["Default minimum affinity level"] = "Nivell mínim d'afinitat predeterminat"; +App::$strings["0-99 - default 0"] = "0-99 (per defecte 0)"; +App::$strings["Affinity Slider Settings"] = "Configuració de la barra d'afinitat"; +App::$strings["Addon Settings"] = "Configuració de les extensions"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Desa els canvis en un panell abans d'obrir-ne un altre."; +App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; +App::$strings["Display Settings"] = "Configuració de pantalla"; +App::$strings["Theme Settings"] = "Configuració de tema"; +App::$strings["Custom Theme Settings"] = "Configuració de temes personalitzats"; +App::$strings["Content Settings"] = "Configuració dels continguts"; +App::$strings["Display Theme:"] = "Tema de pantalla:"; +App::$strings["Select scheme"] = "Tria esquema"; +App::$strings["Preload images before rendering the page"] = "Precarrega les imatges abans de dibuixar la pàgina"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El temps subjectiu per carregar la pàgina pot ser llarg però la pàgina estarà preparada quan es mostri"; +App::$strings["Enable user zoom on mobile devices"] = "Zoom d'usuari en dispositius mòbils"; +App::$strings["Update browser every xx seconds"] = "Actualitza el navegador cada xx segons"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Mínim de 10 segons, sense màxim"; +App::$strings["Maximum number of conversations to load at any time:"] = "Nombre màxim de conversacions a càrregar cada vegada"; +App::$strings["Maximum of 100 items"] = "Màxim de 100 elements"; +App::$strings["Show emoticons (smilies) as images"] = "Mostra emoticons (smilies) com a imatges"; +App::$strings["Provide channel menu in navigation bar"] = "Mostra el menú de canal a la barra de navegació"; +App::$strings["Default: channel menu located in app menu"] = "Per defecte, el menú de canal es troba al menú d'aplicacions"; +App::$strings["Manual conversation updates"] = "Actualitza les converses manualment"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "Per defecte està habilitada perquè evita que la pàgina salti cap avall en actualitzar-se."; +App::$strings["Link post titles to source"] = "Enllaça a l'origen els títols de l'entrada"; +App::$strings["System Page Layout Editor - (advanced)"] = "Editor de dissenys de pàgines de sistema (avançat)"; +App::$strings["Use blog/list mode on channel page"] = "Empra el mode blog/llista a la pàgina del canal"; +App::$strings["(comments displayed separately)"] = "(Observacions es mostren per separat)"; +App::$strings["Use blog/list mode on grid page"] = "Empra el mode de blog/llista a la pàgina de la malla"; +App::$strings["Channel page max height of content (in pixels)"] = "Alçada màxima de contingut (en píxels) de la pàgina de Canal"; +App::$strings["click to expand content exceeding this height"] = "Clic per expandir el contingut que excedeixi aquesta alçada"; +App::$strings["Grid page max height of content (in pixels)"] = "Alçada màxima dels continguts (en píxels) de la Pàgina de Malla "; +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["Consumer Key"] = "Consumer Key"; +App::$strings["Icon url"] = "Icona de url"; +App::$strings["Optional"] = "Opcional"; +App::$strings["Application not found."] = "Aplicatiu no trobat."; +App::$strings["Connected Apps"] = "Aplicatius Conectats"; +App::$strings["View Photo"] = "Mostra la imatge"; +App::$strings["Edit Album"] = "Modifica l'àlbum"; +App::$strings["Upload"] = "Pujar"; +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["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["Permissions"] = "Permisos "; +App::$strings["Add Thing to your Profile"] = "Afegeix una cosa al teu perfil"; +App::$strings["No more system notifications."] = "No hi ha més notificacions del sistema."; +App::$strings["System Notifications"] = "Notificacions del sistema"; +App::$strings["Connection added."] = "S'ha afegit la connexió."; +App::$strings["Your service plan only allows %d channels."] = "El teu paquet de serveis només admet %d canals."; +App::$strings["No channel. Import failed."] = "Sense canal. No s'ha pogut importar."; +App::$strings["Import completed."] = "S'ha completat la importació."; +App::$strings["You must be logged in to use this feature."] = "Has d'estar registrat per fer servir aquesta funcionalitat."; +App::$strings["Import Channel"] = "Importa un canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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ó"; +App::$strings["Or provide the old server/hub details"] = "O proveeix els detalls de l'antic servidor/node"; +App::$strings["Your old identity address (xyz@example.com)"] = "La teva adreça de canal antiga. El format és canal@exemple.org"; +App::$strings["Your old login email address"] = "La teva adreça de correu electrònic antiga"; +App::$strings["Your old login password"] = "La teva contrasenya antiga"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importa, si es possible, missatges de fa uns quants mesos (limitat per la memòria disponible) "; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; +App::$strings["Make this hub my primary location"] = "Fes d'aquest node la meva ubicació primària"; +App::$strings["Move this channel (disable all previous locations)"] = "Moure aquest canal (desactiva totes les prèvies localitzacions)"; +App::$strings["Use this channel nickname instead of the one provided"] = "Fes servir aquest nom de canal en comptes del que has facilitat"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Deixa-ho en blanc per a mantenir el teu nom de canal actual. Se t'assignarà un nom aleatori però similar a l'actual en cas que el nom actual ja estigui agafat en aquest node."; +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["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["Permissions denied."] = "Permís denegat."; +App::$strings["Import"] = "Importar"; +App::$strings["Authorize application connection"] = "Autoritza la connexió de l'aplicació"; +App::$strings["Return to your app and insert this Security Code:"] = "Torna a la teva aplicació i introdueix aquest codi de seguertat"; +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["Item not available."] = "Article no disponible."; +App::$strings["Edit Block"] = "Editar Bloc"; +App::$strings["vcard"] = "vcard (targeta estàndard de contacte)"; +App::$strings["Apps"] = "Aplicatius"; +App::$strings["Manage apps"] = "Gestiona apps"; +App::$strings["Create new app"] = "Crear una nova app"; +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["Active"] = "Actives"; +App::$strings["Blocked"] = "Bloquejades"; +App::$strings["Ignored"] = "Ignorades"; +App::$strings["Hidden"] = "Amagades"; +App::$strings["Archived/Unreachable"] = "Arxivades o inaccessibles"; +App::$strings["New"] = "Nou"; App::$strings["All"] = "Tots"; -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 Característica/Afegit"; -App::$strings["Display settings"] = "Ajustos de pantalla"; -App::$strings["Connected apps"] = "Apps connectades"; -App::$strings["Export channel"] = "Exportat canal"; -App::$strings["Connection Default Permissions"] = "Permisos per Defecte de la Connexió"; -App::$strings["Premium Channel Settings"] = "Ajustos Premium de Canal"; -App::$strings["Channel Sources"] = "Fonts del canal"; -App::$strings["Messages"] = "Missatges"; -App::$strings["Check Mail"] = "Comprova el correu"; -App::$strings["Chat Rooms"] = "Sales de xat"; -App::$strings["Bookmarked Chatrooms"] = "Sales de xat preferides"; -App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; -App::$strings["photo/image"] = "foto/imatge"; -App::$strings["Rate Me"] = "Valora'm"; -App::$strings["View Ratings"] = "Mostra les valoracions"; -App::$strings["Public Hubs"] = "Concentradors Públics"; -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["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["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["created a new post"] = "ha creat una nova entrada"; -App::$strings["commented on %s's post"] = "ha comentat l'entrada de %s"; -App::$strings["Private Message"] = "Missatge Privat"; -App::$strings["Select"] = "Selecciona"; -App::$strings["Save to Folder"] = "Guardar en la Carpeta"; -App::$strings["I will attend"] = "Hi seré"; -App::$strings["I will not attend"] = "No hi seré"; -App::$strings["I might attend"] = "Potser hi sóc"; -App::$strings["I agree"] = "Hi estic a favor"; -App::$strings["I disagree"] = "Hi estic en contra"; -App::$strings["I abstain"] = "Voto en blanc"; -App::$strings["View all"] = "Mostra-ho tot"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "M'agrada", - 1 => "M'agrada", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "No m'agrada", - 1 => "No m'agrada", -); -App::$strings["Add Star"] = "Marca'l com a preferit"; -App::$strings["Remove Star"] = "Treu-lo de preferits"; -App::$strings["Toggle Star Status"] = "Canvia el Estat de la Preferència"; -App::$strings["starred"] = "preferit"; -App::$strings["Message signature validated"] = "Validada la signatura del missatge"; -App::$strings["Message signature incorrect"] = "Signatura del missatge incorrecta"; -App::$strings["Add Tag"] = "Afegeix Etiqueta"; +App::$strings["Active Connections"] = "Connexions actives"; +App::$strings["Show active connections"] = "Mostra les connexions actives"; +App::$strings["New Connections"] = "Noves Connexions"; +App::$strings["Show pending (new) connections"] = "Mostra les connexions pendents (noves)"; +App::$strings["Only show blocked connections"] = "Mostra només les connexions bloquejades"; +App::$strings["Only show ignored connections"] = "Mostra només les connexions ignorades"; +App::$strings["Only show archived/unreachable connections"] = "Mostra només les connexions arxivades o inaccessibles"; +App::$strings["Only show hidden connections"] = "Mostra només les connexions amagades"; +App::$strings["Show all connections"] = "Mostra totes les connexions"; +App::$strings["Pending approval"] = "Pendent d'aprovació"; +App::$strings["Archived"] = "Arxivades"; +App::$strings["Not connected at this location"] = "No està connectada des d'aquest aquest hub"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica la connexió"; +App::$strings["Delete connection"] = "Elimina la connexió"; +App::$strings["Channel address"] = "Adreça del canal"; +App::$strings["Network"] = "Xarxa"; +App::$strings["Call"] = "Crida"; +App::$strings["Status"] = "Estat"; +App::$strings["Connected"] = "Connectat"; +App::$strings["Approve connection"] = "Aprovar la Connexió "; +App::$strings["Ignore connection"] = "Ignorar connexió"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Activitat recent"; +App::$strings["Connections"] = "Connexions"; +App::$strings["Search your connections"] = "Cerca entre les teves connexions"; +App::$strings["Connections search"] = "Cerca connexions"; +App::$strings["Find"] = "Troba"; +App::$strings["item"] = "element"; +App::$strings["Bookmark added"] = "S'ha afegit el marcador"; +App::$strings["My Bookmarks"] = "Els meus marcadors"; +App::$strings["My Connections Bookmarks"] = "Els marcadors de les meves connexions"; +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"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa."; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons."; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Per defecte, només les instancies dels canal ubicats en aquest node poden esser esborrades de la xarxa"; +App::$strings["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada"; +App::$strings["Album not found."] = "Àlbum no trobat"; +App::$strings["Delete Album"] = "Esborra Àlbum"; +App::$strings["Delete Photo"] = "Esborra Foto"; +App::$strings["No photos selected"] = "No has seleccionat fotos"; +App::$strings["Access to this item is restricted."] = "L'accés a aquest element esta restringit."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de %2$.2f MB de l'espai per a imatges."; +App::$strings["%1$.2f MB photo storage used."] = "S'estan fent servir %1$.2f MB de l'espai per a imatges."; +App::$strings["Upload Photos"] = "Puja imatges"; +App::$strings["Enter an album name"] = "Escriu el nom del àlbum"; +App::$strings["or select an existing album (doubleclick)"] = "o bé fes doble clic a un d'existent"; +App::$strings["Create a status post for this upload"] = "Genera una entrada a partir de la pujada"; +App::$strings["Description (optional)"] = "Descripció (opcional)"; +App::$strings["Show Newest First"] = "Ordena de més nou a més antic"; +App::$strings["Show Oldest First"] = "Ordena de més antic a més nou"; +App::$strings["Add Photos"] = "Afegeix fotos"; +App::$strings["Permission denied. Access to this item may be restricted."] = "S'ha denegat el permís. Pot ser que l'accés estigui restringit."; +App::$strings["Photo not available"] = "La imatge no està disponible"; +App::$strings["Use as profile photo"] = "Fes-la imatge de perfil"; +App::$strings["Use as cover photo"] = "Emprar com a foto de portada"; +App::$strings["Private Photo"] = "Imatge privada"; +App::$strings["View Full Size"] = "Mostra a mida completa"; +App::$strings["Edit photo"] = "Modifica la imatge"; +App::$strings["Rotate CW (right)"] = "Tomba cap a la dreta"; +App::$strings["Rotate CCW (left)"] = "Tomba cap a l'esquerra"; +App::$strings["Move photo to album"] = "Mou la foto a un àlbum"; +App::$strings["Enter a new album name"] = "Escriu el nom del nou àlbum"; +App::$strings["or select an existing one (doubleclick)"] = "o bé fes doble clic a un d'existent"; +App::$strings["Add a Tag"] = "Afegeix una etiqueta"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple: @joan, @Paula_Peris, @mar@exemple.org"; +App::$strings["Flag as adult in album view"] = "Marca com a contingut adult"; App::$strings["I like this (toggle)"] = "M'agrada això (canvia)"; -App::$strings["like"] = "agrada"; App::$strings["I don't like this (toggle)"] = "No m'agrada això (canvia)"; -App::$strings["dislike"] = "desagrada"; -App::$strings["Share This"] = "Comparteix Això"; -App::$strings["share"] = "comparteix"; -App::$strings["%d comment"] = array( - 0 => "%d commentari", - 1 => "%d commentaris", -); -App::$strings["View %s's profile - %s"] = "Veure %s de perfil - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Mur-a-Mur"; -App::$strings["via Wall-To-Wall:"] = "via Mur-a-Mur:"; -App::$strings["from %s"] = "De %s"; -App::$strings["last edited: %s"] = "últim editat: %s"; -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["__ctx:noun__ Likes"] = "M'agrada"; -App::$strings["__ctx:noun__ Dislikes"] = "No m'agrada"; -App::$strings["Close"] = "Tanca"; App::$strings["Please wait"] = "Si us plau, espera"; -App::$strings["[+] show all"] = "[+] mostra-ho tot"; App::$strings["This is you"] = "Ets tú"; App::$strings["Comment"] = "Comentari"; -App::$strings["Submit"] = "Desa"; -App::$strings["Bold"] = "Negreta"; -App::$strings["Italic"] = "Italica"; -App::$strings["Underline"] = "Subratllat"; -App::$strings["Quote"] = "Cometes"; -App::$strings["Code"] = "Codi"; -App::$strings["Image"] = "Imatge"; -App::$strings["Insert Link"] = "Insereix Enllaç"; -App::$strings["Video"] = "Video"; -App::$strings["Preview"] = "Previsualitza"; +App::$strings["__ctx:title__ Likes"] = "Agrada"; +App::$strings["__ctx:title__ Dislikes"] = "Desagrada"; +App::$strings["__ctx:title__ Agree"] = "Acord"; +App::$strings["__ctx:title__ Disagree"] = "Desacord"; +App::$strings["__ctx:title__ Abstain"] = "Abstenirse"; +App::$strings["__ctx:title__ Attending"] = "Assistint"; +App::$strings["__ctx:title__ Not attending"] = "Desassistint"; +App::$strings["__ctx:title__ Might attend"] = "Podrien assistir"; +App::$strings["View all"] = "Veure tot"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Agrada", + 1 => "Agraden", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Desagrada", + 1 => "Desagrada", +); +App::$strings["Photo Tools"] = "Eines per Fotos"; +App::$strings["In This Photo:"] = "Hi apareixen:"; +App::$strings["Map"] = "Mapa"; +App::$strings["__ctx:noun__ Likes"] = "Agrada"; +App::$strings["__ctx:noun__ Dislikes"] = "Desagrada"; +App::$strings["Close"] = "Tanca"; +App::$strings["Recent Photos"] = "Imatges recents"; +App::$strings["Profile Unavailable."] = "El perfil no està disponible."; +App::$strings["Not found"] = "No s'ha trobat"; +App::$strings["Invalid channel"] = "El canal és invàlid"; +App::$strings["Error retrieving wiki"] = "S'ha produït un error en carregar la wiki"; +App::$strings["Error creating zip file export folder"] = "S'ha produït un error en crear la carpeta per al fitxer comprimit d'exportació"; +App::$strings["Error downloading wiki: "] = "S'ha produït un error en descarregar la wiki:"; +App::$strings["Wikis"] = "Wikis"; +App::$strings["Download"] = "Descarrega"; +App::$strings["Create New"] = "Crear Nou"; +App::$strings["Wiki name"] = "Nom de la wiki"; +App::$strings["Content type"] = "Llenguatge de formatació"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBCode"; +App::$strings["Text"] = "Cap (text pla)"; +App::$strings["Type"] = "Tipus"; +App::$strings["Any type"] = "Qualsevol"; +App::$strings["Lock content type"] = "Bloca el llenguatge de formatació"; +App::$strings["Create a status post for this wiki"] = "Crea una entrada d'estat per aquesta wiki"; +App::$strings["Edit Wiki Name"] = "Canvia el nom de la wiki"; +App::$strings["Wiki not found"] = "No s'ha trobat la wiki"; +App::$strings["Rename page"] = "Canvia el nom de la pàgina"; +App::$strings["Error retrieving page content"] = "S'ha produït un error en carregar el contingut de la pàgina"; +App::$strings["New page"] = "Crea una pàgina nova"; +App::$strings["Revision Comparison"] = "Comparació de revisió"; +App::$strings["Revert"] = "Reverteix"; +App::$strings["Short description of your changes (optional)"] = "Descripció curta dels canvis (opcional)"; +App::$strings["Source"] = "Font"; +App::$strings["New page name"] = "Nou nom de pàgina"; +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"] = "Escull 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["Error creating wiki. Invalid name."] = "S'ha produït un error en crear la wiki. El nom no és vàlid."; +App::$strings["A wiki with this name already exists."] = "Ja existeix una wiki amb aquest nom."; +App::$strings["Wiki created, but error creating Home page."] = "S'ha creat la wiki, però s'ha produït un error en crear-ne la pàgina principal."; +App::$strings["Error creating wiki"] = "S'ha produït un error en crear la wiki"; +App::$strings["Error updating wiki. Invalid name."] = "S'ha produït un error en actualitzar la wiki. El nom no és vàlid."; +App::$strings["Error updating wiki"] = "S'ha produït un error en actualitzar la wiki"; +App::$strings["Wiki delete permission denied."] = "No tens permís per a eliminar la wiki"; +App::$strings["Error deleting wiki"] = "S'ha produït un error en eliminar la wiki"; +App::$strings["New page created"] = "S'ha desat la nova pàgina"; +App::$strings["Cannot delete Home"] = "No es pot esborrar la pàgina principal"; +App::$strings["Current Revision"] = "Revisió actual"; +App::$strings["Selected Revision"] = "Revisió seleccionada"; +App::$strings["You must be authenticated."] = "Has d'estar autenticat."; +App::$strings["toggle full screen mode"] = "commuta el mode de pantalla completa"; +App::$strings["Layout updated."] = "S'ha actualitzat el disseny."; +App::$strings["Feature disabled."] = "Funcionalitat desactivada."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; +App::$strings["(modified)"] = "(modificat)"; +App::$strings["Reset"] = "Reajustar"; +App::$strings["Layout not found."] = "No s'ha trobat cap disseny de pàgina."; +App::$strings["Module Name:"] = "Nom del mòdul:"; +App::$strings["Layout Help"] = "Ajuda per al disseny de pàgina"; +App::$strings["Edit another layout"] = "Modifica un altre disseny"; +App::$strings["System layout"] = "Disseny del sistema"; +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["Image uploaded but image cropping failed."] = "S'ha pujat la imatge però no s'ha pogut retallar."; +App::$strings["Profile Photos"] = "Fotos del Perfil"; +App::$strings["Image resize failed."] = "No s'ha pogut escalar la imatge."; +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["Unable to process image"] = "incapaç de processar la imatge"; +App::$strings["Image upload failed."] = "La pujada de la imatge va fracassar."; +App::$strings["Unable to process image."] = "Incapaç de processar l'imatge."; +App::$strings["Photo not available."] = "Foto no disponible."; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "La teva foto de perfil predeterminada és pública i visible per a tothom. Les fotos de perfil dels perfils alternatius hereten els permisos del seu perfil."; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "La teva foto de perfil és pública i visible a tothom, i és probable que s'escampi per altres webs."; +App::$strings["Upload File:"] = "Puja Arxiu:"; +App::$strings["Select a profile:"] = "Tria un perfil:"; +App::$strings["Use Photo for Profile"] = "Fes servir la foto per al perfil"; +App::$strings["Change Profile Photo"] = "Canvia la imatge de perfil"; +App::$strings["Use"] = "Aplica"; +App::$strings["Use a photo from your albums"] = "Agafa una foto dels àlbums"; +App::$strings["Select existing photo"] = "Tria una foto existent"; +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["Away"] = "Absent"; +App::$strings["Online"] = "En connexió"; +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["Duplicate post suppressed."] = "Publicació duplicada s'ha suprimit."; +App::$strings["System error. Post not saved."] = "Hi ha hagut un error del sistema. L'entrada no s'ha desat."; +App::$strings["Your comment is awaiting approval."] = "El teu comentari encara no ha estat aprovat."; +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["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["requires approval"] = "requereix aprovació"; +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["shared a file with you"] = "ha compartit un fitxer amb tu"; +App::$strings["Private forum"] = "Fòrum privat"; +App::$strings["Public forum"] = "Fòrum públic"; +App::$strings["Invalid item."] = "Article invàlid."; +App::$strings["Page not found."] = "Pàgina no trobada."; +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["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ó."; +App::$strings["Failed to update connection record."] = "No s'ha pogut actualitzar el registre de connexió."; +App::$strings["is now connected to"] = "Ara està conectat amb"; +App::$strings["Could not access address book record."] = "No puc accedir al registre del contacte"; +App::$strings["Refresh failed - channel is currently unavailable."] = "Ha fallat la recàrrega - el canal es actualment inaccesible."; +App::$strings["Unable to set address book parameters."] = "No es poden ajustar els paràmetres dels contactes."; +App::$strings["Connection has been removed."] = "S'han eliminat les conexions."; +App::$strings["View Profile"] = "Mostra el meu perfil"; +App::$strings["View %s's profile"] = "Mostra el perfil de %s"; +App::$strings["Refresh Permissions"] = "Recarrega els Permissos"; +App::$strings["Fetch updated permissions"] = "Obté els permisos actualitzats"; +App::$strings["Refresh Photo"] = "Recarrega la foto"; +App::$strings["Fetch updated photo"] = "Demana la nova foto al servidor"; +App::$strings["Recent Activity"] = "Activitat Recent"; +App::$strings["View recent posts and comments"] = "Mostra les entrades i comentaris recents"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió"; +App::$strings["This connection is blocked!"] = "Aquesta connexió està bloquejada!"; +App::$strings["Unignore"] = "Inhabilita"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora (o Considera) les communicacions entrants d'aquesta connexió"; +App::$strings["This connection is ignored!"] = "Aquesta connexió es ignorada!"; +App::$strings["Unarchive"] = "Desarxiva"; +App::$strings["Archive"] = "Arxiva"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arxiva (o Desarxiva) aquesta connexió - Marca el canal com a mort pero manté el contingut "; +App::$strings["This connection is archived!"] = "Aquesta connexió està arxivada!"; +App::$strings["Unhide"] = "Mostra"; +App::$strings["Hide"] = "Amaga"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Amaga (o Mostra) aquesta connexió de les altres connexions teves"; +App::$strings["This connection is hidden!"] = "Aquesta connexió està amagada!"; +App::$strings["Delete this connection"] = "Elimina aquesta connexió"; +App::$strings["Fetch Vcard"] = "Obté la targeta de contacte Vcard"; +App::$strings["Fetch electronic calling card for this connection"] = "Obté la targeta de trucada electrònica d'aquesta connexió"; +App::$strings["Open Individual Permissions section by default"] = "Obrir, per defecte, la secció de Permisos Individuals"; +App::$strings["Affinity"] = "Afinitat"; +App::$strings["Open Set Affinity section by default"] = "Obre per defecte la barra d'afinitat"; +App::$strings["Me"] = "Jo"; +App::$strings["Family"] = "Família"; +App::$strings["Acquaintances"] = "Coneguts"; +App::$strings["Filter"] = "Filtre"; +App::$strings["Open Custom Filter section by default"] = "Obrir, per defecte, la secció de Filtres a Mida"; +App::$strings["Approve this connection"] = "Apccepta aquesta connexió"; +App::$strings["Accept connection to allow communication"] = "Accepta la connexió per permetre la comunicació"; +App::$strings["Set Affinity"] = "Ajusta l'Afinitat"; +App::$strings["Set Profile"] = "Ajusta el Perfil"; +App::$strings["Set Affinity & Profile"] = "Ajusta Afinitat i Perfil"; +App::$strings["This connection is unreachable from this location."] = "Aquesta connexió no és accessible des d'aquest hub."; +App::$strings["This connection may be unreachable from other channel locations."] = "Aquesta connexió no és accessibles des d'altres hubs del canal."; +App::$strings["Location independence is not supported by their network."] = "La xarxa d'aquesta connexió no és compatible amb la independència de hub."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Aquesta connexió no és accessible des d'aquest hub. La seva xarxa no és compatible amb la independència de hub."; +App::$strings["Connection Default Permissions"] = "Permisos per Defecte de la Connexió"; +App::$strings["Connection: %s"] = "Connexió: %s"; +App::$strings["Apply these permissions automatically"] = "Aplica aquests permissos automaticament"; +App::$strings["Connection requests will be approved without your interaction"] = "Les peticions de connexió seran aprovades sense la teva interacció"; +App::$strings["Permission role"] = "Permisos de rol"; +App::$strings["Add permission role"] = "Afegir permisos de rol"; +App::$strings["This connection's primary address is"] = "La primera adreça d'aqueste connexió es"; +App::$strings["Available locations:"] = "Localització disponible:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions."; +App::$strings["Connection Tools"] = "Eines de Connexió"; +App::$strings["Slide to adjust your degree of friendship"] = "Llisca per ajustar el nivell d'amistat"; +App::$strings["Rating"] = "Valora"; +App::$strings["Slide to adjust your rating"] = "Llisca per ajustar la valoració"; +App::$strings["Optionally explain your rating"] = "Opcionalment pots explicar la teva valoració"; +App::$strings["Custom Filter"] = "Filtre a mida"; +App::$strings["Only import posts with this text"] = "Importa exclusivament entrades amb aquest text"; +App::$strings["Do not import posts with this text"] = "No importar entrades amb aquest text"; +App::$strings["This information is public!"] = "Aquesta informació es pública!"; +App::$strings["Connection Pending Approval"] = "Connexió Pendent d'Aprovació"; +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["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 pot ser que vinguin heretats de la configuració de privacitat. del teu canal. Aquesta té més prioritat que les configuracions individuals. Pots canviar aquí aquests permisos però no tindran cap impacte mentre no canviï la configuració del teu canal."; +App::$strings["Last update:"] = "Darrera actualització:"; +App::$strings["Details"] = "Detalls"; +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"] = "Desa aquesta sala"; +App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; App::$strings["Encrypt text"] = "Text encriptat"; -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."] = "La 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."] = "No s'ha pogut desar la informació del compte"; -App::$strings["Registration confirmation for %s"] = "Confirmació del registre de %s"; -App::$strings["Registration request at %s"] = "Sol·licitud de registre a %s"; -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"] = "S'ha revocat el registre de %s"; -App::$strings["Account verified. Please login."] = "S'ha verificat el compte. Inicia la sessió per continuar."; -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ó sobrepassa els 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["Embedded content"] = "Contingut embegut"; -App::$strings["Embedding disabled"] = "Incorporació desactivada"; -App::$strings["Visible to your default audience"] = "Visible per a la teva audiència "; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Permissions"] = "Permisos "; -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 de %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["Public Timeline"] = "Cronologia pública"; +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["%1\$s's Chatrooms"] = "%1\$s de Xats"; +App::$strings["No chatrooms available"] = "No hi ha sales de xat disponibles"; +App::$strings["Expiration"] = "Expiració"; +App::$strings["min"] = "min"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Files"] = "Arxius"; +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"] = "Activa els marcadors"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú es pot emprar per a desar 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["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"] = "Activa els marcadors"; +App::$strings["Layouts"] = "Dissenys"; +App::$strings["Help"] = "Ajuda"; +App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; +App::$strings["Layout Description"] = "Descripció del disseny pàgina"; +App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; +App::$strings["Please refresh page"] = "Recarrega la pàgina"; +App::$strings["Unknown error"] = "S'ha produït un error desconegut"; +App::$strings["Token verification failed."] = "Ha fallat la verificació del token."; +App::$strings["Email Verification Required"] = "Cal verificar el correu"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "S'ha enviat al teu correu (%s) un token de verificació. Introdueix-lo aquí per a completar la verificació del compte. Tingues en compte que el correu pot trigar uns minuts en arribar, i que hi ha proveïdors de correu que el classificaran com a correu brossa."; +App::$strings["Resend Email"] = "Torna a enviar el correu"; +App::$strings["Validation token"] = "Token de validació"; +App::$strings["Post not found."] = "No s'ha trobat l'entrada"; +App::$strings["post"] = "entrada"; +App::$strings["comment"] = "comentari"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetat %3\$s de %2\$s amb %4\$s"; +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."] = "Alerta: segons quines combinacions podrien deixar el teu canal inusable. No és recomanable canviar aquesta configuració si no ets sents còmode/ i segur/a de com fer servir aquesta funcionalitat."; +App::$strings["Automatic approval settings"] = "Aprovació automàtica de soŀlicituds de connexió"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "El valor per defecte dels permisos individuals poden tenir valors per defecte segons el tipus de canal i les opcions de privacitat. Pot ser que no estiguis autoritzat/da a modificar-los."; +App::$strings["Unknown App"] = "No es coneix l'aplicació"; +App::$strings["Authorize"] = "Autoritza"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "Vols autoritzar l'aplicació %s a accedir a les dades del teu canal?"; +App::$strings["Allow"] = "Permet-ho"; +App::$strings["Privacy group created."] = "S'ha creat el grup de privacitat."; +App::$strings["Could not create privacy group."] = "No s'ha pogut crear el grup de privacitat."; +App::$strings["Privacy group not found."] = "No s'ha trobat el grup de privacitat."; +App::$strings["Privacy group updated."] = "S'ha actualitzat el grup de privacitat."; +App::$strings["Privacy Groups"] = "Grup de privacitat"; +App::$strings["Add Group"] = "Afegeix un grup"; +App::$strings["Privacy group name"] = "Nom del grup de privacitat"; +App::$strings["Members are visible to other channels"] = "Els membres son visibles en altres canals"; +App::$strings["Members"] = "Membres"; +App::$strings["Privacy group removed."] = "S'ha esborrat el grup de privacitat."; +App::$strings["Unable to remove privacy group."] = "No s'ha pogut esborrar el grup de privacitat."; +App::$strings["Privacy Group: %s"] = "Grup de privacitat: %s"; +App::$strings["Privacy group name: "] = "Nom del grup de privacitat:"; +App::$strings["Delete Group"] = "Esborra el grup"; +App::$strings["Group members"] = "Membres del grup"; +App::$strings["Not in this group"] = "No hi són al grup"; +App::$strings["Click a channel to toggle membership"] = "Fes clic a un canal per a ficar-lo o treure'l del grup"; +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["Gender"] = "Gènere"; +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"] = "Modifica els detalls de perfil"; +App::$strings["View this profile"] = "Mostra 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 aquesta configuració"; +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["Relationship"] = "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["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["Homepage URL"] = "URL de la pàgina d'inici"; +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["Communications"] = "Comunicacions"; +App::$strings["Profile Image"] = "Imatge del Perfil"; +App::$strings["Edit Profiles"] = "Modifica els perfils"; +App::$strings["This page is available only to site members"] = "Aquesta pàgina només és accessible per als membres del node."; +App::$strings["Welcome"] = "Benvingut/da"; +App::$strings["What would you like to do?"] = "Què t'agradaria fer?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Marca aquesta pàgina si vols tornar-hi en un futur"; +App::$strings["Upload a profile photo"] = "Puja una imatge de perfil"; +App::$strings["Upload a cover photo"] = "Puja una imatge de portada"; +App::$strings["Edit your default profile"] = "Modifica el teu perfil per defecte"; +App::$strings["View friend suggestions"] = "Mostra suggerències de connexions"; +App::$strings["View the channel directory"] = "Mostra el directori del canal"; +App::$strings["View/edit your channel settings"] = "Mostra o modifica la configuració del teu canal"; +App::$strings["View the site or project documentation"] = "Mostra la documentació del projecte"; +App::$strings["Visit your channel homepage"] = "Ves a la pàgina del teu canal"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Mostra les teves connexions o afegeix-ne una de nova introduint la seva adreça a mà."; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Mostra el teu flux personal. Estarà buit mentre no et connectis amb ningú."; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Mostra el flux públic. Avís: aquest contingut no està moderat"; +App::$strings["Page link"] = "Enllaç de la pàgina"; +App::$strings["Edit Webpage"] = "Edita la Pàgina Web"; +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["Cards"] = "Targetes"; +App::$strings["Add Card"] = "Afegeix una carta"; +App::$strings["This directory server requires an access token"] = "Aquest servidor de directori requereix un token de accès"; +App::$strings["About this site"] = "Sobre aquest lloc web"; +App::$strings["Site Name"] = "Nom del lloc web"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["Terms of Service"] = "Condicions del Servei"; +App::$strings["Software and Project information"] = "Informació del programari i del projecte"; +App::$strings["This site is powered by \$Projectname"] = "Aquest lloc web funciona amb \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Els serveis d'identitat i la federació i descentralització de la xarxa funcionen amb Zot"; +App::$strings["Additional federated transport protocols:"] = "Altres protocols de transport federats:"; +App::$strings["Version %s"] = "Versió %s"; +App::$strings["Project homepage"] = "Pàgina principal del projecte"; +App::$strings["Developer homepage"] = "Pàgina principal de desenvolupament"; +App::$strings["No ratings"] = "No valorat"; +App::$strings["Ratings"] = "Valoracions"; +App::$strings["Rating: "] = "Valoració:"; +App::$strings["Website: "] = "Lloc web:"; +App::$strings["Description: "] = "Descripció:"; +App::$strings["Import Webpage Elements"] = "Importa elements de pàgina web"; +App::$strings["Import selected"] = "Importa la selecció"; +App::$strings["Export Webpage Elements"] = "Exporta elements de pàgina web"; +App::$strings["Export selected"] = "Exporta la selecció"; +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["Invalid file type."] = "El tipus de fitxer és invàlid."; +App::$strings["Error opening zip file"] = "Hi ha hagut un error descomprimint"; +App::$strings["Invalid folder path."] = "El camí de carpeta és invàlid."; +App::$strings["No webpage elements detected."] = "No s'ha detectat cap element de pàgina web."; +App::$strings["Import complete."] = "S'ha completat la importació."; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "No es permet canviar el nom d'un canal fins a 48 hores més tard d'haver canviant la contrasenya del compte al que pertany."; +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["Change channel nickname/address"] = "Canvia el nom o adreça del canal"; +App::$strings["Any/all connections on other networks will be lost!"] = "Es perdran totes les connexions amb xarxes externes!"; +App::$strings["New channel address"] = "Adreça de canal nova"; +App::$strings["Rename Channel"] = "Canvia el nom del canal"; +App::$strings["Item is not editable"] = "Article no editable"; +App::$strings["Edit post"] = "Modifica l'entrada"; +App::$strings["Invalid message"] = "Missatge invàlid."; +App::$strings["no results"] = "sense resultats"; +App::$strings["channel sync processed"] = "sincronització del canal processada"; +App::$strings["queued"] = "Posat en cua"; +App::$strings["posted"] = "enviat"; +App::$strings["accepted for delivery"] = "acceptat per entregar"; +App::$strings["updated"] = "actualitzat"; +App::$strings["update ignored"] = "actualització ignorada"; +App::$strings["permission denied"] = "permís denegat"; +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"] = "Opcions"; +App::$strings["Redeliver"] = "Tornar a lliurar"; +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."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Canal Origen"; +App::$strings["Manage remote sources of content for your channel."] = "Gestiona contingut per al teu canal d'origens remots"; +App::$strings["New Source"] = "Nou Origen"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa-ho tot o només allò seleccionat del següent canals, cap a aquest canal, i distribueix-lo d'acord a la configuració del teu canal."; +App::$strings["Only import content with these words (one per line)"] = "Només importa contingut amb aquestes paraules (una per línia)"; +App::$strings["Leave blank to import all public content"] = "Deixar en blanc per importar tot el contingut públic"; +App::$strings["Channel Name"] = "Nom del canal"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Afegeix les següents categories d'entrades importades des d'aquest origen (separat per comes)"; +App::$strings["Resend posts with this channel as author"] = "Reenvia les entrades que tinguin aquest canal com a autor/a"; +App::$strings["Copyrights may apply"] = "Poden aplicar drets d'autor"; +App::$strings["Source not found."] = "No s'ha trobat la font."; +App::$strings["Edit Source"] = "Edita la font"; +App::$strings["Delete Source"] = "Esborra la font"; +App::$strings["Source removed"] = "S'ha esborrat la font"; +App::$strings["Unable to remove source."] = "No s'ha pogut esborrar la font."; +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["%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["No default suggestions were found."] = "No s'han trobat suggerències predefinides."; +App::$strings["%d rating"] = array( + 0 => "%d valoració", + 1 => "%d valoracions", +); +App::$strings["Gender: "] = "Gènere:"; +App::$strings["Status: "] = "Estatus:"; +App::$strings["Homepage: "] = "Pàgina Personal:"; +App::$strings["Age:"] = "Edat:"; +App::$strings["Location:"] = "Localització:"; +App::$strings["Description:"] = "Descripció:"; +App::$strings["Hometown:"] = "Ciutat Natal:"; +App::$strings["About:"] = "Sobre:"; +App::$strings["Connect"] = "Connecta "; +App::$strings["Public Forum:"] = "Forum Públic:"; +App::$strings["Keywords: "] = "Paraules Clau:"; +App::$strings["Don't suggest"] = "No suggerir"; +App::$strings["Common connections (estimated):"] = "Connexions en comú (aproximades):"; +App::$strings["Global Directory"] = "Directori Global"; +App::$strings["Local Directory"] = "Directori Local"; +App::$strings["Finding:"] = "Cercant:"; +App::$strings["Channel Suggestions"] = "Canals Suggerits"; +App::$strings["next page"] = "pàgina següent"; +App::$strings["previous page"] = "pàgina anterior"; +App::$strings["Sort options"] = "Opcions per ordenar"; +App::$strings["Alphabetic"] = "Alfabètic"; +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["Xchan Lookup"] = "Cerca a xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca a xchan començant per (o webbie)"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou."; +App::$strings["Ignore/Hide"] = "Ignora/Amaga"; +App::$strings["Unable to find your hub."] = "No es possible trobar el node"; +App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; +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"] = "missatge"; +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["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["Rate"] = "Puntua"; +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["Select a bookmark folder"] = "Tria una carpeta d'interès"; +App::$strings["Save Bookmark"] = "Desa el marcadors"; +App::$strings["URL of bookmark"] = "URL del marcador"; +App::$strings["Or enter new bookmark folder name"] = "O introdueix el nom d'una carpeta de marcadors nova"; +App::$strings["Enter a folder name"] = "Escriu el nom de la carpeta"; +App::$strings["or select an existing folder (doubleclick)"] = "o escull-ne una d'existent amb doble clic"; +App::$strings["Save to Folder"] = "Guardar en la Carpeta"; +App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre màxim d'inscripcions diaris excedit. Si us plau, provau demà."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "L'inscripció ha fallat. Si et plau, indica que acceptes les Condicions del Servei."; +App::$strings["Passwords do not match."] = "Les contrasenyes no coincideixen."; +App::$strings["Registration successful. Continue to create your first channel..."] = "S'ha registrat el compte amb èxit. Ara pots crear el teu primer canal..."; +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["Registration on this hub is by invitation only."] = "El registre en aquest node funciona per invitació."; +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["I accept the %s for this website"] = "Accepto el %s per a aquest lloc web"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "Tinc més de %s anys i accepto les %s"; +App::$strings["Your email address"] = "La teva adreça de correu electrónic"; +App::$strings["Choose a password"] = "Tria una contrasenya"; +App::$strings["Please re-enter your password"] = "Si et plau, re-entra la contrasenya"; +App::$strings["Please enter your invitation code"] = "Si et plau, introdueix el teu codi d'invitació"; +App::$strings["Your Name"] = "El teu nom"; +App::$strings["Real names are preferred."] = "Considera de fer servir el teu nom real."; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "El teu àlies servirà per crear un nom fàcil per recordar l'adreça del canal. Per exemple, àlies%s"; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Escull un rol de permisos de canal. Tingues en compte l'ús que en faràs i el nivell de privacitat que desitges."; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sí"; +App::$strings["Register"] = "Inscripció"; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Aquest node demana que es verifiquin els comptes de correu. Un cop completat el formulari, comprova la teva safata d'entrada i segueix les instruccions que hi trobaràs."; +App::$strings["Cover Photos"] = "Fotos de Portada"; +App::$strings["female"] = "femení"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s actualitzà el seu %2\$s"; +App::$strings["male"] = "masculí"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s actualitzà el seu %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s actualitzà els seus %2\$s"; +App::$strings["cover photo"] = "Foto de la portada"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "La teva foto de portada és pública i visible a tothom."; +App::$strings["Change Cover Photo"] = "Canvia la foto de portada"; +App::$strings["Documentation Search"] = "Cerca de Documentació"; +App::$strings["About"] = "El Meu Perfil"; +App::$strings["Administrators"] = "Administradors"; +App::$strings["Developers"] = "Desenvolupadors"; +App::$strings["Tutorials"] = "Tutorials"; +App::$strings["\$Projectname Documentation"] = "\$Projectname Documentació"; +App::$strings["Contents"] = "Continguts"; +App::$strings["Article"] = "Article"; +App::$strings["Item has been removed."] = "S'ha esborrat l'element."; +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["No such group"] = "No existeix el grup"; +App::$strings["No such channel"] = "No existeix el canal"; +App::$strings["Privacy group is empty"] = "El grup de privacitat està buit"; +App::$strings["Privacy group: "] = "Grup de privacitat:"; +App::$strings["Invalid channel."] = "El canal no és vàlid."; +App::$strings["network"] = "xarxa"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Benvingut a %s"; +App::$strings["Permission Denied."] = "Permisos Denegats."; +App::$strings["File not found."] = "Arxiu no torbat."; +App::$strings["Edit file permissions"] = "Edita els permisos d'arxiu"; +App::$strings["Set/edit permissions"] = "Canvia/edita permisos"; +App::$strings["Include all files and sub folders"] = "Inclou tots als arxius i subdirectoris"; +App::$strings["Return to file list"] = "Tornar al llistat d'arxius"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web"; +App::$strings["Share this file"] = "Comparteix l'arxiu"; +App::$strings["Show URL to this file"] = "Mostra la URL d'aquest arxiu"; +App::$strings["Show in your contacts shared folder"] = "Mostra les carpetes compartides dels teus contactes"; +App::$strings["No channel."] = "No s'ha trobat el canal"; +App::$strings["No connections in common."] = "No hi ha connexions en comú."; +App::$strings["View Common Connections"] = "Mostra les connexions en comú"; +App::$strings["Email verification resent"] = "S'ha tornat a enviar la verificació de orreu"; +App::$strings["Unable to resend email verification message."] = "No s'ha pogut tornar a enviar el correu de verificació."; +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["Blocked accounts"] = "Comptes bloquejats"; +App::$strings["Expired accounts"] = "Comptes caducats"; +App::$strings["Expiring accounts"] = "Comptes a punt de caducar"; +App::$strings["Clones"] = "Clons"; +App::$strings["Message queues"] = "Cues de missatges"; +App::$strings["Your software should be updated"] = "El teu programari cal que s'actualitzi"; +App::$strings["Summary"] = "Sumari"; +App::$strings["Registered accounts"] = "Comptes registrades"; +App::$strings["Pending registrations"] = "Comptes pendents d'inscripció"; +App::$strings["Registered channels"] = "Canals registrats"; +App::$strings["Active addons"] = "Extensions actives"; +App::$strings["Version"] = "Versió"; +App::$strings["Repository version (master)"] = "Versió (master) del repositori"; +App::$strings["Repository version (dev)"] = "Versió (desenvolupament) del repositori"; +App::$strings["No service class restrictions found."] = "No s'han trobat restriccions de clase."; +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["Edit Card"] = "Edita la targeta"; +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["Mark all seen"] = "Marca tot com ja vist"; +App::$strings["0. Beginner/Basic"] = "0. Bàsic, principiant"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novell - amb pocs coneixements però amb ganes d'aprendre"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermedi - més o menys còmode"; +App::$strings["3. Advanced - very comfortable"] = "3. Avançat - molt còmode"; +App::$strings["4. Expert - I can write computer code"] = "4. Expert - puc escriure codi en algun llenguatge de programació"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Ninja - probablement en sé més que tu"; App::$strings["Site Admin"] = "Administració"; -App::$strings["Address Book"] = "Adreçes"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Mood"] = "Ànim"; -App::$strings["Poke"] = "Emprenya"; +App::$strings["Report Bug"] = "Informa d'errors"; +App::$strings["View Bookmarks"] = "Marcadors"; +App::$strings["My Chatrooms"] = "Les meves Sales de Xat"; +App::$strings["Remote Diagnostics"] = "Diagnòstics Remots"; +App::$strings["Suggest Channels"] = "Suggerir Canals"; +App::$strings["Login"] = "Identifica't"; +App::$strings["Activity"] = "Activitat"; +App::$strings["Wiki"] = "Wiki"; +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"; @@ -355,521 +1716,990 @@ App::$strings["Features"] = "Funcionalitats"; App::$strings["Language"] = "Idioma"; App::$strings["Post"] = "Entrada"; App::$strings["Profile Photo"] = "Foto del Perfil"; -App::$strings["Update"] = "Actualització"; -App::$strings["Install"] = "Instal·lar"; App::$strings["Purchase"] = "Compra"; -App::$strings["Permission denied."] = "Permís denegat."; -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["Logged out."] = "Sortir."; -App::$strings["Failed authentication"] = "Autenticació fallida"; -App::$strings["Login failed."] = "Identificació fallida."; -App::$strings["Attachments:"] = "Adjuntat:"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["\$Projectname event notification:"] = "Notificació d'esdeveniment de \$Projectname"; -App::$strings["Starts:"] = "Comença:"; -App::$strings["Finishes:"] = "Acaba:"; -App::$strings["Location:"] = "Lloc:"; -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["webpage"] = "pàgina web"; -App::$strings["layout"] = "disseny"; -App::$strings["block"] = "bloc"; -App::$strings["menu"] = "menú"; -App::$strings["QR code"] = "QR code"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure la següent %2\$s %3\$s"; -App::$strings["post"] = "entrada"; +App::$strings["Undelete"] = "Desfés l'operació d'esborrar"; +App::$strings["Add to app-tray"] = "Afegeix a la safata d'aplicacions"; +App::$strings["Remove from app-tray"] = "Esborra de la safata d'aplicacions"; +App::$strings["Pin to navbar"] = "Fixa a la barra de navegació"; +App::$strings["Unpin from navbar"] = "Treu de la barra de navegació"; +App::$strings["__ctx:permcat__ default"] = "per defecte"; +App::$strings["__ctx:permcat__ follower"] = "seguidor"; +App::$strings["__ctx:permcat__ contributor"] = "contribuïdor"; +App::$strings["__ctx:permcat__ publisher"] = "publicador"; +App::$strings["(No Title)"] = "(sense títol)"; +App::$strings["Wiki page create failed."] = "No s'ha pogut crear la pàgina a la wiki."; +App::$strings["Wiki not found."] = "No s'ha trobat la wiki."; +App::$strings["Destination name already exists"] = "El nom de destí ja existeix"; +App::$strings["Page not found"] = "No s'ha trobat la pàgina"; +App::$strings["Error reading page content"] = "S'ha produït un error en carregar el contingut de la pàgina"; +App::$strings["Error reading wiki"] = "S'ha produït un error en carregar la wiki"; +App::$strings["Page update failed."] = "No s'ha pogut actualitzar la pàgina."; +App::$strings["Nothing deleted"] = "No s'ha esborrat res"; +App::$strings["Compare: object not found."] = "S'ha produït un error en comparar la pàgina."; +App::$strings["Page updated"] = "S'ha actualitzat la pàgina"; +App::$strings["Untitled"] = "Sense títol"; +App::$strings["Wiki resource_id required for git commit"] = "Per a fer el git commit cal el resource_id de la wiki"; +App::$strings["__ctx:wiki_history__ Message"] = "Missatge"; App::$strings["Different viewers will see this text differently"] = "Diferents observadors veuran aquest text de diferents formes"; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 va escriure:"; -App::$strings["%1\$s's bookmarks"] = "Marcadors de %1\$s"; +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"] = "Aquesta és la teva configuració per defecte per l'audiència de les teves pàgines web"; 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."; App::$strings["Room not found."] = "Sala no trobada."; App::$strings["Room is full"] = "La sala es plena"; -App::$strings["Default"] = "Predeterminat"; -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["Frequently"] = "Sovint"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos cops al dia"; -App::$strings["Daily"] = "Diàriament"; -App::$strings["Weekly"] = "Setmanalment"; -App::$strings["Monthly"] = "Mensualment"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "Correu electrònic"; -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["%d invitation available"] = array( - 0 => "%d invitació disponible", - 1 => "%d invitacions disponibles", -); -App::$strings["Advanced"] = "Avançat"; -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["Find"] = "Troba"; -App::$strings["Channel Suggestions"] = "Canals Suggerits"; -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["channel"] = "canal"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s li agrada %3\$s de %2\$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 is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s emprenyat %2\$s"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s es %2\$s"; -App::$strings["__ctx:title__ Likes"] = "M'agrada"; -App::$strings["__ctx:title__ Dislikes"] = "No m'agrada"; -App::$strings["__ctx:title__ Agree"] = "A favor"; -App::$strings["__ctx:title__ Disagree"] = "En contra"; -App::$strings["__ctx:title__ Abstain"] = "En blanc"; -App::$strings["__ctx:title__ Attending"] = "Assistint"; -App::$strings["__ctx:title__ Not attending"] = "Desassistint"; -App::$strings["__ctx:title__ Might attend"] = "Podrien assistir"; -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["View Status"] = "Veure Status"; -App::$strings["View Photos"] = "Veure Fotos"; -App::$strings["Matrix Activity"] = "Activitat de Matrix"; -App::$strings["Edit Contact"] = "Editar Contacte"; -App::$strings["Send PM"] = "Enviar MP"; -App::$strings["%s likes this."] = "A %s li 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["Visible to everybody"] = "Visible a tothom"; -App::$strings["Please enter a link URL:"] = "Si us plau entra l'enllaç URL:"; -App::$strings["Please enter a video link/URL:"] = "Si us plau entra l'enllaç/URL a un video:"; -App::$strings["Please enter an audio link/URL:"] = "Si us plau, entra l'enllaç/URL a un audio:"; -App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; -App::$strings["Save to Folder:"] = "Guardar en la Carpeta"; -App::$strings["Where are you right now?"] = "On ets ara?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Compartir"; -App::$strings["Page link name"] = "Nom de la pàgina enllaçada"; -App::$strings["Post as"] = "Envia com"; -App::$strings["Upload photo"] = "Puja foto"; -App::$strings["upload photo"] = "puja foto"; -App::$strings["Attach file"] = "Adjunta arxiu"; -App::$strings["attach file"] = "adjunta arxiu"; -App::$strings["Insert web link"] = "Insereix enllaç web"; -App::$strings["web link"] = "enllaç web"; -App::$strings["Insert video link"] = "Insereix enllaç video"; -App::$strings["video link"] = "enllaç video"; -App::$strings["Insert audio link"] = "Insereix enllaç d'audio"; -App::$strings["audio link"] = "enllaç d'audio"; -App::$strings["Set your location"] = "Ajusta la teva ubicació"; -App::$strings["set location"] = "ajusta localització"; -App::$strings["Toggle voting"] = "Commutar votació"; -App::$strings["Clear browser location"] = "Treu la localització del navegador"; -App::$strings["clear location"] = "treu localització"; -App::$strings["Title (optional)"] = "Títol (opcional)"; -App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; -App::$strings["Permission settings"] = "Ajustos de permisos"; -App::$strings["permissions"] = "permisos "; -App::$strings["Public post"] = "Entrada pública"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@example.com, mary@example.com"; -App::$strings["Set expiration date"] = "Ajusta la data d'expiració"; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Cancel·la"; -App::$strings["Discover"] = "Descobrir"; -App::$strings["Imported public streams"] = "Importar fluxos públics"; -App::$strings["Commented Order"] = "Ordre 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["New"] = "Nou"; -App::$strings["Activity Stream - by date"] = "Flux d'activitat - 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["Channel"] = "Canal"; -App::$strings["Status Messages and Posts"] = "Estat dels Missatges i Entrades"; -App::$strings["About"] = "Sobre mi"; -App::$strings["Profile Details"] = "Detalls del Perfil"; -App::$strings["Photo Albums"] = "Albums de Fotos"; -App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; -App::$strings["Chatrooms"] = "Sala per Xerrar"; -App::$strings["Saved Bookmarks"] = "Marcadors Guardats"; -App::$strings["Manage Webpages"] = "Gestió de Pàgines Web"; -App::$strings["__ctx:noun__ Attending"] = array( - 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 => "A favor", - 1 => "A favor", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En contra", - 1 => "En contra", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "En blanc", - 1 => "En blanc", -); -App::$strings["Miscellaneous"] = "Miscelania"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; -App::$strings["Required"] = "Requerit"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "fa menys d'un segon"; -App::$strings["year"] = "any"; -App::$strings["years"] = "anys"; -App::$strings["month"] = "mes"; -App::$strings["months"] = "mesos"; -App::$strings["week"] = "setmana"; -App::$strings["weeks"] = "setmanes"; -App::$strings["day"] = "dia"; -App::$strings["days"] = "dies"; -App::$strings["hour"] = "hora"; -App::$strings["hours"] = "hores"; -App::$strings["minute"] = "minut"; -App::$strings["minutes"] = "minuts"; -App::$strings["second"] = "segon"; -App::$strings["seconds"] = "segons"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "Fa %1\$d i %2\$s"; -App::$strings["%1\$s's birthday"] = "Aniversari de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliç Aniversari %1\$s"; -App::$strings["Please choose"] = "Escull"; -App::$strings["Agree"] = "A favor"; -App::$strings["Disagree"] = "En contra"; -App::$strings["Abstain"] = "En blanc"; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "L'àlies té caràcters no suportats o ja està agafat en aquest lloc."; -App::$strings["Directory Options"] = "Opcions de carpeta"; -App::$strings["Safe Mode"] = "Mode Segur"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Sí"; -App::$strings["Public Forums Only"] = "Només fòrums públics"; -App::$strings["This Website Only"] = "Només aquest lloc web"; +App::$strings["\$Projectname Notification"] = "Notificació de \$Projectname"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Gràcies,"; +App::$strings["%s Administrator"] = "%s Administrador"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Aquest correu ha estat enviat per %1\$s a %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Per deixar de rebre aquests missatges, modifica la configuració de notificacions a %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Per deixar de rebre aquests missatges, modifica la teva %s."; App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Notificació] Un nou missatge s'ha rebut a %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s t'ha enviat un nou missatge privat a %3\$s."; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Avís] S'ha rebut correu nou a %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s t'ha enviat un missatge privat a %2\$s."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s t'ha enviat %2\$s."; App::$strings["a private message"] = "un missatge privat"; App::$strings["Please visit %s to view and/or reply to your private messages."] = "Per favor, visita %s per a veure i/o respondre els teus missatges privats."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentat en [zrl=%3\$s]a %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s comentat en [zrl=%3\$s]%4\$s de %5\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentat en [zrl=%3\$s]el teu %4\$s[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Comentari a la conversa #%1\$d per %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentat en un article/conversa que havies estat seguint."; +App::$strings["commented on"] = "ha comentat"; +App::$strings["liked"] = "li ha agradat"; +App::$strings["disliked"] = "no li ha agradat"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]la teva %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Avís] S'ha moderat el comentari de %2\$s a la conversa #%1\$d"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Avís] Comentari de %2\$s a la conversa #%1\$d"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s ha comentat en una conversa que estàs seguint."; App::$strings["Please visit %s to view and/or reply to the conversation."] = "Si us plau visita %s per veure i/o contestar a la conversa"; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Avís] %s ha escrit una entrada al teu mur"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha escrit una entrada al teu mur en %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s enviat correu a [zrl=%3\$s]el teu mur[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Notificació] %s t'ha etiquetat"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s t'ha etiquetat a %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]t'ha etiquetat[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Avís] %1\$s s'en fot de tu"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s s'en fot de tú a %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]s'en fot de tú[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Avís] %s ha etiquetat la teva entrada"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetat la teva entrada a %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s etiquetat [zrl=%3\$s]la teva entrada[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Avís] Presentació rebuda"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, has rebut una nova petició de connexió de '%2\$s' a %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, has rebut [zrl=%2\$s]una nova petició de connexió[/zrl] de %3\$s."; +App::$strings["Please visit %s to approve or reject this comment."] = "Vés a %s per a aprovar o rebutjar el comentari."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "A %1\$s li ha agradat [zrl=%2\$s]la teva %3\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Avís] Un \"m'agrada\" a la conversa #%1\$d de %2\$s"; +App::$strings["%1\$s liked an item/conversation you created."] = "A %1\$s li ha agradat una conversa que has creat."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Avís] %s ha penjat una entrada al teu mur"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha publicat al mur del teu perfil a %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s ha publicat al [zrl=%2\$s]teu mur[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Avís] %s t'ha etiquetat"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s t'ha etiquetat a %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]t'ha etiquetat[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Avís] %1\$s t'ha fet un toc"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$s t'ha fet un toc a %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]t'ha fet un toc[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Avís] %s t'ha etiquetat una entrada"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetat una entrada teva a %2\$s"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha etiquetat [zrl=%2\$s]la teva entrada[/zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Avís] S'ha rebut una sol·licitud de connexió"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Has rebut una soŀlicitud de connexió de '%1\$s' a %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Has rebut [zrl=%1\$s]una soŀlicitud de connexió[/zrl] de %2\$s."; App::$strings["You may visit their profile at %s"] = "Pots visitar el seu perfil a %s"; App::$strings["Please visit %s to approve or reject the connection request."] = "Si us plau, visita %s per aprovar o rebutjar la petició de connexió."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Notificació] Rebuda suggerencia d'amistat"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, has rebut una suggerència d'amistat de '%2\$s' a %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, has rebut [zrl=%2\$s]una suggerència d'amistat[/zrl] per %3\$s de %4\$s."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Avís] S'ha rebut una suggerència d'amistat"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has rebut una soŀlicitud d'amistat de '%1\$s' a %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Has rebut [zrl=%1\$s]una soŀlicitud d'amistat[/zrl] per a %2\$s de part de %3\$s."; App::$strings["Name:"] = "Nom:"; App::$strings["Photo:"] = "Foto:"; App::$strings["Please visit %s to approve or reject the suggestion."] = "Per favor, visita %s per a aprovar o rebutjar la suggerencia."; -App::$strings["[Red:Notify]"] = "[Red:Notificació]"; -App::$strings["This event has been added to your calendar."] = "S'ha afegit l'activitat al teu calendari."; -App::$strings["General Features"] = "Característiques generals"; -App::$strings["Content Expiration"] = "Caducitat del contingut"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina entrades, comentaris i/o missatges privats al cap d'un cert temps"; -App::$strings["Multiple Profiles"] = "Múltiples perfils"; -App::$strings["Ability to create multiple profiles"] = "Capacitat de crear diversos perfils"; -App::$strings["Advanced Profiles"] = "Perfils avançats"; -App::$strings["Additional profile sections and selections"] = "Seccions i seleccions addicionals de perfils"; -App::$strings["Profile Import/Export"] = "Importació i exportació de perfil"; -App::$strings["Save and load profile details across sites/channels"] = "Desa i carrega els detalls del perfil a través de llocs i 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["Private Notes"] = "Notes privades"; -App::$strings["Enables a tool to store notes and reminders"] = "Activa una eina per a crear notes i recordatoris"; -App::$strings["Navigation Channel Select"] = "Navegació pel selector de canals"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Canvieu els canals directament des del menú desplegable de navegació"; -App::$strings["Photo Location"] = "Ubicació de les fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Quan una imatge pujada porti incrustada la seva localització, enllaça-la a un mapa automàticament."; -App::$strings["Expert Mode"] = "Mode expert"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Activa el mode expert per a mostrar opcions avançades de configuració"; -App::$strings["Premium Channel"] = "Canal prèmium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Permet establir restriccions i condicions a qui es connecti al teu canal"; -App::$strings["Post Composition Features"] = "Més funcionalitats de redacció d'entrades"; -App::$strings["Use Markdown"] = "Habilita el Markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Permet emprar \"Markdown\" per donar format a les entrades"; -App::$strings["Large Photos"] = "Fotos grans"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inclou miniatures d'imatge grans (640px) en les entrades. Si no està activat, petites (320px)."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automàticament el contingut del canal des d'altres canals o feeds"; -App::$strings["Even More Encryption"] = "Encara més xifratge"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permet el xifratge opcional de contingut extrem-a-extrem amb clau simètrica"; -App::$strings["Enable voting tools"] = "Habilita eines de vot"; -App::$strings["Provide a class of post which others can vote on"] = "Proporcionar una classe d'entrada que altres puguin votar"; -App::$strings["Network and Stream Filtering"] = "Filtres de xarxa de contactes i de flux d'activitat"; -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["Collections Filter"] = "Filtre de col·leccions"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Habilita un giny per mostrar només les entrades de les col·leccions seleccionades"; -App::$strings["Save search terms for re-use"] = "Conserva les paraules de cerca per reutilitzar-les"; -App::$strings["Network Personal Tab"] = "Pestanya de participació en la xarxa"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Afegeix una pestanya que mostri només les entrades de xarxa on hi hagis intervingut"; -App::$strings["Network New Tab"] = "Pestanya de novetats a la xarxa"; -App::$strings["Enable tab to display all new Network activity"] = "Afegeix una pestanya que mostri tota l'activitat nova de la Xarxa"; -App::$strings["Affinity Tool"] = "Filtre d'activitat per afinitat"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtra el flux d'activitat segons el tipus de relació amb l'actor de l'activitat"; -App::$strings["Connection Filtering"] = "Filtre d'entrades per paraules clau"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra les entrades de les teves connexions segons paraules clau i contingut"; -App::$strings["Suggest Channels"] = "Suggeix-me canals"; -App::$strings["Show channel suggestions"] = "Mostra suggerències de canals"; -App::$strings["Post/Comment Tools"] = "Eines d'entrades i comentaris"; -App::$strings["Tagging"] = "Etiquetes"; -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["Ability to file posts under folders"] = "Capacitat de arxivar entrades en les carpetes"; -App::$strings["Dislike Posts"] = "\"No m'agrada\""; -App::$strings["Ability to dislike posts/comments"] = "Capacitat per marcar amb un \"no m'agrada\" les entrades i els comentaris"; -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["Channel is blocked on this site."] = "El canal està bloquejat en aquest lloc."; -App::$strings["Channel location missing."] = "Falta la ubicació del canal."; -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["Protocol blocked for this channel."] = "El protocol està bloquejat per a aquest canal."; -App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; -App::$strings["local account not found."] = "compte local no trobat."; -App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; -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["Default privacy group for new contacts"] = "Privacitat de grup predeterminada per a contactes nous"; -App::$strings["All Channels"] = "Tots els canals"; -App::$strings["edit"] = "edita"; -App::$strings["Collections"] = "Col·leccions"; -App::$strings["Edit collection"] = "Edita col·leccions"; -App::$strings["Add new collection"] = "Afegeix una nova col·lecció"; -App::$strings["Channels not in any collection"] = "Canals a cap col·lecció"; -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["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["Requested profile is not available."] = "El perfil demanat no està disponible."; -App::$strings["Change profile photo"] = "Canviar la foto del perfil"; -App::$strings["Profiles"] = "Perfils"; -App::$strings["Manage/edit profiles"] = "Gestiona/edita perfils"; -App::$strings["Create New Profile"] = "Crear un Perfil Nou"; -App::$strings["Profile Image"] = "Imatge del Perfil"; -App::$strings["visible to everybody"] = "visible per tothom"; -App::$strings["Edit visibility"] = "Editar visibilitat"; -App::$strings["Gender:"] = "Gènere:"; -App::$strings["Status:"] = "Estatus:"; -App::$strings["Homepage:"] = "Pàgina Personal:"; -App::$strings["Online Now"] = "Ara en Linia"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["F d"] = "F d"; -App::$strings["[today]"] = "[avui]"; -App::$strings["Birthday Reminders"] = "Recordatori d'Aniversaris"; -App::$strings["Birthdays this week:"] = "Aniversari aquesta setmana:"; -App::$strings["[No description]"] = "[Sense descripció]"; -App::$strings["Event Reminders"] = "Recordatori d'Events"; -App::$strings["Events this week:"] = "Event aquesta setmana:"; -App::$strings["Full Name:"] = "Nom Complet:"; -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["Age:"] = "Edat:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferència Sexual:"; -App::$strings["Hometown:"] = "Ciutat Natal:"; -App::$strings["Tags:"] = "Etiquetes:"; -App::$strings["Political Views:"] = "Idees Polítiques:"; -App::$strings["Religion:"] = "Religió:"; -App::$strings["About:"] = "Sobre mi:"; -App::$strings["Hobbies/Interests:"] = "Aficions/Interessos:"; -App::$strings["Likes:"] = "M'agrada:"; -App::$strings["Dislikes:"] = "No li agrada:"; -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["Permission denied"] = "Permís denegat"; -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["Item not found."] = "Element no trobat."; -App::$strings["Collection not found."] = "Col·lecció no trobada."; -App::$strings["Collection is empty."] = "La col·lecció esta buida."; -App::$strings["Collection: %s"] = "Col·lecció: %s"; -App::$strings["Connection: %s"] = "Connexió: %s"; -App::$strings["Connection not found."] = "Connexió no trobada."; -App::$strings["Delete this item?"] = "Vols esborrar aquest element?"; -App::$strings["[-] show less"] = "[-] mostra'n menys"; -App::$strings["[+] expand"] = "[+] expandeix"; -App::$strings["[-] collapse"] = "[-] colapsa"; -App::$strings["Password too short"] = "Contrasenya massa curta"; -App::$strings["Passwords do not match"] = "Les contrasenyes no coincideixen"; -App::$strings["everybody"] = "tothom"; -App::$strings["Secret Passphrase"] = "Contrasenya secreta"; -App::$strings["Passphrase hint"] = "Pista per la contrasenya"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Avís: Els permisos han canviat però encara no han estat enviats."; -App::$strings["close all"] = "tanca-ho tot"; -App::$strings["Nothing new here"] = "Res de nou per aquí"; -App::$strings["Rate This Channel (this is public)"] = "Valora aquest Canal (això es farà públic)"; -App::$strings["Rating"] = "Valoració"; -App::$strings["Describe (optional)"] = "Descriu (opcional)"; -App::$strings["Please enter a link URL"] = "Si us plau, introdueix una adreça URL"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Hi ha canvis sense desar, estàs segur que vols abandonar la pàgina?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "enrere"; -App::$strings["from now"] = "des d'ara"; -App::$strings["less than a minute"] = "menys d'un minut"; -App::$strings["about a minute"] = "prop d'un minut"; -App::$strings["%d minutes"] = "%d minuts"; -App::$strings["about an hour"] = "prop d'una hora"; -App::$strings["about %d hours"] = "al voltant de %d hores"; -App::$strings["a day"] = "un dia"; -App::$strings["%d days"] = "%d dies"; -App::$strings["about a month"] = "prop d'un mes"; -App::$strings["%d months"] = "%d mesos"; -App::$strings["about a year"] = "prop d'un any"; -App::$strings["%d years"] = "%d anys"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["New Page"] = "Pàgina Nova"; -App::$strings["View"] = "Mostra"; -App::$strings["Actions"] = "Accions"; -App::$strings["Page Link"] = "Enllaç de la pàgina"; -App::$strings["Title"] = "Títol"; -App::$strings["Created"] = "Creat"; -App::$strings["Edited"] = "Editat"; -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 photo albums"] = "Pot veure el meus àlbums de fotos"; -App::$strings["Can view my connections"] = "Pot veure les meves connexions"; -App::$strings["Can view my file storage"] = "Pot veure al meu magatzem d'arxius"; -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 post photos to my photo albums"] = "Pot enviar fotos al meus àlbums de fotos"; -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"] = "Pot escriure al meu magatzem d'arxius"; -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["Mostly Public"] = "Més aviat Públic"; -App::$strings["Restricted"] = "Restringit"; -App::$strings["Private"] = "Privat"; -App::$strings["Community Forum"] = "Foro de Comunitat"; -App::$strings["Feed Republish"] = "Republicador"; -App::$strings["Special Purpose"] = "Objectiu Especial"; -App::$strings["Celebrity/Soapbox"] = "Celebritat/Faristol"; -App::$strings["Group Repository"] = "Repositori de Grup"; -App::$strings["Other"] = "Altres"; -App::$strings["Custom/Expert Mode"] = "Personalitzat/Mode Expert"; -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["Unable to process image"] = "incapaç de processar la imatge"; -App::$strings["Photo storage failed."] = "Fracassà l'emmagatzematge de la Foto"; -App::$strings["Upload New Photos"] = "Puja Noves Fotos"; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Avís]"; +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["edited a post dated %s"] = "ha editat una entrada amb data de %s"; +App::$strings["edited a comment dated %s"] = "ha editat un comentari amb data de %s"; +App::$strings["Wiki updated successfully"] = "S'ha actualitzat la wiki amb èxit"; +App::$strings["Wiki files deleted successfully"] = "S'han esborrat els fitxers de la wiki amb èxit"; +App::$strings["Update Error at %s"] = "Error d'Actualització a %s"; +App::$strings["Update %s failed. See error logs."] = "L'actualització %s ha fallat. Mira el registre d'errors."; +App::$strings["Private Message"] = "Missatge Privat"; +App::$strings["Admin Delete"] = "Esborrat amb privilegis d'administració"; +App::$strings["Select"] = "Selecciona"; +App::$strings["I will attend"] = "Assistiré"; +App::$strings["I will not attend"] = "No assistiré"; +App::$strings["I might attend"] = "Podria assistir"; +App::$strings["I agree"] = "D'acord"; +App::$strings["I disagree"] = "En desacord"; +App::$strings["I abstain"] = "M'abstinc"; +App::$strings["Toggle Star Status"] = "Canvia el Estat de la Preferència"; +App::$strings["Message signature validated"] = "Validada la signatura del missatge"; +App::$strings["Message signature incorrect"] = "Signatura del missatge incorrecta"; +App::$strings["Add Tag"] = "Afegeix Etiqueta"; +App::$strings["like"] = "agrada"; +App::$strings["dislike"] = "desagrada"; +App::$strings["Share This"] = "Comparteix Això"; +App::$strings["share"] = "comparteix"; +App::$strings["Delivery Report"] = "Informe de Lliurament"; +App::$strings["%d comment"] = array( + 0 => "%d commentari", + 1 => "%d commentaris", +); +App::$strings["View %s's profile - %s"] = "Mostra el perfil de %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Mur-a-Mur"; +App::$strings["via Wall-To-Wall:"] = "via Mur-a-Mur:"; +App::$strings["from %s"] = "De %s"; +App::$strings["last edited: %s"] = "últim editat: %s"; +App::$strings["Expires: %s"] = "Expira: %s"; +App::$strings["Attend"] = "Assistir-hi"; +App::$strings["Attendance Options"] = "Opcions d'assistència"; +App::$strings["Vote"] = "Votar"; +App::$strings["Voting Options"] = "Opcions de votació"; +App::$strings["Save Bookmarks"] = "Desa els marcadors"; +App::$strings["Add to Calendar"] = "Afegeix al Calendari"; +App::$strings["This is an unsaved preview"] = "Això només és una vista prèvia, no està desada"; +App::$strings["%s show all"] = "%s mostra-ho tot"; +App::$strings["Bold"] = "Negreta"; +App::$strings["Italic"] = "Italica"; +App::$strings["Underline"] = "Subratllat"; +App::$strings["Quote"] = "Cometes"; +App::$strings["Code"] = "Codi"; +App::$strings["Image"] = "Imatge"; +App::$strings["Attach/Upload file"] = "Adjunta i puja un arxiu"; +App::$strings["Insert Link"] = "Insereix Enllaç"; +App::$strings["Video"] = "Video"; +App::$strings["Your full name (required)"] = "Nom complet (obligatori)"; +App::$strings["Your email address (required)"] = "Adreça de correu (obligatòria)"; +App::$strings["Your website URL (optional)"] = "Adreça web (opcional)"; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a nivell local. Si us plau, tanca la sessió i torna-ho a intentar."; +App::$strings["Welcome %s. Remote authentication successful."] = "Benvingut %s. Autenticació remota reeixida."; +App::$strings["parent"] = "amunt"; +App::$strings["Collection"] = "Col·lecció"; +App::$strings["Principal"] = "Principal"; +App::$strings["Addressbook"] = "Llista d'Adreçes"; +App::$strings["Calendar"] = "Calendari"; +App::$strings["Schedule Inbox"] = "Programació de la bústia d'entrada"; +App::$strings["Schedule Outbox"] = "Programació de la bústia de sortida"; +App::$strings["Total"] = "Total"; +App::$strings["Shared"] = "Compartit"; +App::$strings["Add Files"] = "Afegeix arxius"; +App::$strings["You are using %1\$s of your available file storage."] = "Estàs emprant el %1\$s de l'espai d'emmagatzematge disponible"; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Estàs emprant %1\$s de %2\$s d'emmagatzematge d'arxius disponible.\n(%3\$s%)"; +App::$strings["WARNING:"] = "ALERTA:"; +App::$strings["Create new folder"] = "Crea una nova carpeta"; +App::$strings["Upload file"] = "Puja arxiu"; +App::$strings["Drop files here to immediately upload"] = "Deixa anar fitxers aquí per a pujar-los immediatament"; +App::$strings["Forums"] = "Forums"; +App::$strings["Select Channel"] = "Escull canal"; +App::$strings["Read-write"] = "Llegir i escriure"; +App::$strings["Read-only"] = "Només lectura"; +App::$strings["My Calendars"] = "Els meus calendaris"; +App::$strings["Shared Calendars"] = "Calendaris compartits"; +App::$strings["Share this calendar"] = "Comparteix aquest calendari"; +App::$strings["Calendar name and color"] = "Nom i color del calendari"; +App::$strings["Create new calendar"] = "Crea un nou calendari"; +App::$strings["Calendar Name"] = "Nom del calendari"; +App::$strings["Calendar Tools"] = "Eines de calendari"; +App::$strings["Import calendar"] = "Importa un calendari"; +App::$strings["Select a calendar to import to"] = "Escull el calendari a on importar"; +App::$strings["Addressbooks"] = "Llibretes d'adreces"; +App::$strings["Addressbook name"] = "Nom de llibreta d'adreces"; +App::$strings["Create new addressbook"] = "Crea una nova llibreta d'adreces"; +App::$strings["Addressbook Name"] = "Nom de llibreta d'adreces"; +App::$strings["Addressbook Tools"] = "Eines de llibreta d'adreces"; +App::$strings["Import addressbook"] = "Importa una llibreta d'adreces"; +App::$strings["Select an addressbook to import to"] = "Escull la llibreta d'adreces a on importar"; +App::$strings["Categories"] = "Categories"; +App::$strings["Everything"] = "Tot"; +App::$strings["Events Tools"] = "Eina d'Esdeveniments"; +App::$strings["Export Calendar"] = "Exportar Calendari"; +App::$strings["Import Calendar"] = "Importar Calendari"; +App::$strings["Suggested Chatrooms"] = "Sales de Xat Suggerides"; +App::$strings["HQ Control Panel"] = "Panell de control"; +App::$strings["Create a new post"] = "Crea una nova entrada"; +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["Chatrooms"] = "Sala per Xerrar"; +App::$strings["Overview"] = "Visió General"; +App::$strings["Rating Tools"] = "Eines de Valoració"; +App::$strings["Rate Me"] = "Valora'm"; +App::$strings["View Ratings"] = "Veure Valoracions"; +App::$strings["__ctx:widget__ Activity"] = "Activitat"; +App::$strings["Personal Posts"] = "Entrades personals"; +App::$strings["Show posts that mention or involve me"] = "Mostra les entrades que m'inclouen"; +App::$strings["Starred Posts"] = "Entrades destacades"; +App::$strings["Show posts that I have starred"] = "Mostra les entrades que he destacat"; +App::$strings["Show posts related to the %s privacy group"] = "Mostra les entrades relacionades amb el grup de privacitat %s"; +App::$strings["Show my privacy groups"] = "Mostra els meus grups de privacitat"; +App::$strings["Show posts to this forum"] = "Mostra les entrades a aquest fòrum"; +App::$strings["Show forums"] = "Mostra els fòrums"; +App::$strings["Show posts that I have filed to %s"] = "Mostra les entrades que he penjat a %s"; +App::$strings["Saved Folders"] = "Carpetes Guardades"; +App::$strings["Show filed post categories"] = "Mostra les categories de les entrades pujades"; +App::$strings["Panel search"] = "Panell de cerca"; +App::$strings["Filter by name"] = "Filtra per nom"; +App::$strings["Remove active filter"] = "Esborra el filtre actual"; +App::$strings["Activity Filters"] = "Filtres d'activitat"; +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["Wiki List"] = "Llista de Wikis"; +App::$strings["Archives"] = "Arxius"; +App::$strings["Received Messages"] = "Missatges Rebuts"; +App::$strings["Sent Messages"] = "Missatges Enviats"; +App::$strings["Conversations"] = "Conversacions"; +App::$strings["No messages."] = "Sense missatges."; +App::$strings["Delete conversation"] = "Conversació esborrada"; +App::$strings["Chat Members"] = "Membres de la Sala de Xat"; +App::$strings["photo/image"] = "foto/imatge"; +App::$strings["Remove term"] = "Plaç de remoció"; +App::$strings["Saved Searches"] = "Cerques Guardades"; +App::$strings["add"] = "afegeix"; +App::$strings["Notes"] = "Notes"; +App::$strings["Add new page"] = "Afegeix una pàgina nova"; +App::$strings["Wiki Pages"] = "Pàgines de Wikis"; +App::$strings["Page name"] = "Canvia el nom de la pàgina"; +App::$strings["Refresh"] = "Refresc"; +App::$strings["Tasks"] = "Tasques"; +App::$strings["Suggestions"] = "Suggerencies"; +App::$strings["See more..."] = "Veure més....."; +App::$strings["Commented Date"] = "Data dels comentaris"; +App::$strings["Order by last commented date"] = "Ordena segons la data dels comentaris més recents"; +App::$strings["Posted Date"] = "Data de les entrades"; +App::$strings["Order by last posted date"] = "Ordena segons la data de publicació de les entrades"; +App::$strings["Date Unthreaded"] = "Data sense agrupar"; +App::$strings["Order unthreaded by date"] = "Ordena per data els comentaris i les publicacions sense agrupar-los per converses"; +App::$strings["Activity Order"] = "Ordre de les activitats"; +App::$strings["Click to show more"] = "Fes clic per veure més"; App::$strings["Tags"] = "Etiquetes"; -App::$strings["Keywords"] = "Paraules clau"; -App::$strings["have"] = "tinc"; -App::$strings["has"] = "tens"; -App::$strings["want"] = "vull"; -App::$strings["wants"] = "vols"; -App::$strings["likes"] = "li agrada"; -App::$strings["dislikes"] = "no li agrada"; +App::$strings["App Collections"] = "Coŀleccions d'aplicacions"; +App::$strings["Available Apps"] = "Aplicacions disponibles"; +App::$strings["Installed apps"] = "Aplicacions instaŀlades"; +App::$strings["Profile Creation"] = "Creació de perfils"; +App::$strings["Upload profile photo"] = "Puja una foto de perfil"; +App::$strings["Upload cover photo"] = "Puja una foto de portada"; +App::$strings["Edit your profile"] = "Modifica el teu perfil"; +App::$strings["Find and Connect with others"] = "Cerca altres canals i connecta-t'hi"; +App::$strings["View the directory"] = "Mostra la carpeta"; +App::$strings["Manage your connections"] = "Gestiona les teves conexions"; +App::$strings["Communicate"] = "Communica't"; +App::$strings["View your channel homepage"] = "Mostra el teu canal"; +App::$strings["View your network stream"] = "Mostra el teu flux de xarxa"; +App::$strings["Documentation"] = "Documentació"; +App::$strings["View public stream"] = "Mostra el flux públic"; +App::$strings["New Member Links"] = "Enllaços de membres nous"; +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"] = "Administració"; +App::$strings["Addon Features"] = "Funcions de les extensions"; +App::$strings["Account settings"] = "Configuració del compte"; +App::$strings["Channel settings"] = "Configuració del canal"; +App::$strings["Additional features"] = "Característiques addicionals"; +App::$strings["Addon settings"] = "Configuració de les extensions"; +App::$strings["Display settings"] = "Configuració de pantalla"; +App::$strings["Manage locations"] = "Gestiona ubicacions"; +App::$strings["Export channel"] = "Exportat canal"; +App::$strings["OAuth1 apps"] = "Aplicacions OAuth1"; +App::$strings["OAuth2 apps"] = "Aplicacions OAuth2"; +App::$strings["Premium Channel Settings"] = "Configuració dels canals prèmium"; +App::$strings["Bookmarked Chatrooms"] = "Sales de xat desades"; +App::$strings["New Network Activity"] = "Activitat nova a la xarxa"; +App::$strings["New Network Activity Notifications"] = "Notificacions noves d'activitat a la xarxa"; +App::$strings["View your network activity"] = "Mostra l'activitat a la xarxa"; +App::$strings["Mark all notifications read"] = "Marca totes les notificacions com a vistes"; +App::$strings["Show new posts only"] = "Mostra només les entrades noves"; +App::$strings["New Home Activity"] = "Activitat nova al mur"; +App::$strings["New Home Activity Notifications"] = "Notificacions noves d'activitat al mur"; +App::$strings["View your home activity"] = "Mostra l'activitat al teu mur"; +App::$strings["Mark all notifications seen"] = "Marca totes les notificacions com a vistes"; +App::$strings["New Mails"] = "Correus nous"; +App::$strings["New Mails Notifications"] = "Notificacions noves de correus"; +App::$strings["View your private mails"] = "Mostra els correus privats"; +App::$strings["Mark all messages seen"] = "Marca tots els missatges com a llegits"; +App::$strings["New Events"] = "Esdeveniments nous"; +App::$strings["New Events Notifications"] = "Notificacions noves d'esdeveniments"; +App::$strings["View events"] = "Mostra els esdeveniments"; +App::$strings["Mark all events seen"] = "Marcar tots els esdeveniments vistos"; +App::$strings["New Connections Notifications"] = "Notificacions noves de connexió"; +App::$strings["View all connections"] = "Mostra totes les connexions"; +App::$strings["New Files"] = "Arxius nous"; +App::$strings["New Files Notifications"] = "Notificacions noves d'arxius"; +App::$strings["Notices"] = "Noticies"; +App::$strings["View all notices"] = "Mostra totes les notificacions"; +App::$strings["Mark all notices seen"] = "Marca totes les notificacions com a vistes"; +App::$strings["New Registrations"] = "Inscripcions noves"; +App::$strings["New Registrations Notifications"] = "Notificacions noves d'inscripció"; +App::$strings["Public Stream Notifications"] = "Notificacions del flux públic"; +App::$strings["View the public stream"] = "Mostra el flux públic"; +App::$strings["Sorry, you have got no notifications at the moment"] = "No tens cap notificació"; +App::$strings["Source channel not found."] = "No s'ha trobat el canal font."; +App::$strings["Create an account to access services and applications"] = "Crea un compte per tal d'accedir a serveis i aplicacions"; +App::$strings["Logout"] = "Surt"; +App::$strings["Login/Email"] = "Correu d'usuari"; +App::$strings["Password"] = "Contrasenya"; +App::$strings["Remember me"] = "Recorda'm"; +App::$strings["Forgot your password?"] = "Has perdut la Contrasenya?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Error de TLS per a %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificat SSL és invalid, soluciona-ho, si us plau."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Les tasques del cron tasks no s'estan executant a %s"; +App::$strings["Cron/Scheduled tasks not running."] = "No s'estan executant les tasques programades al cron."; +App::$strings["never"] = "mai"; +App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla per defecte)"; +App::$strings["Theme settings"] = "Configuració de tema"; +App::$strings["Narrow navbar"] = "Barra de navegació estreta"; +App::$strings["Navigation bar background color"] = "Color de fons de la barra de navegació"; +App::$strings["Navigation bar icon color "] = "Color de la icona de la barra de navegació"; +App::$strings["Navigation bar active icon color "] = "Color de la icona de la barra de navegació activa"; +App::$strings["Link color"] = "Color dels enllaços"; +App::$strings["Set font-color for banner"] = "Ajusta el color del tipus de lletra per la senyera"; +App::$strings["Set the background color"] = "Ajusta el color de fons"; +App::$strings["Set the background image"] = "Ajusta la imatge de fons"; +App::$strings["Set the background color of items"] = "ajusta el color dels articles de fons"; +App::$strings["Set the background color of comments"] = "Ajusta el color dels comentaris en segon pla"; +App::$strings["Set font-size for the entire application"] = "Ajusta la mida del tipus de lletra per tota l'aplicació"; +App::$strings["Examples: 1rem, 100%, 16px"] = "Exemples: 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Ajusta el color del tipus de lletra per entrades i comentaris"; +App::$strings["Set radius of corners"] = "Ajusta el radi de les cantonades"; +App::$strings["Example: 4px"] = "Exemple: 4px"; +App::$strings["Set shadow depth of photos"] = "Ajusta la profunditat d'ombres de les fotos"; +App::$strings["Set maximum width of content region in pixel"] = "Ajusta l'amplada màxima de la zona de contingut en pixels"; +App::$strings["Leave empty for default width"] = "Deixa en blanc per l'amplada predeterminada"; +App::$strings["Left align page content"] = "Alineació esquerra del contingut de la pàgina"; +App::$strings["Set size of conversation author photo"] = "Ajusta la mida de la foto del autor a la conversa"; +App::$strings["Set size of followup author photos"] = "Ajusta la mida del seguidor de les fotos de l'autor"; +App::$strings["Network/Protocol"] = "Xarxa/protocol"; +App::$strings["Zot"] = "Zot"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["Errors encountered deleting database table "] = "S'ha produït un o més errors en esborrar una taula de la base de dades"; +App::$strings["Submit Settings"] = "Desa els canvis"; +App::$strings["Drop tables when uninstalling?"] = "Vols eliminar les taules en desinstaŀlar?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "En cas afirmatiu, s'esborraran de la base de dades les taules del Rendezvous en desinstaŀlar l'extensió."; +App::$strings["Mapbox Access Token"] = "Testimoni d'accés a Mapbox"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Es farà servir aquest testimoni per a descarregar les tesseŀles des de Mapbox en comptes del servidor per defecte d'OpenStreetMap."; +App::$strings["Rendezvous"] = "Rendezvous"; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Un altre membre ha esborrat aquesta identitat per inactivitat. Pots crear-ne una nova amb el botó o recarregant la pàgina. Pots tornar a fer servir el mateix nom."; +App::$strings["Welcome to Rendezvous!"] = "Benvingut/da al Rendezvous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Escriu un nom per unir-te an aquest Rendezvous. Per a començar compartint la teva ubicació amb els altres membres, toca el control de GPS. Un cop descoberta la teva ubicació, apareixerà un punt vermell i la resta podran veure't en el mapa."; +App::$strings["Let's meet here"] = "Trobem-nos aquí"; +App::$strings["New marker"] = "Nova xinxeta"; +App::$strings["Edit marker"] = "Modifica la xinxeta"; +App::$strings["New identity"] = "Nova identitat"; +App::$strings["Delete marker"] = "Esborra la xinxeta"; +App::$strings["Delete member"] = "Esborra el membre"; +App::$strings["Edit proximity alert"] = "Modifica l'alerta de proximitat"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Es mostrarà una alerta de proximitat si aquest membre està dins un cert radi de distància.

Introdueix un radi en metres (0 ho deshabilita):"; +App::$strings["distance"] = "distància"; +App::$strings["Proximity alert distance (meters)"] = "Distància d'alerta de proximitat (metres)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Es mostrarà una alerta de proximitat quan siguis dins un cert radi de distància de la ubicació de la xinxeta.

Introdueix un radi en metres (0 ho deshabilita):"; +App::$strings["Marker proximity alert"] = "Alerta de proximitat de xinxeta"; +App::$strings["Reminder note"] = "Nota de recordatori"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Introdueix una nota per a mostrar amb l'alerta"; +App::$strings["Add new rendezvous"] = "Afegeix un rendezvous nou"; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Crea un rendezvous nou i comparteix-lo amb aquelles persones a qui vulguis convidar al grup. Qui obri l'enllaç es faran membres del rendezvous. Podran veure les ubicacions dels altres membres, afegir xinxetes al mapa i compartir les seves ubicacions amb el grup."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "No tens cap rendezvous. Pica el botó de sobre per a crear-ne un!"; +App::$strings["Some setting"] = "Opció X"; +App::$strings["A setting"] = "Opció Y"; +App::$strings["Skeleton Settings"] = "Configuració del Skeleton"; +App::$strings["GNU-Social Protocol Settings updated."] = "S'ha actualitzat la configuració del Protocol GNU-Social"; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El Protocol GNU-Social és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal."; +App::$strings["Enable the GNU-Social protocol for this channel"] = "Habilita el Protocol GNU-Social per a aquest canal"; +App::$strings["GNU-Social Protocol Settings"] = "Configuració del Protocol GNU-Social "; +App::$strings["Follow"] = "Segueix"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s ara segueix a %2\$s"; +App::$strings["Planets Settings updated."] = "S'ha actualitzat la configuració de Planetes."; +App::$strings["Enable Planets Plugin"] = "Habilita l'extensió Planetes"; +App::$strings["Planets Settings"] = "Configuració de Planetes"; +App::$strings["System defaults:"] = "Opcions per defecte:"; +App::$strings["Preferred Clipart IDs"] = "Identitats Clipart preferides"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Llista d'identitats Clipart preferides. Aquestes es mostren primer"; +App::$strings["Default Search Term"] = "Paraula de cerca predeterminada"; +App::$strings["The default search term. These will be shown second."] = "La paraula de cerca predeterminada. Aquestes es mostraran en segon lloc."; +App::$strings["Return After"] = "Acaba després de"; +App::$strings["Page to load after image selection."] = "Pàgina per carregar després d'haver seleccionat una imatge."; +App::$strings["Edit Profile"] = "Modifica el meu perfil"; +App::$strings["Profile List"] = "Llista de perfils"; +App::$strings["Order of Preferred"] = "Ordre de les preferides"; +App::$strings["Sort order of preferred clipart ids."] = "Ordena les identitats Clipart preferides"; +App::$strings["Newest first"] = "La més nova primer"; +App::$strings["As entered"] = "En ordre d'entrada"; +App::$strings["Order of other"] = "Ordre de les altres"; +App::$strings["Sort order of other clipart ids."] = "Ordena les altres identitats Clipart."; +App::$strings["Most downloaded first"] = "Les més descarregades primer"; +App::$strings["Most liked first"] = "Les més votades primer"; +App::$strings["Preferred IDs Message"] = "Missatge de les identitats preferides"; +App::$strings["Message to display above preferred results."] = "Missatge per a mostrar per sobre dels resultats preferits."; +App::$strings["Uploaded by: "] = "Carregada per:"; +App::$strings["Drawn by: "] = "Dibuixada per:"; +App::$strings["Use this image"] = "Fes servir aquesta imatge"; +App::$strings["Or select from a free OpenClipart.org image:"] = "O bé tria una imatge lliure d'OpenClipart.org:"; +App::$strings["Search Term"] = "Paraules de cerca"; +App::$strings["Unknown error. Please try again later."] = "S'ha produït un error desconegut. Torna a provar-ho més tard."; +App::$strings["Profile photo updated successfully."] = "S'ha carregat la foto amb èxit."; +App::$strings["Flag Adult Photos"] = "Marca contingut adult"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Habilita una opció per a amagar fotos sensibles de la vista per defecte de l'àlbum."; +App::$strings["Post to WordPress"] = "Publica a un Wordpress"; +App::$strings["Enable WordPress Post Plugin"] = "Activa l'extensió Publica a un Wordpress"; +App::$strings["WordPress username"] = "Nom d'usuari al Wordpress"; +App::$strings["WordPress password"] = "Contrassenya al Wordpress"; +App::$strings["WordPress API URL"] = "Adreça URL de l'API del Wordpress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Normalment https://el-meu-blog.cat/xmlrpc.php"; +App::$strings["WordPress blogid"] = "Identitat blogid del Wordpress"; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Fer a llocs multi-usuari com wordpress.com . Deixa en blanc en cas contrari"; +App::$strings["Post to WordPress by default"] = "Publica a Wordpress per defecte"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Reenvia comentaris (necessita l'extensió hubzilla_wp)"; +App::$strings["WordPress Post Settings"] = "Configuració d'entrades"; +App::$strings["Wordpress Settings saved."] = "S'ha desat la configuració."; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Aquesta extensió cerca paraules que especifiquis en les entrades, i amaga plegant qualsevol contingut que en contingui alguna. Així, no es mostrarà per defecte i no quedaràs exposat/da en llocs on més gent vegi la teva pantalla. Sempre es recomana etiquetar els continguts amb nuesa amb l'etiqueta #NSFW (insegur per a la feina, en anglès). Tanmateix, el filtre es pot fer servir per qualsevol tipus de contingut."; +App::$strings["Enable Content filter"] = "Activa el filtre de contingut"; +App::$strings["Comma separated list of keywords to hide"] = "Llista de paraules clau a amagar, separada per comes"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Paraula, /expressió-regular/, lang=xx, lang=!xx. Nota: lang és per llengua en anglès"; +App::$strings["Not Safe For Work Settings"] = "Configuració de Not Safe For Work"; +App::$strings["General Purpose Content Filter"] = "Filtre de contingut genèric"; +App::$strings["NSFW Settings saved."] = "S'ha desat la configuració del NSFW."; +App::$strings["Possible adult content"] = "Possible contingut inadequat"; +App::$strings["%s - view"] = "%s - mostra"; +App::$strings["Post to Insanejournal"] = "Publicar a Insanejournal"; +App::$strings["Enable InsaneJournal Post Plugin"] = "Habilita la publicació a InsaneJournal"; +App::$strings["InsaneJournal username"] = "Nom d'usuari a InsaneJournal"; +App::$strings["InsaneJournal password"] = "Contrasenya a InsaneJournal"; +App::$strings["Post to InsaneJournal by default"] = "Publica per defecte a InsaneJournal"; +App::$strings["InsaneJournal Post Settings"] = "Opcions de publicació a InsaneJournal"; +App::$strings["Insane Journal Settings saved."] = "S'han actualitzat els paàrmetres de InsaneJournal."; +App::$strings["Post to Dreamwidth"] = "Publica a Dreamwidth"; +App::$strings["Enable Dreamwidth Post Plugin"] = "Habilita el connector per a publicar a la xarxa Dreamwidth"; +App::$strings["Dreamwidth username"] = "Nom a Dreamwidth"; +App::$strings["Dreamwidth password"] = "Contrasenya a Dreamwidth"; +App::$strings["Post to Dreamwidth by default"] = "Publica a Dreamwidth per defecte"; +App::$strings["Dreamwidth Post Settings"] = "Opcions de publicació a Dreamwidth"; +App::$strings["New registration"] = "S'ha registrat un nou compte"; +App::$strings["Message sent to %s. New account registration: %s"] = "S'ha enviat el correu a %s. El nou compte és %s"; +App::$strings["Hubzilla Directory Stats"] = "Estadístiques del directori de Hubzilla"; +App::$strings["Total Hubs"] = "Hubs totals"; +App::$strings["Hubzilla Hubs"] = "Hubs de Hubzilla"; +App::$strings["Friendica Hubs"] = "Hubs de Friendica"; +App::$strings["Diaspora Pods"] = "Pods de Diaspora"; +App::$strings["Hubzilla Channels"] = "Canals de Hubzilla"; +App::$strings["Friendica Channels"] = "Canals de Friendica"; +App::$strings["Diaspora Channels"] = "Canals de Diaspora"; +App::$strings["Aged 35 and above"] = "De 35 o més anys d'edat"; +App::$strings["Aged 34 and under"] = "De 34 o menys anys d'edat"; +App::$strings["Average Age"] = "Mitjana d'edat"; +App::$strings["Known Chatrooms"] = "Sales de xat conegudes"; +App::$strings["Known Tags"] = "Etiquetes conegudes"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Tingueu en compte que les estadístiques de Diaspora i Friendica només són les **aquest directori** n'és conscient, i no totes les de la xarxa. Això també aplica a sales de xat,"; +App::$strings["Your Webbie:"] = "El teu Webbie:"; +App::$strings["Fontsize (px):"] = "Mida de lletra (px):"; +App::$strings["Link:"] = "Enllaç:"; +App::$strings["Like us on Hubzilla"] = "Segueix-nos a Hubzilla"; +App::$strings["Embed:"] = "Incrusta:"; +App::$strings["Photos imported"] = "S'han importat les fotos"; +App::$strings["Redmatrix Photo Album Import"] = "Importa els àlbums de fotos de \$Projectname"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Importa els àlbums de fotos de \$Projectname"; +App::$strings["Redmatrix Server base URL"] = "Adreça URL arrel del servidor de Redmatrix"; +App::$strings["Redmatrix Login Username"] = "Nom d'usuari de Redmatrix"; +App::$strings["Redmatrix Login Password"] = "Contrasenya de Redmatrix"; +App::$strings["Import just this album"] = "Importa només aquest album"; +App::$strings["Leave blank to import all albums"] = "Deixa-ho en blanc per a importar tots els àlbums"; +App::$strings["Maximum count to import"] = "Nombre màxim d'importacions"; +App::$strings["0 or blank to import all available"] = "Deixa-ho en blanc o amb un 0 per a importar-ho tot"; +App::$strings["Channels to auto connect"] = "Canals per connectar automàticament"; +App::$strings["Comma separated list"] = "Llista amb separació per comes"; +App::$strings["Popular Channels"] = "Canals populars"; +App::$strings["IRC Settings"] = "Paràmetres de IRC"; +App::$strings["IRC settings saved."] = "S'han actualitzat els paràmetres de IRC."; +App::$strings["IRC Chatroom"] = "Sala de IRC"; +App::$strings["Gallery"] = "Galeria"; +App::$strings["Photo Gallery"] = "Galeria d'imatges"; +App::$strings["Post to LiveJournal"] = "Publica a LiveJournal"; +App::$strings["Enable LiveJournal Post Plugin"] = "Habilita la publicació a LiveJournal"; +App::$strings["LiveJournal username"] = "Nom a LiveJournal"; +App::$strings["LiveJournal password"] = "Contrasenya a LiveJournal"; +App::$strings["Post to LiveJournal by default"] = "Publica a LiveJournal per defecte"; +App::$strings["LiveJournal Post Settings"] = "Paràmetres de LiveJournal"; +App::$strings["LiveJournal Settings saved."] = "S'han desat els paràmetres de LiveJournal."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "No s'ha pogut autenticar la identitat OpenID que has proporcionat. Comprova que l'hagis introduïda bé."; +App::$strings["The error message was:"] = "El missatge d'error ha estat:"; +App::$strings["First Name"] = "Nom"; +App::$strings["Last Name"] = "Cognoms"; +App::$strings["Nickname"] = "Àlies"; +App::$strings["Full Name"] = "Nom complet"; +App::$strings["Profile Photo 16px"] = "Imatge de perfil de 16x16 píxels"; +App::$strings["Profile Photo 32px"] = "Imatge de perfil de 32x32 píxels"; +App::$strings["Profile Photo 48px"] = "Imatge de perfil de 48x48 píxels"; +App::$strings["Profile Photo 64px"] = "Imatge de perfil de 64x64 píxels"; +App::$strings["Profile Photo 80px"] = "Imatge de perfil de 80x80 píxels"; +App::$strings["Profile Photo 128px"] = "Imatge de perfil de 128x128 píxels"; +App::$strings["Timezone"] = "Zona horària"; +App::$strings["Birth Year"] = "Any de naixement"; +App::$strings["Birth Month"] = "Mes de naixement"; +App::$strings["Birth Day"] = "Dia de naixement"; +App::$strings["Birthdate"] = "Aniversar"; +App::$strings["OpenID protocol error. No ID returned."] = "Error d'OpenID. No s'ha aconseguit cap ID."; +App::$strings["Login failed."] = "Identificació fallida."; App::$strings["Male"] = "Masculí"; App::$strings["Female"] = "Femení"; +App::$strings["You're welcome."] = "De res."; +App::$strings["Ah shucks..."] = "Oh merda..."; +App::$strings["Don't mention it."] = "Ni ho pensis."; +App::$strings["<blush>"] = "<em poso vermell>"; +App::$strings["Page to load after login"] = "Pàgina a carregar després d'iniciar sessió"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Exemples: "apps", "network?f=&gid=37" (grup de privacitat), "channel" or "notifications/system" (deixa-ho en blanc per a la pàgina per defecte, la del flux públic."; +App::$strings["Startpage Settings"] = "Configuració de Pàgina d'inici"; +App::$strings["bitchslap"] = "bofetades"; +App::$strings["bitchslapped"] = "ha fet una bofetada a"; +App::$strings["shag"] = "polvo"; +App::$strings["shagged"] = "ha fet un polvo amb"; +App::$strings["patent"] = "amb dret de"; +App::$strings["patented"] = "ha patentat a"; +App::$strings["hug"] = "abraçada"; +App::$strings["hugged"] = "ha abraçat"; +App::$strings["murder"] = "assassinat"; +App::$strings["murdered"] = "ha assassinat"; +App::$strings["worship"] = "retre-li culte"; +App::$strings["worshipped"] = "ara ret culte a"; +App::$strings["kiss"] = "un petó"; +App::$strings["kissed"] = "ha fet un petó a"; +App::$strings["tempt"] = "temptar"; +App::$strings["tempted"] = "ha temptat a"; +App::$strings["raise eyebrows at"] = "aixecar-li una cella"; +App::$strings["raised their eyebrows at"] = "li ha aixecat una cella a"; +App::$strings["insult"] = "insultar"; +App::$strings["insulted"] = "ha insultat a"; +App::$strings["praise"] = "elogiar"; +App::$strings["praised"] = "ha elogiat a"; +App::$strings["be dubious of"] = "sospitar"; +App::$strings["was dubious of"] = "sospita de"; +App::$strings["eat"] = "menjar"; +App::$strings["ate"] = "s'ha menjat"; +App::$strings["giggle and fawn at"] = "cantar-ne les mil meravelles"; +App::$strings["giggled and fawned at"] = "està cantant les mil meravelles de"; +App::$strings["doubt"] = "dubtar-ne"; +App::$strings["doubted"] = "dubta de"; +App::$strings["glare"] = "fer-li una mirada assassina"; +App::$strings["glared at"] = "li ha fet una mirada assassina a"; +App::$strings["fuck"] = "follar-hi"; +App::$strings["fucked"] = "ha follat amb"; +App::$strings["bonk"] = "tirar-se'l/la"; +App::$strings["bonked"] = "s'ha tirat a"; +App::$strings["declare undying love for"] = "declarar-li l'amor etern a"; +App::$strings["declared undying love for"] = "li ha declarar amor etern a"; +App::$strings["Diaspora Protocol Settings updated."] = "S'ha actualitzat la configuració del Protocol de Diàspora"; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El Protocol de Diàspora és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal."; +App::$strings["Enable the Diaspora protocol for this channel"] = "Activa el Protocol de Diàspora per aquest canal"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permet a qualsevol membre de Diàspora de comentar les teves entrades públiques"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Evita que les teves etiquetes siguin redirigides a altres llocs web"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signa i reenvia entrades o comentaris encara que no tinguin una signatura de Diàspora vàlida."; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Etiquetes seguides (separades per comes i sense incloure #)"; +App::$strings["Diaspora Protocol Settings"] = "Configuració del Protocol de Diàspora"; +App::$strings["No username found in import file."] = "No s'ha trobat el nom d'usuari en el fitxer 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["Your account on %s will expire in a few days."] = "El teu compte a %s caducarà d'aquí a pocs dies."; +App::$strings["Your $Productname test account is about to expire."] = "El teu compte de prova a $Productname està a punt de caducar."; +App::$strings["Enable Rainbowtag"] = "Activa el Rainbowtag"; +App::$strings["Rainbowtag Settings"] = "Configuració de Rainbowtag"; +App::$strings["Rainbowtag Settings saved."] = "S'ha desat la configuració del Rainbowtag."; +App::$strings["Show Upload Limits"] = "Mostra els límits de pujada"; +App::$strings["Hubzilla configured maximum size: "] = "Mida màxima configurada a \$Projectname:"; +App::$strings["PHP upload_max_filesize: "] = "Mida màxima de fitxer del PHP (upload_max_filesize):"; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "Mida màxima de consulta web del PHP (post_max_size > upload_max_filesize):"; +App::$strings["generic profile image"] = "imatge de perfil genèrica"; +App::$strings["random geometric pattern"] = "patró geomètric aleatori"; +App::$strings["monster face"] = "cara de monstre"; +App::$strings["computer generated face"] = "cara generada per ordinador"; +App::$strings["retro arcade style face"] = "cara d'estil arcade retro"; +App::$strings["Hub default profile photo"] = "Foto de perfil per defecte al hub"; +App::$strings["Information"] = "Informació"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extensió Libravatar també està instaŀlada. Desactiva-la o desactiva aquesta.
Libravatar rebotarà a Gravatar si no es troba res a Libravatar."; +App::$strings["Save Settings"] = "Des la configuració"; +App::$strings["Default avatar image"] = "Avatar per defecte"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Escull l'avatar per defecte si no se'n troba cap al Gravatar. Consulta el README"; +App::$strings["Rating of images"] = "Categorització de les imatges"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Escull la categorització d'avatar per al teu lloc. Consulta el README"; +App::$strings["Gravatar settings updated."] = "S'ha actualitzat la configuració del Gravatar"; +App::$strings["Hubzilla File Storage Import"] = "Importació d'emmagatzematge de Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Permet importar tots els arxius de núvol des d'un altre servidor."; +App::$strings["Hubzilla Server base URL"] = "Adreça URL base de l'altre servidor Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Més nous que aaaa-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Més antics que aaaa-mm-dd"; +App::$strings["Recent Channel/Profile Viewers"] = "Visitants recents del canal o perfil"; +App::$strings["This plugin/addon has not been configured."] = "Aquesta extensió encara no està configurada."; +App::$strings["Please visit the Visage settings on %s"] = "Visita la configuració del Visage a %s"; +App::$strings["your feature settings page"] = "la pàgina de configuració de funcionalitats"; +App::$strings["No entries."] = "No hi ha entrades."; +App::$strings["Enable Visage Visitor Logging"] = "Activa el registre de visitants de Visage"; +App::$strings["Visage Settings"] = "Configuració del Visage"; +App::$strings["Nsabait Settings updated."] = "S'ha actualitzat la configuració de NSAbait."; +App::$strings["Enable NSAbait Plugin"] = "Activa l'extensió NSAbait"; +App::$strings["NSAbait Settings"] = "Configuració del NSAbait"; +App::$strings["Send test email"] = "Envia un correu de prova"; +App::$strings["No recipients found."] = "No s'han trobat destinataris."; +App::$strings["Mail sent."] = "S'ha enviat el correu."; +App::$strings["Sending of mail failed."] = "Ha fallat l'enviament de correu."; +App::$strings["Mail Test"] = "Prova de correu"; +App::$strings["Message subject"] = "Assumpte"; +App::$strings["Use markdown for editing posts"] = "Fes servir markdown per editar les entrades"; +App::$strings["View Larger"] = "Amplia"; +App::$strings["Tile Server URL"] = "Adreça URL del servidor de tesseŀles"; +App::$strings["A list of public tile servers"] = "Una llista de servidors públics de tesseŀles"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "Adreça URL del servei Nominatim (geocoding invers)"; +App::$strings["A list of Nominatim servers"] = "Una llista de servidors públics de Nominatim"; +App::$strings["Default zoom"] = "Zoom per defecte"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "El nivell de zoom predeterminat. (1: mínim, món. 18: màxim. També depèn del servidor)"; +App::$strings["Include marker on map"] = "Inclou una xinxeta al mapa"; +App::$strings["Include a marker on the map."] = "Inclou una xinxeta al mapa."; +App::$strings["text to include in all outgoing posts from this site"] = "text per incloure en totes les entrades que s'enviïn des d'aquest lloc"; +App::$strings["Fuzzloc Settings updated."] = "S'ha actualitzat la configuració de Fuzzloc."; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "El Fuzzloc permet difuminar la teva ubicació si el teu canal fa servir la ubicació precisa del navegador."; +App::$strings["Enable Fuzzloc Plugin"] = "Habilita l'extensió Fuzzloc"; +App::$strings["Minimum offset in meters"] = "Afegit mínim en metres"; +App::$strings["Maximum offset in meters"] = "Afegit màxim en metres"; +App::$strings["Fuzzloc Settings"] = "Configuració del Fuzzloc"; +App::$strings["Post to Friendica"] = "Publica a Friendica"; +App::$strings["rtof Settings saved."] = "S'ha desat la Configuració de rtof."; +App::$strings["Allow posting to Friendica"] = "Permet publicar a xarxes Friendica"; +App::$strings["Send public postings to Friendica by default"] = "Envia per defecte les entrades públiques cap a Friendica"; +App::$strings["Friendica API Path"] = "Ruta a l'API de Friendica"; +App::$strings["https://{sitename}/api"] = "https://{nomdedomini}/api"; +App::$strings["Friendica login name"] = "Nom d'usuari a Friendica"; +App::$strings["Friendica password"] = "Contrasenya a Friendica"; +App::$strings["Hubzilla to Friendica Post Settings"] = "Configuració de Publicació de Hubzilla cap a Friendica"; +App::$strings["Status:"] = "Estatus:"; +App::$strings["Activate addon"] = "Habilita l'extensió"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Amaga el giny de xat Jappixmini"; +App::$strings["Jabber username"] = "Nom a Jabber"; +App::$strings["Jabber server"] = "Servidor de Jabber"; +App::$strings["Jabber BOSH host URL"] = "URL de l'amfitrió BOSH de Jabber"; +App::$strings["Jabber password"] = "Contrassenya de Jabber"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = "Xifra la contrasenya de Jabber amb la del Hubzilla"; +App::$strings["Hubzilla password"] = "Contrasenya del Hubzilla"; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Aprova automàticament les sol·licituds de subscripció de contactes de Hubzilla"; +App::$strings["Purge internal list of jabber addresses of contacts"] = "Neteja la llista interna de contactes de Jabber"; +App::$strings["Configuration Help"] = "Ajuda de configuració"; +App::$strings["Jappix Mini Settings"] = "Paràmetres de Jappix Mini"; +App::$strings["Currently blocked"] = "Bloquejats actualment"; +App::$strings["No channels currently blocked"] = "No hi ha canals bloquejats"; +App::$strings["Superblock Settings"] = "Configuració del Superblock"; +App::$strings["Block Completely"] = "Bloqueja completament"; +App::$strings["superblock settings updated"] = "S'ha actualitzat la configuració del Superblock"; +App::$strings["Federate"] = "Federa"; +App::$strings["nofed Settings saved."] = "S'ha desat la configuració del NoFed."; +App::$strings["Allow Federation Toggle"] = "Permet commutar entre federar o no"; +App::$strings["Federate posts by default"] = "Per defecte federa les entrades"; +App::$strings["NoFed Settings"] = "Configuració del NoFed"; +App::$strings["Post to Red"] = "Publica a Red"; +App::$strings["Channel is required."] = "Cal un canal."; +App::$strings["redred Settings saved."] = "S'ha desat la configuració del RedRed"; +App::$strings["Allow posting to another Hubzilla Channel"] = "Permet publicar a un altre canal de Hubzilla"; +App::$strings["Send public postings to Hubzilla channel by default"] = "Envia per defecte les entrades públiques cap a l'altre canal de Hubzilla"; +App::$strings["Hubzilla API Path"] = "Ruta de l'API de Hubzilla"; +App::$strings["Hubzilla login name"] = "Nom d'usuari a l'altre Hubzilla"; +App::$strings["Hubzilla channel name"] = "Nom de canal a l'altre Hubzilla"; +App::$strings["Hubzilla Crosspost Settings"] = "Configuració del replicador de Hubzilla"; +App::$strings["Logfile archive directory"] = "Carpeta d'arxius de registre d'activitat"; +App::$strings["Directory to store rotated logs"] = "Carpeta per desar els registres circulars"; +App::$strings["Logfile size in bytes before rotating"] = "Mida en Bytes del fitxer de registre abans de rotar"; +App::$strings["Number of logfiles to retain"] = "Número de fitxers de registre per a conservar"; +App::$strings["Friendica Photo Album Import"] = "Importa àlbums de fotos de Friendica"; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Aquesta acció importarà tots els teus àlbums de fotos de Friendica a aquest canal."; +App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica"; +App::$strings["Friendica Login Username"] = "Nom de registre a Friendica"; +App::$strings["Friendica Login Password"] = "Contrasenya a Friendica"; +App::$strings["ActivityPub Protocol Settings updated."] = "S'ha actualitzat la configuració del Protocol ActivityPub."; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El Protocol ActivityPub és incompatible amb la independència de hub. Les connexions que facis en aquesta xarxa no seran accessibles des de hubs alternatius del teu canal."; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Activa el Protocol ActivityPub en aquest canal"; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Envia a identitats d'ActivityPub en grups de privacitat"; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Pot comportar moltes mencions i revelar els teus grups de privacitat."; +App::$strings["Send multi-media HTML articles"] = "Envia articles HTML multimèdia"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Incompatible amb alguns serveis de microbloguing com Mastodon"; +App::$strings["ActivityPub Protocol Settings"] = "Configuració del Protocol ActivityPub"; +App::$strings["Project Servers and Resources"] = "Servidors de projecte i Recursos"; +App::$strings["Project Creator and Tech Lead"] = "Creador del projecte i cap tècnic"; +App::$strings["Admin, developer, directorymin, support bloke"] = "Administradora, desenvolupadora, admin del directori, persona de suport"; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "I els centenars d'altra gent i organitzacions que han ajudat que Hubzilla fos possible."; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Els projectes Redmatrix i Hubzilla són oferts principalment per voluntàries que donen el seu temps i experiència i que fins i tot solen posar-hi diners de la seva butxaca per a compartir serveis amb altres."; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "No rebem cap mena de finançament corporatiu, ni posem anuncis ni recollim i venem les teves dades personals. Nosaltres no controlem les dades personals, sinó tu."; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Ajuda'ns a mantenir la nostra feina pionera cap a la descentralització, la identitat a la web i la privacitat."; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Les teves donacions mantenen els servidors i els serveis corrent, i ens ajuda a oferir noves funcionalitats i continuar el desenvolupament en marxa."; +App::$strings["Donate"] = "Dóna"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Tria un projecte, desenvolupador o hub públic per a donar suport amb una donació"; +App::$strings["Donate Now"] = "Dóna ara"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "O bé, fes-te patrocinador/a del projecte Hubzilla"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Indica com vols aparèixer a la llista de patrocinadors: anònim, amb nom, o nom i cognoms"; +App::$strings["Sponsor"] = "Patrocinador"; +App::$strings["Special thanks to: "] = "Agraïments especials a:"; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "És un diccionari prou complet d'acords de guitarra. Llista la majoria de maneres possibles de tocar un cert acord, començant des de la base del mànec fins una mica més apunt del dotzè trast, a partir del qual es repeteixen. Ofereix també un parell d'afinacions no estàndards."; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "Els noms dels acords estan formats per la nota fonamental en notació anglesa (A-G), i modificadors com \"sostingut\" (#) i \"bemoll\" (b). El programa entén la majoria de convencions com maj, min, dim, sus2, sus4 i aug, amb més d'un element potencialment."; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Exemples vàlids: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11"; +App::$strings["Guitar Chords"] = "Acords de guitarra"; +App::$strings["The complete online chord dictionary"] = "El diccionari on-line d'acords"; +App::$strings["Tuning"] = "Afinació"; +App::$strings["Chord name: example: Em7"] = "Exemple de nom d'acord: Em7"; +App::$strings["Show for left handed stringing"] = "Disposició per esquerrans"; +App::$strings["Quick Reference"] = "Xuleta"; +App::$strings["Post to Libertree"] = "Publica a Libertree"; +App::$strings["Enable Libertree Post Plugin"] = "Habilita la publicació a Libertree"; +App::$strings["Libertree API token"] = "Token per a l'API de Libertree"; +App::$strings["Libertree site URL"] = "URL del servidor de Libertree"; +App::$strings["Post to Libertree by default"] = "Publica a Libertree per defecte"; +App::$strings["Libertree Post Settings"] = "Paràmetres de publicació a Libertree"; +App::$strings["Libertree Settings saved."] = "S'han actualitzat els paràmetres de Libertree."; +App::$strings["Flattr this!"] = "Dóna-hi suport amb Flattr!"; +App::$strings["Flattr widget settings updated."] = "S'han actualitzat els paràmetres del giny de Flattr."; +App::$strings["Flattr user"] = "Nom a Flattr"; +App::$strings["URL of the Thing to flattr"] = "URL del lloc per a donar suport"; +App::$strings["If empty channel URL is used"] = "Si la deixes buida, es farà servir la URL del canal"; +App::$strings["Title of the Thing to flattr"] = "Títol del lloc a donar suport"; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Si el deixes buit, es farà servir el nom del canal a Hubzilla"; +App::$strings["Static or dynamic flattr button"] = "Botó estàtic o dinàmic"; +App::$strings["static"] = "estàtic"; +App::$strings["dynamic"] = "dinàmic"; +App::$strings["Alignment of the widget"] = "Aliniament del giny"; +App::$strings["left"] = "esquerra"; +App::$strings["right"] = "dreta"; +App::$strings["Enable Flattr widget"] = "Habilita el giny de Flattr"; +App::$strings["Flattr Widget Settings"] = "Opcions del giny de Flattr"; +App::$strings["Post to GNU social"] = "Publica a GNU Social"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Contacta l'administrador del teu lloc.
L'adreça URL de l'API no és vàlida."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "No s'ha trobat una API de GNU Social a la ruta introduïda."; +App::$strings["GNU social settings updated."] = "S'ha actualitzat la configuració de GNU Social "; +App::$strings["Globally Available GNU social OAuthKeys"] = "Claus OAuth de GNU Social diponibles públicament"; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.
Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)"; +App::$strings["Provide your own OAuth Credentials"] = "Proporciona credencials OAuth pròpies"; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.
Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social."; +App::$strings["OAuth Consumer Key"] = "Clau de consumidor OAuth"; +App::$strings["OAuth Consumer Secret"] = "Secret de consumidor OAuth"; +App::$strings["Base API Path"] = "Ruta arrel de l'API"; +App::$strings["Remember the trailing /"] = "Recorda la / final"; +App::$strings["GNU social application name"] = "Nom de l'aplicació GNU Social"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Per tal de connectar al teu compte de GNU Social, fes clic al botó de sota per a obtenir un codi de seguretat de GNU Social. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques"; +App::$strings["Log in with GNU social"] = "Inicia la sessió amb GNU Social"; +App::$strings["Copy the security code from GNU social here"] = "Copia el codi de seguretat de GNU Social aquí"; +App::$strings["Cancel Connection Process"] = "Aborta el procés de connexió"; +App::$strings["Current GNU social API is"] = "La ruta actual a l'API de GNU Social és"; +App::$strings["Cancel GNU social Connection"] = "Aborta la connexió a GNU Social"; +App::$strings["Currently connected to: "] = "Actualment estàs connectat/da a:"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a GNU Social per a la teva identitat portarà a una pàgina en blanc avisant de la restricció."; +App::$strings["Allow posting to GNU social"] = "Permet publicar a GNU Social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si s'activa, les entrades públiques poden ser penjades al compte associat de GNU Social"; +App::$strings["Post to GNU social by default"] = "Per defecte publica a GNU Social"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de GNU Social"; +App::$strings["Clear OAuth configuration"] = "Esborra la configuració de OAuth"; +App::$strings["GNU social Post Settings"] = "Configuració de Publica a GNU Social"; +App::$strings["API URL"] = "Adreça URL de l'API"; +App::$strings["Application name"] = "Nom de l'aplicació"; +App::$strings["QR code"] = "Codi QR"; +App::$strings["QR Generator"] = "Generador de codi QR"; +App::$strings["Enter some text"] = "Escriu un text"; +App::$strings["Invalid game."] = "El joc no és vàlid."; +App::$strings["You are not a player in this game."] = "No ets un jugador en aquest joc."; +App::$strings["You must be a local channel to create a game."] = "Has de crear la partida des d'un canal local."; +App::$strings["You must select one opponent that is not yourself."] = "Has de triar un oponent diferent a tu mateix/a."; +App::$strings["Random color chosen."] = "S'ha escollit un color aleatori."; +App::$strings["Error creating new game."] = "S'ha produït un error en crear la partida."; +App::$strings["Requested channel is not available."] = "El canal demanat no està disponible."; +App::$strings["You must select a local channel /chess/channelname"] = "Has de triar un canal local /chess/nomdelcanal"; +App::$strings["Enable notifications"] = "Activa les notificacions"; +App::$strings["Post to Twitter"] = "Publica a Twitter"; +App::$strings["Twitter settings updated."] = "S'ha actualitzat la configuració de Twitter."; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No s'ha trobat cap parell de claus de Twitter. Contacte l'administrador del teu lloc."; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "L'extensió de Twitter està activada però encara no t'has connectat a cap compte de Twitter. Per a fer-ho, fes clic al botó de sota per a obtenir un PIN des de Twitter. Després insereix-lo a la caixa de sota i envia el formulari. Només seran publicades a GNU Social les teves entrades públiques"; +App::$strings["Log in with Twitter"] = "Inicia la sessió amb Twitter"; +App::$strings["Copy the PIN from Twitter here"] = "Copia el PIN de Twitter aquí"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Nota: La teva configuració de privacitat amaga els detalls del perfil a visitants desconeguts. Això provocarà que l'enllaç mostrat a Twitter per a la teva identitat portarà a una pàgina en blanc avisant de la restricció."; +App::$strings["Allow posting to Twitter"] = "Permet publicar a Twitter"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si s'activa, les entrades públiques poden ser penjades al compte associat de Twitter"; +App::$strings["Twitter post length"] = "Llargada del tuit"; +App::$strings["Maximum tweet length"] = "Llargada màxima de tuit"; +App::$strings["Send public postings to Twitter by default"] = "Envia per defecte les entrades públiques cap a Twitter"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si s'activa, per defecte es penjaran les teves entrades públiques al teu compte associat de Twitter"; +App::$strings["Twitter Post Settings"] = "Configuració de Twitter"; +App::$strings["Deactivate the feature"] = "Desactiva la funcionalitat"; +App::$strings["Hide the button and show the smilies directly."] = "Amaga el botó i mostra les icones directament."; +App::$strings["Smileybutton Settings"] = "Configuració de Smileybutton"; +App::$strings["Access Denied."] = "S'ha denegat l'accés."; +App::$strings["Order Not Found"] = "No s'ha trobat l'ordre"; +App::$strings["Access Denied"] = "S'ha denegat l'accés"; +App::$strings["Invalid Item"] = "L'article és invàlid"; +App::$strings["[cart] Item Added"] = "[cart] S'ha afegit un article"; +App::$strings["Order already checked out."] = "La comanda ja s'ha servit."; +App::$strings["Enable Shopping Cart"] = "Habilita la cistella de la compra"; +App::$strings["Enable Test Catalog"] = "Habilita un catàleg de prova"; +App::$strings["Enable Manual Payments"] = "Habilita els pagaments manuals"; +App::$strings["Base Merchant Currency"] = "Moneda base del comerç"; +App::$strings["Cart - Base Settings"] = "Carretó - Configuració bàsica"; +App::$strings["Shop"] = "Botiga"; +App::$strings["You must be logged into the Grid to shop."] = "Cal haver iniciat sessió per a poder comprar."; +App::$strings["Cart Not Enabled (profile: "] = "La cistella no està habilitada (perfil:"; +App::$strings["Order not found."] = "No s'ha trobat l'ordre."; +App::$strings["Access denied."] = "S'ha denegat l'accés."; +App::$strings["No Order Found"] = "No s'ha trobat cap ordre"; +App::$strings["An unknown error has occurred Please start again."] = "S'ha produït un error inesperat. Torna-ho a provar."; +App::$strings["Invalid Payment Type. Please start again."] = "El tipus de pagament no és vàlid. Torna a començar."; +App::$strings["Order not found"] = "No s'ha trobat l'ordre"; +App::$strings["Enable Paypal Button Module"] = "Activa el mòdul del botó de Paypal"; +App::$strings["Use Production Key"] = "Fes servir la clau de producció"; +App::$strings["Paypal Sandbox Client Key"] = "Clau de client de Paypal del banc de proves"; +App::$strings["Paypal Sandbox Secret Key"] = "Clau secreta de Paypal del banc de proves"; +App::$strings["Paypal Production Client Key"] = "Clau de client de Paypal de producció"; +App::$strings["Paypal Production Secret Key"] = "Clau secreta de Paypal de producció"; +App::$strings["Cart - Paypal Addon"] = "Carretó - Extensió de Paypal"; +App::$strings["Paypal button payments are not enabled."] = "El botó de pagament per Paypal no està habilitat."; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "El botó de pagament per Paypal no està ben configurat. Escull un altre mètode de pagament."; +App::$strings["Enable Hubzilla Services Module"] = "Activa el mòdul \"Serveis de Hubzilla\""; +App::$strings["Cart - Hubzilla Services Addon"] = "Carretó - Extensió \"Serveis de Hubzilla\""; +App::$strings["New Sku"] = "Nova SKU"; +App::$strings["Cannot save edits to locked item."] = "No s'han pogut desar els canvis a l'article perquè està bloquejat."; +App::$strings["SKU not found."] = "Non s'ha trobat l'SKU"; +App::$strings["Invalid Activation Directive."] = "La directiva d'activació és invàlida."; +App::$strings["Invalid Deactivation Directive."] = "La directiva de desactivació és invàlida."; +App::$strings["Add to this privacy group"] = "Afegeix-ho al teu grup de privacitat"; +App::$strings["Set user service class"] = "Defineix la classe de servei de l'usuària"; +App::$strings["You must be using a local account to purchase this service."] = "Cal una sessió iniciada en aquest hub per a comprar el servei."; +App::$strings["Changes Locked"] = "Article bloquejat"; +App::$strings["Item available for purchase."] = "Article a la venda."; +App::$strings["Price"] = "Preu"; +App::$strings["Add buyer to privacy group"] = "Afegeix el comprador a un grup de privacitat"; +App::$strings["Add buyer as connection"] = "Connecta automàticament amb els canals de les compradores"; +App::$strings["Set Service Class"] = "Defineix la classe de servei"; +App::$strings["Error: order mismatch. Please try again."] = "Error: l'ordre no coincideix. Torna-ho a provar."; +App::$strings["Manual payments are not enabled."] = "El pagament manual no està habilitat."; +App::$strings["Finished"] = "Operació completa"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Aquest lloc web analitza el trànsit amb l'eina Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si no vols que es registrin les teves visites d'aquesta manera, pots crear una cookie per fer que Piwik deixi de fer-ho. En anglès es coneix com \"opt-out\"."; +App::$strings["Piwik Base URL"] = "Adreça URL arrel del Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Adreça absoluta a la instaŀlació de Piwik: sense protocol (http[s]) amb una barra (/) final"; +App::$strings["Site ID"] = "Identitat del lloc"; +App::$strings["Show opt-out cookie link?"] = "Vols mostrar un enllaç per poder crear una cookie per evitar el seguiment?"; +App::$strings["Asynchronous tracking"] = "Seguiment asíncron"; +App::$strings["Enable frontend JavaScript error tracking"] = "Activa el seguiment d'errors de Javascript al frontend "; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Aquesta funcionalitat necessita una versió del Piwik >= 2.2.0"; +App::$strings["Edit your profile and change settings."] = "Modifica el teu perfil i canvia la configuració."; +App::$strings["Click here to see activity from your connections."] = "Clica aquí per a veure l'activitat de les teves connexions."; +App::$strings["Click here to see your channel home."] = "Clica aquí per a veure el mur del teu canal."; +App::$strings["You can access your private messages from here."] = "Pots accedir als teus missatges privats des d'aquí."; +App::$strings["Create new events here."] = "Pots crear esdeveniments des d'aquí."; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Pots acceptar connexions noves des d'aquí i canviar els permisos de les existents. També pots crear grups de contactes, per exemple."; +App::$strings["System notifications will arrive here"] = "Les notificacions t'arriben per aquí"; +App::$strings["Search for content and users"] = "Cerca contingut i usuaris"; +App::$strings["Browse for new contacts"] = "Explora per trobar nous contactes"; +App::$strings["Launch installed apps"] = "Obre aplicacions instaŀlades"; +App::$strings["Looking for help? Click here."] = "Que busques ajuda? Clica aquí."; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Hi ha hagut activitat nova a la teva xarxa. Clica aquí a veure què ha passat!"; +App::$strings["You have received a new private message. Click here to see from who!"] = "Has rebut un missatge privat. A veure de qui és!"; +App::$strings["There are events this week. Click here too see which!"] = "Hi ha esdeveniments aquesta setmana. Clica per veure quins!"; +App::$strings["You have received a new introduction. Click here to see who!"] = "Has rebut una presentació. Clica per veure de qui és!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "Tens una notificació de sistema. Clica per veure què ha passat!"; +App::$strings["Click here to share text, images, videos and sound."] = "Clica aquí per a compartir text, imatges, vídeos, i sons."; +App::$strings["You can write an optional title for your update (good for long posts)."] = "Si vols, pots posar un títol a les teves entrades. És una bona idea per a entrades llargues."; +App::$strings["Entering some categories here makes it easier to find your post later."] = "Si afegeixes categories serà més fàcil de trobar l'entrada més endavant."; +App::$strings["Share photos, links, location, etc."] = "Comparteix fotos, enllaços, la ubicació, etc."; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Vols compartir un contingut només durant una estona? Fes-lo caducar a un cert moment."; +App::$strings["You can password protect content."] = "Pots protegir el contingut per contrasenya."; +App::$strings["Choose who you share with."] = "Escull amb qui ho vols compartir."; +App::$strings["Click here when you are done."] = "I clica aquí quan acabis."; +App::$strings["Adjust from which channels posts should be displayed."] = "Tria des de quins canals s'haurien de mostrar les entrades."; +App::$strings["Only show posts from channels in the specified privacy group."] = "Mostra només entrades de canals especificats en el grup de privacitat."; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Pots trobar fàcilment entrades que continguin etiquetes (paraules clau precedides per un símbol \"#\")."; +App::$strings["Easily find posts in given category."] = "Troba fàcilment entrades en una certa categoria."; +App::$strings["Easily find posts by date."] = "Troba fàcilment entrades per data."; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Els usuaris que et suggerim s'han mostrat voluntaris a ser suggerits perquè els puguis afegir. Que potser t'interessa connectar-t'hi?"; +App::$strings["Here you see channels you have connected to."] = "Aquí pots veure els canals als quals estàs connectat/da."; +App::$strings["Save your search so you can repeat it at a later date."] = "Si deses la teva cerca la podràs repetir més tard."; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si veus aquesta icona, pots donar per fet que el/la remitent és qui diu ser. De tota manera, és habitual que no es pugui verificar, i per tant, que de vegades falti aquesta icona. Però és només una capa més de seguretat del sistema."; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Alerta! Sembla que algú ha intentat falsificar un missatge! Pot ser que el remitent d'aquest missatge no sigui qui diu ser!"; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Benvingut/da a Hubzilla! T'agradaria fer un tur pel lloc?

Pots pausar-lo en qualsevol moment i continuar més tard on ho havies deixat. Per fer-ho navega a una altra pàgina o recarrega aquesta.

També pots avançar prement la tecla de retorn"; +App::$strings["Extended Identity Sharing"] = "Compartició d'identitats extesa"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Comparteix la teva identitat amb tota la web. Si es deshabilita, la identitat només es comparteix amb altres nodes de \$Projectname."; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tres en ratlla 3D"; +App::$strings["3D Tic-Tac-Toe"] = "Tres en ratlla 3D"; +App::$strings["New game"] = "Nova partida"; +App::$strings["New game with handicap"] = "Nova partida amb desavantatge"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "El tres en ratlla en 3D és com el clàssic en 2D excepte que es juga en diversos nivells simultàniament."; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "En aquest cas hi ha tres nivells. Guanya qui aconsegueixi fer 3 en ratlla en qualsevol nivell, així com amunt, avall, o en diagonal en qualsevol nivell"; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Una partida amb desavantatge desactiva la posició del centre perquè el jugador que aconsegueix aquest quadrat sol aconseguir un avantatge injust."; +App::$strings["You go first..."] = "Comences!"; +App::$strings["I'm going first this time..."] = "Aquest cop començo jo!"; +App::$strings["You won!"] = "Has guanyat!"; +App::$strings["\"Cat\" game!"] = "Empat!"; +App::$strings["I won!"] = "He guanyat!"; +App::$strings["Message to display on every page on this server"] = "Missatge per mostrar en cada pàgina d'aquest servidor"; +App::$strings["Pageheader Settings"] = "Configuració del Pageheader"; +App::$strings["pageheader Settings saved."] = "S'ha desat la configuració del Pageheader."; +App::$strings["Only authenticate automatically to sites of your friends"] = "Autentica'm automàticament només en hubs on hi tinc connexions"; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "Per defecte se t'autentica en qualsevol hub de la xarxa"; +App::$strings["Authchoose Settings"] = "Configuració de l'Authchoose"; +App::$strings["Atuhchoose Settings updated."] = "S'ha actualitzat la configuració de l'Authchoose."; +App::$strings["lonely"] = "solitari/ària"; +App::$strings["drunk"] = "borratxo/a"; +App::$strings["horny"] = "calent/a"; +App::$strings["stoned"] = "perplex/a"; +App::$strings["fucked up"] = "fotut/da"; +App::$strings["clusterfucked"] = "rematadament fotut/da"; +App::$strings["crazy"] = "boig/boja"; +App::$strings["hurt"] = "ferit/da"; +App::$strings["sleepy"] = "amb son"; +App::$strings["grumpy"] = "de mal humor"; +App::$strings["high"] = "flipat/da"; +App::$strings["semi-conscious"] = "semi-conscient"; +App::$strings["in love"] = "enamorat/da"; +App::$strings["in lust"] = "en zel"; +App::$strings["naked"] = "nu/nua"; +App::$strings["stinky"] = "pudent/a"; +App::$strings["sweaty"] = "suat/da"; +App::$strings["bleeding out"] = "sagnant"; +App::$strings["victorious"] = "victoriós/a"; +App::$strings["defeated"] = "derrotat/da"; +App::$strings["envious"] = "envejós/a"; +App::$strings["jealous"] = "gelós/a"; +App::$strings["XMPP settings updated."] = "S'ha actualitzat la configuració de l'XMPP."; +App::$strings["Enable Chat"] = "Activa el xat"; +App::$strings["Individual credentials"] = "Credencials individuals"; +App::$strings["Jabber BOSH server"] = "Servidor de Jabber BOSH"; +App::$strings["XMPP Settings"] = "Configuració XMPP"; +App::$strings["Jabber BOSH host"] = "Nom de domini de Jabber BOSH"; +App::$strings["Use central userbase"] = "Fes servir una base d'usuari/es central"; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Si s'activa, s'iniciarà sessió automàticament als membres en un servidor ejabberd. Aquest ha d'estar instaŀlat en la mateixa màquina amb credencials sincronitzades, mitjançant l'script \"auth_ejabberd.php\"."; +App::$strings["Who likes me?"] = "A qui agrado?"; +App::$strings["You are now authenticated to pumpio."] = "Has iniciat sessió a pumpio."; +App::$strings["return to the featured settings page"] = "torna a la pàgina de configuració"; +App::$strings["Post to Pump.io"] = "Publica a Pump.io"; +App::$strings["Pump.io servername"] = "Nom del servidor de Pump.io"; +App::$strings["Without \"http://\" or \"https://\""] = "Sense \"http://\" ni \"https://\""; +App::$strings["Pump.io username"] = "Nom d'usuari a Pump.io"; +App::$strings["Without the servername"] = "Sense el nom de servidor"; +App::$strings["You are not authenticated to pumpio"] = "No has iniciat sessió a pumpio"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "[Re]autentica la teva connexió a pump.io"; +App::$strings["Enable pump.io Post Plugin"] = "Activa l'extensió Publica a pump.io"; +App::$strings["Post to pump.io by default"] = "Publica a Pump.io per defecte"; +App::$strings["Should posts be public"] = "Vols que les entrades siguin públiques?"; +App::$strings["Mirror all public posts"] = "Replica totes les entrades públiques"; +App::$strings["Pump.io Post Settings"] = "Configuració de les entrades de pump.io"; +App::$strings["PumpIO Settings saved."] = "S'ha desat la configuració de pump.io"; +App::$strings["An account has been created for you."] = "S'ha creat un compte nou."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "L'autenticació ha tingut èxit però no s'ha pogut crear un compte perquè no està permès."; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s(%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = "Cerca \$Projectname"; +App::$strings["Redmatrix File Storage Import"] = "Importa l'emmagatzematge d'arxius de Redmatrix"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Importa tots els teus arxius de núvol cap aquest canal."; +App::$strings["file"] = "arxiu"; +App::$strings["Send email to all members"] = "Enviar correus a tothom"; +App::$strings["%1\$d of %2\$d messages sent."] = "S'ha/n enviat %1\$d de %2\$d missatges."; +App::$strings["Send email to all hub members."] = "Envia un correu a tots els membres del hub."; +App::$strings["Sender Email address"] = "Adreça del remitent"; +App::$strings["Test mode (only send to hub administrator)"] = "Mode de proves (envia'l només a l'administrador del hub)"; +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í"; @@ -924,1148 +2754,271 @@ 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["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["Message deleted."] = "Missatge eliminat."; -App::$strings["Message recalled."] = "Recupera el missatge."; -App::$strings["Send Private Message"] = "Envia Missatge Privat"; -App::$strings["To:"] = "Per:"; -App::$strings["Subject:"] = "Assumpte:"; -App::$strings["Your message:"] = "El teu missatge:"; -App::$strings["Send"] = "Envia"; -App::$strings["Message not found."] = "Missatge no trobat."; -App::$strings["Delete message"] = "Elimina el missatge"; -App::$strings["Recall message"] = "Recupera el missatge"; -App::$strings["Message has been recalled."] = "El missatge s'ha recuperat."; -App::$strings["Private Conversation"] = "Conversació Privada"; -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["Hub not found."] = "Concentrador no trobat."; -App::$strings["Some blurb about what to do when you're new here"] = "Algunes propostes sobre què pots fer quan ets nou per aquí"; -App::$strings["Invalid item."] = "Article invàlid."; -App::$strings["Channel not found."] = "Canal no trobat."; -App::$strings["Page not found."] = "Pàgina no trobada."; -App::$strings["Lorem Ipsum"] = "Lorem Ipsum"; -App::$strings["network"] = "xarxa"; -App::$strings["RSS"] = "RSS"; -App::$strings["Theme settings updated."] = "Ajustos de tema actualitzats."; -App::$strings["Site"] = "Lloc"; -App::$strings["Accounts"] = "Comptes"; -App::$strings["Channels"] = "Canals"; -App::$strings["Plugins"] = "Plugins"; -App::$strings["Themes"] = "Temes"; -App::$strings["Inspect queue"] = "Revisa cua"; -App::$strings["Profile Config"] = "Configuració del Perfil"; -App::$strings["DB updates"] = "Actualitzacions de Base de Dades"; -App::$strings["Logs"] = "Logs"; -App::$strings["Plugin Features"] = "Característiques del Plugin"; -App::$strings["User registrations waiting for confirmation"] = "Registre d'usuaris esperant confirmació"; -App::$strings["# Accounts"] = "# Comptes"; -App::$strings["# blocked accounts"] = "# comptes bloquejats"; -App::$strings["# expired accounts"] = "# comptes expirats"; -App::$strings["# expiring accounts"] = "# comptes expirant"; -App::$strings["# Channels"] = "# Canals"; -App::$strings["# primary"] = "# primari"; -App::$strings["# clones"] = "# clons"; -App::$strings["Message queues"] = "Cues de missatges"; -App::$strings["Administration"] = "Administració"; -App::$strings["Summary"] = "Sumari"; -App::$strings["Registered accounts"] = "Comptes registrades"; -App::$strings["Pending registrations"] = "Comptes pendents de registre"; -App::$strings["Registered channels"] = "Canals registrats"; -App::$strings["Active plugins"] = "Plugins actius"; -App::$strings["Version"] = "Versió"; -App::$strings["Site settings updated."] = "Ajustos del Lloc actualitzats"; -App::$strings["mobile"] = "mòbil"; -App::$strings["experimental"] = "experimental"; -App::$strings["unsupported"] = "no soportat"; -App::$strings["Yes - with approval"] = "Sí - amb aprovació"; -App::$strings["My site is not a public server"] = "El meu lloc no es un servidor públic"; -App::$strings["My site has paid access only"] = "El meu lloc te accès per pagament"; -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["Registration"] = "Registre"; -App::$strings["File upload"] = "Pujar arxiu"; -App::$strings["Policies"] = "Polítiques"; -App::$strings["Site name"] = "Nom del lloc"; -App::$strings["Banner/Logo"] = "Senyera/Logo"; -App::$strings["Administrator Information"] = "Informació de l'Administrador"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informació per contactar amb els administradors del lloc. Mostrada a la pàgina d'informació del lloc. Es pot emprar BBCode aquí"; -App::$strings["System language"] = "Idioma del sistema"; -App::$strings["System theme"] = "Tema del sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema per defecte - pot ser sobrescrit pel perfils dels usuaris - Ajustos de canvi del tema"; -App::$strings["Mobile system theme"] = "Tema del sistema per a mòbils"; -App::$strings["Theme for mobile devices"] = "Tema per a aparells mòbils"; -App::$strings["Enable Diaspora Protocol"] = "Activat el Protocol Diaspora"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Comunicar amb Diaspora i Friendica - experimental"; -App::$strings["Allow Feeds as Connections"] = "Permetre Retroalimentadors com Connexions"; -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 de imatges pujades. Per defecte es 0, el que vol dir sense límits."; -App::$strings["Does this site allow new member registration?"] = "Permet aquest lloc registre de nous membres?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Que es es que millor descriu la mena de comptes oferits per aquest concentrador?"; -App::$strings["Register text"] = "text de registre"; -App::$strings["Will be displayed prominently on the registration page."] = "Es mostrarà preminentment a la pàgina de registre"; -App::$strings["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"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la pàgina web del lloc en un marc en el lloc original enlloc de redirigir cap a ella"; -App::$strings["Accounts abandoned after x days"] = "Els copmte es consideren abandonats despres de x dies"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No malgastar recursos del sistema sondejant llocs externs per acomptes abandonats. Entrar 0 vol dir sense límit de temps."; -App::$strings["Allowed friend domains"] = "dominis amics permesos"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "llista separada per comes de dominis en els que està permès establir relacions d'amistat amb aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini"; -App::$strings["Allowed email domains"] = "Dominis de correu electonic acceptats"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "llista separada per comes de dominis de adreces de correu electrònic permeses en aquest lloc. S'accepten comodins. Deixar buit per acceptar qualsevol domini"; -App::$strings["Not allowed email domains"] = "Dominis de correu electrònic no acceptats"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "llista separada per comes de dominis de adreces de correu electrònic no permeses en aquest lloc. S'accepten comodins. Deixar buit per no acceptar cap domini, excepte els que s'hagin definits com acceptats."; -App::$strings["Block public"] = "Bloc públic"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Activa per a bloquejar l'accés públic a totes les pàgines públiques personals excepte si estàs identificat en el sistema."; -App::$strings["Verify Email Addresses"] = "Verifica l'Adreça de Correu Electrònic"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activa per comprovar l'adreça de correu electrònic emprada durant el registre d'un nou compte (recomanat)"; -App::$strings["Force publish"] = "Forza la publicació"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Activa per forzar que tots el perfils en aquest lloc siguin llistats en el directori del lloc."; -App::$strings["Disable discovery tab"] = "Desactiva la pestañnya de descobrir"; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Treu la pesranya per veure contingut públic de la xarxa extret d'origens triats per aquest lloc."; -App::$strings["login on Homepage"] = "Accés a la Pàgina d'inici"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta una casella d'identificació a la pàgina d'inici als visitants si no s'ha configurat altre contingut."; -App::$strings["Proxy user"] = "Usuari Proxy"; -App::$strings["Proxy URL"] = "URL del Proxy"; -App::$strings["Network timeout"] = "Temps d'espera de la xarxa"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segons. Ajusta a 0 per a sense límits (no recomanat)"; -App::$strings["Delivery interval"] = "Interval de lliurament"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retarda en segon plà l'interval de lliurament per aquests segons per reduir la càrrega del sistema. Recomanat: 4-5 per a hostes compartits, 2-3 per a servidors privats virtuals. 0-1 per a servidors dedicats."; -App::$strings["Poll interval"] = "interval de sondeig"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retarda en segon pla el sondeig en aquesta quantitat de segons per a reduir la càrrega dels sistema. Si es 0 , empra l'interval de lliurament."; -App::$strings["Maximum Load Average"] = "Càrrega Mitja Màxima"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema, abans que els processos de lliurament i sondeig es difereixin - 50 per defecte."; -App::$strings["Expiration period in days for imported (matrix/network) content"] = "Periode d'expiració per a contingut importat (matrix/xarxa)"; -App::$strings["0 for no expiration of imported content"] = "0 vol dir sense temps d'expiració pel contingut importat"; -App::$strings["No server found"] = "No es troba servidor"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "per a canal"; -App::$strings["on server"] = "al servidor"; -App::$strings["Status"] = "Estat"; -App::$strings["Server"] = "Servidor"; -App::$strings["Update has been marked successful"] = "Actualització marcada amb exit"; -App::$strings["Executing %s failed. Check system logs."] = "Executant %s ha fallat. Comprova els logs del sistema."; -App::$strings["Update %s was successfully applied."] = "Actualització %s es va realitzar correctament."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Actualització %s no ha retornat l'estat. Es desconeix si ha finalitzat amb exit."; -App::$strings["Update function %s could not be found."] = "La funció d'actualitzacio %s no es pot trobar."; -App::$strings["No failed updates."] = "No hi ha actualitzacions fallides."; -App::$strings["Failed Updates"] = "Actualitzacions Fallides"; -App::$strings["Mark success (if update was manually applied)"] = "Marca èxit (si l'actualització s'ha aplicat de forma manual)"; -App::$strings["Attempt to execute this update step automatically"] = "Prova a fer automàticament aquesta actualització"; -App::$strings["Queue Statistics"] = "Cua d'Estadístiques"; -App::$strings["Total Entries"] = "Total d'Entrades"; -App::$strings["Priority"] = "Prioritat"; -App::$strings["Destination URL"] = "URL de Destí"; -App::$strings["Mark hub permanently offline"] = "Marca el concentrador coma permanentment fora de línia"; -App::$strings["Empty queue for this hub"] = "Cua buida per aquest concentrador"; -App::$strings["Last known contact"] = "Últim contacte conegut"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "S'ha [des]bloquejat %s usuari", - 1 => "S'han [des]bloquejat %s comptes", +App::$strings["likes %1\$s's %2\$s"] = "li agrada %2\$s de %1\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "no li agrada %2\$s de %1\$s"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s esta ara connectat amb %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s a esperonat %2\$s"; +App::$strings["poked"] = "esperonat"; +App::$strings["View %s's profile @ %s"] = "Mostra el perfil @%s de %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["Loading..."] = "Carregant..."; +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["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["%s account deleted"] = array( - 0 => "S'ha esborrat %s compte", - 1 => "S'han esborrat %s comptes", +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["Account not found"] = "Compte no trobat"; -App::$strings["Account '%s' deleted"] = "S'ha esborrat el compte '%s'"; -App::$strings["Account '%s' blocked"] = "S'ha bloquejat el compte '%s'"; -App::$strings["Account '%s' unblocked"] = "S'ha desbloquejat el compte '%s'"; -App::$strings["Users"] = "Usuaris"; -App::$strings["select all"] = "Sel·leciona-ho tot"; -App::$strings["User registrations waiting for confirm"] = "Registres d'usuaris pendents de confirmació"; -App::$strings["Request date"] = "Data de la petició"; -App::$strings["No registrations."] = "Sense registracions."; -App::$strings["Approve"] = "Aprovat"; -App::$strings["Deny"] = "Denegat"; -App::$strings["Block"] = "Bloquejat"; -App::$strings["Unblock"] = "Desbloquejat"; -App::$strings["Register date"] = "Data de registre"; -App::$strings["Last login"] = "Darrera identificació"; -App::$strings["Expires"] = "Expira"; -App::$strings["Service Class"] = "Classe de Servei"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Els comptes seleccionats seran eliminats!\\n\\nTot el que hagin publicat en aquest lloc serà esborrat permanentment!\\n\\nN'estàs segur de continuar?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'usuari {0} serà eliminat!\\n\\nTot el que hagi publicat l'usuari en aquest lloc serà esborrat de permanentment!\\n\\nN'estàs segur?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canal censurat/no censurat", - 1 => "%s canals censurats/no censurats", +App::$strings["and"] = "i"; +App::$strings[", and %d other people"] = array( + 0 => ", i %d altra gent", + 1 => ", i %d altra gent", ); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s codi permes/no permes al canal", - 1 => "%s codi permesos/no permesos al canal", +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["Embed (existing) photo from your photo albums"] = "Incrusta una imatge existent dels teus àlbums."; +App::$strings["Tag term:"] = "Paraula de l'Etiqueta:"; +App::$strings["Where are you right now?"] = "On ets ara?"; +App::$strings["Choose a different album..."] = "Tria un àlbum diferent..."; +App::$strings["Comments enabled"] = "S'han activat els comentaris"; +App::$strings["Comments disabled"] = "S'han activat els comentaris"; +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["Disable comments"] = "Desactiva els comentaris"; +App::$strings["Toggle comments"] = "Commuta l'estat dels comentaris"; +App::$strings["Categories (optional, comma-separated list)"] = "Categories (opcional, llista separada per comes)"; +App::$strings["Other networks and post services"] = "Altres xarxes i serveis de correu"; +App::$strings["Set publish date"] = "Ajusta la data de publicació"; +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["Profile Details"] = "Detalls del Perfil"; +App::$strings["Photo Albums"] = "Albums de Fotos"; +App::$strings["Files and Storage"] = "Arxius i Emmagatzegament"; +App::$strings["Bookmarks"] = "Marcadors"; +App::$strings["Saved Bookmarks"] = "Marcadors desats"; +App::$strings["View Cards"] = "Mostra les targetes"; +App::$strings["articles"] = "articles"; +App::$strings["View Articles"] = "Mostra els articles"; +App::$strings["View Webpages"] = "Mostra les pàgines web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Assistint", + 1 => "Assistint", ); -App::$strings["%s channel deleted"] = array( - 0 => "%s canal esborrat", - 1 => "%s canals esborrats", +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Desassistint", + 1 => "Desassistint", ); -App::$strings["Channel not found"] = "Canal no trobat"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' esborrat"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censurat"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurat"; -App::$strings["Channel '%s' code allowed"] = "Canal '%s' permet codi"; -App::$strings["Channel '%s' code disallowed"] = "Canal '%s' no permet codi"; -App::$strings["Censor"] = "Censurat"; -App::$strings["Uncensor"] = "No censurat"; -App::$strings["Allow Code"] = "Permet Codi"; -App::$strings["Disallow Code"] = "No Permet Codi"; -App::$strings["UID"] = "UID"; -App::$strings["Address"] = "Adreça"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Els canals sel·leccionats s'esborraran!\\n\\nTotes les publicacions d'aquests canals en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur? "; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} serà esborrat!\\n\\nTotes les publicacions d'aquest canal en aquest lloc s'eliminaran de forma permanent!\\n\\nEstàs segur?"; -App::$strings["Plugin %s disabled."] = "Plugin %s desactivat."; -App::$strings["Plugin %s enabled."] = "Plugin %s activat."; -App::$strings["Disable"] = "Desactivat"; -App::$strings["Enable"] = "Activat"; -App::$strings["Toggle"] = "Commutar"; -App::$strings["Author: "] = "Autor: "; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["No themes found."] = "No s'han trobat temes."; -App::$strings["Screenshot"] = "Copia de pantalla"; -App::$strings["[Experimental]"] = "[Experimental]"; -App::$strings["[Unsupported]"] = "[No soportat]"; -App::$strings["Log settings updated."] = "Registre d'ajustos actualitzat."; -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 Red top-level directory."] = "Ha de ser escribible pel servidor web. Relatiu al directori de nivell superior de Red"; -App::$strings["Log level"] = "Nivell de registre"; -App::$strings["New Profile Field"] = "Camp de Perfil Nou"; -App::$strings["Field nickname"] = "Àlies de Camp"; -App::$strings["System name of field"] = "nOM DEL SISTEMA DEL CAMP"; -App::$strings["Input type"] = "Tipus d'entrada"; -App::$strings["Field Name"] = "Nom de Camp"; -App::$strings["Label on profile pages"] = "Etiqueta a les pàgines de perfil"; -App::$strings["Help text"] = "Text d'ajuda"; -App::$strings["Additional info (optional)"] = "Informació adicional (opcional)"; -App::$strings["Field definition not found"] = "No es troba la definició del camp"; -App::$strings["Edit Profile Field"] = "Camp d'Edició del Perfil"; -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["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["Layout updated."] = "S'ha actualitzat el disseny"; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripció de Pàgines"; -App::$strings["Layout not found."] = "No s'ha trobat el disseny de pàgina."; -App::$strings["Module Name:"] = "Nom del mòdul:"; -App::$strings["Layout Help"] = "Ajuda sobre el disseny de pàgina"; -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["Description"] = "Descripció"; -App::$strings["Photo icon URL"] = "Foto icona URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -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["Page owner information could not be retrieved."] = "La informació del propietari de la pàgina no va poder ser recuperada"; -App::$strings["Album not found."] = "Àlbum no trobat"; -App::$strings["Delete Album"] = "Esborra Àlbum"; -App::$strings["Delete Photo"] = "Esborra Foto"; -App::$strings["Public access denied."] = "Accés públic denegat."; -App::$strings["No photos selected"] = "No has seleccionat fotos"; -App::$strings["Access to this item is restricted."] = "L'accés a aquest element esta restringit."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hi ha en ús %1$.2f MB de %2$.2f MB de l'espai d'imatges."; -App::$strings["%1$.2f MB photo storage used."] = "Hi ha en ús %1$.2f MB de l'espai d'imatges."; -App::$strings["Upload Photos"] = "Puja imatges"; -App::$strings["Enter a new album name"] = "Escriu el nom del nou àlbum"; -App::$strings["or select an existing one (doubleclick)"] = "o bé fes doble clic a un d'existent"; -App::$strings["Create a status post for this upload"] = "Genera una entrada a partir de la pujada"; -App::$strings["Album name could not be decoded"] = "No s'ha pogut descodificar el nom de l'àlbum"; -App::$strings["Contact Photos"] = "Imatges de contactes"; -App::$strings["Show Newest First"] = "Ordena de més nou a més antic"; -App::$strings["Show Oldest First"] = "Ordena de més antic a més nou"; -App::$strings["View Photo"] = "Mostra la imatge"; -App::$strings["Edit Album"] = "Modifica l'àlbum"; -App::$strings["Permission denied. Access to this item may be restricted."] = "S'ha denegat el permís. Pot ser que l'accés estigui restringit."; -App::$strings["Photo not available"] = "La imatge no està disponible"; -App::$strings["Use as profile photo"] = "Fes-la imatge de perfil"; -App::$strings["Private Photo"] = "Imatge privada"; -App::$strings["Previous"] = "Anterior"; -App::$strings["View Full Size"] = "Mostra a mida completa"; -App::$strings["Next"] = "Pròxim"; -App::$strings["Remove"] = "Esborra"; -App::$strings["Edit photo"] = "Modifica la imatge"; -App::$strings["Rotate CW (right)"] = "Tomba cap a la dreta"; -App::$strings["Rotate CCW (left)"] = "Tomba cap a l'esquerra"; -App::$strings["Caption"] = "Llegenda"; -App::$strings["Add a Tag"] = "Afegeix una etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple: @joan, @Paula_Peris, @mar@exemple.org"; -App::$strings["Flag as adult in album view"] = "Marca com a contingut adult"; -App::$strings["In This Photo:"] = "Hi apareixen:"; -App::$strings["Map"] = "Mapa"; -App::$strings["View Album"] = "Mostra'n l'àlbum"; -App::$strings["Recent Photos"] = "Imatges recents"; -App::$strings["Item not available."] = "Article no disponible."; -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["posted an event"] = "enviat un event"; -App::$strings["Block Name"] = "Nom del Bloc"; -App::$strings["Block Title"] = "Títol del bloc"; -App::$strings["Poke/Prod"] = "Emprenyat/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["Bookmark added"] = "Favorit afegit"; -App::$strings["My Bookmarks"] = "Els Meus Favorits"; -App::$strings["My Connections Bookmarks"] = "Les connexions dels meus Favorits"; -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["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 Channels"] = "Canals Delegats"; -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["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["Poll"] = "Enquesta"; -App::$strings["View Results"] = "Mostra els resultats"; -App::$strings["You must be logged in to see this page."] = "Has d'estar identificat per a veure aquesta pàgina."; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficients. Petició redirigida a la pàgina del perfil."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticació remota bloquejada. Ha iniciat sessió en aquest lloc a nivell local. Si us plau, tanca la sessió i torna-ho a intentar."; -App::$strings["Welcome %s. Remote authentication successful."] = "Benvingut %s. Autenticació remota reeixida."; -App::$strings["Room not found"] = "No s'ha trobat la sala"; -App::$strings["Leave Room"] = "Abandona la sala"; -App::$strings["Delete This Room"] = "Elimina la 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["New Chatroom"] = "Nova sala per a Xerrar"; -App::$strings["Chatroom Name"] = "Nom del Xat"; -App::$strings["%1\$s's Chatrooms"] = "%1\$s de Xats"; -App::$strings["Away"] = "Absent"; -App::$strings["Online"] = "En connexió"; -App::$strings["Fetching URL returns error: %1\$s"] = "URL sol·licitada retorna error: %1\$s"; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - Convidats: Nom d'usuari: {el teu correu electrònic}, Contrasenya: +++"; -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["Image uploaded but image cropping failed."] = "S'ha pujat la imatge però no s'ha pogut retallar."; -App::$strings["Image resize failed."] = "No s'ha pogut escalar la imatge."; -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["Image exceeds size limit of %d"] = "La imatge excedeix la mida límit de %d"; -App::$strings["Unable to process image."] = "Incapaç de processar l'imatge."; -App::$strings["Photo not available."] = "Foto no disponible."; -App::$strings["Upload File:"] = "Puja Arxiu:"; -App::$strings["Select a profile:"] = "Tria un perfil:"; -App::$strings["Upload Profile Photo"] = "Puja una Foto pel Perfil"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "salta aquest pas"; -App::$strings["select a photo from your photo albums"] = "tria una foto del teu àlbum de fotos"; -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["Image uploaded successfully."] = "Imatge pujada exitosament."; -App::$strings["Image upload failed."] = "La pujada de la imatge va fracassar."; -App::$strings["Image size reduction [%s] failed."] = "La reducció de mida de la imatge [%s] va fracassar."; -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["Invalid request identifier."] = "Sol·licitud d'identificació invàlida."; -App::$strings["Discard"] = "Descarta"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["No more system notifications."] = "No hi ha més notificacions de sistema."; -App::$strings["System Notifications"] = "Notificacions de sistema"; -App::$strings["Blocked"] = "Bloquejades"; -App::$strings["Ignored"] = "Ignorades"; -App::$strings["Hidden"] = "Amagades"; -App::$strings["Archived"] = "Arxivades"; -App::$strings["Suggest new connections"] = "Suggereix noves connexions"; -App::$strings["New Connections"] = "Noves Connexions"; -App::$strings["Show pending (new) connections"] = "Mostra les connexions pendents (noves)"; -App::$strings["All Connections"] = "Totes les Connexions"; -App::$strings["Show all connections"] = "Mostra totes les connexions"; -App::$strings["Unblocked"] = "No bloquejades"; -App::$strings["Only show unblocked connections"] = "Mostra només les connexions no bloquejades"; -App::$strings["Only show blocked connections"] = "Mostra només les connexions bloquejades"; -App::$strings["Only show ignored connections"] = "Mostra només les connexions ignorades"; -App::$strings["Only show archived connections"] = "Mostra només les connexions arxivades"; -App::$strings["Only show hidden connections"] = "Mostra només les connexions amagades"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica la connexió"; -App::$strings["Search your connections"] = "Cerca entre les teves connexions"; -App::$strings["Finding: "] = "Cercant:"; -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"] = "M'agrada"; -App::$strings["Dislikes"] = "No m'agrada"; -App::$strings["Work/Employment"] = "Treball/Feina"; -App::$strings["Religion"] = "Religió"; -App::$strings["Political Views"] = "Idees Polítiques"; -App::$strings["Gender"] = "Gènere"; -App::$strings["Sexual Preference"] = "Preferència Sexual"; -App::$strings["Homepage"] = "Pàgina Personal"; -App::$strings["Interests"] = "Interessos"; -App::$strings["Location"] = "Localització"; -App::$strings["Profile updated."] = "Perfil actualitzat."; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Amaga la teva llista de contactes/amics dels visitadors d'aquest perfil?"; -App::$strings["Edit Profile Details"] = "Edita els Detalls del Perfil"; -App::$strings["View this profile"] = "Veure aquest perfil"; -App::$strings["Change Profile Photo"] = "Canviar 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["Import profile from file"] = "Importa perfil des d'un arxiu"; -App::$strings["Export profile to file"] = "Exporta perfil a un arxiu"; -App::$strings["Profile Name:"] = "Nom del Perfil:"; -App::$strings["Your Full Name:"] = "El Teu Nom Complet"; -App::$strings["Title/Description:"] = "Títol/Descripció:"; -App::$strings["Your Gender:"] = "El Teu Gènere:"; -App::$strings["Birthday :"] = "Aniversari:"; -App::$strings["Street Address:"] = "Carrer:"; -App::$strings["Locality/City:"] = "Població/Ciutat:"; -App::$strings["Postal/Zip Code:"] = "Codi Postal:"; -App::$strings["Country:"] = "País:"; -App::$strings["Region/State:"] = "Regió/Estat:"; -App::$strings[" Marital Status:"] = " Marital Estatus:"; -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["Homepage URL:"] = "Pàgina Personal URL:"; -App::$strings["Religious Views:"] = "Creences Religioses:"; -App::$strings["Keywords:"] = "Paraules Clau:"; -App::$strings["Example: fishing photography software"] = "Exemple: software de fotografia submarina"; -App::$strings["Used in directory listings"] = "Emprat en els llistats de directoris"; -App::$strings["Tell us about yourself..."] = "Escriu unes línies sobre tu:"; -App::$strings["Hobbies/Interests"] = "Aficions/Interessos"; -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·lícules/Dansa/Cultura/Entreteniment"; -App::$strings["Love/romance"] = "Amor/Romace"; -App::$strings["Work/employment"] = "Treball/feina"; -App::$strings["School/education"] = "Escola/educació"; -App::$strings["This is your default profile."] = "Aquest es el teu perfil per defecte"; -App::$strings["Age: "] = "Edat:"; -App::$strings["Edit/Manage Profiles"] = "Edita/Gestiona Perfils"; -App::$strings["Add profile things"] = "Afegeix coses al perfil"; -App::$strings["Include desirable objects in your profile"] = "Inclou objectius desitjables al teu perfil"; -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ó."; -App::$strings["Failed to update connection record."] = "No s'ha pogut actualitzar el registre de connexió."; -App::$strings["is now connected to"] = "Ara està conectat amb"; -App::$strings["Could not access address book record."] = "No puc accedir al registre del contacte"; -App::$strings["Refresh failed - channel is currently unavailable."] = "Ha fallat la recàrrega - el canal es actualment inaccesible."; -App::$strings["Unable to set address book parameters."] = "No es poden ajustar els paràmetres dels contactes."; -App::$strings["Connection has been removed."] = "S'han eliminat les conexions."; -App::$strings["View %s's profile"] = "Mostra el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recarrega els Permissos"; -App::$strings["Fetch updated permissions"] = "Obté els permisos actualitzats"; -App::$strings["Recent Activity"] = "Activitat Recent"; -App::$strings["View recent posts and comments"] = "Mostra les entrades i comentaris recents"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Boqueja (o Desbloqueja) les comunicacions amb aquesta connexió"; -App::$strings["This connection is blocked!"] = "Aquesta connexió està bloquejada!"; -App::$strings["Unignore"] = "Inhabilita"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora (o Considera) les communicacions entrants d'aquesta connexió"; -App::$strings["This connection is ignored!"] = "Aquesta connexió es ignorada!"; -App::$strings["Unarchive"] = "Desarxiva"; -App::$strings["Archive"] = "Arxiva"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arxiva (o Desarxiva) aquesta connexió - Marca el canal com a mort pero manté el contingut "; -App::$strings["This connection is archived!"] = "Aquesta connexió està arxivada!"; -App::$strings["Unhide"] = "Mostra"; -App::$strings["Hide"] = "Amaga"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Amaga (o Mostra) aquesta connexió de les altres connexions teves"; -App::$strings["This connection is hidden!"] = "Aquesta connexió està amagada!"; -App::$strings["Delete this connection"] = "Elimina aquesta connexió"; -App::$strings["Approve this connection"] = "Apccepta aquesta connexió"; -App::$strings["Accept connection to allow communication"] = "Accepta la connexió per permetre la comunicació"; -App::$strings["Set Affinity"] = "Ajusta l'Afinitat"; -App::$strings["Set Profile"] = "Ajusta el Perfil"; -App::$strings["Set Affinity & Profile"] = "Ajusta Afinitat i Perfil"; -App::$strings["Apply these permissions automatically"] = "Aplica aquests permissos automaticament"; -App::$strings["This connection's address is"] = "La direcció d'aquesta connexió es"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Els permisos indicats en aquesta pàgina seran aplicats a totes les noves connexions."; -App::$strings["Slide to adjust your degree of friendship"] = "Llisca per ajustar el nivell d'amistat"; -App::$strings["Slide to adjust your rating"] = "Llisca per ajustar la valoració"; -App::$strings["Optionally explain your rating"] = "Opcionalment pots explicar la teva valoració"; -App::$strings["Custom Filter"] = "Filtre a mida"; -App::$strings["Only import posts with this text"] = "Importa exclusivament entrades amb aquest text"; -App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "paraules una per línia o #etiquetes o /patrons/, deixar en blanc per importar totes les entrades"; -App::$strings["Do not import posts with this text"] = "No importar entrades amb aquest text"; -App::$strings["This information is public!"] = "Aquesta informació es pública!"; -App::$strings["Connection Pending Approval"] = "Connexió Pendent d'Aprovació"; -App::$strings["Connection Request"] = "Petició de Connexió"; -App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) voldria conectar amb tu. Aprova aquesta connexió per permetre la connexió."; -App::$strings["Approve Later"] = "Aprovar més tard"; -App::$strings["inherited"] = "heretat"; -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"; -App::$strings["Individual Permissions"] = "Permisos Individuals"; -App::$strings["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."] = "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í."; -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["Invalid profile identifier."] = "Identificador invàlid de perfil."; -App::$strings["Profile Visibility Editor"] = "Perfil del Editor de Visibilitat"; -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["\$Projectname channel"] = "Canal de \$Projectname"; -App::$strings["%d rating"] = array( - 0 => "%d valoració", - 1 => "%d valoracions", +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indecís", + 1 => "Indecisos", ); -App::$strings["Gender: "] = "Gènere:"; -App::$strings["Status: "] = "Estatus:"; -App::$strings["Homepage: "] = "Pàgina Personal:"; -App::$strings["Description:"] = "Descripció:"; -App::$strings["Public Forum:"] = "Forum Públic:"; -App::$strings["Keywords: "] = "Paraules Clau:"; -App::$strings["Don't suggest"] = "No suggerir"; -App::$strings["Common connections:"] = "Connexions en comú:"; -App::$strings["Global Directory"] = "Directori Global"; -App::$strings["Local Directory"] = "Directori Local"; -App::$strings["Finding:"] = "Cercant:"; -App::$strings["next page"] = "pàgina següent"; -App::$strings["previous page"] = "pàgina anterior"; -App::$strings["Sort options"] = "Opcions per ordenar"; -App::$strings["Alphabetic"] = "Alfabètic"; -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["Public Sites"] = "Llocs públics"; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Els llocs llistats permeten registrar usuaris de la xarxa \$Projectname. Com que tots els llocs estan enllaçats entre ells, la identitat és vàlida a tota la xarxa. Alguns llocs 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["Rate this hub"] = "Valora aquest hub"; -App::$strings["Site URL"] = "Adreça URL del web"; -App::$strings["Access Type"] = "Tipus d'accés"; -App::$strings["Registration Policy"] = "Condicions de registre"; -App::$strings["Project"] = "Projecte"; -App::$strings["View hub ratings"] = "Mostra la valoració del hub"; -App::$strings["Rate"] = "Puntua"; -App::$strings["View ratings"] = "Mostra les valoracions"; -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["Item not found"] = "No s'ha trobat l'element"; -App::$strings["Delete block?"] = "Eliminar bloc?"; -App::$strings["Insert YouTube video"] = "insereix video YouTube"; -App::$strings["Insert Vorbis [.ogg] video"] = "Insereix video Vorbis [.ogg]"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Insereix audio Vorbis [.ogg]"; -App::$strings["Edit Block"] = "Editar Bloc"; -App::$strings["Delete layout?"] = "Esborrar el disseny?"; -App::$strings["Layout Description (Optional)"] = "Descripció del disseny (opcional)"; -App::$strings["Layout Name"] = "Nom del disseny"; -App::$strings["Edit Layout"] = "Edita el disseny"; -App::$strings["Item is not editable"] = "Article no editable"; -App::$strings["Delete item?"] = "Esborrar ítem"; -App::$strings["Edit post"] = "Modifica l'entrada"; -App::$strings["Unable to find your hub."] = "No es possible trobar el concentrador"; -App::$strings["Post successful."] = "Entrada realitzada amb èxit. "; -App::$strings["Delete webpage?"] = "Esborrar pàgina web?"; -App::$strings["Page link title"] = "Títol de la pàgina enllaçada"; -App::$strings["Edit Webpage"] = "Edita la Pàgina Web"; -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["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["l, F j"] = "I dia j, F"; -App::$strings["Edit event"] = "Edita l'esdeveniment"; -App::$strings["Delete event"] = "Esborra l'esdeveniment"; -App::$strings["calendar"] = "calendari"; -App::$strings["Create New Event"] = "Crea un esdeveniment nou"; -App::$strings["Export"] = "Exporta"; -App::$strings["Import"] = "Importar"; -App::$strings["Event removed"] = "S'ha eliminat l'esdeveniment"; -App::$strings["Failed to remove event"] = "No s'ha pogut esborrar l'esdeveniment"; -App::$strings["Event details"] = "Detalls de l'esdeveniment"; -App::$strings["Starting date and Title are required."] = "La data d'inici i el títol són obligatoris."; -App::$strings["Categories (comma-separated list)"] = "Categories (llista separada per comes)"; -App::$strings["Event Starts:"] = "Inici:"; -App::$strings["Finish date/time is not known or not relevant"] = "La data i hora de final no és coneguda o irrellevant"; -App::$strings["Event Finishes:"] = "Final:"; -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["Title:"] = "Títol:"; -App::$strings["Share this event"] = "Comparteix aquest esdeveniment"; -App::$strings["No ratings"] = "No valorat"; -App::$strings["Ratings"] = "Valoracions"; -App::$strings["Rating: "] = "Valoració:"; -App::$strings["Website: "] = "Lloc web:"; -App::$strings["Description: "] = "Descripció:"; -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["- select -"] = "- selecciona -"; -App::$strings["Permission Denied."] = "Permisos Denegats."; -App::$strings["File not found."] = "Arxiu no torbat."; -App::$strings["Edit file permissions"] = "Edita els permisos d'arxiu"; -App::$strings["Set/edit permissions"] = "Canvia/edita permisos"; -App::$strings["Include all files and sub folders"] = "Inclou tots als arxius i subdirectoris"; -App::$strings["Return to file list"] = "Tornar al llistat d'arxius"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copia/enganxa aquest codi per a adjuntar un arxiu a l'entrada"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/enganxa aquesta URL per a enllaçar l'arxiu d'una pàgina web"; -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"] = "Avisa els teus contactes d'aquest arxiu"; -App::$strings["Channel added."] = "S'ha afegit el canal."; -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 e-correu per a instruccions de validació."; -App::$strings["Your registration is pending approval by the site owner."] = "El teu registre esta pendent de validació pel propietari del lloc."; -App::$strings["Your registration can not be processed."] = "El teu registre no ha pogut ser processat. "; -App::$strings["Registration on this site/hub is by approval only."] = "El registre en aquest lloc/centre es únicament per validació."; -App::$strings["Register at another affiliated site/hub"] = "Registre en altre lloc/centre 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"; -App::$strings["Membership on this site is by invitation only."] = "La pertinença en aquest lloc es per invitació exclusivament."; -App::$strings["Please enter your invitation code"] = "Si et plau, introdueix el teu codi d'invitació"; -App::$strings["Your email address"] = "La teva adreça de correu electrónic"; -App::$strings["Choose a password"] = "Tria una contrasenya"; -App::$strings["Please re-enter your password"] = "Si et plau, re-entra la contrasenya"; -App::$strings["Contact not found."] = "Contacte no trobat."; -App::$strings["Friend suggestion sent."] = "Suggeriment d'amistat enviada."; -App::$strings["Suggest Friends"] = "Amics Suggerits"; -App::$strings["Suggest a friend for %s"] = "Suggereix un amic per a %s"; -App::$strings["Please login."] = "Inicia Sessió."; -App::$strings["Collection created."] = "Creada una col·lecció"; -App::$strings["Could not create collection."] = "No puc crear la col·lecció."; -App::$strings["Collection updated."] = "Col·lecció actualitzada."; -App::$strings["Create a collection of channels."] = "Creada una col·lecció de canals."; -App::$strings["Collection Name: "] = "Nom de la Col·lecció:"; -App::$strings["Members are visible to other channels"] = "Els membres son visibles en altres canals"; -App::$strings["Collection removed."] = "Col·lecció esborrada."; -App::$strings["Unable to remove collection."] = "Incapaç d'esborrar la col·lecció."; -App::$strings["Collection Editor"] = "Editor de Col·leccions"; -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"; -App::$strings["WARNING: "] = "ALERTA:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Aquest compte i tots els seus canals s'estan apunt d'esborrar totalment de la xarxa."; -App::$strings["This action is permanent and can not be undone!"] = "Aquesta acció és irreversible!"; -App::$strings["Please enter your password for verification:"] = "Aquesta acció requereix tornar a introduir la contrasenya:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Esborra de la xarxa aquest compte, tots els seus canals, i tots els seus canals clons."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Per defecte, només les instancies dels canal ubicats en aquest concentrador poden esser esborrades de la xarxa"; -App::$strings["Remove Account"] = "Esborra el Compte"; -App::$strings["Help:"] = "Ajuda:"; -App::$strings["Not Found"] = "No s'ha pogut trobar la pàgina"; -App::$strings["\$Projectname Documentation"] = "Documentació de \$Projectname"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "L'esborrat de canals no està permès fins que transcorren 48 hores des de l'últim canvi de contrasenya."; -App::$strings["Remove This Channel"] = "Elimina Aquest Canal"; -App::$strings["This channel will be completely removed from the network. "] = "Aquest canal serà completament eliminat de la xarxa."; -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 concentrador pot esser esborrat de la xarxa"; -App::$strings["Remove Channel"] = "Elimina el canal"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Benvingut a %s"; -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["First Name"] = "Nom"; -App::$strings["Last Name"] = "Cognoms"; -App::$strings["Nickname"] = "Àlies"; -App::$strings["Full Name"] = "Nom Sencer"; -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["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["%s element installed"] = "%s element instal·lat"; -App::$strings["%s element installation failed"] = "%s instal·lació d'element va fallar"; -App::$strings["Items tagged with: %s"] = "Elements etiquetats amb: %s"; -App::$strings["Search results for: %s"] = "Resultats de cerca per: %s"; -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"; -App::$strings["Imported file is empty."] = "El fitxer importat està buit."; -App::$strings["The data provided is not compatible with this project."] = "Les dades subministrades no son compatibles amb aquest projecte."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atenció: Les versions de la Base de Dades difereixen en %1\$d actualitzacions."; +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["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["%1\$s's bookmarks"] = "marcadors de %1\$s"; +App::$strings["Unable to import a removed channel."] = "No s'ha pogut importar un canal esborrat."; 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["Cloned channel not found. Import failed."] = "No s'ha pogut importar el canal perquè el canal clonat no s'ha trobat."; -App::$strings["You must be logged in to use this feature."] = "Has d'estar registrat per fer servir aquesta funcionalitat."; -App::$strings["Import Channel"] = "Importa un canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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ó"; -App::$strings["File to Upload"] = "Fitxer a pujar"; -App::$strings["Or provide the old server/hub details"] = "O proveeix els detalls de l'antic servidor/concentrador"; -App::$strings["Your old identity address (xyz@example.com)"] = "La teva adreça de canal antiga. El format és canal@exemple.org"; -App::$strings["Your old login email address"] = "La teva adreça de correu electrònic antiga"; -App::$strings["Your old login password"] = "La teva contrasenya antiga"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Per a qualsevol de les opcions, escull si vols fer primària l'adreça d'aquest hub 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."; -App::$strings["Make this hub my primary location"] = "Fes d'aquest hub 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["No service class restrictions found."] = "No s'han trobat restriccions de clase."; -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 Red"] = "Si us plau, uneix-te a Red"; -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["prev"] = "prev"; +App::$strings["first"] = "primer"; +App::$strings["last"] = "últim"; +App::$strings["next"] = "pròxim"; +App::$strings["older"] = "el més antic"; +App::$strings["newer"] = "El més nou"; +App::$strings["No connections"] = "Sense Connexions"; +App::$strings["View all %s connections"] = "Veure totes les connexions de %s"; +App::$strings["Network: %s"] = "Xarxa: %s"; +App::$strings["poke"] = "esperona"; +App::$strings["ping"] = "coloca"; +App::$strings["pinged"] = "colocat"; +App::$strings["prod"] = "picar"; +App::$strings["prodded"] = "picat"; +App::$strings["slap"] = "bufetada"; +App::$strings["slapped"] = "bufetejat"; +App::$strings["finger"] = "senyal"; +App::$strings["fingered"] = "senyalat"; +App::$strings["rebuff"] = "menyspreu"; +App::$strings["rebuffed"] = "menyspreuat"; +App::$strings["happy"] = "feliç"; +App::$strings["sad"] = "trist"; +App::$strings["mellow"] = "melós"; +App::$strings["tired"] = "cansat"; +App::$strings["perky"] = "turgent"; +App::$strings["angry"] = "enfadat"; +App::$strings["stupefied"] = "estupefacte"; +App::$strings["puzzled"] = "perplexe"; +App::$strings["interested"] = "Interessat"; +App::$strings["bitter"] = "amargat"; +App::$strings["cheerful"] = "feliç"; +App::$strings["alive"] = "viu"; +App::$strings["annoyed"] = "molest"; +App::$strings["anxious"] = "ansiós"; +App::$strings["cranky"] = "malagaitós"; +App::$strings["disturbed"] = "transtornat"; +App::$strings["frustrated"] = "frustrat"; +App::$strings["depressed"] = "deprimit"; +App::$strings["motivated"] = "motivat"; +App::$strings["relaxed"] = "relaxat"; +App::$strings["surprised"] = "sorprès"; +App::$strings["Monday"] = "Dilluns"; +App::$strings["Tuesday"] = "Dimarts"; +App::$strings["Wednesday"] = "Dimecres"; +App::$strings["Thursday"] = "Dijous"; +App::$strings["Friday"] = "Divendres"; +App::$strings["Saturday"] = "Dissabte"; +App::$strings["Sunday"] = "Diumenge"; +App::$strings["January"] = "Gener"; +App::$strings["February"] = "Febrer"; +App::$strings["March"] = "Març"; +App::$strings["April"] = "Abril"; +App::$strings["May"] = "Maig"; +App::$strings["June"] = "Juny"; +App::$strings["July"] = "Juliol"; +App::$strings["August"] = "Agost"; +App::$strings["September"] = "Setembre"; +App::$strings["October"] = "Octubre"; +App::$strings["November"] = "Novembre"; +App::$strings["December"] = "Desembre"; +App::$strings["Unknown Attachment"] = "Adjunt Desconegut"; +App::$strings["unknown"] = "desconegut"; +App::$strings["remove category"] = "elimina categoria"; +App::$strings["remove from file"] = "elimina del arxiu"; +App::$strings["Download binary/encrypted content"] = "Descarrega el binari o contingut xifrat"; +App::$strings["default"] = "per defecte"; +App::$strings["Page layout"] = "Disseny de pàgina"; +App::$strings["You can create your own with the layouts tool"] = "Pots crear el teu propi amb l'editor de dissenys de pàgina."; +App::$strings["HTML"] = "HTML"; +App::$strings["Comanche Layout"] = "Disseny Comanche"; +App::$strings["PHP"] = "PHP"; +App::$strings["Page content type"] = "Tipus de contingut de la pàgina"; +App::$strings["activity"] = "activitat"; +App::$strings["a-z, 0-9, -, and _ only"] = "només caràcters alfanumèrics en minúscula (a-z, 0-9), guió (-) i guió baix (_)"; +App::$strings["Design Tools"] = "Eines de disseny"; +App::$strings["Pages"] = "Pàgines"; +App::$strings["Import website..."] = "Importa un lloc web"; +App::$strings["Select folder to import"] = "Escull la carpeta a on importar"; +App::$strings["Import from a zipped folder:"] = "Importa des d'una carpeta comprimida:"; +App::$strings["Import from cloud files:"] = "Importa des de fitxers penjats a un núvol:"; +App::$strings["/cloud/channel/path/to/folder"] = "/núvol/canal/ruta/a/la/carpeta"; +App::$strings["Enter path to website files"] = "Introdueix la ruta als arxius de la web"; +App::$strings["Select folder"] = "Escull la carpeta"; +App::$strings["Export website..."] = "Exporta un lloc web"; +App::$strings["Export to a zip file"] = "Exporta a una carpeta comprimida"; +App::$strings["website.zip"] = "lloc-web.zip"; +App::$strings["Enter a name for the zip file."] = "Introdueix un nom per al fitxer comprimit."; +App::$strings["Export to cloud files"] = "Exporta a arxius de núvol"; +App::$strings["/path/to/export/folder"] = "/ruta/a/la/carpeta/exportació"; +App::$strings["Enter a path to a cloud files destination."] = "Introdueix la ruta dels fitxers de núvol de destí."; +App::$strings["Specify folder"] = "Escull una carpeta"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitació disponible", + 1 => "%d invitacions disponibles", ); -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["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: "] = "Has de proporcionar aquest codi d'invitació:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registre en qualsevol lloc del \$Projectname (estàn tots interconnectats)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Entra a la meva adreça de xarxa al \$Projectname, a la barra de cerca del lloc."; -App::$strings["or visit "] = "o visita"; -App::$strings["3. Click [Connect]"] = "3. Click [Conectar]"; -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["Diaspora Policy Settings updated."] = "Actualitzats els Ajustos de Política de Diaspora."; -App::$strings["Passwords do not match. Password unchanged."] = "Les contrasenyes no coincideixen. Contrasenya sense canvis."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Les contrasenyes en blanc no estan permesas. Contrasenya sense canvis."; -App::$strings["Password changed."] = "Contrasenya canviada."; -App::$strings["Password update failed. Please try again."] = "L'actualització de la contrasenya va fallar. Si us plau, torneu a intentar-ho."; -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."; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Add application"] = "Afegir aplicatiu"; -App::$strings["Name of application"] = "Nom de l'aplicatiu"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generat automàticament- Canvia-ho si ho vols. Max. longitud 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirecciona"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI redirigida - No canviar excepte perquè el teu aplicatiu ho requereixi."; -App::$strings["Icon url"] = "Icona de url"; -App::$strings["Optional"] = "Opcional"; -App::$strings["You can't edit this application."] = "No pots editar aquest aplicatiu."; -App::$strings["Connected Apps"] = "Aplicatius Conectats"; -App::$strings["Client key starts with"] = "La clau del client comença amb"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Elimina autorització"; -App::$strings["No feature settings configured"] = "No hi ha opcions de les funcions configurades"; -App::$strings["Feature/Addon Settings"] = "Ajustos de Característica/Afegit"; -App::$strings["Settings for the built-in Diaspora emulator"] = "Ajustos pel emulador de Diaspora incorporat"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permetre que cualsevol membre de Diaspora pugui comentar les teves entrades públiques"; -App::$strings["Enable the Diaspora protocol for this channel"] = "Activa el protocol Diaspora en aquest canal"; -App::$strings["Diaspora Policy Settings"] = "Política d'Ajustos de Diaspora"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Evita que els teus hashtags puguin ser redirigits a altres llocs"; -App::$strings["Account Settings"] = "Ajustos de Compte"; -App::$strings["Enter New Password:"] = "Entra la Nova Contrasenya"; -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 volguis 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["Off"] = "Apagat"; -App::$strings["On"] = "Funcionant"; -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"; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Ajustos de Pantalla"; -App::$strings["Theme Settings"] = "Ajustos de Tema"; -App::$strings["Custom Theme Settings"] = "Ajustos Personals de Tema"; -App::$strings["Content Settings"] = "Ajustos de Contingut"; -App::$strings["Display Theme:"] = "Ajustos de Tema:"; -App::$strings["Mobile Theme:"] = "Tema Mòbil:"; -App::$strings["Enable user zoom on mobile devices"] = "Zoom d'usuari en dispositius mòbils"; -App::$strings["Update browser every xx seconds"] = "Actualitza el navegador cada xx segons"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínim de 10 segons, sense màxim"; -App::$strings["Maximum number of conversations to load at any time:"] = "Nombre màxim de conversacions a càrregar cada vegada"; -App::$strings["Maximum of 100 items"] = "Màxim de 100 elements"; -App::$strings["Show emoticons (smilies) as images"] = "Mostra emoticons (smilies) com a imatges"; -App::$strings["Link post titles to source"] = "Enllaça a l'origen els títols de l'entrada"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de disseny de pàgina - (avançat)"; -App::$strings["Use blog/list mode on channel page"] = "Empra el mode blog/llista a la pàgina del canal"; -App::$strings["(comments displayed separately)"] = "(Observacions es mostren per separat)"; -App::$strings["Use blog/list mode on matrix page"] = "Empra mode blog/llista a la pàgina de matrix"; -App::$strings["Channel page max height of content (in pixels)"] = "Alçada màxima de contingut (en píxels) de la pàgina de Canal"; -App::$strings["click to expand content exceeding this height"] = "Clic per expandir el contingut que excedeixi aquesta alçada"; -App::$strings["Matrix page max height of content (in pixels)"] = "Alçada màxima del contingut (en píxels) de la pàgina Matrix"; -App::$strings["Nobody except yourself"] = "Ningú excepte tú"; -App::$strings["Only those you specifically allow"] = "Només allò que específicament permetis"; -App::$strings["Approved connections"] = "Connexions aprovades"; -App::$strings["Any connections"] = "Qualsevol connexió"; -App::$strings["Anybody on this website"] = "Qualsevol en aquest lloc"; -App::$strings["Anybody in this network"] = "Qualsevol en aquesta xarxa"; -App::$strings["Anybody authenticated"] = "Qualsevol autenticat"; -App::$strings["Anybody on the internet"] = "Qualsevol a internet"; -App::$strings["Publish your default profile in the network directory"] = "Publica el teu perfil per defecte al directori de la xarxa"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Ens permets suggerir-te com a potencial amic als nous membres?"; -App::$strings["Your channel address is"] = "La teva direcció del canal es"; -App::$strings["Channel Settings"] = "Ajustos del Canal"; -App::$strings["Basic Settings"] = "Ajustos Bàsics"; -App::$strings["Your Timezone:"] = "La teva Franja Horària"; -App::$strings["Default Post Location:"] = "Localització Predeterminada de les Entrades:"; -App::$strings["Geographical location to display on your posts"] = "Posició geogràfica a mostrar a les teves entrades"; -App::$strings["Use Browser Location:"] = "Empra la Localització del Navegador:"; -App::$strings["Adult Content"] = "Contingut per a Adults"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Aquest canal publica freqúentment o amb regularitat contingut per a adults. (Si us plau, etiqueti qualsevol material per a adults amb #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Ajustos de Seguretat i Privacitat"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Els teus permisos estan configurats. Clic per veure/ajustar"; -App::$strings["Hide my online presence"] = "Amaga la meva presencia en línia"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evita mostrar en el teu perfil, que estàs en línia"; -App::$strings["Simple Privacy Settings:"] = "Ajustos simples de privacitat:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Molt públic - extremadament permissiu (s'ha d'anar en compte)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normal - públic per defecte, privat quan es desitgi (similar als permisos de xarxa social, però amb millor privacitat)"; -App::$strings["Private - default private, never open or public"] = "Privat - privat per defecte, mai públic o obert"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloquejat - tothom bloquejat per defecte"; -App::$strings["Allow others to tag your posts"] = "Permet a altres etiquetar les teves entrades"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Sovint emprat per la comunitat per marcar retroactivament contingut inapropiat"; -App::$strings["Advanced Privacy Settings"] = "Ajustos avançats de privacitat"; -App::$strings["Expire other channel content after this many days"] = "El contingut d'altes canals caduca després d'aquests dies"; -App::$strings["0 or blank prevents expiration"] = "0 o vuit evita caducitat"; -App::$strings["Maximum Friend Requests/Day:"] = "Nombre màxim de peticions d'amistat per dia"; -App::$strings["May reduce spam activity"] = "Pot reduir l'SPAM"; -App::$strings["Default Post Permissions"] = "Permisos de publicació per defecte"; -App::$strings["(click to open/close)"] = "(clica per obrir/tancar)"; -App::$strings["Channel permissions category:"] = "Categoria de permisos de canal:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Nombre màxim de missatges privats de desconeguts al dia:"; -App::$strings["Useful to reduce spamming"] = "Útil per a reduir l'spam"; -App::$strings["Notification Settings"] = "Ajustos de notificacions"; -App::$strings["By default post a status message when:"] = "Per defecte envia un missatge d'estat quan:"; -App::$strings["accepting a friend request"] = "Acceptar una sol·licitud d'amistat"; -App::$strings["joining a forum/community"] = "Apuntar-se a un fòrum o comunitat"; -App::$strings["making an interesting profile change"] = "faci un canvi interesant al perfil"; -App::$strings["Send a notification email when:"] = "Notifica per correu quan:"; -App::$strings["You receive a connection request"] = "Rebi una petició de connexió"; -App::$strings["Your connections are confirmed"] = "Es confirma una connexió"; -App::$strings["Someone writes on your profile wall"] = "Algú ha escrit al mur del teu perfil"; -App::$strings["Someone writes a followup comment"] = "Algú ha escrit un comentari de resposta"; -App::$strings["You receive a private message"] = "Rebi un missatge privat"; -App::$strings["You receive a friend suggestion"] = "Rebi una suggerència d'amistat"; -App::$strings["You are tagged in a post"] = "Estàs etiquetat a l'entrada"; -App::$strings["You are poked/prodded/etc. in a post"] = "S'enfoten/te piquen/etc. en una entrada"; -App::$strings["Show visual notifications including:"] = "Mostra notificacion visuals, com ara:"; -App::$strings["Unseen matrix activity"] = "Activitat no vista a la xarxa"; -App::$strings["Unseen channel activity"] = "Activitat no vista del canal"; -App::$strings["Unseen private messages"] = "Missatges privats no llegits"; -App::$strings["Recommended"] = "Recomanat"; -App::$strings["Upcoming events"] = "Esdeveniments propers"; -App::$strings["Events today"] = "Esdeveniments d'avui"; -App::$strings["Upcoming birthdays"] = "Aniversaris propers"; -App::$strings["Not available in all themes"] = "No està disponible en tots els temes"; -App::$strings["System (personal) notifications"] = "Notificacions (personals) de sistema"; -App::$strings["System info messages"] = "Missatges d'informació del sistema"; -App::$strings["System critical alerts"] = "Alertes crítiques del sistema"; -App::$strings["New connections"] = "Noves connexions"; -App::$strings["System Registrations"] = "Registres del sistema"; -App::$strings["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"; -App::$strings["Advanced Account/Page Type Settings"] = "Ajustos avançats de compte i tipus de pàgina"; -App::$strings["Change the behaviour of this account for special situations"] = "Modifica el comportament d'aquest compte en situacions especials"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Activa el mode d'expert (a Ajustos > Més funcions)"; -App::$strings["Miscellaneous Settings"] = "Ajustos diversos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal per mostrar en les teves pàgines de canal"; -App::$strings["Remove this channel."] = "Elimina aquest canal."; -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."; -App::$strings["System error. Post not saved."] = "Hi ha hagut un error del sistema. L'entrada no s'ha desat."; -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["\$Projectname Server - Setup"] = "Servidor \$Projectname - Configuració"; -App::$strings["Could not connect to database."] = "No puc connectar amb la base de dades"; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No s'ha pogut connectar a l'URL del lloc especificat. Possible problema amb el certificat SSL o de DNS."; -App::$strings["Could not create table."] = "No puc crear la taula."; -App::$strings["Your site database has been installed."] = "La teva base de dades del lloc s'ha instal·lat."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podria ser necessari importar el fitxer \"install / schema_xxx.sql\" manualment utilitzant un client de base de dades."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Si us plau, consulteu el fitxer \"install / INSTALL.txt\"."; -App::$strings["System check"] = "Comprovació del sistema"; -App::$strings["Check again"] = "Comprova de nou"; -App::$strings["Database connection"] = "Connexió de base de dades"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per tal d'instaŀlar \$Projectname cal configurar la connexió a la base de dades."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Si us plau, poseu-vos en contacte amb el proveïdor de serveis o administrador del lloc si vostè té preguntes sobre aquests paràmetres."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de dades s'especifica a continuació ja ha d'existir. Si no és així, si us plau crear-la abans de continuar."; -App::$strings["Database Server Name"] = "Base de Dades Nom del Servidor"; -App::$strings["Default is localhost"] = "Per defecte es localhost"; -App::$strings["Database Port"] = "Port per a la Base de Dades"; -App::$strings["Communication port number - use 0 for default"] = "Numero del port de comunicacions - empra 0 per defecte"; -App::$strings["Database Login Name"] = "Base de Dades Nom d'Accès"; -App::$strings["Database Login Password"] = "Base de Dades Contrasenya d'Accès"; -App::$strings["Database Name"] = "Nom de la Base de Dades"; -App::$strings["Database Type"] = "Tipus de Base de Dades"; -App::$strings["Site administrator email address"] = "Adreça de correu de l'administrador del lloc"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "El teu compte de email ha de coincidir amb això per poder emprar el panel web d'administrador."; -App::$strings["Website URL"] = "URL del lloc web"; -App::$strings["Please use SSL (https) URL if available."] = "Si us plau, empra SSL (https) URL si està disponible."; -App::$strings["Please select a default timezone for your website"] = "Si us plau, tria la zona horària del teu lloc web"; -App::$strings["Site settings"] = "Ajustos del lloc"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No s'ha pogut trobar una versió de línia d'ordres del PHP en el PATH del servidor 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."] = "Si vostè no té una versió de línia d'ordres del PHP instal·lada al servidor, vostè no serà capaç d'executar sondejos en segon pla via cron."; -App::$strings["PHP executable path"] = "Camí cap l'executable de PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introdueix el camí cap l'executable de php. Pots deixa-ho en blanc i continuar l'instal·lació."; -App::$strings["Command line PHP"] = "Línia d'ordres de PHP"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versió de línia d'ordres de PHP al teu sistema no te el \"register_argc_argv\" activat."; -App::$strings["This is required for message delivery to work."] = "Això es requereix per que funcioni l'entrega de missatges."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La mida màxima que se't permet pujar està establerta en %s. La mida màxima per arxiu pujat es de %s. Se't permet pujar fins a %d arxius d'una vegada."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Pots ajustar aquests valors a l'arxiu php.ini del servidor"; -App::$strings["PHP upload limits"] = "Límits de pujada de PHP"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: la funció \"openssl_pkey_new\" en aquest sistema no es capaç de generar claus d'encriptació"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si esta funcionant sota Windows, per favor, miri \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claus de xifrat"; -App::$strings["libCurl PHP module"] = "mòdul PHP libCurl "; -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."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: es requereix proc_open però o no està instal·lat o ha estat desactivat a php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: el mòdul PHP libCURL es requereix però no està instal·lat."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el mòdul PHP GD graphics amb support JPEG es requereix però no està instal·lat."; -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ó."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "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."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Aquest procés és opcional. Per a fer una instaŀlació manual consulta les instruccions a «install/INSTALL.txt\"."; -App::$strings[".htconfig.php is writable"] = "L'arxiu «.htconfig.php» es pot modificar"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red fa servir el motor de plantilles Smarty3 per a renderitzar les vistes més ràpidament."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Per tal de guardar aquestes plantilles compilades, el servidor web necessita tenir premis d'escriptura en el directori %s sota la carpeta principal de Red."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Comprova que l'usuari que executa el servidor (www-data en Apache) té permisos d'escriptura en aquesta carpeta."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota: com a mesura de seguretat l'usuari del servidor web ha de tenir accés d'escriptura només a %s, i no a les plantilles (.tpl) que conté."; -App::$strings["%s is writable"] = "Es pot escriure a %s"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red fa servir la carpeta «store» per a desar els fitxers pujats. Per tant, el servidor web necessita tenir permís d'escriptura en aquesta carpeta, que està a l'arrel del servidor web."; -App::$strings["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!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "El motiu d'aquesta restricció és que les teves entrades públiques poden contenir referències a imatges del teu propi hub."; -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["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»"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "S'han produït errors mentre es creaven taules a la base de dades."; -App::$strings["

What next

"] = "

I ara què?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT! Cal que configuris manualment una execució periòdica del \"poller\"."; -App::$strings["Comanche page description language help"] = "Pgina d'ajuda del llenguatge Comanche"; -App::$strings["Layout Description"] = "Descripció del disseny"; -App::$strings["Download PDL file"] = "Descarrega l'arxiu PDL"; -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["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["thing"] = "cosa"; -App::$strings["Channel unavailable."] = "El canal està inactiu."; -App::$strings["Previous action reversed."] = "S'ha desfet l'acció anterior."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s està a favor de %3\$s de %2\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s està en contra de %3\$s de %2\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s ha votat en blanc 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["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 hub 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["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 emisions"; -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["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["Primary location cannot be removed."] = "La ubicació primària no es pot treure."; -App::$strings["No locations found."] = "No es troben els llocs."; -App::$strings["Manage Channel Locations"] = "Gestionar Ubicacions de Canal"; -App::$strings["Location (address)"] = "Ubicació (direcció)"; -App::$strings["Primary Location"] = "Ubicació Primària"; -App::$strings["Drop location"] = "Treure la ubicació"; -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."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Gestiona contingut per al teu canal d'origens remots"; -App::$strings["New Source"] = "Nou Origen"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar tot o sel·lecciona contingut dels següents canals, en aquest canal i distribueix-lo d'acord als teus ajustos de canals."; -App::$strings["Only import content with these words (one per line)"] = "Només importa contingut amb aquestes paraules (una per línia)"; -App::$strings["Leave blank to import all public content"] = "Deixar en blanc per importar tot el contingut públic"; -App::$strings["Channel Name"] = "Nom del canal"; -App::$strings["Source not found."] = "No s'ha trobat la font."; -App::$strings["Edit Source"] = "Edita la font"; -App::$strings["Delete Source"] = "Esborra la font"; -App::$strings["Source removed"] = "S'ha esborrat la font"; -App::$strings["Unable to remove source."] = "No s'ha pogut esborrar la font."; -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["Drop"] = "Menysprea"; -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["Conversation removed."] = "Conversació eliminada."; -App::$strings["No messages."] = "Sense missatges."; -App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -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["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["%1\$s is following %2\$s's %3\$s"] = "%1\$s esta seguint %2\$s de %3\$s"; -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 suggestions available. If this is a new site, please try again in 24 hours."] = "No hi ha suggerencies. Si es un lloc nou, espera 24 hores i proba de nou."; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetat %3\$s de %2\$s amb %4\$s"; -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["No such group"] = "No existeix el grup"; -App::$strings["No such channel"] = "No existeix el canal"; -App::$strings["Search Results For:"] = "Cerca resultats per:"; -App::$strings["Collection is empty"] = "La coŀlecció és buida"; -App::$strings["Collection: "] = "Coŀlecció:"; -App::$strings["Connection: "] = "Connexió:"; -App::$strings["Invalid connection."] = "La connexió és invàlida."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocol OpenID. No ha retornat ID"; -App::$strings["Add a Channel"] = "Afegeix un Canal"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal es la teva pròpia col·lecció de pàgines web. Un canal pot emprat per mantenir perfils a una xarxa social, blocs, grups de conversació, fòrums, pàgines de famosos, i molt més. Pots crear tants canals com el teu servei d'internet et permeti."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples: \"Joan Tou\", \"Manel i els seus esquirols\", \"Fútbol\", \"Grup de Gegants\""; -App::$strings["Choose a short nickname"] = "Tria un àlies curt"; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "El teu àlies es pot emprar per crear un canal fàcilment memoritzatble (com una adreça de correu electrònic) que pot ser compartit amb altres."; -App::$strings["Or import an existing channel from another location"] = "O importa un canal existent d'un altre lloc"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Tria un tipus de canal (com a xarxa social o fòrum comunitari) i els requisits de privacitat, així podem proposar el que te el permisos més adients."; -App::$strings["Channel Type"] = "tipus de Canal"; -App::$strings["Read more about roles"] = "Llegeix més sobre els rols"; -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 a un fitxer dades bàsiques del canal. Serveix com a còpia de seguretat de les teves connexions, permisos, perfil però no de contingut, i es pot usar per importar-ho a un nou servidor. "; -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ó i contingut recent del teu canal a un fitxer JSON. Aquesta còpia de seguretat pot ser restablerta a un altre hub o a aquest mateix. Conté totes les teves connexions, permisos, dades de perfil i diversos mesos d'entrades, així que pot resultar molt gran. Per això, poden passar uns quants minuts fins que la descàrrega s'iniciï."; -App::$strings["Export your posts from a given year or month:"] = "Exporta les teves entrades d'un any o mes determinats:"; -App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "També pots exportar les teves entrades i converses dins d'un any o mes en particualr. Fes clic a un mes o any d'aquí sota."; +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["Common Connections"] = "Connexions en comú"; +App::$strings["View all %d common connections"] = "Mostra totes les connexions en comú amb %d"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s va escriure el següent %2\$s %3\$s"; +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["Premium channel - please visit:"] = "Canal prèmium - ves a:"; +App::$strings["Channel was deleted and no longer exists."] = "El canal fou esborrat i actualment no existeix."; +App::$strings["Remote channel or protocol unavailable."] = "El canal remot o el protocol no estan disponibles."; +App::$strings["Channel discovery failed."] = "Descobriment de canal fallit."; +App::$strings["Protocol disabled."] = "Protocol desactivat."; +App::$strings["Cannot connect to yourself."] = "No pots connectar amb tu mateix."; +App::$strings["Delete this item?"] = "Esborrar aquest item?"; +App::$strings["%s show less"] = "%smostra'n menys"; +App::$strings["%s expand"] = "%sdesplega"; +App::$strings["%s collapse"] = "%splega"; +App::$strings["Password too short"] = "Contrasenya massa curta"; +App::$strings["Passwords do not match"] = "Les paraules de pas no coincideixen"; +App::$strings["everybody"] = "tothom"; +App::$strings["Secret Passphrase"] = "Contrasenya Secreta"; +App::$strings["Passphrase hint"] = "Pista per la Contrasenya"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Avis: Els permisos han canviat però encara no han estat enviats."; +App::$strings["close all"] = "tanca tot"; +App::$strings["Nothing new here"] = "Res de nou per aquí"; +App::$strings["Rate This Channel (this is public)"] = "Valora Aquest Canal (això es farà públic)"; +App::$strings["Describe (optional)"] = "Descriu (opcional)"; +App::$strings["Please enter a link URL"] = "Si us plau, entra l'enllaç URL"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Hi ha canvis sense desar, estàs segur que vols abandonar la pàgina?"; +App::$strings["lovely"] = "encantador/a"; +App::$strings["wonderful"] = "meravellós/a"; +App::$strings["fantastic"] = "fantàstic/a"; +App::$strings["great"] = "genial"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "El nom que has escollit o bé ja està agafat o bé no és vàlid. Pots fer servir la suggerència ("; +App::$strings[") or enter a new one."] = ") o provar amb un altre nom."; +App::$strings["Thank you, this nickname is valid."] = "El nom que has triat és vàlid."; +App::$strings["A channel name is required."] = "Cal un nom de canal."; +App::$strings["This is a "] = "Això és un"; +App::$strings[" channel name"] = "nom del canal"; +App::$strings["timeago.prefixAgo"] = "fa"; +App::$strings["timeago.prefixFromNow"] = "d'aquí a"; +App::$strings["timeago.suffixAgo"] = "NONE"; +App::$strings["timeago.suffixFromNow"] = " NONE"; +App::$strings["less than a minute"] = "uns segons"; +App::$strings["about a minute"] = "prop d'un minut"; +App::$strings["%d minutes"] = "%d minuts"; +App::$strings["about an hour"] = "prop d'una hora"; +App::$strings["about %d hours"] = "unes %d hores"; +App::$strings["a day"] = "un dia"; +App::$strings["%d days"] = "%d dies"; +App::$strings["about a month"] = "prop d'un mes"; +App::$strings["%d months"] = "%d mesos"; +App::$strings["about a year"] = "prop d'un any"; +App::$strings["%d years"] = "%d anys"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "maig"; App::$strings["Jan"] = "gen."; -App::$strings["Feb"] = "febr."; +App::$strings["Feb"] = "feb."; App::$strings["Mar"] = "març"; App::$strings["Apr"] = "abr."; +App::$strings["__ctx:short__ May"] = "maig"; App::$strings["Jun"] = "juny"; App::$strings["Jul"] = "jul."; App::$strings["Aug"] = "ag."; @@ -2073,96 +3026,331 @@ App::$strings["Sep"] = "set."; App::$strings["Oct"] = "oct."; App::$strings["Nov"] = "nov."; App::$strings["Dec"] = "des."; -App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "En cas que falli l'exportació, prova-ho de nou demanant un interval de dates més curt. El servidor del hub podria haver fet curt de memòria RAM."; -App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; %1\$s/2013 or the month September 2013; %1\$s/2013/9"] = "O bé ajusta la data de la barra de localització per escollir unes altres dates. Per exemple, l'any 2013; %1\$s/2013 o el setembre de 2013; %1\$s/2013/9"; -App::$strings["Please visit"] = "Visita"; -App::$strings["on another hub to import the backup files(s)."] = "en un altre hub per tal de restablir la/es còpia/es de seguretat."; -App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "És recomanable clonar el canal en el hub nou abans d'importar la/es còpia/es de seguretat del mateix canal. Importar una còpia de seguretat d'un canal des d'un altre canal donarà problemes de permisos. Si n'hi ha més d'una, també cal importar les còpies en ordre cronològic, de més antic a més nou."; -App::$strings["[Embedded content - reload page to view]"] = "[Contingut embegut - recarrega la pàgina per veure-ho]"; -App::$strings["No connections."] = "Sense connexions."; -App::$strings["Visit %s's profile [%s]"] = "Visita el perfil [%s] de %s"; -App::$strings["Source of Item"] = "Origen de l'article"; -App::$strings["Total votes"] = "Vots totals"; -App::$strings["Average Rating"] = "Valoració mitjana"; -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["Sun"] = "dg."; +App::$strings["Mon"] = "dl."; +App::$strings["Tue"] = "dm."; +App::$strings["Wed"] = "dc."; +App::$strings["Thu"] = "dj."; +App::$strings["Fri"] = "dv."; +App::$strings["Sat"] = "ds."; +App::$strings["__ctx:calendar__ today"] = "avui"; +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["Unable to determine sender."] = "incapaç de determinar el remitent"; +App::$strings["No recipient provided."] = "No s'ha proporcionat bústia."; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Stored post could not be verified."] = "L'entrada guardada no pot ser verificada"; +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["Item was not found."] = "Article no trobat."; +App::$strings["Unknown error."] = "Error desconegut."; +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["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 de privacitat està buit."; +App::$strings["Privacy group: %s"] = "Grup de privacitat: %s"; +App::$strings["Connection not found."] = "Connexió no trobada."; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["[Edited %s]"] = "[S'ha editat %s]"; +App::$strings["__ctx:edit_activity__ Post"] = "Entrada"; +App::$strings["__ctx:edit_activity__ Comment"] = "Comentari"; +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["Unable to retrieve created identity"] = "No es pot recuperar la identitat creada"; +App::$strings["Default Profile"] = "Perfil per Defecte"; +App::$strings["Unable to retrieve modified identity"] = "No s'ha pogut carregar la identitat modificada"; +App::$strings["Create New Profile"] = "Crear un Perfil Nou"; +App::$strings["Visible to everybody"] = "Visible per tothom"; +App::$strings["Gender:"] = "Gènere:"; +App::$strings["Homepage:"] = "Pàgina Personal:"; +App::$strings["Online Now"] = "Ara en Linia"; +App::$strings["Change your profile photo"] = "Canvia la foto de peril"; +App::$strings["Trans"] = "Trans"; +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["Tags:"] = "Etiquetes:"; +App::$strings["Sexual Preference:"] = "Preferència Sexual:"; +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["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["Home, Voice"] = "Casa, veu"; +App::$strings["Home, Fax"] = "Casa, fax"; +App::$strings["Work, Voice"] = "Feina, veu"; +App::$strings["Work, Fax"] = "Feina, fax"; +App::$strings["view full size"] = "Veure a mida competa"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Select an alternate language"] = "Tria un idioma alternatiu"; +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["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["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/photo"] = "Imatge/foto"; +App::$strings["Encrypted content"] = "Contingut encriptat"; +App::$strings["Install %1\$s element %2\$s"] = "Instaŀla l'element %2\$s del tipus %1\$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["card"] = "targeta"; +App::$strings["article"] = "article"; +App::$strings["Click to open/close"] = "Clic per obrir/tancar"; +App::$strings["spoiler"] = "xafa guitarres"; +App::$strings["View article"] = "Mostra l'article"; +App::$strings["View summary"] = "Mostra'n un resum"; +App::$strings["$1 wrote:"] = "$1 va escriure:"; +App::$strings["View PDF"] = "Mostra el pdf"; +App::$strings[" by "] = "de"; +App::$strings[" on "] = "a"; +App::$strings["Embedded content"] = "Contingut embegut"; +App::$strings["Embedding disabled"] = "Incorporació desactivada"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s dóna la benvinguda a %2\$s"; +App::$strings["General Features"] = "Característiques Generals"; +App::$strings["Display new member quick links menu"] = "Mostra el menú d'enllaços ràpids per a nous membres"; +App::$strings["Advanced Profiles"] = "Perfils Avançats"; +App::$strings["Additional profile sections and selections"] = "Seccions i seleccions addicionals de perfils "; +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"] = "Proporciona una wiki per al teu canal"; +App::$strings["Private Notes"] = "Notes Privades"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Activa l'eina per guardar notes i recordatoris (nota:no està encriptat)"; +App::$strings["Create personal planning cards"] = "Crea targetes de planificació personal"; +App::$strings["Create interactive articles"] = "Crea articles interactius"; +App::$strings["Navigation Channel Select"] = "Navegació pel Selector de Canals"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Canvieu els canals directament des del menú desplegable de navegació"; +App::$strings["Photo Location"] = "Ubicació de la Foto"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si les dades d'ubicació estàn disponibles a les fotos pujades, vincular a un mapa."; +App::$strings["Access Controlled Chatrooms"] = "Accés Controlat a les Sales de Xat"; +App::$strings["Provide chatrooms and chat services with access control."] = "Proveeix sales de Xat i serveis de Xat amb control d'accés."; +App::$strings["Smart Birthdays"] = "Aniversaris Intel·ligents"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Fes, conscients de la zona horària, els esdeveniments d'aniversari, en cas que els teus amics estiguin dispersos per tot el planeta."; +App::$strings["Event Timezone Selection"] = "Zona horària dels esdeveniments"; +App::$strings["Allow event creation in timezones other than your own."] = "Permet crear esdeveniments en zones horàries diferents a la teva."; +App::$strings["Premium Channel"] = "Privilegis del Canal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Li permet establir restriccions i els termes en els quals es connecten amb el seu canal"; +App::$strings["Advanced Directory Search"] = "Cerca de directori avançada"; +App::$strings["Allows creation of complex directory search queries"] = "Permet fer cerques de directori complexes"; +App::$strings["Advanced Theme and Layout Settings"] = "Configuració de disseny i de tema avançada"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permet configurar al detall els temes i els dissenys de pàgina"; +App::$strings["Access Control and Permissions"] = "Control d'accés i permisos"; +App::$strings["Enable management and selection of privacy groups"] = "Habilita la gestió i selecció de grups de privacitat"; +App::$strings["Multiple Profiles"] = "Multiples Perfils"; +App::$strings["Ability to create multiple profiles"] = "Capacitat per crear multiples perfils"; +App::$strings["Create custom connection permission limits"] = "Personalitza els límits de permisos de les connexions"; +App::$strings["OAuth1 Clients"] = "Clients OAuth1"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Gestiona els tokens d'autenticació OAuth1 per al mòbil i aplicacions remotes."; +App::$strings["OAuth2 Clients"] = "Clients OAuth2"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Gestiona els tokens d'autenticació OAuth2 per al mòbil i aplicacions remotes."; +App::$strings["Access Tokens"] = "Tokens d'accés"; +App::$strings["Create access tokens so that non-members can access private content."] = "Crea tokens d'accés per tal que no-membres puguis accedir contingut privat."; +App::$strings["Post Composition Features"] = "Característiques de Composició d'Entrades"; +App::$strings["Large Photos"] = "Grans Fotos"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inclou gran (1024px) foto de miniatura a les entrades. Si no està activat, empra petita (640px) foto de miniatura."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automàticament el contingut del canal des de altres canals o feeds"; +App::$strings["Even More Encryption"] = "Encara Més Encriptació"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permet l'encripció opcional del contingut extrem-a-extrem amb clau secreta compartida"; +App::$strings["Enable Voting Tools"] = "Habilitar Eines de Votació"; +App::$strings["Provide a class of post which others can vote on"] = "Proporcionar una classe d'entrada que altres puguin votar"; +App::$strings["Disable Comments"] = "Deshabilita els comentaris"; +App::$strings["Provide the option to disable comments for a post"] = "Proporciona l'opció de deshabilitar els comentaris per a una entrada"; +App::$strings["Delayed Posting"] = "Retarda Publicació"; +App::$strings["Allow posts to be published at a later date"] = "Permet que les publicacions es publiquin en data posterior"; +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."; +App::$strings["Suppress Duplicate Posts/Comments"] = "Suprimeix Duplicats de Publicacions/Comentaris"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Evita que publicacions amb identic contingut siguin publicades amb menys de dos minuts entre entregues."; +App::$strings["Auto-save drafts of posts and comments"] = "Desa automàticament esborranys de les entrades i comentaris"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Desa esborranys automàticament en l'emmagatzematge local del navegador per a evitar perdre escrits per a comentaris o entrades"; +App::$strings["Network and Stream Filtering"] = "Filtrat de Xarxa i Flux"; +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["Save search terms for re-use"] = "Guardar els termin de la cerca per a re-usar"; +App::$strings["Alternate Stream Order"] = "Diversos ordres al flux"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Permet canviar l'ordre dels continguts en el flux: segons la data de les entrades, segons la data de l'últim comentari, o segons la data de cada missatge sense agrupar per converses"; +App::$strings["Contact Filter"] = "Filtre de contactes"; +App::$strings["Ability to display only posts of a selected contact"] = "Permet mostrar només entrades d'un contacte determinat"; +App::$strings["Forum Filter"] = "Filtre de fòrums"; +App::$strings["Ability to display only posts of a specific forum"] = "Permet mostrar només entrades d'un fòrum determinat"; +App::$strings["Personal Posts Filter"] = "Filtre d'interaccions amb mi"; +App::$strings["Ability to display only posts that you've interacted on"] = "Permet mostrar només les entrades amb què has interactuat"; +App::$strings["Affinity Tool"] = "Eina d'Afinitat"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtre d'activitat del flux per importància de la relació"; +App::$strings["Show friend and connection suggestions"] = "Suggereix connexions o amistats"; +App::$strings["Connection Filtering"] = "Filtre de Connexió"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtre de missatges d'entrada de conexions, basat en paraules clau/contingut "; +App::$strings["Post/Comment Tools"] = "Eina d'Entrades/Comentaris"; +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["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"; +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["Trending"] = "Tema del moment"; +App::$strings["Keywords"] = "Paraules clau"; +App::$strings["have"] = "tinc"; +App::$strings["has"] = "tens"; +App::$strings["want"] = "vull"; +App::$strings["wants"] = "vols"; +App::$strings["likes"] = "agrada"; +App::$strings["dislikes"] = "desagrada"; +App::$strings["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["Birthday"] = "Aniversari"; +App::$strings["Age: "] = "Edat:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD o MM-DD"; +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["Remote authentication"] = "Autenticació remota"; +App::$strings["Click to authenticate to your home hub"] = "Clica per autentificar-te en el teu node"; +App::$strings["Manage your channels"] = "Gestiona els teus canals"; +App::$strings["Manage your privacy groups"] = "Gestiona els teus grups de privacitat"; +App::$strings["Account/Channel Settings"] = "Configuració de compte i canal"; +App::$strings["End this session"] = "Finalitza aquesta sessió"; +App::$strings["Your profile page"] = "La teva pàgina de perfil"; +App::$strings["Manage/Edit profiles"] = "Gestiona/edita els perfils"; +App::$strings["Sign in"] = "Signatura"; +App::$strings["Take me home"] = "Porta'm a casa"; +App::$strings["Log me out of this site"] = "Tanca'm la sessió en aquest lloc web"; +App::$strings["Create an account"] = "Crear un compte"; +App::$strings["Help and documentation"] = "Ajuda i documentació"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Cerca en el node @nom, !fòrum, #etiqueta, ?documentació, contingut"; +App::$strings["Site Setup and Configuration"] = "Configuració del node"; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@nom, !fòrum, #etiqueta, ?documentació, contingut"; +App::$strings["Please wait..."] = "Si us plau, espera......."; +App::$strings["Add Apps"] = "Afegeix aplicacions"; +App::$strings["Arrange Apps"] = "Endreça les aplicacions"; +App::$strings["Toggle System Apps"] = "Commuta l'estat de les aplicacions de sistema"; +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["Schema Default"] = "Esquema per defecte"; -App::$strings["Sans-Serif"] = "Sans-Serif"; -App::$strings["Monospace"] = "Monospace"; -App::$strings["Theme settings"] = "Ajustos de tema"; -App::$strings["Set scheme"] = "Estableix l'esquema"; -App::$strings["Set font-size for posts and comments"] = "Ajusta la mida del tipus de lletra per a entrades i comentaris"; -App::$strings["Set font face"] = "Estableix el tipus de lletra"; -App::$strings["Set iconset"] = "Estableix el conjunt d'icones"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Estableix una mida petita per l'ombrejat, per defecte 15px 15px 15px"; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Estableix una mida petita per l'ombrejat, per defecte 15px 15px 15px"; -App::$strings["Set shadow color, default #000"] = "Estableix el color de l'ombra, per defecte #000"; -App::$strings["Set radius size, default 5px"] = "Estableix el radi, per defecte 5px"; -App::$strings["Set line-height for posts and comments"] = "Estableix l'alçada de línia per a entrades i comentaris"; -App::$strings["Set background image"] = "Estableix la imatge de fons"; -App::$strings["Set background attachment"] = "Estableix els adjunts en segon pla"; -App::$strings["Set background color"] = "Estableix del color de fons"; -App::$strings["Set section background image"] = "Estableix la imatge de fons de secció"; -App::$strings["Set section background color"] = "Estableix el color de fons de secció"; -App::$strings["Set color of items - use hex"] = "Estableix el color dels elements (en notació hexadecimal)"; -App::$strings["Set color of links - use hex"] = "Estableix el color dels enllaços (en notació hexadecimal)"; -App::$strings["Set max-width for items. Default 400px"] = "Estableix el l'amplada màxima dels elements. Per defecte, 400px"; -App::$strings["Set min-width for items. Default 240px"] = "Estableix l'amplada mínima dels elements. Per defecte, 240px"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Estableix l'amplada per defecte del contingut. Per defecte, 48%"; -App::$strings["Set color of fonts - use hex"] = "Estableix el color del text (en notació hexadecimal)"; -App::$strings["Set background-size element"] = "Estableix la mida de la imatge de fons (background-size)"; -App::$strings["Item opacity"] = "Opacitat dels elements"; -App::$strings["Display post previews only"] = "Mostra només previsualitzacions d'entrades"; -App::$strings["Display side bar on channel page"] = "Mostra la barra lateral a la pàgina del canal"; -App::$strings["Colour of the navigation bar"] = "Color de la barra de navegació"; -App::$strings["Item float"] = "Paràmetre \"float\" dels elements"; -App::$strings["Left offset of the section element"] = "Desplaçament esquerra de l'element de secció"; -App::$strings["Right offset of the section element"] = "Desplaçament dret de l'element de secció"; -App::$strings["Section width"] = "Amplada de la secció"; -App::$strings["Left offset of the aside"] = "Desplaçament esquerra del costat"; -App::$strings["Right offset of the aside element"] = "Desplaçament dret de l'element del costat"; -App::$strings["Light (Red Matrix default)"] = "Clar (predeterminat)"; -App::$strings["Select scheme"] = "Tria esquema"; -App::$strings["Narrow navbar"] = "Barra de navegació estreta"; -App::$strings["Navigation bar background color"] = "Color de fons de la barra de navegació"; -App::$strings["Navigation bar gradient top color"] = "Gradient de color de la part superior de la barra de navegació"; -App::$strings["Navigation bar gradient bottom color"] = "Gradient de color de la part inferior de la barra de navegació"; -App::$strings["Navigation active button gradient top color"] = "Gradient de color de la part superior del botó actiu de la barra de navegació"; -App::$strings["Navigation active button gradient bottom color"] = "Gradient de color de la part inferior del botó actiu de la barra de navegació"; -App::$strings["Navigation bar border color "] = "Color de la vora de la barra de navegació"; -App::$strings["Navigation bar icon color "] = "Color bàsic de la icona de la barra de navegació"; -App::$strings["Navigation bar active icon color "] = "Color de la icona de la barra de navegació activa"; -App::$strings["link color"] = "color dels enllaços"; -App::$strings["Set font-color for banner"] = "Estableix el color de lletra del rètol"; -App::$strings["Set the background color"] = "Estableix el color de fons"; -App::$strings["Set the background image"] = "Estableix la imatge de fons"; -App::$strings["Set the background color of items"] = "Estableix el color de fons dels elements"; -App::$strings["Set the background color of comments"] = "Estableix el color de fons dels comentaris"; -App::$strings["Set the border color of comments"] = "Estableix el color de la vora dels comentaris"; -App::$strings["Set the indent for comments"] = "Estableix el sagnat dels comentaris"; -App::$strings["Set the basic color for item icons"] = "Estableix el color bàsic de les icones dels elements"; -App::$strings["Set the hover color for item icons"] = "Estableix el color de les icones dels elements en passar-hi per damunt"; -App::$strings["Set font-size for the entire application"] = "Estableix la mida de lletra per tota l'aplicació"; -App::$strings["Example: 14px"] = "Exemple: 14px"; -App::$strings["Set font-color for posts and comments"] = "Estableix el color del text d'entrades i comentaris"; -App::$strings["Set radius of corners"] = "Estableix el radi de les cantonades"; -App::$strings["Set shadow depth of photos"] = "Estableix la profunditat d'ombres de les fotos"; -App::$strings["Set maximum width of content region in pixel"] = "Estableix l'amplada màxima de la zona de contingut en píxels"; -App::$strings["Leave empty for default width"] = "Deixa-ho en blanc per fixar a l'amplada per defecte."; -App::$strings["Center page content"] = "Centra el contingut de la pàgina"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Estableix la opacitat mínima de la barra de navegació per ser amagada"; -App::$strings["Set size of conversation author photo"] = "Estableix la mida de la foto de conversa de l'autor"; -App::$strings["Set size of followup author photos"] = "Estableix la mida de les fotos de seguiment de l'autor"; -App::$strings["Update %s failed. See error logs."] = "L'actualització %s ha fallat. Consulta 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 Red Matrix"] = "Crea un compte per accedir als serveis i aplicacions dins de RedMatrix"; -App::$strings["Password"] = "Contrasenya"; -App::$strings["Remember me"] = "Recorda'm"; -App::$strings["Forgot your password?"] = "Has perdut la contrasenya?"; -App::$strings["toggle mobile"] = "commuta format mòbil/escriptori"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificat SSL és invàlid. Cal arreglar-ho."; -App::$strings["[red] Website SSL error for %s"] = "[red] Error de SSL per la web %s"; -App::$strings["Cron/Scheduled tasks not running."] = "No s'estan executan les tasques programades al cron."; -App::$strings["[red] Cron tasks not running on %s"] = "[red] No s'estan executan les tasques programades del cron a %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"] = "Afegeix noves connexions a aquest grup de privacitat"; +App::$strings["edit"] = "edita"; +App::$strings["Edit group"] = "Editar grup"; +App::$strings["Add privacy group"] = "Afegeix grup de privacitat"; +App::$strings["Channels not in any privacy group"] = "Canals que no estan en cap grup de privacitat"; +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["Delegation session ended."] = "S'ha tancat la sessió de delegació."; +App::$strings["Logged out."] = "Sortir."; +App::$strings["Email validation is incomplete. Please check your email."] = "Encara no s'ha validat el teu correu. Comprova la safata d'entrada i la paperera."; +App::$strings["Failed authentication"] = "Autenticació fallida"; +App::$strings["Help:"] = "Ajuda:"; +App::$strings["Not Found"] = "No s'ha pogut trobar la pàgina"; diff --git a/view/de-de/hmessages.po b/view/de-de/hmessages.po deleted file mode 100644 index 8af9dce6b..000000000 --- a/view/de-de/hmessages.po +++ /dev/null @@ -1,14328 +0,0 @@ -# hubzilla -# Copyright (C) 2012-2016 hubzilla -# This file is distributed under the same license as the hubzilla package. -# -# Translators: -# Alex , 2013 -# Balder , 2013 -# Tobias Diekershoff , 2013 -# do.t , 2014 -# Einer von Vielen , 2013 -# Ettore Atalan , 2015-2017 -# Frank Dieckmann , 2013 -# Harald Klimach , 2016 -# Herbert Thielen , 2018 -# Holger - , 2018 -# JooBee , 2014 -# Kai , 2015 -# Oliver , 2015-2017 -# Phellmes , 2014,2016-2018 -# sasiflo , 2014 -# Steff , 2015-2016 -# Tobias Diekershoff , 2016 -# Tobias Diekershoff , 2016-2018 -# zottel , 2015 -# sasiflo , 2015 -msgid "" -msgstr "" -"Project-Id-Version: Redmatrix\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-23 11:34+0200\n" -"PO-Revision-Date: 2018-04-26 18:46+0000\n" -"Last-Translator: Phellmes \n" -"Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" - -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" - -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" - -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can view my channel webpages" -msgstr "Kann die Webseiten meines Kanals sehen" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" -msgstr "Kann meine Wiki-Seiten sehen" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" -msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" -msgstr "Kann meine Wiki-Seiten bearbeiten" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../Zotlabs/Access/Permissions.php:67 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../Zotlabs/Access/Permissions.php:68 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../Zotlabs/Access/Permissions.php:69 -msgid "Can like/dislike profiles and profile things" -msgstr "Kann Profile und Profilsachen mögen/nicht mögen" - -#: ../../Zotlabs/Access/Permissions.php:70 -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:71 -msgid "Can chat with me" -msgstr "Kann mit mir chatten" - -#: ../../Zotlabs/Access/Permissions.php:72 -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:73 -msgid "Can administer my channel" -msgstr "Kann meinen Kanal administrieren" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "Soziales Netzwerk - Föderation (verbundene Netze)" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "Forum" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "Forum - Privat" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "Teilen von Feeds" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" - -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 -#: ../../Zotlabs/Module/Settings/Channel.php:479 -#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:697 -#: ../../include/connections.php:704 -msgid "Other" -msgstr "Andere" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht verfügbar." - -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 -#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:91 -#: ../../Zotlabs/Module/New_channel.php:116 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Settings/Features.php:38 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:281 -#: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 -#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 -#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 -#: ../../include/attach.php:197 ../../include/attach.php:270 -#: ../../include/attach.php:284 ../../include/attach.php:293 -#: ../../include/attach.php:366 ../../include/attach.php:380 -#: ../../include/attach.php:387 ../../include/attach.php:469 -#: ../../include/attach.php:1029 ../../include/attach.php:1103 -#: ../../include/attach.php:1268 ../../include/items.php:3706 -#: ../../include/photos.php:27 -msgid "Permission denied." -msgstr "Berechtigung verweigert." - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "Block-Name" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titel des Blocks" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 -msgid "Created" -msgstr "Erstellt" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 -msgid "Edited" -msgstr "Geändert" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "Erstelle" - -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 -#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../include/menu.php:113 -msgid "Edit" -msgstr "Bearbeiten" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 -#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../include/conversation.php:1366 -msgid "Share" -msgstr "Teilen" - -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 -#: ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 -#: ../../include/conversation.php:690 ../../include/conversation.php:733 -msgid "Delete" -msgstr "Löschen" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 -msgid "View" -msgstr "Ansicht" - -#: ../../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:67 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:77 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." - -#: ../../Zotlabs/Module/Invite.php:82 -#: ../../addon/notifyadmin/notifyadmin.php:40 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../Zotlabs/Module/Invite.php:86 -#, 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:107 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../Zotlabs/Module/Invite.php:143 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" - -#: ../../Zotlabs/Module/Invite.php:144 -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:146 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." - -#: ../../Zotlabs/Module/Invite.php:147 -msgid "or visit" -msgstr "oder besuche" - -#: ../../Zotlabs/Module/Invite.php:149 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Appman.php:153 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 -#: ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:296 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 -#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:97 -#: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 -#: ../../addon/planets/planets.php:153 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 -#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:825 -#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 -#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 -#: ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:168 -#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 -#: ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 -#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 -#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 -#: ../../addon/flattrwidget/flattrwidget.php:124 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:380 -#: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 -#: ../../addon/twitter/twitter.php:265 -#: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 -#: ../../addon/pageheader/pageheader.php:48 -#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 -#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 -#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 -msgid "Submit" -msgstr "Absenden" - -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 -#: ../../include/nav.php:469 -msgid "Articles" -msgstr "Artikel" - -#: ../../Zotlabs/Module/Articles.php:95 -msgid "Add Article" -msgstr "Artikel hinzufügen" - -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 -#: ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "Element nicht gefunden" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "Layout-Name" - -#: ../../Zotlabs/Module/Editlayout.php:129 -#: ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "Layout-Beschreibung (optional)" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "Layout bearbeiten" - -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 -#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 -#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:358 -msgid "Permission denied" -msgstr "Keine Berechtigung" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:115 -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:124 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:200 -msgid "All Connections" -msgstr "Alle Verbindungen" - -#: ../../Zotlabs/Module/Cdav.php:785 -msgid "INVALID EVENT DISMISSED!" -msgstr "UNGÜLTIGEN TERMIN ABGELEHNT!" - -#: ../../Zotlabs/Module/Cdav.php:786 -msgid "Summary: " -msgstr "Zusammenfassung:" - -#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 -#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 -#: ../../include/conversation.php:1160 -msgid "Unknown" -msgstr "Unbekannt" - -#: ../../Zotlabs/Module/Cdav.php:787 -msgid "Date: " -msgstr "Datum:" - -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 -msgid "Reason: " -msgstr "Grund:" - -#: ../../Zotlabs/Module/Cdav.php:793 -msgid "INVALID CARD DISMISSED!" -msgstr "UNGÜLTIGE KARTE ABGELEHNT!" - -#: ../../Zotlabs/Module/Cdav.php:794 -msgid "Name: " -msgstr "Name: " - -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 -msgid "Event title" -msgstr "Termintitel" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 -msgid "Start date and time" -msgstr "Startdatum und -zeit" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "Beispiel: JJJJ-MM-TT HH:mm" - -#: ../../Zotlabs/Module/Cdav.php:870 -msgid "End date and time" -msgstr "Enddatum und -zeit" - -#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../addon/rendezvous/rendezvous.php:173 -msgid "Description" -msgstr "Beschreibung" - -#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ort" - -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 -msgid "Previous" -msgstr "Voriges" - -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Photos.php:980 -msgid "Next" -msgstr "Nächste" - -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 -msgid "Today" -msgstr "Heute" - -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 -msgid "Month" -msgstr "Monat" - -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 -msgid "Week" -msgstr "Woche" - -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 -msgid "Day" -msgstr "Tag" - -#: ../../Zotlabs/Module/Cdav.php:885 -msgid "List month" -msgstr "Liste Monat" - -#: ../../Zotlabs/Module/Cdav.php:886 -msgid "List week" -msgstr "Liste Woche" - -#: ../../Zotlabs/Module/Cdav.php:887 -msgid "List day" -msgstr "Liste Tag" - -#: ../../Zotlabs/Module/Cdav.php:894 -msgid "More" -msgstr "Mehr" - -#: ../../Zotlabs/Module/Cdav.php:895 -msgid "Less" -msgstr "Weniger" - -#: ../../Zotlabs/Module/Cdav.php:896 -msgid "Select calendar" -msgstr "Kalender auswählen" - -#: ../../Zotlabs/Module/Cdav.php:898 -msgid "Delete all" -msgstr "Alles löschen" - -#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Admin/Plugins.php:423 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 -msgid "Cancel" -msgstr "Abbrechen" - -#: ../../Zotlabs/Module/Cdav.php:900 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert." - -#: ../../Zotlabs/Module/Cdav.php:1170 -#: ../../Zotlabs/Module/Sharedwithme.php:105 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:283 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../addon/rendezvous/rendezvous.php:172 -msgid "Name" -msgstr "Name" - -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 -msgid "Organisation" -msgstr "Organisation" - -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 -msgid "Title" -msgstr "Titel" - -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "Telefon" - -#: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 -msgid "Email" -msgstr "E-Mail" - -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "Sofortnachrichtendienst" - -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "Webseite" - -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "Hinweis" - -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 -#: ../../include/connections.php:690 -msgid "Mobile" -msgstr "Mobil" - -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 -#: ../../include/connections.php:691 -msgid "Home" -msgstr "Home" - -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 -#: ../../include/connections.php:694 -msgid "Work" -msgstr "Arbeit" - -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/jappixmini.php:368 -msgid "Add Contact" -msgstr "Kontakt hinzufügen" - -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "Feld hinzufügen" - -#: ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Admin/Plugins.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:39 -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Lib/Apps.php:393 -msgid "Update" -msgstr "Aktualisieren" - -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 -msgid "P.O. Box" -msgstr "Postfach" - -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 -msgid "Additional" -msgstr "Zusätzlich" - -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 -msgid "Street" -msgstr "Straße" - -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 -msgid "Locality" -msgstr "Ortschaft" - -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 -msgid "Region" -msgstr "Region" - -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 -msgid "ZIP Code" -msgstr "Postleitzahl" - -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "Land" - -#: ../../Zotlabs/Module/Cdav.php:1242 -msgid "Default Calendar" -msgstr "Standardkalender" - -#: ../../Zotlabs/Module/Cdav.php:1252 -msgid "Default Addressbook" -msgstr "Standardadressbuch" - -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Diese Webseite ist kein Verzeichnisserver" - -#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 -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:47 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" - -#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "Nur Beiträge" - -#: ../../Zotlabs/Module/Channel.php:107 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "Kanal exportieren" - -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" - -#: ../../Zotlabs/Module/Uexport.php:61 -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/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." - -#: ../../Zotlabs/Module/Uexport.php:65 -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/Uexport.php:66 -#, 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:67 -#, 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:68 -#, 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/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "Willkommen bei Hubzilla!" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "Du hast keine ungelesenen Beiträge..." - -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Öffentlichen Zugriff verweigert." - -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1051 ../../include/text.php:1063 -#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 -msgid "Search" -msgstr "Suche" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge mit Schlagwort: %s" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" - -#: ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:131 -msgid "Public Stream" -msgstr "Öffentlicher Beitrags-Stream" - -#: ../../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 ../../Zotlabs/Module/Admin.php:111 -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/Apporder.php:44 -msgid "Change Order of Pinned Navbar Apps" -msgstr "Reihenfolge der in der Navigation angepinnten Apps ändern" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of App Tray Apps" -msgstr "Reihenfolge der Apps im App-Menü ändern" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the" -" navbar" -msgstr "Benutze die Pfeil-Knöpfe, um die jeweilige App in der Navigationsleiste nach links (oben) oder rechts (unten) zu bewegen" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "Benutze die Pfeil-Knöpfe, um die jeweilige App im App-Menü nach oben oder unten zu bewegen" - -#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../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:120 ../../Zotlabs/Module/Menu.php:166 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../Zotlabs/Module/Mitem.php:161 -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:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:259 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "No" -msgstr "Nein" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:261 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 -#: ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "Yes" -msgstr "Ja" - -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menü:" - -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Link Text" - -#: ../../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:110 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 -#: ../../include/text.php:2008 ../../include/event.php:1153 -msgid "event" -msgstr "Termin" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 -#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "Benötigt" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "Kategorie" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../Zotlabs/Module/Events.php:471 -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:473 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Ort bearbeiten" - -#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 -#: ../../include/conversation.php:1333 -msgid "Preview" -msgstr "Vorschau" - -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "Zeitzone:" - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "Weitere Optionen" - -#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1827 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Edit Event" -msgstr "Termin bearbeiten" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Create Event" -msgstr "Termin anlegen" - -#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1647 -msgid "Export" -msgstr "Exportieren" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "App installiert." - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "Fehlerhafte App." - -#: ../../Zotlabs/Module/Appman.php:130 -msgid "Embed code" -msgstr "Code einbetten" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Edit App" -msgstr "App bearbeiten" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Create App" -msgstr "App erstellen" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Name of app" -msgstr "Name der App" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Bitte melde dich an." - -#: ../../Zotlabs/Module/Magic.php:72 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 -#: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 -#: ../../include/conversation.php:116 ../../include/text.php:2005 -msgid "photo" -msgstr "Foto" - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 -#: ../../include/conversation.php:144 ../../include/text.php:2011 -msgid "status" -msgstr "Status" - -#: ../../Zotlabs/Module/Subthread.php:142 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" - -#: ../../Zotlabs/Module/Subthread.php:144 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s folgt %2$ss %3$s nicht mehr" - -#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Card_edit.php:44 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../Zotlabs/Module/Article_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../include/conversation.php:1278 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../include/conversation.php:1401 -msgid "Title (optional)" -msgstr "Titel (optional)" - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "Artikel bearbeiten" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 -msgid "Nothing to import." -msgstr "Nichts zu importieren." - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 -#: ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" - -#: ../../Zotlabs/Module/Import_items.php:77 -#: ../../Zotlabs/Module/Import.php:102 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." - -#: ../../Zotlabs/Module/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." - -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "Import abgeschlossen" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "Beiträge importieren" - -#: ../../Zotlabs/Module/Import_items.php:126 -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/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:517 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" - -#: ../../Zotlabs/Module/New_channel.php:133 -#: ../../Zotlabs/Module/Manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -msgid "Name or caption" -msgstr "Name oder Titel" - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -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:148 -#: ../../Zotlabs/Module/Register.php:256 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" - -#: ../../Zotlabs/Module/New_channel.php:148 -#: ../../Zotlabs/Module/Register.php:256 -#, 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:149 -#: ../../Zotlabs/Module/Settings/Channel.php:539 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" - -#: ../../Zotlabs/Module/New_channel.php:149 -#: ../../Zotlabs/Module/Register.php:257 -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:149 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" - -#: ../../Zotlabs/Module/New_channel.php:152 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" - -#: ../../Zotlabs/Module/New_channel.php:153 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed," -" and many other things. Channels can make connections with other channels to" -" share information with each other." -msgstr "Ein Kanal ist eine eindeutige Identität. Er kann eine Person (Soziales Netzwerk-Profil), ein Forum (Gruppe), eine Unternehmens- oder Prominenten-Seite, einen Newsfeed oder viele andere Dinge repräsentieren. Kanäle können Verbindungen mit anderen Kanälen eingehen, um Informationen miteinander auszutauschen." - -#: ../../Zotlabs/Module/New_channel.php:153 -msgid "" -"The type of channel you create affects the basic privacy settings, the " -"permissions that are granted to connections/friends, and also the channel's " -"visibility across the network." -msgstr "Die Art des Kanals, den Du erzeugst, beeinflusst die grundlegenden Privatsphäre-Einstellungen, die Rechte, die Verbindungen/Freunden gewährt werden, und auch die Sichtbarkeit des Kanals im gesamten Netzwerk." - -#: ../../Zotlabs/Module/New_channel.php:154 -msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." - -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Validate" -msgstr "Überprüfe" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "WARNUNG: " - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -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/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:600 -msgid "Remove Channel" -msgstr "Kanal löschen" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -msgid "NEW" -msgstr "NEU" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 -msgid "Size" -msgstr "Größe" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:286 -msgid "Last Modified" -msgstr "Zuletzt geändert" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove all files" -msgstr "Alle Dateien löschen" - -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove this file" -msgstr "Diese Datei löschen" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Server-Einrichtung" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "Konnte Tabelle nicht erstellen." - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "Systemprüfung" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "Nochmal prüfen" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "Datenbankverbindung" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "Datenbankservername" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "Standard ist 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "Datenbankport" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "Datenbankname" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "Datenbanktyp" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "Webseiten-URL" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "Seiteneinstellungen" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP-Version 5.5 oder höher ist erforderlich." - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "PHP-Version" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "PHP-Pfad zu ausführbarer Datei" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "PHP-Befehlszeile" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "Prüfung auf Kommandozeilen-PHP fehlgeschlagen, da shell_exec() deaktiviert ist. Dies wird aber benötigt." - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../Zotlabs/Module/Setup.php:446 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." - -#: ../../Zotlabs/Module/Setup.php:451 -msgid "You can adjust these settings in the server php.ini file." -msgstr "Du kannst diese Einstellungen in der php.ini - Datei des Servers anpassen." - -#: ../../Zotlabs/Module/Setup.php:453 -msgid "PHP upload limits" -msgstr "PHP-Hochladebeschränkungen" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." - -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." - -#: ../../Zotlabs/Module/Setup.php:480 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel erzeugen" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:499 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:500 -msgid "PDO database PHP module" -msgstr "PDO-Datenbank-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "xml PHP module" -msgstr "xml-PHP-Modul" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "zip PHP module" -msgstr "zip PHP Modul" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" - -#: ../../Zotlabs/Module/Setup.php:507 -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:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" -msgstr "exec" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "Fehler: exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" -msgstr "shell_exec" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: shell_exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" - -#: ../../Zotlabs/Module/Setup.php:527 -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:531 -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:535 -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:539 -msgid "Error: PDO database PHP module required but not installed." -msgstr "Fehler: PDO-Datenbank-PHP-Modul ist erforderlich, aber nicht installiert." - -#: ../../Zotlabs/Module/Setup.php:543 -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:547 -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:551 -msgid "Error: zip PHP module required but not installed." -msgstr "Fehler: Das zip PHP Modul ist erforderlich, ist aber nicht installiert." - -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" - -#: ../../Zotlabs/Module/Setup.php:575 -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:576 -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:577 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "Lies die Datei \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:593 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "Diese Software verwendet die Smarty3 Template Engine, um Vorlagen für die Webdarstellung zu verarbeiten. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." - -#: ../../Zotlabs/Module/Setup.php:594 -#, 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:595 ../../Zotlabs/Module/Setup.php:616 -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:596 -#, 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:599 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" - -#: ../../Zotlabs/Module/Setup.php:615 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level" -" web folder" -msgstr "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Web-Stammverzeichnisses." - -#: ../../Zotlabs/Module/Setup.php:619 -msgid "store is writable" -msgstr "store ist schreibbar" - -#: ../../Zotlabs/Module/Setup.php:651 -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:652 -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:653 -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:654 -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:655 -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:656 -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:658 -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:660 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" - -#: ../../Zotlabs/Module/Setup.php:666 -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:669 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" - -#: ../../Zotlabs/Module/Setup.php:683 -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:707 -#: ../../addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." - -#: ../../Zotlabs/Module/Setup.php:747 -msgid "

What next?

" -msgstr "

Wie geht es jetzt weiter?

" - -#: ../../Zotlabs/Module/Setup.php:748 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." - -#: ../../Zotlabs/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/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "Warteschlangenstatistiken" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "Einträge insgesamt" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "Priorität" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "Ziel-URL" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markieren" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "Warteschlange für diesen Hub leeren" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "Letzter Kontakt" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "Off" -msgstr "Aus" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "On" -msgstr "An" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Blockiere die Funktion %s" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Zusätzliche Funktionen verwalten" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../Zotlabs/Module/Admin/Plugins.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:453 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3619 -msgid "Item not found." -msgstr "Element nicht gefunden." - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." - -#: ../../Zotlabs/Module/Admin/Plugins.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." - -#: ../../Zotlabs/Module/Admin/Plugins.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../Zotlabs/Module/Admin/Plugins.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../Zotlabs/Module/Admin/Plugins.php:341 -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Administration" -msgstr "Administration" - -#: ../../Zotlabs/Module/Admin/Plugins.php:342 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -#: ../../Zotlabs/Widget/Admin.php:27 -msgid "Plugins" -msgstr "Plug-Ins" - -#: ../../Zotlabs/Module/Admin/Plugins.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "Umschalten" - -#: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 -#: ../../include/nav.php:192 -msgid "Settings" -msgstr "Einstellungen" - -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "Autor: " - -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -msgid "Minimum project version: " -msgstr "Minimale Version des Projekts:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:354 -msgid "Maximum project version: " -msgstr "Maximale Version des Projekts:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:355 -msgid "Minimum PHP version: " -msgstr "Minimale PHP Version:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:356 -msgid "Compatible Server Roles: " -msgstr "Kompatible Serverrollen: " - -#: ../../Zotlabs/Module/Admin/Plugins.php:357 -msgid "Requires: " -msgstr "Benötigt:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:358 -#: ../../Zotlabs/Module/Admin/Plugins.php:442 -msgid "Disabled - version incompatibility" -msgstr "Abgeschaltet - Versionsinkompatibilität" - -#: ../../Zotlabs/Module/Admin/Plugins.php:411 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." - -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Plugin repo git URL" -msgstr "Plugin-Repository Git URL" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "Custom repo name" -msgstr "Benutzerdefinierter Repository-Name" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "(optional)" -msgstr "(optional)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -msgid "Download Plugin Repo" -msgstr "Plugin-Repository herunterladen" - -#: ../../Zotlabs/Module/Admin/Plugins.php:421 -msgid "Install new repo" -msgstr "Neues Repository installieren" - -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 -msgid "Install" -msgstr "Installieren" - -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -msgid "Manage Repos" -msgstr "Repositorien verwalten" - -#: ../../Zotlabs/Module/Admin/Plugins.php:446 -msgid "Installed Plugin Repositories" -msgstr "Installierte Plugin-Repositorien" - -#: ../../Zotlabs/Module/Admin/Plugins.php:447 -msgid "Install a New Plugin Repository" -msgstr "Ein neues Plugin-Repository installieren" - -#: ../../Zotlabs/Module/Admin/Plugins.php:454 -msgid "Switch branch" -msgstr "Zweig/Branch wechseln" - -#: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/superblock.php:116 -msgid "Remove" -msgstr "Entfernen" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s Konto blockiert/freigegeben" -msgstr[1] "%s Konten blockiert/freigegeben" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s Konto gelöscht" -msgstr[1] "%s Konten gelöscht" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 -#, php-format -msgid "Account '%s' deleted" -msgstr "Konto '%s' gelöscht" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "Konto '%s' blockiert" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Konto '%s' freigegeben" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "Konten" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Registrierungen warten auf Bestätigung" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:26 -msgid "Deny" -msgstr "Verweigern" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Block" -msgstr "Blockieren" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Unblock" -msgstr "Freigeben" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 -msgid "All Channels" -msgstr "Alle Kanäle" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "Verfällt" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "Protokolle" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Leeren" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Debugging" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "Protokolldatei" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Protokollstufe" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Code für %s Kanal gesperrt/freigegeben" -msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code für Kanal '%s' freigegeben" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code für Kanal '%s' gesperrt" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "Kanäle" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "Sperren" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "Freigeben" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "Code erlauben" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "Code sperren" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1811 ../../include/nav.php:378 -msgid "Channel" -msgstr "Kanal" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "UID" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "Design-Einstellungen aktualisiert." - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "Keine Designs gefunden." - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "Designs" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: ../../Zotlabs/Module/Admin/Site.php:165 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." - -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 -msgid "Default" -msgstr "Standard" - -#: ../../Zotlabs/Module/Admin/Site.php:202 -#: ../../Zotlabs/Module/Settings/Display.php:130 -#, php-format -msgid "%s - (Incompatible)" -msgstr "%s - (Inkompatibel)" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "mobile" -msgstr "mobil" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "experimental" -msgstr "experimentell" - -#: ../../Zotlabs/Module/Admin/Site.php:213 -msgid "unsupported" -msgstr "nicht unterstützt" - -#: ../../Zotlabs/Module/Admin/Site.php:260 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" - -#: ../../Zotlabs/Module/Admin/Site.php:266 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" - -#: ../../Zotlabs/Module/Admin/Site.php:267 -msgid "My site has paid access only" -msgstr "Meine Seite hat nur bezahlten Zugriff" - -#: ../../Zotlabs/Module/Admin/Site.php:268 -msgid "My site has free access only" -msgstr "Meine Seite hat nur freien Zugriff" - -#: ../../Zotlabs/Module/Admin/Site.php:269 -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/Site.php:281 -msgid "Beginner/Basic" -msgstr "Anfänger/Basis" - -#: ../../Zotlabs/Module/Admin/Site.php:282 -msgid "Novice - not skilled but willing to learn" -msgstr "Anfänger - unerfahren, aber bereit zu lernen" - -#: ../../Zotlabs/Module/Admin/Site.php:283 -msgid "Intermediate - somewhat comfortable" -msgstr "Fortgeschritten - relativ komfortabel" - -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Advanced - very comfortable" -msgstr "Fortgeschritten - sehr komfortabel" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Expert - I can write computer code" -msgstr "Experte - Ich kann Computercode schreiben" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Wizard - I probably know more than you do" -msgstr "Zauberer - ich kann wahrscheinlich mehr als Du" - -#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "Seite" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../Zotlabs/Module/Register.php:269 -msgid "Registration" -msgstr "Registrierung" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "File upload" -msgstr "Dateiupload" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Policies" -msgstr "Richtlinien" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -#: ../../addon/statusnet/statusnet.php:891 -msgid "Site name" -msgstr "Seitenname" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Site default technical skill level" -msgstr "Standard-Qualifikationsstufe der Website" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten." - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Lock the technical skill level setting" -msgstr "Sperre die technische Qualifikationsstufe" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Members can set their own technical comfort level by default" -msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "Ungefiltertes HTML/CSS/JS ist erlaubt" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Administrator Information" -msgstr "Administrator-Informationen" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." - -#: ../../Zotlabs/Module/Admin/Site.php:312 -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Information" -msgstr "Seiteninformationen" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden." - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "System language" -msgstr "System-Sprache" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "System theme" -msgstr "System-Design" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Invitation only" -msgstr "Nur mit Einladung" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age" -msgstr "Mindestalter" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age (in years) for who may register on this site." -msgstr "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten." - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Preserve site homepage URL" -msgstr "Homepage-URL schützen" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Import Public Streams" -msgstr "Öffentliche Beiträge importieren" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Site only Public Streams" -msgstr "Öffentlichen Beitragsstrom auf diesen Server beschränken" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert." - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Login on Homepage" -msgstr "Log-in auf der Startseite" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Enable context help" -msgstr "Kontext-Hilfe aktivieren" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Reply-to email address for system generated email." -msgstr "Antwortadresse (reply-to) für Emails, die vom System generiert wurden." - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "Sender (From) email address for system generated email." -msgstr "Absenderadresse (from) für Emails, die vom System generiert wurden." - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Name of email sender for system generated email." -msgstr "Name des Versenders von Emails, die vom System generiert wurden." - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Directory Server URL" -msgstr "Verzeichnisserver-URL" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Default directory server" -msgstr "Standard-Verzeichnisserver" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Proxy user" -msgstr "Proxy Benutzer" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Deliveries per process" -msgstr "Zustellungen pro Prozess" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Queue Threshold" -msgstr "Warteschlangen-Grenzwert" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält." - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "Path to ImageMagick convert program" -msgstr "Pfad zum ImageMagick-Programm convert" - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "Allow SVG thumbnails in file browser" -msgstr "Erlaube SVG-Vorschaubilder im Dateibrowser" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "WARNING: SVG images may contain malicious code." -msgstr "Warnung: SVG-Grafiken können Schadcode enthalten." - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "0 for no expiration of imported content" -msgstr "0 = keine Löschung importierter Inhalte" - -#: ../../Zotlabs/Module/Admin/Site.php:353 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "Lass keine Beiträge verfallen die Kommentare haben, die jünger als diese Anzahl von Tagen sind." - -#: ../../Zotlabs/Module/Admin/Site.php:355 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung" - -#: ../../Zotlabs/Module/Admin/Site.php:355 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "Erstelle zunächst die entsprechende Seite. Standard ist %s/register" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Page to display after creating a new channel" -msgstr "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Recommend: profiles, go, or settings" -msgstr "Empfohlen: profiles, go oder settings" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Optional: site location" -msgstr "Optional: Standort der Website" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Region or country" -msgstr "Region oder Land" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "Neues Profilfeld" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "Kurzname für das Feld" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "Systemname des Feldes" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "Art des Inhalts" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "Feldname" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "Hilfetext" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 -#: ../../include/text.php:1064 -msgid "Save" -msgstr "Speichern" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "Profil Felder" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "Notwendige Profil Felder" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "Erweiterte Profil Felder" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "(zusätzlich zu notwendige Felder)" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "Alle verfügbaren Felder" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "Benutzerdefinierte Felder" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "Erstelle benutzerdefiniertes Feld" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "Passwort für Konto %d geändert." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "Kontoeinstellungen aktualisiert." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "Konto nicht gefunden." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "Kontobearbeitung" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "Neues Passwort" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "Neues Passwort wiederholen" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Technische Qualifikationsstufe" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "Kontosprache (für E-Mails)" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "Dienstklasse" - -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." - -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" - -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." - -#: ../../Zotlabs/Module/Admin/Security.php:87 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "Sicherheit" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Setze den \"Transport Security\" HTTP Header" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Setze den \"Content Security Policy\" HTTP Header" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "Kommunikation nur von diesen Servern/Domains erlauben" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "Kommunikation von diesen Servern/Domains blockieren" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "Kommunikation nur von diesen Kanälen erlauben" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "Kommunikation von folgenden Kanälen blockieren" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." -msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "Eingebettete HTML Inhalte von diesen Servern/Domains blockieren" - -#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" -msgstr "Kommentar bestätigt" - -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" -msgstr "Kommentar gelöscht" - -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "Der Name der Berechtigung wird benötigt." - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "Berechtigungsrolle gespeichert." - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Verwende dieses Formular, um Berechtigungsrollen für verschiedene Gruppen von Personen oder Verbindungen zu erstellen." - -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -msgid "Permission Categories" -msgstr "Berechtigungsrollen" - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Name der Berechtigungsrolle" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -msgid "My Settings" -msgstr "Meine Einstellungen" - -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -msgid "inherited" -msgstr "geerbt" - -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" - -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:894 -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 "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/Settings/Channel.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:83 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:437 -#: ../../include/channel.php:438 ../../include/channel.php:445 -msgid "Friends" -msgstr "Freunde" - -#: ../../Zotlabs/Module/Settings/Channel.php:264 -#: ../../Zotlabs/Module/Defperms.php:103 -#: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:184 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:102 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../Zotlabs/Module/Settings/Channel.php:325 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" - -#: ../../Zotlabs/Module/Settings/Channel.php:326 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" - -#: ../../Zotlabs/Module/Settings/Channel.php:327 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:328 -msgid "Any connections" -msgstr "Beliebige Verbindungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" - -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Anybody in this network" -msgstr "Alle $Projectname-Mitglieder" - -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" - -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" - -#: ../../Zotlabs/Module/Settings/Channel.php:407 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" - -#: ../../Zotlabs/Module/Settings/Channel.php:412 -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/Channel.php:416 -msgid "or" -msgstr "oder" - -#: ../../Zotlabs/Module/Settings/Channel.php:425 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" - -#: ../../Zotlabs/Module/Settings/Channel.php:428 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "Deine Dateien/Fotos sind via WebDAV verfügbar auf" - -#: ../../Zotlabs/Module/Settings/Channel.php:493 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:501 -#: ../../include/channel.php:1521 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:119 -msgid "Email Address:" -msgstr "Email Adresse:" - -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -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/Channel.php:509 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -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/Channel.php:513 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" - -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" - -#: ../../Zotlabs/Module/Settings/Channel.php:517 -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/Channel.php:518 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -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/Channel.php:523 -msgid "Channel Permission Limits" -msgstr "Kanal-Berechtigungslimits" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -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/Channel.php:525 -#, php-format -msgid "This website expires after %d days." -msgstr "Diese Webseite läuft nach %d Tagen ab." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "This website does not expire imported content." -msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -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/Channel.php:526 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Default Privacy Group" -msgstr "Standard-Gruppe" - -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "Use my default audience setting for the type of object published" -msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" - -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "Profile to assign new connections" -msgstr "Profil, welches neuen Verbindungen zugewiesen wird" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default Permissions Group" -msgstr "Standard-Berechtigungsgruppe" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" - -#: ../../Zotlabs/Module/Settings/Channel.php:559 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" - -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" - -#: ../../Zotlabs/Module/Settings/Channel.php:564 -msgid "Someone likes your post/comment" -msgstr "Jemand mag Ihren Beitrag/Kommentar" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Unseen grid activity" -msgstr "Ungesehene Netzwerk-Aktivität" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:576 -#: ../../Zotlabs/Module/Settings/Channel.php:577 -#: ../../Zotlabs/Module/Settings/Channel.php:578 -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Recommended" -msgstr "Empfohlen" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Upcoming events" -msgstr "Baldige Termine" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "Events today" -msgstr "Heutige Termine" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Not available in all themes" -msgstr "Nicht in allen Designs verfügbar" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "System info messages" -msgstr "System – Info-Nachrichten" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "New connections" -msgstr "Neue Verbindungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "System Registrations" -msgstr "System – Registrierungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Unseen shared files" -msgstr "Ungesehene geteilte Dateien" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Unseen public activity" -msgstr "Ungesehene öffentliche Aktivität" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Unseen likes and dislikes" -msgstr "Ungesehene Likes und Dislikes" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Email notification hub (hostname)" -msgstr "Hub für E-Mail-Benachrichtigungen (Hostname)" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s" - -#: ../../Zotlabs/Module/Settings/Channel.php:584 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "Zeige neue Pinnwand Beiträge, private Nachrichten und Verbindungen unter den Notizen an." - -#: ../../Zotlabs/Module/Settings/Channel.php:586 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" - -#: ../../Zotlabs/Module/Settings/Channel.php:586 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konten- und Seitenart-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Kontos unter speziellen Umständen" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Default photo upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Fotos" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "%Y - current year, %m - current month" -msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "Default file upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Dateien" - -#: ../../Zotlabs/Module/Settings/Channel.php:599 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" - -#: ../../Zotlabs/Module/Settings/Channel.php:601 -msgid "Remove this channel." -msgstr "Diesen Kanal löschen" - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-Provider für Firefox Share" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Start calendar week on Monday" -msgstr "Beginne die kalendarische Woche am Montag" - -#: ../../Zotlabs/Module/Settings/Features.php:73 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "Deine technische Qualifikationsstufe" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)." - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Dieser Kanal ist auf %d Token begrenzt" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Name und Passwort sind erforderlich." - -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Token gespeichert." - -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -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 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/Tokens.php:115 -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/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:100 -msgid "Guest Access Tokens" -msgstr "Gastzugangstoken" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Anmeldename" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Anmeldepasswort" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Läuft ab (jjjj-mm-tt)" - -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "Their Settings" -msgstr "Deren Einstellungen" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:35 -msgid "Name and Secret are required" -msgstr "Name und Geheimnis werden benötigt" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:83 -msgid "Add OAuth2 application" -msgstr "OAuth2 Anwendung hinzufügen" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Name der Anwendung" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Umleitung" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -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/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -msgid "Grant Types" -msgstr "Genehmigungsarten" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "leave blank unless your application sepcifically requires this" -msgstr "Frei lassen, es sei denn die Anwendung verlangt dies." - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Authorization scope" -msgstr "Rahmen der Berechtigungen" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:102 -msgid "OAuth2 Application not found." -msgstr "OAuth2 Anwendung konnte nicht gefunden werden" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Anwendung hinzufügen" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:147 -msgid "Connected OAuth2 Apps" -msgstr "Verbundene OAuth2 Anwendungen" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Kein Name" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" - -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." - -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." - -#: ../../Zotlabs/Module/Settings/Account.php:32 -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/Account.php:40 -msgid "Technical skill level updated" -msgstr "Technische Qualifikationsstufe aktualisiert" - -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "Passwortüberprüfung fehlgeschlagen." - -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." - -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." - -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." -msgstr "Kennwort geändert." - -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." - -#: ../../Zotlabs/Module/Settings/Account.php:112 -msgid "Account Settings" -msgstr "Konto-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" -msgstr "Aktuelles Passwort" - -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" -msgstr "Gib ein neues Passwort ein" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" -msgstr "Bestätige das neue Passwort" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" - -#: ../../Zotlabs/Module/Settings/Account.php:120 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Konto entfernen" - -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" -msgstr "Dieses Konto inklusive all seiner Kanäle löschen" - -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert." - -#: ../../Zotlabs/Module/Settings/Featured.php:38 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "Voreinstellung für maximalen Beziehungsgrad" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "0-99 - Standard 99" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "Voreinstellung für minimalen Beziehungsgrad" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "0-99 - Standard 0" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "Beziehungsgrad-Schieberegler-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 -msgid "Addon Settings" -msgstr "Addon-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Featured.php:68 -msgid "Please save/submit changes to any panel before opening another." -msgstr "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest." - -#: ../../Zotlabs/Module/Settings/Display.php:139 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Theme Settings" -msgstr "Design-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Design-Einstellungen" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Content Settings" -msgstr "Inhaltseinstellungen" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Anzeige-Design:" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Select scheme" -msgstr "Schema wählen" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Preload images before rendering the page" -msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -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/Display.php:200 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Show emoticons (smilies) as images" -msgstr "Emoticons (Smilies) als Bilder anzeigen" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Provide channel menu in navigation bar" -msgstr "Kanal-Menü in der Navigationsleiste zur Verfügung stellen" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Default: channel menu located in app menu" -msgstr "Voreinstellung: Kanal-Menü ist im App-Menü integriert" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Manual conversation updates" -msgstr "Manuelle Konversationsaktualisierung" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen." - -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" - -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on grid page" -msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -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/Display.php:213 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" - -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" -msgstr "Name ist erforderlich" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "Symbol-URL" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optional" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Die Anwendung wurde nicht gefunden." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "Verbundene Apps" - -#: ../../Zotlabs/Module/Embedphotos.php:140 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 -#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../Zotlabs/Module/Embedphotos.php:156 -#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:712 -#: ../../Zotlabs/Module/Profile_photo.php:458 -#: ../../Zotlabs/Module/Cover_photo.php:362 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 -#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 -msgid "Upload" -msgstr "Hochladen" - -#: ../../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/Thing.php:120 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:57 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../Zotlabs/Module/Notify.php:65 -#: ../../Zotlabs/Module/Notifications.php:61 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "Verbindung hinzugefügt" - -#: ../../Zotlabs/Module/Import.php:144 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." - -#: ../../Zotlabs/Module/Import.php:158 -msgid "No channel. Import failed." -msgstr "Kein Kanal. Import fehlgeschlagen." - -#: ../../Zotlabs/Module/Import.php:482 -#: ../../addon/diaspora/import_diaspora.php:139 -msgid "Import completed." -msgstr "Import abgeschlossen." - -#: ../../Zotlabs/Module/Import.php:510 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." - -#: ../../Zotlabs/Module/Import.php:515 -msgid "Import Channel" -msgstr "Kanal importieren" - -#: ../../Zotlabs/Module/Import.php:516 -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/Import.php:518 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" - -#: ../../Zotlabs/Module/Import.php:519 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:520 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" - -#: ../../Zotlabs/Module/Import.php:521 -msgid "Your old login password" -msgstr "Dein altes Passwort" - -#: ../../Zotlabs/Module/Import.php:522 -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/Import.php:523 -msgid "Make this hub my primary location" -msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." - -#: ../../Zotlabs/Module/Import.php:524 -msgid "Move this channel (disable all previous locations)" -msgstr "Verschiebe diesen Kanal (deaktiviere alle vorherigen Adressen/Klone)" - -#: ../../Zotlabs/Module/Import.php:525 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Importiere die Beiträge einiger Monate, sofern möglich (beschränkt durch verfügbaren Speicher)" - -#: ../../Zotlabs/Module/Import.php:526 -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/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 -#: ../../include/channel.php:2318 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2320 -msgid "Authenticate" -msgstr "Authentifizieren" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Berechtigung verweigert." - -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 -msgid "Import" -msgstr "Import" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "VCard" - -#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Apps.php:51 -msgid "Manage apps" -msgstr "Apps verwalten" - -#: ../../Zotlabs/Module/Apps.php:52 -msgid "Create new app" -msgstr "Neue App erstellen" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 -#, 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:253 -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/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Active" -msgstr "Aktiv" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Blocked" -msgstr "Blockiert" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Ignored" -msgstr "Ignoriert" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Hidden" -msgstr "Versteckt" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Archived/Unreachable" -msgstr "Archiviert/Unerreichbar" - -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 -#: ../../Zotlabs/Module/Notifications.php:52 -#: ../../include/conversation.php:1717 -msgid "New" -msgstr "Neu" - -#: ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 -msgid "All" -msgstr "Alle" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "Aktive Verbindungen" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "Zeige die aktiven Verbindungen an" - -#: ../../Zotlabs/Module/Connections.php:147 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "Neue Verbindungen" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show archived/unreachable connections" -msgstr "Nur archivierte/unerreichbare Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:188 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:203 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Pending approval" -msgstr "Wartet auf Genehmigung" - -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Archived" -msgstr "Archiviert" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Not connected at this location" -msgstr "An diesem Ort nicht verbunden" - -#: ../../Zotlabs/Module/Connections.php:279 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Delete connection" -msgstr "Verbindung löschen" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Channel address" -msgstr "Kanaladresse" - -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Network" -msgstr "Netzwerk" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Call" -msgstr "Anruf" - -#: ../../Zotlabs/Module/Connections.php:298 -msgid "Status" -msgstr "Status" - -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Connected" -msgstr "Verbunden" - -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Approve connection" -msgstr "Verbindung genehmigen" - -#: ../../Zotlabs/Module/Connections.php:304 -msgid "Ignore connection" -msgstr "Verbindung ignorieren" - -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Ignore" -msgstr "Ignorieren" - -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Recent activity" -msgstr "Kürzliche Aktivitäten" - -#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/text.php:973 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "Verbindung suchen" - -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Finde" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "Beitrag" - -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "Source of Item" -msgstr "Quelle des Elements" - -#: ../../Zotlabs/Module/Bookmarks.php:56 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../Zotlabs/Module/Bookmarks.php:90 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -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 -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/Photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../Zotlabs/Module/Photos.php:551 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../Zotlabs/Module/Photos.php:600 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../Zotlabs/Module/Photos.php:646 -#, 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:649 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../Zotlabs/Module/Photos.php:691 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" - -#: ../../Zotlabs/Module/Photos.php:696 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" - -#: ../../Zotlabs/Module/Photos.php:699 -msgid "Description (optional)" -msgstr "Beschreibung (optional)" - -#: ../../Zotlabs/Module/Photos.php:785 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:787 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 -msgid "Add Photos" -msgstr "Fotos hinzufügen" - -#: ../../Zotlabs/Module/Photos.php:892 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../Zotlabs/Module/Photos.php:894 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../Zotlabs/Module/Photos.php:952 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" - -#: ../../Zotlabs/Module/Photos.php:960 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../Zotlabs/Module/Photos.php:975 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../Zotlabs/Module/Photos.php:1059 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../Zotlabs/Module/Photos.php:1060 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../Zotlabs/Module/Photos.php:1063 -msgid "Move photo to album" -msgstr "Foto in Album verschieben" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../Zotlabs/Module/Photos.php:1065 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../Zotlabs/Module/Photos.php:1070 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../Zotlabs/Module/Photos.php:1078 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../Zotlabs/Module/Photos.php:1081 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 -#: ../../include/conversation.php:785 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:749 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 -#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 -msgid "View all" -msgstr "Alles anzeigen" - -#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1981 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:661 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 -#: ../../include/conversation.php:1984 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1265 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" - -#: ../../Zotlabs/Module/Photos.php:1274 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../Zotlabs/Module/Photos.php:1279 -msgid "Map" -msgstr "Karte" - -#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "Schließen" - -#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 -#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 -msgid "Profile Unavailable." -msgstr "Profil nicht verfügbar." - -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 -msgid "Not found" -msgstr "Nicht gefunden" - -#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 -#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 -msgid "Invalid channel" -msgstr "Ungültiger Kanal" - -#: ../../Zotlabs/Module/Wiki.php:124 -msgid "Error retrieving wiki" -msgstr "Fehler beim Abrufen des Wiki" - -#: ../../Zotlabs/Module/Wiki.php:131 -msgid "Error creating zip file export folder" -msgstr "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses " - -#: ../../Zotlabs/Module/Wiki.php:182 -msgid "Error downloading wiki: " -msgstr "Fehler beim Herunterladen des Wiki:" - -#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 -#: ../../include/nav.php:494 -msgid "Wikis" -msgstr "Wikis" - -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Download" -msgstr "Herunterladen" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 -msgid "Create New" -msgstr "Neu anlegen" - -#: ../../Zotlabs/Module/Wiki.php:207 -msgid "Wiki name" -msgstr "Name des Wiki" - -#: ../../Zotlabs/Module/Wiki.php:208 -msgid "Content type" -msgstr "Inhaltstyp" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 -#: ../../include/text.php:1869 -msgid "Markdown" -msgstr "Markdown" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 -msgid "BBcode" -msgstr "BBcode" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 -msgid "Text" -msgstr "Text" - -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 -msgid "Type" -msgstr "Typ" - -#: ../../Zotlabs/Module/Wiki.php:211 -msgid "Any type" -msgstr "Alle Arten" - -#: ../../Zotlabs/Module/Wiki.php:218 -msgid "Lock content type" -msgstr "Inhaltstyp sperren" - -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Create a status post for this wiki" -msgstr "Erzeuge einen Statusbeitrag für dieses Wiki" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Edit Wiki Name" -msgstr "Wiki-Namen bearbeiten" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "Wiki not found" -msgstr "Wiki nicht gefunden" - -#: ../../Zotlabs/Module/Wiki.php:286 -msgid "Rename page" -msgstr "Seite umbenennen" - -#: ../../Zotlabs/Module/Wiki.php:307 -msgid "Error retrieving page content" -msgstr "Fehler beim Abrufen des Seiteninhalts" - -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 -msgid "New page" -msgstr "Neue Seite" - -#: ../../Zotlabs/Module/Wiki.php:345 -msgid "Revision Comparison" -msgstr "Revisionsvergleich" - -#: ../../Zotlabs/Module/Wiki.php:346 -msgid "Revert" -msgstr "Rückgängig machen" - -#: ../../Zotlabs/Module/Wiki.php:353 -msgid "Short description of your changes (optional)" -msgstr "Kurze Beschreibung Ihrer Änderungen (optional)" - -#: ../../Zotlabs/Module/Wiki.php:362 -msgid "Source" -msgstr "Quelle" - -#: ../../Zotlabs/Module/Wiki.php:372 -msgid "New page name" -msgstr "Neuer Seitenname" - -#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 -msgid "Embed image from photo albums" -msgstr "Bild aus Fotoalben einbetten" - -#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 -msgid "Embed an image from your albums" -msgstr "Betten Sie ein Bild aus Ihren Alben ein" - -#: ../../Zotlabs/Module/Wiki.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 -msgid "OK" -msgstr "Ok" - -#: ../../Zotlabs/Module/Wiki.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:368 -#: ../../include/conversation.php:1320 -msgid "Choose images to embed" -msgstr "Wählen Sie Bilder zum Einbetten aus" - -#: ../../Zotlabs/Module/Wiki.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:369 -#: ../../include/conversation.php:1321 -msgid "Choose an album" -msgstr "Wählen Sie ein Album aus" - -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:370 -msgid "Choose a different album" -msgstr "Wählen Sie ein anderes Album aus" - -#: ../../Zotlabs/Module/Wiki.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:371 -#: ../../include/conversation.php:1323 -msgid "Error getting album list" -msgstr "Fehler beim Holen der Albenliste" - -#: ../../Zotlabs/Module/Wiki.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:372 -#: ../../include/conversation.php:1324 -msgid "Error getting photo link" -msgstr "Fehler beim Holen des Fotolinks" - -#: ../../Zotlabs/Module/Wiki.php:386 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:373 -#: ../../include/conversation.php:1325 -msgid "Error getting album" -msgstr "Fehler beim Holen des Albums" - -#: ../../Zotlabs/Module/Wiki.php:462 -msgid "Error creating wiki. Invalid name." -msgstr "Fehler beim Erstellen des Wiki. Ungültiger Name." - -#: ../../Zotlabs/Module/Wiki.php:469 -msgid "A wiki with this name already exists." -msgstr "Es existiert bereits ein Wiki mit diesem Namen." - -#: ../../Zotlabs/Module/Wiki.php:482 -msgid "Wiki created, but error creating Home page." -msgstr "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite" - -#: ../../Zotlabs/Module/Wiki.php:489 -msgid "Error creating wiki" -msgstr "Fehler beim Erstellen des Wiki" - -#: ../../Zotlabs/Module/Wiki.php:512 -msgid "Error updating wiki. Invalid name." -msgstr "Fehler beim Aktualisieren des Wikis. Ungültiger Name." - -#: ../../Zotlabs/Module/Wiki.php:532 -msgid "Error updating wiki" -msgstr "Fehler beim Aktualisieren des Wikis" - -#: ../../Zotlabs/Module/Wiki.php:547 -msgid "Wiki delete permission denied." -msgstr "Wiki-Löschberechtigung verweigert." - -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error deleting wiki" -msgstr "Fehler beim Löschen des Wiki" - -#: ../../Zotlabs/Module/Wiki.php:590 -msgid "New page created" -msgstr "Neue Seite erstellt" - -#: ../../Zotlabs/Module/Wiki.php:711 -msgid "Cannot delete Home" -msgstr "Kann die Startseite nicht löschen" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Current Revision" -msgstr "Aktuelle Revision" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Selected Revision" -msgstr "Ausgewählte Revision" - -#: ../../Zotlabs/Module/Wiki.php:825 -msgid "You must be authenticated." -msgstr "Sie müssen authenzifiziert sein." - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "auf Vollbildmodus umschalten" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Layout aktualisiert." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." - -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../Zotlabs/Module/Pdledit.php:68 -msgid "(modified)" -msgstr "(geändert)" - -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../Zotlabs/Module/Pdledit.php:85 -msgid "Layout not found." -msgstr "Layout nicht gefunden." - -#: ../../Zotlabs/Module/Pdledit.php:91 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout Help" -msgstr "Layout-Hilfe" - -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Edit another layout" -msgstr "Ein weiteres Layout bearbeiten" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "System layout" -msgstr "System-Layout" - -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 -#: ../../include/conversation.php:1092 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../Zotlabs/Module/Poke.php:183 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" - -#: ../../Zotlabs/Module/Poke.php:186 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../Zotlabs/Module/Poke.php:187 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" - -#: ../../Zotlabs/Module/Poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../Zotlabs/Module/Poke.php:195 -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:198 ../../Zotlabs/Module/Poke.php:199 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:56 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." - -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:741 -msgid "Profile Photos" -msgstr "Profilfotos" - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:159 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." - -#: ../../Zotlabs/Module/Profile_photo.php:218 -#: ../../addon/openclipatar/openclipatar.php:298 -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:225 -#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:197 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:214 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:307 -#: ../../Zotlabs/Module/Cover_photo.php:322 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." - -#: ../../Zotlabs/Module/Profile_photo.php:455 -#: ../../Zotlabs/Module/Cover_photo.php:359 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Use Photo for Profile" -msgstr "Foto für Profil verwenden" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use" -msgstr "Verwenden" - -#: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:364 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "Use a photo from your albums" -msgstr "Ein Foto aus meinen Alben verwenden" - -#: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../Zotlabs/Module/Cover_photo.php:376 -msgid "Select existing photo" -msgstr "Wähle ein vorhandenes Foto aus" - -#: ../../Zotlabs/Module/Profile_photo.php:492 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Crop Image" -msgstr "Bild zuschneiden" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:394 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." - -#: ../../Zotlabs/Module/Profile_photo.php:495 -#: ../../Zotlabs/Module/Cover_photo.php:396 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "Abwesend" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "Online" - -#: ../../Zotlabs/Module/Item.php:194 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../Zotlabs/Module/Item.php:477 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../Zotlabs/Module/Item.php:874 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." - -#: ../../Zotlabs/Module/Item.php:1019 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../Zotlabs/Module/Item.php:1055 -msgid "Your comment is awaiting approval." -msgstr "Dein Kommentar muss noch bestätigt werden." - -#: ../../Zotlabs/Module/Item.php:1160 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." - -#: ../../Zotlabs/Module/Item.php:1189 -#, 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:1196 -#, 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/Ping.php:330 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" - -#: ../../Zotlabs/Module/Ping.php:383 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../Zotlabs/Module/Ping.php:407 -msgid "requires approval" -msgstr "Zustimmung erforderlich" - -#: ../../Zotlabs/Module/Ping.php:417 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" - -#: ../../Zotlabs/Module/Ping.php:435 -msgid "[today]" -msgstr "[Heute]" - -#: ../../Zotlabs/Module/Ping.php:444 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../Zotlabs/Module/Ping.php:477 -msgid "shared a file with you" -msgstr "hat eine Datei mit Dir geteilt" - -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." -msgstr "Ungültiges Element." - -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 -#: ../../Zotlabs/Module/Display.php:175 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 -#: ../../include/help.php:81 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: ../../Zotlabs/Module/Page.php:173 -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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." - -#: ../../Zotlabs/Module/Connedit.php:302 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" - -#: ../../Zotlabs/Module/Connedit.php:427 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." - -#: ../../Zotlabs/Module/Connedit.php:475 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." - -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." - -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 -#: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:114 -msgid "View Profile" -msgstr "Profil ansehen" - -#: ../../Zotlabs/Module/Connedit.php:597 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" - -#: ../../Zotlabs/Module/Connedit.php:601 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abrufen" - -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Photo" -msgstr "Foto aktualisieren" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated photo" -msgstr "Aktualisiertes Profilfoto abrufen" - -#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" - -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "This connection is blocked!" -msgstr "Die Verbindung ist geblockt!" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Unignore" -msgstr "Nicht ignorieren" - -#: ../../Zotlabs/Module/Connedit.php:633 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" - -#: ../../Zotlabs/Module/Connedit.php:634 -msgid "This connection is ignored!" -msgstr "Die Verbindung wird ignoriert!" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Archive" -msgstr "Archivieren" - -#: ../../Zotlabs/Module/Connedit.php:641 -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:642 -msgid "This connection is archived!" -msgstr "Die Verbindung ist archiviert!" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Unhide" -msgstr "Wieder sichtbar machen" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Hide" -msgstr "Verstecken" - -#: ../../Zotlabs/Module/Connedit.php:649 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" - -#: ../../Zotlabs/Module/Connedit.php:650 -msgid "This connection is hidden!" -msgstr "Die Verbindung ist versteckt!" - -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "Delete this connection" -msgstr "Verbindung löschen" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Fetch Vcard" -msgstr "Vcard abrufen" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Fetch electronic calling card for this connection" -msgstr "Rufe eine digitale Visitenkarte für diese Verbindung ab" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Open Individual Permissions section by default" -msgstr "Öffne standardmäßig den Bereich für individuelle Berechtigungen" - -#: ../../Zotlabs/Module/Connedit.php:702 -msgid "Affinity" -msgstr "Beziehung" - -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Open Set Affinity section by default" -msgstr "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen" - -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 -msgid "Me" -msgstr "Ich" - -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 -msgid "Family" -msgstr "Familie" - -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "Filter" -msgstr "Filter" - -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Open Custom Filter section by default" -msgstr "Öffne standardmäßig den Bereich für benutzerdefinierte Filter" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Set Affinity" -msgstr "Beziehung festlegen" - -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Set Profile" -msgstr "Profil festlegen" - -#: ../../Zotlabs/Module/Connedit.php:790 -msgid "Set Affinity & Profile" -msgstr "Beziehung und Profile festlegen" - -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This connection is unreachable from this location." -msgstr "Diese Verbindung ist von diesem Ort unerreichbar." - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "This connection may be unreachable from other channel locations." -msgstr "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein." - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Location independence is not supported by their network." -msgstr "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." - -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -#: ../../Zotlabs/Widget/Settings_menu.php:117 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" - -#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" - -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" - -#: ../../Zotlabs/Module/Connedit.php:851 -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:852 ../../Zotlabs/Module/Defperms.php:240 -msgid "Permission role" -msgstr "Berechtigungsrolle" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 -msgid "Loading" -msgstr "Lädt..." - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 -msgid "Add permission role" -msgstr "Berechtigungsrolle hinzufügen" - -#: ../../Zotlabs/Module/Connedit.php:860 -msgid "This connection's primary address is" -msgstr "Die Hauptadresse der Verbindung ist" - -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Available locations:" -msgstr "Verfügbare Klone:" - -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 -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:867 -msgid "Connection Tools" -msgstr "Verbindungswerkzeuge" - -#: ../../Zotlabs/Module/Connedit.php:869 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" - -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Bewertung" - -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Slide to adjust your rating" -msgstr "Verschieben, um Deine Bewertung einzustellen" - -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 -msgid "Optionally explain your rating" -msgstr "Optional kannst Du Deine Bewertung begründen" - -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Custom Filter" -msgstr "Benutzerdefinierter Filter" - -#: ../../Zotlabs/Module/Connedit.php:875 -msgid "Only import posts with this text" -msgstr "Nur Beiträge mit diesem Text importieren" - -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -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:876 -msgid "Do not import posts with this text" -msgstr "Beiträge mit diesem Text nicht importieren" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "This information is public!" -msgstr "Diese Information ist öffentlich!" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Connection Pending Approval" -msgstr "Verbindung wartet auf Bestätigung" - -#: ../../Zotlabs/Module/Connedit.php:888 -#, 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:895 -msgid "" -"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." -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:896 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" - -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "Details" -msgstr "Details" - -#: ../../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:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 -#: ../../include/conversation.php:1435 -msgid "Encrypt text" -msgstr "Text verschlüsseln" - -#: ../../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:250 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "No chatrooms available" -msgstr "Keine Chaträume verfügbar" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "Expiration" -msgstr "Verfall" - -#: ../../Zotlabs/Module/Chat.php:260 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 -#: ../../include/conversation.php:1834 ../../include/nav.php:401 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 -#: ../../include/nav.php:409 -msgid "Files" -msgstr "Dateien" - -#: ../../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:2423 -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: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/Layouts.php:184 ../../include/text.php:2424 -msgid "Layouts" -msgstr "Layouts" - -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 -#: ../../include/nav.php:176 ../../include/nav.php:280 -#: ../../include/help.php:68 ../../include/help.php:74 -msgid "Help" -msgstr "Hilfe" - -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" -msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" - -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" -msgstr "Layout-Beschreibung" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "PDL-Datei herunterladen" - -#: ../../Zotlabs/Module/Cloud.php:120 -msgid "Please refresh page" -msgstr "Bitte die Seite neu laden" - -#: ../../Zotlabs/Module/Cloud.php:123 -msgid "Unknown error" -msgstr "Unbekannter Fehler" - -#: ../../Zotlabs/Module/Email_validation.php:24 -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "Überprüfung des Verifizierungscodes fehlgeschlagen." - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "Email-Überprüfung erforderlich" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint." - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "Email erneut versenden" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "Verifizierungscode" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "Beitrag nicht gefunden." - -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:352 -msgid "post" -msgstr "Beitrag" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2013 -msgid "comment" -msgstr "Kommentar" - -#: ../../Zotlabs/Module/Tagger.php:119 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" - -#: ../../Zotlabs/Module/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/Defperms.php:239 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Ist dies aktiviert, werden Verbindungsanfragen ohne Deine aktive Zustimmung bestätigt." - -#: ../../Zotlabs/Module/Defperms.php:246 -msgid "Automatic approval settings" -msgstr "Einstellungen für automatische Bestätigung" - -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "Einige individuelle Berechtigungen können basierend auf Deinen Kanal- und Privatsphäre-Einstellungen vorbelegt oder gesperrt sein." - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "Unbekannte Anwendung" - -#: ../../Zotlabs/Module/Authorize.php:22 -msgid "Authorize" -msgstr "Berechtigen" - -#: ../../Zotlabs/Module/Authorize.php:23 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "Willst du die Anwendung %s dazu berechtigen auf die Daten deines Kanals zuzugreifen?" - -#: ../../Zotlabs/Module/Authorize.php:25 -msgid "Allow" -msgstr "Erlauben" - -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppe wurde erstellt." - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Gruppe konnte nicht erstellt werden." - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4181 -msgid "Privacy group not found." -msgstr "Gruppe nicht gefunden." - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppe wurde aktualisiert." - -#: ../../Zotlabs/Module/Group.php:92 -msgid "Create a group of channels." -msgstr "Erstelle eine Gruppe für Kanäle." - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 -msgid "Privacy group name: " -msgstr "Gruppenname:" - -#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Privacy group removed." -msgstr "Gruppe wurde entfernt." - -#: ../../Zotlabs/Module/Group.php:115 -msgid "Unable to remove privacy group." -msgstr "Gruppe konnte nicht entfernt werden." - -#: ../../Zotlabs/Module/Group.php:185 -msgid "Privacy group editor" -msgstr "Gruppeneditor" - -#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "Mitglieder" - -#: ../../Zotlabs/Module/Group.php:201 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" - -#: ../../Zotlabs/Module/Group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "Profil-" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "Neues Profil erstellt." - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "Profil-Name erforderlich." - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "Familienstand" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "Gefällt" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "Religion" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: ../../Zotlabs/Module/Profiles.php:486 -#: ../../addon/openid/MysqlProvider.php:74 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "Webseite" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "Hobbys/Interessen" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Deine Verbindungen vor Betrachtern dieses Profils verbergen" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "Dieses Profil ansehen" - -#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1319 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "Profilwerkzeuge" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "Titelbild ändern" - -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 -msgid "Change profile photo" -msgstr "Profilfoto ändern" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" - -#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 -msgid "Personal" -msgstr "Persönlich" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "Beziehung" - -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "Dein Geschlecht" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "Familienstand" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "Sexuelle Orientierung" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "Profilname" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil." - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "Dein voller Name" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "Titel/Beschreibung" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "Straße und Hausnummer" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "Wohnort" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "Region/Bundesstaat" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "Postleitzahl" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "Wer (falls anwendbar)" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "Seit (Datum)" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "Erzähle uns ein wenig von Dir" - -#: ../../Zotlabs/Module/Profiles.php:767 -#: ../../addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" -msgstr "Homepage-URL" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "Heimatort" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "Politische Ansichten" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "Religiöse Ansichten" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "Fernsehen" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "Liebe/Romantik" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "Schule/Ausbildung" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "Kontaktinformation und soziale Netzwerke" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "Meine anderen Kanäle" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "Kommunikation" - -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 -msgid "Profile Image" -msgstr "Profilfoto:" - -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 -#: ../../include/nav.php:117 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "Diese Seite ist nur für Mitglieder verfügbar" - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "Willkommen" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "Was möchtest Du gerne tun?" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest." - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "Ein Profilfoto hochladen" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "Ein Titelbild hochladen" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "Dein Standardprofil bearbeiten" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 -msgid "View friend suggestions" -msgstr "Freundschafts- und Verbindungsvorschläge ansehen" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "Das Kanalverzeichnis ansehen" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "Deine Kanaleinstellungen ansehen/bearbeiten" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "Die Website-/Projektdokumentation ansehen" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "Deine Kanal-Startseite aufrufen" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst" - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)" - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert." - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "Seiten-Link" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../Zotlabs/Module/Manage.php:173 -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:174 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" - -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 -#: ../../include/features.php:123 ../../include/nav.php:458 -msgid "Cards" -msgstr "Karten" - -#: ../../Zotlabs/Module/Cards.php:99 -msgid "Add Card" -msgstr "Karte hinzufügen" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" - -#: ../../Zotlabs/Module/Siteinfo.php:18 -msgid "About this site" -msgstr "Über diese Seite" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -msgid "Site Name" -msgstr "Seitenname" - -#: ../../Zotlabs/Module/Siteinfo.php:23 -msgid "Administrator" -msgstr "Administrator" - -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Software and Project information" -msgstr "Software und Projektinformationen" - -#: ../../Zotlabs/Module/Siteinfo.php:27 -msgid "This site is powered by $Projectname" -msgstr "Diese Website wird bereitgestellt durch $Projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Project homepage" -msgstr "Projekt-Website" - -#: ../../Zotlabs/Module/Siteinfo.php:32 -msgid "Developer homepage" -msgstr "Entwickler-Website" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Keine Bewertungen" - -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1082 -msgid "Ratings" -msgstr "Bewertungen" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Bewertung: " - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Webseite: " - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Beschreibung: " - -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import Webpage Elements" -msgstr "Webseitenelemente importieren" - -#: ../../Zotlabs/Module/Webpages.php:55 -msgid "Import selected" -msgstr "Import ausgewählt" - -#: ../../Zotlabs/Module/Webpages.php:78 -msgid "Export Webpage Elements" -msgstr "Webseitenelemente exportieren" - -#: ../../Zotlabs/Module/Webpages.php:79 -msgid "Export selected" -msgstr "Exportieren ausgewählt" - -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 -#: ../../include/conversation.php:1915 ../../include/nav.php:481 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Actions" -msgstr "Aktionen" - -#: ../../Zotlabs/Module/Webpages.php:249 -msgid "Page Link" -msgstr "Seiten-Link" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Seitentitel" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Ungültiger Dateityp." - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Fehler beim Öffnen der ZIP-Datei" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "Ungültiger Ordnerpfad." - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "Keine Webseitenelemente erkannt." - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Import abgeschlossen." - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account" -" password." -msgstr "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden." - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 -#: ../../include/channel.php:599 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 -#: ../../include/channel.php:604 -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." - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "Kanalname/-adresse ändern" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "Neue Kanaladresse" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "Kanal umbenennen" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "Bearbeite Beitrag" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "Ungültige Beitrags-ID (mid)" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "keine Ergebnisse" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "aktualisiert" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "Zugriff verweigert" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "Mail widerrufen" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "Mail zugestellt" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Zustellungsbericht für %1$s" - -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Options" -msgstr "Optionen" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "Erneut zustellen" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Quelle erstellt." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Quelle aktualisiert." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Neue Quelle" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Name des Kanals" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Quelle nicht gefunden." - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Quelle bearbeiten" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Quelle löschen" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Quelle gelöscht" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." - -#: ../../Zotlabs/Module/Like.php:54 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" - -#: ../../Zotlabs/Module/Like.php:59 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." - -#: ../../Zotlabs/Module/Like.php:60 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." - -#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 -msgid "channel" -msgstr "Kanal" - -#: ../../Zotlabs/Module/Like.php:150 -msgid "thing" -msgstr "Sache" - -#: ../../Zotlabs/Module/Like.php:196 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." - -#: ../../Zotlabs/Module/Like.php:244 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." - -#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 -#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" - -#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1442 -#: ../../include/conversation.php:163 -#, 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:442 -#, 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:444 -#, 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:446 -#, 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:448 ../../addon/diaspora/Receiver.php:2072 -#, 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:450 ../../addon/diaspora/Receiver.php:2074 -#, 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:452 ../../addon/diaspora/Receiver.php:2076 -#, 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:564 -msgid "Action completed." -msgstr "Aktion durchgeführt." - -#: ../../Zotlabs/Module/Like.php:565 -msgid "Thank you." -msgstr "Vielen Dank." - -#: ../../Zotlabs/Module/Directory.php:106 -msgid "No default suggestions were found." -msgstr "Es wurden keine Standard Vorschläge gefunden." - -#: ../../Zotlabs/Module/Directory.php:255 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" - -#: ../../Zotlabs/Module/Directory.php:266 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../Zotlabs/Module/Directory.php:268 -msgid "Status: " -msgstr "Status:" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Homepage: " -msgstr "Webseite:" - -#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 -msgid "Age:" -msgstr "Alter:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 -#: ../../include/event.php:54 ../../include/event.php:86 -msgid "Location:" -msgstr "Ort:" - -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Description:" -msgstr "Beschreibung:" - -#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 -msgid "Hometown:" -msgstr "Heimatstadt:" - -#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 -msgid "About:" -msgstr "Über:" - -#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1052 ../../include/channel.php:1376 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "Verbinden" - -#: ../../Zotlabs/Module/Directory.php:339 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" - -#: ../../Zotlabs/Module/Directory.php:342 -msgid "Keywords: " -msgstr "Schlüsselwörter:" - -#: ../../Zotlabs/Module/Directory.php:345 -msgid "Don't suggest" -msgstr "Nicht vorschlagen" - -#: ../../Zotlabs/Module/Directory.php:347 -msgid "Common connections (estimated):" -msgstr "Gemeinsame Verbindungen (geschätzt):" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Global Directory" -msgstr "Globales Verzeichnis" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Finding:" -msgstr "Ergebnisse:" - -#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "next page" -msgstr "nächste Seite" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "previous page" -msgstr "vorherige Seite" - -#: ../../Zotlabs/Module/Directory.php:408 -msgid "Sort options" -msgstr "Sortieroptionen" - -#: ../../Zotlabs/Module/Directory.php:409 -msgid "Alphabetic" -msgstr "alphabetisch" - -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" - -#: ../../Zotlabs/Module/Directory.php:429 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../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/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../Zotlabs/Module/Mail.php:105 -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:160 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "Nachricht" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "An:" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1385 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "Absenden" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1430 -msgid "Set expiration date" -msgstr "Verfallsdatum" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "Zustellungsbericht" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "Unterhaltung löschen" - -#: ../../Zotlabs/Module/Mail.php:416 -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:420 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Deine Nachricht für %s (%s):" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../Zotlabs/Module/Pubsites.php:27 -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:33 -msgid "Hub URL" -msgstr "Hub-URL" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Zugriffstyp" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiken" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "Bewerten" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 -msgid "webpage" -msgstr "Webseite" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 -msgid "block" -msgstr "Block" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 -msgid "layout" -msgstr "Layout" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 -msgid "menu" -msgstr "Menü" - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "Gib einen Ordnernamen ein" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "oder wähle einen vorhanden Ordner aus (Doppelklick)" - -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 -msgid "Save to Folder" -msgstr "In Ordner speichern" - -#: ../../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/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..." - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "Die Registrierung auf diesem Hub ist nicht möglich." - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." - -#: ../../Zotlabs/Module/Register.php:202 -msgid "Register at another affiliated hub." -msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." - -#: ../../Zotlabs/Module/Register.php:212 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." - -#: ../../Zotlabs/Module/Register.php:238 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../Zotlabs/Module/Register.php:245 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website." - -#: ../../Zotlabs/Module/Register.php:250 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../Zotlabs/Module/Register.php:251 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../Zotlabs/Module/Register.php:252 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../Zotlabs/Module/Register.php:253 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "no" -msgstr "nein" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "yes" -msgstr "ja" - -#: ../../Zotlabs/Module/Register.php:274 -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:286 ../../boot.php:1570 -#: ../../include/nav.php:164 -msgid "Register" -msgstr "Registrieren" - -#: ../../Zotlabs/Module/Register.php:287 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen." - -#: ../../Zotlabs/Module/Cover_photo.php:136 -#: ../../Zotlabs/Module/Cover_photo.php:186 -msgid "Cover Photos" -msgstr "Cover Foto" - -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 -msgid "female" -msgstr "weiblich" - -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s hat ihr %2$s aktualisiert" - -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 -msgid "male" -msgstr "männlich" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s hat sein %2$s aktualisiert" - -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s hat sein/ihr %2$s aktualisiert" - -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 -msgid "cover photo" -msgstr "Cover Foto" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -msgid "Change Cover Photo" -msgstr "Titelbild ändern" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "Suche in der Dokumentation" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 -#: ../../include/nav.php:391 -msgid "About" -msgstr "Über" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "Administratoren" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "Entwickler" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "Tutorials" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "$Projectname-Dokumentation" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "Inhalt" - -#: ../../Zotlabs/Module/Display.php:394 -msgid "Article" -msgstr "Artikel" - -#: ../../Zotlabs/Module/Display.php:446 -msgid "Item has been removed." -msgstr "Der Beitrag wurde entfernt." - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Schlagwort entfernt" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" - -#: ../../Zotlabs/Module/Network.php:100 -msgid "No such group" -msgstr "Gruppe nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:142 -msgid "No such channel" -msgstr "Kanal nicht gefunden" - -#: ../../Zotlabs/Module/Network.php:147 -msgid "forum" -msgstr "Forum" - -#: ../../Zotlabs/Module/Network.php:159 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../Zotlabs/Module/Network.php:229 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" - -#: ../../Zotlabs/Module/Network.php:238 -msgid "Privacy group: " -msgstr "Gruppe:" - -#: ../../Zotlabs/Module/Network.php:265 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 -msgid "Invalid channel." -msgstr "Ungültiger Kanal." - -#: ../../Zotlabs/Module/Acl.php:361 -msgid "network" -msgstr "Netzwerk" - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" - -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../Zotlabs/Module/Filestorage.php:95 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../Zotlabs/Module/Filestorage.php:142 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../Zotlabs/Module/Filestorage.php:154 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../Zotlabs/Module/Filestorage.php:158 -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:159 -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:161 -msgid "Share this file" -msgstr "Diese Datei freigeben" - -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 -msgid "Show in your contacts shared folder" -msgstr "Im geteilten Ordner Deiner Kontakte anzeigen" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "Zeige gemeinsame Verbindungen" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "Email zur Verifizierung wurde erneut versendet" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "Erneutes Versenden der Email zur Verifizierung nicht möglich." - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Keine Verbindungen." - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "Verbindungen anzeigen" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "Blockierte Benutzerkonten" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "Abgelaufene Benutzerkonten" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "Ablaufende Benutzerkonten" - -#: ../../Zotlabs/Module/Admin.php:112 -msgid "Clones" -msgstr "Klone" - -#: ../../Zotlabs/Module/Admin.php:118 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: ../../Zotlabs/Module/Admin.php:132 -msgid "Your software should be updated" -msgstr "Die installierte Software sollte aktualisiert werden" - -#: ../../Zotlabs/Module/Admin.php:137 -msgid "Summary" -msgstr "Zusammenfassung" - -#: ../../Zotlabs/Module/Admin.php:140 -msgid "Registered accounts" -msgstr "Registrierte Konten" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Registered channels" -msgstr "Registrierte Kanäle" - -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Version" -msgstr "Version" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Repository version (master)" -msgstr "Repository-Version (master)" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Repository version (dev)" -msgstr "Repository-Version (dev)" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Webseite:" - -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "Karte bearbeiten" - -#: ../../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:108 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../Zotlabs/Module/Lostpass.php:68 -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:91 ../../boot.php:1598 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../Zotlabs/Module/Lostpass.php:96 -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:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "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:132 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../Zotlabs/Module/Notifications.php:62 -#: ../../Zotlabs/Lib/ThreadItem.php:408 -msgid "Mark all seen" -msgstr "Alle als gelesen markieren" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "0. Einsteiger/Basis" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "1. Anfänger - unerfahren, aber bereit zu lernen" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "2. Fortgeschritten - relativ komfortabel" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "3. Fortgeschritten - sehr komfortabel" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "4. Experte - Ich kann Computercode schreiben" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "5. Zauberer - ich kann wahrscheinlich mehr als Du" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "Fehler melden" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "My Chatrooms" -msgstr "Meine Chaträume" - -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" - -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Login" -msgstr "Anmelden" - -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Activity" -msgstr "Aktivität" - -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 -#: ../../include/features.php:96 ../../include/nav.php:497 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Lib/Apps.php:246 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 -msgid "Events" -msgstr "Termine" - -#: ../../Zotlabs/Lib/Apps.php:250 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../Zotlabs/Lib/Apps.php:252 -msgid "Mail" -msgstr "Mail" - -#: ../../Zotlabs/Lib/Apps.php:255 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:257 -msgid "Probe" -msgstr "Testen" - -#: ../../Zotlabs/Lib/Apps.php:258 -msgid "Suggest" -msgstr "Empfehlen" - -#: ../../Zotlabs/Lib/Apps.php:259 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../Zotlabs/Lib/Apps.php:260 -msgid "Invite" -msgstr "Einladen" - -#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "Funktionen" - -#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Sprache" - -#: ../../Zotlabs/Lib/Apps.php:263 -msgid "Post" -msgstr "Beitrag schreiben" - -#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../Zotlabs/Lib/Apps.php:407 -msgid "Purchase" -msgstr "Kaufen" - -#: ../../Zotlabs/Lib/Apps.php:411 -msgid "Undelete" -msgstr "Wieder hergestellt" - -#: ../../Zotlabs/Lib/Apps.php:419 -msgid "Add to app-tray" -msgstr "Zum App-Menü hinzufügen" - -#: ../../Zotlabs/Lib/Apps.php:420 -msgid "Remove from app-tray" -msgstr "Aus dem App-Menü entfernen" - -#: ../../Zotlabs/Lib/Apps.php:421 -msgid "Pin to navbar" -msgstr "An Navigationsleiste anpinnen" - -#: ../../Zotlabs/Lib/Apps.php:422 -msgid "Unpin from navbar" -msgstr "Von Navigationsleiste entfernen" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "Standard" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "Abonnent" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "Beitragender" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "Autor" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:93 -msgid "(No Title)" -msgstr "(Kein Titel)" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:107 -msgid "Wiki page create failed." -msgstr "Anlegen der Wiki-Seite fehlgeschlagen." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:120 -msgid "Wiki not found." -msgstr "Wiki nicht gefunden." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:131 -msgid "Destination name already exists" -msgstr "Zielname bereits vorhanden" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:163 -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -msgid "Page not found" -msgstr "Seite nicht gefunden" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:194 -msgid "Error reading page content" -msgstr "Fehler beim Lesen des Seiteninhalts" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:350 -#: ../../Zotlabs/Lib/NativeWikiPage.php:400 -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 -msgid "Error reading wiki" -msgstr "Fehler beim Lesen des Wiki" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:388 -msgid "Page update failed." -msgstr "Seitenaktualisierung fehlgeschlagen." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:422 -msgid "Nothing deleted" -msgstr "Nichts gelöscht" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:488 -msgid "Compare: object not found." -msgstr "Vergleichen: Objekt nicht gefunden." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:494 -msgid "Page updated" -msgstr "Seite aktualisiert" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:497 -msgid "Untitled" -msgstr "Ohne Titel" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:503 -msgid "Wiki resource_id required for git commit" -msgstr "Die resource_id des Wiki wird benötigt für den git commit." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:559 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "Nachricht" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 -#: ../../include/bbcode.php:914 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:106 -msgid "Only me" -msgstr "Nur ich" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "Öffentlich" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -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:150 -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:151 -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:152 -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:153 -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:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "Der Chatraum ist voll" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "$Projectname-Benachrichtigung" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 -#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "Danke." - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "Diese Email wurde von %1$s auf %2$s gesendet." - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an." - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Benachrichtigung] Neue Mail empfangen auf %s" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$shat dir auf %2$seine private Nachricht geschickt." - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "kommentierte" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "gefiel" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "missfiel" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]ein %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]dein %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1$d von %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "%1$shat einen Beitrag/eine Konversation kommentiert dem/der du folgst." - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen." - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "%1$s mag [zrl=%2$s]dein %3$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1$d von %2$s erhalten" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "%1$sgefällt ein Beitrag/eine Unterhaltung von dir." - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$shat etwas auf deiner Profilwand auf %2$sveröffentlicht" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "%1$s schrieb auf [zrl=%2$s]Deine Pinnwand[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Benachrichtigung] %s hat Dich erwähnt" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s hat dich auf %2$s getaggt" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "%1$s hat [zrl=%2$s]Dich getagged[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Benachrichtigung] %1$s hat Dich angestupst" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s hat dich auf %2$s angestupst" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s [zrl=%2$s]hat dich angestupst.[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s hat Deinen Beitrag auf %2$s getagged" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "%1$s hat [zrl=%2$s]Deinen Beitrag[/zrl] getagged" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Benachrichtigung] Verbindungsanfrage erhalten" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "Du hast auf %2$s eine neue Verbindung von %1$s erhalten." - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "Du hast [zrl=%1$s]eine neue Verbindungsanfrage[/zrl] von %2$s erhalten." - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Du hast einen Freundschaftsvorschlag von %1$s auf %2$s erhalten" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "" -"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "Du hast einen [zrl=%1$s]Freundschaftsvorschlag[/zrl] für %2$s von %3$s erhalten." - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "Name:" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "Foto:" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Benachrichtigung]" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "hat einen Beitrag vom %s bearbeitet" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "hat einen Kommentar vom %s bearbeitet" - -#: ../../Zotlabs/Lib/NativeWiki.php:151 -msgid "Wiki updated successfully" -msgstr "Wiki erfolgreich aktualisiert" - -#: ../../Zotlabs/Lib/NativeWiki.php:205 -msgid "Wiki files deleted successfully" -msgstr "Wiki-Dateien erfolgreich gelöscht" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "Aktualisierungsfehler auf %s" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." - -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 -msgid "Private Message" -msgstr "Private Nachricht" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 -msgid "Select" -msgstr "Auswählen" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will attend" -msgstr "Ich werde teilnehmen" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I might attend" -msgstr "Ich werde vielleicht teilnehmen" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I agree" -msgstr "Ich stimme zu" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I disagree" -msgstr "Ich lehne ab" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I abstain" -msgstr "Ich enthalte mich" - -#: ../../Zotlabs/Lib/ThreadItem.php:238 -msgid "Add Star" -msgstr "Stern hinzufügen" - -#: ../../Zotlabs/Lib/ThreadItem.php:239 -msgid "Remove Star" -msgstr "Stern entfernen" - -#: ../../Zotlabs/Lib/ThreadItem.php:240 -msgid "Toggle Star Status" -msgstr "Markierungsstatus (Stern) umschalten" - -#: ../../Zotlabs/Lib/ThreadItem.php:244 -msgid "starred" -msgstr "markiert" - -#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 -msgid "Message signature validated" -msgstr "Signatur überprüft" - -#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" - -#: ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "Add Tag" -msgstr "Tag hinzufügen" - -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 -msgid "like" -msgstr "mag" - -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 -msgid "dislike" -msgstr "verurteile" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Share This" -msgstr "Teilen" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "share" -msgstr "Teilen" - -#: ../../Zotlabs/Lib/ThreadItem.php:295 -msgid "Delivery Report" -msgstr "Zustellungsbericht" - -#: ../../Zotlabs/Lib/ThreadItem.php:313 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 -msgid "to" -msgstr "an" - -#: ../../Zotlabs/Lib/ThreadItem.php:348 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:349 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../Zotlabs/Lib/ThreadItem.php:350 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 -#, php-format -msgid "from %s" -msgstr "via %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:374 -msgid "Attend" -msgstr "Zusagen" - -#: ../../Zotlabs/Lib/ThreadItem.php:375 -msgid "Attendance Options" -msgstr "Zusageoptionen" - -#: ../../Zotlabs/Lib/ThreadItem.php:376 -msgid "Vote" -msgstr "Abstimmen" - -#: ../../Zotlabs/Lib/ThreadItem.php:377 -msgid "Voting Options" -msgstr "Abstimmungsoptionen" - -#: ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" - -#: ../../Zotlabs/Lib/ThreadItem.php:399 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" - -#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 -msgid "This is an unsaved preview" -msgstr "Dies ist eine nicht gespeicherte Vorschau" - -#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mehr anzeigen" - -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 -msgid "Bold" -msgstr "Fett" - -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 -msgid "Italic" -msgstr "Kursiv" - -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 -msgid "Underline" -msgstr "Unterstrichen" - -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 -msgid "Quote" -msgstr "Zitat" - -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 -msgid "Code" -msgstr "Code" - -#: ../../Zotlabs/Lib/ThreadItem.php:758 -msgid "Image" -msgstr "Bild" - -#: ../../Zotlabs/Lib/ThreadItem.php:759 -msgid "Attach File" -msgstr "Datei anhängen" - -#: ../../Zotlabs/Lib/ThreadItem.php:760 -msgid "Insert Link" -msgstr "Link einfügen" - -#: ../../Zotlabs/Lib/ThreadItem.php:761 -msgid "Video" -msgstr "Video" - -#: ../../Zotlabs/Lib/ThreadItem.php:771 -msgid "Your full name (required)" -msgstr "Ihr vollständiger Name (erforderlich)" - -#: ../../Zotlabs/Lib/ThreadItem.php:772 -msgid "Your email address (required)" -msgstr "Ihre E-Mail-Adresse (erforderlich)" - -#: ../../Zotlabs/Lib/ThreadItem.php:773 -msgid "Your website URL (optional)" -msgstr "Ihre Webseiten-URL (optional)" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." - -#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 -#: ../../addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 -msgid "parent" -msgstr "Übergeordnetes Verzeichnis" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 -msgid "Collection" -msgstr "Sammlung" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Prinzipal" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Adressbuch" - -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 -#: ../../include/nav.php:423 -msgid "Calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Posteingang für überwachte Kalender" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Postausgang für überwachte Kalender" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "Summe" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "Geteilt" - -#: ../../Zotlabs/Storage/Browser.php:277 -msgid "Add Files" -msgstr "Dateien hinzufügen" - -#: ../../Zotlabs/Storage/Browser.php:353 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Sie verwenden %1$s von Ihrem verfügbaren Dateispeicher." - -#: ../../Zotlabs/Storage/Browser.php:358 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Sie verwenden %1$s von %2$s verfügbarem Dateispeicher. (%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:369 -msgid "WARNING:" -msgstr "WARNUNG:" - -#: ../../Zotlabs/Storage/Browser.php:381 -msgid "Create new folder" -msgstr "Neuen Ordner anlegen" - -#: ../../Zotlabs/Storage/Browser.php:383 -msgid "Upload file" -msgstr "Datei hochladen" - -#: ../../Zotlabs/Storage/Browser.php:396 -msgid "Drop files here to immediately upload" -msgstr "Dateien zum sofortigen Hochladen hier fallen lassen" - -#: ../../Zotlabs/Widget/Forums.php:100 -msgid "Forums" -msgstr "Foren" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "Kanal auswählen" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "Lesen-schreiben" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "Nur Lesen" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "Meine Kalender" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "Geteilte Kalender" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "Diesen Kalender teilen" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "Kalendername und -farbe" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "Neuen Kalender erstellen" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "Kalendername" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "Kalenderwerkzeuge" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "Kalender importieren" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "Kalender zum Hineinimportieren auswählen" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "Adressbücher" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "Adressbuchname" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "Neues Adressbuch erstellen" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "Adressbuchname" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "Adressbuchwerkzeuge" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "Adressbuch importieren" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "Adressbuch zum Hineinimportieren auswählen" - -#: ../../Zotlabs/Widget/Appcategories.php:40 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 -msgid "Categories" -msgstr "Kategorien" - -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 -msgid "Everything" -msgstr "Alles" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "Kalender exportieren" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "Kalender importieren" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "HQ-Einstellungen" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "Neuen Beitrag erstellen" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "Kombinierte Anzeige" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "Eingang" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 -#: ../../include/nav.php:434 ../../include/nav.php:437 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "Übersicht" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "Aktivität" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wiki List" -msgstr "Wikiliste" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "Archive" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "Konversationen" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "Chatmitglieder" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 -msgid "add" -msgstr "hinzufügen" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Notizen" - -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:89 -msgid "Add new page" -msgstr "Neue Seite hinzufügen" - -#: ../../Zotlabs/Widget/Wiki_pages.php:83 -msgid "Wiki Pages" -msgstr "Wikiseiten" - -#: ../../Zotlabs/Widget/Wiki_pages.php:94 -msgid "Page name" -msgstr "Seitenname" - -#: ../../Zotlabs/Widget/Affinity.php:45 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "Aufgaben" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:470 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 -#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 -msgid "Tags" -msgstr "Schlagwörter" - -#: ../../Zotlabs/Widget/Newmember.php:24 -msgid "Profile Creation" -msgstr "Profilerstellung" - -#: ../../Zotlabs/Widget/Newmember.php:26 -msgid "Upload profile photo" -msgstr "Profilfoto hochladen" - -#: ../../Zotlabs/Widget/Newmember.php:27 -msgid "Upload cover photo" -msgstr "Titelbild hochladen" - -#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Find and Connect with others" -msgstr "Finden und Verbinden von/mit Anderen" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "View the directory" -msgstr "Verzeichnis anzeigen" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Manage your connections" -msgstr "Deine Verbindungen verwalten" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Communicate" -msgstr "Kommunizieren" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View your channel homepage" -msgstr "Deine Kanal-Startseite ansehen" - -#: ../../Zotlabs/Widget/Newmember.php:41 -msgid "View your network stream" -msgstr "Deine Netzwerk-Aktivitäten ansehen" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Documentation" -msgstr "Dokumentation" - -#: ../../Zotlabs/Widget/Newmember.php:58 -msgid "View public stream" -msgstr "Zeige öffentlichen Beitrags-Stream" - -#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 -msgid "New Member Links" -msgstr "Links für neue Mitglieder" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 -msgid "Admin" -msgstr "Administration" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "Konto-Einstellungen" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" - -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "Addon-Einstellungen" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" - -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "OAuth1 apps" -msgstr "OAuth1 Anwendungen" - -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "OAuth2 apps" -msgstr "OAuth2 Anwendungen" - -#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 -msgid "Permission Groups" -msgstr "Berechtigungsrollen" - -#: ../../Zotlabs/Widget/Settings_menu.php:125 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "Neue Netzwerk-Aktivitäten" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "Benachrichtigungen für neue Netzwerk-Aktivitäten" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "Zeige Deine Netzwerk-Aktivitäten" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "Alle Benachrichtigungen als gesehen markieren" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:141 -msgid "Show new posts only" -msgstr "Zeige nur neue Beiträge" - -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Filter by name" -msgstr "Nach Namen filtern" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "Neue Kanal-Aktivitäten" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "Benachrichtigungen für neue Kanal-Aktivitäten" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "Zeige Deine Kanal-Aktivitäten" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:138 -msgid "Mark all notifications seen" -msgstr "Alle Benachrichtigungen als gesehen markieren" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "Neue Mails" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "Benachrichtigungen für neue Mails" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "Zeige Deine persönlichen Mails" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "Alle Mails als gelesen markieren" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "Neue Termine" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "Benachrichtigungen für neue Termine" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "Termine ansehen" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "Benachrichtigungen für neue Verbindungen" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "Zeige alle Verbindungen" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "Neue Dateien" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "Benachrichtigungen für neue Dateien" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "Alle Notizen ansehen" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "Alle Notizen als gesehen markieren" - -#: ../../Zotlabs/Widget/Notifications.php:121 -msgid "New Registrations" -msgstr "Neue Registrierungen" - -#: ../../Zotlabs/Widget/Notifications.php:122 -msgid "New Registrations Notifications" -msgstr "Benachrichtigungen für neue Registrierungen" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "Public Stream Notifications" -msgstr "Benachrichtigungen für öffentlichen Beitrags-Stream" - -#: ../../Zotlabs/Widget/Notifications.php:135 -msgid "View the public stream" -msgstr "Zeige öffentlichen Beitrags-Stream" - -#: ../../Zotlabs/Widget/Notifications.php:150 -msgid "Sorry, you have got no notifications at the moment" -msgstr "Du hast momentan keine Benachrichtigungen" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "Quellkanal nicht gefunden." - -#: ../../boot.php:1569 -msgid "Create an account to access services and applications" -msgstr "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können." - -#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 -#: ../../include/nav.php:159 -msgid "Logout" -msgstr "Abmelden" - -#: ../../boot.php:1592 -msgid "Login/Email" -msgstr "Anmelden/E-Mail" - -#: ../../boot.php:1593 -msgid "Password" -msgstr "Kennwort" - -#: ../../boot.php:1594 -msgid "Remember me" -msgstr "Angaben speichern" - -#: ../../boot.php:1597 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: ../../boot.php:2354 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "[$Projectname] Webseiten-SSL-Fehler für %s" - -#: ../../boot.php:2359 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." - -#: ../../boot.php:2475 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "[$Projectname] Cron-Jobs laufen nicht auf %s" - -#: ../../boot.php:2480 -msgid "Cron/Scheduled tasks not running." -msgstr "Cron-Aufgaben laufen nicht." - -#: ../../boot.php:2481 ../../include/datetime.php:238 -msgid "never" -msgstr "Nie" - -#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 -msgid "Cover Photo" -msgstr "Cover Foto" - -#: ../../view/theme/redbasic_c/php/config.php:16 -#: ../../view/theme/redbasic_c/php/config.php:19 -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "Focus (Voreinstellung für Hubzilla)" - -#: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "Design-Einstellungen" - -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "Schmale Navigationsleiste" - -#: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" - -#: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "Farbe für die Icons der Navigationsleiste" - -#: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "Farbe für aktive Icons der Navigationsleiste" - -#: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "Linkfarbe" - -#: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "Farbe der Schrift des Banners" - -#: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "Hintergrundfarbe" - -#: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "Hintergrundbild" - -#: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge" - -#: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die gesamte Anwendung" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "Beispiele: 1rem, 100%, 16px" - -#: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Beiträge und Kommentare" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "Ecken-Radius" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "Beispiel: 4px" - -#: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "Leer lassen für Standardbreite" - -#: ../../view/theme/redbasic_c/php/config.php:115 -msgid "Left align page content" -msgstr "Seiteninhalt linksbündig anzeigen" - -#: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern" - -#: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren" - -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten." - -#: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:779 -msgid "Submit Settings" -msgstr "Einstellungen absenden" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "Lösche Tabellen beim Deinstallieren?" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "Wenn ausgewählt, werden die Rendezvous-Tabellen in der Datenbank gelöscht, sobald das Plugin deinstalliert wird." - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "Mapbox Zugangs-Token" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "Wenn Du ein Mapbox Zugangs-Token eingibst, werden die Kartendaten (Kacheln) damit von Mapbox geladen, anstatt von OpenStreetMap, welches die Voreinstellung ist." - -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "Rendezvous" - -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "Diese Identität wurde von einem anderen Mitglied aufgrund von Inaktivität gelöscht. Bitte klicke auf \"Neue Identität\" oder aktualisiere die Website im Browser, um eine neue Identität zu registrieren. Du kannst dabei den selben Namen verwenden." - -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "Willkommen bei Rendezvous!" - -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with" -" the other members, tap the GPS control. When your location is discovered, a" -" red dot will appear and others will be able to see you on the map." -msgstr "Gib Deinen Namen ein, um diesem Rendezvous beizutreten. Um Deinen Standort mit anderen Mitgliedern zu teilen, klicke auf das GPS Symbol. Sobald Dein Standort ermittelt ist, erscheint ein roter Punkt, und die Anderen werden Dich auf der Karte sehen können." - -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "Lasst uns hier treffen" - -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "Neue Markierung" - -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "Markierung bearbeiten" - -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "Neue Identität" - -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "Markierung löschen" - -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "Mitglied löschen" - -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "Annäherungsalarm bearbeiten" - -#: ../../addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius" -" of you.

Enter a radius in meters (0 to disable):" -msgstr "Ein Annäherungsalarm wird ausgelöst werden, sobald sich dieses Mitglied innerhalb eines bestimmten Radius von Dir aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "Entfernung" - -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "Entfernung für Annäherungsalarm (in Metern)" - -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the" -" marker location.

Enter a radius in meters (0 to disable):" -msgstr "Ein Annäherungsalarm wird ausgelöst werden, sobald Du Dich innerhalb eines bestimmten Radius der Markierung aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):" - -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "Annäherungsalarm für Markierung" - -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "Erinnerungshinweis" - -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "Gib eine Nachricht ein, die angezeigt werden soll, wenn Du Dich in der festgelegten Nähe befindest..." - -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "Neues Rendezvous hinzufügen" - -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or" -" share their own locations with the group." -msgstr "Erstelle ein neues Rendezvous und teile den Zugriffslink mit allen, die Du in die Gruppe einladen möchtest. Die, die den Link öffnen, werden Mitglieder des Rendezvous. Sie können die Standorte der anderen Mitglieder sehen, Marker zur Karte hinzufügen oder ihre eigenen Standorte mit der Gruppe teilen." - -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" -msgstr "Du hast kein Rendezvous. Drücke den Knopf oben, um ein Rendezvous zu erstellen!" - -#: ../../addon/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "Einige Einstellungen" - -#: ../../addon/skeleton/skeleton.php:61 -msgid "A setting" -msgstr "Eine Einstellung" - -#: ../../addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" -msgstr "Skeleton Einstellungen" - -#: ../../addon/gnusoc/gnusoc.php:249 -msgid "GNU-Social Protocol Settings updated." -msgstr "GNU social Protokoll Einstellungen aktualisiert" - -#: ../../addon/gnusoc/gnusoc.php:268 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Das GNU-Social-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." - -#: ../../addon/gnusoc/gnusoc.php:271 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "Aktiviere das GNU social Protokoll für diesen Kanal" - -#: ../../addon/gnusoc/gnusoc.php:275 -msgid "GNU-Social Protocol Settings" -msgstr "GNU social Protokoll Einstellungen" - -#: ../../addon/gnusoc/gnusoc.php:471 -msgid "Follow" -msgstr "Folgen" - -#: ../../addon/gnusoc/gnusoc.php:474 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "%1$s folgt nun %2$s" - -#: ../../addon/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "Planeten Einstellungen aktualisiert" - -#: ../../addon/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "Aktiviere Planeten Plugin" - -#: ../../addon/planets/planets.php:153 -msgid "Planets Settings" -msgstr "Planeten Einstellungen" - -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "Systemstandardeinstellungen:" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "Bevorzugte Clipart-IDs" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "Liste bevorzugter Clipart-IDs. Diese werden zuerst angezeigt." - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "Standard-Suchbegriff" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "Der Standard-Suchbegriff. Dieser wird an zweiter Stelle angezeigt." - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "Zurückkehren nach" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "Die Seite, die nach Auswahl eines Bildes geladen werden soll." - -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 -#: ../../include/nav.php:119 -msgid "Edit Profile" -msgstr "Profil bearbeiten" - -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "Profilliste" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "Reihenfolge der Bevorzugten" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "Sortierreihenfolge der bevorzugten Clipart-IDs." - -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "Neueste zuerst" - -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "Wie eingegeben" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "Sortierung aller anderen" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "Sortierreihenfolge der übrigen Clipart-IDs." - -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "Meist heruntergeladene zuerst" - -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "Beliebteste zuerst" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "Nachricht für bevorzugte IDs" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll." - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "Hochgeladen von: " - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "Gezeichnet von: " - -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "Dieses Bild verwenden" - -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "Oder wähle ein freies Bild von OpenClipart.org:" - -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "Suchbegriff" - -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "Unbekannter Fehler. Bitte versuchen Sie es später erneut." - -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "Profilfoto erfolgreich aktualisiert." - -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "Nicht jugendfreie Fotos markieren" - -#: ../../addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit" - -#: ../../addon/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "Auf WordPress posten" - -#: ../../addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "Aktiviere das WordPress-Plugin" - -#: ../../addon/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "WordPress-Benutzername" - -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "WordPress-Passwort" - -#: ../../addon/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "WordPress-API-URL" - -#: ../../addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "Normalerweise https://your-blog.tld/xmlrpc.php" - -#: ../../addon/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "WordPress blogid" - -#: ../../addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "Nötig für Mehrbenutzer Seiten wie wordpress.com, andernfalls frei lassen" - -#: ../../addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "Standardmäßig auf auf WordPress posten" - -#: ../../addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "Kommentare weiterleiten (benötigt hubzilla_wp Plugin)" - -#: ../../addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "WordPress-Beitragseinstellungen" - -#: ../../addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." -msgstr "Wordpress-Einstellungen gespeichert." - -#: ../../addon/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbausteinen, die Du hier unterhalb einträgst, und faltet alle Beiträge zusammen, in denen es diese Bausteine findet. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Es gilt als höflich und empfohlen, den #NSFW Tag für Beiträge zu verwenden, bei denen Du davon ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst aber auch beliebige andere Wörter in der Liste angeben und das Plugin so als allgemeinen Inhaltsfilter verwenden." - -#: ../../addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "Inhaltsfilter aktivieren" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" -msgstr "Kommaseparierte Liste von Schlüsselworten die verborgen werden sollen." - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "Wort, /regular-expression/, lang=xx, lang!=xx" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "Not Safe For Work Einstellungen" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "Allzweck-Inhaltsfilter" - -#: ../../addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "NSFW-Einstellungen gespeichert." - -#: ../../addon/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "Möglicherweise nicht jugendfreie Inhalte" - -#: ../../addon/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "%s - ansehen" - -#: ../../addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "Bei InsaneJournal veröffentlichen" - -#: ../../addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "Aktiviere das InsaneJournal Plugin" - -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "InsaneJournal-Benutzername" - -#: ../../addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "InsaneJournal-Passwort" - -#: ../../addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "Standardmäßig bei InsaneJournal veröffentlichen" - -#: ../../addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "InsaneJournal-Beitragseinstellungen" - -#: ../../addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "InsaneJournal-Einstellungen gespeichert." - -#: ../../addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "Bei Dreamwidth veröffentlichen" - -#: ../../addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "Aktiviere das Dreamwidth-Plugin" - -#: ../../addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "Dreamwidth-Benutzername" - -#: ../../addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "Dreamwidth-Passwort" - -#: ../../addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "Standardmäßig auf auf Dreamwidth posten" - -#: ../../addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "Dreamwidth-Beitragseinstellungen" - -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "Neue Registrierung" - -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "Nachricht gesendet an %s. Neue Kontoregistrierung: %s" - -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "Hubzilla-Verzeichnisstatistiken" - -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "Hubs insgesamt" - -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "Hubzilla Hubs" - -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "Friendica Hubs" - -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "Diaspora Pods" - -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "Hubzilla-Kanäle" - -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "Friendica-Kanäle" - -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "Diaspora-Kanäle" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "35 und älter" - -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "34 und jünger" - -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "Durchschnittsalter" - -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "Bekannte Chaträume" - -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "Bekannte Schlagwörter" - -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "Bitte berücksichtige, dass Diaspora und Friendica Statistiken nur solche einschließen, die **diesem Verzeichnis** bekannt sind, nicht alle im Netzwerk bekannten. Das gilt auch für Chaträume." - -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "Dein Webbie" - -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "Schriftgröße (px):" - -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "Link:" - -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "Like us on Hubzilla" - -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "Einbetten" - -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "Fotos importiert" - -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "Redmatrix-Fotoalbumimport" - -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "Hiermit werden all deine Fotoalben von Redmatrix in diesen Kanal importiert." - -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" -msgstr "Basis-URL des Redmatrix Servers" - -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" -msgstr "Redmatrix-Anmeldebenutzername" - -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" -msgstr "Redmatrix-Anmeldepasswort" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "Nur dieses Album importieren" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "Leer lassen um alle Alben zu importieren" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "Maximal zu importierende Anzahl" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "0 oder leer lassen um alles zu importieren" - -#: ../../addon/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "Kanäle zur automatischen Verbindung" - -#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 -msgid "Comma separated list" -msgstr "Kommagetrennte Liste" - -#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Beliebte Kanäle" - -#: ../../addon/irc/irc.php:53 -msgid "IRC Settings" -msgstr "IRC-Einstellungen" - -#: ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "IRC-Einstellungen gespeichert." - -#: ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "IRC-Chatraum" - -#: ../../addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "Bei LiveJurnal veröffentlichen" - -#: ../../addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "Aktiviere das LiveJurnal Plugin" - -#: ../../addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "LiveJournal-Benutzername" - -#: ../../addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "LiveJournal-Passwort" - -#: ../../addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "Standardmäßig bei LiveJurnal veröffentlichen" - -#: ../../addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "LiveJournal-Beitragseinstellungen" - -#: ../../addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "LiveJournal-Einstellungen gespeichert." - -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." - -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "Vorname" - -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "Nachname" - -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 -msgid "Nickname" -msgstr "Spitzname" - -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "Voller Name" - -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" - -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" - -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" - -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" - -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" - -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" - -#: ../../addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "Geburtsjahr" - -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "Geburtsmonat" - -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "Geburtstag" - -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "Geburtsdatum" - -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-Protokollfehler. Keine Kennung zurückgegeben." - -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 -msgid "Male" -msgstr "Männlich" - -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 -msgid "Female" -msgstr "Weiblich" - -#: ../../addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "Gern geschehen." - -#: ../../addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "Ach Mist..." - -#: ../../addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "Keine Ursache." - -#: ../../addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "" - -#: ../../addon/startpage/startpage.php:109 -msgid "Page to load after login" -msgstr "Seite, die nach dem Login geladen werden soll" - -#: ../../addon/startpage/startpage.php:109 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "Beispiele: "apps", "network?f=&gid=37" (Gruppen-gefilterte Beiträge), "channel" oder "notifications/system" (freilassen für die Standard-Netzwerkseite (grid)." - -#: ../../addon/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "Startseiteneinstellungen" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "Ohrfeige" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "geohrfeigt" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "bumsen" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "gebumst" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "Patent" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "patentiert" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "umarmen" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "umarmt" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "ermorden" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "ermordet" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "Anbetung" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "angebetet" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "küssen" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "geküsst" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "verlocken" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "verlockt" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "Augenbrauen hochziehen" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "zog die Augenbrauen hoch" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "beleidigen" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "beleidigt" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "loben" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "gelobt" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "essen" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "aß" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "anzweifeln" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "angezweifelt" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "ficken" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "gefickt" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "erkläre unsterbliche Liebe" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "erklärte unsterbliche Liebe" - -#: ../../addon/diaspora/diaspora.php:781 -msgid "Diaspora Protocol Settings updated." -msgstr "Diaspora Protokoll Einstellungen aktualisiert" - -#: ../../addon/diaspora/diaspora.php:800 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." - -#: ../../addon/diaspora/diaspora.php:803 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Das Diaspora Protokoll für diesen Kanal aktivieren" - -#: ../../addon/diaspora/diaspora.php:807 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren" - -#: ../../addon/diaspora/diaspora.php:811 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden" - -#: ../../addon/diaspora/diaspora.php:815 -msgid "" -"Sign and forward posts and comments with no existing Diaspora signature" -msgstr "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur" - -#: ../../addon/diaspora/diaspora.php:820 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "Verfolgte Hashtags (Komma separierte Liste, ohne die #)" - -#: ../../addon/diaspora/diaspora.php:825 -msgid "Diaspora Protocol Settings" -msgstr "Diaspora Protokoll Einstellungen" - -#: ../../addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Es wurde kein Nutzername in der importierten Datei gefunden." - -#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 -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." - -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "Dein Konto auf %s wird in ein paar Tagen ablaufen." - -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "Dein $Productname Test-Konto wird bald auslaufen." - -#: ../../addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "Rainbowtag aktivieren" - -#: ../../addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "Rainbowtag-Einstellungen" - -#: ../../addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "Rainbowtag-Einstellungen gespeichert." - -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "Hochladebeschränkungen anzeigen" - -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "Die in Hubzilla eingestellte maximale Größe:" - -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "PHP upload_max_filesize:" - -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "PHP post_max_size (muss größer sein als upload_max_filesize):" - -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "generisches Profilbild" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "zufälliges geometrisches Muster" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "Monstergesicht" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "computergeneriertes Gesicht" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "Gesicht im Retro-Arcade Stil" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "Standard-Profilfoto für diesen Hub" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "Information" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere entweder das Libreavatar oder das Gravatar Addon.
Das Libravatar Addon verwendet als Notfalllösung Gravatar, sollte bei Libravatar kein Profilbild gefunden werden." - -#: ../../addon/gravatar/gravatar.php:150 -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "Einstellungen speichern" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "Standard-Avatarbild" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "Wähle das Standardprofilbild aus, sollte bei Gravatar keines gefunden werden. Beachte auch die README." - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "Bewertungen der Bilder" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "Wähle die für deine Seite angemessene Profilbildeinstufung. Beachte auch die README." - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "Gravatar-Einstellungen aktualisiert." - -#: ../../addon/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "Hubzilla-Datenspeicher-Import" - -#: ../../addon/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert." - -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "Basis-URL des Habzilla-Servers" - -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "Seit Modifizierungsdatum yyyy-mm-dd" - -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "Bis Modifizierungsdatum yyyy-mm-dd" - -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Kürzliche Kanal/Profil Besucher" - -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "Dieses Plugin/Addon wurde noch nicht konfiguriert." - -#: ../../addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "Bitte rufe die Visage Einstellungen auf %s auf" - -#: ../../addon/visage/visage.php:99 -msgid "your feature settings page" -msgstr "Die Funktions-Einstellungsseite" - -#: ../../addon/visage/visage.php:112 -msgid "No entries." -msgstr "Keine Einträge." - -#: ../../addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "Aktiviere das Visage-Besucher Logging" - -#: ../../addon/visage/visage.php:170 -msgid "Visage Settings" -msgstr "Visage-Einstellungen" - -#: ../../addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "Nsabait-Einstellungen aktualisiert." - -#: ../../addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "Aktiviere das NSAbait Plugin" - -#: ../../addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "NSAbait-Einstellungen" - -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "Test-E-Mail senden" - -#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "Keine Empfänger gefunden." - -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "Mail gesendet." - -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "Senden der E-Mail fehlgeschlagen." - -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "Mail Test" - -#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "Betreff der Nachricht" - -#: ../../addon/mdpost/mdpost.php:41 -msgid "Use markdown for editing posts" -msgstr "Verwende Markdown zum Bearbeiten von Beiträgen" - -#: ../../addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "Größer anzeigen" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" -msgstr "Kachelserver-URL" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of public tile servers" -msgstr "Eine Liste öffentlicher Kachelserver" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "Nominatim (reverse Geokodierung) Server URL" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" -msgstr "Eine Liste der Nominatim Server" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" -msgstr "Standardzoom" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "Die Standard-Vergrößerungsstufe (1:Welt, 18:höchste, hängt außerdem vom Kachelserver ab)." - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" -msgstr "Markierung auf der Karte einschließen" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." -msgstr "Binde eine Markierung auf der Karte ein." - -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen" - -#: ../../addon/fuzzloc/fuzzloc.php:148 -msgid "Fuzzloc Settings updated." -msgstr "Fuzzloc-Einstellungen aktualisiert." - -#: ../../addon/fuzzloc/fuzzloc.php:175 -msgid "" -"Fuzzloc allows you to blur your precise location if your channel uses " -"browser location mapping." -msgstr "Fuzzloc erlaubt es Dir, deinen genauen Standort etwas diffuser zu machen (nicht so exakt wie ermittelt), wenn Dein Kanal die Lokalisierungsfunktion des Browsers verwendet." - -#: ../../addon/fuzzloc/fuzzloc.php:178 -msgid "Enable Fuzzloc Plugin" -msgstr "Aktiviere das Fuzzloc-Plugin" - -#: ../../addon/fuzzloc/fuzzloc.php:182 -msgid "Minimum offset in meters" -msgstr "Minimale Verschiebung in Metern" - -#: ../../addon/fuzzloc/fuzzloc.php:186 -msgid "Maximum offset in meters" -msgstr "Maximale Verschiebung in Metern" - -#: ../../addon/fuzzloc/fuzzloc.php:191 -msgid "Fuzzloc Settings" -msgstr "Fuzzloc-Einstellungen" - -#: ../../addon/rtof/rtof.php:45 -msgid "Post to Friendica" -msgstr "Bei Friendica veröffentlichen" - -#: ../../addon/rtof/rtof.php:62 -msgid "rtof Settings saved." -msgstr "rtof-Einstellungen gespeichert." - -#: ../../addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" -msgstr "Erlaube die Veröffentlichung bei Friendica" - -#: ../../addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" -msgstr "Standardmäßig öffentliche Beiträge bei Friendica veröffentlichen" - -#: ../../addon/rtof/rtof.php:89 -msgid "Friendica API Path" -msgstr "Friendica-API-Pfad" - -#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 -msgid "https://{sitename}/api" -msgstr "https://{sitename}/api" - -#: ../../addon/rtof/rtof.php:93 -msgid "Friendica login name" -msgstr "Friendica-Anmeldename" - -#: ../../addon/rtof/rtof.php:97 -msgid "Friendica password" -msgstr "Friendica-Passwort" - -#: ../../addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" -msgstr "Hubzilla-zu-Friendica Beitragseinstellungen" - -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 -#: ../../include/channel.php:1567 -msgid "Status:" -msgstr "Status:" - -#: ../../addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "Addon aktiviren" - -#: ../../addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "Jappix Mini Chat-Widget von der Weboberfläche verbergen" - -#: ../../addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "Jabber-Benutzername" - -#: ../../addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "Jabber-Server" - -#: ../../addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "Jabber BOSH Host URL" - -#: ../../addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "Jabber-Passwort" - -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "Jabber-Passwort mit Hubzilla-Passwort verschlüsseln" - -#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "Hubzilla-Passwort" - -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "Verbindungsanfragen von Hubzilla-Kontakten automatisch annehmen" - -#: ../../addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "Interne Liste der Jabber Adressen von Kontakten löschen" - -#: ../../addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "Konfigurationshilfe" - -#: ../../addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "Jappix Mini Einstellungen" - -#: ../../addon/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "Derzeit blockiert" - -#: ../../addon/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "Momentan sind keine Kanäle blockiert" - -#: ../../addon/superblock/superblock.php:120 -msgid "Superblock Settings" -msgstr "Superblock Einstellungen" - -#: ../../addon/superblock/superblock.php:345 -msgid "Block Completely" -msgstr "Vollständig blockieren" - -#: ../../addon/superblock/superblock.php:394 -msgid "superblock settings updated" -msgstr "Superblock Einstellungen aktualisiert" - -#: ../../addon/nofed/nofed.php:42 -msgid "Federate" -msgstr "Beitrag verteilen" - -#: ../../addon/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "nofed Einstellungen gespeichert" - -#: ../../addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "Umschalter zur Beitragsverteilung bereitstellen" - -#: ../../addon/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "Beiträge standardmäßig verteilen" - -#: ../../addon/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "NoFed-Einstellungen" - -#: ../../addon/redred/redred.php:45 -msgid "Post to Red" -msgstr "Beitrag bei Red veröffentlichen" - -#: ../../addon/redred/redred.php:60 -msgid "Channel is required." -msgstr "Kanal ist erforderlich." - -#: ../../addon/redred/redred.php:76 -msgid "redred Settings saved." -msgstr "redred-Einstellungen gespeichert." - -#: ../../addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" -msgstr "Erlaube die Veröffentlichung in anderen Hubzilla Kanälen" - -#: ../../addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" -msgstr "Sende öffentliche Beiträge standardmäßig an den Hubzilla Kanal" - -#: ../../addon/redred/redred.php:103 -msgid "Hubzilla API Path" -msgstr "Hubzilla-API-Pfad" - -#: ../../addon/redred/redred.php:107 -msgid "Hubzilla login name" -msgstr "Hubzilla-Anmeldename" - -#: ../../addon/redred/redred.php:111 -msgid "Hubzilla channel name" -msgstr "Hubzilla-Kanalname" - -#: ../../addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" -msgstr "Hubzilla Crosspost Einstellungen" - -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "Verzeichnis der Logdatei" - -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "Verzeichnis, in dem rotierte Logs gespeichert werden sollen" - -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "zu erreichende Logdateigröße in Bytes, bevor rotiert wird" - -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "Anzahl aufzubewahrender rotierter Logdateien" - -#: ../../addon/frphotos/frphotos.php:92 -msgid "Friendica Photo Album Import" -msgstr "Friendica-Fotoalbumimport" - -#: ../../addon/frphotos/frphotos.php:93 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "Hiermit werden all deine Fotoalben von Friendica in diesen Hubzilla Kanal importiert." - -#: ../../addon/frphotos/frphotos.php:94 -msgid "Friendica Server base URL" -msgstr "BasisURL des Friendica Servers" - -#: ../../addon/frphotos/frphotos.php:95 -msgid "Friendica Login Username" -msgstr "Friendica-Anmeldebenutzername" - -#: ../../addon/frphotos/frphotos.php:96 -msgid "Friendica Login Password" -msgstr "Friendica-Anmeldepasswort" - -#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 -#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: ../../addon/pubcrawl/pubcrawl.php:1053 -msgid "ActivityPub Protocol Settings updated." -msgstr "ActivityPub Protokoll Einstellungen aktualisiert" - -#: ../../addon/pubcrawl/pubcrawl.php:1062 -msgid "" -"The ActivityPub protocol does not support location independence. Connections" -" you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Das ActivityPub-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." - -#: ../../addon/pubcrawl/pubcrawl.php:1065 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "Aktiviere das ActivityPub Protokoll für diesen Kanal" - -#: ../../addon/pubcrawl/pubcrawl.php:1068 -msgid "Send multi-media HTML articles" -msgstr "Multimedia HTML Artikel versenden" - -#: ../../addon/pubcrawl/pubcrawl.php:1068 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt" - -#: ../../addon/pubcrawl/pubcrawl.php:1072 -msgid "ActivityPub Protocol Settings" -msgstr "ActivityPub Protokoll Einstellungen" - -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "Projektserver und -ressourcen" - -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "Projektersteller und Technischer Leiter" - -#: ../../addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende" - -#: ../../addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "Und die hunderte anderen Menschen und Organisationen, die geholfen haben Hubzilla möglich zu machen." - -#: ../../addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "Die Redmatrix/Hubzilla Projekte werden hauptsächlich von Freiwilligen bereitgestellt, die ihre Zeit und Expertise zur Verfügung stellen - und oft aus eigener Tasche für die Dienste zahlen, die sie mit anderen teilen." - -#: ../../addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "Es gibt keine Finanzierung durch Firmen, keine Werbung und wir verkaufen Deine persönlichen Daten nicht. (Wir kontrollieren Deine persönlichen Daten nicht - das machst Du.)" - -#: ../../addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and" -" privacy." -msgstr "Hilf uns bei unserer wegweisenden Arbeit im Bereich der Dezantralisation, von Web-Identitäten und Privatsphäre." - -#: ../../addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "Die Spenden werden dafür verwendet Server und Dienste am laufen zu halten und helfen desweiteren innovative Neuerungen zu schaffen und die Entwicklung voran zu treiben." - -#: ../../addon/donate/donate.php:60 -msgid "Donate" -msgstr "Spenden" - -#: ../../addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "Wähle ein Projekt, einen Entwickler oder einen öffentlichen Hub den du mit einer einmaligen Spende unterstützen willst." - -#: ../../addon/donate/donate.php:63 -msgid "Donate Now" -msgstr "Jetzt spenden" - -#: ../../addon/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project " -"only)" -msgstr "Oder werde ein Unterstützer des Projekts (ausschließlich Hubzilla)" - -#: ../../addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "Bitte teile uns mit ob dein kompletter Name oder dein Vorname (oder gar nichts) auf unserer Sponsoren-Seite veröffentlicht werden soll." - -#: ../../addon/donate/donate.php:66 -msgid "Sponsor" -msgstr "Sponsor" - -#: ../../addon/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "Besonderer Dank an: " - -#: ../../addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "Einige gültige Beispiele: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." - -#: ../../addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "Gitarrenakkorde" - -#: ../../addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "Das komplette online Akkord-Verzeichnis" - -#: ../../addon/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "Stimmen" - -#: ../../addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "Beispiel Akkord Name: Em7" - -#: ../../addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "Linkshänder-Besaitung anzeigen" - -#: ../../addon/chords/chords.php:33 -msgid "Quick Reference" -msgstr "Schnellreferenz" - -#: ../../addon/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "Bei Libertree veröffentlichen" - -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "Aktivire das Libertree-Plugin" - -#: ../../addon/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "Libertree API Token" - -#: ../../addon/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "URL der Libertree Seite" - -#: ../../addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "Standardmäßig bei Libertree veröffentlichen" - -#: ../../addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "Libertree-Beitragseinstellungen" - -#: ../../addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "Libertree-Einstellungen gespeichert." - -#: ../../addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "Flattr this!" - -#: ../../addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "Flattr Widget Einstellungen aktualisiert" - -#: ../../addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "Flattr Nutzer" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "URL des Dings zum flattrn" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "Falls leer wird die Channel URL verwendet" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "Titel des Dings zum flattrn" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "Falls leer wird \"Kanalname auf The Hubzilla\" verwendet" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "Statischer oder dynamischer Flattr Button" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "statisch" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "dynamisch" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "Ausrichtung des Widgets" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "links" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "rechts" - -#: ../../addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "Flattr Widget verwenden" - -#: ../../addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "Flattr Widget Einstellungen" - -#: ../../addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" -msgstr "Bei GNU social veröffentlichen" - -#: ../../addon/statusnet/statusnet.php:195 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Bitte kontaktiere den Administrator deines Hubs.
Die angegebene API URL ist nicht korrekt." - -#: ../../addon/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "Mit dem angegebenen Pfad war es uns nicht möglich, die GNU social API zu erreichen." - -#: ../../addon/statusnet/statusnet.php:266 -msgid "GNU social settings updated." -msgstr "GNU social Einstellungen aktualisiert." - -#: ../../addon/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" -msgstr "Global verfügbare GNU social OAuthKeys" - -#: ../../addon/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." -msgstr "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel.
Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten)." - -#: ../../addon/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" -msgstr "Stelle deine eigenen OAuth Credentials zur Verfügung" - -#: ../../addon/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as" -" an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." -msgstr "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert." - -#: ../../addon/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" - -#: ../../addon/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Base API Path" -msgstr "Basis Pfad der API" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Remember the trailing /" -msgstr "Denke an das abschließende /" - -#: ../../addon/statusnet/statusnet.php:345 -msgid "GNU social application name" -msgstr "GNU social Anwendungsname" - -#: ../../addon/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." -msgstr "Um dich mit deinem GNU social Konto zu verbinden, klicke den Button unten und kopiere dann den Sicherheitscode von GNU social in das Formular weiter unten. Es werden ausschließlich deine öffentlichen Beiträge auf GNU social veröffentlicht." - -#: ../../addon/statusnet/statusnet.php:370 -msgid "Log in with GNU social" -msgstr "Mit GNU social anmelden" - -#: ../../addon/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" -msgstr "Kopiere den Sicherheitscode von GNU social hier her" - -#: ../../addon/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" -msgstr "Verbindungsprozes abbrechen" - -#: ../../addon/statusnet/statusnet.php:385 -msgid "Current GNU social API is" -msgstr "Aktuelle GNU social API ist" - -#: ../../addon/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" -msgstr "GNU social Verbindung trennen" - -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 -msgid "Currently connected to: " -msgstr "Momentan verbunden mit:" - -#: ../../addon/statusnet/statusnet.php:406 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu GNU social geteilter Link in öffentlichen Beiträgen Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist." - -#: ../../addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "Erlaube die Veröffentlichung bei GNU social" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden." - -#: ../../addon/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" -msgstr "Standardmäßig bei GNU social veröffentlichen" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht." - -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 -msgid "Clear OAuth configuration" -msgstr "OAuth Konfiguration löschen" - -#: ../../addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" -msgstr "GNU social Einstellungen" - -#: ../../addon/statusnet/statusnet.php:892 -msgid "API URL" -msgstr "API-URL" - -#: ../../addon/statusnet/statusnet.php:895 -msgid "Application name" -msgstr "Anwendungsname" - -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "QR-Code" - -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "QR-Generator" - -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "Etwas Text eingeben" - -#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 -msgid "Invalid game." -msgstr "Ungültiges Spiel." - -#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 -msgid "You are not a player in this game." -msgstr "Sie sind kein Spieler in diesem Spiel." - -#: ../../addon/chess/chess.php:415 -msgid "You must be a local channel to create a game." -msgstr "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein" - -#: ../../addon/chess/chess.php:433 -msgid "You must select one opponent that is not yourself." -msgstr "Du musst einen Gegner wählen, der nicht du selbst ist" - -#: ../../addon/chess/chess.php:444 -msgid "Random color chosen." -msgstr "Zufällige Farbe gewählt." - -#: ../../addon/chess/chess.php:452 -msgid "Error creating new game." -msgstr "Fehler beim Erstellen eines neuen Spiels." - -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 -msgid "Requested channel is not available." -msgstr "Angeforderter Kanal nicht verfügbar." - -#: ../../addon/chess/chess.php:500 -msgid "You must select a local channel /chess/channelname" -msgstr "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen" - -#: ../../addon/chess/chess.php:1066 -msgid "Enable notifications" -msgstr "Benachrichtigungen aktivieren" - -#: ../../addon/twitter/twitter.php:99 -msgid "Post to Twitter" -msgstr "Bei Twitter veröffentlichen" - -#: ../../addon/twitter/twitter.php:155 -msgid "Twitter settings updated." -msgstr "Twitter-Einstellungen aktualisiert." - -#: ../../addon/twitter/twitter.php:184 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator." - -#: ../../addon/twitter/twitter.php:206 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input" -" box below and submit the form. Only your public posts will" -" be posted to Twitter." -msgstr "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine öffentlichen Beiträge werden auf Twitter geteilt." - -#: ../../addon/twitter/twitter.php:208 -msgid "Log in with Twitter" -msgstr "Mit Twitter anmelden" - -#: ../../addon/twitter/twitter.php:211 -msgid "Copy the PIN from Twitter here" -msgstr "PIN von Twitter hier her kopieren" - -#: ../../addon/twitter/twitter.php:238 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist." - -#: ../../addon/twitter/twitter.php:243 -msgid "Allow posting to Twitter" -msgstr "Erlaube die Veröffentlichung bei Twitter" - -#: ../../addon/twitter/twitter.php:243 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." - -#: ../../addon/twitter/twitter.php:247 -msgid "Twitter post length" -msgstr "Länge von Twitter Beiträgen" - -#: ../../addon/twitter/twitter.php:247 -msgid "Maximum tweet length" -msgstr "Maximale Länge eines Tweets" - -#: ../../addon/twitter/twitter.php:252 -msgid "Send public postings to Twitter by default" -msgstr "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen" - -#: ../../addon/twitter/twitter.php:252 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." - -#: ../../addon/twitter/twitter.php:270 -msgid "Twitter Post Settings" -msgstr "Twitter-Beitragseinstellungen" - -#: ../../addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" -msgstr "Diese Funktion abschalten" - -#: ../../addon/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." -msgstr "Verstecke die Schaltfläche und zeige die Smilies direkt an." - -#: ../../addon/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" -msgstr "Smileyknopf-Einstellungen" - -#: ../../addon/cart/myshop.php:138 -msgid "Order Not Found" -msgstr "Bestellung nicht gefunden" - -#: ../../addon/cart/cart.php:810 -msgid "Order cannot be checked out." -msgstr "Bestellvorgang kann nicht fortgesetzt werden." - -#: ../../addon/cart/cart.php:1073 -msgid "Enable Shopping Cart" -msgstr "Aktiviere die Warenkorb-Funktion." - -#: ../../addon/cart/cart.php:1080 -msgid "Enable Test Catalog" -msgstr "Aktiviere den Test-Warenbestand" - -#: ../../addon/cart/cart.php:1088 -msgid "Enable Manual Payments" -msgstr "Aktiviere manuelle Zahlungen" - -#: ../../addon/cart/cart.php:1103 -msgid "Base Cart Settings" -msgstr "Warenkorb-Grundeinstellungen" - -#: ../../addon/cart/cart.php:1151 -msgid "Add Item" -msgstr "Füge den Artikel hinzu" - -#: ../../addon/cart/cart.php:1165 -msgid "Call cart_post_" -msgstr "" - -#: ../../addon/cart/cart.php:1195 -msgid "Cart Not Enabled (profile: " -msgstr "" - -#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 -msgid "Order not found." -msgstr "Bestellung nicht gefunden." - -#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 -msgid "No Order Found" -msgstr "Keine Bestellung gefunden" - -#: ../../addon/cart/cart.php:1270 -msgid "call: " -msgstr "" - -#: ../../addon/cart/cart.php:1273 -msgid "An unknown error has occurred Please start again." -msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal." - -#: ../../addon/cart/cart.php:1414 -msgid "Invalid Payment Type. Please start again." -msgstr "Unbekannte Zahlungsmethode. Bitte versuche es noch einmal." - -#: ../../addon/cart/cart.php:1421 -msgid "Order not found" -msgstr "Bestellung nicht gefunden" - -#: ../../addon/cart/manual_payments.php:9 -msgid "Error: order mismatch. Please try again." -msgstr "Fehler: Bestellungen stimmen nicht überein. Bitte versuche es noch einmal." - -#: ../../addon/cart/manual_payments.php:29 -msgid "Manual payments are not enabled." -msgstr "Manuelle Zahlungen sind nicht aktiviert." - -#: ../../addon/cart/manual_payments.php:44 -msgid "Finished" -msgstr "Fertig" - -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Diese Website verwendet Piwik, um die Besucherzugriffe auszuwerten." - -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Wenn Du nicht möchtest, dass Deine Besuche zu diesem Zweck gespeichert werden, kannst Du ein Cookie setzen, welches Piwik davon abhält, Deine weiteren Besuche auf dieser Website zu verfolgen (Opt-out)." - -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "Piwik Basis-URL" - -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "Der absolute Pfad zu Deiner Piwik-Installation (ohne Protokoll (http/s), aber mit abschließendem Schrägstrich / )." - -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "Seitenkennung" - -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "Den Opt-out Cookie-Link anzeigen?" - -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "Asynchrones Tracking" - -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "Ermögliche Frontend-JavaScript-Fehlertracking" - -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "Diese Funktion erfordert Piwik >= 2.2.0" - -#: ../../addon/tour/tour.php:76 -msgid "Edit your profile and change settings." -msgstr "Bearbeite dein Profil und ändere die Einstellungen." - -#: ../../addon/tour/tour.php:77 -msgid "Click here to see activity from your connections." -msgstr "Klicke hier, um die Aktivitäten Deiner Verbindungen zu sehen." - -#: ../../addon/tour/tour.php:78 -msgid "Click here to see your channel home." -msgstr "Klicke hier, um Deine Kanal-Hauptseite zu sehen." - -#: ../../addon/tour/tour.php:79 -msgid "You can access your private messages from here." -msgstr "Hierüber kannst Du auf Deine privaten Nachrichten zugreifen." - -#: ../../addon/tour/tour.php:80 -msgid "Create new events here." -msgstr "Neue Termine hier erstellen" - -#: ../../addon/tour/tour.php:81 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "Du kannst hier neue Verbindungen akzeptieren sowie die Einstellungen bereits vorhandener Vebindungen bearbeiten. Außerdem kannst Du Verbindungen in Gruppen zusammenfassen." - -#: ../../addon/tour/tour.php:82 -msgid "System notifications will arrive here" -msgstr "Systembenachrichtigungen werden hier eintreffen" - -#: ../../addon/tour/tour.php:83 -msgid "Search for content and users" -msgstr "Nach Inhalt von Benutzern suchen" - -#: ../../addon/tour/tour.php:84 -msgid "Browse for new contacts" -msgstr "Schaue nach möglichen neuen Verbindungen." - -#: ../../addon/tour/tour.php:85 -msgid "Launch installed apps" -msgstr "Installierte Apps starten" - -#: ../../addon/tour/tour.php:86 -msgid "Looking for help? Click here." -msgstr "Du benötigst Hilfe? Klicke hier." - -#: ../../addon/tour/tour.php:87 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "In Deinem Netzwerk gibt es neue Ereignisse. Klicke hier, um zu sehen, was passiert ist!" - -#: ../../addon/tour/tour.php:88 -msgid "You have received a new private message. Click here to see from who!" -msgstr "Du hast eine neue private Nachricht erhalten. Klicke hier, um zu sehen, von wem!" - -#: ../../addon/tour/tour.php:89 -msgid "There are events this week. Click here too see which!" -msgstr "Es gibt neue Termine diese Woche. Klicke hier, um zu sehen, welche!" - -#: ../../addon/tour/tour.php:90 -msgid "You have received a new introduction. Click here to see who!" -msgstr "Du hast eine neue Verbindungsanfrage erhalten. Klicke hier, um zu sehen, wer es ist!" - -#: ../../addon/tour/tour.php:91 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "Es gibt eine neue Systembenachrichtigung. Klicke hier, um zu sehen, was passiert ist!" - -#: ../../addon/tour/tour.php:94 -msgid "Click here to share text, images, videos and sound." -msgstr "Klicke hier, um Texte, Bilder, Videos und Klänge zu teilen." - -#: ../../addon/tour/tour.php:95 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "Du kannst Deinem Beitrag einen optionalen Titel geben (gut für lange Beiträge)." - -#: ../../addon/tour/tour.php:96 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "Ein paar Kategorien hier einzugeben, macht es leichter, Deinen Beitrag später wiederzufinden." - -#: ../../addon/tour/tour.php:97 -msgid "Share photos, links, location, etc." -msgstr "Teile Photos, Links, Standort, usw." - -#: ../../addon/tour/tour.php:98 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "Du möchtest diesen Inhalt nur für eine Weile teilen? Dann lass ihn zu einem bestimmten Datum ablaufen." - -#: ../../addon/tour/tour.php:99 -msgid "You can password protect content." -msgstr "Du kannst Inhalte mit einem Passwort schützen." - -#: ../../addon/tour/tour.php:100 -msgid "Choose who you share with." -msgstr "Wähle aus, mit wem Du teilen möchtest." - -#: ../../addon/tour/tour.php:102 -msgid "Click here when you are done." -msgstr "Klicke hier, wenn Du fertig bist." - -#: ../../addon/tour/tour.php:105 -msgid "Adjust from which channels posts should be displayed." -msgstr "Lege fest, von welchen Kanälen Beiträge angezeigt werden sollen." - -#: ../../addon/tour/tour.php:106 -msgid "Only show posts from channels in the specified privacy group." -msgstr "Zeige nur Beträge von Kanälen, die in einer bestimmten Gruppe sind." - -#: ../../addon/tour/tour.php:110 -msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "Finde Beiträge, die bestimmte Tags enthalten (Stichworte, die mit dem \"#\"-Symbol beginnen)." - -#: ../../addon/tour/tour.php:111 -msgid "Easily find posts in given category." -msgstr "Finde Beiträge in bestimmten Kategorien." - -#: ../../addon/tour/tour.php:112 -msgid "Easily find posts by date." -msgstr "Finde Beiträge anhand des Datums." - -#: ../../addon/tour/tour.php:113 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we" -" think you might find interesting." -msgstr "Vorgeschlagene Kanäle, die in ihren Einstellungen zugestimmt haben, als Vorschläge angezeigt zu werden, und die Du eventuell interessant finden könntest." - -#: ../../addon/tour/tour.php:114 -msgid "Here you see channels you have connected to." -msgstr "Hier siehst du die Kanäle, mit denen Du verbunden bist." - -#: ../../addon/tour/tour.php:115 -msgid "Save your search so you can repeat it at a later date." -msgstr "Speichere Deine Suche, so dass Du sie später leicht erneut durchführen kannst." - -#: ../../addon/tour/tour.php:118 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It" -" is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "Wenn Du dieses Symbol siehst, kannst Du weitgehend sicher sein, dass der Ansender dem angegebenen entspricht. Nicht immer ist es möglich, den Absender zu verifizieren, daher fehlt das Symbol mitunter. Das ist aber in der Regel kein Grund zur Sorge." - -#: ../../addon/tour/tour.php:119 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!" - -#: ../../addon/tour/tour.php:126 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?

Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.

Du kannst auc durch das Drücken der Enter-Taste weitergehen." - -#: ../../addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "Erweitertes Teilen von Identitäten" - -#: ../../addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit $Projectname - Servern geteilt." - -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Dreidimensionales Tic-Tac-Toe" - -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game" -msgstr "Neues Spiel" - -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "Neues Handicaü-Spiel" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "3D Tic-Tac-Toe funktioniert wie das ursprüngliche Spiel, nur dass es auf mehreren Ebenen gleichzeitig gespielt wird." - -#: ../../addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "In diesem Fall sind es drei Ebenen. Du gewinnst, wenn es dir gelingt drei in einer Reihe auf einer beliebigen Ebene oder diagonal über die verschiedenen Ebenen hinweg zu erreichen." - -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "Bei einem Handicap-Spiel wird die Position im Zentrum der mittleren Ebene gesperrt, da der Spieler der dieses Feld für sich beansprucht meist einen unfairen Vorteil hat." - -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "Du darfst anfangen..." - -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "Diesmal werde ich anfangen..." - -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "Sie haben gewonnen!" - -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "\"Katzen\"-Spiel!" - -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "Ich habe gewonnen!" - -#: ../../addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "Nachricht, die auf jeder Seite dieses Servers angezeigt werden soll" - -#: ../../addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" -msgstr "Nachrichtenkopf-Einstellungen" - -#: ../../addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." -msgstr "Nachrichtenkopf-Einstellungen gespeichert." - -#: ../../addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "Authentifiziere Dich nur auf Seiten deiner Freunde automatisch" - -#: ../../addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "Authentifiziere Dich standardmäßig bei allen Seiten im Netzwerk automatisch" - -#: ../../addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "Einstellungen für automatische Authentifizierung" - -#: ../../addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "Einstellungen für automatische Authentifizierung aktualisiert." - -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "einsam" - -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "betrunken" - -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "geil" - -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "bekifft" - -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "beschissen" - -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "clusterfucked" - -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "verrückt" - -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "verletzt" - -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "müde" - -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "mürrisch" - -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "hoch" - -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "halb bewusstlos" - -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "verliebt" - -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "nackt" - -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "stinkend" - -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "verschwitzt" - -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "blutend" - -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "siegreich" - -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "besiegt" - -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "neidisch" - -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "eifersüchtig" - -#: ../../addon/xmpp/xmpp.php:31 -msgid "XMPP settings updated." -msgstr "XMPP-Einstellungen aktualisiert." - -#: ../../addon/xmpp/xmpp.php:53 -msgid "Enable Chat" -msgstr "Chat aktivieren" - -#: ../../addon/xmpp/xmpp.php:58 -msgid "Individual credentials" -msgstr "Individuelle Anmeldedaten" - -#: ../../addon/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" -msgstr "Jabber BOSH Server" - -#: ../../addon/xmpp/xmpp.php:69 -msgid "XMPP Settings" -msgstr "XMPP-Einstellungen" - -#: ../../addon/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" -msgstr "Jabber BOSH Host" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "Use central userbase" -msgstr "Zentrale Benutzerbasis verwenden" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "Wenn aktiviert, werden die Mitglieder automatisch auf dem EJabber Server, der auf dieser Maschine installiert ist, angemeldet und die Zugangsdaten werden über das \"auth_ejabberd.php\"-Script synchronisiert." - -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "Wer mag mich?" - -#: ../../addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "Du bist nun bei pumpio authenzifiziert." - -#: ../../addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "Zur Funktions-Einstellungsseite zurückkehren" - -#: ../../addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "Bei pumpio veröffentlichen" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "Pump.io-Servername" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "Ohne \"http://\" oder \"https://\"" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "Pump.io-Benutzername" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "Ohne dem Servernamen" - -#: ../../addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "Du bist nicht bei pumpio authentifiziert." - -#: ../../addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "Deine pumpio Verbindung (erneut) authentifizieren" - -#: ../../addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "Aktiviere das pumpio-Plugin" - -#: ../../addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "Standardmäßig bei pumpio veröffentlichen" - -#: ../../addon/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "Sollen die Beiträge öffentlich sein" - -#: ../../addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "Öffentliche Beiträge spiegeln" - -#: ../../addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "Pump.io-Beitragseinstellungen" - -#: ../../addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "PumpIO-Einstellungen gespeichert." - -#: ../../addon/ldapauth/ldapauth.php:61 -msgid "An account has been created for you." -msgstr "Ein Konto wurde für Sie erstellt." - -#: ../../addon/ldapauth/ldapauth.php:68 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert." - -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Suche %1$s (%2$s)" - -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "$Projectname suchen" - -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "Import des Redmatrix Datei Speichers" - -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "Hiermit werden alle deine Daten aus der Redmatrix Cloud in diesen Kanal importiert." - -#: ../../addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "Datei" - -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "E-Mail an alle Mitglieder senden" - -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "%1$d von %2$d Nachrichten gesendet." - -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "Eine E-Mail an alle Mitglieder dieses Hubs senden." - -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "E-Mail Adresse des Absenders" - -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "Test Modus (nur an Hub Administratoren senden)" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Häufig" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Stündlich" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Täglich" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wöchentlich" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Monatlich" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momentan männlich" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momentan weiblich" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Größtenteils männlich" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transsexuell" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Zwitter" - -#: ../../include/selectors.php:49 ../../include/channel.php:1484 -msgid "Neuter" -msgstr "Geschlechtslos" - -#: ../../include/selectors.php:49 ../../include/channel.php:1486 -msgid "Non-specific" -msgstr "unklar" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Unentschieden" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Männer" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Frauen" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Schwul" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Keine Bevorzugung" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexuell" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Enthaltsam" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jungfräulich" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Abweichend" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisch" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Unmengen" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Sexlos" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Einsam" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Verfügbar" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Verguckt" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Verknallt" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Treulos" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexabhängig" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Lose" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verlobt" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Verheiratet" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Informelle Ehe" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Glücklich" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Betrogen" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Getrennt" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Labil" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Geschieden" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Verwitwet" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Ungewiss" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es ist kompliziert" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Interessiert mich nicht" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Frag mich mal" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "gefällt %1$ss %2$s" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "missfällt %1$ss %2$s" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" - -#: ../../include/conversation.php:251 ../../include/text.php:1129 -#: ../../include/text.php:1133 -msgid "poked" -msgstr "stupste" - -#: ../../include/conversation.php:736 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:756 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:757 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:783 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:884 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:888 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/conversation.php:889 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:932 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:942 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Unterhaltung nicht mehr folgen" - -#: ../../include/conversation.php:1062 -msgid "Edit Connection" -msgstr "Verbindung bearbeiten" - -#: ../../include/conversation.php:1072 -msgid "Message" -msgstr "Nachricht" - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1210 -#, 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:1212 -#, 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:1218 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:1221 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" - -#: ../../include/conversation.php:1222 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1222 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1265 -msgid "Set your location" -msgstr "Standort" - -#: ../../include/conversation.php:1266 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" - -#: ../../include/conversation.php:1316 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1317 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../include/conversation.php:1322 -msgid "Choose a different album..." -msgstr "Wählen Sie ein anderes Album aus..." - -#: ../../include/conversation.php:1326 -msgid "Comments enabled" -msgstr "Kommentare aktiviert" - -#: ../../include/conversation.php:1327 -msgid "Comments disabled" -msgstr "Kommentare deaktiviert" - -#: ../../include/conversation.php:1375 -msgid "Page link name" -msgstr "Link zur Seite" - -#: ../../include/conversation.php:1378 -msgid "Post as" -msgstr "Veröffentlichen als" - -#: ../../include/conversation.php:1392 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" - -#: ../../include/conversation.php:1395 -msgid "Disable comments" -msgstr "Kommentare deaktivieren" - -#: ../../include/conversation.php:1396 -msgid "Toggle comments" -msgstr "Kommentare umschalten" - -#: ../../include/conversation.php:1404 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" - -#: ../../include/conversation.php:1427 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" - -#: ../../include/conversation.php:1433 -msgid "Set publish date" -msgstr "Veröffentlichungsdatum festlegen" - -#: ../../include/conversation.php:1693 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: ../../include/conversation.php:1696 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" - -#: ../../include/conversation.php:1700 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: ../../include/conversation.php:1703 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" - -#: ../../include/conversation.php:1711 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" - -#: ../../include/conversation.php:1720 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" - -#: ../../include/conversation.php:1726 -msgid "Starred" -msgstr "Markiert" - -#: ../../include/conversation.php:1729 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" - -#: ../../include/conversation.php:1736 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1739 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" - -#: ../../include/conversation.php:1814 ../../include/nav.php:381 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../include/conversation.php:1827 ../../include/nav.php:394 -msgid "Profile Details" -msgstr "Profil-Details" - -#: ../../include/conversation.php:1837 ../../include/nav.php:404 -#: ../../include/photos.php:666 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/conversation.php:1845 ../../include/nav.php:412 -msgid "Files and Storage" -msgstr "Dateien und Speicher" - -#: ../../include/conversation.php:1882 ../../include/nav.php:447 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/conversation.php:1885 ../../include/nav.php:450 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" - -#: ../../include/conversation.php:1896 ../../include/nav.php:461 -msgid "View Cards" -msgstr "Karten anzeigen" - -#: ../../include/conversation.php:1904 -msgid "articles" -msgstr "Artikel" - -#: ../../include/conversation.php:1907 ../../include/nav.php:472 -msgid "View Articles" -msgstr "Artikel anzeigen" - -#: ../../include/conversation.php:1918 ../../include/nav.php:484 -msgid "View Webpages" -msgstr "Webseiten anzeigen" - -#: ../../include/conversation.php:1987 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" - -#: ../../include/conversation.php:1990 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" - -#: ../../include/conversation.php:1993 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" - -#: ../../include/conversation.php:1996 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" - -#: ../../include/conversation.php:1999 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" - -#: ../../include/conversation.php:2002 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" - -#: ../../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/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" - -#: ../../include/import.php:25 -msgid "Unable to import a removed channel." -msgstr "Nicht möglich, einen gelöschten Kanal zu importieren." - -#: ../../include/import.php:46 -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:111 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." - -#: ../../include/text.php:492 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:494 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:523 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:526 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:537 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:539 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:961 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:993 -#, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" - -#: ../../include/text.php:1129 ../../include/text.php:1133 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:1134 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:1134 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:1135 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:1135 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:1136 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:1136 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:1137 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:1137 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:1138 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:1138 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:1161 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1162 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1163 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1164 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1165 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1166 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1167 -msgid "stupefied" -msgstr "verblüfft" - -#: ../../include/text.php:1168 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1169 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1170 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1171 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1172 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1173 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1174 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1175 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1176 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1177 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1178 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:1179 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1180 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1181 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1360 ../../include/js_strings.php:76 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1360 ../../include/js_strings.php:77 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1360 ../../include/js_strings.php:78 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1360 ../../include/js_strings.php:79 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1360 ../../include/js_strings.php:80 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1360 ../../include/js_strings.php:81 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1360 ../../include/js_strings.php:75 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1364 ../../include/js_strings.php:51 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1364 ../../include/js_strings.php:52 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1364 ../../include/js_strings.php:53 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1364 ../../include/js_strings.php:54 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1364 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1364 ../../include/js_strings.php:56 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1364 ../../include/js_strings.php:57 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1364 ../../include/js_strings.php:58 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1364 ../../include/js_strings.php:59 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1364 ../../include/js_strings.php:60 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1364 ../../include/js_strings.php:61 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1364 ../../include/js_strings.php:62 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1428 ../../include/text.php:1432 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" - -#: ../../include/text.php:1434 ../../include/feedutils.php:860 -msgid "unknown" -msgstr "unbekannt" - -#: ../../include/text.php:1470 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1544 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1686 ../../include/message.php:12 -msgid "Download binary/encrypted content" -msgstr "Binären/verschlüsselten Inhalt herunterladen" - -#: ../../include/text.php:1849 ../../include/language.php:397 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1857 -msgid "Page layout" -msgstr "Seiten-Layout" - -#: ../../include/text.php:1857 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" - -#: ../../include/text.php:1868 -msgid "HTML" -msgstr "HTML" - -#: ../../include/text.php:1871 -msgid "Comanche Layout" -msgstr "Comanche-Layout" - -#: ../../include/text.php:1876 -msgid "PHP" -msgstr "PHP" - -#: ../../include/text.php:1885 -msgid "Page content type" -msgstr "Art des Seiteninhalts" - -#: ../../include/text.php:2018 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2100 -msgid "a-z, 0-9, -, and _ only" -msgstr "nur a-z, 0-9, - und _" - -#: ../../include/text.php:2419 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" - -#: ../../include/text.php:2425 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/text.php:2447 -msgid "Import website..." -msgstr "Webseite importieren..." - -#: ../../include/text.php:2448 -msgid "Select folder to import" -msgstr "Ordner zum Importieren auswählen" - -#: ../../include/text.php:2449 -msgid "Import from a zipped folder:" -msgstr "Aus einem gezippten Ordner importieren:" - -#: ../../include/text.php:2450 -msgid "Import from cloud files:" -msgstr "Aus Cloud-Dateien importieren:" - -#: ../../include/text.php:2451 -msgid "/cloud/channel/path/to/folder" -msgstr "/Cloud/Kanal/Pfad/zum/Ordner" - -#: ../../include/text.php:2452 -msgid "Enter path to website files" -msgstr "Pfad zu Webseitendateien eingeben" - -#: ../../include/text.php:2453 -msgid "Select folder" -msgstr "Ordner auswählen" - -#: ../../include/text.php:2454 -msgid "Export website..." -msgstr "Webseite exportieren..." - -#: ../../include/text.php:2455 -msgid "Export to a zip file" -msgstr "In eine ZIP-Datei exportieren" - -#: ../../include/text.php:2456 -msgid "website.zip" -msgstr "website.zip" - -#: ../../include/text.php:2457 -msgid "Enter a name for the zip file." -msgstr "Geben Sie einen für die ZIP-Datei ein." - -#: ../../include/text.php:2458 -msgid "Export to cloud files" -msgstr "In Cloud-Dateien exportieren" - -#: ../../include/text.php:2459 -msgid "/path/to/export/folder" -msgstr "/Pfad/zum/exportierenden/Ordner" - -#: ../../include/text.php:2460 -msgid "Enter a path to a cloud files destination." -msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." - -#: ../../include/text.php:2461 -msgid "Specify folder" -msgstr "Ordner angeben" - -#: ../../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:223 -msgid "Common Connections" -msgstr "Gemeinsame Verbindungen" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "Zeige alle %d gemeinsamen Verbindungen" - -#: ../../include/markdown.php:158 ../../include/bbcode.php:356 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "Premium-Kanal - bitte gehe zu:" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:165 -msgid "Remote channel or protocol unavailable." -msgstr "Externer Kanal oder Protokoll nicht verfügbar." - -#: ../../include/follow.php:188 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:200 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:211 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../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" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s aufklappen" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s einklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "alle" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beschreibung (optional)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Gib eine URL ein:" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" - -#: ../../include/js_strings.php:31 -msgid "timeago.prefixAgo" -msgstr "vor" - -#: ../../include/js_strings.php:32 -msgid "timeago.prefixFromNow" -msgstr "in" - -#: ../../include/js_strings.php:33 -msgid "timeago.suffixAgo" -msgstr "NONE" - -#: ../../include/js_strings.php:34 -msgid "timeago.suffixFromNow" -msgstr "NONE" - -#: ../../include/js_strings.php:37 -msgid "less than a minute" -msgstr "weniger als einer Minute" - -#: ../../include/js_strings.php:38 -msgid "about a minute" -msgstr "ungefähr einer Minute" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" - -#: ../../include/js_strings.php:40 -msgid "about an hour" -msgstr "ungefähr einer Stunde" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" - -#: ../../include/js_strings.php:42 -msgid "a day" -msgstr "einem Tag" - -#: ../../include/js_strings.php:43 -#, php-format -msgid "%d days" -msgstr "%d Tagen" - -#: ../../include/js_strings.php:44 -msgid "about a month" -msgstr "ungefähr einem Monat" - -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d months" -msgstr "%d Monaten" - -#: ../../include/js_strings.php:46 -msgid "about a year" -msgstr "ungefähr einem Jahr" - -#: ../../include/js_strings.php:47 -#, php-format -msgid "%d years" -msgstr "%d Jahren" - -#: ../../include/js_strings.php:48 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:49 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:55 -msgctxt "long" -msgid "May" -msgstr "Mai" - -#: ../../include/js_strings.php:63 -msgid "Jan" -msgstr "Jan" - -#: ../../include/js_strings.php:64 -msgid "Feb" -msgstr "Feb" - -#: ../../include/js_strings.php:65 -msgid "Mar" -msgstr "Mär" - -#: ../../include/js_strings.php:66 -msgid "Apr" -msgstr "Apr" - -#: ../../include/js_strings.php:67 -msgctxt "short" -msgid "May" -msgstr "Mai" - -#: ../../include/js_strings.php:68 -msgid "Jun" -msgstr "Jun" - -#: ../../include/js_strings.php:69 -msgid "Jul" -msgstr "Jul" - -#: ../../include/js_strings.php:70 -msgid "Aug" -msgstr "Aug" - -#: ../../include/js_strings.php:71 -msgid "Sep" -msgstr "Sep" - -#: ../../include/js_strings.php:72 -msgid "Oct" -msgstr "Okt" - -#: ../../include/js_strings.php:73 -msgid "Nov" -msgstr "Nov" - -#: ../../include/js_strings.php:74 -msgid "Dec" -msgstr "Dez" - -#: ../../include/js_strings.php:82 -msgid "Sun" -msgstr "So" - -#: ../../include/js_strings.php:83 -msgid "Mon" -msgstr "Mo" - -#: ../../include/js_strings.php:84 -msgid "Tue" -msgstr "Di" - -#: ../../include/js_strings.php:85 -msgid "Wed" -msgstr "Mi" - -#: ../../include/js_strings.php:86 -msgid "Thu" -msgstr "Do" - -#: ../../include/js_strings.php:87 -msgid "Fri" -msgstr "Fr" - -#: ../../include/js_strings.php:88 -msgid "Sat" -msgstr "Sa" - -#: ../../include/js_strings.php:89 -msgctxt "calendar" -msgid "today" -msgstr "heute" - -#: ../../include/js_strings.php:90 -msgctxt "calendar" -msgid "month" -msgstr "Monat" - -#: ../../include/js_strings.php:91 -msgctxt "calendar" -msgid "week" -msgstr "Woche" - -#: ../../include/js_strings.php:92 -msgctxt "calendar" -msgid "day" -msgstr "Tag" - -#: ../../include/js_strings.php:93 -msgctxt "calendar" -msgid "All day" -msgstr "Ganztägig" - -#: ../../include/message.php:40 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:79 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:84 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:214 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." - -#: ../../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/attach.php:265 ../../include/attach.php:361 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:554 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:576 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:595 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:737 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:758 -#, 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:940 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:969 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:1043 ../../include/attach.php:1059 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:1108 ../../include/attach.php:1273 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:1134 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:1159 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:1227 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:1231 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/attach.php:1279 -msgid "Empty path" -msgstr "Leere Pfadangabe" - -#: ../../include/security.php:541 -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/items.php:885 ../../include/items.php:945 -msgid "(Unknown)" -msgstr "(Unbekannt)" - -#: ../../include/items.php:1133 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." - -#: ../../include/items.php:1135 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." - -#: ../../include/items.php:1137 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." - -#: ../../include/items.php:1139 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." - -#: ../../include/items.php:1141 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." - -#: ../../include/items.php:1143 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." - -#: ../../include/items.php:1145 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." - -#: ../../include/items.php:1147 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." - -#: ../../include/items.php:4197 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." - -#: ../../include/items.php:4204 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" - -#: ../../include/items.php:4216 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/items.php:4565 -msgid "profile photo" -msgstr "Profilfoto" - -#: ../../include/items.php:4756 -#, php-format -msgid "[Edited %s]" -msgstr "[%s wurde bearbeitet]" - -#: ../../include/items.php:4756 -msgctxt "edit_activity" -msgid "Post" -msgstr "Beitrag" - -#: ../../include/items.php:4756 -msgctxt "edit_activity" -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/channel.php:35 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" - -#: ../../include/channel.php:68 -msgid "Empty name" -msgstr "Namensfeld leer" - -#: ../../include/channel.php:71 -msgid "Name too long" -msgstr "Name ist zu lang" - -#: ../../include/channel.php:188 -msgid "No account identifier" -msgstr "Keine Konten-Kennung" - -#: ../../include/channel.php:200 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." - -#: ../../include/channel.php:277 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" - -#: ../../include/channel.php:373 -msgid "Default Profile" -msgstr "Standard-Profil" - -#: ../../include/channel.php:532 ../../include/channel.php:621 -msgid "Unable to retrieve modified identity" -msgstr "Geänderte Identität kann nicht empfangen werden" - -#: ../../include/channel.php:1297 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" - -#: ../../include/channel.php:1318 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: ../../include/channel.php:1395 ../../include/channel.php:1523 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../include/channel.php:1397 ../../include/channel.php:1591 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../include/channel.php:1398 -msgid "Online Now" -msgstr "gerade online" - -#: ../../include/channel.php:1451 -msgid "Change your profile photo" -msgstr "Dein Profilfoto ändern" - -#: ../../include/channel.php:1482 -msgid "Trans" -msgstr "Trans" - -#: ../../include/channel.php:1528 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" - -#: ../../include/channel.php:1552 -msgid "j F, Y" -msgstr "j. F Y" - -#: ../../include/channel.php:1553 -msgid "j F" -msgstr "j. F" - -#: ../../include/channel.php:1560 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/channel.php:1573 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" - -#: ../../include/channel.php:1585 -msgid "Tags:" -msgstr "Schlagworte:" - -#: ../../include/channel.php:1589 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" - -#: ../../include/channel.php:1595 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: ../../include/channel.php:1597 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/channel.php:1601 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" - -#: ../../include/channel.php:1603 -msgid "Likes:" -msgstr "Gefällt:" - -#: ../../include/channel.php:1605 -msgid "Dislikes:" -msgstr "Gefällt nicht:" - -#: ../../include/channel.php:1607 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" - -#: ../../include/channel.php:1609 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" - -#: ../../include/channel.php:1611 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/channel.php:1613 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" - -#: ../../include/channel.php:1615 -msgid "Television:" -msgstr "Fernsehen:" - -#: ../../include/channel.php:1617 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" - -#: ../../include/channel.php:1619 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" - -#: ../../include/channel.php:1621 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" - -#: ../../include/channel.php:1623 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/channel.php:1646 -msgid "Like this thing" -msgstr "Gefällt mir" - -#: ../../include/event.php:24 ../../include/event.php:71 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/event.php:32 ../../include/event.php:75 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/event.php:42 ../../include/event.php:79 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/event.php:1011 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/event.php:1227 -msgid "Not specified" -msgstr "Keine Angabe" - -#: ../../include/event.php:1228 -msgid "Needs Action" -msgstr "Aktion erforderlich" - -#: ../../include/event.php:1229 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1230 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1231 -msgid "Cancelled" -msgstr "gestrichen" - -#: ../../include/event.php:1310 ../../include/connections.php:692 -msgid "Home, Voice" -msgstr "Zuhause, Sprache" - -#: ../../include/event.php:1311 ../../include/connections.php:693 -msgid "Home, Fax" -msgstr "Zuhause, Fax" - -#: ../../include/event.php:1313 ../../include/connections.php:695 -msgid "Work, Voice" -msgstr "Arbeit, Sprache" - -#: ../../include/event.php:1314 ../../include/connections.php:696 -msgid "Work, Fax" -msgstr "Arbeit, Fax" - -#: ../../include/network.php:762 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/network.php:1764 ../../include/network.php:1765 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:1766 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:1767 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:1768 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:1771 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:1772 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:1773 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:1774 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:1775 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:1776 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" - -#: ../../include/acl_selectors.php:115 -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:116 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:150 -#, 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/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" - -#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 -#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 -#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 -#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 -#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 -#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 -#: ../../include/bbcode.php:1239 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/bbcode.php:253 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "Installiere %1$s Element %2$s" - -#: ../../include/bbcode.php:257 -#, 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:348 -msgid "card" -msgstr "Karte" - -#: ../../include/bbcode.php:350 -msgid "article" -msgstr "Artikel" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/bbcode.php:441 -msgid "spoiler" -msgstr "Spoiler" - -#: ../../include/bbcode.php:454 -msgid "View article" -msgstr "Artikel ansehen" - -#: ../../include/bbcode.php:454 -msgid "View summary" -msgstr "Zusammenfassung ansehen" - -#: ../../include/bbcode.php:1188 -msgid "$1 wrote:" -msgstr "$1 schrieb:" - -#: ../../include/oembed.php:329 -msgid " by " -msgstr "von" - -#: ../../include/oembed.php:330 -msgid " on " -msgstr "am" - -#: ../../include/oembed.php:359 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:368 -msgid "Embedding disabled" -msgstr "Einbetten deaktiviert" - -#: ../../include/zid.php:347 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s heißt %2$s willkommen" - -#: ../../include/features.php:56 -msgid "General Features" -msgstr "Allgemeine Funktionen" - -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "Zeigt neuen Mitgliedern ein Menü mit Schnell-Links zu wichtigen Funktionen" - -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" - -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" - -#: ../../include/features.php:78 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" - -#: ../../include/features.php:79 -msgid "Save and load profile details across sites/channels" -msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" - -#: ../../include/features.php:87 -msgid "Web Pages" -msgstr "Webseiten" - -#: ../../include/features.php:88 -msgid "Provide managed web pages on your channel" -msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" - -#: ../../include/features.php:97 -msgid "Provide a wiki for your channel" -msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" - -#: ../../include/features.php:114 -msgid "Private Notes" -msgstr "Private Notizen" - -#: ../../include/features.php:115 -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:124 -msgid "Create personal planning cards" -msgstr "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken" - -#: ../../include/features.php:134 -msgid "Create interactive articles" -msgstr "Erstelle interaktive Artikel" - -#: ../../include/features.php:142 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" - -#: ../../include/features.php:143 -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:151 -msgid "Photo Location" -msgstr "Aufnahmeort" - -#: ../../include/features.php:152 -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:160 -msgid "Access Controlled Chatrooms" -msgstr "Zugriffskontrollierte Chaträume" - -#: ../../include/features.php:161 -msgid "Provide chatrooms and chat services with access control." -msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." - -#: ../../include/features.php:170 -msgid "Smart Birthdays" -msgstr "Smarte Geburtstage" - -#: ../../include/features.php:171 -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:179 -msgid "Event Timezone Selection" -msgstr "Termin-Zeitzonenauswahl" - -#: ../../include/features.php:180 -msgid "Allow event creation in timezones other than your own." -msgstr "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen." - -#: ../../include/features.php:189 -msgid "Premium Channel" -msgstr "Premium-Kanal" - -#: ../../include/features.php:190 -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:198 -msgid "Advanced Directory Search" -msgstr "Erweiterte Verzeichnissuche" - -#: ../../include/features.php:199 -msgid "Allows creation of complex directory search queries" -msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" - -#: ../../include/features.php:207 -msgid "Advanced Theme and Layout Settings" -msgstr "Erweiterte Design- und Layout-Einstellungen" - -#: ../../include/features.php:208 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" - -#: ../../include/features.php:217 -msgid "Access Control and Permissions" -msgstr "Zugriffskontrolle und Berechtigungen" - -#: ../../include/features.php:221 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Gruppen" - -#: ../../include/features.php:222 -msgid "Enable management and selection of privacy groups" -msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" - -#: ../../include/features.php:230 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" - -#: ../../include/features.php:231 -msgid "Ability to create multiple profiles" -msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" - -#: ../../include/features.php:241 -msgid "Provide alternate connection permission roles." -msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." - -#: ../../include/features.php:249 -msgid "OAuth1 Clients" -msgstr "OAuth1 Clients" - -#: ../../include/features.php:250 -msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." -msgstr "Verwalte OAuth1-Tokens für den Zugriff von mobilen bzw. externen Anwendungen." - -#: ../../include/features.php:258 -msgid "OAuth2 Clients" -msgstr "OAuth2 Clients" - -#: ../../include/features.php:259 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "Verwalte OAuth2-Tokens für den Zugriff von mobilen bzw. externen Anwendungen." - -#: ../../include/features.php:267 -msgid "Access Tokens" -msgstr "Zugangstokens" - -#: ../../include/features.php:268 -msgid "Create access tokens so that non-members can access private content." -msgstr "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte." - -#: ../../include/features.php:279 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" - -#: ../../include/features.php:283 -msgid "Large Photos" -msgstr "Große Fotos" - -#: ../../include/features.php:284 -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:293 -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:301 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" - -#: ../../include/features.php:302 -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:310 -msgid "Enable Voting Tools" -msgstr "Umfragewerkzeuge aktivieren" - -#: ../../include/features.php:311 -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:319 -msgid "Disable Comments" -msgstr "Kommentare deaktivieren" - -#: ../../include/features.php:320 -msgid "Provide the option to disable comments for a post" -msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" - -#: ../../include/features.php:328 -msgid "Delayed Posting" -msgstr "Verzögertes Senden" - -#: ../../include/features.php:329 -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:337 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" - -#: ../../include/features.php:338 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." - -#: ../../include/features.php:346 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Doppelte Beiträge unterdrücken" - -#: ../../include/features.php:347 -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:355 -msgid "Auto-save drafts of posts and comments" -msgstr "Auto-Speicherung von Beitrags- und Kommentarentwürfen" - -#: ../../include/features.php:356 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help" -" prevent accidental loss of compositions" -msgstr "Speichert Deine Beitrags- und Kommentarentwürfe automatisch im lokalen Browserspeicher und hilft so, versehentlichem Verlust dieser Inhalte vorzubeugen" - -#: ../../include/features.php:367 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" - -#: ../../include/features.php:371 -msgid "Search by Date" -msgstr "Suche nach Datum" - -#: ../../include/features.php:372 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" - -#: ../../include/features.php:382 -msgid "Save search terms for re-use" -msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" - -#: ../../include/features.php:390 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" - -#: ../../include/features.php:391 -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:399 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" - -#: ../../include/features.php:400 -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:408 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" - -#: ../../include/features.php:409 -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:418 -msgid "Show friend and connection suggestions" -msgstr "Freund- und Verbindungsvorschläge anzeigen" - -#: ../../include/features.php:426 -msgid "Connection Filtering" -msgstr "Filter für Verbindungen" - -#: ../../include/features.php:427 -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:439 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" - -#: ../../include/features.php:443 -msgid "Community Tagging" -msgstr "Gemeinschaftliches Verschlagworten" - -#: ../../include/features.php:444 -msgid "Ability to tag existing posts" -msgstr "Ermöglicht das Verschlagworten existierender Beiträge" - -#: ../../include/features.php:452 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" - -#: ../../include/features.php:453 -msgid "Add categories to your posts" -msgstr "Aktiviert Kategorien für Beiträge" - -#: ../../include/features.php:461 -msgid "Emoji Reactions" -msgstr "Emoji Reaktionen" - -#: ../../include/features.php:462 -msgid "Add emoji reaction ability to posts" -msgstr "Aktiviert Emoji-Reaktionen für Beiträge" - -#: ../../include/features.php:471 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" - -#: ../../include/features.php:479 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht-Beiträge" - -#: ../../include/features.php:480 -msgid "Ability to dislike posts/comments" -msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" - -#: ../../include/features.php:488 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" - -#: ../../include/features.php:489 -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:497 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" - -#: ../../include/features.php:498 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" - -#: ../../include/taxonomy.php:320 -msgid "Trending" -msgstr "Meistbeachtet" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "missfällt" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" - -#: ../../include/account.php:38 -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:44 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." - -#: ../../include/account.php:76 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." - -#: ../../include/account.php:314 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" - -#: ../../include/account.php:383 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" - -#: ../../include/account.php:405 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:411 ../../include/account.php:473 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:484 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." - -#: ../../include/account.php:524 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde widerrufen" - -#: ../../include/account.php:803 ../../include/account.php:805 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:811 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:816 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "Geburtstag" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "Alter:" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" - -#: ../../include/datetime.php:262 -#, 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:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" - -#: ../../include/nav.php:96 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:96 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:105 ../../include/nav.php:192 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" - -#: ../../include/nav.php:111 ../../include/nav.php:140 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:114 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:117 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:157 -msgid "Take me home" -msgstr "Bringe mich nach Hause (eigener Kanal)" - -#: ../../include/nav.php:159 -msgid "Log me out of this site" -msgstr "Logge mich von dieser Seite aus" - -#: ../../include/nav.php:164 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:176 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../include/nav.php:179 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:199 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:290 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "@Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt" - -#: ../../include/nav.php:291 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/nav.php:297 -msgid "Add Apps" -msgstr "Apps hinzufügen" - -#: ../../include/nav.php:298 -msgid "Arrange Apps" -msgstr "Apps anordnen" - -#: ../../include/nav.php:299 -msgid "Toggle System Apps" -msgstr "System-Apps umschalten" - -#: ../../include/photos.php:150 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" - -#: ../../include/photos.php:161 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../include/photos.php:326 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." - -#: ../../include/photos.php:375 -msgid "a new photo" -msgstr "ein neues Foto" - -#: ../../include/photos.php:379 -#, 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:671 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: ../../include/zot.php:772 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" - -#: ../../include/zot.php:799 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../include/zot.php:2552 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" - -#: ../../include/zot.php:4219 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" - -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" - -#: ../../include/group.php:306 -msgid "edit" -msgstr "Bearbeiten" - -#: ../../include/group.php:329 -msgid "Edit group" -msgstr "Gruppe ändern" - -#: ../../include/group.php:330 -msgid "Add privacy group" -msgstr "Gruppe hinzufügen" - -#: ../../include/group.php:331 -msgid "Channels not in any privacy group" -msgstr "Kanäle, die in keiner Gruppe sind" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "Neues Fenster" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" - -#: ../../include/auth.php:152 -msgid "Delegation session ended." -msgstr "" - -#: ../../include/auth.php:156 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:273 -msgid "Email validation is incomplete. Please check your email." -msgstr "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)." - -#: ../../include/auth.php:289 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/help.php:34 -msgid "Help:" -msgstr "Hilfe:" - -#: ../../include/help.php:78 -msgid "Not Found" -msgstr "Nicht gefunden" diff --git a/view/de-de/hstrings.php b/view/de-de/hstrings.php deleted file mode 100644 index 884267319..000000000 --- a/view/de-de/hstrings.php +++ /dev/null @@ -1,3259 +0,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["Submit"] = "Absenden"; -App::$strings["Articles"] = "Artikel"; -App::$strings["Add Article"] = "Artikel hinzufügen"; -App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Layout Name"] = "Layout-Name"; -App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; -App::$strings["Edit Layout"] = "Layout bearbeiten"; -App::$strings["Permission denied"] = "Keine Berechtigung"; -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["All Connections"] = "Alle Verbindungen"; -App::$strings["INVALID EVENT DISMISSED!"] = "UNGÜLTIGEN TERMIN ABGELEHNT!"; -App::$strings["Summary: "] = "Zusammenfassung:"; -App::$strings["Unknown"] = "Unbekannt"; -App::$strings["Date: "] = "Datum:"; -App::$strings["Reason: "] = "Grund:"; -App::$strings["INVALID CARD DISMISSED!"] = "UNGÜLTIGE KARTE ABGELEHNT!"; -App::$strings["Name: "] = "Name: "; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "Beispiel: JJJJ-MM-TT HH:mm"; -App::$strings["End date and time"] = "Enddatum und -zeit"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Location"] = "Ort"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Today"] = "Heute"; -App::$strings["Month"] = "Monat"; -App::$strings["Week"] = "Woche"; -App::$strings["Day"] = "Tag"; -App::$strings["List month"] = "Liste Monat"; -App::$strings["List week"] = "Liste Woche"; -App::$strings["List day"] = "Liste Tag"; -App::$strings["More"] = "Mehr"; -App::$strings["Less"] = "Weniger"; -App::$strings["Select calendar"] = "Kalender auswählen"; -App::$strings["Delete all"] = "Alles löschen"; -App::$strings["Cancel"] = "Abbrechen"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert."; -App::$strings["Name"] = "Name"; -App::$strings["Organisation"] = "Organisation"; -App::$strings["Title"] = "Titel"; -App::$strings["Phone"] = "Telefon"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Instant messenger"] = "Sofortnachrichtendienst"; -App::$strings["Website"] = "Webseite"; -App::$strings["Address"] = "Adresse"; -App::$strings["Note"] = "Hinweis"; -App::$strings["Mobile"] = "Mobil"; -App::$strings["Home"] = "Home"; -App::$strings["Work"] = "Arbeit"; -App::$strings["Add Contact"] = "Kontakt hinzufügen"; -App::$strings["Add Field"] = "Feld hinzufügen"; -App::$strings["Update"] = "Aktualisieren"; -App::$strings["P.O. Box"] = "Postfach"; -App::$strings["Additional"] = "Zusätzlich"; -App::$strings["Street"] = "Straße"; -App::$strings["Locality"] = "Ortschaft"; -App::$strings["Region"] = "Region"; -App::$strings["ZIP Code"] = "Postleitzahl"; -App::$strings["Country"] = "Land"; -App::$strings["Default Calendar"] = "Standardkalender"; -App::$strings["Default Addressbook"] = "Standardadressbuch"; -App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; -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["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["Welcome to Hubzilla!"] = "Willkommen bei Hubzilla!"; -App::$strings["You have got no unseen posts..."] = "Du hast keine ungelesenen Beiträge..."; -App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; -App::$strings["Search"] = "Suche"; -App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; -App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; -App::$strings["Public Stream"] = "Öffentlicher Beitrags-Stream"; -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["Change Order of Pinned Navbar Apps"] = "Reihenfolge der in der Navigation angepinnten Apps ändern"; -App::$strings["Change Order of App Tray Apps"] = "Reihenfolge der Apps im App-Menü ändern"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Benutze die Pfeil-Knöpfe, um die jeweilige App in der Navigationsleiste nach links (oben) oder rechts (unten) zu bewegen"; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Benutze die Pfeil-Knöpfe, um die jeweilige App im App-Menü nach oben oder unten zu bewegen"; -App::$strings["Menu not found."] = "Menü nicht gefunden"; -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["Not found."] = "Nicht gefunden."; -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["No"] = "Nein"; -App::$strings["Yes"] = "Ja"; -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["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["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["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["Edit Location"] = "Ort bearbeiten"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Timezone:"] = "Zeitzone:"; -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["Export"] = "Exportieren"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -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["Please login."] = "Bitte melde dich an."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["photo"] = "Foto"; -App::$strings["status"] = "Status"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr"; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Article"] = "Artikel bearbeiten"; -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"; -App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; -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["File to Upload"] = "Hochzuladende Datei:"; -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["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 Privatsphä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 a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Ein Kanal ist eine eindeutige Identität. Er kann eine Person (Soziales Netzwerk-Profil), ein Forum (Gruppe), eine Unternehmens- oder Prominenten-Seite, einen Newsfeed oder viele andere Dinge repräsentieren. Kanäle können Verbindungen mit anderen Kanälen eingehen, um Informationen miteinander auszutauschen."; -App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "Die Art des Kanals, den Du erzeugst, beeinflusst die grundlegenden Privatsphäre-Einstellungen, die Rechte, die Verbindungen/Freunden gewährt werden, und auch die Sichtbarkeit des Kanals im gesamten Netzwerk."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["Validate"] = "Überprüfe"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; -App::$strings["Remove This Channel"] = "Diesen Kanal löschen"; -App::$strings["WARNING: "] = "WARNUNG: "; -App::$strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; -App::$strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!"; -App::$strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; -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["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; -App::$strings["NEW"] = "NEU"; -App::$strings["Size"] = "Größe"; -App::$strings["Last Modified"] = "Zuletzt geändert"; -App::$strings["Remove all files"] = "Alle Dateien löschen"; -App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; -App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -App::$strings["Could not create table."] = "Konnte Tabelle nicht erstellen."; -App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemprüfung"; -App::$strings["Check again"] = "Nochmal prüfen"; -App::$strings["Database connection"] = "Datenbankverbindung"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -App::$strings["Database Server Name"] = "Datenbankservername"; -App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1"; -App::$strings["Database Port"] = "Datenbankport"; -App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -App::$strings["Database Login Name"] = "Datenbank-Benutzername"; -App::$strings["Database Login Password"] = "Datenbank-Passwort"; -App::$strings["Database Name"] = "Datenbankname"; -App::$strings["Database Type"] = "Datenbanktyp"; -App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -App::$strings["Website URL"] = "Webseiten-URL"; -App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -App::$strings["Site settings"] = "Seiteneinstellungen"; -App::$strings["PHP version 5.5 or greater is required."] = "PHP-Version 5.5 oder höher ist erforderlich."; -App::$strings["PHP version"] = "PHP-Version"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -App::$strings["PHP executable path"] = "PHP-Pfad zu ausführbarer Datei"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; -App::$strings["Command line PHP"] = "PHP-Befehlszeile"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Prüfung auf Kommandozeilen-PHP fehlgeschlagen, da shell_exec() deaktiviert ist. Dies wird aber benötigt."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; -App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Du kannst diese Einstellungen in der php.ini - Datei des Servers anpassen."; -App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel erzeugen"; -App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -App::$strings["PDO database PHP module"] = "PDO-Datenbank-PHP-Modul"; -App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -App::$strings["xml PHP module"] = "xml-PHP-Modul"; -App::$strings["zip PHP module"] = "zip 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."; -App::$strings["exec"] = "exec"; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Fehler: exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -App::$strings["shell_exec"] = "shell_exec"; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Fehler: shell_exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -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: PDO database PHP module required but not installed."] = "Fehler: PDO-Datenbank-PHP-Modul ist erforderlich, aber nicht 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: 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["Error: zip PHP module required but not installed."] = "Fehler: Das zip PHP Modul ist erforderlich, ist aber nicht installiert."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -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."; -App::$strings["Please see install/INSTALL.txt for additional information."] = "Lies die Datei \"install/INSTALL.txt\"."; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Diese Software verwendet die Smarty3 Template Engine, um Vorlagen für die Webdarstellung zu verarbeiten. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -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."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses."; -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 top level web folder"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Web-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."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -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"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -App::$strings["

What next?

"] = "

Wie geht es jetzt weiter?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -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["Queue Statistics"] = "Warteschlangenstatistiken"; -App::$strings["Total Entries"] = "Einträge insgesamt"; -App::$strings["Priority"] = "Priorität"; -App::$strings["Destination URL"] = "Ziel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; -App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; -App::$strings["Last known contact"] = "Letzter Kontakt"; -App::$strings["Off"] = "Aus"; -App::$strings["On"] = "An"; -App::$strings["Lock feature %s"] = "Blockiere die Funktion %s"; -App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten"; -App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -App::$strings["Item not found."] = "Element nicht gefunden."; -App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -App::$strings["Disable"] = "Deaktivieren"; -App::$strings["Enable"] = "Aktivieren"; -App::$strings["Administration"] = "Administration"; -App::$strings["Plugins"] = "Plug-Ins"; -App::$strings["Toggle"] = "Umschalten"; -App::$strings["Settings"] = "Einstellungen"; -App::$strings["Author: "] = "Autor: "; -App::$strings["Maintainer: "] = "Betreuer:"; -App::$strings["Minimum project version: "] = "Minimale Version des Projekts:"; -App::$strings["Maximum project version: "] = "Maximale Version des Projekts:"; -App::$strings["Minimum PHP version: "] = "Minimale PHP Version:"; -App::$strings["Compatible Server Roles: "] = "Kompatible Serverrollen: "; -App::$strings["Requires: "] = "Benötigt:"; -App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."; -App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL"; -App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name"; -App::$strings["(optional)"] = "(optional)"; -App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen"; -App::$strings["Install new repo"] = "Neues Repository installieren"; -App::$strings["Install"] = "Installieren"; -App::$strings["Manage Repos"] = "Repositorien verwalten"; -App::$strings["Installed Plugin Repositories"] = "Installierte Plugin-Repositorien"; -App::$strings["Install a New Plugin Repository"] = "Ein neues Plugin-Repository installieren"; -App::$strings["Switch branch"] = "Zweig/Branch wechseln"; -App::$strings["Remove"] = "Entfernen"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s Konto blockiert/freigegeben", - 1 => "%s Konten blockiert/freigegeben", -); -App::$strings["%s account deleted"] = array( - 0 => "%s Konto gelöscht", - 1 => "%s Konten gelöscht", -); -App::$strings["Account not found"] = "Konto nicht gefunden"; -App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; -App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; -App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; -App::$strings["Accounts"] = "Konten"; -App::$strings["select all"] = "Alle auswählen"; -App::$strings["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung"; -App::$strings["Request date"] = "Antragsdatum"; -App::$strings["No registrations."] = "Keine Registrierungen."; -App::$strings["Approve"] = "Genehmigen"; -App::$strings["Deny"] = "Verweigern"; -App::$strings["Block"] = "Blockieren"; -App::$strings["Unblock"] = "Freigeben"; -App::$strings["ID"] = "ID"; -App::$strings["All Channels"] = "Alle Kanäle"; -App::$strings["Register date"] = "Registrierungs-Datum"; -App::$strings["Last login"] = "Letzte Anmeldung"; -App::$strings["Expires"] = "Verfällt"; -App::$strings["Service Class"] = "Service-Klasse"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -App::$strings["Logs"] = "Protokolle"; -App::$strings["Clear"] = "Leeren"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "Protokolldatei"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."; -App::$strings["Log level"] = "Protokollstufe"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Code für %s Kanal gesperrt/freigegeben", - 1 => "Code für %s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -App::$strings["Channel not found"] = "Kanal nicht gefunden"; -App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; -App::$strings["Channels"] = "Kanäle"; -App::$strings["Censor"] = "Sperren"; -App::$strings["Uncensor"] = "Freigeben"; -App::$strings["Allow Code"] = "Code erlauben"; -App::$strings["Disallow Code"] = "Code sperren"; -App::$strings["Channel"] = "Kanal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -App::$strings["Theme settings updated."] = "Design-Einstellungen aktualisiert."; -App::$strings["No themes found."] = "Keine Designs gefunden."; -App::$strings["Screenshot"] = "Bildschirmfoto"; -App::$strings["Themes"] = "Designs"; -App::$strings["[Experimental]"] = "[Experimentell]"; -App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; -App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -App::$strings["Default"] = "Standard"; -App::$strings["%s - (Incompatible)"] = "%s - (Inkompatibel)"; -App::$strings["mobile"] = "mobil"; -App::$strings["experimental"] = "experimentell"; -App::$strings["unsupported"] = "nicht unterstützt"; -App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; -App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; -App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff"; -App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -App::$strings["Beginner/Basic"] = "Anfänger/Basis"; -App::$strings["Novice - not skilled but willing to learn"] = "Anfänger - unerfahren, aber bereit zu lernen"; -App::$strings["Intermediate - somewhat comfortable"] = "Fortgeschritten - relativ komfortabel"; -App::$strings["Advanced - very comfortable"] = "Fortgeschritten - sehr komfortabel"; -App::$strings["Expert - I can write computer code"] = "Experte - Ich kann Computercode schreiben"; -App::$strings["Wizard - I probably know more than you do"] = "Zauberer - ich kann wahrscheinlich mehr als Du"; -App::$strings["Site"] = "Seite"; -App::$strings["Registration"] = "Registrierung"; -App::$strings["File upload"] = "Dateiupload"; -App::$strings["Policies"] = "Richtlinien"; -App::$strings["Advanced"] = "Fortgeschritten"; -App::$strings["Site name"] = "Seitenname"; -App::$strings["Site default technical skill level"] = "Standard-Qualifikationsstufe der Website"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten."; -App::$strings["Lock the technical skill level setting"] = "Sperre die technische Qualifikationsstufe"; -App::$strings["Members can set their own technical comfort level by default"] = "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Ungefiltertes HTML/CSS/JS ist erlaubt"; -App::$strings["Administrator Information"] = "Administrator-Informationen"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -App::$strings["Site Information"] = "Seiteninformationen"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden."; -App::$strings["System language"] = "System-Sprache"; -App::$strings["System theme"] = "System-Design"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern"; -App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -App::$strings["Maximum image size"] = "Maximale Bildgröße"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -App::$strings["Invitation only"] = "Nur mit Einladung"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; -App::$strings["Minimum age"] = "Mindestalter"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -App::$strings["Register text"] = "Registrierungstext"; -App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; -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."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; -App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; -App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -App::$strings["Force publish"] = "Veröffentlichung erzwingen"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; -App::$strings["Site only Public Streams"] = "Öffentlichen Beitragsstrom auf diesen Server beschränken"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert."; -App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; -App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird."; -App::$strings["Reply-to email address for system generated email."] = "Antwortadresse (reply-to) für Emails, die vom System generiert wurden."; -App::$strings["Sender (From) email address for system generated email."] = "Absenderadresse (from) für Emails, die vom System generiert wurden."; -App::$strings["Name of email sender for system generated email."] = "Name des Versenders von Emails, die vom System generiert wurden."; -App::$strings["Directory Server URL"] = "Verzeichnisserver-URL"; -App::$strings["Default directory server"] = "Standard-Verzeichnisserver"; -App::$strings["Proxy user"] = "Proxy Benutzer"; -App::$strings["Proxy URL"] = "Proxy URL"; -App::$strings["Network timeout"] = "Netzwerk-Timeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -App::$strings["Delivery interval"] = "Auslieferung Intervall"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; -App::$strings["Queue Threshold"] = "Warteschlangen-Grenzwert"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält."; -App::$strings["Poll interval"] = "Abfrageintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -App::$strings["Path to ImageMagick convert program"] = "Pfad zum ImageMagick-Programm convert"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Erlaube SVG-Vorschaubilder im Dateibrowser"; -App::$strings["WARNING: SVG images may contain malicious code."] = "Warnung: SVG-Grafiken können Schadcode enthalten."; -App::$strings["Maximum Load Average"] = "Maximales Load Average"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; -App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Lass keine Beiträge verfallen die Kommentare haben, die jünger als diese Anzahl von Tagen sind."; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung"; -App::$strings["Create this page first. Default is %s/register"] = "Erstelle zunächst die entsprechende Seite. Standard ist %s/register"; -App::$strings["Page to display after creating a new channel"] = "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll"; -App::$strings["Recommend: profiles, go, or settings"] = "Empfohlen: profiles, go oder settings"; -App::$strings["Optional: site location"] = "Optional: Standort der Website"; -App::$strings["Region or country"] = "Region oder Land"; -App::$strings["New Profile Field"] = "Neues Profilfeld"; -App::$strings["Field nickname"] = "Kurzname für das Feld"; -App::$strings["System name of field"] = "Systemname des Feldes"; -App::$strings["Input type"] = "Art des Inhalts"; -App::$strings["Field Name"] = "Feldname"; -App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -App::$strings["Help text"] = "Hilfetext"; -App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -App::$strings["Save"] = "Speichern"; -App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -App::$strings["Profile Fields"] = "Profil Felder"; -App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder"; -App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder"; -App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)"; -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["Password changed for account %d."] = "Passwort für Konto %d geändert."; -App::$strings["Account settings updated."] = "Kontoeinstellungen aktualisiert."; -App::$strings["Account not found."] = "Konto nicht gefunden."; -App::$strings["Account Edit"] = "Kontobearbeitung"; -App::$strings["New Password"] = "Neues Passwort"; -App::$strings["New Password again"] = "Neues Passwort wiederholen"; -App::$strings["Technical skill level"] = "Technische Qualifikationsstufe"; -App::$strings["Account language (for emails)"] = "Kontosprache (für E-Mails)"; -App::$strings["Service class"] = "Dienstklasse"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"; -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."] = "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert."; -App::$strings["Security"] = "Sicherheit"; -App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header"; -App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; -App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Servern/Domains erlauben"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben."; -App::$strings["Block communications from these sites"] = "Kommunikation von diesen Servern/Domains blockieren"; -App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. "; -App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains"; -App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert."; -App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Servern/Domains blockieren"; -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["__ctx:acl__ Profile"] = "Profil"; -App::$strings["Comment approved"] = "Kommentar bestätigt"; -App::$strings["Comment deleted"] = "Kommentar gelöscht"; -App::$strings["Permission Name is required."] = "Der Name der Berechtigung wird benötigt."; -App::$strings["Permission category saved."] = "Berechtigungsrolle gespeichert."; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Verwende dieses Formular, um Berechtigungsrollen für verschiedene Gruppen von Personen oder Verbindungen zu erstellen."; -App::$strings["Permission Categories"] = "Berechtigungsrollen"; -App::$strings["Permission Name"] = "Name der Berechtigungsrolle"; -App::$strings["My Settings"] = "Meine Einstellungen"; -App::$strings["inherited"] = "geerbt"; -App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -App::$strings["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."] = "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."; -App::$strings["Friends"] = "Freunde"; -App::$strings["Settings updated."] = "Einstellungen aktualisiert."; -App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst"; -App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; -App::$strings["Approved connections"] = "Angenommene Verbindungen"; -App::$strings["Any connections"] = "Beliebige Verbindungen"; -App::$strings["Anybody on this website"] = "Jeder auf dieser Website"; -App::$strings["Anybody in this network"] = "Alle \$Projectname-Mitglieder"; -App::$strings["Anybody authenticated"] = "Jeder authentifizierte"; -App::$strings["Anybody on the internet"] = "Jeder im Internet"; -App::$strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -App::$strings["or"] = "oder"; -App::$strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "Deine Dateien/Fotos sind via WebDAV verfügbar auf"; -App::$strings["Channel Settings"] = "Kanal-Einstellungen"; -App::$strings["Basic Settings"] = "Grundeinstellungen"; -App::$strings["Full Name:"] = "Voller Name:"; -App::$strings["Email Address:"] = "Email Adresse:"; -App::$strings["Your Timezone:"] = "Ihre Zeitzone:"; -App::$strings["Default Post Location:"] = "Standardstandort:"; -App::$strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; -App::$strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -App::$strings["Adult Content"] = "Nicht jugendfreie Inhalte"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; -App::$strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; -App::$strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; -App::$strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; -App::$strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; -App::$strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; -App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; -App::$strings["Channel Permission Limits"] = "Kanal-Berechtigungslimits"; -App::$strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; -App::$strings["0 or blank to use the website limit."] = "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden."; -App::$strings["This website expires after %d days."] = "Diese Webseite läuft nach %d Tagen ab."; -App::$strings["This website does not expire imported content."] = "Diese Webseite lässt importierte Inhalte nicht verfallen."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist."; -App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; -App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -App::$strings["Default Privacy Group"] = "Standard-Gruppe"; -App::$strings["Use my default audience setting for the type of object published"] = "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps"; -App::$strings["Profile to assign new connections"] = "Profil, welches neuen Verbindungen zugewiesen wird"; -App::$strings["Default Permissions Group"] = "Standard-Berechtigungsgruppe"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; -App::$strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; -App::$strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; -App::$strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; -App::$strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; -App::$strings["joining a forum/community"] = "Du einem Forum beitrittst"; -App::$strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; -App::$strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; -App::$strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; -App::$strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; -App::$strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; -App::$strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; -App::$strings["You receive a private message"] = "Du eine private Nachricht erhältst"; -App::$strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; -App::$strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; -App::$strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; -App::$strings["Someone likes your post/comment"] = "Jemand mag Ihren Beitrag/Kommentar"; -App::$strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; -App::$strings["Unseen grid activity"] = "Ungesehene Netzwerk-Aktivität"; -App::$strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; -App::$strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; -App::$strings["Recommended"] = "Empfohlen"; -App::$strings["Upcoming events"] = "Baldige Termine"; -App::$strings["Events today"] = "Heutige Termine"; -App::$strings["Upcoming birthdays"] = "Baldige Geburtstage"; -App::$strings["Not available in all themes"] = "Nicht in allen Designs verfügbar"; -App::$strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; -App::$strings["System info messages"] = "System – Info-Nachrichten"; -App::$strings["System critical alerts"] = "System – kritische Warnungen"; -App::$strings["New connections"] = "Neue Verbindungen"; -App::$strings["System Registrations"] = "System – Registrierungen"; -App::$strings["Unseen shared files"] = "Ungesehene geteilte Dateien"; -App::$strings["Unseen public activity"] = "Ungesehene öffentliche Aktivität"; -App::$strings["Unseen likes and dislikes"] = "Ungesehene Likes und Dislikes"; -App::$strings["Email notification hub (hostname)"] = "Hub für E-Mail-Benachrichtigungen (Hostname)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Zeige neue Pinnwand Beiträge, private Nachrichten und Verbindungen unter den Notizen an."; -App::$strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; -App::$strings["Must be greater than 0"] = "Muss größer als 0 sein"; -App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Konten- und Seitenart-Einstellungen"; -App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Kontos unter speziellen Umständen"; -App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; -App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; -App::$strings["%Y - current year, %m - current month"] = "%Y - aktuelles Jahr, %m - aktueller Monat"; -App::$strings["Default file upload folder"] = "Voreingestellter Ordner für hochgeladene Dateien"; -App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; -App::$strings["Remove this channel."] = "Diesen Kanal löschen"; -App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-Provider für Firefox Share"; -App::$strings["Start calendar week on Monday"] = "Beginne die kalendarische Woche am Montag"; -App::$strings["Additional Features"] = "Zusätzliche Funktionen"; -App::$strings["Your technical skill level"] = "Deine technische Qualifikationsstufe"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)."; -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["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 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["Their Settings"] = "Deren Einstellungen"; -App::$strings["Name and Secret are required"] = "Name und Geheimnis werden benötigt"; -App::$strings["Add OAuth2 application"] = "OAuth2 Anwendung hinzufügen"; -App::$strings["Name of application"] = "Name der Anwendung"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; -App::$strings["Redirect"] = "Umleitung"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; -App::$strings["Grant Types"] = "Genehmigungsarten"; -App::$strings["leave blank unless your application sepcifically requires this"] = "Frei lassen, es sei denn die Anwendung verlangt dies."; -App::$strings["Authorization scope"] = "Rahmen der Berechtigungen"; -App::$strings["OAuth2 Application not found."] = "OAuth2 Anwendung konnte nicht gefunden werden"; -App::$strings["Add application"] = "Anwendung hinzufügen"; -App::$strings["Connected OAuth2 Apps"] = "Verbundene OAuth2 Anwendungen"; -App::$strings["Client key starts with"] = "Client Key beginnt mit"; -App::$strings["No name"] = "Kein Name"; -App::$strings["Remove authorization"] = "Authorisierung aufheben"; -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."; -App::$strings["Technical skill level updated"] = "Technische Qualifikationsstufe aktualisiert"; -App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen."; -App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; -App::$strings["Password changed."] = "Kennwort geändert."; -App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; -App::$strings["Account Settings"] = "Konto-Einstellungen"; -App::$strings["Current Password"] = "Aktuelles Passwort"; -App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; -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["Remove Account"] = "Konto entfernen"; -App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; -App::$strings["Affinity Slider settings updated."] = "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert."; -App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; -App::$strings["Default maximum affinity level"] = "Voreinstellung für maximalen Beziehungsgrad"; -App::$strings["0-99 default 99"] = "0-99 - Standard 99"; -App::$strings["Default minimum affinity level"] = "Voreinstellung für minimalen Beziehungsgrad"; -App::$strings["0-99 - default 0"] = "0-99 - Standard 0"; -App::$strings["Affinity Slider Settings"] = "Beziehungsgrad-Schieberegler-Einstellungen"; -App::$strings["Addon Settings"] = "Addon-Einstellungen"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest."; -App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; -App::$strings["Display Settings"] = "Anzeige-Einstellungen"; -App::$strings["Theme Settings"] = "Design-Einstellungen"; -App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Design-Einstellungen"; -App::$strings["Content Settings"] = "Inhaltseinstellungen"; -App::$strings["Display Theme:"] = "Anzeige-Design:"; -App::$strings["Select scheme"] = "Schema wählen"; -App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; -App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; -App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; -App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; -App::$strings["Provide channel menu in navigation bar"] = "Kanal-Menü in der Navigationsleiste zur Verfügung stellen"; -App::$strings["Default: channel menu located in app menu"] = "Voreinstellung: Kanal-Menü ist im App-Menü integriert"; -App::$strings["Manual conversation updates"] = "Manuelle Konversationsaktualisierung"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen."; -App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; -App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; -App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; -App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; -App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; -App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"; -App::$strings["Name is required"] = "Name ist erforderlich"; -App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Icon url"] = "Symbol-URL"; -App::$strings["Optional"] = "Optional"; -App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden."; -App::$strings["Connected Apps"] = "Verbundene Apps"; -App::$strings["View Photo"] = "Foto ansehen"; -App::$strings["Edit Album"] = "Album bearbeiten"; -App::$strings["Upload"] = "Hochladen"; -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["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["Permissions"] = "Berechtigungen"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; -App::$strings["Connection added."] = "Verbindung hinzugefügt"; -App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; -App::$strings["Import completed."] = "Import abgeschlossen."; -App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -App::$strings["Import Channel"] = "Kanal importieren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; -App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; -App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -App::$strings["Your old login password"] = "Dein altes Passwort"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; -App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; -App::$strings["Move this channel (disable all previous locations)"] = "Verschiebe diesen Kanal (deaktiviere alle vorherigen Adressen/Klone)"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importiere die Beiträge einiger Monate, sofern möglich (beschränkt durch verfügbaren 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["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["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["Import"] = "Import"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Security Code:"] = "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode 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["Item not available."] = "Element nicht verfügbar."; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["vcard"] = "VCard"; -App::$strings["Apps"] = "Apps"; -App::$strings["Manage apps"] = "Apps verwalten"; -App::$strings["Create new app"] = "Neue App erstellen"; -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["Active"] = "Aktiv"; -App::$strings["Blocked"] = "Blockiert"; -App::$strings["Ignored"] = "Ignoriert"; -App::$strings["Hidden"] = "Versteckt"; -App::$strings["Archived/Unreachable"] = "Archiviert/Unerreichbar"; -App::$strings["New"] = "Neu"; -App::$strings["All"] = "Alle"; -App::$strings["Active Connections"] = "Aktive Verbindungen"; -App::$strings["Show active connections"] = "Zeige die aktiven Verbindungen an"; -App::$strings["New Connections"] = "Neue Verbindungen"; -App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; -App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; -App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; -App::$strings["Only show archived/unreachable connections"] = "Nur archivierte/unerreichbare Verbindungen anzeigen"; -App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; -App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; -App::$strings["Pending approval"] = "Wartet auf Genehmigung"; -App::$strings["Archived"] = "Archiviert"; -App::$strings["Not connected at this location"] = "An diesem Ort nicht verbunden"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Verbindung bearbeiten"; -App::$strings["Delete connection"] = "Verbindung löschen"; -App::$strings["Channel address"] = "Kanaladresse"; -App::$strings["Network"] = "Netzwerk"; -App::$strings["Call"] = "Anruf"; -App::$strings["Status"] = "Status"; -App::$strings["Connected"] = "Verbunden"; -App::$strings["Approve connection"] = "Verbindung genehmigen"; -App::$strings["Ignore connection"] = "Verbindung ignorieren"; -App::$strings["Ignore"] = "Ignorieren"; -App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; -App::$strings["Connections"] = "Verbindungen"; -App::$strings["Search your connections"] = "Verbindungen durchsuchen"; -App::$strings["Connections search"] = "Verbindung suchen"; -App::$strings["Find"] = "Finde"; -App::$strings["item"] = "Beitrag"; -App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -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"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem \$Projectname-Hub aus dem Netzwerk entfernt"; -App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -App::$strings["Album not found."] = "Album nicht gefunden."; -App::$strings["Delete Album"] = "Album löschen"; -App::$strings["Delete Photo"] = "Foto löschen"; -App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; -App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -App::$strings["Upload Photos"] = "Fotos hochladen"; -App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; -App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; -App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; -App::$strings["Description (optional)"] = "Beschreibung (optional)"; -App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; -App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -App::$strings["Add Photos"] = "Fotos hinzufügen"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -App::$strings["Photo not available"] = "Foto nicht verfügbar"; -App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; -App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; -App::$strings["Private Photo"] = "Privates Foto"; -App::$strings["View Full Size"] = "In voller Größe anzeigen"; -App::$strings["Edit photo"] = "Foto bearbeiten"; -App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -App::$strings["Move photo to album"] = "Foto in Album verschieben"; -App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -App::$strings["Please wait"] = "Bitte warten"; -App::$strings["This is you"] = "Das bist Du"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; -App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; -App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; -App::$strings["__ctx:title__ Attending"] = "Zusagen"; -App::$strings["__ctx:title__ Not attending"] = "Absagen"; -App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; -App::$strings["View all"] = "Alles anzeigen"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -App::$strings["Photo Tools"] = "Fotowerkzeuge"; -App::$strings["In This Photo:"] = "Auf diesem Foto:"; -App::$strings["Map"] = "Karte"; -App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -App::$strings["Close"] = "Schließen"; -App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["Profile Unavailable."] = "Profil nicht verfügbar."; -App::$strings["Not found"] = "Nicht gefunden"; -App::$strings["Invalid channel"] = "Ungültiger Kanal"; -App::$strings["Error retrieving wiki"] = "Fehler beim Abrufen des Wiki"; -App::$strings["Error creating zip file export folder"] = "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses "; -App::$strings["Error downloading wiki: "] = "Fehler beim Herunterladen des Wiki:"; -App::$strings["Wikis"] = "Wikis"; -App::$strings["Download"] = "Herunterladen"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Wiki name"] = "Name des Wiki"; -App::$strings["Content type"] = "Inhaltstyp"; -App::$strings["Markdown"] = "Markdown"; -App::$strings["BBcode"] = "BBcode"; -App::$strings["Text"] = "Text"; -App::$strings["Type"] = "Typ"; -App::$strings["Any type"] = "Alle Arten"; -App::$strings["Lock content type"] = "Inhaltstyp sperren"; -App::$strings["Create a status post for this wiki"] = "Erzeuge einen Statusbeitrag für dieses Wiki"; -App::$strings["Edit Wiki Name"] = "Wiki-Namen bearbeiten"; -App::$strings["Wiki not found"] = "Wiki nicht gefunden"; -App::$strings["Rename page"] = "Seite umbenennen"; -App::$strings["Error retrieving page content"] = "Fehler beim Abrufen des Seiteninhalts"; -App::$strings["New page"] = "Neue Seite"; -App::$strings["Revision Comparison"] = "Revisionsvergleich"; -App::$strings["Revert"] = "Rückgängig machen"; -App::$strings["Short description of your changes (optional)"] = "Kurze Beschreibung Ihrer Änderungen (optional)"; -App::$strings["Source"] = "Quelle"; -App::$strings["New page name"] = "Neuer Seitenname"; -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["Error creating wiki. Invalid name."] = "Fehler beim Erstellen des Wiki. Ungültiger Name."; -App::$strings["A wiki with this name already exists."] = "Es existiert bereits ein Wiki mit diesem Namen."; -App::$strings["Wiki created, but error creating Home page."] = "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite"; -App::$strings["Error creating wiki"] = "Fehler beim Erstellen des Wiki"; -App::$strings["Error updating wiki. Invalid name."] = "Fehler beim Aktualisieren des Wikis. Ungültiger Name."; -App::$strings["Error updating wiki"] = "Fehler beim Aktualisieren des Wikis"; -App::$strings["Wiki delete permission denied."] = "Wiki-Löschberechtigung verweigert."; -App::$strings["Error deleting wiki"] = "Fehler beim Löschen des Wiki"; -App::$strings["New page created"] = "Neue Seite erstellt"; -App::$strings["Cannot delete Home"] = "Kann die Startseite nicht löschen"; -App::$strings["Current Revision"] = "Aktuelle Revision"; -App::$strings["Selected Revision"] = "Ausgewählte Revision"; -App::$strings["You must be authenticated."] = "Sie müssen authenzifiziert sein."; -App::$strings["toggle full screen mode"] = "auf Vollbildmodus umschalten"; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["(modified)"] = "(geändert)"; -App::$strings["Reset"] = "Zurücksetzen"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Edit another layout"] = "Ein weiteres Layout bearbeiten"; -App::$strings["System layout"] = "System-Layout"; -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["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -App::$strings["Profile Photos"] = "Profilfotos"; -App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -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["Unable to process image"] = "Kann Bild nicht verarbeiten"; -App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -App::$strings["Photo not available."] = "Foto nicht verfügbar."; -App::$strings["Upload File:"] = "Datei hochladen:"; -App::$strings["Select a profile:"] = "Wähle ein Profil:"; -App::$strings["Use Photo for Profile"] = "Foto für Profil verwenden"; -App::$strings["Change Profile Photo"] = "Profilfoto ändern"; -App::$strings["Use"] = "Verwenden"; -App::$strings["Use a photo from your albums"] = "Ein Foto aus meinen Alben verwenden"; -App::$strings["Select existing photo"] = "Wähle ein vorhandenes Foto aus"; -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["Away"] = "Abwesend"; -App::$strings["Online"] = "Online"; -App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; -App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -App::$strings["Your comment is awaiting approval."] = "Dein Kommentar muss noch bestätigt werden."; -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["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["requires approval"] = "Zustimmung erforderlich"; -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["shared a file with you"] = "hat eine Datei mit Dir geteilt"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Page not found."] = "Seite 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["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."; -App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -App::$strings["is now connected to"] = "ist jetzt verbunden mit"; -App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -App::$strings["View Profile"] = "Profil ansehen"; -App::$strings["View %s's profile"] = "%ss Profil ansehen"; -App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abrufen"; -App::$strings["Refresh Photo"] = "Foto aktualisieren"; -App::$strings["Fetch updated photo"] = "Aktualisiertes Profilfoto abrufen"; -App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; -App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; -App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; -App::$strings["Unignore"] = "Nicht ignorieren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; -App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; -App::$strings["Unarchive"] = "Aus Archiv zurückholen"; -App::$strings["Archive"] = "Archivieren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; -App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; -App::$strings["Unhide"] = "Wieder sichtbar machen"; -App::$strings["Hide"] = "Verstecken"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; -App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; -App::$strings["Delete this connection"] = "Verbindung löschen"; -App::$strings["Fetch Vcard"] = "Vcard abrufen"; -App::$strings["Fetch electronic calling card for this connection"] = "Rufe eine digitale Visitenkarte für diese Verbindung ab"; -App::$strings["Open Individual Permissions section by default"] = "Öffne standardmäßig den Bereich für individuelle Berechtigungen"; -App::$strings["Affinity"] = "Beziehung"; -App::$strings["Open Set Affinity section by default"] = "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen"; -App::$strings["Me"] = "Ich"; -App::$strings["Family"] = "Familie"; -App::$strings["Acquaintances"] = "Bekannte"; -App::$strings["Filter"] = "Filter"; -App::$strings["Open Custom Filter section by default"] = "Öffne standardmäßig den Bereich für benutzerdefinierte Filter"; -App::$strings["Approve this connection"] = "Verbindung genehmigen"; -App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -App::$strings["Set Affinity"] = "Beziehung festlegen"; -App::$strings["Set Profile"] = "Profil festlegen"; -App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; -App::$strings["This connection is unreachable from this location."] = "Diese Verbindung ist von diesem Ort unerreichbar."; -App::$strings["This connection may be unreachable from other channel locations."] = "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein."; -App::$strings["Location independence is not supported by their network."] = "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt."; -App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -App::$strings["Connection: %s"] = "Verbindung: %s"; -App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; -App::$strings["Permission role"] = "Berechtigungsrolle"; -App::$strings["Loading"] = "Lädt..."; -App::$strings["Add permission role"] = "Berechtigungsrolle hinzufügen"; -App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; -App::$strings["Available locations:"] = "Verfügbare Klone:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; -App::$strings["Connection Tools"] = "Verbindungswerkzeuge"; -App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -App::$strings["Rating"] = "Bewertung"; -App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; -App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; -App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; -App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "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."; -App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; -App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; -App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; -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["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["Details"] = "Details"; -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["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Files"] = "Dateien"; -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["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["Layouts"] = "Layouts"; -App::$strings["Help"] = "Hilfe"; -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["Please refresh page"] = "Bitte die Seite neu laden"; -App::$strings["Unknown error"] = "Unbekannter Fehler"; -App::$strings["Token verification failed."] = "Überprüfung des Verifizierungscodes fehlgeschlagen."; -App::$strings["Email Verification Required"] = "Email-Überprüfung erforderlich"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint."; -App::$strings["Resend Email"] = "Email erneut versenden"; -App::$strings["Validation token"] = "Verifizierungscode"; -App::$strings["Post not found."] = "Beitrag nicht gefunden."; -App::$strings["post"] = "Beitrag"; -App::$strings["comment"] = "Kommentar"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -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["If enabled, connection requests will be approved without your interaction"] = "Ist dies aktiviert, werden Verbindungsanfragen ohne Deine aktive Zustimmung bestätigt."; -App::$strings["Automatic approval settings"] = "Einstellungen für automatische Bestätigung"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Einige individuelle Berechtigungen können basierend auf Deinen Kanal- und Privatsphäre-Einstellungen vorbelegt oder gesperrt sein."; -App::$strings["Unknown App"] = "Unbekannte Anwendung"; -App::$strings["Authorize"] = "Berechtigen"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "Willst du die Anwendung %s dazu berechtigen auf die Daten deines Kanals zuzugreifen?"; -App::$strings["Allow"] = "Erlauben"; -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."; -App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert."; -App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle."; -App::$strings["Privacy group name: "] = "Gruppenname:"; -App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -App::$strings["Privacy group removed."] = "Gruppe wurde entfernt."; -App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden."; -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["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["Gender"] = "Geschlecht"; -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["Relationship"] = "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["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["Homepage URL"] = "Homepage-URL"; -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["Communications"] = "Kommunikation"; -App::$strings["Profile Image"] = "Profilfoto:"; -App::$strings["Edit Profiles"] = "Profile bearbeiten"; -App::$strings["This page is available only to site members"] = "Diese Seite ist nur für Mitglieder verfügbar"; -App::$strings["Welcome"] = "Willkommen"; -App::$strings["What would you like to do?"] = "Was möchtest Du gerne tun?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest."; -App::$strings["Upload a profile photo"] = "Ein Profilfoto hochladen"; -App::$strings["Upload a cover photo"] = "Ein Titelbild hochladen"; -App::$strings["Edit your default profile"] = "Dein Standardprofil bearbeiten"; -App::$strings["View friend suggestions"] = "Freundschafts- und Verbindungsvorschläge ansehen"; -App::$strings["View the channel directory"] = "Das Kanalverzeichnis ansehen"; -App::$strings["View/edit your channel settings"] = "Deine Kanaleinstellungen ansehen/bearbeiten"; -App::$strings["View the site or project documentation"] = "Die Website-/Projektdokumentation ansehen"; -App::$strings["Visit your channel homepage"] = "Deine Kanal-Startseite aufrufen"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst"; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert."; -App::$strings["Page link"] = "Seiten-Link"; -App::$strings["Edit Webpage"] = "Webseite bearbeiten"; -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["Cards"] = "Karten"; -App::$strings["Add Card"] = "Karte hinzufügen"; -App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["About this site"] = "Über diese Seite"; -App::$strings["Site Name"] = "Seitenname"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["Terms of Service"] = "Nutzungsbedingungen"; -App::$strings["Software and Project information"] = "Software und Projektinformationen"; -App::$strings["This site is powered by \$Projectname"] = "Diese Website wird bereitgestellt durch \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Project homepage"] = "Projekt-Website"; -App::$strings["Developer homepage"] = "Entwickler-Website"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Import Webpage Elements"] = "Webseitenelemente importieren"; -App::$strings["Import selected"] = "Import ausgewählt"; -App::$strings["Export Webpage Elements"] = "Webseitenelemente exportieren"; -App::$strings["Export selected"] = "Exportieren ausgewählt"; -App::$strings["Webpages"] = "Webseiten"; -App::$strings["Actions"] = "Aktionen"; -App::$strings["Page Link"] = "Seiten-Link"; -App::$strings["Page Title"] = "Seitentitel"; -App::$strings["Invalid file type."] = "Ungültiger Dateityp."; -App::$strings["Error opening zip file"] = "Fehler beim Öffnen der ZIP-Datei"; -App::$strings["Invalid folder path."] = "Ungültiger Ordnerpfad."; -App::$strings["No webpage elements detected."] = "Keine Webseitenelemente erkannt."; -App::$strings["Import complete."] = "Import abgeschlossen."; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden."; -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["Change channel nickname/address"] = "Kanalname/-adresse ändern"; -App::$strings["Any/all connections on other networks will be lost!"] = "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!"; -App::$strings["New channel address"] = "Neue Kanaladresse"; -App::$strings["Rename Channel"] = "Kanal umbenennen"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; -App::$strings["no results"] = "keine Ergebnisse"; -App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; -App::$strings["queued"] = "zur Warteschlange hinzugefügt"; -App::$strings["posted"] = "zugestellt"; -App::$strings["accepted for delivery"] = "für Zustellung akzeptiert"; -App::$strings["updated"] = "aktualisiert"; -App::$strings["update ignored"] = "Aktualisierung ignoriert"; -App::$strings["permission denied"] = "Zugriff verweigert"; -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["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."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanal-Quellen"; -App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; -App::$strings["New Source"] = "Neue Quelle"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -App::$strings["Channel Name"] = "Name des Kanals"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)"; -App::$strings["Source not found."] = "Quelle nicht gefunden."; -App::$strings["Edit Source"] = "Quelle bearbeiten"; -App::$strings["Delete Source"] = "Quelle löschen"; -App::$strings["Source removed"] = "Quelle gelöscht"; -App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -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["%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["No default suggestions were found."] = "Es wurden keine Standard Vorschläge gefunden."; -App::$strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", -); -App::$strings["Gender: "] = "Geschlecht:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Webseite:"; -App::$strings["Age:"] = "Alter:"; -App::$strings["Location:"] = "Ort:"; -App::$strings["Description:"] = "Beschreibung:"; -App::$strings["Hometown:"] = "Heimatstadt:"; -App::$strings["About:"] = "Über:"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Public Forum:"] = "Öffentliches Forum:"; -App::$strings["Keywords: "] = "Schlüsselwörter:"; -App::$strings["Don't suggest"] = "Nicht vorschlagen"; -App::$strings["Common connections (estimated):"] = "Gemeinsame Verbindungen (geschätzt):"; -App::$strings["Global Directory"] = "Globales Verzeichnis"; -App::$strings["Local Directory"] = "Lokales Verzeichnis"; -App::$strings["Finding:"] = "Ergebnisse:"; -App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; -App::$strings["next page"] = "nächste Seite"; -App::$strings["previous page"] = "vorherige Seite"; -App::$strings["Sort options"] = "Sortieroptionen"; -App::$strings["Alphabetic"] = "alphabetisch"; -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["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["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -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"] = "Nachricht"; -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["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["Rate"] = "Bewerten"; -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["Select a bookmark folder"] = "Lesezeichenordner wählen"; -App::$strings["Save Bookmark"] = "Lesezeichen speichern"; -App::$strings["URL of bookmark"] = "URL des Lesezeichens"; -App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -App::$strings["Enter a folder name"] = "Gib einen Ordnernamen ein"; -App::$strings["or select an existing folder (doubleclick)"] = "oder wähle einen vorhanden Ordner aus (Doppelklick)"; -App::$strings["Save to Folder"] = "In Ordner speichern"; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; -App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."; -App::$strings["Register at another affiliated hub."] = "Registriere Dich auf einem der anderen verbundenen Hubs."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -App::$strings["I am over %s years of age and accept the %s for this website"] = "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website."; -App::$strings["Your email address"] = "Ihre E-Mail Adresse"; -App::$strings["Choose a password"] = "Passwort"; -App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -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 requires email verification. After completing this form, please check your email for further instructions."] = "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen."; -App::$strings["Cover Photos"] = "Cover Foto"; -App::$strings["female"] = "weiblich"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; -App::$strings["male"] = "männlich"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; -App::$strings["cover photo"] = "Cover Foto"; -App::$strings["Change Cover Photo"] = "Titelbild ändern"; -App::$strings["Documentation Search"] = "Suche in der Dokumentation"; -App::$strings["About"] = "Über"; -App::$strings["Administrators"] = "Administratoren"; -App::$strings["Developers"] = "Entwickler"; -App::$strings["Tutorials"] = "Tutorials"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; -App::$strings["Contents"] = "Inhalt"; -App::$strings["Article"] = "Artikel"; -App::$strings["Item has been removed."] = "Der Beitrag wurde entfernt."; -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["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["Invalid channel."] = "Ungültiger Kanal."; -App::$strings["network"] = "Netzwerk"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; -App::$strings["Permission Denied."] = "Zugriff verweigert."; -App::$strings["File not found."] = "Datei nicht gefunden."; -App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -App::$strings["Return to file list"] = "Zurück zur Dateiliste"; -App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -App::$strings["Share this file"] = "Diese Datei freigeben"; -App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; -App::$strings["Show in your contacts shared folder"] = "Im geteilten Ordner Deiner Kontakte anzeigen"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -App::$strings["View Common Connections"] = "Zeige gemeinsame Verbindungen"; -App::$strings["Email verification resent"] = "Email zur Verifizierung wurde erneut versendet"; -App::$strings["Unable to resend email verification message."] = "Erneutes Versenden der Email zur Verifizierung nicht möglich."; -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["Blocked accounts"] = "Blockierte Benutzerkonten"; -App::$strings["Expired accounts"] = "Abgelaufene Benutzerkonten"; -App::$strings["Expiring accounts"] = "Ablaufende Benutzerkonten"; -App::$strings["Clones"] = "Klone"; -App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; -App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden"; -App::$strings["Summary"] = "Zusammenfassung"; -App::$strings["Registered accounts"] = "Registrierte Konten"; -App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; -App::$strings["Registered channels"] = "Registrierte Kanäle"; -App::$strings["Active plugins"] = "Aktive Plug-Ins"; -App::$strings["Version"] = "Version"; -App::$strings["Repository version (master)"] = "Repository-Version (master)"; -App::$strings["Repository version (dev)"] = "Repository-Version (dev)"; -App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -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["Edit Card"] = "Karte bearbeiten"; -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["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["0. Beginner/Basic"] = "0. Einsteiger/Basis"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Anfänger - unerfahren, aber bereit zu lernen"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Fortgeschritten - relativ komfortabel"; -App::$strings["3. Advanced - very comfortable"] = "3. Fortgeschritten - sehr komfortabel"; -App::$strings["4. Expert - I can write computer code"] = "4. Experte - Ich kann Computercode schreiben"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Zauberer - ich kann wahrscheinlich mehr als Du"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Report Bug"] = "Fehler melden"; -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["Activity"] = "Aktivität"; -App::$strings["Wiki"] = "Wiki"; -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["Language"] = "Sprache"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Purchase"] = "Kaufen"; -App::$strings["Undelete"] = "Wieder hergestellt"; -App::$strings["Add to app-tray"] = "Zum App-Menü hinzufügen"; -App::$strings["Remove from app-tray"] = "Aus dem App-Menü entfernen"; -App::$strings["Pin to navbar"] = "An Navigationsleiste anpinnen"; -App::$strings["Unpin from navbar"] = "Von Navigationsleiste entfernen"; -App::$strings["__ctx:permcat__ default"] = "Standard"; -App::$strings["__ctx:permcat__ follower"] = "Abonnent"; -App::$strings["__ctx:permcat__ contributor"] = "Beitragender"; -App::$strings["__ctx:permcat__ publisher"] = "Autor"; -App::$strings["(No Title)"] = "(Kein Titel)"; -App::$strings["Wiki page create failed."] = "Anlegen der Wiki-Seite fehlgeschlagen."; -App::$strings["Wiki not found."] = "Wiki nicht gefunden."; -App::$strings["Destination name already exists"] = "Zielname bereits vorhanden"; -App::$strings["Page not found"] = "Seite nicht gefunden"; -App::$strings["Error reading page content"] = "Fehler beim Lesen des Seiteninhalts"; -App::$strings["Error reading wiki"] = "Fehler beim Lesen des Wiki"; -App::$strings["Page update failed."] = "Seitenaktualisierung fehlgeschlagen."; -App::$strings["Nothing deleted"] = "Nichts gelöscht"; -App::$strings["Compare: object not found."] = "Vergleichen: Objekt nicht gefunden."; -App::$strings["Page updated"] = "Seite aktualisiert"; -App::$strings["Untitled"] = "Ohne Titel"; -App::$strings["Wiki resource_id required for git commit"] = "Die resource_id des Wiki wird benötigt für den git commit."; -App::$strings["__ctx:wiki_history__ Message"] = "Nachricht"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -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["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."; -App::$strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -App::$strings["Room is full"] = "Der Chatraum ist voll"; -App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Danke."; -App::$strings["%s Administrator"] = "der Administrator von %s"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "Diese Email wurde von %1\$s auf %2\$s gesendet."; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an."; -App::$strings["%s "] = "%s "; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Benachrichtigung] Neue Mail empfangen auf %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$shat dir auf %2\$seine private Nachricht geschickt."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; -App::$strings["a private message"] = "eine private Nachricht"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -App::$strings["commented on"] = "kommentierte"; -App::$strings["liked"] = "gefiel"; -App::$strings["disliked"] = "missfiel"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]ein %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]dein %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1\$d von %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$shat einen Beitrag/eine Konversation kommentiert dem/der du folgst."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; -App::$strings["Please visit %s to approve or reject this comment."] = "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s mag [zrl=%2\$s]dein %3\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1\$d von %2\$s erhalten"; -App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sgefällt ein Beitrag/eine Unterhaltung von dir."; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$shat etwas auf deiner Profilwand auf %2\$sveröffentlicht"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s schrieb auf [zrl=%2\$s]Deine Pinnwand[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Benachrichtigung] %s hat Dich erwähnt"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s hat dich auf %2\$s getaggt"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s hat [zrl=%2\$s]Dich getagged[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Benachrichtigung] %1\$s hat Dich angestupst"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]hat dich angestupst.[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; -App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s hat Deinen Beitrag auf %2\$s getagged"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s hat [zrl=%2\$s]Deinen Beitrag[/zrl] getagged"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Benachrichtigung] Verbindungsanfrage erhalten"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Du hast auf %2\$s eine neue Verbindung von %1\$s erhalten."; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Du hast [zrl=%1\$s]eine neue Verbindungsanfrage[/zrl] von %2\$s erhalten."; -App::$strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freundschaftsvorschlag von %1\$s auf %2\$s erhalten"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Du hast einen [zrl=%1\$s]Freundschaftsvorschlag[/zrl] für %2\$s von %3\$s erhalten."; -App::$strings["Name:"] = "Name:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname: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["edited a post dated %s"] = "hat einen Beitrag vom %s bearbeitet"; -App::$strings["edited a comment dated %s"] = "hat einen Kommentar vom %s bearbeitet"; -App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert"; -App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht"; -App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; -App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; -App::$strings["Private Message"] = "Private Nachricht"; -App::$strings["Select"] = "Auswählen"; -App::$strings["I will attend"] = "Ich werde teilnehmen"; -App::$strings["I will not attend"] = "Ich werde nicht teilnehmen"; -App::$strings["I might attend"] = "Ich werde vielleicht teilnehmen"; -App::$strings["I agree"] = "Ich stimme zu"; -App::$strings["I disagree"] = "Ich lehne ab"; -App::$strings["I abstain"] = "Ich enthalte mich"; -App::$strings["Add Star"] = "Stern hinzufügen"; -App::$strings["Remove Star"] = "Stern entfernen"; -App::$strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; -App::$strings["starred"] = "markiert"; -App::$strings["Message signature validated"] = "Signatur überprüft"; -App::$strings["Message signature incorrect"] = "Signatur nicht korrekt"; -App::$strings["Add Tag"] = "Tag hinzufügen"; -App::$strings["like"] = "mag"; -App::$strings["dislike"] = "verurteile"; -App::$strings["Share This"] = "Teilen"; -App::$strings["share"] = "Teilen"; -App::$strings["Delivery Report"] = "Zustellungsbericht"; -App::$strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -App::$strings["View %s's profile - %s"] = "Schaue Dir %ss Profil an – %s"; -App::$strings["to"] = "an"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Wall-to-Wall"; -App::$strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -App::$strings["from %s"] = "via %s"; -App::$strings["last edited: %s"] = "zuletzt bearbeitet: %s"; -App::$strings["Expires: %s"] = "Verfällt: %s"; -App::$strings["Attend"] = "Zusagen"; -App::$strings["Attendance Options"] = "Zusageoptionen"; -App::$strings["Vote"] = "Abstimmen"; -App::$strings["Voting Options"] = "Abstimmungsoptionen"; -App::$strings["Save Bookmarks"] = "Favoriten speichern"; -App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; -App::$strings["This is an unsaved preview"] = "Dies ist eine nicht gespeicherte Vorschau"; -App::$strings["%s show all"] = "%s mehr anzeigen"; -App::$strings["Bold"] = "Fett"; -App::$strings["Italic"] = "Kursiv"; -App::$strings["Underline"] = "Unterstrichen"; -App::$strings["Quote"] = "Zitat"; -App::$strings["Code"] = "Code"; -App::$strings["Image"] = "Bild"; -App::$strings["Attach File"] = "Datei anhängen"; -App::$strings["Insert Link"] = "Link einfügen"; -App::$strings["Video"] = "Video"; -App::$strings["Your full name (required)"] = "Ihr vollständiger Name (erforderlich)"; -App::$strings["Your email address (required)"] = "Ihre E-Mail-Adresse (erforderlich)"; -App::$strings["Your website URL (optional)"] = "Ihre Webseiten-URL (optional)"; -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["parent"] = "Übergeordnetes Verzeichnis"; -App::$strings["Collection"] = "Sammlung"; -App::$strings["Principal"] = "Prinzipal"; -App::$strings["Addressbook"] = "Adressbuch"; -App::$strings["Calendar"] = "Kalender"; -App::$strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; -App::$strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; -App::$strings["Total"] = "Summe"; -App::$strings["Shared"] = "Geteilt"; -App::$strings["Add Files"] = "Dateien hinzufügen"; -App::$strings["You are using %1\$s of your available file storage."] = "Sie verwenden %1\$s von Ihrem verfügbaren Dateispeicher."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Sie verwenden %1\$s von %2\$s verfügbarem Dateispeicher. (%3\$s%)"; -App::$strings["WARNING:"] = "WARNUNG:"; -App::$strings["Create new folder"] = "Neuen Ordner anlegen"; -App::$strings["Upload file"] = "Datei hochladen"; -App::$strings["Drop files here to immediately upload"] = "Dateien zum sofortigen Hochladen hier fallen lassen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Select Channel"] = "Kanal auswählen"; -App::$strings["Read-write"] = "Lesen-schreiben"; -App::$strings["Read-only"] = "Nur Lesen"; -App::$strings["My Calendars"] = "Meine Kalender"; -App::$strings["Shared Calendars"] = "Geteilte Kalender"; -App::$strings["Share this calendar"] = "Diesen Kalender teilen"; -App::$strings["Calendar name and color"] = "Kalendername und -farbe"; -App::$strings["Create new calendar"] = "Neuen Kalender erstellen"; -App::$strings["Calendar Name"] = "Kalendername"; -App::$strings["Calendar Tools"] = "Kalenderwerkzeuge"; -App::$strings["Import calendar"] = "Kalender importieren"; -App::$strings["Select a calendar to import to"] = "Kalender zum Hineinimportieren auswählen"; -App::$strings["Addressbooks"] = "Adressbücher"; -App::$strings["Addressbook name"] = "Adressbuchname"; -App::$strings["Create new addressbook"] = "Neues Adressbuch erstellen"; -App::$strings["Addressbook Name"] = "Adressbuchname"; -App::$strings["Addressbook Tools"] = "Adressbuchwerkzeuge"; -App::$strings["Import addressbook"] = "Adressbuch importieren"; -App::$strings["Select an addressbook to import to"] = "Adressbuch zum Hineinimportieren auswählen"; -App::$strings["Categories"] = "Kategorien"; -App::$strings["Everything"] = "Alles"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["HQ Control Panel"] = "HQ-Einstellungen"; -App::$strings["Create a new post"] = "Neuen Beitrag erstellen"; -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["Chatrooms"] = "Chaträume"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["__ctx:widget__ Activity"] = "Aktivität"; -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["Wiki List"] = "Wikiliste"; -App::$strings["Archives"] = "Archive"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -App::$strings["add"] = "hinzufügen"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Add new page"] = "Neue Seite hinzufügen"; -App::$strings["Wiki Pages"] = "Wikiseiten"; -App::$strings["Page name"] = "Seitenname"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Tags"] = "Schlagwörter"; -App::$strings["Profile Creation"] = "Profilerstellung"; -App::$strings["Upload profile photo"] = "Profilfoto hochladen"; -App::$strings["Upload cover photo"] = "Titelbild hochladen"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Find and Connect with others"] = "Finden und Verbinden von/mit Anderen"; -App::$strings["View the directory"] = "Verzeichnis anzeigen"; -App::$strings["Manage your connections"] = "Deine Verbindungen verwalten"; -App::$strings["Communicate"] = "Kommunizieren"; -App::$strings["View your channel homepage"] = "Deine Kanal-Startseite ansehen"; -App::$strings["View your network stream"] = "Deine Netzwerk-Aktivitäten ansehen"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["View public stream"] = "Zeige öffentlichen Beitrags-Stream"; -App::$strings["New Member Links"] = "Links für neue Mitglieder"; -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["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Addon settings"] = "Addon-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["OAuth1 apps"] = "OAuth1 Anwendungen"; -App::$strings["OAuth2 apps"] = "OAuth2 Anwendungen"; -App::$strings["Permission Groups"] = "Berechtigungsrollen"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["New Network Activity"] = "Neue Netzwerk-Aktivitäten"; -App::$strings["New Network Activity Notifications"] = "Benachrichtigungen für neue Netzwerk-Aktivitäten"; -App::$strings["View your network activity"] = "Zeige Deine Netzwerk-Aktivitäten"; -App::$strings["Mark all notifications read"] = "Alle Benachrichtigungen als gesehen markieren"; -App::$strings["Show new posts only"] = "Zeige nur neue Beiträge"; -App::$strings["Filter by name"] = "Nach Namen filtern"; -App::$strings["New Home Activity"] = "Neue Kanal-Aktivitäten"; -App::$strings["New Home Activity Notifications"] = "Benachrichtigungen für neue Kanal-Aktivitäten"; -App::$strings["View your home activity"] = "Zeige Deine Kanal-Aktivitäten"; -App::$strings["Mark all notifications seen"] = "Alle Benachrichtigungen als gesehen markieren"; -App::$strings["New Mails"] = "Neue Mails"; -App::$strings["New Mails Notifications"] = "Benachrichtigungen für neue Mails"; -App::$strings["View your private mails"] = "Zeige Deine persönlichen Mails"; -App::$strings["Mark all messages seen"] = "Alle Mails als gelesen markieren"; -App::$strings["New Events"] = "Neue Termine"; -App::$strings["New Events Notifications"] = "Benachrichtigungen für neue Termine"; -App::$strings["View events"] = "Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["New Connections Notifications"] = "Benachrichtigungen für neue Verbindungen"; -App::$strings["View all connections"] = "Zeige alle Verbindungen"; -App::$strings["New Files"] = "Neue Dateien"; -App::$strings["New Files Notifications"] = "Benachrichtigungen für neue Dateien"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["View all notices"] = "Alle Notizen ansehen"; -App::$strings["Mark all notices seen"] = "Alle Notizen als gesehen markieren"; -App::$strings["New Registrations"] = "Neue Registrierungen"; -App::$strings["New Registrations Notifications"] = "Benachrichtigungen für neue Registrierungen"; -App::$strings["Public Stream Notifications"] = "Benachrichtigungen für öffentlichen Beitrags-Stream"; -App::$strings["View the public stream"] = "Zeige öffentlichen Beitrags-Stream"; -App::$strings["Sorry, you have got no notifications at the moment"] = "Du hast momentan keine Benachrichtigungen"; -App::$strings["Source channel not found."] = "Quellkanal nicht gefunden."; -App::$strings["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können."; -App::$strings["Logout"] = "Abmelden"; -App::$strings["Login/Email"] = "Anmelden/E-Mail"; -App::$strings["Password"] = "Kennwort"; -App::$strings["Remember me"] = "Angaben speichern"; -App::$strings["Forgot your password?"] = "Passwort vergessen?"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Webseiten-SSL-Fehler für %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cron-Jobs laufen nicht auf %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; -App::$strings["never"] = "Nie"; -App::$strings["Cover Photo"] = "Cover Foto"; -App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; -App::$strings["Theme settings"] = "Design-Einstellungen"; -App::$strings["Narrow navbar"] = "Schmale Navigationsleiste"; -App::$strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; -App::$strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; -App::$strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; -App::$strings["Link color"] = "Linkfarbe"; -App::$strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; -App::$strings["Set the background color"] = "Hintergrundfarbe"; -App::$strings["Set the background image"] = "Hintergrundbild"; -App::$strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; -App::$strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; -App::$strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung"; -App::$strings["Examples: 1rem, 100%, 16px"] = "Beispiele: 1rem, 100%, 16px"; -App::$strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare"; -App::$strings["Set radius of corners"] = "Ecken-Radius"; -App::$strings["Example: 4px"] = "Beispiel: 4px"; -App::$strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; -App::$strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen"; -App::$strings["Leave empty for default width"] = "Leer lassen für Standardbreite"; -App::$strings["Left align page content"] = "Seiteninhalt linksbündig anzeigen"; -App::$strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; -App::$strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; -App::$strings["Errors encountered deleting database table "] = "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten."; -App::$strings["Submit Settings"] = "Einstellungen absenden"; -App::$strings["Drop tables when uninstalling?"] = "Lösche Tabellen beim Deinstallieren?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Wenn ausgewählt, werden die Rendezvous-Tabellen in der Datenbank gelöscht, sobald das Plugin deinstalliert wird."; -App::$strings["Mapbox Access Token"] = "Mapbox Zugangs-Token"; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Wenn Du ein Mapbox Zugangs-Token eingibst, werden die Kartendaten (Kacheln) damit von Mapbox geladen, anstatt von OpenStreetMap, welches die Voreinstellung ist."; -App::$strings["Rendezvous"] = "Rendezvous"; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Diese Identität wurde von einem anderen Mitglied aufgrund von Inaktivität gelöscht. Bitte klicke auf \"Neue Identität\" oder aktualisiere die Website im Browser, um eine neue Identität zu registrieren. Du kannst dabei den selben Namen verwenden."; -App::$strings["Welcome to Rendezvous!"] = "Willkommen bei Rendezvous!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Gib Deinen Namen ein, um diesem Rendezvous beizutreten. Um Deinen Standort mit anderen Mitgliedern zu teilen, klicke auf das GPS Symbol. Sobald Dein Standort ermittelt ist, erscheint ein roter Punkt, und die Anderen werden Dich auf der Karte sehen können."; -App::$strings["Let's meet here"] = "Lasst uns hier treffen"; -App::$strings["New marker"] = "Neue Markierung"; -App::$strings["Edit marker"] = "Markierung bearbeiten"; -App::$strings["New identity"] = "Neue Identität"; -App::$strings["Delete marker"] = "Markierung löschen"; -App::$strings["Delete member"] = "Mitglied löschen"; -App::$strings["Edit proximity alert"] = "Annäherungsalarm bearbeiten"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Ein Annäherungsalarm wird ausgelöst werden, sobald sich dieses Mitglied innerhalb eines bestimmten Radius von Dir aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):"; -App::$strings["distance"] = "Entfernung"; -App::$strings["Proximity alert distance (meters)"] = "Entfernung für Annäherungsalarm (in Metern)"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Ein Annäherungsalarm wird ausgelöst werden, sobald Du Dich innerhalb eines bestimmten Radius der Markierung aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):"; -App::$strings["Marker proximity alert"] = "Annäherungsalarm für Markierung"; -App::$strings["Reminder note"] = "Erinnerungshinweis"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Gib eine Nachricht ein, die angezeigt werden soll, wenn Du Dich in der festgelegten Nähe befindest..."; -App::$strings["Add new rendezvous"] = "Neues Rendezvous hinzufügen"; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Erstelle ein neues Rendezvous und teile den Zugriffslink mit allen, die Du in die Gruppe einladen möchtest. Die, die den Link öffnen, werden Mitglieder des Rendezvous. Sie können die Standorte der anderen Mitglieder sehen, Marker zur Karte hinzufügen oder ihre eigenen Standorte mit der Gruppe teilen."; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Du hast kein Rendezvous. Drücke den Knopf oben, um ein Rendezvous zu erstellen!"; -App::$strings["Some setting"] = "Einige Einstellungen"; -App::$strings["A setting"] = "Eine Einstellung"; -App::$strings["Skeleton Settings"] = "Skeleton Einstellungen"; -App::$strings["GNU-Social Protocol Settings updated."] = "GNU social Protokoll Einstellungen aktualisiert"; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das GNU-Social-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; -App::$strings["Enable the GNU-Social protocol for this channel"] = "Aktiviere das GNU social Protokoll für diesen Kanal"; -App::$strings["GNU-Social Protocol Settings"] = "GNU social Protokoll Einstellungen"; -App::$strings["Follow"] = "Folgen"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s folgt nun %2\$s"; -App::$strings["Planets Settings updated."] = "Planeten Einstellungen aktualisiert"; -App::$strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin"; -App::$strings["Planets Settings"] = "Planeten Einstellungen"; -App::$strings["System defaults:"] = "Systemstandardeinstellungen:"; -App::$strings["Preferred Clipart IDs"] = "Bevorzugte Clipart-IDs"; -App::$strings["List of preferred clipart ids. These will be shown first."] = "Liste bevorzugter Clipart-IDs. Diese werden zuerst angezeigt."; -App::$strings["Default Search Term"] = "Standard-Suchbegriff"; -App::$strings["The default search term. These will be shown second."] = "Der Standard-Suchbegriff. Dieser wird an zweiter Stelle angezeigt."; -App::$strings["Return After"] = "Zurückkehren nach"; -App::$strings["Page to load after image selection."] = "Die Seite, die nach Auswahl eines Bildes geladen werden soll."; -App::$strings["Edit Profile"] = "Profil bearbeiten"; -App::$strings["Profile List"] = "Profilliste"; -App::$strings["Order of Preferred"] = "Reihenfolge der Bevorzugten"; -App::$strings["Sort order of preferred clipart ids."] = "Sortierreihenfolge der bevorzugten Clipart-IDs."; -App::$strings["Newest first"] = "Neueste zuerst"; -App::$strings["As entered"] = "Wie eingegeben"; -App::$strings["Order of other"] = "Sortierung aller anderen"; -App::$strings["Sort order of other clipart ids."] = "Sortierreihenfolge der übrigen Clipart-IDs."; -App::$strings["Most downloaded first"] = "Meist heruntergeladene zuerst"; -App::$strings["Most liked first"] = "Beliebteste zuerst"; -App::$strings["Preferred IDs Message"] = "Nachricht für bevorzugte IDs"; -App::$strings["Message to display above preferred results."] = "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll."; -App::$strings["Uploaded by: "] = "Hochgeladen von: "; -App::$strings["Drawn by: "] = "Gezeichnet von: "; -App::$strings["Use this image"] = "Dieses Bild verwenden"; -App::$strings["Or select from a free OpenClipart.org image:"] = "Oder wähle ein freies Bild von OpenClipart.org:"; -App::$strings["Search Term"] = "Suchbegriff"; -App::$strings["Unknown error. Please try again later."] = "Unbekannter Fehler. Bitte versuchen Sie es später erneut."; -App::$strings["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert."; -App::$strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit"; -App::$strings["Post to WordPress"] = "Auf WordPress posten"; -App::$strings["Enable WordPress Post Plugin"] = "Aktiviere das WordPress-Plugin"; -App::$strings["WordPress username"] = "WordPress-Benutzername"; -App::$strings["WordPress password"] = "WordPress-Passwort"; -App::$strings["WordPress API URL"] = "WordPress-API-URL"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Normalerweise https://your-blog.tld/xmlrpc.php"; -App::$strings["WordPress blogid"] = "WordPress blogid"; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Nötig für Mehrbenutzer Seiten wie wordpress.com, andernfalls frei lassen"; -App::$strings["Post to WordPress by default"] = "Standardmäßig auf auf WordPress posten"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Kommentare weiterleiten (benötigt hubzilla_wp Plugin)"; -App::$strings["WordPress Post Settings"] = "WordPress-Beitragseinstellungen"; -App::$strings["Wordpress Settings saved."] = "Wordpress-Einstellungen gespeichert."; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbausteinen, die Du hier unterhalb einträgst, und faltet alle Beiträge zusammen, in denen es diese Bausteine findet. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Es gilt als höflich und empfohlen, den #NSFW Tag für Beiträge zu verwenden, bei denen Du davon ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst aber auch beliebige andere Wörter in der Liste angeben und das Plugin so als allgemeinen Inhaltsfilter verwenden."; -App::$strings["Enable Content filter"] = "Inhaltsfilter aktivieren"; -App::$strings["Comma separated list of keywords to hide"] = "Kommaseparierte Liste von Schlüsselworten die verborgen werden sollen."; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Wort, /regular-expression/, lang=xx, lang!=xx"; -App::$strings["Not Safe For Work Settings"] = "Not Safe For Work Einstellungen"; -App::$strings["General Purpose Content Filter"] = "Allzweck-Inhaltsfilter"; -App::$strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert."; -App::$strings["Possible adult content"] = "Möglicherweise nicht jugendfreie Inhalte"; -App::$strings["%s - view"] = "%s - ansehen"; -App::$strings["Post to Insanejournal"] = "Bei InsaneJournal veröffentlichen"; -App::$strings["Enable InsaneJournal Post Plugin"] = "Aktiviere das InsaneJournal Plugin"; -App::$strings["InsaneJournal username"] = "InsaneJournal-Benutzername"; -App::$strings["InsaneJournal password"] = "InsaneJournal-Passwort"; -App::$strings["Post to InsaneJournal by default"] = "Standardmäßig bei InsaneJournal veröffentlichen"; -App::$strings["InsaneJournal Post Settings"] = "InsaneJournal-Beitragseinstellungen"; -App::$strings["Insane Journal Settings saved."] = "InsaneJournal-Einstellungen gespeichert."; -App::$strings["Post to Dreamwidth"] = "Bei Dreamwidth veröffentlichen"; -App::$strings["Enable Dreamwidth Post Plugin"] = "Aktiviere das Dreamwidth-Plugin"; -App::$strings["Dreamwidth username"] = "Dreamwidth-Benutzername"; -App::$strings["Dreamwidth password"] = "Dreamwidth-Passwort"; -App::$strings["Post to Dreamwidth by default"] = "Standardmäßig auf auf Dreamwidth posten"; -App::$strings["Dreamwidth Post Settings"] = "Dreamwidth-Beitragseinstellungen"; -App::$strings["New registration"] = "Neue Registrierung"; -App::$strings["Message sent to %s. New account registration: %s"] = "Nachricht gesendet an %s. Neue Kontoregistrierung: %s"; -App::$strings["Hubzilla Directory Stats"] = "Hubzilla-Verzeichnisstatistiken"; -App::$strings["Total Hubs"] = "Hubs insgesamt"; -App::$strings["Hubzilla Hubs"] = "Hubzilla Hubs"; -App::$strings["Friendica Hubs"] = "Friendica Hubs"; -App::$strings["Diaspora Pods"] = "Diaspora Pods"; -App::$strings["Hubzilla Channels"] = "Hubzilla-Kanäle"; -App::$strings["Friendica Channels"] = "Friendica-Kanäle"; -App::$strings["Diaspora Channels"] = "Diaspora-Kanäle"; -App::$strings["Aged 35 and above"] = "35 und älter"; -App::$strings["Aged 34 and under"] = "34 und jünger"; -App::$strings["Average Age"] = "Durchschnittsalter"; -App::$strings["Known Chatrooms"] = "Bekannte Chaträume"; -App::$strings["Known Tags"] = "Bekannte Schlagwörter"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Bitte berücksichtige, dass Diaspora und Friendica Statistiken nur solche einschließen, die **diesem Verzeichnis** bekannt sind, nicht alle im Netzwerk bekannten. Das gilt auch für Chaträume."; -App::$strings["Your Webbie:"] = "Dein Webbie"; -App::$strings["Fontsize (px):"] = "Schriftgröße (px):"; -App::$strings["Link:"] = "Link:"; -App::$strings["Like us on Hubzilla"] = "Like us on Hubzilla"; -App::$strings["Embed:"] = "Einbetten"; -App::$strings["Photos imported"] = "Fotos importiert"; -App::$strings["Redmatrix Photo Album Import"] = "Redmatrix-Fotoalbumimport"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Hiermit werden all deine Fotoalben von Redmatrix in diesen Kanal importiert."; -App::$strings["Redmatrix Server base URL"] = "Basis-URL des Redmatrix Servers"; -App::$strings["Redmatrix Login Username"] = "Redmatrix-Anmeldebenutzername"; -App::$strings["Redmatrix Login Password"] = "Redmatrix-Anmeldepasswort"; -App::$strings["Import just this album"] = "Nur dieses Album importieren"; -App::$strings["Leave blank to import all albums"] = "Leer lassen um alle Alben zu importieren"; -App::$strings["Maximum count to import"] = "Maximal zu importierende Anzahl"; -App::$strings["0 or blank to import all available"] = "0 oder leer lassen um alles zu importieren"; -App::$strings["Channels to auto connect"] = "Kanäle zur automatischen Verbindung"; -App::$strings["Comma separated list"] = "Kommagetrennte Liste"; -App::$strings["Popular Channels"] = "Beliebte Kanäle"; -App::$strings["IRC Settings"] = "IRC-Einstellungen"; -App::$strings["IRC settings saved."] = "IRC-Einstellungen gespeichert."; -App::$strings["IRC Chatroom"] = "IRC-Chatraum"; -App::$strings["Post to LiveJournal"] = "Bei LiveJurnal veröffentlichen"; -App::$strings["Enable LiveJournal Post Plugin"] = "Aktiviere das LiveJurnal Plugin"; -App::$strings["LiveJournal username"] = "LiveJournal-Benutzername"; -App::$strings["LiveJournal password"] = "LiveJournal-Passwort"; -App::$strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJurnal veröffentlichen"; -App::$strings["LiveJournal Post Settings"] = "LiveJournal-Beitragseinstellungen"; -App::$strings["LiveJournal Settings saved."] = "LiveJournal-Einstellungen gespeichert."; -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["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -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["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID-Protokollfehler. Keine Kennung zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["You're welcome."] = "Gern geschehen."; -App::$strings["Ah shucks..."] = "Ach Mist..."; -App::$strings["Don't mention it."] = "Keine Ursache."; -App::$strings["<blush>"] = ""; -App::$strings["Page to load after login"] = "Seite, die nach dem Login geladen werden soll"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Beispiele: "apps", "network?f=&gid=37" (Gruppen-gefilterte Beiträge), "channel" oder "notifications/system" (freilassen für die Standard-Netzwerkseite (grid)."; -App::$strings["Startpage Settings"] = "Startseiteneinstellungen"; -App::$strings["bitchslap"] = "Ohrfeige"; -App::$strings["bitchslapped"] = "geohrfeigt"; -App::$strings["shag"] = "bumsen"; -App::$strings["shagged"] = "gebumst"; -App::$strings["patent"] = "Patent"; -App::$strings["patented"] = "patentiert"; -App::$strings["hug"] = "umarmen"; -App::$strings["hugged"] = "umarmt"; -App::$strings["murder"] = "ermorden"; -App::$strings["murdered"] = "ermordet"; -App::$strings["worship"] = "Anbetung"; -App::$strings["worshipped"] = "angebetet"; -App::$strings["kiss"] = "küssen"; -App::$strings["kissed"] = "geküsst"; -App::$strings["tempt"] = "verlocken"; -App::$strings["tempted"] = "verlockt"; -App::$strings["raise eyebrows at"] = "Augenbrauen hochziehen"; -App::$strings["raised their eyebrows at"] = "zog die Augenbrauen hoch"; -App::$strings["insult"] = "beleidigen"; -App::$strings["insulted"] = "beleidigt"; -App::$strings["praise"] = "loben"; -App::$strings["praised"] = "gelobt"; -App::$strings["be dubious of"] = ""; -App::$strings["was dubious of"] = ""; -App::$strings["eat"] = "essen"; -App::$strings["ate"] = "aß"; -App::$strings["giggle and fawn at"] = ""; -App::$strings["giggled and fawned at"] = ""; -App::$strings["doubt"] = "anzweifeln"; -App::$strings["doubted"] = "angezweifelt"; -App::$strings["glare"] = ""; -App::$strings["glared at"] = ""; -App::$strings["fuck"] = "ficken"; -App::$strings["fucked"] = "gefickt"; -App::$strings["bonk"] = ""; -App::$strings["bonked"] = ""; -App::$strings["declare undying love for"] = "erkläre unsterbliche Liebe"; -App::$strings["declared undying love for"] = "erklärte unsterbliche Liebe"; -App::$strings["Diaspora Protocol Settings updated."] = "Diaspora Protokoll Einstellungen aktualisiert"; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; -App::$strings["Enable the Diaspora protocol for this channel"] = "Das Diaspora Protokoll für diesen Kanal aktivieren"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden"; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur"; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Verfolgte Hashtags (Komma separierte Liste, ohne die #)"; -App::$strings["Diaspora Protocol Settings"] = "Diaspora Protokoll Einstellungen"; -App::$strings["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei 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["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen ablaufen."; -App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Konto wird bald auslaufen."; -App::$strings["Enable Rainbowtag"] = "Rainbowtag aktivieren"; -App::$strings["Rainbowtag Settings"] = "Rainbowtag-Einstellungen"; -App::$strings["Rainbowtag Settings saved."] = "Rainbowtag-Einstellungen gespeichert."; -App::$strings["Show Upload Limits"] = "Hochladebeschränkungen anzeigen"; -App::$strings["Hubzilla configured maximum size: "] = "Die in Hubzilla eingestellte maximale Größe:"; -App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize:"; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (muss größer sein als upload_max_filesize):"; -App::$strings["generic profile image"] = "generisches Profilbild"; -App::$strings["random geometric pattern"] = "zufälliges geometrisches Muster"; -App::$strings["monster face"] = "Monstergesicht"; -App::$strings["computer generated face"] = "computergeneriertes Gesicht"; -App::$strings["retro arcade style face"] = "Gesicht im Retro-Arcade Stil"; -App::$strings["Hub default profile photo"] = "Standard-Profilfoto für diesen Hub"; -App::$strings["Information"] = "Information"; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere entweder das Libreavatar oder das Gravatar Addon.
Das Libravatar Addon verwendet als Notfalllösung Gravatar, sollte bei Libravatar kein Profilbild gefunden werden."; -App::$strings["Save Settings"] = "Einstellungen speichern"; -App::$strings["Default avatar image"] = "Standard-Avatarbild"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardprofilbild aus, sollte bei Gravatar keines gefunden werden. Beachte auch die README."; -App::$strings["Rating of images"] = "Bewertungen der Bilder"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Wähle die für deine Seite angemessene Profilbildeinstufung. Beachte auch die README."; -App::$strings["Gravatar settings updated."] = "Gravatar-Einstellungen aktualisiert."; -App::$strings["Hubzilla File Storage Import"] = "Hubzilla-Datenspeicher-Import"; -App::$strings["This will import all your cloud files from another server."] = "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert."; -App::$strings["Hubzilla Server base URL"] = "Basis-URL des Habzilla-Servers"; -App::$strings["Since modified date yyyy-mm-dd"] = "Seit Modifizierungsdatum yyyy-mm-dd"; -App::$strings["Until modified date yyyy-mm-dd"] = "Bis Modifizierungsdatum yyyy-mm-dd"; -App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher"; -App::$strings["This plugin/addon has not been configured."] = "Dieses Plugin/Addon wurde noch nicht konfiguriert."; -App::$strings["Please visit the Visage settings on %s"] = "Bitte rufe die Visage Einstellungen auf %s auf"; -App::$strings["your feature settings page"] = "Die Funktions-Einstellungsseite"; -App::$strings["No entries."] = "Keine Einträge."; -App::$strings["Enable Visage Visitor Logging"] = "Aktiviere das Visage-Besucher Logging"; -App::$strings["Visage Settings"] = "Visage-Einstellungen"; -App::$strings["Nsabait Settings updated."] = "Nsabait-Einstellungen aktualisiert."; -App::$strings["Enable NSAbait Plugin"] = "Aktiviere das NSAbait Plugin"; -App::$strings["NSAbait Settings"] = "NSAbait-Einstellungen"; -App::$strings["Send test email"] = "Test-E-Mail senden"; -App::$strings["No recipients found."] = "Keine Empfänger gefunden."; -App::$strings["Mail sent."] = "Mail gesendet."; -App::$strings["Sending of mail failed."] = "Senden der E-Mail fehlgeschlagen."; -App::$strings["Mail Test"] = "Mail Test"; -App::$strings["Message subject"] = "Betreff der Nachricht"; -App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen"; -App::$strings["View Larger"] = "Größer anzeigen"; -App::$strings["Tile Server URL"] = "Kachelserver-URL"; -App::$strings["A list of public tile servers"] = "Eine Liste öffentlicher Kachelserver"; -App::$strings["Nominatim (reverse geocoding) Server URL"] = "Nominatim (reverse Geokodierung) Server URL"; -App::$strings["A list of Nominatim servers"] = "Eine Liste der Nominatim Server"; -App::$strings["Default zoom"] = "Standardzoom"; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Die Standard-Vergrößerungsstufe (1:Welt, 18:höchste, hängt außerdem vom Kachelserver ab)."; -App::$strings["Include marker on map"] = "Markierung auf der Karte einschließen"; -App::$strings["Include a marker on the map."] = "Binde eine Markierung auf der Karte ein."; -App::$strings["text to include in all outgoing posts from this site"] = "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen"; -App::$strings["Fuzzloc Settings updated."] = "Fuzzloc-Einstellungen aktualisiert."; -App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc erlaubt es Dir, deinen genauen Standort etwas diffuser zu machen (nicht so exakt wie ermittelt), wenn Dein Kanal die Lokalisierungsfunktion des Browsers verwendet."; -App::$strings["Enable Fuzzloc Plugin"] = "Aktiviere das Fuzzloc-Plugin"; -App::$strings["Minimum offset in meters"] = "Minimale Verschiebung in Metern"; -App::$strings["Maximum offset in meters"] = "Maximale Verschiebung in Metern"; -App::$strings["Fuzzloc Settings"] = "Fuzzloc-Einstellungen"; -App::$strings["Post to Friendica"] = "Bei Friendica veröffentlichen"; -App::$strings["rtof Settings saved."] = "rtof-Einstellungen gespeichert."; -App::$strings["Allow posting to Friendica"] = "Erlaube die Veröffentlichung bei Friendica"; -App::$strings["Send public postings to Friendica by default"] = "Standardmäßig öffentliche Beiträge bei Friendica veröffentlichen"; -App::$strings["Friendica API Path"] = "Friendica-API-Pfad"; -App::$strings["https://{sitename}/api"] = "https://{sitename}/api"; -App::$strings["Friendica login name"] = "Friendica-Anmeldename"; -App::$strings["Friendica password"] = "Friendica-Passwort"; -App::$strings["Hubzilla to Friendica Post Settings"] = "Hubzilla-zu-Friendica Beitragseinstellungen"; -App::$strings["Status:"] = "Status:"; -App::$strings["Activate addon"] = "Addon aktiviren"; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Jappix Mini Chat-Widget von der Weboberfläche verbergen"; -App::$strings["Jabber username"] = "Jabber-Benutzername"; -App::$strings["Jabber server"] = "Jabber-Server"; -App::$strings["Jabber BOSH host URL"] = "Jabber BOSH Host URL"; -App::$strings["Jabber password"] = "Jabber-Passwort"; -App::$strings["Encrypt Jabber password with Hubzilla password"] = "Jabber-Passwort mit Hubzilla-Passwort verschlüsseln"; -App::$strings["Hubzilla password"] = "Hubzilla-Passwort"; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Verbindungsanfragen von Hubzilla-Kontakten automatisch annehmen"; -App::$strings["Purge internal list of jabber addresses of contacts"] = "Interne Liste der Jabber Adressen von Kontakten löschen"; -App::$strings["Configuration Help"] = "Konfigurationshilfe"; -App::$strings["Jappix Mini Settings"] = "Jappix Mini Einstellungen"; -App::$strings["Currently blocked"] = "Derzeit blockiert"; -App::$strings["No channels currently blocked"] = "Momentan sind keine Kanäle blockiert"; -App::$strings["Superblock Settings"] = "Superblock Einstellungen"; -App::$strings["Block Completely"] = "Vollständig blockieren"; -App::$strings["superblock settings updated"] = "Superblock Einstellungen aktualisiert"; -App::$strings["Federate"] = "Beitrag verteilen"; -App::$strings["nofed Settings saved."] = "nofed Einstellungen gespeichert"; -App::$strings["Allow Federation Toggle"] = "Umschalter zur Beitragsverteilung bereitstellen"; -App::$strings["Federate posts by default"] = "Beiträge standardmäßig verteilen"; -App::$strings["NoFed Settings"] = "NoFed-Einstellungen"; -App::$strings["Post to Red"] = "Beitrag bei Red veröffentlichen"; -App::$strings["Channel is required."] = "Kanal ist erforderlich."; -App::$strings["redred Settings saved."] = "redred-Einstellungen gespeichert."; -App::$strings["Allow posting to another Hubzilla Channel"] = "Erlaube die Veröffentlichung in anderen Hubzilla Kanälen"; -App::$strings["Send public postings to Hubzilla channel by default"] = "Sende öffentliche Beiträge standardmäßig an den Hubzilla Kanal"; -App::$strings["Hubzilla API Path"] = "Hubzilla-API-Pfad"; -App::$strings["Hubzilla login name"] = "Hubzilla-Anmeldename"; -App::$strings["Hubzilla channel name"] = "Hubzilla-Kanalname"; -App::$strings["Hubzilla Crosspost Settings"] = "Hubzilla Crosspost Einstellungen"; -App::$strings["Logfile archive directory"] = "Verzeichnis der Logdatei"; -App::$strings["Directory to store rotated logs"] = "Verzeichnis, in dem rotierte Logs gespeichert werden sollen"; -App::$strings["Logfile size in bytes before rotating"] = "zu erreichende Logdateigröße in Bytes, bevor rotiert wird"; -App::$strings["Number of logfiles to retain"] = "Anzahl aufzubewahrender rotierter Logdateien"; -App::$strings["Friendica Photo Album Import"] = "Friendica-Fotoalbumimport"; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Hiermit werden all deine Fotoalben von Friendica in diesen Hubzilla Kanal importiert."; -App::$strings["Friendica Server base URL"] = "BasisURL des Friendica Servers"; -App::$strings["Friendica Login Username"] = "Friendica-Anmeldebenutzername"; -App::$strings["Friendica Login Password"] = "Friendica-Anmeldepasswort"; -App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPub Protokoll Einstellungen aktualisiert"; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das ActivityPub-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; -App::$strings["Enable the ActivityPub protocol for this channel"] = "Aktiviere das ActivityPub Protokoll für diesen Kanal"; -App::$strings["Send multi-media HTML articles"] = "Multimedia HTML Artikel versenden"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt"; -App::$strings["ActivityPub Protocol Settings"] = "ActivityPub Protokoll Einstellungen"; -App::$strings["Project Servers and Resources"] = "Projektserver und -ressourcen"; -App::$strings["Project Creator and Tech Lead"] = "Projektersteller und Technischer Leiter"; -App::$strings["Admin, developer, directorymin, support bloke"] = "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende"; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Und die hunderte anderen Menschen und Organisationen, die geholfen haben Hubzilla möglich zu machen."; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Die Redmatrix/Hubzilla Projekte werden hauptsächlich von Freiwilligen bereitgestellt, die ihre Zeit und Expertise zur Verfügung stellen - und oft aus eigener Tasche für die Dienste zahlen, die sie mit anderen teilen."; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Es gibt keine Finanzierung durch Firmen, keine Werbung und wir verkaufen Deine persönlichen Daten nicht. (Wir kontrollieren Deine persönlichen Daten nicht - das machst Du.)"; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Hilf uns bei unserer wegweisenden Arbeit im Bereich der Dezantralisation, von Web-Identitäten und Privatsphäre."; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Die Spenden werden dafür verwendet Server und Dienste am laufen zu halten und helfen desweiteren innovative Neuerungen zu schaffen und die Entwicklung voran zu treiben."; -App::$strings["Donate"] = "Spenden"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wähle ein Projekt, einen Entwickler oder einen öffentlichen Hub den du mit einer einmaligen Spende unterstützen willst."; -App::$strings["Donate Now"] = "Jetzt spenden"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "Oder werde ein Unterstützer des Projekts (ausschließlich Hubzilla)"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Bitte teile uns mit ob dein kompletter Name oder dein Vorname (oder gar nichts) auf unserer Sponsoren-Seite veröffentlicht werden soll."; -App::$strings["Sponsor"] = "Sponsor"; -App::$strings["Special thanks to: "] = "Besonderer Dank an: "; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Einige gültige Beispiele: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; -App::$strings["Guitar Chords"] = "Gitarrenakkorde"; -App::$strings["The complete online chord dictionary"] = "Das komplette online Akkord-Verzeichnis"; -App::$strings["Tuning"] = "Stimmen"; -App::$strings["Chord name: example: Em7"] = "Beispiel Akkord Name: Em7"; -App::$strings["Show for left handed stringing"] = "Linkshänder-Besaitung anzeigen"; -App::$strings["Quick Reference"] = "Schnellreferenz"; -App::$strings["Post to Libertree"] = "Bei Libertree veröffentlichen"; -App::$strings["Enable Libertree Post Plugin"] = "Aktivire das Libertree-Plugin"; -App::$strings["Libertree API token"] = "Libertree API Token"; -App::$strings["Libertree site URL"] = "URL der Libertree Seite"; -App::$strings["Post to Libertree by default"] = "Standardmäßig bei Libertree veröffentlichen"; -App::$strings["Libertree Post Settings"] = "Libertree-Beitragseinstellungen"; -App::$strings["Libertree Settings saved."] = "Libertree-Einstellungen gespeichert."; -App::$strings["Flattr this!"] = "Flattr this!"; -App::$strings["Flattr widget settings updated."] = "Flattr Widget Einstellungen aktualisiert"; -App::$strings["Flattr user"] = "Flattr Nutzer"; -App::$strings["URL of the Thing to flattr"] = "URL des Dings zum flattrn"; -App::$strings["If empty channel URL is used"] = "Falls leer wird die Channel URL verwendet"; -App::$strings["Title of the Thing to flattr"] = "Titel des Dings zum flattrn"; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Falls leer wird \"Kanalname auf The Hubzilla\" verwendet"; -App::$strings["Static or dynamic flattr button"] = "Statischer oder dynamischer Flattr Button"; -App::$strings["static"] = "statisch"; -App::$strings["dynamic"] = "dynamisch"; -App::$strings["Alignment of the widget"] = "Ausrichtung des Widgets"; -App::$strings["left"] = "links"; -App::$strings["right"] = "rechts"; -App::$strings["Enable Flattr widget"] = "Flattr Widget verwenden"; -App::$strings["Flattr Widget Settings"] = "Flattr Widget Einstellungen"; -App::$strings["Post to GNU social"] = "Bei GNU social veröffentlichen"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Bitte kontaktiere den Administrator deines Hubs.
Die angegebene API URL ist nicht korrekt."; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "Mit dem angegebenen Pfad war es uns nicht möglich, die GNU social API zu erreichen."; -App::$strings["GNU social settings updated."] = "GNU social Einstellungen aktualisiert."; -App::$strings["Globally Available GNU social OAuthKeys"] = "Global verfügbare GNU social OAuthKeys"; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel.
Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten)."; -App::$strings["Provide your own OAuth Credentials"] = "Stelle deine eigenen OAuth Credentials zur Verfügung"; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert."; -App::$strings["OAuth Consumer Key"] = "OAuth Consumer Key"; -App::$strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; -App::$strings["Base API Path"] = "Basis Pfad der API"; -App::$strings["Remember the trailing /"] = "Denke an das abschließende /"; -App::$strings["GNU social application name"] = "GNU social Anwendungsname"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Um dich mit deinem GNU social Konto zu verbinden, klicke den Button unten und kopiere dann den Sicherheitscode von GNU social in das Formular weiter unten. Es werden ausschließlich deine öffentlichen Beiträge auf GNU social veröffentlicht."; -App::$strings["Log in with GNU social"] = "Mit GNU social anmelden"; -App::$strings["Copy the security code from GNU social here"] = "Kopiere den Sicherheitscode von GNU social hier her"; -App::$strings["Cancel Connection Process"] = "Verbindungsprozes abbrechen"; -App::$strings["Current GNU social API is"] = "Aktuelle GNU social API ist"; -App::$strings["Cancel GNU social Connection"] = "GNU social Verbindung trennen"; -App::$strings["Currently connected to: "] = "Momentan verbunden mit:"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu GNU social geteilter Link in öffentlichen Beiträgen Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist."; -App::$strings["Allow posting to GNU social"] = "Erlaube die Veröffentlichung bei GNU social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden."; -App::$strings["Post to GNU social by default"] = "Standardmäßig bei GNU social veröffentlichen"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht."; -App::$strings["Clear OAuth configuration"] = "OAuth Konfiguration löschen"; -App::$strings["GNU social Post Settings"] = "GNU social Einstellungen"; -App::$strings["API URL"] = "API-URL"; -App::$strings["Application name"] = "Anwendungsname"; -App::$strings["QR code"] = "QR-Code"; -App::$strings["QR Generator"] = "QR-Generator"; -App::$strings["Enter some text"] = "Etwas Text eingeben"; -App::$strings["Invalid game."] = "Ungültiges Spiel."; -App::$strings["You are not a player in this game."] = "Sie sind kein Spieler in diesem Spiel."; -App::$strings["You must be a local channel to create a game."] = "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein"; -App::$strings["You must select one opponent that is not yourself."] = "Du musst einen Gegner wählen, der nicht du selbst ist"; -App::$strings["Random color chosen."] = "Zufällige Farbe gewählt."; -App::$strings["Error creating new game."] = "Fehler beim Erstellen eines neuen Spiels."; -App::$strings["Requested channel is not available."] = "Angeforderter Kanal nicht verfügbar."; -App::$strings["You must select a local channel /chess/channelname"] = "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen"; -App::$strings["Enable notifications"] = "Benachrichtigungen aktivieren"; -App::$strings["Post to Twitter"] = "Bei Twitter veröffentlichen"; -App::$strings["Twitter settings updated."] = "Twitter-Einstellungen aktualisiert."; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator."; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine öffentlichen Beiträge werden auf Twitter geteilt."; -App::$strings["Log in with Twitter"] = "Mit Twitter anmelden"; -App::$strings["Copy the PIN from Twitter here"] = "PIN von Twitter hier her kopieren"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist."; -App::$strings["Allow posting to Twitter"] = "Erlaube die Veröffentlichung bei Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; -App::$strings["Twitter post length"] = "Länge von Twitter Beiträgen"; -App::$strings["Maximum tweet length"] = "Maximale Länge eines Tweets"; -App::$strings["Send public postings to Twitter by default"] = "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; -App::$strings["Twitter Post Settings"] = "Twitter-Beitragseinstellungen"; -App::$strings["Deactivate the feature"] = "Diese Funktion abschalten"; -App::$strings["Hide the button and show the smilies directly."] = "Verstecke die Schaltfläche und zeige die Smilies direkt an."; -App::$strings["Smileybutton Settings"] = "Smileyknopf-Einstellungen"; -App::$strings["Order Not Found"] = "Bestellung nicht gefunden"; -App::$strings["Order cannot be checked out."] = "Bestellvorgang kann nicht fortgesetzt werden."; -App::$strings["Enable Shopping Cart"] = "Aktiviere die Warenkorb-Funktion."; -App::$strings["Enable Test Catalog"] = "Aktiviere den Test-Warenbestand"; -App::$strings["Enable Manual Payments"] = "Aktiviere manuelle Zahlungen"; -App::$strings["Base Cart Settings"] = "Warenkorb-Grundeinstellungen"; -App::$strings["Add Item"] = "Füge den Artikel hinzu"; -App::$strings["Call cart_post_"] = ""; -App::$strings["Cart Not Enabled (profile: "] = ""; -App::$strings["Order not found."] = "Bestellung nicht gefunden."; -App::$strings["No Order Found"] = "Keine Bestellung gefunden"; -App::$strings["call: "] = ""; -App::$strings["An unknown error has occurred Please start again."] = "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal."; -App::$strings["Invalid Payment Type. Please start again."] = "Unbekannte Zahlungsmethode. Bitte versuche es noch einmal."; -App::$strings["Order not found"] = "Bestellung nicht gefunden"; -App::$strings["Error: order mismatch. Please try again."] = "Fehler: Bestellungen stimmen nicht überein. Bitte versuche es noch einmal."; -App::$strings["Manual payments are not enabled."] = "Manuelle Zahlungen sind nicht aktiviert."; -App::$strings["Finished"] = "Fertig"; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Diese Website verwendet Piwik, um die Besucherzugriffe auszuwerten."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Wenn Du nicht möchtest, dass Deine Besuche zu diesem Zweck gespeichert werden, kannst Du ein Cookie setzen, welches Piwik davon abhält, Deine weiteren Besuche auf dieser Website zu verfolgen (Opt-out)."; -App::$strings["Piwik Base URL"] = "Piwik Basis-URL"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Der absolute Pfad zu Deiner Piwik-Installation (ohne Protokoll (http/s), aber mit abschließendem Schrägstrich / )."; -App::$strings["Site ID"] = "Seitenkennung"; -App::$strings["Show opt-out cookie link?"] = "Den Opt-out Cookie-Link anzeigen?"; -App::$strings["Asynchronous tracking"] = "Asynchrones Tracking"; -App::$strings["Enable frontend JavaScript error tracking"] = "Ermögliche Frontend-JavaScript-Fehlertracking"; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Diese Funktion erfordert Piwik >= 2.2.0"; -App::$strings["Edit your profile and change settings."] = "Bearbeite dein Profil und ändere die Einstellungen."; -App::$strings["Click here to see activity from your connections."] = "Klicke hier, um die Aktivitäten Deiner Verbindungen zu sehen."; -App::$strings["Click here to see your channel home."] = "Klicke hier, um Deine Kanal-Hauptseite zu sehen."; -App::$strings["You can access your private messages from here."] = "Hierüber kannst Du auf Deine privaten Nachrichten zugreifen."; -App::$strings["Create new events here."] = "Neue Termine hier erstellen"; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Du kannst hier neue Verbindungen akzeptieren sowie die Einstellungen bereits vorhandener Vebindungen bearbeiten. Außerdem kannst Du Verbindungen in Gruppen zusammenfassen."; -App::$strings["System notifications will arrive here"] = "Systembenachrichtigungen werden hier eintreffen"; -App::$strings["Search for content and users"] = "Nach Inhalt von Benutzern suchen"; -App::$strings["Browse for new contacts"] = "Schaue nach möglichen neuen Verbindungen."; -App::$strings["Launch installed apps"] = "Installierte Apps starten"; -App::$strings["Looking for help? Click here."] = "Du benötigst Hilfe? Klicke hier."; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "In Deinem Netzwerk gibt es neue Ereignisse. Klicke hier, um zu sehen, was passiert ist!"; -App::$strings["You have received a new private message. Click here to see from who!"] = "Du hast eine neue private Nachricht erhalten. Klicke hier, um zu sehen, von wem!"; -App::$strings["There are events this week. Click here too see which!"] = "Es gibt neue Termine diese Woche. Klicke hier, um zu sehen, welche!"; -App::$strings["You have received a new introduction. Click here to see who!"] = "Du hast eine neue Verbindungsanfrage erhalten. Klicke hier, um zu sehen, wer es ist!"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = "Es gibt eine neue Systembenachrichtigung. Klicke hier, um zu sehen, was passiert ist!"; -App::$strings["Click here to share text, images, videos and sound."] = "Klicke hier, um Texte, Bilder, Videos und Klänge zu teilen."; -App::$strings["You can write an optional title for your update (good for long posts)."] = "Du kannst Deinem Beitrag einen optionalen Titel geben (gut für lange Beiträge)."; -App::$strings["Entering some categories here makes it easier to find your post later."] = "Ein paar Kategorien hier einzugeben, macht es leichter, Deinen Beitrag später wiederzufinden."; -App::$strings["Share photos, links, location, etc."] = "Teile Photos, Links, Standort, usw."; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Du möchtest diesen Inhalt nur für eine Weile teilen? Dann lass ihn zu einem bestimmten Datum ablaufen."; -App::$strings["You can password protect content."] = "Du kannst Inhalte mit einem Passwort schützen."; -App::$strings["Choose who you share with."] = "Wähle aus, mit wem Du teilen möchtest."; -App::$strings["Click here when you are done."] = "Klicke hier, wenn Du fertig bist."; -App::$strings["Adjust from which channels posts should be displayed."] = "Lege fest, von welchen Kanälen Beiträge angezeigt werden sollen."; -App::$strings["Only show posts from channels in the specified privacy group."] = "Zeige nur Beträge von Kanälen, die in einer bestimmten Gruppe sind."; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Finde Beiträge, die bestimmte Tags enthalten (Stichworte, die mit dem \"#\"-Symbol beginnen)."; -App::$strings["Easily find posts in given category."] = "Finde Beiträge in bestimmten Kategorien."; -App::$strings["Easily find posts by date."] = "Finde Beiträge anhand des Datums."; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Vorgeschlagene Kanäle, die in ihren Einstellungen zugestimmt haben, als Vorschläge angezeigt zu werden, und die Du eventuell interessant finden könntest."; -App::$strings["Here you see channels you have connected to."] = "Hier siehst du die Kanäle, mit denen Du verbunden bist."; -App::$strings["Save your search so you can repeat it at a later date."] = "Speichere Deine Suche, so dass Du sie später leicht erneut durchführen kannst."; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Wenn Du dieses Symbol siehst, kannst Du weitgehend sicher sein, dass der Ansender dem angegebenen entspricht. Nicht immer ist es möglich, den Absender zu verifizieren, daher fehlt das Symbol mitunter. Das ist aber in der Regel kein Grund zur Sorge."; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!"; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?

Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.

Du kannst auc durch das Drücken der Enter-Taste weitergehen."; -App::$strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit \$Projectname - Servern geteilt."; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe"; -App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; -App::$strings["New game"] = "Neues Spiel"; -App::$strings["New game with handicap"] = "Neues Handicaü-Spiel"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3D Tic-Tac-Toe funktioniert wie das ursprüngliche Spiel, nur dass es auf mehreren Ebenen gleichzeitig gespielt wird."; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In diesem Fall sind es drei Ebenen. Du gewinnst, wenn es dir gelingt drei in einer Reihe auf einer beliebigen Ebene oder diagonal über die verschiedenen Ebenen hinweg zu erreichen."; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Bei einem Handicap-Spiel wird die Position im Zentrum der mittleren Ebene gesperrt, da der Spieler der dieses Feld für sich beansprucht meist einen unfairen Vorteil hat."; -App::$strings["You go first..."] = "Du darfst anfangen..."; -App::$strings["I'm going first this time..."] = "Diesmal werde ich anfangen..."; -App::$strings["You won!"] = "Sie haben gewonnen!"; -App::$strings["\"Cat\" game!"] = "\"Katzen\"-Spiel!"; -App::$strings["I won!"] = "Ich habe gewonnen!"; -App::$strings["Message to display on every page on this server"] = "Nachricht, die auf jeder Seite dieses Servers angezeigt werden soll"; -App::$strings["Pageheader Settings"] = "Nachrichtenkopf-Einstellungen"; -App::$strings["pageheader Settings saved."] = "Nachrichtenkopf-Einstellungen gespeichert."; -App::$strings["Only authenticate automatically to sites of your friends"] = "Authentifiziere Dich nur auf Seiten deiner Freunde automatisch"; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "Authentifiziere Dich standardmäßig bei allen Seiten im Netzwerk automatisch"; -App::$strings["Authchoose Settings"] = "Einstellungen für automatische Authentifizierung"; -App::$strings["Atuhchoose Settings updated."] = "Einstellungen für automatische Authentifizierung aktualisiert."; -App::$strings["lonely"] = "einsam"; -App::$strings["drunk"] = "betrunken"; -App::$strings["horny"] = "geil"; -App::$strings["stoned"] = "bekifft"; -App::$strings["fucked up"] = "beschissen"; -App::$strings["clusterfucked"] = "clusterfucked"; -App::$strings["crazy"] = "verrückt"; -App::$strings["hurt"] = "verletzt"; -App::$strings["sleepy"] = "müde"; -App::$strings["grumpy"] = "mürrisch"; -App::$strings["high"] = "hoch"; -App::$strings["semi-conscious"] = "halb bewusstlos"; -App::$strings["in love"] = "verliebt"; -App::$strings["in lust"] = ""; -App::$strings["naked"] = "nackt"; -App::$strings["stinky"] = "stinkend"; -App::$strings["sweaty"] = "verschwitzt"; -App::$strings["bleeding out"] = "blutend"; -App::$strings["victorious"] = "siegreich"; -App::$strings["defeated"] = "besiegt"; -App::$strings["envious"] = "neidisch"; -App::$strings["jealous"] = "eifersüchtig"; -App::$strings["XMPP settings updated."] = "XMPP-Einstellungen aktualisiert."; -App::$strings["Enable Chat"] = "Chat aktivieren"; -App::$strings["Individual credentials"] = "Individuelle Anmeldedaten"; -App::$strings["Jabber BOSH server"] = "Jabber BOSH Server"; -App::$strings["XMPP Settings"] = "XMPP-Einstellungen"; -App::$strings["Jabber BOSH host"] = "Jabber BOSH Host"; -App::$strings["Use central userbase"] = "Zentrale Benutzerbasis verwenden"; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Wenn aktiviert, werden die Mitglieder automatisch auf dem EJabber Server, der auf dieser Maschine installiert ist, angemeldet und die Zugangsdaten werden über das \"auth_ejabberd.php\"-Script synchronisiert."; -App::$strings["Who likes me?"] = "Wer mag mich?"; -App::$strings["You are now authenticated to pumpio."] = "Du bist nun bei pumpio authenzifiziert."; -App::$strings["return to the featured settings page"] = "Zur Funktions-Einstellungsseite zurückkehren"; -App::$strings["Post to Pump.io"] = "Bei pumpio veröffentlichen"; -App::$strings["Pump.io servername"] = "Pump.io-Servername"; -App::$strings["Without \"http://\" or \"https://\""] = "Ohne \"http://\" oder \"https://\""; -App::$strings["Pump.io username"] = "Pump.io-Benutzername"; -App::$strings["Without the servername"] = "Ohne dem Servernamen"; -App::$strings["You are not authenticated to pumpio"] = "Du bist nicht bei pumpio authentifiziert."; -App::$strings["(Re-)Authenticate your pump.io connection"] = "Deine pumpio Verbindung (erneut) authentifizieren"; -App::$strings["Enable pump.io Post Plugin"] = "Aktiviere das pumpio-Plugin"; -App::$strings["Post to pump.io by default"] = "Standardmäßig bei pumpio veröffentlichen"; -App::$strings["Should posts be public"] = "Sollen die Beiträge öffentlich sein"; -App::$strings["Mirror all public posts"] = "Öffentliche Beiträge spiegeln"; -App::$strings["Pump.io Post Settings"] = "Pump.io-Beitragseinstellungen"; -App::$strings["PumpIO Settings saved."] = "PumpIO-Einstellungen gespeichert."; -App::$strings["An account has been created for you."] = "Ein Konto wurde für Sie erstellt."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert."; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Search \$Projectname"] = "\$Projectname suchen"; -App::$strings["Redmatrix File Storage Import"] = "Import des Redmatrix Datei Speichers"; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Hiermit werden alle deine Daten aus der Redmatrix Cloud in diesen Kanal importiert."; -App::$strings["file"] = "Datei"; -App::$strings["Send email to all members"] = "E-Mail an alle Mitglieder senden"; -App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d von %2\$d Nachrichten gesendet."; -App::$strings["Send email to all hub members."] = "Eine E-Mail an alle Mitglieder dieses Hubs senden."; -App::$strings["Sender Email address"] = "E-Mail Adresse des Absenders"; -App::$strings["Test mode (only send to hub administrator)"] = "Test Modus (nur an Hub Administratoren senden)"; -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["likes %1\$s's %2\$s"] = "gefällt %1\$ss %2\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "missfällt %1\$ss %2\$s"; -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["Loading..."] = "Lädt ..."; -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["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["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; -App::$strings["Comments enabled"] = "Kommentare aktiviert"; -App::$strings["Comments disabled"] = "Kommentare deaktiviert"; -App::$strings["Page link name"] = "Link zur Seite"; -App::$strings["Post as"] = "Veröffentlichen als"; -App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -App::$strings["Disable comments"] = "Kommentare deaktivieren"; -App::$strings["Toggle comments"] = "Kommentare umschalten"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -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["Profile Details"] = "Profil-Details"; -App::$strings["Photo Albums"] = "Fotoalben"; -App::$strings["Files and Storage"] = "Dateien und Speicher"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; -App::$strings["View Cards"] = "Karten anzeigen"; -App::$strings["articles"] = "Artikel"; -App::$strings["View Articles"] = "Artikel anzeigen"; -App::$strings["View Webpages"] = "Webseiten anzeigen"; -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["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["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["Unable to import a removed channel."] = "Nicht möglich, einen gelöschten Kanal zu importieren."; -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["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -App::$strings["prev"] = "vorherige"; -App::$strings["first"] = "erste"; -App::$strings["last"] = "letzte"; -App::$strings["next"] = "nächste"; -App::$strings["older"] = "älter"; -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["ping"] = "anpingen"; -App::$strings["pinged"] = "pingte"; -App::$strings["prod"] = "knuffen"; -App::$strings["prodded"] = "knuffte"; -App::$strings["slap"] = "ohrfeigen"; -App::$strings["slapped"] = "ohrfeigte"; -App::$strings["finger"] = "befummeln"; -App::$strings["fingered"] = "befummelte"; -App::$strings["rebuff"] = "eine Abfuhr erteilen"; -App::$strings["rebuffed"] = "zurückgewiesen"; -App::$strings["happy"] = "glücklich"; -App::$strings["sad"] = "traurig"; -App::$strings["mellow"] = "sanft"; -App::$strings["tired"] = "müde"; -App::$strings["perky"] = "frech"; -App::$strings["angry"] = "sauer"; -App::$strings["stupefied"] = "verblüfft"; -App::$strings["puzzled"] = "verwirrt"; -App::$strings["interested"] = "interessiert"; -App::$strings["bitter"] = "verbittert"; -App::$strings["cheerful"] = "fröhlich"; -App::$strings["alive"] = "lebendig"; -App::$strings["annoyed"] = "verärgert"; -App::$strings["anxious"] = "unruhig"; -App::$strings["cranky"] = "schrullig"; -App::$strings["disturbed"] = "verstört"; -App::$strings["frustrated"] = "frustriert"; -App::$strings["depressed"] = "deprimiert"; -App::$strings["motivated"] = "motiviert"; -App::$strings["relaxed"] = "entspannt"; -App::$strings["surprised"] = "überrascht"; -App::$strings["Monday"] = "Montag"; -App::$strings["Tuesday"] = "Dienstag"; -App::$strings["Wednesday"] = "Mittwoch"; -App::$strings["Thursday"] = "Donnerstag"; -App::$strings["Friday"] = "Freitag"; -App::$strings["Saturday"] = "Samstag"; -App::$strings["Sunday"] = "Sonntag"; -App::$strings["January"] = "Januar"; -App::$strings["February"] = "Februar"; -App::$strings["March"] = "März"; -App::$strings["April"] = "April"; -App::$strings["May"] = "Mai"; -App::$strings["June"] = "Juni"; -App::$strings["July"] = "Juli"; -App::$strings["August"] = "August"; -App::$strings["September"] = "September"; -App::$strings["October"] = "Oktober"; -App::$strings["November"] = "November"; -App::$strings["December"] = "Dezember"; -App::$strings["Unknown Attachment"] = "Unbekannter Anhang"; -App::$strings["unknown"] = "unbekannt"; -App::$strings["remove category"] = "Kategorie entfernen"; -App::$strings["remove from file"] = "aus der Datei entfernen"; -App::$strings["Download binary/encrypted content"] = "Binären/verschlüsselten Inhalt herunterladen"; -App::$strings["default"] = "Standard"; -App::$strings["Page layout"] = "Seiten-Layout"; -App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; -App::$strings["HTML"] = "HTML"; -App::$strings["Comanche Layout"] = "Comanche-Layout"; -App::$strings["PHP"] = "PHP"; -App::$strings["Page content type"] = "Art des Seiteninhalts"; -App::$strings["activity"] = "Aktivität"; -App::$strings["a-z, 0-9, -, and _ only"] = "nur a-z, 0-9, - und _"; -App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; -App::$strings["Pages"] = "Seiten"; -App::$strings["Import website..."] = "Webseite importieren..."; -App::$strings["Select folder to import"] = "Ordner zum Importieren auswählen"; -App::$strings["Import from a zipped folder:"] = "Aus einem gezippten Ordner importieren:"; -App::$strings["Import from cloud files:"] = "Aus Cloud-Dateien importieren:"; -App::$strings["/cloud/channel/path/to/folder"] = "/Cloud/Kanal/Pfad/zum/Ordner"; -App::$strings["Enter path to website files"] = "Pfad zu Webseitendateien eingeben"; -App::$strings["Select folder"] = "Ordner auswählen"; -App::$strings["Export website..."] = "Webseite exportieren..."; -App::$strings["Export to a zip file"] = "In eine ZIP-Datei exportieren"; -App::$strings["website.zip"] = "website.zip"; -App::$strings["Enter a name for the zip file."] = "Geben Sie einen für die ZIP-Datei ein."; -App::$strings["Export to cloud files"] = "In Cloud-Dateien exportieren"; -App::$strings["/path/to/export/folder"] = "/Pfad/zum/exportierenden/Ordner"; -App::$strings["Enter a path to a cloud files destination."] = "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein."; -App::$strings["Specify folder"] = "Ordner angeben"; -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["Common Connections"] = "Gemeinsame Verbindungen"; -App::$strings["View all %d common connections"] = "Zeige alle %d gemeinsamen Verbindungen"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -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["Premium channel - please visit:"] = "Premium-Kanal - bitte gehe zu:"; -App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; -App::$strings["Remote channel or protocol unavailable."] = "Externer Kanal oder Protokoll nicht verfügbar."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -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["Password too short"] = "Kennwort zu kurz"; -App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -App::$strings["everybody"] = "alle"; -App::$strings["Secret Passphrase"] = "geheime Passphrase"; -App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -App::$strings["close all"] = "Alle schließen"; -App::$strings["Nothing new here"] = "Nichts Neues hier"; -App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -App::$strings["Describe (optional)"] = "Beschreibung (optional)"; -App::$strings["Please enter a link URL"] = "Gib eine URL ein:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; -App::$strings["timeago.prefixAgo"] = "vor"; -App::$strings["timeago.prefixFromNow"] = "in"; -App::$strings["timeago.suffixAgo"] = "NONE"; -App::$strings["timeago.suffixFromNow"] = "NONE"; -App::$strings["less than a minute"] = "weniger als einer Minute"; -App::$strings["about a minute"] = "ungefähr einer Minute"; -App::$strings["%d minutes"] = "%d Minuten"; -App::$strings["about an hour"] = "ungefähr einer Stunde"; -App::$strings["about %d hours"] = "ungefähr %d Stunden"; -App::$strings["a day"] = "einem Tag"; -App::$strings["%d days"] = "%d Tagen"; -App::$strings["about a month"] = "ungefähr einem Monat"; -App::$strings["%d months"] = "%d Monaten"; -App::$strings["about a year"] = "ungefähr einem Jahr"; -App::$strings["%d years"] = "%d Jahren"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "Mai"; -App::$strings["Jan"] = "Jan"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mär"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "Mai"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Aug"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Okt"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dez"; -App::$strings["Sun"] = "So"; -App::$strings["Mon"] = "Mo"; -App::$strings["Tue"] = "Di"; -App::$strings["Wed"] = "Mi"; -App::$strings["Thu"] = "Do"; -App::$strings["Fri"] = "Fr"; -App::$strings["Sat"] = "Sa"; -App::$strings["__ctx:calendar__ today"] = "heute"; -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["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -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["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["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["[Edited %s]"] = "[%s wurde bearbeitet]"; -App::$strings["__ctx:edit_activity__ Post"] = "Beitrag"; -App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar"; -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 Konten-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Unable to retrieve modified identity"] = "Geänderte Identität kann nicht empfangen werden"; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Change your profile photo"] = "Dein Profilfoto ändern"; -App::$strings["Trans"] = "Trans"; -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["Tags:"] = "Schlagworte:"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -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["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["Home, Voice"] = "Zuhause, Sprache"; -App::$strings["Home, Fax"] = "Zuhause, Fax"; -App::$strings["Work, Voice"] = "Arbeit, Sprache"; -App::$strings["Work, Fax"] = "Arbeit, Fax"; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -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["Select an alternate language"] = "Wähle eine alternative Sprache"; -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["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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %1\$s element %2\$s"] = "Installiere %1\$s Element %2\$s"; -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["card"] = "Karte"; -App::$strings["article"] = "Artikel"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["View article"] = "Artikel ansehen"; -App::$strings["View summary"] = "Zusammenfassung ansehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings[" by "] = "von"; -App::$strings[" on "] = "am"; -App::$strings["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s willkommen"; -App::$strings["General Features"] = "Allgemeine Funktionen"; -App::$strings["Display new member quick links menu"] = "Zeigt neuen Mitgliedern ein Menü mit Schnell-Links zu wichtigen Funktionen"; -App::$strings["Advanced Profiles"] = "Erweiterte Profile"; -App::$strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; -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["Private Notes"] = "Private Notizen"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; -App::$strings["Create personal planning cards"] = "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken"; -App::$strings["Create interactive articles"] = "Erstelle interaktive Artikel"; -App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü"; -App::$strings["Photo Location"] = "Aufnahmeort"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte"; -App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume"; -App::$strings["Provide chatrooms and chat services with access control."] = "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an."; -App::$strings["Smart Birthdays"] = "Smarte Geburtstage"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind."; -App::$strings["Event Timezone Selection"] = "Termin-Zeitzonenauswahl"; -App::$strings["Allow event creation in timezones other than your own."] = "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen."; -App::$strings["Premium Channel"] = "Premium-Kanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; -App::$strings["Advanced Directory Search"] = "Erweiterte Verzeichnissuche"; -App::$strings["Allows creation of complex directory search queries"] = "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen"; -App::$strings["Advanced Theme and Layout Settings"] = "Erweiterte Design- und Layout-Einstellungen"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Erlaubt die Feineinstellung von Designs und Seitenlayouts"; -App::$strings["Access Control and Permissions"] = "Zugriffskontrolle und Berechtigungen"; -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["Multiple Profiles"] = "Mehrfachprofile"; -App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; -App::$strings["Provide alternate connection permission roles."] = "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung."; -App::$strings["OAuth1 Clients"] = "OAuth1 Clients"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Verwalte OAuth1-Tokens für den Zugriff von mobilen bzw. externen Anwendungen."; -App::$strings["OAuth2 Clients"] = "OAuth2 Clients"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Verwalte OAuth2-Tokens für den Zugriff von mobilen bzw. externen Anwendungen."; -App::$strings["Access Tokens"] = "Zugangstokens"; -App::$strings["Create access tokens so that non-members can access private content."] = "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte."; -App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; -App::$strings["Large Photos"] = "Große Fotos"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds"; -App::$strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)"; -App::$strings["Enable Voting Tools"] = "Umfragewerkzeuge aktivieren"; -App::$strings["Provide a class of post which others can vote on"] = "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.)"; -App::$strings["Disable Comments"] = "Kommentare deaktivieren"; -App::$strings["Provide the option to disable comments for a post"] = "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten"; -App::$strings["Delayed Posting"] = "Verzögertes Senden"; -App::$strings["Allow posts to be published at a later date"] = "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen"; -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."; -App::$strings["Suppress Duplicate Posts/Comments"] = "Doppelte Beiträge unterdrücken"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden."; -App::$strings["Auto-save drafts of posts and comments"] = "Auto-Speicherung von Beitrags- und Kommentarentwürfen"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Speichert Deine Beitrags- und Kommentarentwürfe automatisch im lokalen Browserspeicher und hilft so, versehentlichem Verlust dieser Inhalte vorzubeugen"; -App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; -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["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"; -App::$strings["Network New Tab"] = "Netzwerkreiter Neu"; -App::$strings["Enable tab to display all new Network activity"] = "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt"; -App::$strings["Affinity Tool"] = "Beziehungs-Tool"; -App::$strings["Filter stream activity by depth of relationships"] = "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann"; -App::$strings["Show friend and connection suggestions"] = "Freund- und Verbindungsvorschläge anzeigen"; -App::$strings["Connection Filtering"] = "Filter für Verbindungen"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; -App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; -App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; -App::$strings["Post Categories"] = "Beitrags-Kategorien"; -App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; -App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; -App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; -App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; -App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; -App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; -App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; -App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; -App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["Trending"] = "Meistbeachtet"; -App::$strings["Keywords"] = "Schlüsselwörter"; -App::$strings["have"] = "habe"; -App::$strings["has"] = "hat"; -App::$strings["want"] = "will"; -App::$strings["wants"] = "will"; -App::$strings["likes"] = "gefällt"; -App::$strings["dislikes"] = "missfällt"; -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["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -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["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["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)"; -App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Hub durchsuchen: @Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["@name, !forum, #tag, ?doc, content"] = "@Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; -App::$strings["Add Apps"] = "Apps hinzufügen"; -App::$strings["Arrange Apps"] = "Apps anordnen"; -App::$strings["Toggle System Apps"] = "System-Apps umschalten"; -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["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["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["Delegation session ended."] = ""; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Email validation is incomplete. Please check your email."] = "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Help:"] = "Hilfe:"; -App::$strings["Not Found"] = "Nicht gefunden"; diff --git a/view/de-de/messages.po b/view/de-de/messages.po index 460fd764b..8af9dce6b 100644 --- a/view/de-de/messages.po +++ b/view/de-de/messages.po @@ -1,34 +1,35 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project -# This file is distributed under the same license as the Red package. +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. # # Translators: # Alex , 2013 -# Alex , 2013 # Balder , 2013 -# Balder , 2013 -# bavatar , 2013 -# JooBee , 2014 -# Einer von Vielen , 2013 -# Einer von Vielen , 2013 -# Ettore Atalan , 2014-2015 -# Frank Dieckmann , 2013 -# Frank Dieckmann , 2013 -# Kai , 2015 -# Oliver , 2013-2015 -# Phellmes , 2014 -# Steff , 2015 -# bavatar , 2013-2015 +# Tobias Diekershoff , 2013 # do.t , 2014 -# zottel , 2013-2015 -# sasiflo , 2014-2015 +# Einer von Vielen , 2013 +# Ettore Atalan , 2015-2017 +# Frank Dieckmann , 2013 +# Harald Klimach , 2016 +# Herbert Thielen , 2018 +# Holger - , 2018 +# JooBee , 2014 +# Kai , 2015 +# Oliver , 2015-2017 +# Phellmes , 2014,2016-2018 +# sasiflo , 2014 +# Steff , 2015-2016 +# Tobias Diekershoff , 2016 +# Tobias Diekershoff , 2016-2018 +# zottel , 2015 +# sasiflo , 2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-25 00:05-0700\n" -"PO-Revision-Date: 2015-09-30 11:58+0000\n" -"Last-Translator: Oliver \n" +"POT-Creation-Date: 2018-04-23 11:34+0200\n" +"PO-Revision-Date: 2018-04-26 18:46+0000\n" +"Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,438 +37,12818 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:92 ../../mod/photos.php:637 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" -#: ../../include/menu.php:107 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:266 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/webpages.php:181 ../../mod/thing.php:255 -#: ../../mod/connections.php:242 ../../mod/connections.php:255 -#: ../../mod/connections.php:274 ../../mod/blocks.php:153 -#: ../../mod/editpost.php:106 ../../mod/editlayout.php:133 -#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:134 -#: ../../mod/menu.php:106 ../../mod/settings.php:650 ../../mod/layouts.php:183 +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "Kann die Webseiten meines Kanals sehen" + +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Kann meine Wiki-Seiten sehen" + +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Kann meine Wiki-Seiten bearbeiten" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "Kann Profile und Profilsachen mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:70 +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:71 +msgid "Can chat with me" +msgstr "Kann mit mir chatten" + +#: ../../Zotlabs/Access/Permissions.php:72 +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:73 +msgid "Can administer my channel" +msgstr "Kann meinen Kanal administrieren" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "Soziales Netzwerk - Föderation (verbundene Netze)" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "Forum" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "Forum - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" + +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 +#: ../../Zotlabs/Module/Settings/Channel.php:479 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:697 +#: ../../include/connections.php:704 +msgid "Other" +msgstr "Andere" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht verfügbar." + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:91 +#: ../../Zotlabs/Module/New_channel.php:116 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Settings/Features.php:38 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 +#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:85 +#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 +#: ../../include/attach.php:197 ../../include/attach.php:270 +#: ../../include/attach.php:284 ../../include/attach.php:293 +#: ../../include/attach.php:366 ../../include/attach.php:380 +#: ../../include/attach.php:387 ../../include/attach.php:469 +#: ../../include/attach.php:1029 ../../include/attach.php:1103 +#: ../../include/attach.php:1268 ../../include/items.php:3706 +#: ../../include/photos.php:27 +msgid "Permission denied." +msgstr "Berechtigung verweigert." + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Block-Name" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 +msgid "Blocks" +msgstr "Blöcke" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titel des Blocks" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "Erstellt" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "Geändert" + +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "Erstelle" + +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Settings/Oauth2.php:149 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 +#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 +#: ../../include/channel.php:1300 ../../include/menu.php:113 msgid "Edit" msgstr "Bearbeiten" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Häufig" +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 +#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../include/conversation.php:1366 +msgid "Share" +msgstr "Teilen" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Settings/Oauth2.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:289 +#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 +#: ../../include/conversation.php:690 ../../include/conversation.php:733 +msgid "Delete" +msgstr "Löschen" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +msgid "View" +msgstr "Ansicht" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1552 +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" + +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" + +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" + +#: ../../Zotlabs/Module/Invite.php:144 +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:146 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." + +#: ../../Zotlabs/Module/Invite.php:147 +msgid "or visit" +msgstr "oder besuche" + +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" + +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 +#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Channel.php:495 +#: ../../Zotlabs/Module/Settings/Features.php:79 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Oauth2.php:84 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 +#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 +#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:825 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 +#: ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 +#: ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 +#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 +#: ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "Absenden" + +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Artikel" + +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Artikel hinzufügen" + +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "Element nicht gefunden" + +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Layout-Name" + +#: ../../Zotlabs/Module/Editlayout.php:129 +#: ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Layout-Beschreibung (optional)" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Layout bearbeiten" + +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:358 +msgid "Permission denied" +msgstr "Keine Berechtigung" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" + +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Profperm.php:115 +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:124 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:200 +msgid "All Connections" +msgstr "Alle Verbindungen" + +#: ../../Zotlabs/Module/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "UNGÜLTIGEN TERMIN ABGELEHNT!" + +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Zusammenfassung:" + +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 +#: ../../include/conversation.php:1160 +msgid "Unknown" +msgstr "Unbekannt" + +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Datum:" + +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Grund:" + +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "UNGÜLTIGE KARTE ABGELEHNT!" + +#: ../../Zotlabs/Module/Cdav.php:794 +msgid "Name: " +msgstr "Name: " + +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Termintitel" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Startdatum und -zeit" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Beispiel: JJJJ-MM-TT HH:mm" + +#: ../../Zotlabs/Module/Cdav.php:870 +msgid "End date and time" +msgstr "Enddatum und -zeit" + +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +msgid "Description" +msgstr "Beschreibung" + +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ort" + +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 +msgid "Previous" +msgstr "Voriges" + +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Photos.php:980 +msgid "Next" +msgstr "Nächste" + +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Heute" + +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "Monat" + +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "Woche" + +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "Tag" + +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Liste Monat" + +#: ../../Zotlabs/Module/Cdav.php:886 +msgid "List week" +msgstr "Liste Woche" + +#: ../../Zotlabs/Module/Cdav.php:887 +msgid "List day" +msgstr "Liste Tag" + +#: ../../Zotlabs/Module/Cdav.php:894 +msgid "More" +msgstr "Mehr" + +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Weniger" + +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Kalender auswählen" + +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Alles löschen" + +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth2.php:85 +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 +msgid "Cancel" +msgstr "Abbrechen" + +#: ../../Zotlabs/Module/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert." + +#: ../../Zotlabs/Module/Cdav.php:1170 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +msgid "Name" +msgstr "Name" + +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Organisation" + +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Titel" + +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "Telefon" + +#: ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 msgid "Email" msgstr "E-Mail" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "Sofortnachrichtendienst" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "Webseite" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "Adresse" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "Hinweis" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 +#: ../../include/connections.php:690 +msgid "Mobile" +msgstr "Mobil" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 +#: ../../include/connections.php:691 +msgid "Home" +msgstr "Home" -#: ../../include/notify.php:23 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 +#: ../../include/connections.php:694 +msgid "Work" +msgstr "Arbeit" + +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "Kontakt hinzufügen" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "Feld hinzufügen" + +#: ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth2.php:39 +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Lib/Apps.php:393 +msgid "Update" +msgstr "Aktualisieren" + +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "Postfach" + +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Zusätzlich" + +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Straße" + +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Ortschaft" + +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Region" + +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "Postleitzahl" + +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "Land" + +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Standardkalender" + +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Standardadressbuch" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Diese Webseite ist kein Verzeichnisserver" + +#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 +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:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Nur Beiträge" + +#: ../../Zotlabs/Module/Channel.php:107 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" + +#: ../../Zotlabs/Module/Uexport.php:61 +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/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." + +#: ../../Zotlabs/Module/Uexport.php:65 +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/Uexport.php:66 +#, 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:67 +#, 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:68 +#, 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/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "Willkommen bei Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "Du hast keine ungelesenen Beiträge..." + +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Öffentlichen Zugriff verweigert." + +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 +msgid "Search" +msgstr "Suche" + +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge mit Schlagwort: %s" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:131 +msgid "Public Stream" +msgstr "Öffentlicher Beitrags-Stream" + +#: ../../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 ../../Zotlabs/Module/Admin.php:111 +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/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Reihenfolge der in der Navigation angepinnten Apps ändern" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Reihenfolge der Apps im App-Menü ändern" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the" +" navbar" +msgstr "Benutze die Pfeil-Knöpfe, um die jeweilige App in der Navigationsleiste nach links (oben) oder rechts (unten) zu bewegen" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Benutze die Pfeil-Knöpfe, um die jeweilige App im App-Menü nach oben oder unten zu bewegen" + +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../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:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Name des Links" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" + +#: ../../Zotlabs/Module/Mitem.php:161 +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:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:259 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "No" +msgstr "Nein" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:261 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "Ja" + +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" + +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" + +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menü:" + +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Ziel des Links" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Bestandteil löschen" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Neues Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Link Text" + +#: ../../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:110 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "Termin nicht gefunden." + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 +#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 +#: ../../include/text.php:2008 ../../include/event.php:1153 +msgid "event" +msgstr "Termin" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../include/datetime.php:211 +msgid "Required" +msgstr "Benötigt" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Kategorie" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" + +#: ../../Zotlabs/Module/Events.php:471 +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:473 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Ort bearbeiten" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../include/conversation.php:1333 +msgid "Preview" +msgstr "Vorschau" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Zeitzone:" + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Weitere Optionen" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "l, j. F" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Termin löschen" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 +#: ../../include/text.php:1827 +msgid "Link to Source" +msgstr "Link zur Quelle" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "Kalender" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Termin bearbeiten" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Termin anlegen" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 +#: ../../include/channel.php:1647 +msgid "Export" +msgstr "Exportieren" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "Termin gelöscht" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "App installiert." + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "Fehlerhafte App." + +#: ../../Zotlabs/Module/Appman.php:130 +msgid "Embed code" +msgstr "Code einbetten" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Edit App" +msgstr "App bearbeiten" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Create App" +msgstr "App erstellen" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Name of app" +msgstr "Name der App" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Photo icon URL" +msgstr "URL zum Icon" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Version ID" +msgstr "Versions-ID" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Price of app" +msgstr "Preis der App" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Bitte melde dich an." + +#: ../../Zotlabs/Module/Magic.php:72 +msgid "Hub not found." +msgstr "Server nicht gefunden." + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:384 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 +#: ../../include/conversation.php:116 ../../include/text.php:2005 +msgid "photo" +msgstr "Foto" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 +#: ../../include/conversation.php:144 ../../include/text.php:2011 +msgid "status" +msgstr "Status" + +#: ../../Zotlabs/Module/Subthread.php:142 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" + +#: ../../Zotlabs/Module/Subthread.php:144 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s folgt %2$ss %3$s nicht mehr" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../include/conversation.php:1278 +msgid "Insert web link" +msgstr "Link einfügen" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../include/conversation.php:1401 +msgid "Title (optional)" +msgstr "Titel (optional)" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Artikel bearbeiten" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." +msgstr "Nichts zu importieren." + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Daten können vom alten Server nicht heruntergeladen werden" + +#: ../../Zotlabs/Module/Import_items.php:77 +#: ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." +msgstr "Die importierte Datei ist leer." + +#: ../../Zotlabs/Module/Import_items.php:93 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." + +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "Import abgeschlossen" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Beiträge importieren" + +#: ../../Zotlabs/Module/Import_items.php:126 +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/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:517 +msgid "File to Upload" +msgstr "Hochzuladende Datei:" + +#: ../../Zotlabs/Module/New_channel.php:133 +#: ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +msgid "Name or caption" +msgstr "Name oder Titel" + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +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:148 +#: ../../Zotlabs/Module/Register.php:256 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" + +#: ../../Zotlabs/Module/New_channel.php:148 +#: ../../Zotlabs/Module/Register.php:256 +#, 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:149 +#: ../../Zotlabs/Module/Settings/Channel.php:539 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Channel role and privacy" +msgstr "Kanaltyp und Privatspäre-Einstellungen" + +#: ../../Zotlabs/Module/New_channel.php:149 +#: ../../Zotlabs/Module/Register.php:257 +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:149 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" + +#: ../../Zotlabs/Module/New_channel.php:152 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" + +#: ../../Zotlabs/Module/New_channel.php:153 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed," +" and many other things. Channels can make connections with other channels to" +" share information with each other." +msgstr "Ein Kanal ist eine eindeutige Identität. Er kann eine Person (Soziales Netzwerk-Profil), ein Forum (Gruppe), eine Unternehmens- oder Prominenten-Seite, einen Newsfeed oder viele andere Dinge repräsentieren. Kanäle können Verbindungen mit anderen Kanälen eingehen, um Informationen miteinander auszutauschen." + +#: ../../Zotlabs/Module/New_channel.php:153 +msgid "" +"The type of channel you create affects the basic privacy settings, the " +"permissions that are granted to connections/friends, and also the channel's " +"visibility across the network." +msgstr "Die Art des Kanals, den Du erzeugst, beeinflusst die grundlegenden Privatsphäre-Einstellungen, die Rechte, die Verbindungen/Freunden gewährt werden, und auch die Sichtbarkeit des Kanals im gesamten Netzwerk." + +#: ../../Zotlabs/Module/New_channel.php:154 +msgid "" +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." + +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Validate" +msgstr "Überprüfe" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Diesen Kanal löschen" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "WARNUNG: " + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +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/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" + +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:600 +msgid "Remove Channel" +msgstr "Kanal löschen" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "NEU" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 +msgid "Size" +msgstr "Größe" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:286 +msgid "Last Modified" +msgstr "Zuletzt geändert" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Alle Dateien löschen" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Diese Datei löschen" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" + +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." + +#: ../../Zotlabs/Module/Setup.php:178 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." + +#: ../../Zotlabs/Module/Setup.php:185 +msgid "Could not create table." +msgstr "Konnte Tabelle nicht erstellen." + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." + +#: ../../Zotlabs/Module/Setup.php:197 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." + +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:749 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" +msgstr "Systemprüfung" + +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" +msgstr "Nochmal prüfen" + +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" +msgstr "Datenbankverbindung" + +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." + +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Server Name" +msgstr "Datenbankservername" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "Standard ist 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" +msgstr "Datenbankport" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" +msgstr "Datenbankname" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Datenbanktyp" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" +msgstr "Webseiten-URL" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" + +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" +msgstr "Seiteneinstellungen" + +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP-Version 5.5 oder höher ist erforderlich." + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "PHP-Version" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." + +#: ../../Zotlabs/Module/Setup.php:402 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "PHP executable path" +msgstr "PHP-Pfad zu ausführbarer Datei" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." + +#: ../../Zotlabs/Module/Setup.php:411 +msgid "Command line PHP" +msgstr "PHP-Befehlszeile" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "Prüfung auf Kommandozeilen-PHP fehlgeschlagen, da shell_exec() deaktiviert ist. Dies wird aber benötigt." + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." + +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Du kannst diese Einstellungen in der php.ini - Datei des Servers anpassen." + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." + +#: ../../Zotlabs/Module/Setup.php:480 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel erzeugen" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "PDO-Datenbank-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "zip PHP Modul" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" + +#: ../../Zotlabs/Module/Setup.php:507 +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:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "exec" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "Fehler: exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "shell_exec" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: shell_exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" + +#: ../../Zotlabs/Module/Setup.php:527 +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:531 +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:535 +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:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "Fehler: PDO-Datenbank-PHP-Modul ist erforderlich, aber nicht installiert." + +#: ../../Zotlabs/Module/Setup.php:543 +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:547 +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:551 +msgid "Error: zip PHP module required but not installed." +msgstr "Fehler: Das zip PHP Modul ist erforderlich, ist aber nicht installiert." + +#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" + +#: ../../Zotlabs/Module/Setup.php:575 +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:576 +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:577 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "Lies die Datei \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:593 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "Diese Software verwendet die Smarty3 Template Engine, um Vorlagen für die Webdarstellung zu verarbeiten. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." + +#: ../../Zotlabs/Module/Setup.php:594 +#, 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:595 ../../Zotlabs/Module/Setup.php:616 +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:596 +#, 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:599 +#, php-format +msgid "%s is writable" +msgstr "%s ist beschreibbar" + +#: ../../Zotlabs/Module/Setup.php:615 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level" +" web folder" +msgstr "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Web-Stammverzeichnisses." + +#: ../../Zotlabs/Module/Setup.php:619 +msgid "store is writable" +msgstr "store ist schreibbar" + +#: ../../Zotlabs/Module/Setup.php:651 +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:652 +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:653 +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:654 +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:655 +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:656 +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:658 +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:660 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" + +#: ../../Zotlabs/Module/Setup.php:666 +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:669 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" + +#: ../../Zotlabs/Module/Setup.php:683 +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:707 +#: ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." + +#: ../../Zotlabs/Module/Setup.php:747 +msgid "

What next?

" +msgstr "

Wie geht es jetzt weiter?

" + +#: ../../Zotlabs/Module/Setup.php:748 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." + +#: ../../Zotlabs/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/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Einträge insgesamt" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Priorität" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "Ziel-URL" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Letzter Kontakt" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "Off" +msgstr "Aus" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "On" +msgstr "An" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Blockiere die Funktion %s" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Zusätzliche Funktionen verwalten" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + +#: ../../Zotlabs/Module/Admin/Plugins.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 +#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3619 +msgid "Item not found." +msgstr "Element nicht gefunden." + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." + +#: ../../Zotlabs/Module/Admin/Plugins.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." + +#: ../../Zotlabs/Module/Admin/Plugins.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "Deaktivieren" + +#: ../../Zotlabs/Module/Admin/Plugins.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "Aktivieren" + +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Administration" +msgstr "Administration" + +#: ../../Zotlabs/Module/Admin/Plugins.php:342 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +#: ../../Zotlabs/Widget/Admin.php:27 +msgid "Plugins" +msgstr "Plug-Ins" + +#: ../../Zotlabs/Module/Admin/Plugins.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "Umschalten" + +#: ../../Zotlabs/Module/Admin/Plugins.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 +#: ../../include/nav.php:192 +msgid "Settings" +msgstr "Einstellungen" + +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "Autor: " + +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +msgid "Minimum project version: " +msgstr "Minimale Version des Projekts:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:354 +msgid "Maximum project version: " +msgstr "Maximale Version des Projekts:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:355 +msgid "Minimum PHP version: " +msgstr "Minimale PHP Version:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:356 +msgid "Compatible Server Roles: " +msgstr "Kompatible Serverrollen: " + +#: ../../Zotlabs/Module/Admin/Plugins.php:357 +msgid "Requires: " +msgstr "Benötigt:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:358 +#: ../../Zotlabs/Module/Admin/Plugins.php:442 +msgid "Disabled - version incompatibility" +msgstr "Abgeschaltet - Versionsinkompatibilität" + +#: ../../Zotlabs/Module/Admin/Plugins.php:411 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." + +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Plugin repo git URL" +msgstr "Plugin-Repository Git URL" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "Custom repo name" +msgstr "Benutzerdefinierter Repository-Name" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "(optional)" +msgstr "(optional)" + +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +msgid "Download Plugin Repo" +msgstr "Plugin-Repository herunterladen" + +#: ../../Zotlabs/Module/Admin/Plugins.php:421 +msgid "Install new repo" +msgstr "Neues Repository installieren" + +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 +msgid "Install" +msgstr "Installieren" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +msgid "Manage Repos" +msgstr "Repositorien verwalten" + +#: ../../Zotlabs/Module/Admin/Plugins.php:446 +msgid "Installed Plugin Repositories" +msgstr "Installierte Plugin-Repositorien" + +#: ../../Zotlabs/Module/Admin/Plugins.php:447 +msgid "Install a New Plugin Repository" +msgstr "Ein neues Plugin-Repository installieren" + +#: ../../Zotlabs/Module/Admin/Plugins.php:454 +msgid "Switch branch" +msgstr "Zweig/Branch wechseln" + +#: ../../Zotlabs/Module/Admin/Plugins.php:455 +#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" +msgstr "Entfernen" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "Konto nicht gefunden" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konto '%s' gelöscht" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "Konten" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "Alle auswählen" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "Registrierungen warten auf Bestätigung" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "Antragsdatum" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "Keine Registrierungen." + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 +msgid "Approve" +msgstr "Genehmigen" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:26 +msgid "Deny" +msgstr "Verweigern" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "Blockieren" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Unblock" +msgstr "Freigeben" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 +msgid "All Channels" +msgstr "Alle Kanäle" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "Registrierungs-Datum" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "Verfällt" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "Service-Klasse" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "Protokolle" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Leeren" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debugging" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Protokolldatei" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Protokollstufe" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code für %s Kanal gesperrt/freigegeben" +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "Kanäle" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Sperren" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "Freigeben" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Code erlauben" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Code sperren" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1811 ../../include/nav.php:378 +msgid "Channel" +msgstr "Kanal" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "Design-Einstellungen aktualisiert." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "Keine Designs gefunden." + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "Designs" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: ../../Zotlabs/Module/Admin/Site.php:165 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." + +#: ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 +msgid "Default" +msgstr "Standard" + +#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (Inkompatibel)" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "mobile" +msgstr "mobil" + +#: ../../Zotlabs/Module/Admin/Site.php:211 +msgid "experimental" +msgstr "experimentell" + +#: ../../Zotlabs/Module/Admin/Site.php:213 +msgid "unsupported" +msgstr "nicht unterstützt" + +#: ../../Zotlabs/Module/Admin/Site.php:260 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" + +#: ../../Zotlabs/Module/Admin/Site.php:266 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "My site has paid access only" +msgstr "Meine Seite hat nur bezahlten Zugriff" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "My site has free access only" +msgstr "Meine Seite hat nur freien Zugriff" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +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/Site.php:281 +msgid "Beginner/Basic" +msgstr "Anfänger/Basis" + +#: ../../Zotlabs/Module/Admin/Site.php:282 +msgid "Novice - not skilled but willing to learn" +msgstr "Anfänger - unerfahren, aber bereit zu lernen" + +#: ../../Zotlabs/Module/Admin/Site.php:283 +msgid "Intermediate - somewhat comfortable" +msgstr "Fortgeschritten - relativ komfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Advanced - very comfortable" +msgstr "Fortgeschritten - sehr komfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Expert - I can write computer code" +msgstr "Experte - Ich kann Computercode schreiben" + +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "Wizard - I probably know more than you do" +msgstr "Zauberer - ich kann wahrscheinlich mehr als Du" + +#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "Seite" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Register.php:269 +msgid "Registration" +msgstr "Registrierung" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "File upload" +msgstr "Dateiupload" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Policies" +msgstr "Richtlinien" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../addon/statusnet/statusnet.php:891 +msgid "Site name" +msgstr "Seitenname" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Site default technical skill level" +msgstr "Standard-Qualifikationsstufe der Website" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten." + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Lock the technical skill level setting" +msgstr "Sperre die technische Qualifikationsstufe" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Members can set their own technical comfort level by default" +msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Ungefiltertes HTML/CSS/JS ist erlaubt" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Administrator Information" +msgstr "Administrator-Informationen" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." + +#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Information" +msgstr "Seiteninformationen" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden." + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "System language" +msgstr "System-Sprache" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "System theme" +msgstr "System-Design" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Invitation only" +msgstr "Nur mit Einladung" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age" +msgstr "Mindestalter" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten." + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Register text" +msgstr "Registrierungstext" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Import Public Streams" +msgstr "Öffentliche Beiträge importieren" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Site only Public Streams" +msgstr "Öffentlichen Beitragsstrom auf diesen Server beschränken" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Login on Homepage" +msgstr "Log-in auf der Startseite" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Enable context help" +msgstr "Kontext-Hilfe aktivieren" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Reply-to email address for system generated email." +msgstr "Antwortadresse (reply-to) für Emails, die vom System generiert wurden." + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Sender (From) email address for system generated email." +msgstr "Absenderadresse (from) für Emails, die vom System generiert wurden." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Name of email sender for system generated email." +msgstr "Name des Versenders von Emails, die vom System generiert wurden." + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Directory Server URL" +msgstr "Verzeichnisserver-URL" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Default directory server" +msgstr "Standard-Verzeichnisserver" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Proxy user" +msgstr "Proxy Benutzer" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Queue Threshold" +msgstr "Warteschlangen-Grenzwert" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält." + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "Path to ImageMagick convert program" +msgstr "Pfad zum ImageMagick-Programm convert" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Allow SVG thumbnails in file browser" +msgstr "Erlaube SVG-Vorschaubilder im Dateibrowser" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "WARNING: SVG images may contain malicious code." +msgstr "Warnung: SVG-Grafiken können Schadcode enthalten." + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" + +#: ../../Zotlabs/Module/Admin/Site.php:353 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "Lass keine Beiträge verfallen die Kommentare haben, die jünger als diese Anzahl von Tagen sind." + +#: ../../Zotlabs/Module/Admin/Site.php:355 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung" + +#: ../../Zotlabs/Module/Admin/Site.php:355 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Erstelle zunächst die entsprechende Seite. Standard ist %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Page to display after creating a new channel" +msgstr "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Recommend: profiles, go, or settings" +msgstr "Empfohlen: profiles, go oder settings" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Optional: site location" +msgstr "Optional: Standort der Website" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Region or country" +msgstr "Region oder Land" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Neues Profilfeld" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Kurzname für das Feld" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "Systemname des Feldes" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Art des Inhalts" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Feldname" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Hilfetext" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 +msgid "Save" +msgstr "Speichern" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "Profil Felder" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Notwendige Profil Felder" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Erweiterte Profil Felder" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "(zusätzlich zu notwendige Felder)" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Alle verfügbaren Felder" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "Benutzerdefinierte Felder" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Erstelle benutzerdefiniertes Feld" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "Passwort für Konto %d geändert." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "Kontoeinstellungen aktualisiert." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "Konto nicht gefunden." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Kontobearbeitung" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Neues Passwort" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Neues Passwort wiederholen" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Technische Qualifikationsstufe" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Kontosprache (für E-Mails)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Dienstklasse" + +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." + +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" + +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" + +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." + +#: ../../Zotlabs/Module/Admin/Security.php:87 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "Sicherheit" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." + +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Setze den \"Transport Security\" HTTP Header" + +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Setze den \"Content Security Policy\" HTTP Header" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Kommunikation nur von diesen Servern/Domains erlauben" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Kommunikation von diesen Servern/Domains blockieren" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Kommunikation nur von diesen Kanälen erlauben" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Kommunikation von folgenden Kanälen blockieren" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Eingebettete HTML Inhalte von diesen Servern/Domains blockieren" + +#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "Kommentar bestätigt" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "Kommentar gelöscht" + +#: ../../Zotlabs/Module/Settings/Permcats.php:23 +msgid "Permission Name is required." +msgstr "Der Name der Berechtigung wird benötigt." + +#: ../../Zotlabs/Module/Settings/Permcats.php:42 +msgid "Permission category saved." +msgstr "Berechtigungsrolle gespeichert." + +#: ../../Zotlabs/Module/Settings/Permcats.php:66 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Verwende dieses Formular, um Berechtigungsrollen für verschiedene Gruppen von Personen oder Verbindungen zu erstellen." + +#: ../../Zotlabs/Module/Settings/Permcats.php:99 +msgid "Permission Categories" +msgstr "Berechtigungsrollen" + +#: ../../Zotlabs/Module/Settings/Permcats.php:107 +msgid "Permission Name" +msgstr "Name der Berechtigungsrolle" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +msgid "My Settings" +msgstr "Meine Einstellungen" + +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +msgid "inherited" +msgstr "geerbt" + +#: ../../Zotlabs/Module/Settings/Permcats.php:113 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" + +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:894 +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 "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/Settings/Channel.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:83 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:437 +#: ../../include/channel.php:438 ../../include/channel.php:445 +msgid "Friends" +msgstr "Freunde" + +#: ../../Zotlabs/Module/Settings/Channel.php:264 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../Zotlabs/Module/Settings/Channel.php:325 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" + +#: ../../Zotlabs/Module/Settings/Channel.php:326 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Any connections" +msgstr "Beliebige Verbindungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Anybody in this network" +msgstr "Alle $Projectname-Mitglieder" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" + +#: ../../Zotlabs/Module/Settings/Channel.php:407 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" + +#: ../../Zotlabs/Module/Settings/Channel.php:412 +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/Channel.php:416 +msgid "or" +msgstr "oder" + +#: ../../Zotlabs/Module/Settings/Channel.php:425 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" + +#: ../../Zotlabs/Module/Settings/Channel.php:428 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "Deine Dateien/Fotos sind via WebDAV verfügbar auf" + +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +#: ../../include/channel.php:1521 +msgid "Full Name:" +msgstr "Voller Name:" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Email Adresse:" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +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/Channel.php:509 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +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/Channel.php:513 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" + +#: ../../Zotlabs/Module/Settings/Channel.php:517 +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/Channel.php:518 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +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/Channel.php:523 +msgid "Channel Permission Limits" +msgstr "Kanal-Berechtigungslimits" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +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/Channel.php:525 +#, php-format +msgid "This website expires after %d days." +msgstr "Diese Webseite läuft nach %d Tagen ab." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "This website does not expire imported content." +msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +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/Channel.php:526 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Default Privacy Group" +msgstr "Standard-Gruppe" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "Use my default audience setting for the type of object published" +msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" + +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Profile to assign new connections" +msgstr "Profil, welches neuen Verbindungen zugewiesen wird" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default Permissions Group" +msgstr "Standard-Berechtigungsgruppe" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" + +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 +msgid "Someone likes your post/comment" +msgstr "Jemand mag Ihren Beitrag/Kommentar" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Unseen grid activity" +msgstr "Ungesehene Netzwerk-Aktivität" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "Empfohlen" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Upcoming events" +msgstr "Baldige Termine" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "Events today" +msgstr "Heutige Termine" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Not available in all themes" +msgstr "Nicht in allen Designs verfügbar" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "System info messages" +msgstr "System – Info-Nachrichten" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "New connections" +msgstr "Neue Verbindungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "System Registrations" +msgstr "System – Registrierungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Unseen shared files" +msgstr "Ungesehene geteilte Dateien" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Unseen public activity" +msgstr "Ungesehene öffentliche Aktivität" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Unseen likes and dislikes" +msgstr "Ungesehene Likes und Dislikes" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Email notification hub (hostname)" +msgstr "Hub für E-Mail-Benachrichtigungen (Hostname)" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s" + +#: ../../Zotlabs/Module/Settings/Channel.php:584 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "Zeige neue Pinnwand Beiträge, private Nachrichten und Verbindungen unter den Notizen an." + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konten- und Seitenart-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Kontos unter speziellen Umständen" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "%Y - current year, %m - current month" +msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-Provider für Firefox Share" + +#: ../../Zotlabs/Module/Settings/Channel.php:603 +msgid "Start calendar week on Monday" +msgstr "Beginne die kalendarische Woche am Montag" + +#: ../../Zotlabs/Module/Settings/Features.php:73 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "Deine technische Qualifikationsstufe" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)." + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dieser Kanal ist auf %d Token begrenzt" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Name und Passwort sind erforderlich." + +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token gespeichert." + +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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 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/Tokens.php:115 +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/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:100 +msgid "Guest Access Tokens" +msgstr "Gastzugangstoken" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Anmeldename" + +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Anmeldepasswort" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Läuft ab (jjjj-mm-tt)" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "Their Settings" +msgstr "Deren Einstellungen" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:35 +msgid "Name and Secret are required" +msgstr "Name und Geheimnis werden benötigt" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:83 +msgid "Add OAuth2 application" +msgstr "OAuth2 Anwendung hinzufügen" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +msgid "Name of application" +msgstr "Name der Anwendung" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Redirect" +msgstr "Umleitung" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +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/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +msgid "Grant Types" +msgstr "Genehmigungsarten" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "leave blank unless your application sepcifically requires this" +msgstr "Frei lassen, es sei denn die Anwendung verlangt dies." + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "Authorization scope" +msgstr "Rahmen der Berechtigungen" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:102 +msgid "OAuth2 Application not found." +msgstr "OAuth2 Anwendung konnte nicht gefunden werden" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:111 +#: ../../Zotlabs/Module/Settings/Oauth2.php:148 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +msgid "Add application" +msgstr "Anwendung hinzufügen" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:147 +msgid "Connected OAuth2 Apps" +msgstr "Verbundene OAuth2 Anwendungen" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:151 +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:152 +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "No name" +msgstr "Kein Name" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:153 +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." + +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." + +#: ../../Zotlabs/Module/Settings/Account.php:32 +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/Account.php:40 +msgid "Technical skill level updated" +msgstr "Technische Qualifikationsstufe aktualisiert" + +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Passwortüberprüfung fehlgeschlagen." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." + +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." + +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Kennwort geändert." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." + +#: ../../Zotlabs/Module/Settings/Account.php:112 +msgid "Account Settings" +msgstr "Konto-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Aktuelles Passwort" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Gib ein neues Passwort ein" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Bestätige das neue Passwort" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" + +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Konto entfernen" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert." + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "Voreinstellung für maximalen Beziehungsgrad" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 - Standard 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "Voreinstellung für minimalen Beziehungsgrad" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - Standard 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "Beziehungsgrad-Schieberegler-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Featured.php:67 +msgid "Addon Settings" +msgstr "Addon-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Featured.php:68 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest." + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Design-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Design-Einstellungen" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Anzeige-Design:" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Schema wählen" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +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/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "Kanal-Menü in der Navigationsleiste zur Verfügung stellen" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "Voreinstellung: Kanal-Menü ist im App-Menü integriert" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "Manuelle Konversationsaktualisierung" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen." + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on grid page" +msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +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/Display.php:213 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" + +#: ../../Zotlabs/Module/Settings/Oauth.php:35 +msgid "Name is required" +msgstr "Name ist erforderlich" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "Symbol-URL" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Optional" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "Die Anwendung wurde nicht gefunden." + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "Verbundene Apps" + +#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "Foto ansehen" + +#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Photos.php:712 +#: ../../Zotlabs/Module/Profile_photo.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:362 +#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 +#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "Hochladen" + +#: ../../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/Thing.php:120 +msgid "Thing updated" +msgstr "Sache aktualisiert" + +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" + +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" +msgstr "Sache hinzugefügt" + +#: ../../Zotlabs/Module/Thing.php:202 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" +msgstr "Sache anzeigen" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." +msgstr "Eintrag nicht gefunden" + +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" +msgstr "Sache bearbeiten" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" +msgstr "Wähle ein Profil" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" + +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" + +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" + +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:147 +#: ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:57 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." + +#: ../../Zotlabs/Module/Notify.php:65 +#: ../../Zotlabs/Module/Notifications.php:61 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "Verbindung hinzugefügt" + +#: ../../Zotlabs/Module/Import.php:144 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Dein Vertrag erlaubt nur %d Kanäle." + +#: ../../Zotlabs/Module/Import.php:158 +msgid "No channel. Import failed." +msgstr "Kein Kanal. Import fehlgeschlagen." + +#: ../../Zotlabs/Module/Import.php:482 +#: ../../addon/diaspora/import_diaspora.php:139 +msgid "Import completed." +msgstr "Import abgeschlossen." + +#: ../../Zotlabs/Module/Import.php:510 +msgid "You must be logged in to use this feature." +msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." + +#: ../../Zotlabs/Module/Import.php:515 +msgid "Import Channel" +msgstr "Kanal importieren" + +#: ../../Zotlabs/Module/Import.php:516 +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/Import.php:518 +msgid "Or provide the old server/hub details" +msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" + +#: ../../Zotlabs/Module/Import.php:519 +msgid "Your old identity address (xyz@example.com)" +msgstr "Bisherige Kanal-Adresse (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:520 +msgid "Your old login email address" +msgstr "Deine alte Login-E-Mail-Adresse" + +#: ../../Zotlabs/Module/Import.php:521 +msgid "Your old login password" +msgstr "Dein altes Passwort" + +#: ../../Zotlabs/Module/Import.php:522 +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/Import.php:523 +msgid "Make this hub my primary location" +msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." + +#: ../../Zotlabs/Module/Import.php:524 +msgid "Move this channel (disable all previous locations)" +msgstr "Verschiebe diesen Kanal (deaktiviere alle vorherigen Adressen/Klone)" + +#: ../../Zotlabs/Module/Import.php:525 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Importiere die Beiträge einiger Monate, sofern möglich (beschränkt durch verfügbaren Speicher)" + +#: ../../Zotlabs/Module/Import.php:526 +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/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 +#: ../../include/channel.php:2318 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" + +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2320 +msgid "Authenticate" +msgstr "Authentifizieren" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." + +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 +msgid "Import" +msgstr "Import" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Element nicht verfügbar." + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Block bearbeiten" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "VCard" + +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 +msgid "Apps" +msgstr "Apps" + +#: ../../Zotlabs/Module/Apps.php:51 +msgid "Manage apps" +msgstr "Apps verwalten" + +#: ../../Zotlabs/Module/Apps.php:52 +msgid "Create new app" +msgstr "Neue App erstellen" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 +#, 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:253 +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/Connections.php:55 +#: ../../Zotlabs/Module/Connections.php:112 +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Active" +msgstr "Aktiv" + +#: ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Blocked" +msgstr "Blockiert" + +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Ignored" +msgstr "Ignoriert" + +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:185 +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Hidden" +msgstr "Versteckt" + +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Archived/Unreachable" +msgstr "Archiviert/Unerreichbar" + +#: ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 +#: ../../Zotlabs/Module/Notifications.php:52 +#: ../../include/conversation.php:1717 +msgid "New" +msgstr "Neu" + +#: ../../Zotlabs/Module/Connections.php:94 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 +msgid "All" +msgstr "Alle" + +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" +msgstr "Aktive Verbindungen" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" +msgstr "Zeige die aktiven Verbindungen an" + +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "Neue Verbindungen" + +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:174 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show archived/unreachable connections" +msgstr "Nur archivierte/unerreichbare Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:188 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:203 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:257 +msgid "Pending approval" +msgstr "Wartet auf Genehmigung" + +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Archived" +msgstr "Archiviert" + +#: ../../Zotlabs/Module/Connections.php:262 +msgid "Not connected at this location" +msgstr "An diesem Ort nicht verbunden" + +#: ../../Zotlabs/Module/Connections.php:279 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" + +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Delete connection" +msgstr "Verbindung löschen" + +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Channel address" +msgstr "Kanaladresse" + +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Network" +msgstr "Netzwerk" + +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Call" +msgstr "Anruf" + +#: ../../Zotlabs/Module/Connections.php:298 +msgid "Status" +msgstr "Status" + +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Connected" +msgstr "Verbunden" + +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Approve connection" +msgstr "Verbindung genehmigen" + +#: ../../Zotlabs/Module/Connections.php:304 +msgid "Ignore connection" +msgstr "Verbindung ignorieren" + +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../Zotlabs/Module/Connections.php:306 +msgid "Recent activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" + +#: ../../Zotlabs/Module/Connections.php:337 +msgid "Connections search" +msgstr "Verbindung suchen" + +#: ../../Zotlabs/Module/Connections.php:338 +#: ../../Zotlabs/Module/Directory.php:401 +#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Finde" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "Beitrag" + +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" +msgstr "Quelle des Elements" + +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" + +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Dieses Konto löschen" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +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 +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/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../Zotlabs/Module/Photos.php:551 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" + +#: ../../Zotlabs/Module/Photos.php:600 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." + +#: ../../Zotlabs/Module/Photos.php:646 +#, 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:649 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." + +#: ../../Zotlabs/Module/Photos.php:691 +msgid "Upload Photos" +msgstr "Fotos hochladen" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" + +#: ../../Zotlabs/Module/Photos.php:696 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" + +#: ../../Zotlabs/Module/Photos.php:699 +msgid "Description (optional)" +msgstr "Beschreibung (optional)" + +#: ../../Zotlabs/Module/Photos.php:785 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:787 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" + +#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 +msgid "Add Photos" +msgstr "Fotos hinzufügen" + +#: ../../Zotlabs/Module/Photos.php:892 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." + +#: ../../Zotlabs/Module/Photos.php:894 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../Zotlabs/Module/Photos.php:952 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" + +#: ../../Zotlabs/Module/Photos.php:960 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../Zotlabs/Module/Photos.php:975 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" + +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../Zotlabs/Module/Photos.php:1059 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" + +#: ../../Zotlabs/Module/Photos.php:1060 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" + +#: ../../Zotlabs/Module/Photos.php:1063 +msgid "Move photo to album" +msgstr "Foto in Album verschieben" + +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" + +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" + +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" + +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" + +#: ../../Zotlabs/Module/Photos.php:1081 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" + +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" + +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 +#: ../../include/conversation.php:785 +msgid "Please wait" +msgstr "Bitte warten" + +#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:749 +msgid "This is you" +msgstr "Das bist Du" + +#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" + +#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 +#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "View all" +msgstr "Alles anzeigen" + +#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 +#: ../../include/conversation.php:1981 ../../include/channel.php:1539 +#: ../../include/taxonomy.php:661 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 +#: ../../include/conversation.php:1984 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1265 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" + +#: ../../Zotlabs/Module/Photos.php:1274 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" + +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "Map" +msgstr "Karte" + +#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" + +#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "Schließen" + +#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 +#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 +msgid "Profile Unavailable." +msgstr "Profil nicht verfügbar." + +#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 +msgid "Not found" +msgstr "Nicht gefunden" + +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 +#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 +msgid "Invalid channel" +msgstr "Ungültiger Kanal" + +#: ../../Zotlabs/Module/Wiki.php:124 +msgid "Error retrieving wiki" +msgstr "Fehler beim Abrufen des Wiki" + +#: ../../Zotlabs/Module/Wiki.php:131 +msgid "Error creating zip file export folder" +msgstr "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses " + +#: ../../Zotlabs/Module/Wiki.php:182 +msgid "Error downloading wiki: " +msgstr "Fehler beim Herunterladen des Wiki:" + +#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 +#: ../../include/nav.php:494 +msgid "Wikis" +msgstr "Wikis" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Download" +msgstr "Herunterladen" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 +msgid "Create New" +msgstr "Neu anlegen" + +#: ../../Zotlabs/Module/Wiki.php:207 +msgid "Wiki name" +msgstr "Name des Wiki" + +#: ../../Zotlabs/Module/Wiki.php:208 +msgid "Content type" +msgstr "Inhaltstyp" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1869 +msgid "Markdown" +msgstr "Markdown" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 +msgid "BBcode" +msgstr "BBcode" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 +msgid "Text" +msgstr "Text" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 +msgid "Type" +msgstr "Typ" + +#: ../../Zotlabs/Module/Wiki.php:211 +msgid "Any type" +msgstr "Alle Arten" + +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "Inhaltstyp sperren" + +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Create a status post for this wiki" +msgstr "Erzeuge einen Statusbeitrag für dieses Wiki" + +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "Wiki-Namen bearbeiten" + +#: ../../Zotlabs/Module/Wiki.php:262 +msgid "Wiki not found" +msgstr "Wiki nicht gefunden" + +#: ../../Zotlabs/Module/Wiki.php:286 +msgid "Rename page" +msgstr "Seite umbenennen" + +#: ../../Zotlabs/Module/Wiki.php:307 +msgid "Error retrieving page content" +msgstr "Fehler beim Abrufen des Seiteninhalts" + +#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +msgid "New page" +msgstr "Neue Seite" + +#: ../../Zotlabs/Module/Wiki.php:345 +msgid "Revision Comparison" +msgstr "Revisionsvergleich" + +#: ../../Zotlabs/Module/Wiki.php:346 +msgid "Revert" +msgstr "Rückgängig machen" + +#: ../../Zotlabs/Module/Wiki.php:353 +msgid "Short description of your changes (optional)" +msgstr "Kurze Beschreibung Ihrer Änderungen (optional)" + +#: ../../Zotlabs/Module/Wiki.php:362 +msgid "Source" +msgstr "Quelle" + +#: ../../Zotlabs/Module/Wiki.php:372 +msgid "New page name" +msgstr "Neuer Seitenname" + +#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 +msgid "Embed image from photo albums" +msgstr "Bild aus Fotoalben einbetten" + +#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 +msgid "Embed an image from your albums" +msgstr "Betten Sie ein Bild aus Ihren Alben ein" + +#: ../../Zotlabs/Module/Wiki.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 +msgid "OK" +msgstr "Ok" + +#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:368 +#: ../../include/conversation.php:1320 +msgid "Choose images to embed" +msgstr "Wählen Sie Bilder zum Einbetten aus" + +#: ../../Zotlabs/Module/Wiki.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +#: ../../include/conversation.php:1321 +msgid "Choose an album" +msgstr "Wählen Sie ein Album aus" + +#: ../../Zotlabs/Module/Wiki.php:383 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:370 +msgid "Choose a different album" +msgstr "Wählen Sie ein anderes Album aus" + +#: ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:371 +#: ../../include/conversation.php:1323 +msgid "Error getting album list" +msgstr "Fehler beim Holen der Albenliste" + +#: ../../Zotlabs/Module/Wiki.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:372 +#: ../../include/conversation.php:1324 +msgid "Error getting photo link" +msgstr "Fehler beim Holen des Fotolinks" + +#: ../../Zotlabs/Module/Wiki.php:386 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:373 +#: ../../include/conversation.php:1325 +msgid "Error getting album" +msgstr "Fehler beim Holen des Albums" + +#: ../../Zotlabs/Module/Wiki.php:462 +msgid "Error creating wiki. Invalid name." +msgstr "Fehler beim Erstellen des Wiki. Ungültiger Name." + +#: ../../Zotlabs/Module/Wiki.php:469 +msgid "A wiki with this name already exists." +msgstr "Es existiert bereits ein Wiki mit diesem Namen." + +#: ../../Zotlabs/Module/Wiki.php:482 +msgid "Wiki created, but error creating Home page." +msgstr "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite" + +#: ../../Zotlabs/Module/Wiki.php:489 +msgid "Error creating wiki" +msgstr "Fehler beim Erstellen des Wiki" + +#: ../../Zotlabs/Module/Wiki.php:512 +msgid "Error updating wiki. Invalid name." +msgstr "Fehler beim Aktualisieren des Wikis. Ungültiger Name." + +#: ../../Zotlabs/Module/Wiki.php:532 +msgid "Error updating wiki" +msgstr "Fehler beim Aktualisieren des Wikis" + +#: ../../Zotlabs/Module/Wiki.php:547 +msgid "Wiki delete permission denied." +msgstr "Wiki-Löschberechtigung verweigert." + +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error deleting wiki" +msgstr "Fehler beim Löschen des Wiki" + +#: ../../Zotlabs/Module/Wiki.php:590 +msgid "New page created" +msgstr "Neue Seite erstellt" + +#: ../../Zotlabs/Module/Wiki.php:711 +msgid "Cannot delete Home" +msgstr "Kann die Startseite nicht löschen" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Current Revision" +msgstr "Aktuelle Revision" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Selected Revision" +msgstr "Ausgewählte Revision" + +#: ../../Zotlabs/Module/Wiki.php:825 +msgid "You must be authenticated." +msgstr "Sie müssen authenzifiziert sein." + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "auf Vollbildmodus umschalten" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aktualisiert." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." + +#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" + +#: ../../Zotlabs/Module/Pdledit.php:68 +msgid "(modified)" +msgstr "(geändert)" + +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../Zotlabs/Module/Pdledit.php:85 +msgid "Layout not found." +msgstr "Layout nicht gefunden." + +#: ../../Zotlabs/Module/Pdledit.php:91 +msgid "Module Name:" +msgstr "Modulname:" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Layout-Hilfe" + +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Edit another layout" +msgstr "Ein weiteres Layout bearbeiten" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "System layout" +msgstr "System-Layout" + +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 +#: ../../include/conversation.php:1092 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "Empfänger" + +#: ../../Zotlabs/Module/Poke.php:195 +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:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." + +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +#: ../../include/photo/photo_driver.php:741 +msgid "Profile Photos" +msgstr "Profilfotos" + +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." + +#: ../../Zotlabs/Module/Profile_photo.php:218 +#: ../../addon/openclipatar/openclipatar.php:298 +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:225 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../Zotlabs/Module/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." + +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." + +#: ../../Zotlabs/Module/Profile_photo.php:455 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:360 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Use Photo for Profile" +msgstr "Foto für Profil verwenden" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use" +msgstr "Verwenden" + +#: ../../Zotlabs/Module/Profile_photo.php:462 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:364 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "Use a photo from your albums" +msgstr "Ein Foto aus meinen Alben verwenden" + +#: ../../Zotlabs/Module/Profile_photo.php:473 +#: ../../Zotlabs/Module/Cover_photo.php:376 +msgid "Select existing photo" +msgstr "Wähle ein vorhandenes Foto aus" + +#: ../../Zotlabs/Module/Profile_photo.php:492 +#: ../../Zotlabs/Module/Cover_photo.php:393 +msgid "Crop Image" +msgstr "Bild zuschneiden" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:394 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." + +#: ../../Zotlabs/Module/Profile_photo.php:495 +#: ../../Zotlabs/Module/Cover_photo.php:396 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Abwesend" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "Online" + +#: ../../Zotlabs/Module/Item.php:194 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." + +#: ../../Zotlabs/Module/Item.php:477 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." + +#: ../../Zotlabs/Module/Item.php:874 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." + +#: ../../Zotlabs/Module/Item.php:1019 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." + +#: ../../Zotlabs/Module/Item.php:1055 +msgid "Your comment is awaiting approval." +msgstr "Dein Kommentar muss noch bestätigt werden." + +#: ../../Zotlabs/Module/Item.php:1160 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." + +#: ../../Zotlabs/Module/Item.php:1189 +#, 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:1196 +#, 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/Ping.php:330 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" + +#: ../../Zotlabs/Module/Ping.php:383 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" + +#: ../../Zotlabs/Module/Ping.php:407 +msgid "requires approval" +msgstr "Zustimmung erforderlich" + +#: ../../Zotlabs/Module/Ping.php:417 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" + +#: ../../Zotlabs/Module/Ping.php:435 +msgid "[today]" +msgstr "[Heute]" + +#: ../../Zotlabs/Module/Ping.php:444 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" + +#: ../../Zotlabs/Module/Ping.php:477 +msgid "shared a file with you" +msgstr "hat eine Datei mit Dir geteilt" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "Ungültiges Element." + +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 +#: ../../Zotlabs/Module/Display.php:175 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 +#: ../../include/help.php:81 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../Zotlabs/Module/Page.php:173 +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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." + +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" + +#: ../../Zotlabs/Module/Connedit.php:427 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." + +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." + +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." + +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 +msgid "View Profile" +msgstr "Profil ansehen" + +#: ../../Zotlabs/Module/Connedit.php:597 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" + +#: ../../Zotlabs/Module/Connedit.php:601 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abrufen" + +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "Foto aktualisieren" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "Aktualisiertes Profilfoto abrufen" + +#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Nicht ignorieren" + +#: ../../Zotlabs/Module/Connedit.php:633 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" + +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Archive" +msgstr "Archivieren" + +#: ../../Zotlabs/Module/Connedit.php:641 +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:642 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Unhide" +msgstr "Wieder sichtbar machen" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Hide" +msgstr "Verstecken" + +#: ../../Zotlabs/Module/Connedit.php:649 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" + +#: ../../Zotlabs/Module/Connedit.php:650 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" + +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Delete this connection" +msgstr "Verbindung löschen" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "Vcard abrufen" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "Rufe eine digitale Visitenkarte für diese Verbindung ab" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "Öffne standardmäßig den Bereich für individuelle Berechtigungen" + +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "Beziehung" + +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen" + +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +msgid "Me" +msgstr "Ich" + +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +msgid "Family" +msgstr "Familie" + +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +msgid "Acquaintances" +msgstr "Bekannte" + +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "Filter" + +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "Öffne standardmäßig den Bereich für benutzerdefinierte Filter" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" + +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Beziehung festlegen" + +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Profil festlegen" + +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" + +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "Diese Verbindung ist von diesem Ort unerreichbar." + +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein." + +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." + +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." + +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" + +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" + +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" + +#: ../../Zotlabs/Module/Connedit.php:851 +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:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "Berechtigungsrolle" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Lädt..." + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "Berechtigungsrolle hinzufügen" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "Die Hauptadresse der Verbindung ist" + +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Verfügbare Klone:" + +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +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:867 +msgid "Connection Tools" +msgstr "Verbindungswerkzeuge" + +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Bewertung" + +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um Deine Bewertung einzustellen" + +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Optional kannst Du Deine Bewertung begründen" + +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" + +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "Nur Beiträge mit diesem Text importieren" + +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +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:876 +msgid "Do not import posts with this text" +msgstr "Beiträge mit diesem Text nicht importieren" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" + +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" + +#: ../../Zotlabs/Module/Connedit.php:888 +#, 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:895 +msgid "" +"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." +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:896 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" + +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "Details" + +#: ../../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:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 +#: ../../include/conversation.php:1435 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../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:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Verfall" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1834 ../../include/nav.php:401 +msgid "Photos" +msgstr "Fotos" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 +#: ../../include/nav.php:409 +msgid "Files" +msgstr "Dateien" + +#: ../../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:2423 +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: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/Layouts.php:184 ../../include/text.php:2424 +msgid "Layouts" +msgstr "Layouts" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 +#: ../../include/help.php:68 ../../include/help.php:74 +msgid "Help" +msgstr "Hilfe" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Layout-Beschreibung" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" + +#: ../../Zotlabs/Module/Cloud.php:120 +msgid "Please refresh page" +msgstr "Bitte die Seite neu laden" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Unknown error" +msgstr "Unbekannter Fehler" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Überprüfung des Verifizierungscodes fehlgeschlagen." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Email-Überprüfung erforderlich" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Email erneut versenden" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Verifizierungscode" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "Beitrag nicht gefunden." + +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 +#: ../../include/bbcode.php:352 +msgid "post" +msgstr "Beitrag" + +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2013 +msgid "comment" +msgstr "Kommentar" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" + +#: ../../Zotlabs/Module/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/Defperms.php:239 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Ist dies aktiviert, werden Verbindungsanfragen ohne Deine aktive Zustimmung bestätigt." + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "Einstellungen für automatische Bestätigung" + +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "Einige individuelle Berechtigungen können basierend auf Deinen Kanal- und Privatsphäre-Einstellungen vorbelegt oder gesperrt sein." + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "Unbekannte Anwendung" + +#: ../../Zotlabs/Module/Authorize.php:22 +msgid "Authorize" +msgstr "Berechtigen" + +#: ../../Zotlabs/Module/Authorize.php:23 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "Willst du die Anwendung %s dazu berechtigen auf die Daten deines Kanals zuzugreifen?" + +#: ../../Zotlabs/Module/Authorize.php:25 +msgid "Allow" +msgstr "Erlauben" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppe wurde erstellt." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Gruppe konnte nicht erstellt werden." + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 +#: ../../include/items.php:4181 +msgid "Privacy group not found." +msgstr "Gruppe nicht gefunden." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppe wurde aktualisiert." + +#: ../../Zotlabs/Module/Group.php:92 +msgid "Create a group of channels." +msgstr "Erstelle eine Gruppe für Kanäle." + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 +msgid "Privacy group name: " +msgstr "Gruppenname:" + +#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +msgid "Members are visible to other channels" +msgstr "Mitglieder sind sichtbar für andere Kanäle" + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Privacy group removed." +msgstr "Gruppe wurde entfernt." + +#: ../../Zotlabs/Module/Group.php:115 +msgid "Unable to remove privacy group." +msgstr "Gruppe konnte nicht entfernt werden." + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Privacy group editor" +msgstr "Gruppeneditor" + +#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "Mitglieder" + +#: ../../Zotlabs/Module/Group.php:201 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" + +#: ../../Zotlabs/Module/Group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Profil nicht gefunden." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Profil-" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "Neues Profil erstellt." + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Profil kann nicht geklont werden." + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Dieses Profil kann nicht exportiert werden." + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Profil-Name erforderlich." + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "Familienstand" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Romantische Partner" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "Gefällt" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "Gefällt nicht" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "Arbeit/Anstellung" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Religion" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Sexuelle Orientierung" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Webseite" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Hobbys/Interessen" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "Deine Verbindungen vor Betrachtern dieses Profils verbergen" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "Bearbeite Profil-Details" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "Dieses Profil ansehen" + +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 +#: ../../include/channel.php:1319 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "Profilwerkzeuge" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "Titelbild ändern" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 +msgid "Change profile photo" +msgstr "Profilfoto ändern" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "Dieses Profil klonen" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "Sachen zum Profil hinzufügen" + +#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 +msgid "Personal" +msgstr "Persönlich" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "Beziehung" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "Profil aus einer Datei importieren" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "Profil in eine Datei exportieren" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "Dein Geschlecht" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "Familienstand" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "Sexuelle Orientierung" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "Profilname" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "Das ist Dein Standardprofil." + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "Dein voller Name" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "Titel/Beschreibung" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "Straße und Hausnummer" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "Wohnort" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "Region/Bundesstaat" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "Postleitzahl" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "Wer (falls anwendbar)" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "Seit (Datum)" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "Erzähle uns ein wenig von Dir" + +#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "Homepage-URL" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "Heimatort" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "Politische Ansichten" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "Religiöse Ansichten" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "Schlüsselwörter, die in Verzeichnis-Auflistungen verwendet werden" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "Beispiel: Angeln Fotografie Software" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "Fernsehen" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/Tanz/Kultur/Unterhaltung" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "Hobbys/Interessen" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "Liebe/Romantik" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "Schule/Ausbildung" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "Kontaktinformation und soziale Netzwerke" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "Meine anderen Kanäle" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "Kommunikation" + +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 +msgid "Profile Image" +msgstr "Profilfoto:" + +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 +#: ../../include/nav.php:117 +msgid "Edit Profiles" +msgstr "Profile bearbeiten" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Diese Seite ist nur für Mitglieder verfügbar" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Willkommen" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Was möchtest Du gerne tun?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Ein Profilfoto hochladen" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Ein Titelbild hochladen" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Dein Standardprofil bearbeiten" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 +msgid "View friend suggestions" +msgstr "Freundschafts- und Verbindungsvorschläge ansehen" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "Das Kanalverzeichnis ansehen" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Deine Kanaleinstellungen ansehen/bearbeiten" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Die Website-/Projektdokumentation ansehen" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Deine Kanal-Startseite aufrufen" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Seiten-Link" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Channel Manager" +msgstr "Kanal-Manager" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Aktueller Kanal" + +#: ../../Zotlabs/Module/Manage.php:173 +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:174 +msgid "Default Channel" +msgstr "Standard Kanal" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Zum Standard machen" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" + +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 +#: ../../include/features.php:123 ../../include/nav.php:458 +msgid "Cards" +msgstr "Karten" + +#: ../../Zotlabs/Module/Cards.php:99 +msgid "Add Card" +msgstr "Karte hinzufügen" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" + +#: ../../Zotlabs/Module/Siteinfo.php:18 +msgid "About this site" +msgstr "Über diese Seite" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +msgid "Site Name" +msgstr "Seitenname" + +#: ../../Zotlabs/Module/Siteinfo.php:23 +msgid "Administrator" +msgstr "Administrator" + +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Software and Project information" +msgstr "Software und Projektinformationen" + +#: ../../Zotlabs/Module/Siteinfo.php:27 +msgid "This site is powered by $Projectname" +msgstr "Diese Website wird bereitgestellt durch $Projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "Project homepage" +msgstr "Projekt-Website" + +#: ../../Zotlabs/Module/Siteinfo.php:32 +msgid "Developer homepage" +msgstr "Entwickler-Website" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1082 +msgid "Ratings" +msgstr "Bewertungen" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Bewertung: " + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Webseite: " + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Beschreibung: " + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Webseitenelemente importieren" + +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Import ausgewählt" + +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Webseitenelemente exportieren" + +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "Exportieren ausgewählt" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1915 ../../include/nav.php:481 +msgid "Webpages" +msgstr "Webseiten" + +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Aktionen" + +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Seiten-Link" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Seitentitel" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Ungültiger Dateityp." + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Fehler beim Öffnen der ZIP-Datei" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "Ungültiger Ordnerpfad." + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Keine Webseitenelemente erkannt." + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Import abgeschlossen." + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 +#: ../../include/channel.php:599 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 +#: ../../include/channel.php:604 +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." + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Kanalname/-adresse ändern" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Neue Kanaladresse" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Kanal umbenennen" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "Bearbeite Beitrag" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "Ungültige Beitrags-ID (mid)" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "keine Ergebnisse" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "aktualisiert" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "Zugriff verweigert" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "Empfänger nicht gefunden." + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "Mail widerrufen" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "Doppelte Mail erhalten" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "Mail zugestellt" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Zustellungsbericht für %1$s" + +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Options" +msgstr "Optionen" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "Erneut zustellen" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Quelle erstellt." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Quelle aktualisiert." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 +msgid "Channel Sources" +msgstr "Kanal-Quellen" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Neue Quelle" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Name des Kanals" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Quelle nicht gefunden." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Quelle bearbeiten" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Quelle löschen" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Quelle gelöscht" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." + +#: ../../Zotlabs/Module/Like.php:54 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" + +#: ../../Zotlabs/Module/Like.php:59 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." + +#: ../../Zotlabs/Module/Like.php:60 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." + +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 +msgid "Invalid request." +msgstr "Ungültige Anfrage." + +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 +msgid "channel" +msgstr "Kanal" + +#: ../../Zotlabs/Module/Like.php:150 +msgid "thing" +msgstr "Sache" + +#: ../../Zotlabs/Module/Like.php:196 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." + +#: ../../Zotlabs/Module/Like.php:244 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." + +#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 +#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" + +#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1442 +#: ../../include/conversation.php:163 +#, 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:442 +#, 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:444 +#, 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:446 +#, 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:448 ../../addon/diaspora/Receiver.php:2072 +#, 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:450 ../../addon/diaspora/Receiver.php:2074 +#, 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:452 ../../addon/diaspora/Receiver.php:2076 +#, 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:564 +msgid "Action completed." +msgstr "Aktion durchgeführt." + +#: ../../Zotlabs/Module/Like.php:565 +msgid "Thank you." +msgstr "Vielen Dank." + +#: ../../Zotlabs/Module/Directory.php:106 +msgid "No default suggestions were found." +msgstr "Es wurden keine Standard Vorschläge gefunden." + +#: ../../Zotlabs/Module/Directory.php:255 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" + +#: ../../Zotlabs/Module/Directory.php:266 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../Zotlabs/Module/Directory.php:268 +msgid "Status: " +msgstr "Status:" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Homepage: " +msgstr "Webseite:" + +#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 +msgid "Age:" +msgstr "Alter:" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 +#: ../../include/event.php:54 ../../include/event.php:86 +msgid "Location:" +msgstr "Ort:" + +#: ../../Zotlabs/Module/Directory.php:330 +msgid "Description:" +msgstr "Beschreibung:" + +#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 +msgid "Hometown:" +msgstr "Heimatstadt:" + +#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 +msgid "About:" +msgstr "Über:" + +#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1052 ../../include/channel.php:1376 +#: ../../include/connections.php:110 +msgid "Connect" +msgstr "Verbinden" + +#: ../../Zotlabs/Module/Directory.php:339 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" + +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Keywords: " +msgstr "Schlüsselwörter:" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Don't suggest" +msgstr "Nicht vorschlagen" + +#: ../../Zotlabs/Module/Directory.php:347 +msgid "Common connections (estimated):" +msgstr "Gemeinsame Verbindungen (geschätzt):" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Global Directory" +msgstr "Globales Verzeichnis" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Finding:" +msgstr "Ergebnisse:" + +#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "next page" +msgstr "nächste Seite" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "previous page" +msgstr "vorherige Seite" + +#: ../../Zotlabs/Module/Directory.php:408 +msgid "Sort options" +msgstr "Sortieroptionen" + +#: ../../Zotlabs/Module/Directory.php:409 +msgid "Alphabetic" +msgstr "alphabetisch" + +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" + +#: ../../Zotlabs/Module/Directory.php:429 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" + +#: ../../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/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "Konnte den Empfänger nicht finden." + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." + +#: ../../Zotlabs/Module/Mail.php:105 +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:160 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "Nachricht" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Nachricht widerrufen." + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verfällt YYYY-MM-DD HH;MM" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "An:" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +#: ../../include/conversation.php:1385 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Absenden" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1430 +msgid "Set expiration date" +msgstr "Verfallsdatum" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Zustellungsbericht" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Nachricht widerrufen" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "Die Nachricht wurde widerrufen." + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Unterhaltung löschen" + +#: ../../Zotlabs/Module/Mail.php:416 +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:420 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Deine Nachricht für %s (%s):" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" + +#: ../../Zotlabs/Module/Pubsites.php:27 +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:33 +msgid "Hub URL" +msgstr "Hub-URL" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Zugriffstyp" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiken" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Bewerten" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 +msgid "webpage" +msgstr "Webseite" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 +msgid "block" +msgstr "Block" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 +msgid "layout" +msgstr "Layout" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 +msgid "menu" +msgstr "Menü" + +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" + +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "Gib einen Ordnernamen ein" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "oder wähle einen vorhanden Ordner aus (Doppelklick)" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 +msgid "Save to Folder" +msgstr "In Ordner speichern" + +#: ../../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/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..." + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "Die Registrierung auf diesem Hub ist nicht möglich." + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." + +#: ../../Zotlabs/Module/Register.php:202 +msgid "Register at another affiliated hub." +msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." + +#: ../../Zotlabs/Module/Register.php:212 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." + +#: ../../Zotlabs/Module/Register.php:238 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" + +#: ../../Zotlabs/Module/Register.php:245 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website." + +#: ../../Zotlabs/Module/Register.php:250 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" + +#: ../../Zotlabs/Module/Register.php:251 +msgid "Choose a password" +msgstr "Passwort" + +#: ../../Zotlabs/Module/Register.php:252 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" + +#: ../../Zotlabs/Module/Register.php:253 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "no" +msgstr "nein" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "yes" +msgstr "ja" + +#: ../../Zotlabs/Module/Register.php:274 +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:286 ../../boot.php:1570 +#: ../../include/nav.php:164 +msgid "Register" +msgstr "Registrieren" + +#: ../../Zotlabs/Module/Register.php:287 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen." + +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" +msgstr "Cover Foto" + +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 +msgid "female" +msgstr "weiblich" + +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s hat ihr %2$s aktualisiert" + +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 +msgid "male" +msgstr "männlich" + +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s hat sein %2$s aktualisiert" + +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s hat sein/ihr %2$s aktualisiert" + +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 +msgid "cover photo" +msgstr "Cover Foto" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +msgid "Change Cover Photo" +msgstr "Titelbild ändern" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 +#: ../../include/nav.php:391 +msgid "About" +msgstr "Über" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "Administratoren" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "Entwickler" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "Tutorials" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "$Projectname-Dokumentation" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "Inhalt" + +#: ../../Zotlabs/Module/Display.php:394 +msgid "Article" +msgstr "Artikel" + +#: ../../Zotlabs/Module/Display.php:446 +msgid "Item has been removed." +msgstr "Der Beitrag wurde entfernt." + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Schlagwort entfernt" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" + +#: ../../Zotlabs/Module/Network.php:100 +msgid "No such group" +msgstr "Gruppe nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:142 +msgid "No such channel" +msgstr "Kanal nicht gefunden" + +#: ../../Zotlabs/Module/Network.php:147 +msgid "forum" +msgstr "Forum" + +#: ../../Zotlabs/Module/Network.php:159 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" + +#: ../../Zotlabs/Module/Network.php:229 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" + +#: ../../Zotlabs/Module/Network.php:238 +msgid "Privacy group: " +msgstr "Gruppe:" + +#: ../../Zotlabs/Module/Network.php:265 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." + +#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "Ungültiger Kanal." + +#: ../../Zotlabs/Module/Acl.php:361 +msgid "network" +msgstr "Netzwerk" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen auf %s" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Zugriff verweigert." + +#: ../../Zotlabs/Module/Filestorage.php:95 +msgid "File not found." +msgstr "Datei nicht gefunden." + +#: ../../Zotlabs/Module/Filestorage.php:142 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" + +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" + +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" + +#: ../../Zotlabs/Module/Filestorage.php:158 +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:159 +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:161 +msgid "Share this file" +msgstr "Diese Datei freigeben" + +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" + +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Show in your contacts shared folder" +msgstr "Im geteilten Ordner Deiner Kontakte anzeigen" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Zeige gemeinsame Verbindungen" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Email zur Verifizierung wurde erneut versendet" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "Erneutes Versenden der Email zur Verifizierung nicht möglich." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Keine Verbindungen." + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "Blockierte Benutzerkonten" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "Abgelaufene Benutzerkonten" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "Ablaufende Benutzerkonten" + +#: ../../Zotlabs/Module/Admin.php:112 +msgid "Clones" +msgstr "Klone" + +#: ../../Zotlabs/Module/Admin.php:118 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: ../../Zotlabs/Module/Admin.php:132 +msgid "Your software should be updated" +msgstr "Die installierte Software sollte aktualisiert werden" + +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Summary" +msgstr "Zusammenfassung" + +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Registered accounts" +msgstr "Registrierte Konten" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered channels" +msgstr "Registrierte Kanäle" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Version" +msgstr "Version" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Repository version (master)" +msgstr "Repository-Version (master)" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (dev)" +msgstr "Repository-Version (dev)" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Webseite:" + +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Karte bearbeiten" + +#: ../../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:108 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" + +#: ../../Zotlabs/Module/Lostpass.php:68 +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:91 ../../boot.php:1598 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" + +#: ../../Zotlabs/Module/Lostpass.php:96 +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:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "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:132 +msgid "Email Address" +msgstr "E-Mail Adresse" + +#: ../../Zotlabs/Module/Notifications.php:62 +#: ../../Zotlabs/Lib/ThreadItem.php:408 +msgid "Mark all seen" +msgstr "Alle als gelesen markieren" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "0. Einsteiger/Basis" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "1. Anfänger - unerfahren, aber bereit zu lernen" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "2. Fortgeschritten - relativ komfortabel" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "3. Fortgeschritten - sehr komfortabel" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "4. Experte - Ich kann Computercode schreiben" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "5. Zauberer - ich kann wahrscheinlich mehr als Du" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Fehler melden" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:241 +msgid "Activity" +msgstr "Aktivität" + +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 +#: ../../include/features.php:96 ../../include/nav.php:497 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:246 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 +#: ../../include/conversation.php:1856 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:250 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:252 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:255 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:257 +msgid "Probe" +msgstr "Testen" + +#: ../../Zotlabs/Lib/Apps.php:258 +msgid "Suggest" +msgstr "Empfehlen" + +#: ../../Zotlabs/Lib/Apps.php:259 +msgid "Random Channel" +msgstr "Zufälliger Kanal" + +#: ../../Zotlabs/Lib/Apps.php:260 +msgid "Invite" +msgstr "Einladen" + +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "Funktionen" + +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Sprache" + +#: ../../Zotlabs/Lib/Apps.php:263 +msgid "Post" +msgstr "Beitrag schreiben" + +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "Profilfoto" + +#: ../../Zotlabs/Lib/Apps.php:407 +msgid "Purchase" +msgstr "Kaufen" + +#: ../../Zotlabs/Lib/Apps.php:411 +msgid "Undelete" +msgstr "Wieder hergestellt" + +#: ../../Zotlabs/Lib/Apps.php:419 +msgid "Add to app-tray" +msgstr "Zum App-Menü hinzufügen" + +#: ../../Zotlabs/Lib/Apps.php:420 +msgid "Remove from app-tray" +msgstr "Aus dem App-Menü entfernen" + +#: ../../Zotlabs/Lib/Apps.php:421 +msgid "Pin to navbar" +msgstr "An Navigationsleiste anpinnen" + +#: ../../Zotlabs/Lib/Apps.php:422 +msgid "Unpin from navbar" +msgstr "Von Navigationsleiste entfernen" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "Standard" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "Abonnent" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "Beitragender" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "Autor" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +msgid "(No Title)" +msgstr "(Kein Titel)" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +msgid "Wiki page create failed." +msgstr "Anlegen der Wiki-Seite fehlgeschlagen." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +msgid "Wiki not found." +msgstr "Wiki nicht gefunden." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:131 +msgid "Destination name already exists" +msgstr "Zielname bereits vorhanden" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:163 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +msgid "Page not found" +msgstr "Seite nicht gefunden" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +msgid "Error reading page content" +msgstr "Fehler beim Lesen des Seiteninhalts" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:350 +#: ../../Zotlabs/Lib/NativeWikiPage.php:400 +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Error reading wiki" +msgstr "Fehler beim Lesen des Wiki" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +msgid "Page update failed." +msgstr "Seitenaktualisierung fehlgeschlagen." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +msgid "Nothing deleted" +msgstr "Nichts gelöscht" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +msgid "Compare: object not found." +msgstr "Vergleichen: Objekt nicht gefunden." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +msgid "Page updated" +msgstr "Seite aktualisiert" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +msgid "Untitled" +msgstr "Ohne Titel" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +msgid "Wiki resource_id required for git commit" +msgstr "Die resource_id des Wiki wird benötigt für den git commit." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "Nachricht" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 +#: ../../include/bbcode.php:914 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "Nur ich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "Öffentlich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +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:150 +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:151 +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:152 +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:153 +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:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." + +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "Der Chatraum hat keinen Namen" + +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "Name des Chatraums bereits vergeben" + +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "Ungültiger Raumbezeichner." + +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "Chatraum konnte nicht gefunden werden." + +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "Der Chatraum ist voll" + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "$Projectname-Benachrichtigung" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "Danke." + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Diese Email wurde von %1$s auf %2$s gesendet." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an." + +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Benachrichtigung] Neue Mail empfangen auf %s" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$shat dir auf %2$seine private Nachricht geschickt." + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s hat Dir %2$s geschickt." + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "eine private Nachricht" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "kommentierte" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "gefiel" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "missfiel" + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]ein %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]dein %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1$d von %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "%1$shat einen Beitrag/eine Konversation kommentiert dem/der du folgst." + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "%1$s mag [zrl=%2$s]dein %3$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1$d von %2$s erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "%1$sgefällt ein Beitrag/eine Unterhaltung von dir." + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$shat etwas auf deiner Profilwand auf %2$sveröffentlicht" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$s schrieb auf [zrl=%2$s]Deine Pinnwand[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Benachrichtigung] %s hat Dich erwähnt" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s hat dich auf %2$s getaggt" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s hat [zrl=%2$s]Dich getagged[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Benachrichtigung] %1$s hat Dich angestupst" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s hat dich auf %2$s angestupst" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl=%2$s]hat dich angestupst.[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s hat Deinen Beitrag auf %2$s getagged" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$s hat [zrl=%2$s]Deinen Beitrag[/zrl] getagged" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Benachrichtigung] Verbindungsanfrage erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "Du hast auf %2$s eine neue Verbindung von %1$s erhalten." + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "Du hast [zrl=%1$s]eine neue Verbindungsanfrage[/zrl] von %2$s erhalten." + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kannst Dir das Profil unter %s ansehen" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Du hast einen Freundschaftsvorschlag von %1$s auf %2$s erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "" +"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "Du hast einen [zrl=%1$s]Freundschaftsvorschlag[/zrl] für %2$s von %3$s erhalten." + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "Name:" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Benachrichtigung]" + +#: ../../Zotlabs/Lib/Enotify.php:808 msgid "created a new post" msgstr "Neuer Beitrag wurde erzeugt" -#: ../../include/notify.php:24 +#: ../../Zotlabs/Lib/Enotify.php:809 #, php-format msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "Kein Benutzername in der Importdatei gefunden." +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "hat einen Beitrag vom %s bearbeitet" -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "hat einen Kommentar vom %s bearbeitet" -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "Import abgeschlossen." +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "Wiki erfolgreich aktualisiert" -#: ../../include/group.php:26 +#: ../../Zotlabs/Lib/NativeWiki.php:205 +msgid "Wiki files deleted successfully" +msgstr "Wiki-Dateien erfolgreich gelöscht" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "Aktualisierungsfehler auf %s" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." + +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 +msgid "Private Message" +msgstr "Private Nachricht" + +#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 +msgid "Select" +msgstr "Auswählen" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I might attend" +msgstr "Ich werde vielleicht teilnehmen" + +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I agree" +msgstr "Ich stimme zu" + +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I disagree" +msgstr "Ich lehne ab" + +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I abstain" +msgstr "Ich enthalte mich" + +#: ../../Zotlabs/Lib/ThreadItem.php:238 +msgid "Add Star" +msgstr "Stern hinzufügen" + +#: ../../Zotlabs/Lib/ThreadItem.php:239 +msgid "Remove Star" +msgstr "Stern entfernen" + +#: ../../Zotlabs/Lib/ThreadItem.php:240 +msgid "Toggle Star Status" +msgstr "Markierungsstatus (Stern) umschalten" + +#: ../../Zotlabs/Lib/ThreadItem.php:244 +msgid "starred" +msgstr "markiert" + +#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 +msgid "Message signature validated" +msgstr "Signatur überprüft" + +#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 +msgid "Message signature incorrect" +msgstr "Signatur nicht korrekt" + +#: ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "Add Tag" +msgstr "Tag hinzufügen" + +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 +msgid "like" +msgstr "mag" + +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 +msgid "dislike" +msgstr "verurteile" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "Share This" +msgstr "Teilen" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "share" +msgstr "Teilen" + +#: ../../Zotlabs/Lib/ThreadItem.php:295 +msgid "Delivery Report" +msgstr "Zustellungsbericht" + +#: ../../Zotlabs/Lib/ThreadItem.php:313 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 +#, php-format +msgid "View %s's profile - %s" +msgstr "Schaue Dir %ss Profil an – %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:347 +msgid "to" +msgstr "an" + +#: ../../Zotlabs/Lib/ThreadItem.php:348 +msgid "via" +msgstr "via" + +#: ../../Zotlabs/Lib/ThreadItem.php:349 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: ../../Zotlabs/Lib/ThreadItem.php:350 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 +#, php-format +msgid "from %s" +msgstr "via %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 +#, php-format +msgid "last edited: %s" +msgstr "zuletzt bearbeitet: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 +#, php-format +msgid "Expires: %s" +msgstr "Verfällt: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:374 +msgid "Attend" +msgstr "Zusagen" + +#: ../../Zotlabs/Lib/ThreadItem.php:375 +msgid "Attendance Options" +msgstr "Zusageoptionen" + +#: ../../Zotlabs/Lib/ThreadItem.php:376 +msgid "Vote" +msgstr "Abstimmen" + +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Voting Options" +msgstr "Abstimmungsoptionen" + +#: ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "Favoriten speichern" + +#: ../../Zotlabs/Lib/ThreadItem.php:399 +msgid "Add to Calendar" +msgstr "Zum Kalender hinzufügen" + +#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "Dies ist eine nicht gespeicherte Vorschau" + +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mehr anzeigen" + +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 +msgid "Bold" +msgstr "Fett" + +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 +msgid "Italic" +msgstr "Kursiv" + +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 +msgid "Underline" +msgstr "Unterstrichen" + +#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 +msgid "Quote" +msgstr "Zitat" + +#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 +msgid "Code" +msgstr "Code" + +#: ../../Zotlabs/Lib/ThreadItem.php:758 +msgid "Image" +msgstr "Bild" + +#: ../../Zotlabs/Lib/ThreadItem.php:759 +msgid "Attach File" +msgstr "Datei anhängen" + +#: ../../Zotlabs/Lib/ThreadItem.php:760 +msgid "Insert Link" +msgstr "Link einfügen" + +#: ../../Zotlabs/Lib/ThreadItem.php:761 +msgid "Video" +msgstr "Video" + +#: ../../Zotlabs/Lib/ThreadItem.php:771 +msgid "Your full name (required)" +msgstr "Ihr vollständiger Name (erforderlich)" + +#: ../../Zotlabs/Lib/ThreadItem.php:772 +msgid "Your email address (required)" +msgstr "Ihre E-Mail-Adresse (erforderlich)" + +#: ../../Zotlabs/Lib/ThreadItem.php:773 +msgid "Your website URL (optional)" +msgstr "Ihre Webseiten-URL (optional)" + +#: ../../Zotlabs/Zot/Auth.php:152 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Sammlung 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 Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard-Sammlung für neue Kontakte" +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 +msgid "parent" +msgstr "Übergeordnetes Verzeichnis" -#: ../../include/group.php:276 -msgid "edit" -msgstr "Bearbeiten" +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 +msgid "Collection" +msgstr "Sammlung" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Sammlungen" +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Prinzipal" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Sammlung bearbeiten" +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Adressbuch" -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Neue Sammlung hinzufügen" +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 +msgid "Calendar" +msgstr "Kalender" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanäle, die nicht in einer Sammlung sind" +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Posteingang für überwachte Kalender" -#: ../../include/group.php:303 ../../include/widgets.php:275 +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Postausgang für überwachte Kalender" + +#: ../../Zotlabs/Storage/Browser.php:273 +msgid "Total" +msgstr "Summe" + +#: ../../Zotlabs/Storage/Browser.php:275 +msgid "Shared" +msgstr "Geteilt" + +#: ../../Zotlabs/Storage/Browser.php:277 +msgid "Add Files" +msgstr "Dateien hinzufügen" + +#: ../../Zotlabs/Storage/Browser.php:353 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "Sie verwenden %1$s von Ihrem verfügbaren Dateispeicher." + +#: ../../Zotlabs/Storage/Browser.php:358 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Sie verwenden %1$s von %2$s verfügbarem Dateispeicher. (%3$s%)" + +#: ../../Zotlabs/Storage/Browser.php:369 +msgid "WARNING:" +msgstr "WARNUNG:" + +#: ../../Zotlabs/Storage/Browser.php:381 +msgid "Create new folder" +msgstr "Neuen Ordner anlegen" + +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Upload file" +msgstr "Datei hochladen" + +#: ../../Zotlabs/Storage/Browser.php:396 +msgid "Drop files here to immediately upload" +msgstr "Dateien zum sofortigen Hochladen hier fallen lassen" + +#: ../../Zotlabs/Widget/Forums.php:100 +msgid "Forums" +msgstr "Foren" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "Kanal auswählen" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "Lesen-schreiben" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "Nur Lesen" + +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "Meine Kalender" + +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "Geteilte Kalender" + +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "Diesen Kalender teilen" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "Kalendername und -farbe" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "Neuen Kalender erstellen" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "Kalendername" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "Kalenderwerkzeuge" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "Kalender importieren" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "Kalender zum Hineinimportieren auswählen" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "Adressbücher" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "Adressbuchname" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "Neues Adressbuch erstellen" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "Adressbuchname" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "Adressbuchwerkzeuge" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "Adressbuch importieren" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "Adressbuch zum Hineinimportieren auswählen" + +#: ../../Zotlabs/Widget/Appcategories.php:40 +#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 +#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 +msgid "Categories" +msgstr "Kategorien" + +#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +msgid "Everything" +msgstr "Alles" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "HQ-Einstellungen" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "Neuen Beitrag erstellen" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Kombinierte Anzeige" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "Eingang" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Neue Nachricht" + +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 +#: ../../include/nav.php:434 ../../include/nav.php:437 +msgid "Chatrooms" +msgstr "Chaträume" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Übersicht" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "Bewerte mich" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Bewertungen ansehen" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Aktivität" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wiki List" +msgstr "Wikiliste" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Archive" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Konversationen" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Chatmitglieder" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "Foto/Bild" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Eintrag löschen" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" + +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 msgid "add" msgstr "hinzufügen" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Notizen" -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist dieser Seite nicht erlaubt" +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:89 +msgid "Add new page" +msgstr "Neue Seite hinzufügen" -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." +#: ../../Zotlabs/Widget/Wiki_pages.php:83 +msgid "Wiki Pages" +msgstr "Wikiseiten" -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "Eine Einladung ist erforderlich." +#: ../../Zotlabs/Widget/Wiki_pages.php:94 +msgid "Page name" +msgstr "Seitenname" -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden" +#: ../../Zotlabs/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Bitte gib die erforderlichen Informationen ein." +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Speichern der Account-Informationen fehlgeschlagen" +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/account.php:246 +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Mehr anzeigen …" + +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:470 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 +#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 +msgid "Tags" +msgstr "Schlagwörter" + +#: ../../Zotlabs/Widget/Newmember.php:24 +msgid "Profile Creation" +msgstr "Profilerstellung" + +#: ../../Zotlabs/Widget/Newmember.php:26 +msgid "Upload profile photo" +msgstr "Profilfoto hochladen" + +#: ../../Zotlabs/Widget/Newmember.php:27 +msgid "Upload cover photo" +msgstr "Titelbild hochladen" + +#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Find and Connect with others" +msgstr "Finden und Verbinden von/mit Anderen" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "View the directory" +msgstr "Verzeichnis anzeigen" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Manage your connections" +msgstr "Deine Verbindungen verwalten" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Communicate" +msgstr "Kommunizieren" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View your channel homepage" +msgstr "Deine Kanal-Startseite ansehen" + +#: ../../Zotlabs/Widget/Newmember.php:41 +msgid "View your network stream" +msgstr "Deine Netzwerk-Aktivitäten ansehen" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../Zotlabs/Widget/Newmember.php:58 +msgid "View public stream" +msgstr "Zeige öffentlichen Beitrags-Stream" + +#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 +msgid "New Member Links" +msgstr "Links für neue Mitglieder" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "DB-Aktualisierungen" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 +msgid "Admin" +msgstr "Administration" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" + +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Konto-Einstellungen" + +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" + +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" + +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "Addon-Einstellungen" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" + +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" + +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "OAuth1 apps" +msgstr "OAuth1 Anwendungen" + +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "OAuth2 apps" +msgstr "OAuth2 Anwendungen" + +#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 +msgid "Permission Groups" +msgstr "Berechtigungsrollen" + +#: ../../Zotlabs/Widget/Settings_menu.php:125 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" + +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Neue Netzwerk-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Benachrichtigungen für neue Netzwerk-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "Zeige Deine Netzwerk-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "Alle Benachrichtigungen als gesehen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 +msgid "Show new posts only" +msgstr "Zeige nur neue Beiträge" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Nach Namen filtern" + +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "Neue Kanal-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "Benachrichtigungen für neue Kanal-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "Zeige Deine Kanal-Aktivitäten" + +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 +msgid "Mark all notifications seen" +msgstr "Alle Benachrichtigungen als gesehen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "Neue Mails" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "Benachrichtigungen für neue Mails" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "Zeige Deine persönlichen Mails" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "Alle Mails als gelesen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "Neue Termine" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "Benachrichtigungen für neue Termine" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "Termine ansehen" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "Benachrichtigungen für neue Verbindungen" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "Zeige alle Verbindungen" + +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "Neue Dateien" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "Benachrichtigungen für neue Dateien" + +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Benachrichtigungen" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "Alle Notizen ansehen" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "Alle Notizen als gesehen markieren" + +#: ../../Zotlabs/Widget/Notifications.php:121 +msgid "New Registrations" +msgstr "Neue Registrierungen" + +#: ../../Zotlabs/Widget/Notifications.php:122 +msgid "New Registrations Notifications" +msgstr "Benachrichtigungen für neue Registrierungen" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "Public Stream Notifications" +msgstr "Benachrichtigungen für öffentlichen Beitrags-Stream" + +#: ../../Zotlabs/Widget/Notifications.php:135 +msgid "View the public stream" +msgstr "Zeige öffentlichen Beitrags-Stream" + +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Du hast momentan keine Benachrichtigungen" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "Quellkanal nicht gefunden." + +#: ../../boot.php:1569 +msgid "Create an account to access services and applications" +msgstr "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können." + +#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 +msgid "Logout" +msgstr "Abmelden" + +#: ../../boot.php:1592 +msgid "Login/Email" +msgstr "Anmelden/E-Mail" + +#: ../../boot.php:1593 +msgid "Password" +msgstr "Kennwort" + +#: ../../boot.php:1594 +msgid "Remember me" +msgstr "Angaben speichern" + +#: ../../boot.php:1597 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ../../boot.php:2354 #, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +msgid "[$Projectname] Website SSL error for %s" +msgstr "[$Projectname] Webseiten-SSL-Fehler für %s" -#: ../../include/account.php:312 +#: ../../boot.php:2359 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." + +#: ../../boot.php:2475 #, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "[$Projectname] Cron-Jobs laufen nicht auf %s" -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 ../../include/network.php:1632 -msgid "Administrator" -msgstr "Administrator" +#: ../../boot.php:2480 +msgid "Cron/Scheduled tasks not running." +msgstr "Cron-Aufgaben laufen nicht." -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Account bestätigt." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s widerrufen" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Konto geprüft. Bitte melde Dich an!" - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." - -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" - -#: ../../include/datetime.php:235 ../../mod/events.php:672 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Erforderlich" - -#: ../../include/datetime.php:262 ../../boot.php:2353 +#: ../../boot.php:2481 ../../include/datetime.php:238 msgid "never" msgstr "Nie" -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" +#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 +msgid "Cover Photo" +msgstr "Cover Foto" -#: ../../include/datetime.php:271 -msgid "year" -msgstr "Jahr" +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../include/datetime.php:271 -msgid "years" -msgstr "Jahre" +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Design-Einstellungen" -#: ../../include/datetime.php:272 -msgid "month" -msgstr "Monat" +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Schmale Navigationsleiste" -#: ../../include/datetime.php:272 -msgid "months" -msgstr "Monate" +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../include/datetime.php:273 -msgid "week" -msgstr "Woche" +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "Wochen" +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../include/datetime.php:274 -msgid "day" -msgstr "Tag" +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "Linkfarbe" -#: ../../include/datetime.php:274 -msgid "days" -msgstr "Tage" +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Farbe der Schrift des Banners" -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "Stunde" +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Hintergrundfarbe" -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "Stunden" +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Hintergrundbild" -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "Minute" +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "Hintergrundfarbe für Beiträge" -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "Minuten" +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Hintergrundfarbe für Kommentare" -#: ../../include/datetime.php:277 -msgid "second" -msgstr "Sekunde" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Schriftgröße für die gesamte Anwendung" -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "Sekunden" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "Beispiele: 1rem, 100%, 16px" -#: ../../include/datetime.php:285 +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Schriftfarbe für Beiträge und Kommentare" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Ecken-Radius" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "Beispiel: 4px" + +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Schattentiefe von Fotos" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Leer lassen für Standardbreite" + +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "Seiteninhalt linksbündig anzeigen" + +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Größe der Avatare von Themenstartern" + +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Größe der Avatare von Kommentatoren" + +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten." + +#: ../../addon/rendezvous/rendezvous.php:95 +#: ../../addon/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "Einstellungen absenden" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "Lösche Tabellen beim Deinstallieren?" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "Wenn ausgewählt, werden die Rendezvous-Tabellen in der Datenbank gelöscht, sobald das Plugin deinstalliert wird." + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "Mapbox Zugangs-Token" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "Wenn Du ein Mapbox Zugangs-Token eingibst, werden die Kartendaten (Kacheln) damit von Mapbox geladen, anstatt von OpenStreetMap, welches die Voreinstellung ist." + +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "Rendezvous" + +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "Diese Identität wurde von einem anderen Mitglied aufgrund von Inaktivität gelöscht. Bitte klicke auf \"Neue Identität\" oder aktualisiere die Website im Browser, um eine neue Identität zu registrieren. Du kannst dabei den selben Namen verwenden." + +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "Willkommen bei Rendezvous!" + +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with" +" the other members, tap the GPS control. When your location is discovered, a" +" red dot will appear and others will be able to see you on the map." +msgstr "Gib Deinen Namen ein, um diesem Rendezvous beizutreten. Um Deinen Standort mit anderen Mitgliedern zu teilen, klicke auf das GPS Symbol. Sobald Dein Standort ermittelt ist, erscheint ein roter Punkt, und die Anderen werden Dich auf der Karte sehen können." + +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "Lasst uns hier treffen" + +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "Neue Markierung" + +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "Markierung bearbeiten" + +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "Neue Identität" + +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "Markierung löschen" + +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "Mitglied löschen" + +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "Annäherungsalarm bearbeiten" + +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius" +" of you.

Enter a radius in meters (0 to disable):" +msgstr "Ein Annäherungsalarm wird ausgelöst werden, sobald sich dieses Mitglied innerhalb eines bestimmten Radius von Dir aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):" + +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "Entfernung" + +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "Entfernung für Annäherungsalarm (in Metern)" + +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the" +" marker location.

Enter a radius in meters (0 to disable):" +msgstr "Ein Annäherungsalarm wird ausgelöst werden, sobald Du Dich innerhalb eines bestimmten Radius der Markierung aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):" + +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "Annäherungsalarm für Markierung" + +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "Erinnerungshinweis" + +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "Gib eine Nachricht ein, die angezeigt werden soll, wenn Du Dich in der festgelegten Nähe befindest..." + +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "Neues Rendezvous hinzufügen" + +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or" +" share their own locations with the group." +msgstr "Erstelle ein neues Rendezvous und teile den Zugriffslink mit allen, die Du in die Gruppe einladen möchtest. Die, die den Link öffnen, werden Mitglieder des Rendezvous. Sie können die Standorte der anderen Mitglieder sehen, Marker zur Karte hinzufügen oder ihre eigenen Standorte mit der Gruppe teilen." + +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" +msgstr "Du hast kein Rendezvous. Drücke den Knopf oben, um ein Rendezvous zu erstellen!" + +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "Einige Einstellungen" + +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "Eine Einstellung" + +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "Skeleton Einstellungen" + +#: ../../addon/gnusoc/gnusoc.php:249 +msgid "GNU-Social Protocol Settings updated." +msgstr "GNU social Protokoll Einstellungen aktualisiert" + +#: ../../addon/gnusoc/gnusoc.php:268 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Das GNU-Social-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." + +#: ../../addon/gnusoc/gnusoc.php:271 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "Aktiviere das GNU social Protokoll für diesen Kanal" + +#: ../../addon/gnusoc/gnusoc.php:275 +msgid "GNU-Social Protocol Settings" +msgstr "GNU social Protokoll Einstellungen" + +#: ../../addon/gnusoc/gnusoc.php:471 +msgid "Follow" +msgstr "Folgen" + +#: ../../addon/gnusoc/gnusoc.php:474 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +msgid "%1$s is now following %2$s" +msgstr "%1$s folgt nun %2$s" -#: ../../include/datetime.php:519 +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "Planeten Einstellungen aktualisiert" + +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "Aktiviere Planeten Plugin" + +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "Planeten Einstellungen" + +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "Systemstandardeinstellungen:" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "Bevorzugte Clipart-IDs" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "Liste bevorzugter Clipart-IDs. Diese werden zuerst angezeigt." + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "Standard-Suchbegriff" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "Der Standard-Suchbegriff. Dieser wird an zweiter Stelle angezeigt." + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "Zurückkehren nach" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "Die Seite, die nach Auswahl eines Bildes geladen werden soll." + +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 +#: ../../include/nav.php:119 +msgid "Edit Profile" +msgstr "Profil bearbeiten" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "Profilliste" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "Reihenfolge der Bevorzugten" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "Sortierreihenfolge der bevorzugten Clipart-IDs." + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "Neueste zuerst" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "Wie eingegeben" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "Sortierung aller anderen" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "Sortierreihenfolge der übrigen Clipart-IDs." + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "Meist heruntergeladene zuerst" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "Beliebteste zuerst" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "Nachricht für bevorzugte IDs" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll." + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "Hochgeladen von: " + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "Gezeichnet von: " + +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Dieses Bild verwenden" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "Oder wähle ein freies Bild von OpenClipart.org:" + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "Suchbegriff" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "Unbekannter Fehler. Bitte versuchen Sie es später erneut." + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "Profilfoto erfolgreich aktualisiert." + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Nicht jugendfreie Fotos markieren" + +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit" + +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "Auf WordPress posten" + +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "Aktiviere das WordPress-Plugin" + +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "WordPress-Benutzername" + +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "WordPress-Passwort" + +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "WordPress-API-URL" + +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "Normalerweise https://your-blog.tld/xmlrpc.php" + +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "WordPress blogid" + +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "Nötig für Mehrbenutzer Seiten wie wordpress.com, andernfalls frei lassen" + +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "Standardmäßig auf auf WordPress posten" + +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "Kommentare weiterleiten (benötigt hubzilla_wp Plugin)" + +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "WordPress-Beitragseinstellungen" + +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "Wordpress-Einstellungen gespeichert." + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbausteinen, die Du hier unterhalb einträgst, und faltet alle Beiträge zusammen, in denen es diese Bausteine findet. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Es gilt als höflich und empfohlen, den #NSFW Tag für Beiträge zu verwenden, bei denen Du davon ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst aber auch beliebige andere Wörter in der Liste angeben und das Plugin so als allgemeinen Inhaltsfilter verwenden." + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "Inhaltsfilter aktivieren" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "Kommaseparierte Liste von Schlüsselworten die verborgen werden sollen." + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "Wort, /regular-expression/, lang=xx, lang!=xx" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "Not Safe For Work Einstellungen" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "Allzweck-Inhaltsfilter" + +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "NSFW-Einstellungen gespeichert." + +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "Möglicherweise nicht jugendfreie Inhalte" + +#: ../../addon/nsfw/nsfw.php:222 #, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +msgid "%s - view" +msgstr "%s - ansehen" -#: ../../include/datetime.php:520 +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "Bei InsaneJournal veröffentlichen" + +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Aktiviere das InsaneJournal Plugin" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "InsaneJournal-Benutzername" + +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "InsaneJournal-Passwort" + +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "Standardmäßig bei InsaneJournal veröffentlichen" + +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "InsaneJournal-Beitragseinstellungen" + +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "InsaneJournal-Einstellungen gespeichert." + +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "Bei Dreamwidth veröffentlichen" + +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "Aktiviere das Dreamwidth-Plugin" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "Dreamwidth-Benutzername" + +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "Dreamwidth-Passwort" + +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "Standardmäßig auf auf Dreamwidth posten" + +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "Dreamwidth-Beitragseinstellungen" + +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "Neue Registrierung" + +#: ../../addon/notifyadmin/notifyadmin.php:42 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +msgid "Message sent to %s. New account registration: %s" +msgstr "Nachricht gesendet an %s. Neue Kontoregistrierung: %s" -#: ../../include/dir_fns.php:126 +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "Hubzilla-Verzeichnisstatistiken" + +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "Hubs insgesamt" + +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "Hubzilla Hubs" + +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "Friendica Hubs" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "Diaspora Pods" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "Hubzilla-Kanäle" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "Friendica-Kanäle" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "Diaspora-Kanäle" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "35 und älter" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "34 und jünger" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "Durchschnittsalter" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "Bekannte Chaträume" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "Bekannte Schlagwörter" + +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "Bitte berücksichtige, dass Diaspora und Friendica Statistiken nur solche einschließen, die **diesem Verzeichnis** bekannt sind, nicht alle im Netzwerk bekannten. Das gilt auch für Chaträume." + +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "Dein Webbie" + +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "Schriftgröße (px):" + +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "Link:" + +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Like us on Hubzilla" + +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "Einbetten" + +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "Fotos importiert" + +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "Redmatrix-Fotoalbumimport" + +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "Hiermit werden all deine Fotoalben von Redmatrix in diesen Kanal importiert." + +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "Basis-URL des Redmatrix Servers" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "Redmatrix-Anmeldebenutzername" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "Redmatrix-Anmeldepasswort" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "Nur dieses Album importieren" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "Leer lassen um alle Alben zu importieren" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "Maximal zu importierende Anzahl" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "0 oder leer lassen um alles zu importieren" + +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "Kanäle zur automatischen Verbindung" + +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" +msgstr "Kommagetrennte Liste" + +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Beliebte Kanäle" + +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" +msgstr "IRC-Einstellungen" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "IRC-Einstellungen gespeichert." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "IRC-Chatraum" + +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "Bei LiveJurnal veröffentlichen" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "Aktiviere das LiveJurnal Plugin" + +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "LiveJournal-Benutzername" + +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "LiveJournal-Passwort" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "Standardmäßig bei LiveJurnal veröffentlichen" + +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "LiveJournal-Beitragseinstellungen" + +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "LiveJournal-Einstellungen gespeichert." + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "Die Fehlermeldung war:" + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "Vorname" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "Nachname" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" +msgstr "Spitzname" + +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "Voller Name" + +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "Profilfoto 16 px" + +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "Profilfoto 32 px" + +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "Profilfoto 48 px" + +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "Profilfoto 64 px" + +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "Profilfoto 80 px" + +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "Profilfoto 128 px" + +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "Zeitzone" + +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "Geburtsjahr" + +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "Geburtsmonat" + +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "Geburtstag" + +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "Geburtsdatum" + +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-Protokollfehler. Keine Kennung zurückgegeben." + +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 +msgid "Login failed." +msgstr "Login fehlgeschlagen." + +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1480 +msgid "Male" +msgstr "Männlich" + +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1478 +msgid "Female" +msgstr "Weiblich" + +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "Gern geschehen." + +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "Ach Mist..." + +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "Keine Ursache." + +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "" + +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "Seite, die nach dem Login geladen werden soll" + +#: ../../addon/startpage/startpage.php:109 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "Beispiele: "apps", "network?f=&gid=37" (Gruppen-gefilterte Beiträge), "channel" oder "notifications/system" (freilassen für die Standard-Netzwerkseite (grid)." + +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "Startseiteneinstellungen" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "Ohrfeige" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "geohrfeigt" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "bumsen" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "gebumst" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "Patent" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "patentiert" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "umarmen" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "umarmt" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "ermorden" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "ermordet" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "Anbetung" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "angebetet" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "küssen" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "geküsst" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "verlocken" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "verlockt" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "Augenbrauen hochziehen" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "zog die Augenbrauen hoch" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "beleidigen" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "beleidigt" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "loben" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "gelobt" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "essen" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "aß" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "anzweifeln" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "angezweifelt" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "ficken" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "gefickt" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "erkläre unsterbliche Liebe" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "erklärte unsterbliche Liebe" + +#: ../../addon/diaspora/diaspora.php:781 +msgid "Diaspora Protocol Settings updated." +msgstr "Diaspora Protokoll Einstellungen aktualisiert" + +#: ../../addon/diaspora/diaspora.php:800 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." + +#: ../../addon/diaspora/diaspora.php:803 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Das Diaspora Protokoll für diesen Kanal aktivieren" + +#: ../../addon/diaspora/diaspora.php:807 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren" + +#: ../../addon/diaspora/diaspora.php:811 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden" + +#: ../../addon/diaspora/diaspora.php:815 +msgid "" +"Sign and forward posts and comments with no existing Diaspora signature" +msgstr "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur" + +#: ../../addon/diaspora/diaspora.php:820 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "Verfolgte Hashtags (Komma separierte Liste, ohne die #)" + +#: ../../addon/diaspora/diaspora.php:825 +msgid "Diaspora Protocol Settings" +msgstr "Diaspora Protokoll Einstellungen" + +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Es wurde kein Nutzername in der importierten Datei gefunden." + +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 +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." + +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Dein Konto auf %s wird in ein paar Tagen ablaufen." + +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "Dein $Productname Test-Konto wird bald auslaufen." + +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "Rainbowtag aktivieren" + +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "Rainbowtag-Einstellungen" + +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "Rainbowtag-Einstellungen gespeichert." + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "Hochladebeschränkungen anzeigen" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "Die in Hubzilla eingestellte maximale Größe:" + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "PHP upload_max_filesize:" + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "PHP post_max_size (muss größer sein als upload_max_filesize):" + +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "generisches Profilbild" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "zufälliges geometrisches Muster" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "Monstergesicht" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "computergeneriertes Gesicht" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "Gesicht im Retro-Arcade Stil" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Standard-Profilfoto für diesen Hub" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Information" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere entweder das Libreavatar oder das Gravatar Addon.
Das Libravatar Addon verwendet als Notfalllösung Gravatar, sollte bei Libravatar kein Profilbild gefunden werden." + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "Standard-Avatarbild" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Wähle das Standardprofilbild aus, sollte bei Gravatar keines gefunden werden. Beachte auch die README." + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "Bewertungen der Bilder" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Wähle die für deine Seite angemessene Profilbildeinstufung. Beachte auch die README." + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "Gravatar-Einstellungen aktualisiert." + +#: ../../addon/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "Hubzilla-Datenspeicher-Import" + +#: ../../addon/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert." + +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "Basis-URL des Habzilla-Servers" + +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "Seit Modifizierungsdatum yyyy-mm-dd" + +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "Bis Modifizierungsdatum yyyy-mm-dd" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Kürzliche Kanal/Profil Besucher" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "Dieses Plugin/Addon wurde noch nicht konfiguriert." + +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "Bitte rufe die Visage Einstellungen auf %s auf" + +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "Die Funktions-Einstellungsseite" + +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "Keine Einträge." + +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "Aktiviere das Visage-Besucher Logging" + +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "Visage-Einstellungen" + +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "Nsabait-Einstellungen aktualisiert." + +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "Aktiviere das NSAbait Plugin" + +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "NSAbait-Einstellungen" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "Test-E-Mail senden" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "Keine Empfänger gefunden." + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "Mail gesendet." + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "Senden der E-Mail fehlgeschlagen." + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "Mail Test" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "Betreff der Nachricht" + +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Verwende Markdown zum Bearbeiten von Beiträgen" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "Größer anzeigen" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "Kachelserver-URL" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "Eine Liste öffentlicher Kachelserver" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "Nominatim (reverse Geokodierung) Server URL" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "Eine Liste der Nominatim Server" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "Standardzoom" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "Die Standard-Vergrößerungsstufe (1:Welt, 18:höchste, hängt außerdem vom Kachelserver ab)." + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "Markierung auf der Karte einschließen" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "Binde eine Markierung auf der Karte ein." + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen" + +#: ../../addon/fuzzloc/fuzzloc.php:148 +msgid "Fuzzloc Settings updated." +msgstr "Fuzzloc-Einstellungen aktualisiert." + +#: ../../addon/fuzzloc/fuzzloc.php:175 +msgid "" +"Fuzzloc allows you to blur your precise location if your channel uses " +"browser location mapping." +msgstr "Fuzzloc erlaubt es Dir, deinen genauen Standort etwas diffuser zu machen (nicht so exakt wie ermittelt), wenn Dein Kanal die Lokalisierungsfunktion des Browsers verwendet." + +#: ../../addon/fuzzloc/fuzzloc.php:178 +msgid "Enable Fuzzloc Plugin" +msgstr "Aktiviere das Fuzzloc-Plugin" + +#: ../../addon/fuzzloc/fuzzloc.php:182 +msgid "Minimum offset in meters" +msgstr "Minimale Verschiebung in Metern" + +#: ../../addon/fuzzloc/fuzzloc.php:186 +msgid "Maximum offset in meters" +msgstr "Maximale Verschiebung in Metern" + +#: ../../addon/fuzzloc/fuzzloc.php:191 +msgid "Fuzzloc Settings" +msgstr "Fuzzloc-Einstellungen" + +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "Bei Friendica veröffentlichen" + +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "rtof-Einstellungen gespeichert." + +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "Erlaube die Veröffentlichung bei Friendica" + +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "Standardmäßig öffentliche Beiträge bei Friendica veröffentlichen" + +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "Friendica-API-Pfad" + +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "https://{sitename}/api" + +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "Friendica-Anmeldename" + +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "Friendica-Passwort" + +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "Hubzilla-zu-Friendica Beitragseinstellungen" + +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 +#: ../../include/channel.php:1567 +msgid "Status:" +msgstr "Status:" + +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "Addon aktiviren" + +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "Jappix Mini Chat-Widget von der Weboberfläche verbergen" + +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "Jabber-Benutzername" + +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "Jabber-Server" + +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "Jabber BOSH Host URL" + +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "Jabber-Passwort" + +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "Jabber-Passwort mit Hubzilla-Passwort verschlüsseln" + +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "Hubzilla-Passwort" + +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "Verbindungsanfragen von Hubzilla-Kontakten automatisch annehmen" + +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Interne Liste der Jabber Adressen von Kontakten löschen" + +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "Konfigurationshilfe" + +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "Jappix Mini Einstellungen" + +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "Derzeit blockiert" + +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "Momentan sind keine Kanäle blockiert" + +#: ../../addon/superblock/superblock.php:120 +msgid "Superblock Settings" +msgstr "Superblock Einstellungen" + +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "Vollständig blockieren" + +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "Superblock Einstellungen aktualisiert" + +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "Beitrag verteilen" + +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "nofed Einstellungen gespeichert" + +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "Umschalter zur Beitragsverteilung bereitstellen" + +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "Beiträge standardmäßig verteilen" + +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "NoFed-Einstellungen" + +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "Beitrag bei Red veröffentlichen" + +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "Kanal ist erforderlich." + +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "redred-Einstellungen gespeichert." + +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "Erlaube die Veröffentlichung in anderen Hubzilla Kanälen" + +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "Sende öffentliche Beiträge standardmäßig an den Hubzilla Kanal" + +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "Hubzilla-API-Pfad" + +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "Hubzilla-Anmeldename" + +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "Hubzilla-Kanalname" + +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "Hubzilla Crosspost Einstellungen" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "Verzeichnis der Logdatei" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "Verzeichnis, in dem rotierte Logs gespeichert werden sollen" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "zu erreichende Logdateigröße in Bytes, bevor rotiert wird" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "Anzahl aufzubewahrender rotierter Logdateien" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "Friendica Photo Album Import" +msgstr "Friendica-Fotoalbumimport" + +#: ../../addon/frphotos/frphotos.php:93 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "Hiermit werden all deine Fotoalben von Friendica in diesen Hubzilla Kanal importiert." + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Server base URL" +msgstr "BasisURL des Friendica Servers" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Username" +msgstr "Friendica-Anmeldebenutzername" + +#: ../../addon/frphotos/frphotos.php:96 +msgid "Friendica Login Password" +msgstr "Friendica-Anmeldepasswort" + +#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 +#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: ../../addon/pubcrawl/pubcrawl.php:1053 +msgid "ActivityPub Protocol Settings updated." +msgstr "ActivityPub Protokoll Einstellungen aktualisiert" + +#: ../../addon/pubcrawl/pubcrawl.php:1062 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Das ActivityPub-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." + +#: ../../addon/pubcrawl/pubcrawl.php:1065 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "Aktiviere das ActivityPub Protokoll für diesen Kanal" + +#: ../../addon/pubcrawl/pubcrawl.php:1068 +msgid "Send multi-media HTML articles" +msgstr "Multimedia HTML Artikel versenden" + +#: ../../addon/pubcrawl/pubcrawl.php:1068 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt" + +#: ../../addon/pubcrawl/pubcrawl.php:1072 +msgid "ActivityPub Protocol Settings" +msgstr "ActivityPub Protokoll Einstellungen" + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "Projektserver und -ressourcen" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "Projektersteller und Technischer Leiter" + +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende" + +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "Und die hunderte anderen Menschen und Organisationen, die geholfen haben Hubzilla möglich zu machen." + +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "Die Redmatrix/Hubzilla Projekte werden hauptsächlich von Freiwilligen bereitgestellt, die ihre Zeit und Expertise zur Verfügung stellen - und oft aus eigener Tasche für die Dienste zahlen, die sie mit anderen teilen." + +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "Es gibt keine Finanzierung durch Firmen, keine Werbung und wir verkaufen Deine persönlichen Daten nicht. (Wir kontrollieren Deine persönlichen Daten nicht - das machst Du.)" + +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and" +" privacy." +msgstr "Hilf uns bei unserer wegweisenden Arbeit im Bereich der Dezantralisation, von Web-Identitäten und Privatsphäre." + +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "Die Spenden werden dafür verwendet Server und Dienste am laufen zu halten und helfen desweiteren innovative Neuerungen zu schaffen und die Entwicklung voran zu treiben." + +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "Spenden" + +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "Wähle ein Projekt, einen Entwickler oder einen öffentlichen Hub den du mit einer einmaligen Spende unterstützen willst." + +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "Jetzt spenden" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project " +"only)" +msgstr "Oder werde ein Unterstützer des Projekts (ausschließlich Hubzilla)" + +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "Bitte teile uns mit ob dein kompletter Name oder dein Vorname (oder gar nichts) auf unserer Sponsoren-Seite veröffentlicht werden soll." + +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "Sponsor" + +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "Besonderer Dank an: " + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Einige gültige Beispiele: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Gitarrenakkorde" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "Das komplette online Akkord-Verzeichnis" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Stimmen" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Beispiel Akkord Name: Em7" + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Linkshänder-Besaitung anzeigen" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Schnellreferenz" + +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "Bei Libertree veröffentlichen" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Aktivire das Libertree-Plugin" + +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "Libertree API Token" + +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "URL der Libertree Seite" + +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "Standardmäßig bei Libertree veröffentlichen" + +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "Libertree-Beitragseinstellungen" + +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "Libertree-Einstellungen gespeichert." + +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "Flattr this!" + +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "Flattr Widget Einstellungen aktualisiert" + +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "Flattr Nutzer" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "URL des Dings zum flattrn" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "Falls leer wird die Channel URL verwendet" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "Titel des Dings zum flattrn" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "Falls leer wird \"Kanalname auf The Hubzilla\" verwendet" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "Statischer oder dynamischer Flattr Button" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "statisch" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "dynamisch" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "Ausrichtung des Widgets" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "links" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "rechts" + +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "Flattr Widget verwenden" + +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "Flattr Widget Einstellungen" + +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "Bei GNU social veröffentlichen" + +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Bitte kontaktiere den Administrator deines Hubs.
Die angegebene API URL ist nicht korrekt." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "Mit dem angegebenen Pfad war es uns nicht möglich, die GNU social API zu erreichen." + +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "GNU social Einstellungen aktualisiert." + +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "Global verfügbare GNU social OAuthKeys" + +#: ../../addon/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel.
Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten)." + +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "Stelle deine eigenen OAuth Credentials zur Verfügung" + +#: ../../addon/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as" +" an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert." + +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "OAuth Consumer Key" + +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "OAuth Consumer Secret" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "Basis Pfad der API" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "Denke an das abschließende /" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "GNU social Anwendungsname" + +#: ../../addon/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "Um dich mit deinem GNU social Konto zu verbinden, klicke den Button unten und kopiere dann den Sicherheitscode von GNU social in das Formular weiter unten. Es werden ausschließlich deine öffentlichen Beiträge auf GNU social veröffentlicht." + +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "Mit GNU social anmelden" + +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "Kopiere den Sicherheitscode von GNU social hier her" + +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "Verbindungsprozes abbrechen" + +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "Aktuelle GNU social API ist" + +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "GNU social Verbindung trennen" + +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +msgid "Currently connected to: " +msgstr "Momentan verbunden mit:" + +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu GNU social geteilter Link in öffentlichen Beiträgen Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist." + +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "Erlaube die Veröffentlichung bei GNU social" + +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden." + +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "Standardmäßig bei GNU social veröffentlichen" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht." + +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +msgid "Clear OAuth configuration" +msgstr "OAuth Konfiguration löschen" + +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "GNU social Einstellungen" + +#: ../../addon/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "API-URL" + +#: ../../addon/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "Anwendungsname" + +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "QR-Code" + +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "QR-Generator" + +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "Etwas Text eingeben" + +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +msgid "Invalid game." +msgstr "Ungültiges Spiel." + +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "Sie sind kein Spieler in diesem Spiel." + +#: ../../addon/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein" + +#: ../../addon/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "Du musst einen Gegner wählen, der nicht du selbst ist" + +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "Zufällige Farbe gewählt." + +#: ../../addon/chess/chess.php:452 +msgid "Error creating new game." +msgstr "Fehler beim Erstellen eines neuen Spiels." + +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 +msgid "Requested channel is not available." +msgstr "Angeforderter Kanal nicht verfügbar." + +#: ../../addon/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen" + +#: ../../addon/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "Benachrichtigungen aktivieren" + +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "Bei Twitter veröffentlichen" + +#: ../../addon/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "Twitter-Einstellungen aktualisiert." + +#: ../../addon/twitter/twitter.php:184 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator." + +#: ../../addon/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine öffentlichen Beiträge werden auf Twitter geteilt." + +#: ../../addon/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "Mit Twitter anmelden" + +#: ../../addon/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "PIN von Twitter hier her kopieren" + +#: ../../addon/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist." + +#: ../../addon/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "Erlaube die Veröffentlichung bei Twitter" + +#: ../../addon/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." + +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Länge von Twitter Beiträgen" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Maximale Länge eines Tweets" + +#: ../../addon/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen" + +#: ../../addon/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." + +#: ../../addon/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "Twitter-Beitragseinstellungen" + +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "Diese Funktion abschalten" + +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "Verstecke die Schaltfläche und zeige die Smilies direkt an." + +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "Smileyknopf-Einstellungen" + +#: ../../addon/cart/myshop.php:138 +msgid "Order Not Found" +msgstr "Bestellung nicht gefunden" + +#: ../../addon/cart/cart.php:810 +msgid "Order cannot be checked out." +msgstr "Bestellvorgang kann nicht fortgesetzt werden." + +#: ../../addon/cart/cart.php:1073 +msgid "Enable Shopping Cart" +msgstr "Aktiviere die Warenkorb-Funktion." + +#: ../../addon/cart/cart.php:1080 +msgid "Enable Test Catalog" +msgstr "Aktiviere den Test-Warenbestand" + +#: ../../addon/cart/cart.php:1088 +msgid "Enable Manual Payments" +msgstr "Aktiviere manuelle Zahlungen" + +#: ../../addon/cart/cart.php:1103 +msgid "Base Cart Settings" +msgstr "Warenkorb-Grundeinstellungen" + +#: ../../addon/cart/cart.php:1151 +msgid "Add Item" +msgstr "Füge den Artikel hinzu" + +#: ../../addon/cart/cart.php:1165 +msgid "Call cart_post_" +msgstr "" + +#: ../../addon/cart/cart.php:1195 +msgid "Cart Not Enabled (profile: " +msgstr "" + +#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 +msgid "Order not found." +msgstr "Bestellung nicht gefunden." + +#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 +msgid "No Order Found" +msgstr "Keine Bestellung gefunden" + +#: ../../addon/cart/cart.php:1270 +msgid "call: " +msgstr "" + +#: ../../addon/cart/cart.php:1273 +msgid "An unknown error has occurred Please start again." +msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal." + +#: ../../addon/cart/cart.php:1414 +msgid "Invalid Payment Type. Please start again." +msgstr "Unbekannte Zahlungsmethode. Bitte versuche es noch einmal." + +#: ../../addon/cart/cart.php:1421 +msgid "Order not found" +msgstr "Bestellung nicht gefunden" + +#: ../../addon/cart/manual_payments.php:9 +msgid "Error: order mismatch. Please try again." +msgstr "Fehler: Bestellungen stimmen nicht überein. Bitte versuche es noch einmal." + +#: ../../addon/cart/manual_payments.php:29 +msgid "Manual payments are not enabled." +msgstr "Manuelle Zahlungen sind nicht aktiviert." + +#: ../../addon/cart/manual_payments.php:44 +msgid "Finished" +msgstr "Fertig" + +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Diese Website verwendet Piwik, um die Besucherzugriffe auszuwerten." + +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "Wenn Du nicht möchtest, dass Deine Besuche zu diesem Zweck gespeichert werden, kannst Du ein Cookie setzen, welches Piwik davon abhält, Deine weiteren Besuche auf dieser Website zu verfolgen (Opt-out)." + +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "Piwik Basis-URL" + +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Der absolute Pfad zu Deiner Piwik-Installation (ohne Protokoll (http/s), aber mit abschließendem Schrägstrich / )." + +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "Seitenkennung" + +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "Den Opt-out Cookie-Link anzeigen?" + +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "Asynchrones Tracking" + +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "Ermögliche Frontend-JavaScript-Fehlertracking" + +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "Diese Funktion erfordert Piwik >= 2.2.0" + +#: ../../addon/tour/tour.php:76 +msgid "Edit your profile and change settings." +msgstr "Bearbeite dein Profil und ändere die Einstellungen." + +#: ../../addon/tour/tour.php:77 +msgid "Click here to see activity from your connections." +msgstr "Klicke hier, um die Aktivitäten Deiner Verbindungen zu sehen." + +#: ../../addon/tour/tour.php:78 +msgid "Click here to see your channel home." +msgstr "Klicke hier, um Deine Kanal-Hauptseite zu sehen." + +#: ../../addon/tour/tour.php:79 +msgid "You can access your private messages from here." +msgstr "Hierüber kannst Du auf Deine privaten Nachrichten zugreifen." + +#: ../../addon/tour/tour.php:80 +msgid "Create new events here." +msgstr "Neue Termine hier erstellen" + +#: ../../addon/tour/tour.php:81 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "Du kannst hier neue Verbindungen akzeptieren sowie die Einstellungen bereits vorhandener Vebindungen bearbeiten. Außerdem kannst Du Verbindungen in Gruppen zusammenfassen." + +#: ../../addon/tour/tour.php:82 +msgid "System notifications will arrive here" +msgstr "Systembenachrichtigungen werden hier eintreffen" + +#: ../../addon/tour/tour.php:83 +msgid "Search for content and users" +msgstr "Nach Inhalt von Benutzern suchen" + +#: ../../addon/tour/tour.php:84 +msgid "Browse for new contacts" +msgstr "Schaue nach möglichen neuen Verbindungen." + +#: ../../addon/tour/tour.php:85 +msgid "Launch installed apps" +msgstr "Installierte Apps starten" + +#: ../../addon/tour/tour.php:86 +msgid "Looking for help? Click here." +msgstr "Du benötigst Hilfe? Klicke hier." + +#: ../../addon/tour/tour.php:87 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "In Deinem Netzwerk gibt es neue Ereignisse. Klicke hier, um zu sehen, was passiert ist!" + +#: ../../addon/tour/tour.php:88 +msgid "You have received a new private message. Click here to see from who!" +msgstr "Du hast eine neue private Nachricht erhalten. Klicke hier, um zu sehen, von wem!" + +#: ../../addon/tour/tour.php:89 +msgid "There are events this week. Click here too see which!" +msgstr "Es gibt neue Termine diese Woche. Klicke hier, um zu sehen, welche!" + +#: ../../addon/tour/tour.php:90 +msgid "You have received a new introduction. Click here to see who!" +msgstr "Du hast eine neue Verbindungsanfrage erhalten. Klicke hier, um zu sehen, wer es ist!" + +#: ../../addon/tour/tour.php:91 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "Es gibt eine neue Systembenachrichtigung. Klicke hier, um zu sehen, was passiert ist!" + +#: ../../addon/tour/tour.php:94 +msgid "Click here to share text, images, videos and sound." +msgstr "Klicke hier, um Texte, Bilder, Videos und Klänge zu teilen." + +#: ../../addon/tour/tour.php:95 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "Du kannst Deinem Beitrag einen optionalen Titel geben (gut für lange Beiträge)." + +#: ../../addon/tour/tour.php:96 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "Ein paar Kategorien hier einzugeben, macht es leichter, Deinen Beitrag später wiederzufinden." + +#: ../../addon/tour/tour.php:97 +msgid "Share photos, links, location, etc." +msgstr "Teile Photos, Links, Standort, usw." + +#: ../../addon/tour/tour.php:98 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "Du möchtest diesen Inhalt nur für eine Weile teilen? Dann lass ihn zu einem bestimmten Datum ablaufen." + +#: ../../addon/tour/tour.php:99 +msgid "You can password protect content." +msgstr "Du kannst Inhalte mit einem Passwort schützen." + +#: ../../addon/tour/tour.php:100 +msgid "Choose who you share with." +msgstr "Wähle aus, mit wem Du teilen möchtest." + +#: ../../addon/tour/tour.php:102 +msgid "Click here when you are done." +msgstr "Klicke hier, wenn Du fertig bist." + +#: ../../addon/tour/tour.php:105 +msgid "Adjust from which channels posts should be displayed." +msgstr "Lege fest, von welchen Kanälen Beiträge angezeigt werden sollen." + +#: ../../addon/tour/tour.php:106 +msgid "Only show posts from channels in the specified privacy group." +msgstr "Zeige nur Beträge von Kanälen, die in einer bestimmten Gruppe sind." + +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "Finde Beiträge, die bestimmte Tags enthalten (Stichworte, die mit dem \"#\"-Symbol beginnen)." + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts in given category." +msgstr "Finde Beiträge in bestimmten Kategorien." + +#: ../../addon/tour/tour.php:112 +msgid "Easily find posts by date." +msgstr "Finde Beiträge anhand des Datums." + +#: ../../addon/tour/tour.php:113 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we" +" think you might find interesting." +msgstr "Vorgeschlagene Kanäle, die in ihren Einstellungen zugestimmt haben, als Vorschläge angezeigt zu werden, und die Du eventuell interessant finden könntest." + +#: ../../addon/tour/tour.php:114 +msgid "Here you see channels you have connected to." +msgstr "Hier siehst du die Kanäle, mit denen Du verbunden bist." + +#: ../../addon/tour/tour.php:115 +msgid "Save your search so you can repeat it at a later date." +msgstr "Speichere Deine Suche, so dass Du sie später leicht erneut durchführen kannst." + +#: ../../addon/tour/tour.php:118 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It" +" is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "Wenn Du dieses Symbol siehst, kannst Du weitgehend sicher sein, dass der Ansender dem angegebenen entspricht. Nicht immer ist es möglich, den Absender zu verifizieren, daher fehlt das Symbol mitunter. Das ist aber in der Regel kein Grund zur Sorge." + +#: ../../addon/tour/tour.php:119 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!" + +#: ../../addon/tour/tour.php:126 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?

Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.

Du kannst auc durch das Drücken der Enter-Taste weitergehen." + +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "Erweitertes Teilen von Identitäten" + +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit $Projectname - Servern geteilt." + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Dreidimensionales Tic-Tac-Toe" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "3D Tic-Tac-Toe" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "Neues Spiel" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "Neues Handicaü-Spiel" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "3D Tic-Tac-Toe funktioniert wie das ursprüngliche Spiel, nur dass es auf mehreren Ebenen gleichzeitig gespielt wird." + +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "In diesem Fall sind es drei Ebenen. Du gewinnst, wenn es dir gelingt drei in einer Reihe auf einer beliebigen Ebene oder diagonal über die verschiedenen Ebenen hinweg zu erreichen." + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "Bei einem Handicap-Spiel wird die Position im Zentrum der mittleren Ebene gesperrt, da der Spieler der dieses Feld für sich beansprucht meist einen unfairen Vorteil hat." + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "Du darfst anfangen..." + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "Diesmal werde ich anfangen..." + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "Sie haben gewonnen!" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "\"Katzen\"-Spiel!" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "Ich habe gewonnen!" + +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "Nachricht, die auf jeder Seite dieses Servers angezeigt werden soll" + +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "Nachrichtenkopf-Einstellungen" + +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "Nachrichtenkopf-Einstellungen gespeichert." + +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "Authentifiziere Dich nur auf Seiten deiner Freunde automatisch" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "Authentifiziere Dich standardmäßig bei allen Seiten im Netzwerk automatisch" + +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "Einstellungen für automatische Authentifizierung" + +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "Einstellungen für automatische Authentifizierung aktualisiert." + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "einsam" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "betrunken" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "geil" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "bekifft" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "beschissen" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "clusterfucked" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "verrückt" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "verletzt" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "müde" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "mürrisch" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "hoch" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "halb bewusstlos" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "verliebt" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "nackt" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "stinkend" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "verschwitzt" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "blutend" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "siegreich" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "besiegt" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "neidisch" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "eifersüchtig" + +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "XMPP-Einstellungen aktualisiert." + +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "Chat aktivieren" + +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "Individuelle Anmeldedaten" + +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "Jabber BOSH Server" + +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "XMPP-Einstellungen" + +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "Jabber BOSH Host" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "Zentrale Benutzerbasis verwenden" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "Wenn aktiviert, werden die Mitglieder automatisch auf dem EJabber Server, der auf dieser Maschine installiert ist, angemeldet und die Zugangsdaten werden über das \"auth_ejabberd.php\"-Script synchronisiert." + +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "Wer mag mich?" + +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "Du bist nun bei pumpio authenzifiziert." + +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "Zur Funktions-Einstellungsseite zurückkehren" + +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "Bei pumpio veröffentlichen" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "Pump.io-Servername" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "Ohne \"http://\" oder \"https://\"" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "Pump.io-Benutzername" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "Ohne dem Servernamen" + +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "Du bist nicht bei pumpio authentifiziert." + +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "Deine pumpio Verbindung (erneut) authentifizieren" + +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "Aktiviere das pumpio-Plugin" + +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "Standardmäßig bei pumpio veröffentlichen" + +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "Sollen die Beiträge öffentlich sein" + +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "Öffentliche Beiträge spiegeln" + +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "Pump.io-Beitragseinstellungen" + +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "PumpIO-Einstellungen gespeichert." + +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." +msgstr "Ein Konto wurde für Sie erstellt." + +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert." + +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Suche %1$s (%2$s)" + +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "$Projectname suchen" + +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "Import des Redmatrix Datei Speichers" + +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "Hiermit werden alle deine Daten aus der Redmatrix Cloud in diesen Kanal importiert." + +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "Datei" + +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "E-Mail an alle Mitglieder senden" + +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "%1$d von %2$d Nachrichten gesendet." + +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "Eine E-Mail an alle Mitglieder dieses Hubs senden." + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "E-Mail Adresse des Absenders" + +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "Test Modus (nur an Hub Administratoren senden)" + +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Häufig" + +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Stündlich" + +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" + +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Täglich" + +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wöchentlich" + +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Monatlich" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momentan männlich" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momentan weiblich" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Größtenteils männlich" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transsexuell" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexuell" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Zwitter" + +#: ../../include/selectors.php:49 ../../include/channel.php:1484 +msgid "Neuter" +msgstr "Geschlechtslos" + +#: ../../include/selectors.php:49 ../../include/channel.php:1486 +msgid "Non-specific" +msgstr "unklar" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Unentschieden" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Männer" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Frauen" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Schwul" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Keine Bevorzugung" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexuell" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexuell" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Enthaltsam" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Jungfräulich" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Abweichend" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisch" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Unmengen" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Sexlos" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Einsam" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Verfügbar" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Verguckt" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Verknallt" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Treulos" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sexabhängig" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Lose" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verlobt" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Verheiratet" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Informelle Ehe" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Glücklich" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Betrogen" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Getrennt" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Labil" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Geschieden" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Verwitwet" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Ungewiss" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es ist kompliziert" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Interessiert mich nicht" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Frag mich mal" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "gefällt %1$ss %2$s" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "missfällt %1$ss %2$s" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" + +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 +msgid "poked" +msgstr "stupste" + +#: ../../include/conversation.php:736 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" + +#: ../../include/conversation.php:756 +msgid "Categories:" +msgstr "Kategorien:" + +#: ../../include/conversation.php:757 +msgid "Filed under:" +msgstr "Gespeichert unter:" + +#: ../../include/conversation.php:783 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" + +#: ../../include/conversation.php:884 +msgid "remove" +msgstr "lösche" + +#: ../../include/conversation.php:888 +msgid "Loading..." +msgstr "Lädt ..." + +#: ../../include/conversation.php:889 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" + +#: ../../include/conversation.php:932 +msgid "View Source" +msgstr "Quelle anzeigen" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" + +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Unterhaltung nicht mehr folgen" + +#: ../../include/conversation.php:1062 +msgid "Edit Connection" +msgstr "Verbindung bearbeiten" + +#: ../../include/conversation.php:1072 +msgid "Message" +msgstr "Nachricht" + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1210 +#, 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:1212 +#, 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:1218 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:1221 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." + +#: ../../include/conversation.php:1265 +msgid "Set your location" +msgstr "Standort" + +#: ../../include/conversation.php:1266 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" + +#: ../../include/conversation.php:1316 +msgid "Tag term:" +msgstr "Schlagwort:" + +#: ../../include/conversation.php:1317 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" + +#: ../../include/conversation.php:1322 +msgid "Choose a different album..." +msgstr "Wählen Sie ein anderes Album aus..." + +#: ../../include/conversation.php:1326 +msgid "Comments enabled" +msgstr "Kommentare aktiviert" + +#: ../../include/conversation.php:1327 +msgid "Comments disabled" +msgstr "Kommentare deaktiviert" + +#: ../../include/conversation.php:1375 +msgid "Page link name" +msgstr "Link zur Seite" + +#: ../../include/conversation.php:1378 +msgid "Post as" +msgstr "Veröffentlichen als" + +#: ../../include/conversation.php:1392 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" + +#: ../../include/conversation.php:1395 +msgid "Disable comments" +msgstr "Kommentare deaktivieren" + +#: ../../include/conversation.php:1396 +msgid "Toggle comments" +msgstr "Kommentare umschalten" + +#: ../../include/conversation.php:1404 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" + +#: ../../include/conversation.php:1427 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" + +#: ../../include/conversation.php:1433 +msgid "Set publish date" +msgstr "Veröffentlichungsdatum festlegen" + +#: ../../include/conversation.php:1693 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: ../../include/conversation.php:1696 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" + +#: ../../include/conversation.php:1700 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: ../../include/conversation.php:1703 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" + +#: ../../include/conversation.php:1711 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" + +#: ../../include/conversation.php:1720 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" + +#: ../../include/conversation.php:1726 +msgid "Starred" +msgstr "Markiert" + +#: ../../include/conversation.php:1729 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" + +#: ../../include/conversation.php:1736 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1739 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" + +#: ../../include/conversation.php:1814 ../../include/nav.php:381 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: ../../include/conversation.php:1827 ../../include/nav.php:394 +msgid "Profile Details" +msgstr "Profil-Details" + +#: ../../include/conversation.php:1837 ../../include/nav.php:404 +#: ../../include/photos.php:666 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../include/conversation.php:1845 ../../include/nav.php:412 +msgid "Files and Storage" +msgstr "Dateien und Speicher" + +#: ../../include/conversation.php:1882 ../../include/nav.php:447 +msgid "Bookmarks" +msgstr "Lesezeichen" + +#: ../../include/conversation.php:1885 ../../include/nav.php:450 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" + +#: ../../include/conversation.php:1896 ../../include/nav.php:461 +msgid "View Cards" +msgstr "Karten anzeigen" + +#: ../../include/conversation.php:1904 +msgid "articles" +msgstr "Artikel" + +#: ../../include/conversation.php:1907 ../../include/nav.php:472 +msgid "View Articles" +msgstr "Artikel anzeigen" + +#: ../../include/conversation.php:1918 ../../include/nav.php:484 +msgid "View Webpages" +msgstr "Webseiten anzeigen" + +#: ../../include/conversation.php:1987 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" + +#: ../../include/conversation.php:1990 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" + +#: ../../include/conversation.php:1993 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" + +#: ../../include/conversation.php:1996 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" + +#: ../../include/conversation.php:1999 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" + +#: ../../include/conversation.php:2002 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" + +#: ../../include/dir_fns.php:141 msgid "Directory Options" msgstr "Verzeichnisoptionen" -#: ../../include/dir_fns.php:128 +#: ../../include/dir_fns.php:143 msgid "Safe Mode" msgstr "Sicherer Modus" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../mod/connedit.php:647 ../../mod/connedit.php:675 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "No" -msgstr "Nein" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "Yes" -msgstr "Ja" - -#: ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:144 msgid "Public Forums Only" msgstr "Nur öffentliche Foren" -#: ../../include/dir_fns.php:130 +#: ../../include/dir_fns.php:145 msgid "This Website Only" -msgstr "Nur diese Website" +msgstr "Nur dieser Hub" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" -msgstr "Ansicht" +#: ../../include/import.php:25 +msgid "Unable to import a removed channel." +msgstr "Nicht möglich, einen gelöschten Kanal zu importieren." -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1166 ../../mod/webpages.php:188 -#: ../../mod/events.php:690 ../../mod/editpost.php:143 -#: ../../mod/photos.php:982 ../../mod/editwebpage.php:214 -#: ../../mod/editblock.php:170 -msgid "Preview" -msgstr "Vorschau" +#: ../../include/import.php:46 +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/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Aktionen" +#: ../../include/import.php:111 +msgid "Cloned channel not found. Import failed." +msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../include/text.php:492 +msgid "prev" +msgstr "vorherige" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/text.php:494 +msgid "first" +msgstr "erste" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 -msgid "Created" -msgstr "Erstellt" +#: ../../include/text.php:523 +msgid "last" +msgstr "letzte" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 -#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 -msgid "Edited" -msgstr "Geändert" +#: ../../include/text.php:526 +msgid "next" +msgstr "nächste" -#: ../../include/api.php:1234 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/text.php:537 +msgid "older" +msgstr "älter" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" +#: ../../include/text.php:539 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:961 +msgid "No connections" +msgstr "Keine Verbindungen" + +#: ../../include/text.php:993 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" + +#: ../../include/text.php:1129 ../../include/text.php:1133 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:1134 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:1134 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:1135 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:1135 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:1136 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:1136 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:1137 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:1137 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:1138 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:1138 +msgid "rebuffed" +msgstr "zurückgewiesen" + +#: ../../include/text.php:1161 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:1162 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:1163 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:1164 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:1165 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:1166 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:1167 +msgid "stupefied" +msgstr "verblüfft" + +#: ../../include/text.php:1168 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:1169 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:1170 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:1171 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:1172 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:1173 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:1174 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:1175 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:1176 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:1177 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:1178 +msgid "depressed" +msgstr "deprimiert" + +#: ../../include/text.php:1179 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:1180 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:1181 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1360 ../../include/js_strings.php:76 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1360 ../../include/js_strings.php:77 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1360 ../../include/js_strings.php:78 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1360 ../../include/js_strings.php:79 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1360 ../../include/js_strings.php:80 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1360 ../../include/js_strings.php:81 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1360 ../../include/js_strings.php:75 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1364 ../../include/js_strings.php:51 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1364 ../../include/js_strings.php:52 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1364 ../../include/js_strings.php:53 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1364 ../../include/js_strings.php:54 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1364 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1364 ../../include/js_strings.php:56 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1364 ../../include/js_strings.php:57 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1364 ../../include/js_strings.php:58 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1364 ../../include/js_strings.php:59 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1364 ../../include/js_strings.php:60 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1364 ../../include/js_strings.php:61 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1364 ../../include/js_strings.php:62 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1428 ../../include/text.php:1432 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" + +#: ../../include/text.php:1434 ../../include/feedutils.php:860 +msgid "unknown" +msgstr "unbekannt" + +#: ../../include/text.php:1470 +msgid "remove category" +msgstr "Kategorie entfernen" + +#: ../../include/text.php:1544 +msgid "remove from file" +msgstr "aus der Datei entfernen" + +#: ../../include/text.php:1686 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "Binären/verschlüsselten Inhalt herunterladen" + +#: ../../include/text.php:1849 ../../include/language.php:397 +msgid "default" msgstr "Standard" +#: ../../include/text.php:1857 +msgid "Page layout" +msgstr "Seiten-Layout" + +#: ../../include/text.php:1857 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" + +#: ../../include/text.php:1868 +msgid "HTML" +msgstr "HTML" + +#: ../../include/text.php:1871 +msgid "Comanche Layout" +msgstr "Comanche-Layout" + +#: ../../include/text.php:1876 +msgid "PHP" +msgstr "PHP" + +#: ../../include/text.php:1885 +msgid "Page content type" +msgstr "Art des Seiteninhalts" + +#: ../../include/text.php:2018 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:2100 +msgid "a-z, 0-9, -, and _ only" +msgstr "nur a-z, 0-9, - und _" + +#: ../../include/text.php:2419 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" + +#: ../../include/text.php:2425 +msgid "Pages" +msgstr "Seiten" + +#: ../../include/text.php:2447 +msgid "Import website..." +msgstr "Webseite importieren..." + +#: ../../include/text.php:2448 +msgid "Select folder to import" +msgstr "Ordner zum Importieren auswählen" + +#: ../../include/text.php:2449 +msgid "Import from a zipped folder:" +msgstr "Aus einem gezippten Ordner importieren:" + +#: ../../include/text.php:2450 +msgid "Import from cloud files:" +msgstr "Aus Cloud-Dateien importieren:" + +#: ../../include/text.php:2451 +msgid "/cloud/channel/path/to/folder" +msgstr "/Cloud/Kanal/Pfad/zum/Ordner" + +#: ../../include/text.php:2452 +msgid "Enter path to website files" +msgstr "Pfad zu Webseitendateien eingeben" + +#: ../../include/text.php:2453 +msgid "Select folder" +msgstr "Ordner auswählen" + +#: ../../include/text.php:2454 +msgid "Export website..." +msgstr "Webseite exportieren..." + +#: ../../include/text.php:2455 +msgid "Export to a zip file" +msgstr "In eine ZIP-Datei exportieren" + +#: ../../include/text.php:2456 +msgid "website.zip" +msgstr "website.zip" + +#: ../../include/text.php:2457 +msgid "Enter a name for the zip file." +msgstr "Geben Sie einen für die ZIP-Datei ein." + +#: ../../include/text.php:2458 +msgid "Export to cloud files" +msgstr "In Cloud-Dateien exportieren" + +#: ../../include/text.php:2459 +msgid "/path/to/export/folder" +msgstr "/Pfad/zum/exportierenden/Ordner" + +#: ../../include/text.php:2460 +msgid "Enter a path to a cloud files destination." +msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." + +#: ../../include/text.php:2461 +msgid "Specify folder" +msgstr "Ordner angeben" + +#: ../../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:223 +msgid "Common Connections" +msgstr "Gemeinsame Verbindungen" + +#: ../../include/contact_widgets.php:228 +#, php-format +msgid "View all %d common connections" +msgstr "Zeige alle %d gemeinsamen Verbindungen" + +#: ../../include/markdown.php:158 ../../include/bbcode.php:356 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" + +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " + +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." + +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." + +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "Premium-Kanal - bitte gehe zu:" + +#: ../../include/follow.php:110 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." + +#: ../../include/follow.php:165 +msgid "Remote channel or protocol unavailable." +msgstr "Externer Kanal oder Protokoll nicht verfügbar." + +#: ../../include/follow.php:188 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" + +#: ../../include/follow.php:200 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." + +#: ../../include/follow.php:211 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Dieses Element löschen?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" - #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" +#, php-format +msgid "%s show less" +msgstr "%s weniger anzeigen" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#, php-format +msgid "%s expand" +msgstr "%s aufklappen" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#, php-format +msgid "%s collapse" +msgstr "%s einklappen" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -477,7 +12858,7 @@ msgstr "Kennwort zu kurz" msgid "Passwords do not match" msgstr "Kennwörter stimmen nicht überein" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "alle" @@ -505,8590 +12886,1443 @@ msgstr "Nichts Neues hier" msgid "Rate This Channel (this is public)" msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -#: ../../mod/connedit.php:683 -msgid "Rating" -msgstr "Bewertung" - #: ../../include/js_strings.php:21 msgid "Describe (optional)" msgstr "Beschreibung (optional)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/group.php:81 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/pdledit.php:58 ../../mod/import.php:592 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/mitem.php:235 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/admin.php:453 ../../mod/admin.php:819 ../../mod/admin.php:986 -#: ../../mod/admin.php:1118 ../../mod/admin.php:1312 ../../mod/admin.php:1397 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/mood.php:134 -#: ../../mod/connedit.php:704 ../../mod/mail.php:355 ../../mod/appman.php:99 -#: ../../mod/pconfig.php:108 ../../mod/poll.php:68 -#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Bestätigen" - #: ../../include/js_strings.php:23 msgid "Please enter a link URL" -msgstr "Bitte geben Sie eine Link-URL ein" +msgstr "Gib eine URL ein:" #: ../../include/js_strings.php:24 msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?" - -#: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "her" - -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "von jetzt" - -#: ../../include/js_strings.php:30 -msgid "less than a minute" -msgstr "weniger als eine Minute" +msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" #: ../../include/js_strings.php:31 -msgid "about a minute" -msgstr "ungefähr eine Minute" +msgid "timeago.prefixAgo" +msgstr "vor" #: ../../include/js_strings.php:32 +msgid "timeago.prefixFromNow" +msgstr "in" + +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "NONE" + +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "NONE" + +#: ../../include/js_strings.php:37 +msgid "less than a minute" +msgstr "weniger als einer Minute" + +#: ../../include/js_strings.php:38 +msgid "about a minute" +msgstr "ungefähr einer Minute" + +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d Minuten" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:40 msgid "about an hour" -msgstr "ungefähr eine Stunde" +msgstr "ungefähr einer Stunde" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "ungefähr %d Stunden" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:42 msgid "a day" -msgstr "ein Tag" +msgstr "einem Tag" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" -msgstr "%d Tage" +msgstr "%d Tagen" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:44 msgid "about a month" -msgstr "ungefähr ein Monat" +msgstr "ungefähr einem Monat" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" -msgstr "%d Monate" +msgstr "%d Monaten" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:46 msgid "about a year" -msgstr "ungefähr ein Jahr" +msgstr "ungefähr einem Jahr" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" -msgstr "%d Jahre" +msgstr "%d Jahren" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/text.php:391 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:393 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:422 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:425 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:435 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "Keine Verbindungen" - -#: ../../include/text.php:844 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Verbindung" -msgstr[1] "%d Verbindungen" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Verbindungen anzeigen" - -#: ../../include/text.php:914 ../../include/text.php:926 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Suche" - -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 -msgid "Save" -msgstr "Speichern" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "zurückgewiesen" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "deprimiert" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "Montag" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "Dienstag" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "Mittwoch" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "Donnerstag" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "Freitag" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "Samstag" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "Sonntag" - -#: ../../include/text.php:1201 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1201 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1201 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1201 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1201 +#: ../../include/js_strings.php:55 +msgctxt "long" msgid "May" msgstr "Mai" -#: ../../include/text.php:1201 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1201 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1201 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1201 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1201 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1201 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1201 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1306 -msgid "unknown.???" -msgstr "unbekannt.???" - -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "Bytes" - -#: ../../include/text.php:1343 -msgid "remove category" -msgstr "Kategorie entfernen" - -#: ../../include/text.php:1418 -msgid "remove from file" -msgstr "aus der Datei entfernen" - -#: ../../include/text.php:1494 ../../include/text.php:1505 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" - -#: ../../include/text.php:1661 ../../mod/events.php:474 -msgid "Link to Source" -msgstr "Link zur Quelle" - -#: ../../include/text.php:1682 ../../include/text.php:1753 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1690 -msgid "Page layout" -msgstr "Seitengestaltung" - -#: ../../include/text.php:1690 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Gestaltungen erstellen" - -#: ../../include/text.php:1731 -msgid "Page content type" -msgstr "Art des Seiteninhalts" - -#: ../../include/text.php:1765 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" - -#: ../../include/text.php:1884 ../../include/diaspora.php:2119 -#: ../../include/conversation.php:120 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "Foto" - -#: ../../include/text.php:1887 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "Termin" - -#: ../../include/text.php:1890 ../../include/diaspora.php:2119 -#: ../../include/conversation.php:148 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "Status" - -#: ../../include/text.php:1892 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "Kommentar" - -#: ../../include/text.php:1897 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:2192 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" - -#: ../../include/text.php:2195 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Blöcke" - -#: ../../include/text.php:2196 ../../mod/menu.php:101 -msgid "Menus" -msgstr "Menüs" - -#: ../../include/text.php:2197 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Gestaltungen" - -#: ../../include/text.php:2198 -msgid "Pages" -msgstr "Seiten" - -#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 -msgid "Collection" -msgstr "Ordner" - -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "Übergeordnetes Verzeichnis" - -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Prinzipal" - -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Adressbuch" - -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Kalender" - -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Posteingang für überwachte Kalender" - -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Postausgang für überwachte Kalender" - -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1030 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" -msgstr "Unbekannt" - -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "%1$s verwendet" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s von %2$s verwendet (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1620 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Dateien" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Summe" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Geteilt" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:152 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/layouts.php:175 -msgid "Create" -msgstr "Erstelle" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:718 ../../mod/photos.php:1248 -msgid "Upload" -msgstr "Hochladen" - -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Name" - -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "Typ" - -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Größe" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Zuletzt geändert" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:671 ../../include/apps.php:255 -#: ../../mod/webpages.php:183 ../../mod/thing.php:256 ../../mod/group.php:176 -#: ../../mod/blocks.php:155 ../../mod/photos.php:1062 -#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 -#: ../../mod/editblock.php:180 ../../mod/admin.php:826 ../../mod/admin.php:988 -#: ../../mod/settings.php:651 ../../mod/connedit.php:563 -msgid "Delete" -msgstr "Löschen" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Neuen Ordner anlegen" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Datei hochladen" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" - -#: ../../include/network.php:1585 ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "$Projectname-Benachrichtigung" - -#: ../../include/network.php:1586 ../../include/enotify.php:59 -#: ../../include/diaspora.php:2522 ../../include/diaspora.php:2533 -#: ../../mod/p.php:46 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/network.php:1588 ../../include/enotify.php:61 -msgid "Thank You," -msgstr "Danke." - -#: ../../include/network.php:1590 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/network.php:1646 -msgid "No Subject" -msgstr "Kein Betreff" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Allgemeine Funktionen" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum." - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Mehrfachprofile anlegen können" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Speichere Dein Profil, um es in einen anderen Kanal zu importieren" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Webseiten" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Private Notizen" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Aktiviert ein Werkzeug zum Speichern von Notizen und Erinnerungen" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Wechsle direkt über das Navigationsmenü zu anderen Kanälen" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Aufnahmeort" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Expertenmodus" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Premium-Kanal" - -#: ../../include/features.php:50 -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:55 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Markdown benutzen" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Große Fotos" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt." - -#: ../../include/features.php:59 ../../include/widgets.php:548 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanal-Quellen" - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" - -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)" - -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "Umfragewerkzeuge aktivieren" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Aktiviere die Umfragewerkzeuge, damit andere Benutzer über Deine Beiträge abstimmen können. Muss im Beitrag selbst noch aktiviert werden." - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Suche nach Datum" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filter für Sammlung" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen" - -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Suchbegriffe zur Wiederverwendung abspeichern" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" - -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast" - -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Beziehungswerkzeug" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter Aktivitätenstream nach Tiefe der Beziehung" - -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "Filter für Sammlungen" - -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtere eingehende Beiträge von Kontakten auf der Basis von Schlüsselwörtern und dem Inhalt." - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Kanalvorschläge anzeigen" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentarwerkzeuge" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Verschlagworten" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit, um existierende Beiträge zu verschlagworten" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Kategorien für Beiträge" - -#: ../../include/features.php:83 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht Beiträge" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "„Gefällt mir nicht“ ermöglichen" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" - -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren" - -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" - -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorien" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Apps" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "Persönlich" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Persönliche App erstellen" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Persönliche App bearbeiten" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:933 ../../mod/directory.php:316 -#: ../../mod/match.php:64 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Verbinden" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "Vorschläge" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Mehr anzeigen …" - -#: ../../include/widgets.php:166 -#, 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:172 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse des Kanals eingeben" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@beispiel.com, http://beispiel.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notizen" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Eintrag löschen" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Alles" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Archive" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "Ich" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "Familie" - -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:345 -#: ../../mod/settings.php:349 ../../mod/settings.php:350 -#: ../../mod/settings.php:353 ../../mod/settings.php:364 -#: ../../mod/connedit.php:585 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "Bekannte" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "Alle" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "Aktualisieren" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "Kanaleinstellungen" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "Funktion-/Addon-Einstellungen" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "Anzeigeeinstellungen" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "Verbundene Apps" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "Kanal exportieren" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "Premium-Kanaleinstellungen" - -#: ../../include/widgets.php:556 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "Einstellungen" - -#: ../../include/widgets.php:569 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "E-Mails abrufen" - -#: ../../include/widgets.php:577 ../../include/nav.php:199 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "Chaträume" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "Foto/Bild" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "Bewerte mich" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "Bewertungen ansehen" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" - -#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:984 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "Ort:" - -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Benachrichtigung] Neue Mail auf %s empfangen" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s hat Dir %2$s geschickt." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Hinweis] %s schrieb auf Deine Pinnwand" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Benachrichtigung] %s hat Dich erwähnt" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Benachrichtigung] %1$s hat Dich angestupst" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Benachrichtigung] Vorstellung erhalten" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kannst Dir das Profil unter %s ansehen" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Name:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Benachrichtigung]" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[kein Betreff]" - -#: ../../include/message.php:45 +#: ../../include/js_strings.php:63 +msgid "Jan" +msgstr "Jan" + +#: ../../include/js_strings.php:64 +msgid "Feb" +msgstr "Feb" + +#: ../../include/js_strings.php:65 +msgid "Mar" +msgstr "Mär" + +#: ../../include/js_strings.php:66 +msgid "Apr" +msgstr "Apr" + +#: ../../include/js_strings.php:67 +msgctxt "short" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:68 +msgid "Jun" +msgstr "Jun" + +#: ../../include/js_strings.php:69 +msgid "Jul" +msgstr "Jul" + +#: ../../include/js_strings.php:70 +msgid "Aug" +msgstr "Aug" + +#: ../../include/js_strings.php:71 +msgid "Sep" +msgstr "Sep" + +#: ../../include/js_strings.php:72 +msgid "Oct" +msgstr "Okt" + +#: ../../include/js_strings.php:73 +msgid "Nov" +msgstr "Nov" + +#: ../../include/js_strings.php:74 +msgid "Dec" +msgstr "Dez" + +#: ../../include/js_strings.php:82 +msgid "Sun" +msgstr "So" + +#: ../../include/js_strings.php:83 +msgid "Mon" +msgstr "Mo" + +#: ../../include/js_strings.php:84 +msgid "Tue" +msgstr "Di" + +#: ../../include/js_strings.php:85 +msgid "Wed" +msgstr "Mi" + +#: ../../include/js_strings.php:86 +msgid "Thu" +msgstr "Do" + +#: ../../include/js_strings.php:87 +msgid "Fri" +msgstr "Fr" + +#: ../../include/js_strings.php:88 +msgid "Sat" +msgstr "Sa" + +#: ../../include/js_strings.php:89 +msgctxt "calendar" +msgid "today" +msgstr "heute" + +#: ../../include/js_strings.php:90 +msgctxt "calendar" +msgid "month" +msgstr "Monat" + +#: ../../include/js_strings.php:91 +msgctxt "calendar" +msgid "week" +msgstr "Woche" + +#: ../../include/js_strings.php:92 +msgctxt "calendar" +msgid "day" +msgstr "Tag" + +#: ../../include/js_strings.php:93 +msgctxt "calendar" +msgid "All day" +msgstr "Ganztägig" + +#: ../../include/message.php:40 msgid "Unable to determine sender." msgstr "Kann Absender nicht bestimmen." -#: ../../include/message.php:200 +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" + +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[no subject]" + +#: ../../include/message.php:214 msgid "Stored post could not be verified." msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" - -#: ../../include/diaspora.php:2494 -msgid "Please choose" -msgstr "Bitte auswählen" - -#: ../../include/diaspora.php:2496 -msgid "Agree" -msgstr "Zustimmen" - -#: ../../include/diaspora.php:2498 -msgid "Disagree" -msgstr "Ablehnen" - -#: ../../include/diaspora.php:2500 -msgid "Abstain" -msgstr "Enthalten" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." - -#: ../../include/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." - -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "Das Protokoll wurde für diesen Kanal blockiert." - -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" - -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "Lokales Konto nicht gefunden." - -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "Private Nachricht" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "Auswählen" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In Ordner speichern" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Ich werde teilnehmen" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Ich werde nicht teilnehmen" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Ich werde vielleicht teilnehmen" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Ich stimme zu" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Ich lehne ab" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Ich enthalte mich" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "Alles anzeigen" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1712 ../../include/identity.php:1243 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Stern hinzufügen" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Stern entfernen" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Markierungsstatus (Stern) umschalten" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "markiert" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "Signatur überprüft" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "Signatur nicht korrekt" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag hinzufügen" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "mag" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "lehne ab" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Teilen" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "Teilen" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Schaue Dir %ss Profil an – %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "an" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "via %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "zuletzt bearbeitet: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 -#, php-format -msgid "Expires: %s" -msgstr "Verfällt: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Favoriten speichern" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Zum Kalender hinzufügen" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Alle als gelesen markieren" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "Schließen" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/editpost.php:123 -#: ../../mod/photos.php:962 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:192 ../../mod/editblock.php:149 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Bitte warten" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "Das bist Du" - -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1192 -#: ../../mod/editpost.php:107 ../../mod/editlayout.php:134 -#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:135 -msgid "Bold" -msgstr "Fett" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1193 -#: ../../mod/editpost.php:108 ../../mod/editlayout.php:135 -#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:136 -msgid "Italic" -msgstr "Kursiv" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1194 -#: ../../mod/editpost.php:109 ../../mod/editlayout.php:136 -#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:137 -msgid "Underline" -msgstr "Unterstrichen" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1195 -#: ../../mod/editpost.php:110 ../../mod/editlayout.php:137 -#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:138 -msgid "Quote" -msgstr "Zitat" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1196 -#: ../../mod/editpost.php:111 ../../mod/editlayout.php:138 -#: ../../mod/editwebpage.php:183 ../../mod/editblock.php:139 -msgid "Code" -msgstr "Code" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Bild" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Link einfügen" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1247 -#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Text verschlüsseln" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Neues Fenster" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browser Fenster oder Tab" - -#: ../../include/Contact.php:212 -#, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Beende diese Sitzung" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "Profil ansehen" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" - -#: ../../include/nav.php:95 ../../include/identity.php:956 -msgid "Edit Profile" -msgstr "Profile bearbeiten" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:97 ../../include/conversation.php:1611 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Deine Bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Deine Dateien" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Deine Chaträume" - -#: ../../include/nav.php:109 ../../include/conversation.php:1646 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Lesezeichen" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" - -#: ../../include/nav.php:113 ../../include/conversation.php:1656 -#: ../../include/apps.php:136 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Webseiten" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Deine Webseiten" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 -msgid "Login" -msgstr "Anmelden" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "Registrieren" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Erzeuge ein Konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Hilfe" - -#: ../../include/nav.php:160 -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 content" -msgstr "Durchsuche Seiten-Inhalt" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Deine Matrix" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Markiere alle Matrix-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "Verbindungen" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Mail" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "Termine" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Alle Termine ansehen" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanaleinstellungen" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" - -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "Lädt ..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@Name, #Schlagwort, Text" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Bitte warten..." - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Schlagwörter" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "mag nicht" - -#: ../../include/activities.php:39 +#: ../../include/activities.php:41 msgid " and " msgstr "und" -#: ../../include/activities.php:47 +#: ../../include/activities.php:49 msgid "public profile" msgstr "öffentliches Profil" -#: ../../include/activities.php:56 +#: ../../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:57 +#: ../../include/activities.php:59 #, php-format msgid "Visit %1$s's %2$s" msgstr "Besuche %1$s's %2$s" -#: ../../include/activities.php:60 +#: ../../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/security.php:349 +#: ../../include/attach.php:265 ../../include/attach.php:361 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." + +#: ../../include/attach.php:554 +msgid "No source file." +msgstr "Keine Quelldatei." + +#: ../../include/attach.php:576 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:595 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:737 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" + +#: ../../include/attach.php:758 +#, 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:940 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:969 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." + +#: ../../include/attach.php:1043 ../../include/attach.php:1059 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." + +#: ../../include/attach.php:1108 ../../include/attach.php:1273 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" + +#: ../../include/attach.php:1134 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" + +#: ../../include/attach.php:1159 +msgid "Path not found." +msgstr "Pfad nicht gefunden." + +#: ../../include/attach.php:1227 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." + +#: ../../include/attach.php:1231 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." + +#: ../../include/attach.php:1279 +msgid "Empty path" +msgstr "Leere Pfadangabe" + +#: ../../include/security.php:541 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/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 photo albums" -msgstr "Kann meine Fotoalben betrachten" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kann meine Dateiordner lesen" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kann Fotos in meinen Fotoalben veröffentlichen" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" - -#: ../../include/permissions.php:41 -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:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kann in meine Dateiordner schreiben" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" - -#: ../../include/permissions.php:46 -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:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" - -#: ../../include/permissions.php:48 -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:893 -msgid "Social Networking" -msgstr "Soziales Netzwerk" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Weitgehend öffentlich" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Beschränkt" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privat" - -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Forum" - -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "Teilen von Feeds" - -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" - -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Mitteilungs-Kanal (keine Kommentare)" - -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Gruppenarchiv" - -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Andere" - -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "Kanal" - -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" - -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" - -#: ../../include/conversation.php:718 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/conversation.php:719 -msgid "Filed under:" -msgstr "Gespeichert unter:" - -#: ../../include/conversation.php:746 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" - -#: ../../include/conversation.php:857 -msgid "remove" -msgstr "lösche" - -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" - -#: ../../include/conversation.php:950 -msgid "View Source" -msgstr "Quelle anzeigen" - -#: ../../include/conversation.php:951 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" - -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "Status ansehen" - -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "Fotos ansehen" - -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "Matrix-Aktivität" - -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "Sende PN" - -#: ../../include/conversation.php:959 ../../include/apps.php:145 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1077 -#, 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:1079 -#, 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:1085 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:1088 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." - -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "Sichtbar für jeden" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "Gib einen Video-Link/URL ein:" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "Gib einen Audio-Link/URL ein:" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "Schlagwort:" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" - -#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verfällt YYYY-MM-DD HH;MM" - -#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 -msgid "Share" -msgstr "Teilen" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "Link zur Seite" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "Veröffentlichen als" - -#: ../../include/conversation.php:1197 ../../mod/editpost.php:112 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:184 -#: ../../mod/editblock.php:141 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "Foto hochladen" - -#: ../../include/conversation.php:1199 ../../mod/editpost.php:113 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:185 -#: ../../mod/editblock.php:142 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "Datei anfügen" - -#: ../../include/conversation.php:1201 ../../mod/editpost.php:114 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:186 -#: ../../mod/editblock.php:143 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "Web-Link" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "Video-Link einfügen" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "Video-Link" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "Audio-Link einfügen" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "Audio-Link" - -#: ../../include/conversation.php:1207 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:190 -#: ../../mod/editblock.php:147 -msgid "Set your location" -msgstr "Legen Sie Ihren Standort fest" - -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "Standort festlegen" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" - -#: ../../include/conversation.php:1212 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:191 -#: ../../mod/editblock.php:148 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" - -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "Standort löschen" - -#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 -msgid "Title (optional)" -msgstr "Titel (optional)" - -#: ../../include/conversation.php:1219 ../../mod/editpost.php:137 -#: ../../mod/editlayout.php:162 ../../mod/editwebpage.php:209 -#: ../../mod/editblock.php:164 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" - -#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 -#: ../../mod/editblock.php:150 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "Berechtigungen" - -#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 -#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 -#: ../../mod/editblock.php:158 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: ../../include/conversation.php:1232 ../../mod/editpost.php:138 -#: ../../mod/editlayout.php:163 ../../mod/editwebpage.php:210 -#: ../../mod/editblock.php:165 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Beispiel: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1245 ../../mod/editpost.php:149 -#: ../../mod/editlayout.php:172 ../../mod/editwebpage.php:219 -#: ../../mod/editblock.php:175 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Verfallsdatum festlegen" - -#: ../../include/conversation.php:1249 ../../mod/events.php:674 -#: ../../mod/editpost.php:153 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1250 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:134 ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Cancel" -msgstr "Abbrechen" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "Entdecken" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" - -#: ../../include/conversation.php:1500 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" - -#: ../../include/conversation.php:1507 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" - -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" - -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "Neu" - -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" - -#: ../../include/conversation.php:1533 -msgid "Starred" -msgstr "Markiert" - -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" - -#: ../../include/conversation.php:1543 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" - -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "Über" - -#: ../../include/conversation.php:1605 -msgid "Profile Details" -msgstr "Profil-Details" - -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: ../../include/conversation.php:1623 -msgid "Files and Storage" -msgstr "Dateien und Speicher" - -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Chaträume" - -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" - -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" - -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" - -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" - -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" - -#: ../../include/items.php:413 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" -msgstr "Keine Berechtigung" - -#: ../../include/items.php:1101 ../../include/items.php:1147 +#: ../../include/items.php:885 ../../include/items.php:945 msgid "(Unknown)" msgstr "(Unbekannt)" -#: ../../include/items.php:1373 +#: ../../include/items.php:1133 msgid "Visible to anybody on the internet." msgstr "Für jeden im Internet sichtbar." -#: ../../include/items.php:1375 +#: ../../include/items.php:1135 msgid "Visible to you only." msgstr "Nur für Dich sichtbar." -#: ../../include/items.php:1377 +#: ../../include/items.php:1137 msgid "Visible to anybody in this network." -msgstr "Für jedes Mitglied der RedMatrix sichtbar." +msgstr "Für jedes $Projectname-Mitglied sichtbar." -#: ../../include/items.php:1379 +#: ../../include/items.php:1139 msgid "Visible to anybody authenticated." msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/items.php:1381 +#: ../../include/items.php:1141 #, php-format msgid "Visible to anybody on %s." msgstr "Für jeden auf %s sichtbar." -#: ../../include/items.php:1383 +#: ../../include/items.php:1143 msgid "Visible to all connections." msgstr "Für alle Verbindungen sichtbar." -#: ../../include/items.php:1385 +#: ../../include/items.php:1145 msgid "Visible to approved connections." msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/items.php:1387 +#: ../../include/items.php:1147 msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/items.php:4286 ../../mod/thing.php:74 -#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20 -#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225 -#: ../../mod/display.php:36 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../include/items.php:4197 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." -#: ../../include/items.php:4359 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:305 -#: ../../include/attach.php:319 ../../include/attach.php:350 -#: ../../include/attach.php:546 ../../include/attach.php:618 -#: ../../include/chat.php:131 ../../include/photos.php:26 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:269 -#: ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:249 ../../mod/group.php:9 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/network.php:12 -#: ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/editpost.php:13 -#: ../../mod/photos.php:69 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/mitem.php:111 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/editblock.php:65 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/setup.php:223 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/register.php:72 ../../mod/settings.php:570 ../../mod/id.php:71 -#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:348 -#: ../../mod/mail.php:114 ../../mod/notifications.php:66 -#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:100 ../../mod/channel.php:219 -#: ../../mod/channel.php:262 ../../mod/suggest.php:26 -#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:182 ../../index.php:393 -msgid "Permission denied." -msgstr "Zugang verweigert" - -#: ../../include/items.php:4763 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Sammlung nicht gefunden" - -#: ../../include/items.php:4779 -msgid "Collection is empty." -msgstr "Sammlung ist leer." - -#: ../../include/items.php:4786 +#: ../../include/items.php:4204 #, php-format -msgid "Collection: %s" -msgstr "Sammlung: %s" +msgid "Privacy group: %s" +msgstr "Gruppe: %s" -#: ../../include/items.php:4796 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" - -#: ../../include/items.php:4798 +#: ../../include/items.php:4216 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/zot.php:678 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/items.php:4565 +msgid "profile photo" +msgstr "Profilfoto" -#: ../../include/zot.php:694 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" - -#: ../../include/zot.php:2184 +#: ../../include/items.php:4756 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +msgid "[Edited %s]" +msgstr "[%s wurde bearbeitet]" -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/items.php:4756 +msgctxt "edit_activity" +msgid "Post" +msgstr "Beitrag" -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/items.php:4756 +msgctxt "edit_activity" +msgid "Comment" +msgstr "Kommentar" -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Ausgeloggt." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Login fehlgeschlagen." - -#: ../../include/contact_widgets.php:14 -#, 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 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "Fortgeschritten" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finde Kanäle" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 -#: ../../mod/directory.php:384 ../../mod/connections.php:273 -msgid "Find" -msgstr "Finde" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Zufallsprofil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Lade Freunde ein" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:125 -#, 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:130 -msgid "show more" -msgstr "mehr zeigen" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Anzeigen" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Nicht anzeigen" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:691 -#: ../../mod/photos.php:571 ../../mod/photos.php:934 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." - -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "Keine Quelldatei." - -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" - -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" - -#: ../../include/attach.php:410 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" - -#: ../../include/attach.php:422 -#, 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:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." - -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" - -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" - -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Pfad nicht gefunden." - -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." - -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." - -#: ../../include/identity.php:33 +#: ../../include/channel.php:35 msgid "Unable to obtain identity information from database" msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/identity.php:67 +#: ../../include/channel.php:68 msgid "Empty name" msgstr "Namensfeld leer" -#: ../../include/identity.php:70 +#: ../../include/channel.php:71 msgid "Name too long" msgstr "Name ist zu lang" -#: ../../include/identity.php:186 +#: ../../include/channel.php:188 msgid "No account identifier" -msgstr "Keine Account-Kennung" +msgstr "Keine Konten-Kennung" -#: ../../include/identity.php:198 +#: ../../include/channel.php:200 msgid "Nickname is required." msgstr "Spitzname ist erforderlich." -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." - -#: ../../include/identity.php:217 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." - -#: ../../include/identity.php:292 +#: ../../include/channel.php:277 msgid "Unable to retrieve created identity" msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/identity.php:350 +#: ../../include/channel.php:373 msgid "Default Profile" msgstr "Standard-Profil" -#: ../../include/identity.php:736 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "Geänderte Identität kann nicht empfangen werden" -#: ../../include/identity.php:783 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/webpages.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 -#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/editblock.php:29 ../../mod/filestorage.php:54 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." - -#: ../../include/identity.php:946 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Profilfoto ändern" - -#: ../../include/identity.php:952 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/identity.php:952 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/bearbeiten" - -#: ../../include/identity.php:953 ../../mod/profiles.php:775 +#: ../../include/channel.php:1297 msgid "Create New Profile" msgstr "Neues Profil erstellen" -#: ../../include/identity.php:968 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilfoto:" +#: ../../include/channel.php:1318 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../include/identity.php:971 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../include/identity.php:972 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../include/identity.php:988 ../../include/identity.php:1227 +#: ../../include/channel.php:1395 ../../include/channel.php:1523 msgid "Gender:" msgstr "Geschlecht:" -#: ../../include/identity.php:989 ../../include/identity.php:1271 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:990 ../../include/identity.php:1282 +#: ../../include/channel.php:1397 ../../include/channel.php:1591 msgid "Homepage:" msgstr "Homepage:" -#: ../../include/identity.php:991 +#: ../../include/channel.php:1398 msgid "Online Now" msgstr "gerade online" -#: ../../include/identity.php:1074 ../../include/identity.php:1152 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "l, j. F, G:i \\U\\h\\r" +#: ../../include/channel.php:1451 +msgid "Change your profile photo" +msgstr "Dein Profilfoto ändern" -#: ../../include/identity.php:1075 ../../include/identity.php:1153 -msgid "F d" -msgstr "d. F" +#: ../../include/channel.php:1482 +msgid "Trans" +msgstr "Trans" -#: ../../include/identity.php:1120 ../../include/identity.php:1192 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[Heute]" - -#: ../../include/identity.php:1131 -msgid "Birthday Reminders" -msgstr "Geburtstags Erinnerungen" - -#: ../../include/identity.php:1132 -msgid "Birthdays this week:" -msgstr "Geburtstage in dieser Woche:" - -#: ../../include/identity.php:1185 -msgid "[No description]" -msgstr "[Keine Beschreibung]" - -#: ../../include/identity.php:1203 -msgid "Event Reminders" -msgstr "Termin-Erinnerungen" - -#: ../../include/identity.php:1204 -msgid "Events this week:" -msgstr "Termine in dieser Woche:" - -#: ../../include/identity.php:1217 ../../include/identity.php:1334 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/identity.php:1225 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "Voller Name:" - -#: ../../include/identity.php:1232 +#: ../../include/channel.php:1528 msgid "Like this channel" msgstr "Dieser Kanal gefällt mir" -#: ../../include/identity.php:1256 +#: ../../include/channel.php:1552 msgid "j F, Y" msgstr "j. F Y" -#: ../../include/identity.php:1257 +#: ../../include/channel.php:1553 msgid "j F" msgstr "j. F" -#: ../../include/identity.php:1264 +#: ../../include/channel.php:1560 msgid "Birthday:" msgstr "Geburtstag:" -#: ../../include/identity.php:1268 ../../mod/directory.php:297 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/identity.php:1277 +#: ../../include/channel.php:1573 #, php-format msgid "for %1$d %2$s" msgstr "seit %1$d %2$s" -#: ../../include/identity.php:1280 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" - -#: ../../include/identity.php:1284 ../../mod/directory.php:313 -#: ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Heimatstadt:" - -#: ../../include/identity.php:1286 +#: ../../include/channel.php:1585 msgid "Tags:" msgstr "Schlagworte:" -#: ../../include/identity.php:1288 ../../mod/profiles.php:694 +#: ../../include/channel.php:1589 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" + +#: ../../include/channel.php:1595 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../include/identity.php:1290 +#: ../../include/channel.php:1597 msgid "Religion:" msgstr "Religion:" -#: ../../include/identity.php:1292 ../../mod/directory.php:315 -msgid "About:" -msgstr "Über:" - -#: ../../include/identity.php:1294 +#: ../../include/channel.php:1601 msgid "Hobbies/Interests:" msgstr "Hobbys/Interessen:" -#: ../../include/identity.php:1296 ../../mod/profiles.php:697 +#: ../../include/channel.php:1603 msgid "Likes:" msgstr "Gefällt:" -#: ../../include/identity.php:1298 ../../mod/profiles.php:698 +#: ../../include/channel.php:1605 msgid "Dislikes:" msgstr "Gefällt nicht:" -#: ../../include/identity.php:1300 +#: ../../include/channel.php:1607 msgid "Contact information and Social Networks:" msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/identity.php:1302 +#: ../../include/channel.php:1609 msgid "My other channels:" msgstr "Meine anderen Kanäle:" -#: ../../include/identity.php:1304 +#: ../../include/channel.php:1611 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: ../../include/identity.php:1306 +#: ../../include/channel.php:1613 msgid "Books, literature:" msgstr "Bücher, Literatur:" -#: ../../include/identity.php:1308 +#: ../../include/channel.php:1615 msgid "Television:" msgstr "Fernsehen:" -#: ../../include/identity.php:1310 +#: ../../include/channel.php:1617 msgid "Film/dance/culture/entertainment:" msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/identity.php:1312 +#: ../../include/channel.php:1619 msgid "Love/Romance:" msgstr "Liebe/Romantik:" -#: ../../include/identity.php:1314 +#: ../../include/channel.php:1621 msgid "Work/employment:" msgstr "Arbeit/Anstellung:" -#: ../../include/identity.php:1316 +#: ../../include/channel.php:1623 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/identity.php:1336 +#: ../../include/channel.php:1646 msgid "Like this thing" msgstr "Gefällt mir" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Männlich" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Größtenteils männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Zwitter" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Geschlechtslos" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "unklar" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Männer" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Frauen" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Schwul" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Keine Bevorzugung" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexuell" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Enthaltsam" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Jungfräulich" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Abweichend" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisch" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Unmengen" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Sexlos" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Einsam" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Verfügbar" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Verguckt" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Verknallt" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Treulos" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexabhängig" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Lose" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verlobt" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Verheiratet" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Informelle Ehe" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Glücklich" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Betrogen" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Getrennt" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Labil" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Geschieden" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Verwitwet" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Ungewiss" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es ist kompliziert" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Interessiert mich nicht" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Frag mich mal" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Hub-Administration" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adressbuch" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Laune" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Testen" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Empfehlen" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Zufälliger Kanal" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Einladen" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funktionen" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Sprache" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Beitrag" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "Aktualisieren" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installieren" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Kaufen" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" + +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/event.php:1011 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" + +#: ../../include/event.php:1227 +msgid "Not specified" +msgstr "Keine Angabe" + +#: ../../include/event.php:1228 +msgid "Needs Action" +msgstr "Aktion erforderlich" + +#: ../../include/event.php:1229 +msgid "Completed" +msgstr "Abgeschlossen" + +#: ../../include/event.php:1230 +msgid "In Process" +msgstr "In Bearbeitung" + +#: ../../include/event.php:1231 +msgid "Cancelled" +msgstr "gestrichen" + +#: ../../include/event.php:1310 ../../include/connections.php:692 +msgid "Home, Voice" +msgstr "Zuhause, Sprache" + +#: ../../include/event.php:1311 ../../include/connections.php:693 +msgid "Home, Fax" +msgstr "Zuhause, Fax" + +#: ../../include/event.php:1313 ../../include/connections.php:695 +msgid "Work, Voice" +msgstr "Arbeit, Sprache" + +#: ../../include/event.php:1314 ../../include/connections.php:696 +msgid "Work, Fax" +msgstr "Arbeit, Fax" + +#: ../../include/network.php:762 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" + +#: ../../include/network.php:1764 ../../include/network.php:1765 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:1766 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:1767 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:1768 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:1771 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:1772 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:1773 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:1774 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:1775 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:1776 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" + +#: ../../include/acl_selectors.php:115 +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:116 +msgid "Show" +msgstr "Anzeigen" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "Nicht anzeigen" + +#: ../../include/acl_selectors.php:150 +#, 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/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" + +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 +#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 +#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 +#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 +#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 +#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 +#: ../../include/bbcode.php:1239 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: ../../include/bbcode.php:178 +#: ../../include/bbcode.php:253 #, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " +msgid "Install %1$s element %2$s" +msgstr "Installiere %1$s Element %2$s" -#: ../../include/bbcode.php:182 +#: ../../include/bbcode.php:257 #, 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, allerdings fehlen dir die nötigen Rechte es auf dieser Seite zu installieren." +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:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "Webseite" +#: ../../include/bbcode.php:348 +msgid "card" +msgstr "Karte" -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "Gestaltung" +#: ../../include/bbcode.php:350 +msgid "article" +msgstr "Artikel" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "Block" +#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "Menü" +#: ../../include/bbcode.php:441 +msgid "spoiler" +msgstr "Spoiler" -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "QR-Code" +#: ../../include/bbcode.php:454 +msgid "View article" +msgstr "Artikel ansehen" -#: ../../include/bbcode.php:266 -#, 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:454 +msgid "View summary" +msgstr "Zusammenfassung ansehen" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "Beitrag" - -#: ../../include/bbcode.php:518 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" - -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "$1 Spoiler" - -#: ../../include/bbcode.php:756 +#: ../../include/bbcode.php:1188 msgid "$1 wrote:" msgstr "$1 schrieb:" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Der Chatraum hat keinen Namen" +#: ../../include/oembed.php:329 +msgid " by " +msgstr "von" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Name des Chatraums bereits vergeben" +#: ../../include/oembed.php:330 +msgid " on " +msgstr "am" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Ungültiger Raumbezeichner." +#: ../../include/oembed.php:359 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Chatraum konnte nicht gefunden werden." +#: ../../include/oembed.php:368 +msgid "Embedding disabled" +msgstr "Einbetten deaktiviert" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "Der Raum ist voll" - -#: ../../include/photos.php:94 +#: ../../include/zid.php:347 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Limit der Webseite von %lu bytes" +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s heißt %2$s willkommen" -#: ../../include/photos.php:101 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/features.php:56 +msgid "General Features" +msgstr "Allgemeine Funktionen" -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../include/features.php:61 +msgid "Display new member quick links menu" +msgstr "Zeigt neuen Mitgliedern ein Menü mit Schnell-Links zu wichtigen Funktionen" -#: ../../include/photos.php:199 -msgid "Photo storage failed." -msgstr "Foto speichern schlug fehl" +#: ../../include/features.php:69 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" -#: ../../include/photos.php:363 -msgid "Upload New Photos" -msgstr "Lade neue Fotos hoch" +#: ../../include/features.php:70 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" +#: ../../include/features.php:78 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" -#: ../../mod/manage.php:136 -#, 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." +#: ../../include/features.php:79 +msgid "Save and load profile details across sites/channels" +msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" +#: ../../include/features.php:87 +msgid "Web Pages" +msgstr "Webseiten" -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Aktueller Kanal" +#: ../../include/features.php:88 +msgid "Provide managed web pages on your channel" +msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." +#: ../../include/features.php:97 +msgid "Provide a wiki for your channel" +msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Standard Kanal" +#: ../../include/features.php:114 +msgid "Private Notes" +msgstr "Private Notizen" -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Zum Standard machen" +#: ../../include/features.php:115 +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)" -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +#: ../../include/features.php:124 +msgid "Create personal planning cards" +msgstr "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken" -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +#: ../../include/features.php:134 +msgid "Create interactive articles" +msgstr "Erstelle interaktive Artikel" -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Delegierte Kanäle" +#: ../../include/features.php:142 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 -#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 -#: ../../mod/display.php:13 -msgid "Public access denied." -msgstr "Öffentlicher Zugang verweigert." +#: ../../include/features.php:143 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" +#: ../../include/features.php:151 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../mod/directory.php:245 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../include/features.php:152 +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" -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "Status:" +#: ../../include/features.php:160 +msgid "Access Controlled Chatrooms" +msgstr "Zugriffskontrollierte Chaträume" -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "Webseite:" +#: ../../include/features.php:161 +msgid "Provide chatrooms and chat services with access control." +msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "Beschreibung:" +#: ../../include/features.php:170 +msgid "Smart Birthdays" +msgstr "Smarte Geburtstage" -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "Schlüsselwörter:" - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "Nicht vorschlagen." - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "Gemeinsame Verbindungen:" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "Globales Verzeichnis" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "Ergebnisse:" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "nächste Seite" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "vorherige Seite" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "Sortieroptionen" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "alphabetisch" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" - -#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 -msgid "Not found." -msgstr "Nicht gefunden." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." - -#: ../../mod/api.php:104 +#: ../../include/features.php:171 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?" +"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." -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../include/features.php:179 +msgid "Event Timezone Selection" +msgstr "Termin-Zeitzonenauswahl" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../include/features.php:180 +msgid "Allow event creation in timezones other than your own." +msgstr "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen." -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../include/features.php:189 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 -msgid "Remove" -msgstr "Entferne" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortfahren" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" - -#: ../../mod/connect.php:88 +#: ../../include/features.php:190 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." +"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" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 +#: ../../include/features.php:198 +msgid "Advanced Directory Search" +msgstr "Erweiterte Verzeichnissuche" + +#: ../../include/features.php:199 +msgid "Allows creation of complex directory search queries" +msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" + +#: ../../include/features.php:207 +msgid "Advanced Theme and Layout Settings" +msgstr "Erweiterte Design- und Layout-Einstellungen" + +#: ../../include/features.php:208 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" + +#: ../../include/features.php:217 +msgid "Access Control and Permissions" +msgstr "Zugriffskontrolle und Berechtigungen" + +#: ../../include/features.php:221 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Gruppen" + +#: ../../include/features.php:222 +msgid "Enable management and selection of privacy groups" +msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" + +#: ../../include/features.php:230 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" + +#: ../../include/features.php:231 +msgid "Ability to create multiple profiles" +msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" + +#: ../../include/features.php:241 +msgid "Provide alternate connection permission roles." +msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." + +#: ../../include/features.php:249 +msgid "OAuth1 Clients" +msgstr "OAuth1 Clients" + +#: ../../include/features.php:250 +msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." +msgstr "Verwalte OAuth1-Tokens für den Zugriff von mobilen bzw. externen Anwendungen." + +#: ../../include/features.php:258 +msgid "OAuth2 Clients" +msgstr "OAuth2 Clients" + +#: ../../include/features.php:259 +msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." +msgstr "Verwalte OAuth2-Tokens für den Zugriff von mobilen bzw. externen Anwendungen." + +#: ../../include/features.php:267 +msgid "Access Tokens" +msgstr "Zugangstokens" + +#: ../../include/features.php:268 +msgid "Create access tokens so that non-members can access private content." +msgstr "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte." + +#: ../../include/features.php:279 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" + +#: ../../include/features.php:283 +msgid "Large Photos" +msgstr "Große Fotos" + +#: ../../include/features.php:284 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." +"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." -#: ../../mod/connect.php:91 +#: ../../include/features.php:293 +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:301 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" + +#: ../../include/features.php:302 msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" +"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)" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 +#: ../../include/features.php:310 +msgid "Enable Voting Tools" +msgstr "Umfragewerkzeuge aktivieren" + +#: ../../include/features.php:311 +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:319 +msgid "Disable Comments" +msgstr "Kommentare deaktivieren" + +#: ../../include/features.php:320 +msgid "Provide the option to disable comments for a post" +msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" + +#: ../../include/features.php:328 +msgid "Delayed Posting" +msgstr "Verzögertes Senden" + +#: ../../include/features.php:329 +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:337 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" + +#: ../../include/features.php:338 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." + +#: ../../include/features.php:346 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Doppelte Beiträge unterdrücken" + +#: ../../include/features.php:347 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." +"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." -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" +#: ../../include/features.php:355 +msgid "Auto-save drafts of posts and comments" +msgstr "Auto-Speicherung von Beitrags- und Kommentarentwürfen" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "Sache aktualisiert" - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "Sache hinzugefügt" - -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "Sache anzeigen" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "Eintrag nicht gefunden" - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "Sache bearbeiten" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "Wähle ein Profil" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." - -#: ../../mod/profile_photo.php:206 +#: ../../include/features.php:356 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." +"Automatically saves post and comment drafts in local browser storage to help" +" prevent accidental loss of compositions" +msgstr "Speichert Deine Beitrags- und Kommentarentwürfe automatisch im lokalen Browserspeicher und hilft so, versehentlichem Verlust dieser Inhalte vorzubeugen" -#: ../../mod/profile_photo.php:233 +#: ../../include/features.php:367 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" + +#: ../../include/features.php:371 +msgid "Search by Date" +msgstr "Suche nach Datum" + +#: ../../include/features.php:372 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" + +#: ../../include/features.php:382 +msgid "Save search terms for re-use" +msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" + +#: ../../include/features.php:390 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" + +#: ../../include/features.php:391 +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:399 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" + +#: ../../include/features.php:400 +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:408 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" + +#: ../../include/features.php:409 +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:418 +msgid "Show friend and connection suggestions" +msgstr "Freund- und Verbindungsvorschläge anzeigen" + +#: ../../include/features.php:426 +msgid "Connection Filtering" +msgstr "Filter für Verbindungen" + +#: ../../include/features.php:427 +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:439 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" + +#: ../../include/features.php:443 +msgid "Community Tagging" +msgstr "Gemeinschaftliches Verschlagworten" + +#: ../../include/features.php:444 +msgid "Ability to tag existing posts" +msgstr "Ermöglicht das Verschlagworten existierender Beiträge" + +#: ../../include/features.php:452 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" + +#: ../../include/features.php:453 +msgid "Add categories to your posts" +msgstr "Aktiviert Kategorien für Beiträge" + +#: ../../include/features.php:461 +msgid "Emoji Reactions" +msgstr "Emoji Reaktionen" + +#: ../../include/features.php:462 +msgid "Add emoji reaction ability to posts" +msgstr "Aktiviert Emoji-Reaktionen für Beiträge" + +#: ../../include/features.php:471 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" + +#: ../../include/features.php:479 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht-Beiträge" + +#: ../../include/features.php:480 +msgid "Ability to dislike posts/comments" +msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" + +#: ../../include/features.php:488 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" + +#: ../../include/features.php:489 +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:497 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" + +#: ../../include/features.php:498 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "Meistbeachtet" + +#: ../../include/taxonomy.php:552 +msgid "Keywords" +msgstr "Schlüsselwörter" + +#: ../../include/taxonomy.php:573 +msgid "have" +msgstr "habe" + +#: ../../include/taxonomy.php:573 +msgid "has" +msgstr "hat" + +#: ../../include/taxonomy.php:574 +msgid "want" +msgstr "will" + +#: ../../include/taxonomy.php:574 +msgid "wants" +msgstr "will" + +#: ../../include/taxonomy.php:575 +msgid "likes" +msgstr "gefällt" + +#: ../../include/taxonomy.php:576 +msgid "dislikes" +msgstr "missfällt" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" + +#: ../../include/account.php:38 +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:44 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." + +#: ../../include/account.php:76 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." + +#: ../../include/account.php:158 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." + +#: ../../include/account.php:225 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." + +#: ../../include/account.php:314 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bild ist größer als das Limit von %d" +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "oder" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Bild zuschneiden" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." - -#: ../../mod/profile_photo.php:439 +#: ../../include/account.php:383 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "Reduzierung der Bildgröße [%s] fehlgeschlagen." +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../mod/block.php:27 ../../mod/page.php:36 -msgid "Invalid item." -msgstr "Ungültiges Element." +#: ../../include/account.php:405 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." - -#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 -#: ../../mod/page.php:89 ../../index.php:241 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ungültige Anfrage." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Sache" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." - -#: ../../mod/like.php:401 +#: ../../include/account.php:411 ../../include/account.php:473 #, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../mod/like.php:403 +#: ../../include/account.php:484 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." + +#: ../../include/account.php:524 #, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" -#: ../../mod/like.php:405 -#, 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" +#: ../../include/account.php:803 ../../include/account.php:805 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" +#: ../../include/account.php:811 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" +#: ../../include/account.php:816 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "Geburtstag" -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "Aktion durchgeführt." - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "Vielen Dank." - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "Termin nicht gefunden." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "l, j. F" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "Termin bearbeiten" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "Termin löschen" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "Kalender" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "Neuen Termin erstellen" - -#: ../../mod/events.php:505 ../../mod/photos.php:839 -msgid "Previous" -msgstr "Voriges" - -#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 -msgid "Next" -msgstr "Nächste" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "Exportieren" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "Import" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "Termin gelöscht" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "Termin-Details" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "Startdatum und Titel sind erforderlich." - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "Termin beginnt:" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "Ende Datum/Zeit sind unbekannt oder unwichtig" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "Termin endet:" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" - -#: ../../mod/events.php:680 -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." - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "Den Termin teilen" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Öffentliche Server" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links may " -"provide additional details." -msgstr "Die hier aufgeführten Server sind öffentlich und erlauben die Registrierung bei $Projectname. Alle Server dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Bewerte diesen Hub" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "Server-URL" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Zugangstyp" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" - -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Ort" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Bewertungen dieses Hubs ansehen" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Bewerten" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Bewertungen ansehen" - -#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 -msgid "Edit post" -msgstr "Bearbeite Beitrag" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "$Projectname-Kanal" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Sammlung erstellt." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Sammlung kann nicht erstellt werden." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Sammlung aktualisiert." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Erstelle eine Sammlung von Kanälen." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Name der Sammlung:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Sammlung gelöscht." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Löschen der Sammlung nicht möglich." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Sammlung-Editor" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Mitglieder" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" - -#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:64 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/siteinfo.php:156 -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." - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Schlagwort: " - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more" -" about $Projectname." -msgstr "Bitte besuchen Sie redmatrix.me, um mehr über $Projectname zu erfahren." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Administratoren" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." - -#: ../../mod/item.php:1153 -#, 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." - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Sammlung nicht gefunden" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "Kanal nicht gefunden" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "Sammlung ist leer" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Sammlung:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Verbindung:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Kein Kanal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." - -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Diese Website ist kein Verzeichnis-Server" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "Blockiert" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "Ignoriert" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "Versteckt" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "Archiviert" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "Neue Verbindungen vorschlagen" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Neue Verbindungen" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle Verbindungen" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "Freigegeben" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "Nur freigegebene Verbindungen anzeigen" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "Nur archivierte Verbindungen anzeigen" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "Ergebnisse:" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Datenblockname" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Titel des Blocks" - -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:76 -#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 -msgid "Item not found" -msgstr "Element nicht gefunden" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "Eintrag löschen?" - -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 -msgid "Insert YouTube video" -msgstr "YouTube-Video einfügen" - -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 -#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis [.ogg]-Video einfügen" - -#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 -#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis [.ogg]-Audio einfügen" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "$Projectname-Gäste: Benutzername: {Ihre E-Mail-Adresse}, Passwort: +++" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." - -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "Fotos hochladen" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "Foto ansehen" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "Karte" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "Album ansehen" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge mit Schlagwort: %s" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" - -#: ../../mod/match.php:31 -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." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "interessiert sich für:" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Abwesend" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beschreibung" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "Netzwerk" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Gestaltung aktualisiert." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Gestaltung nicht gefunden." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulname:" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "Gestaltungshilfe" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "– auswählen –" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Dein Vertrag erlaubt nur %d Kanäle." - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "Nichts zu importieren." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "Daten können vom alten Server nicht heruntergeladen werden" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "Die importierte Datei ist leer." - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "Die bereitgestellten Daten sind mit diesem Projekt nicht kompatibel." - -#: ../../mod/import.php:115 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." - -#: ../../mod/import.php:135 -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." - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "Kanal importieren" - -#: ../../mod/import.php:580 -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 RadMatrix-Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "Hochzuladende Datei:" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "Oder gib die Details Deines bisherigen Red-Servers ein" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "Bisherige Kanal-Adresse (xyz@example.com)" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "Deine alte Login-E-Mail-Adresse" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "Dein altes Passwort" - -#: ../../mod/import.php:586 -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 Red-Server 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." - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "Dieser Red-Server ist mein primärer Server." - -#: ../../mod/import.php:588 -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" - -#: ../../mod/import.php:589 -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." - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "Gestaltung löschen?" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Gestaltungsbeschreibung (Optional)" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Gestaltungsname" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "Gestaltung bearbeiten" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Raum verlassen" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Diesen Raum löschen" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Ich bin online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Name des Chatraums" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" - -#: ../../mod/mitem.php:24 ../../mod/menu.php:138 -msgid "Menu not found." -msgstr "Menü nicht gefunden" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" - -#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "Name des Links" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" - -#: ../../mod/mitem.php:158 -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." - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "Menü:" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "Ziel des Links" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "Menü bearbeiten" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "Bestandteil löschen" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "Neues Bestandteil" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "Link Text" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "Webseite löschen?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Seitentitel-Link" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Dieser Verzeichnis-Server benötigt ein Zugangstoken" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../mod/lostpass.php:63 -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." - -#: ../../mod/lostpass.php:86 ../../boot.php:1558 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" - -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ihr Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" - -#: ../../mod/lostpass.php:124 -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." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "E-Mail Adresse" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Webseite:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Entfernter Kanal [%s] (auf diesem Server noch unbekannt)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "Block löschen?" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "Block bearbeiten" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Schließe Dich uns an und werde Teil der Red-Matrix" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-Servers." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Gib folgenden Einladungs-Code ein:" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Server (sie sind alle miteinander verbunden)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oder besuche" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Klon nicht gefunden." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Der primäre Klon kann nicht gelöscht werden." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "URL (Adresse)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Primärer Klon" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Klon löschen" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Quelle erstellt." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Quelle aktualisiert." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Neue Quelle" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importieren Sie alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteilen Sie sie gemäß der Ihrer Kanaleinstellungen." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Name des Kanals" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Quelle nicht gefunden." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Quelle bearbeiten" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Quelle löschen" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Quelle gelöscht" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "Name des Menüs" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "Menütitel" - -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "Löschen" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "Menü bearbeiten" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "Menü Name" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "Menü Titel" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../mod/filestorage.php:154 -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" - -#: ../../mod/filestorage.php:155 -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" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Diese Datei freigeben" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Freundschaftsempfehlung senden." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Server nicht gefunden." - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Empfänger" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s ist fehlgeschlagen" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profil nicht gefunden." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Neues Profil erstellt." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil kann nicht geklont werden." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Dieses Profil kann nicht exportiert werden." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Familienstand" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Romantische Partner" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Gefällt" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Gefällt nicht" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Arbeit/Anstellung" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Geschlecht" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Sexuelle Orientierung" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Webseite" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Hobbys/Interessen" - -#: ../../mod/profiles.php:447 ../../mod/admin.php:994 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Bearbeite Profil-Details" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Dieses Profil ansehen" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Profilfoto ändern" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen übernehmen" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Dieses Profil klonen" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Profil aus einer Datei importieren" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Profil in eine Datei exportieren" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Profilname:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Dein voller Name:" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Geburtstag:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Straße und Hausnummer:" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Homepage URL:" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Schlüsselwörter:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Beispiel: Angeln Fotografie Software" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Wird in Verzeichnis-Auflistungen verwendet" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein wenig von Dir …" - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobbys/Interessen" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation und soziale Netzwerke" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Meine anderen Kanäle" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Fernsehen" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/Tanz/Kultur/Unterhaltung" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Das ist Dein Standardprofil." - -#: ../../mod/profiles.php:728 +#: ../../include/datetime.php:140 msgid "Age: " msgstr "Alter:" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Profile bearbeiten/verwalten" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Sachen zum Profil hinzufügen" +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Binde begehrenswerte Dinge in Dein Profil ein" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Keine Bewertungen" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Bewertungen" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Bewertung: " - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Webseite: " - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beschreibung: " - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Quelle des Elements" - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Server-Einrichtung" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "Systemprüfung" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "Bitte nochmal prüfen" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "Datenbank Verbindung" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktieren Sie Ihren Hosting-Provider oder Administrator, falls Sie Fragen zu diesen Einstellungen haben." - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "Datenbank-Servername" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "Standard ist localhost" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "Datenbank-Port" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "Datenbanktyp" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "URL der Webseite" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "Seiteneinstellungen" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "Das ist für die funktionierende Auslieferung von Nachrichten erforderlich." - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:454 +#: ../../include/datetime.php:262 #, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "PHP-Hochladebeschränkungen" +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "mysqli oder postgres PHP-Modul" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "xml-PHP-Modul" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" - -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite ist erforderlich, aber nicht installiert." - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL ist erforderlich, aber nicht installiert." - -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung ist erforderlich, aber nicht installiert." - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl ist erforderlich, aber nicht installiert." - -#: ../../mod/setup.php:536 -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." - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string ist erforderlich, aber nicht installiert." - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt ist erforderlich, aber nicht installiert." - -#: ../../mod/setup.php:548 -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." - -#: ../../mod/setup.php:566 -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." - -#: ../../mod/setup.php:567 -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." - -#: ../../mod/setup.php:568 -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 Red-Installation speichern musst." - -#: ../../mod/setup.php:569 -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." - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." - -#: ../../mod/setup.php:587 +#: ../../include/datetime.php:520 #, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses." +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -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." - -#: ../../mod/setup.php:589 +#: ../../include/datetime.php:521 #, 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." +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../mod/setup.php:592 +#: ../../include/nav.php:96 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" + +#: ../../include/nav.php:96 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" + +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" + +#: ../../include/nav.php:105 ../../include/nav.php:192 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" + +#: ../../include/nav.php:111 ../../include/nav.php:140 +msgid "End this session" +msgstr "Beende diese Sitzung" + +#: ../../include/nav.php:114 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../include/nav.php:117 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" + +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:157 +msgid "Take me home" +msgstr "Bringe mich nach Hause (eigener Kanal)" + +#: ../../include/nav.php:159 +msgid "Log me out of this site" +msgstr "Logge mich von dieser Seite aus" + +#: ../../include/nav.php:164 +msgid "Create an account" +msgstr "Erzeuge ein Konto" + +#: ../../include/nav.php:176 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../include/nav.php:179 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:199 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" + +#: ../../include/nav.php:290 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "@Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt" + +#: ../../include/nav.php:291 +msgid "Please wait..." +msgstr "Bitte warten..." + +#: ../../include/nav.php:297 +msgid "Add Apps" +msgstr "Apps hinzufügen" + +#: ../../include/nav.php:298 +msgid "Arrange Apps" +msgstr "Apps anordnen" + +#: ../../include/nav.php:299 +msgid "Toggle System Apps" +msgstr "System-Apps umschalten" + +#: ../../include/photos.php:150 #, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +#: ../../include/photos.php:161 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../include/photos.php:326 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." -#: ../../mod/setup.php:645 -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." +#: ../../include/photos.php:375 +msgid "a new photo" +msgstr "ein neues Foto" -#: ../../mod/setup.php:646 -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." - -#: ../../mod/setup.php:647 -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." - -#: ../../mod/setup.php:648 -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 Red-Server (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)." - -#: ../../mod/setup.php:649 -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." - -#: ../../mod/setup.php:650 -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." - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" - -#: ../../mod/setup.php:658 -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:" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" - -#: ../../mod/setup.php:670 -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." - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

Was als Nächstes

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 +#: ../../include/photos.php:379 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" -#: ../../mod/tagger.php:96 +#: ../../include/photos.php:671 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../include/zot.php:772 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" + +#: ../../include/zot.php:799 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" + +#: ../../include/zot.php:2552 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../mod/uexport.php:45 ../../mod/uexport.php:46 -msgid "Export Channel" -msgstr "Kanal exportieren" - -#: ../../mod/uexport.php:47 -msgid "" -"Export your basic channel information to a small 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 hub, but\tdoes 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." - -#: ../../mod/uexport.php:48 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" - -#: ../../mod/uexport.php:49 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as 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 Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Keine Verbindungen." - -#: ../../mod/viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" - -#: ../../mod/zfinger.php:23 +#: ../../include/zot.php:4219 msgid "invalid target signature" msgstr "Ungültige Signatur des Ziels" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "Seite" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Konten" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "Kanäle" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "Plug-Ins" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "Themes" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Profilkonfiguration" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "DB-Aktualisierungen" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "Protokolle" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "Anzahl der Konten" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "Anzahl der blockierten Konten" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "Anzahl der abgelaufenen Konten" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "Anzahl der ablaufenden Konten" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "Anzahl der Kanäle" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "Anzahl der primären Kanäle" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "Anzahl der Klone" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Zusammenfassung" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Registrierte Konten" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Registrierte Kanäle" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "experimentell" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "nicht unterstützt" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "Mein Server erlaubt nur bezahlten Zugang" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "Mein Server erlaubt ausschließlich freien Zugang" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrierung" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "Dateiupload" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "Richtlinien" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "Seitenname" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "Administrator-Informationen" - -#: ../../mod/admin.php:463 +#: ../../include/group.php:22 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "System-Sprache" +#: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "System-Theme" +#: ../../include/group.php:306 +msgid "edit" +msgstr "Bearbeiten" -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +#: ../../include/group.php:329 +msgid "Edit group" +msgstr "Gruppe ändern" -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../include/group.php:330 +msgid "Add privacy group" +msgstr "Gruppe hinzufügen" -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" +#: ../../include/group.php:331 +msgid "Channels not in any privacy group" +msgstr "Kanäle, die in keiner Gruppe sind" -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "Diaspora-Protokoll aktivieren" +#: ../../include/connections.php:133 +msgid "New window" +msgstr "Neues Fenster" -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunikation mit Diaspora und Friendica – experimentell" +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" +#: ../../include/auth.php:152 +msgid "Delegation session ended." +msgstr "" -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" +#: ../../include/auth.php:156 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../include/auth.php:273 +msgid "Email validation is incomplete. Please check your email." +msgstr "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)." -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." +#: ../../include/auth.php:289 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "Registrierungstext" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage des Servers, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "Homepage-URL schützen" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist." - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "Den „Entdecken“-Reiter ausblenden" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden." - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "Anmeldemaske auf der Homepage" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "Proxy Benutzer" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Setze den Zeitraum (in Tagen), ab wann importierte Inhalte aus der RedMatrix (dem Netzwerk) ablaufen sollen" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "Setze 0, damit importierte Inhalte niemals ablaufen (entfernt werden)" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "Kein Server gefunden" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "für Kanal" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "auf Server" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "Warteschlangenstatistiken" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "Einträge insgesamt" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "Priorität" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "Ziel-URL" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markieren" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "Warteschlange für diesen Hub leeren" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "Letzter bekannter Kontakt" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s Konto blockiert/freigegeben" -msgstr[1] "%s Konten blockiert/freigegeben" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s Konto gelöscht" -msgstr[1] "%s Konten gelöscht" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "Konto nicht gefunden" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "Konte '%s' gelöscht" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "Konto '%s' blockiert" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Konto '%s' freigegeben" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "Benutzer" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "Alle auswählen" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "Antragsdatum" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "Keine Registrierungen." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "Verweigern" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "Blockieren" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "Freigeben" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "Registrierungs-Datum" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "Verfällt" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "Service-Klasse" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Ausgewählte Konten werden gelöscht.\\n\\nAlles was diese Konten auf dieser Seite veröffentlicht haben wird permanent gelöscht werden!\\n\\nBist du dir sicher?" - -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Code für %s Kanal gesperrt/freigegeben." -msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code für Kanal '%s' freigegeben" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code für Kanal '%s' gesperrt." - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "Sperren" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "Freigeben" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "Code erlauben" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "Code nicht erlauben" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "Deaktivieren" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "Aktivieren" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "Umschalten" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "Keine Theme gefunden." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "Leeren" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "Protokolldatei" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis." - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "Protokollstufe" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "Neues Profilfeld" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "Kurzname für das Feld" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "Systemname des Feldes" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "Art des Inhalts" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "Feldname" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "Hilfetext" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator" - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrierung auf einem anderen, angeschlossenen Server" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Passwort" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" - -#: ../../mod/removeaccount.php:30 -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." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Dieses Konto löschen" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "WARNUNG: " - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" - -#: ../../mod/removeaccount.php:60 -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" - -#: ../../mod/removeaccount.php:60 -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 RedMatrix-Hub aus dem Netzwerk entfernt" - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "Konto entfernen" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +#: ../../include/help.php:34 msgid "Help:" msgstr "Hilfe:" -#: ../../mod/help.php:76 ../../index.php:238 +#: ../../include/help.php:78 msgid "Not Found" msgstr "Nicht gefunden" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "$Projectname Dokkumentation" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 ../../mod/update_public.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Name ist erforderlich" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis sind erforderlich" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "Diaspora-Richtlinieneinstellungen aktualisiert." - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "Kennwort geändert." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "Anwendung hinzufügen" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "Name der Anwendung" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "Umleitung" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "Symbol-URL" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "Optional" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "Diese Anwendung kann nicht bearbeitet werden." - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "Verbundene Apps" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "Kein Name" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "Keine Funktionseinstellungen konfiguriert" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "Funktions-/Addon-Einstellungen" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Einstellungen für den eingebauten Diaspora-Emulator" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Jedem Diaspora-Mitglied erlauben, Deine öffentlichen Beiträge zu kommentieren" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Diaspora-Protokoll für diesen Kanal aktivieren" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "Diaspora-Richtlinieneinstellungen" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Verhindern, dass Deine hashtags zu anderen Seiten umgeleitet werden" - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "Neues Passwort eingeben:" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "Neues Passwort bestätigen:" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "Email Adresse:" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "Dieses Konto inklusive all seiner Kanäle löschen" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "Aus" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "An" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "Verbindereinstellungen" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "Anzeigeeinstellungen" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "Theme-Einstellungen" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Theme-Einstellungen" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "Inhaltseinstellungen" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "Emoticons (Smilies) als Bilder anzeigen" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "Systemseitengestaltungseditor - (erweitert)" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "Blog-/Listenmodus auf der Matrixseite verwenden" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "Beliebige Verbindungen" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "Alle Red-Nutzer" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "Kanaleinstellungen" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" - -#: ../../mod/settings.php:1062 -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)" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutzeinstellungen" - -#: ../../mod/settings.php:1066 -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" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäreeinstellungen:" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" - -#: ../../mod/settings.php:1072 -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)" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" - -#: ../../mod/settings.php:1076 -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" - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäreeinstellungen" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "0 oder kein Inhalt verhindern das Verfallen" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "Standardmäßige Beitragsberechtigungen" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "Ungesehene Matrix-Aktivität" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "Empfohlen" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "Baldige Termine" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "Heutige Termine" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "System – Info-Nachrichten" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "Neue Verbindungen" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "System – Registrierungen" - -#: ../../mod/settings.php:1125 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentypeinstellungen" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Bitte aktivieren Sie den Expertenmodus (unter Einstellungen > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" - -#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Kanal löschen" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "Diesen Kanal löschen" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Vorname" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Nachname" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Spitzname" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Voller Name" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Zeitzone" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "Homepage-URL" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Geburtsjahr" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Geburtsmonat" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Geburtstag" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Geburtsdatum" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - G:i" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Stimmen insgesamt" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Durchschnittliche Bewertung" - -#: ../../mod/removeme.php:29 -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." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Diesen Kanal löschen" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" - -#: ../../mod/removeme.php:60 -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" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "Die Verbindung ist geblockt!" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "Nicht ignorieren" - -#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorieren" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "Die Verbindung wird ignoriert!" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "Archivieren" - -#: ../../mod/connedit.php:550 -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)" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "Die Verbindung ist archiviert." - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "Wieder sichtbar machen" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "Verstecken" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "Die Verbindung ist versteckt!" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "Verbindung löschen" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "Beziehung festlegen" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "Profil festlegen" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "Beziehung und Profile festlegen" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "Die Adresse des Kontakts lautet" - -#: ../../mod/connedit.php:680 -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 verwendet." - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "Verschieben, um deine Bewertung festzulegen" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "Optional kannst du deine Bewertung beschreiben" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "Benutzerdefinierter Filter" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "Importiere nur Beiträge mit diesem Text" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "Einzelne Worte pro Zeile, #Tags oder /Muster/. Frei lassen, um alle Posts zu importieren." - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "Importiere keine Einträge mit diesem Text" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "Diese Information ist öffentlich!" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "Verbindung wartet auf Bestätigung" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "Verbindungs Anfrage" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) möchte sich mit dir verbinden. Bitte genehmige die Verbindung um eine Kommunikation zu ermöglichen." - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "Bestätige später" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "geerbt" - -#: ../../mod/connedit.php:705 -#, 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." - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "Deren Einstellungen" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "Meine Einstellungen" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" - -#: ../../mod/connedit.php:711 -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 "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 bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." - -#: ../../mod/connedit.php:712 -msgid "" -"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." -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 bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Authentifizieren" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Konnte den Empfänger nicht finden." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Nachricht widerrufen." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "An:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Absenden" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Nachricht nicht gefunden." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Nachricht widerrufen" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Die Nachricht wurde widerrufen." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Private Unterhaltung" - -#: ../../mod/mail.php:338 -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." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Antwort senden" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Bitte melde dich an." - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Kanal hinzufügen" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oder importiere einen bestehenden Kanal von einem anderen Server" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltyp" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installiert." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Fehlerhafte App." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code einbetten" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bearbeiten" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App erstellen" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Name der App" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL zum Icon" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preis der App" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Gestaltungsbeschreibung" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "PDL-Datei herunterladen" - -#: ../../mod/home.php:73 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "Lorem Ipsum" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert spezielles Vorgehen, die Bearbeitung wurde blockiert." - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlass diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Umfrage" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Ergebnisse ansehen" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NEU" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Alle Dateien löschen" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Diese Datei löschen" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schemastandard" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace (dicktengleich)" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Theme-Einstellungen" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Schema festlegen" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Schriftart" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Symbolsatz festlegen" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ausmaß der großen Schatten (Default 15px 15px 15px)" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ausmaß der kleinen Schatten festlegen (Voreinstellung 5px 5px 5px)" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Schattenfarbe (Voreinstellung #000)" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Eckenradius (Voreinstellung 5px)" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Zeilenhöhe für Beiträge und Kommentare" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Hintergrundbild festlegen" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Hintergrunddatei" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Hintergrundfarbe festlegen" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Hintergrundbild für die section" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Hintergrundfarbe für die section" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Farbe für Beiträge – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Farbe für Links – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Maximalbreite von Beiträgen (Voreinstellung 400px)" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Minimalbreite von Beiträgen (Voreinstellung 240px)" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Breite des „generic content wrapper“ (Voreinstellung 48%)" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Schriftfarbe – Hex benutzen" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "size-Element für den Hintergrund" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Deckkraft für Beiträge" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Nur Beitragsvorschau anzeigen" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Seitenleiste auf der Kanalseite anzeigen" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Farbe der Navigationsleiste" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "float für Beiträge" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Linker offset des section-Elements" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Rechter offset des section-Elements" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Breite der section" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Linker offset der Seitenleiste" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Rechter offset der Seitenleiste" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Hell (RedMatrix-Voreinstellung)" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" -msgstr "Schema wählen" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Schmale Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Hintergrundfarbe der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Farbverlauf der Navigationsleiste: Farbe oben" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Farbverlauf der Navigationsleiste: Farbe unten" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Farbe für den Rand der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Farbe für die Icons der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Farbe für aktive Icons der Navigationsleiste" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Farbe für Links" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Farbe der Schrift des Banners" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Hintergrundfarbe festlegen" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Hintergrundbild festlegen" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Hintergrundfarbe für Beiträge festlegen" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Hintergrundfarbe für Kommentare festlegen" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Farbe des Randes von Kommentaren festlegen" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Einzugsbreite für Kommentare festlegen" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Grundfarbe für Beitragssymbole festlegen" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Farbe für Beitragssymbole unter dem Mauszeiger festlegen" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Schriftgröße für die gesamte Anwendung festlegen" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" -msgstr "Beispiel: 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Schriftfarbe für Beiträge und Kommentare festlegen" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Eckenradius festlegen" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Schattentiefe von Fotos festlegen" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of content region in pixel" -msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" -msgstr "Leer lassen für Standardbreite" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "Seiteninhalt zentrieren" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Größe der Avatare von Themenstartern festlegen" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Größe der Avatare von Kommentatoren festlegen" - -#: ../../boot.php:1355 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." - -#: ../../boot.php:1358 -#, php-format -msgid "Update Error at %s" -msgstr "Aktualisierungsfehler auf %s" - -#: ../../boot.php:1525 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können." - -#: ../../boot.php:1553 -msgid "Password" -msgstr "Kennwort" - -#: ../../boot.php:1554 -msgid "Remember me" -msgstr "Angaben speichern" - -#: ../../boot.php:1557 -msgid "Forgot your password?" -msgstr "Passwort vergessen?" - -#: ../../boot.php:2177 -msgid "toggle mobile" -msgstr "auf/von mobile Ansicht wechseln" - -#: ../../boot.php:2312 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." - -#: ../../boot.php:2315 -#, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Website-SSL-Fehler für %s" - -#: ../../boot.php:2352 -msgid "Cron/Scheduled tasks not running." -msgstr "Cron-Aufgaben laufen nicht." - -#: ../../boot.php:2356 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de-de/strings.php b/view/de-de/strings.php index 85bff2451..884267319 100644 --- a/view/de-de/strings.php +++ b/view/de-de/strings.php @@ -1,426 +1,1017 @@ 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 Sammlung 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 Sammlung den Zugriff erlauben. Wenn das nicht Dein Plan war, erstelle bitte eine neue Sammlung mit einem anderen Namen."; -App::$strings["Default privacy group for new contacts"] = "Standard-Sammlung für neue Kontakte"; -App::$strings["All Channels"] = "Alle Kanäle"; -App::$strings["edit"] = "Bearbeiten"; -App::$strings["Collections"] = "Sammlungen"; -App::$strings["Edit collection"] = "Sammlung bearbeiten"; -App::$strings["Add new collection"] = "Neue Sammlung hinzufügen"; -App::$strings["Channels not in any collection"] = "Kanäle, die nicht in einer Sammlung sind"; -App::$strings["add"] = "hinzufügen"; -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 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 ist erforderlich."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden"; -App::$strings["Please enter the required information."] = "Bitte gib die erforderlichen Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Account-Informationen 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."] = "Account bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s widerrufen"; -App::$strings["Account verified. Please login."] = "Konto geprüft. 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["Miscellaneous"] = "Verschiedenes"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["Required"] = "Erforderlich"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "vor weniger als einer Sekunde"; -App::$strings["year"] = "Jahr"; -App::$strings["years"] = "Jahre"; -App::$strings["month"] = "Monat"; -App::$strings["months"] = "Monate"; -App::$strings["week"] = "Woche"; -App::$strings["weeks"] = "Wochen"; -App::$strings["day"] = "Tag"; -App::$strings["days"] = "Tage"; -App::$strings["hour"] = "Stunde"; -App::$strings["hours"] = "Stunden"; -App::$strings["minute"] = "Minute"; -App::$strings["minutes"] = "Minuten"; -App::$strings["second"] = "Sekunde"; -App::$strings["seconds"] = "Sekunden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["No"] = "Nein"; -App::$strings["Yes"] = "Ja"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur diese Website"; -App::$strings["New Page"] = "Neue Seite"; -App::$strings["View"] = "Ansicht"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Actions"] = "Aktionen"; -App::$strings["Page Link"] = "Seiten-Link"; -App::$strings["Title"] = "Titel"; +App::$rtl = 0; +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 view my wiki pages"] = "Kann meine Wiki-Seiten sehen"; +App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; +App::$strings["Can write to my wiki pages"] = "Kann meine Wiki-Seiten bearbeiten"; +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["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Federation"] = "Soziales Netzwerk - Föderation (verbundene Netze)"; +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["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; +App::$strings["Permission denied."] = "Berechtigung verweigert."; +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["Public Timeline"] = "Öffentliche Zeitleiste"; -App::$strings["Default"] = "Standard"; -App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["[+] show all"] = "[+] Alle anzeigen"; -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"; -App::$strings["Secret Passphrase"] = "geheime Passphrase"; -App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -App::$strings["close all"] = "Alle schließen"; -App::$strings["Nothing new here"] = "Nichts Neues hier"; -App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -App::$strings["Rating"] = "Bewertung"; -App::$strings["Describe (optional)"] = "Beschreibung (optional)"; -App::$strings["Submit"] = "Bestätigen"; -App::$strings["Please enter a link URL"] = "Bitte geben Sie eine Link-URL ein"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Sind Sie sicher, dass Sie diese Seite verlassen möchten?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "her"; -App::$strings["from now"] = "von jetzt"; -App::$strings["less than a minute"] = "weniger als eine Minute"; -App::$strings["about a minute"] = "ungefähr eine Minute"; -App::$strings["%d minutes"] = "%d Minuten"; -App::$strings["about an hour"] = "ungefähr eine Stunde"; -App::$strings["about %d hours"] = "ungefähr %d Stunden"; -App::$strings["a day"] = "ein Tag"; -App::$strings["%d days"] = "%d Tage"; -App::$strings["about a month"] = "ungefähr ein Monat"; -App::$strings["%d months"] = "%d Monate"; -App::$strings["about a year"] = "ungefähr ein Jahr"; -App::$strings["%d years"] = "%d Jahre"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["prev"] = "vorherige"; -App::$strings["first"] = "erste"; -App::$strings["last"] = "letzte"; -App::$strings["next"] = "nächste"; -App::$strings["older"] = "älter"; -App::$strings["newer"] = "neuer"; -App::$strings["No connections"] = "Keine Verbindungen"; -App::$strings["%d Connection"] = array( - 0 => "%d Verbindung", - 1 => "%d Verbindungen", -); -App::$strings["View Connections"] = "Verbindungen anzeigen"; -App::$strings["Search"] = "Suche"; -App::$strings["Save"] = "Speichern"; -App::$strings["poke"] = "anstupsen"; -App::$strings["poked"] = "stupste"; -App::$strings["ping"] = "anpingen"; -App::$strings["pinged"] = "pingte"; -App::$strings["prod"] = "knuffen"; -App::$strings["prodded"] = "knuffte"; -App::$strings["slap"] = "ohrfeigen"; -App::$strings["slapped"] = "ohrfeigte"; -App::$strings["finger"] = "befummeln"; -App::$strings["fingered"] = "befummelte"; -App::$strings["rebuff"] = "eine Abfuhr erteilen"; -App::$strings["rebuffed"] = "zurückgewiesen"; -App::$strings["happy"] = "glücklich"; -App::$strings["sad"] = "traurig"; -App::$strings["mellow"] = "sanft"; -App::$strings["tired"] = "müde"; -App::$strings["perky"] = "frech"; -App::$strings["angry"] = "sauer"; -App::$strings["stupified"] = "verblüfft"; -App::$strings["puzzled"] = "verwirrt"; -App::$strings["interested"] = "interessiert"; -App::$strings["bitter"] = "verbittert"; -App::$strings["cheerful"] = "fröhlich"; -App::$strings["alive"] = "lebendig"; -App::$strings["annoyed"] = "verärgert"; -App::$strings["anxious"] = "unruhig"; -App::$strings["cranky"] = "schrullig"; -App::$strings["disturbed"] = "verstört"; -App::$strings["frustrated"] = "frustriert"; -App::$strings["depressed"] = "deprimiert"; -App::$strings["motivated"] = "motiviert"; -App::$strings["relaxed"] = "entspannt"; -App::$strings["surprised"] = "überrascht"; -App::$strings["Monday"] = "Montag"; -App::$strings["Tuesday"] = "Dienstag"; -App::$strings["Wednesday"] = "Mittwoch"; -App::$strings["Thursday"] = "Donnerstag"; -App::$strings["Friday"] = "Freitag"; -App::$strings["Saturday"] = "Samstag"; -App::$strings["Sunday"] = "Sonntag"; -App::$strings["January"] = "Januar"; -App::$strings["February"] = "Februar"; -App::$strings["March"] = "März"; -App::$strings["April"] = "April"; -App::$strings["May"] = "Mai"; -App::$strings["June"] = "Juni"; -App::$strings["July"] = "Juli"; -App::$strings["August"] = "August"; -App::$strings["September"] = "September"; -App::$strings["October"] = "Oktober"; -App::$strings["November"] = "November"; -App::$strings["December"] = "Dezember"; -App::$strings["unknown.???"] = "unbekannt.???"; -App::$strings["bytes"] = "Bytes"; -App::$strings["remove category"] = "Kategorie entfernen"; -App::$strings["remove from file"] = "aus der Datei entfernen"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["default"] = "Standard"; -App::$strings["Page layout"] = "Seitengestaltung"; -App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Gestaltungen erstellen"; -App::$strings["Page content type"] = "Art des Seiteninhalts"; -App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -App::$strings["photo"] = "Foto"; -App::$strings["event"] = "Termin"; -App::$strings["status"] = "Status"; -App::$strings["comment"] = "Kommentar"; -App::$strings["activity"] = "Aktivität"; -App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Menus"] = "Menüs"; -App::$strings["Layouts"] = "Gestaltungen"; -App::$strings["Pages"] = "Seiten"; -App::$strings["Collection"] = "Ordner"; -App::$strings["parent"] = "Übergeordnetes Verzeichnis"; -App::$strings["Principal"] = "Prinzipal"; -App::$strings["Addressbook"] = "Adressbuch"; -App::$strings["Calendar"] = "Kalender"; -App::$strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; -App::$strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; -App::$strings["Unknown"] = "Unbekannt"; -App::$strings["%1\$s used"] = "%1\$s verwendet"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s von %2\$s verwendet (%3\$s%)"; -App::$strings["Files"] = "Dateien"; -App::$strings["Total"] = "Summe"; -App::$strings["Shared"] = "Geteilt"; App::$strings["Create"] = "Erstelle"; -App::$strings["Upload"] = "Hochladen"; +App::$strings["Edit"] = "Bearbeiten"; +App::$strings["Share"] = "Teilen"; +App::$strings["Delete"] = "Löschen"; +App::$strings["View"] = "Ansicht"; +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["Submit"] = "Absenden"; +App::$strings["Articles"] = "Artikel"; +App::$strings["Add Article"] = "Artikel hinzufügen"; +App::$strings["Item not found"] = "Element nicht gefunden"; +App::$strings["Layout Name"] = "Layout-Name"; +App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; +App::$strings["Edit Layout"] = "Layout bearbeiten"; +App::$strings["Permission denied"] = "Keine Berechtigung"; +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["All Connections"] = "Alle Verbindungen"; +App::$strings["INVALID EVENT DISMISSED!"] = "UNGÜLTIGEN TERMIN ABGELEHNT!"; +App::$strings["Summary: "] = "Zusammenfassung:"; +App::$strings["Unknown"] = "Unbekannt"; +App::$strings["Date: "] = "Datum:"; +App::$strings["Reason: "] = "Grund:"; +App::$strings["INVALID CARD DISMISSED!"] = "UNGÜLTIGE KARTE ABGELEHNT!"; +App::$strings["Name: "] = "Name: "; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Beispiel: JJJJ-MM-TT HH:mm"; +App::$strings["End date and time"] = "Enddatum und -zeit"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Location"] = "Ort"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Today"] = "Heute"; +App::$strings["Month"] = "Monat"; +App::$strings["Week"] = "Woche"; +App::$strings["Day"] = "Tag"; +App::$strings["List month"] = "Liste Monat"; +App::$strings["List week"] = "Liste Woche"; +App::$strings["List day"] = "Liste Tag"; +App::$strings["More"] = "Mehr"; +App::$strings["Less"] = "Weniger"; +App::$strings["Select calendar"] = "Kalender auswählen"; +App::$strings["Delete all"] = "Alles löschen"; +App::$strings["Cancel"] = "Abbrechen"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen ist leider noch nicht implementiert."; App::$strings["Name"] = "Name"; -App::$strings["Type"] = "Typ"; +App::$strings["Organisation"] = "Organisation"; +App::$strings["Title"] = "Titel"; +App::$strings["Phone"] = "Telefon"; +App::$strings["Email"] = "E-Mail"; +App::$strings["Instant messenger"] = "Sofortnachrichtendienst"; +App::$strings["Website"] = "Webseite"; +App::$strings["Address"] = "Adresse"; +App::$strings["Note"] = "Hinweis"; +App::$strings["Mobile"] = "Mobil"; +App::$strings["Home"] = "Home"; +App::$strings["Work"] = "Arbeit"; +App::$strings["Add Contact"] = "Kontakt hinzufügen"; +App::$strings["Add Field"] = "Feld hinzufügen"; +App::$strings["Update"] = "Aktualisieren"; +App::$strings["P.O. Box"] = "Postfach"; +App::$strings["Additional"] = "Zusätzlich"; +App::$strings["Street"] = "Straße"; +App::$strings["Locality"] = "Ortschaft"; +App::$strings["Region"] = "Region"; +App::$strings["ZIP Code"] = "Postleitzahl"; +App::$strings["Country"] = "Land"; +App::$strings["Default Calendar"] = "Standardkalender"; +App::$strings["Default Addressbook"] = "Standardadressbuch"; +App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; +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["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["Welcome to Hubzilla!"] = "Willkommen bei Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "Du hast keine ungelesenen Beiträge..."; +App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; +App::$strings["Search"] = "Suche"; +App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; +App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; +App::$strings["Public Stream"] = "Öffentlicher Beitrags-Stream"; +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["Change Order of Pinned Navbar Apps"] = "Reihenfolge der in der Navigation angepinnten Apps ändern"; +App::$strings["Change Order of App Tray Apps"] = "Reihenfolge der Apps im App-Menü ändern"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Benutze die Pfeil-Knöpfe, um die jeweilige App in der Navigationsleiste nach links (oben) oder rechts (unten) zu bewegen"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Benutze die Pfeil-Knöpfe, um die jeweilige App im App-Menü nach oben oder unten zu bewegen"; +App::$strings["Menu not found."] = "Menü nicht gefunden"; +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["Not found."] = "Nicht gefunden."; +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["No"] = "Nein"; +App::$strings["Yes"] = "Ja"; +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["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["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["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["Edit Location"] = "Ort bearbeiten"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Timezone:"] = "Zeitzone:"; +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["Export"] = "Exportieren"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +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["Please login."] = "Bitte melde dich an."; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["photo"] = "Foto"; +App::$strings["status"] = "Status"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr"; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Article"] = "Artikel bearbeiten"; +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"; +App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +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["File to Upload"] = "Hochzuladende Datei:"; +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["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 Privatsphä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 a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Ein Kanal ist eine eindeutige Identität. Er kann eine Person (Soziales Netzwerk-Profil), ein Forum (Gruppe), eine Unternehmens- oder Prominenten-Seite, einen Newsfeed oder viele andere Dinge repräsentieren. Kanäle können Verbindungen mit anderen Kanälen eingehen, um Informationen miteinander auszutauschen."; +App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "Die Art des Kanals, den Du erzeugst, beeinflusst die grundlegenden Privatsphäre-Einstellungen, die Rechte, die Verbindungen/Freunden gewährt werden, und auch die Sichtbarkeit des Kanals im gesamten Netzwerk."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["Validate"] = "Überprüfe"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; +App::$strings["Remove This Channel"] = "Diesen Kanal löschen"; +App::$strings["WARNING: "] = "WARNUNG: "; +App::$strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; +App::$strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!"; +App::$strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; +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["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; +App::$strings["NEW"] = "NEU"; App::$strings["Size"] = "Größe"; App::$strings["Last Modified"] = "Zuletzt geändert"; -App::$strings["Delete"] = "Löschen"; -App::$strings["Create new folder"] = "Neuen Ordner anlegen"; -App::$strings["Upload file"] = "Datei hochladen"; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Danke."; -App::$strings["%s Administrator"] = "der Administrator von %s"; -App::$strings["No Subject"] = "Kein Betreff"; -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"] = "Lösche Beiträge, Kommentare und/oder private Nachrichten automatisch zu einem zukünftigen Datum."; -App::$strings["Multiple Profiles"] = "Mehrfachprofile"; -App::$strings["Ability to create multiple profiles"] = "Mehrfachprofile anlegen können"; -App::$strings["Advanced Profiles"] = "Erweiterte Profile"; -App::$strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; -App::$strings["Profile Import/Export"] = "Profil-Import/Export"; -App::$strings["Save and load profile details across sites/channels"] = "Speichere Dein Profil, um es in einen anderen Kanal zu importieren"; -App::$strings["Web Pages"] = "Webseiten"; -App::$strings["Provide managed web pages on your channel"] = "Stelle verwaltete Webseiten in Deinem Kanal zur Verfügung"; -App::$strings["Private Notes"] = "Private Notizen"; -App::$strings["Enables a tool to store notes and reminders"] = "Aktiviert ein Werkzeug zum Speichern von Notizen und Erinnerungen"; -App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Wechsle direkt über das Navigationsmenü zu anderen Kanälen"; -App::$strings["Photo Location"] = "Aufnahmeort"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Aufnahmeort des Fotos auf einer Karte verlinken, falls verfügbar."; -App::$strings["Expert Mode"] = "Expertenmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviere den Expertenmodus, um fortgeschrittene Konfigurationsoptionen zu aktivieren"; -App::$strings["Premium Channel"] = "Premium-Kanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; -App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; -App::$strings["Use Markdown"] = "Markdown benutzen"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Erlaube die Verwendung von \"Markdown\"-Syntax zur Formatierung von Beiträgen"; -App::$strings["Large Photos"] = "Große Fotos"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Große Vorschaubilder (640px) in Beiträgen anzeigen. Ist dies deaktiviert, werden kleine Vorschaubilder (320px) angezeigt."; -App::$strings["Channel Sources"] = "Kanal-Quellen"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importiere automatisch Inhalte für diesen Kanal von anderen Kanälen oder Feeds"; -App::$strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Erlaube optionale Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Sicherheitsschlüssel)"; -App::$strings["Enable voting tools"] = "Umfragewerkzeuge aktivieren"; -App::$strings["Provide a class of post which others can vote on"] = "Aktiviere die Umfragewerkzeuge, damit andere Benutzer über Deine Beiträge abstimmen können. Muss im Beitrag selbst noch aktiviert werden."; -App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; -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["Collections Filter"] = "Filter für Sammlung"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Aktiviere nur Netzwerk-Beiträge von ausgewählten Sammlungen"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -App::$strings["Save search terms for re-use"] = "Suchbegriffe zur Wiederverwendung abspeichern"; -App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviere Reiter nur für die Netzwerk-Beiträge, mit denen Du interagiert hast"; -App::$strings["Network New Tab"] = "Netzwerkreiter Neu"; -App::$strings["Enable tab to display all new Network activity"] = "Aktiviere Reiter, um alle neuen Netzwerkaktivitäten zu zeigen"; -App::$strings["Affinity Tool"] = "Beziehungswerkzeug"; -App::$strings["Filter stream activity by depth of relationships"] = "Filter Aktivitätenstream nach Tiefe der Beziehung"; -App::$strings["Connection Filtering"] = "Filter für Sammlungen"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtere eingehende Beiträge von Kontakten auf der Basis von Schlüsselwörtern und dem Inhalt."; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; -App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentarwerkzeuge"; -App::$strings["Tagging"] = "Verschlagworten"; -App::$strings["Ability to tag existing posts"] = "Möglichkeit, um existierende Beiträge zu verschlagworten"; -App::$strings["Post Categories"] = "Beitrags-Kategorien"; -App::$strings["Add categories to your posts"] = "Kategorien 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"] = "„Gefällt mir nicht“ ermöglichen"; -App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; -App::$strings["Ability to mark special posts with a star indicator"] = "Möglichkeit, spezielle Beiträge mit Sternchen-Symbol zu markieren"; -App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Persönliche Schlagwort-Wolke auf Deiner Kanal-Seite anzeigen"; -App::$strings["Categories"] = "Kategorien"; -App::$strings["Apps"] = "Apps"; -App::$strings["System"] = "System"; -App::$strings["Personal"] = "Persönlich"; -App::$strings["Create Personal App"] = "Persönliche App erstellen"; -App::$strings["Edit Personal App"] = "Persönliche App bearbeiten"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -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 the channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: 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["Me"] = "Ich"; -App::$strings["Family"] = "Familie"; -App::$strings["Friends"] = "Freunde"; -App::$strings["Acquaintances"] = "Bekannte"; -App::$strings["All"] = "Alle"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Kontoeinstellungen"; -App::$strings["Channel settings"] = "Kanaleinstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Funktion-/Addon-Einstellungen"; -App::$strings["Display settings"] = "Anzeigeeinstellungen"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -App::$strings["Premium Channel Settings"] = "Premium-Kanaleinstellungen"; +App::$strings["Remove all files"] = "Alle Dateien löschen"; +App::$strings["Remove this file"] = "Diese Datei löschen"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; +App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; +App::$strings["Could not create table."] = "Konnte Tabelle nicht erstellen."; +App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Systemprüfung"; +App::$strings["Check again"] = "Nochmal prüfen"; +App::$strings["Database connection"] = "Datenbankverbindung"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; +App::$strings["Database Server Name"] = "Datenbankservername"; +App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1"; +App::$strings["Database Port"] = "Datenbankport"; +App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; +App::$strings["Database Login Name"] = "Datenbank-Benutzername"; +App::$strings["Database Login Password"] = "Datenbank-Passwort"; +App::$strings["Database Name"] = "Datenbankname"; +App::$strings["Database Type"] = "Datenbanktyp"; +App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +App::$strings["Website URL"] = "Webseiten-URL"; +App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; +App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; +App::$strings["Site settings"] = "Seiteneinstellungen"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP-Version 5.5 oder höher ist erforderlich."; +App::$strings["PHP version"] = "PHP-Version"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; +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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; +App::$strings["PHP executable path"] = "PHP-Pfad zu ausführbarer Datei"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; +App::$strings["Command line PHP"] = "PHP-Befehlszeile"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Prüfung auf Kommandozeilen-PHP fehlgeschlagen, da shell_exec() deaktiviert ist. Dies wird aber benötigt."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; +App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Du kannst diese Einstellungen in der php.ini - Datei des Servers anpassen."; +App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel erzeugen"; +App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +App::$strings["PDO database PHP module"] = "PDO-Datenbank-PHP-Modul"; +App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +App::$strings["xml PHP module"] = "xml-PHP-Modul"; +App::$strings["zip PHP module"] = "zip 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."; +App::$strings["exec"] = "exec"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Fehler: exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Fehler: shell_exec ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; +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: PDO database PHP module required but not installed."] = "Fehler: PDO-Datenbank-PHP-Modul ist erforderlich, aber nicht 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: 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["Error: zip PHP module required but not installed."] = "Fehler: Das zip PHP Modul ist erforderlich, ist aber nicht installiert."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; +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."; +App::$strings["Please see install/INSTALL.txt for additional information."] = "Lies die Datei \"install/INSTALL.txt\"."; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Diese Software verwendet die Smarty3 Template Engine, um Vorlagen für die Webdarstellung zu verarbeiten. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; +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."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses."; +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 top level web folder"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Web-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."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; +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"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; +App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; +App::$strings["

What next?

"] = "

Wie geht es jetzt weiter?

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; +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["Queue Statistics"] = "Warteschlangenstatistiken"; +App::$strings["Total Entries"] = "Einträge insgesamt"; +App::$strings["Priority"] = "Priorität"; +App::$strings["Destination URL"] = "Ziel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; +App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; +App::$strings["Last known contact"] = "Letzter Kontakt"; +App::$strings["Off"] = "Aus"; +App::$strings["On"] = "An"; +App::$strings["Lock feature %s"] = "Blockiere die Funktion %s"; +App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten"; +App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; +App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; +App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; +App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; +App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; +App::$strings["Item not found."] = "Element nicht gefunden."; +App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; +App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +App::$strings["Disable"] = "Deaktivieren"; +App::$strings["Enable"] = "Aktivieren"; +App::$strings["Administration"] = "Administration"; +App::$strings["Plugins"] = "Plug-Ins"; +App::$strings["Toggle"] = "Umschalten"; App::$strings["Settings"] = "Einstellungen"; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Check Mail"] = "E-Mails abrufen"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Chat Rooms"] = "Chaträume"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -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["Location:"] = "Ort:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Benachrichtigung] Neue Mail auf %s empfangen"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; -App::$strings["a private message"] = "eine private Nachricht"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Hinweis] %s schrieb auf Deine Pinnwand"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s hat auf Deine Pinnwand auf %3\$s geschrieben"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s hat auf [zrl=%3\$s]Deine Pinnwand[/zrl] geschrieben"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Benachrichtigung] %s hat Dich erwähnt"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s erwähnt"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]hat Dich erwähnt[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Benachrichtigung] %1\$s hat Dich angestupst"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s hat Dich auf %3\$s angestupst"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]hat Dich angestupst[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s hat Deinen Beitrag auf %3\$s verschlagwortet"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen Beitrag[/zrl] verschlagwortet"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Benachrichtigung] Vorstellung erhalten"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, Du hast eine neue Verbindungsanfrage von '%2\$s' auf %3\$s erhalten"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, Du hast [zrl=%2\$s]eine neue Verbindungsanfrage[/zrl] von %3\$s erhalten."; -App::$strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Benachrichtigung] Freundschaftsvorschlag erhalten"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, Du hast einen Kontaktvorschlag von „%2\$s“ auf %3\$s erhalten"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, Du hast [zrl=%2\$s]einen Kontaktvorschlag[/zrl] für %3\$s von %4\$s erhalten."; -App::$strings["Name:"] = "Name:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; -App::$strings["[Red:Notify]"] = "[Red:Benachrichtigung]"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[kein Betreff]"; -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["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -App::$strings["Please choose"] = "Bitte auswählen"; -App::$strings["Agree"] = "Zustimmen"; -App::$strings["Disagree"] = "Ablehnen"; -App::$strings["Abstain"] = "Enthalten"; -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["Protocol blocked for this channel."] = "Das Protokoll wurde für diesen Kanal blockiert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["local account not found."] = "Lokales Konto nicht gefunden."; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["Private Message"] = "Private Nachricht"; -App::$strings["Select"] = "Auswählen"; -App::$strings["Save to Folder"] = "In Ordner speichern"; -App::$strings["I will attend"] = "Ich werde teilnehmen"; -App::$strings["I will not attend"] = "Ich werde nicht teilnehmen"; -App::$strings["I might attend"] = "Ich werde vielleicht teilnehmen"; -App::$strings["I agree"] = "Ich stimme zu"; -App::$strings["I disagree"] = "Ich lehne ab"; -App::$strings["I abstain"] = "Ich enthalte mich"; +App::$strings["Author: "] = "Autor: "; +App::$strings["Maintainer: "] = "Betreuer:"; +App::$strings["Minimum project version: "] = "Minimale Version des Projekts:"; +App::$strings["Maximum project version: "] = "Maximale Version des Projekts:"; +App::$strings["Minimum PHP version: "] = "Minimale PHP Version:"; +App::$strings["Compatible Server Roles: "] = "Kompatible Serverrollen: "; +App::$strings["Requires: "] = "Benötigt:"; +App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."; +App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL"; +App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name"; +App::$strings["(optional)"] = "(optional)"; +App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen"; +App::$strings["Install new repo"] = "Neues Repository installieren"; +App::$strings["Install"] = "Installieren"; +App::$strings["Manage Repos"] = "Repositorien verwalten"; +App::$strings["Installed Plugin Repositories"] = "Installierte Plugin-Repositorien"; +App::$strings["Install a New Plugin Repository"] = "Ein neues Plugin-Repository installieren"; +App::$strings["Switch branch"] = "Zweig/Branch wechseln"; +App::$strings["Remove"] = "Entfernen"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", +); +App::$strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", +); +App::$strings["Account not found"] = "Konto nicht gefunden"; +App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; +App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; +App::$strings["Accounts"] = "Konten"; +App::$strings["select all"] = "Alle auswählen"; +App::$strings["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung"; +App::$strings["Request date"] = "Antragsdatum"; +App::$strings["No registrations."] = "Keine Registrierungen."; +App::$strings["Approve"] = "Genehmigen"; +App::$strings["Deny"] = "Verweigern"; +App::$strings["Block"] = "Blockieren"; +App::$strings["Unblock"] = "Freigeben"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "Alle Kanäle"; +App::$strings["Register date"] = "Registrierungs-Datum"; +App::$strings["Last login"] = "Letzte Anmeldung"; +App::$strings["Expires"] = "Verfällt"; +App::$strings["Service Class"] = "Service-Klasse"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +App::$strings["Logs"] = "Protokolle"; +App::$strings["Clear"] = "Leeren"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "Protokolldatei"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."; +App::$strings["Log level"] = "Protokollstufe"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s Kanal gesperrt/freigegeben", + 1 => "%s Kanäle gesperrt/freigegeben", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Code für %s Kanal gesperrt/freigegeben", + 1 => "Code für %s Kanäle gesperrt/freigegeben", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s Kanal gelöscht", + 1 => "%s Kanäle gelöscht", +); +App::$strings["Channel not found"] = "Kanal nicht gefunden"; +App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; +App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; +App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; +App::$strings["Channels"] = "Kanäle"; +App::$strings["Censor"] = "Sperren"; +App::$strings["Uncensor"] = "Freigeben"; +App::$strings["Allow Code"] = "Code erlauben"; +App::$strings["Disallow Code"] = "Code sperren"; +App::$strings["Channel"] = "Kanal"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; +App::$strings["Theme settings updated."] = "Design-Einstellungen aktualisiert."; +App::$strings["No themes found."] = "Keine Designs gefunden."; +App::$strings["Screenshot"] = "Bildschirmfoto"; +App::$strings["Themes"] = "Designs"; +App::$strings["[Experimental]"] = "[Experimentell]"; +App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; +App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +App::$strings["Default"] = "Standard"; +App::$strings["%s - (Incompatible)"] = "%s - (Inkompatibel)"; +App::$strings["mobile"] = "mobil"; +App::$strings["experimental"] = "experimentell"; +App::$strings["unsupported"] = "nicht unterstützt"; +App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; +App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; +App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff"; +App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +App::$strings["Beginner/Basic"] = "Anfänger/Basis"; +App::$strings["Novice - not skilled but willing to learn"] = "Anfänger - unerfahren, aber bereit zu lernen"; +App::$strings["Intermediate - somewhat comfortable"] = "Fortgeschritten - relativ komfortabel"; +App::$strings["Advanced - very comfortable"] = "Fortgeschritten - sehr komfortabel"; +App::$strings["Expert - I can write computer code"] = "Experte - Ich kann Computercode schreiben"; +App::$strings["Wizard - I probably know more than you do"] = "Zauberer - ich kann wahrscheinlich mehr als Du"; +App::$strings["Site"] = "Seite"; +App::$strings["Registration"] = "Registrierung"; +App::$strings["File upload"] = "Dateiupload"; +App::$strings["Policies"] = "Richtlinien"; +App::$strings["Advanced"] = "Fortgeschritten"; +App::$strings["Site name"] = "Seitenname"; +App::$strings["Site default technical skill level"] = "Standard-Qualifikationsstufe der Website"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten."; +App::$strings["Lock the technical skill level setting"] = "Sperre die technische Qualifikationsstufe"; +App::$strings["Members can set their own technical comfort level by default"] = "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Ungefiltertes HTML/CSS/JS ist erlaubt"; +App::$strings["Administrator Information"] = "Administrator-Informationen"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +App::$strings["Site Information"] = "Seiteninformationen"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden."; +App::$strings["System language"] = "System-Sprache"; +App::$strings["System theme"] = "System-Design"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern"; +App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; +App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; +App::$strings["Maximum image size"] = "Maximale Bildgröße"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +App::$strings["Invitation only"] = "Nur mit Einladung"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; +App::$strings["Minimum age"] = "Mindestalter"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; +App::$strings["Register text"] = "Registrierungstext"; +App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; +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."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; +App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; +App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; +App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +App::$strings["Force publish"] = "Veröffentlichung erzwingen"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; +App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["Site only Public Streams"] = "Öffentlichen Beitragsstrom auf diesen Server beschränken"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; +App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird."; +App::$strings["Reply-to email address for system generated email."] = "Antwortadresse (reply-to) für Emails, die vom System generiert wurden."; +App::$strings["Sender (From) email address for system generated email."] = "Absenderadresse (from) für Emails, die vom System generiert wurden."; +App::$strings["Name of email sender for system generated email."] = "Name des Versenders von Emails, die vom System generiert wurden."; +App::$strings["Directory Server URL"] = "Verzeichnisserver-URL"; +App::$strings["Default directory server"] = "Standard-Verzeichnisserver"; +App::$strings["Proxy user"] = "Proxy Benutzer"; +App::$strings["Proxy URL"] = "Proxy URL"; +App::$strings["Network timeout"] = "Netzwerk-Timeout"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; +App::$strings["Delivery interval"] = "Auslieferung Intervall"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; +App::$strings["Queue Threshold"] = "Warteschlangen-Grenzwert"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält."; +App::$strings["Poll interval"] = "Abfrageintervall"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +App::$strings["Path to ImageMagick convert program"] = "Pfad zum ImageMagick-Programm convert"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Erlaube SVG-Vorschaubilder im Dateibrowser"; +App::$strings["WARNING: SVG images may contain malicious code."] = "Warnung: SVG-Grafiken können Schadcode enthalten."; +App::$strings["Maximum Load Average"] = "Maximales Load Average"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; +App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Lass keine Beiträge verfallen die Kommentare haben, die jünger als diese Anzahl von Tagen sind."; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung"; +App::$strings["Create this page first. Default is %s/register"] = "Erstelle zunächst die entsprechende Seite. Standard ist %s/register"; +App::$strings["Page to display after creating a new channel"] = "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll"; +App::$strings["Recommend: profiles, go, or settings"] = "Empfohlen: profiles, go oder settings"; +App::$strings["Optional: site location"] = "Optional: Standort der Website"; +App::$strings["Region or country"] = "Region oder Land"; +App::$strings["New Profile Field"] = "Neues Profilfeld"; +App::$strings["Field nickname"] = "Kurzname für das Feld"; +App::$strings["System name of field"] = "Systemname des Feldes"; +App::$strings["Input type"] = "Art des Inhalts"; +App::$strings["Field Name"] = "Feldname"; +App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +App::$strings["Help text"] = "Hilfetext"; +App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; +App::$strings["Save"] = "Speichern"; +App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; +App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; +App::$strings["Profile Fields"] = "Profil Felder"; +App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder"; +App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder"; +App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)"; +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["Password changed for account %d."] = "Passwort für Konto %d geändert."; +App::$strings["Account settings updated."] = "Kontoeinstellungen aktualisiert."; +App::$strings["Account not found."] = "Konto nicht gefunden."; +App::$strings["Account Edit"] = "Kontobearbeitung"; +App::$strings["New Password"] = "Neues Passwort"; +App::$strings["New Password again"] = "Neues Passwort wiederholen"; +App::$strings["Technical skill level"] = "Technische Qualifikationsstufe"; +App::$strings["Account language (for emails)"] = "Kontosprache (für E-Mails)"; +App::$strings["Service class"] = "Dienstklasse"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"; +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."] = "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert."; +App::$strings["Security"] = "Sicherheit"; +App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header"; +App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; +App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Servern/Domains erlauben"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben."; +App::$strings["Block communications from these sites"] = "Kommunikation von diesen Servern/Domains blockieren"; +App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. "; +App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains"; +App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert."; +App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Servern/Domains blockieren"; +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["__ctx:acl__ Profile"] = "Profil"; +App::$strings["Comment approved"] = "Kommentar bestätigt"; +App::$strings["Comment deleted"] = "Kommentar gelöscht"; +App::$strings["Permission Name is required."] = "Der Name der Berechtigung wird benötigt."; +App::$strings["Permission category saved."] = "Berechtigungsrolle gespeichert."; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Verwende dieses Formular, um Berechtigungsrollen für verschiedene Gruppen von Personen oder Verbindungen zu erstellen."; +App::$strings["Permission Categories"] = "Berechtigungsrollen"; +App::$strings["Permission Name"] = "Name der Berechtigungsrolle"; +App::$strings["My Settings"] = "Meine Einstellungen"; +App::$strings["inherited"] = "geerbt"; +App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; +App::$strings["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."] = "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."; +App::$strings["Friends"] = "Freunde"; +App::$strings["Settings updated."] = "Einstellungen aktualisiert."; +App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst"; +App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; +App::$strings["Approved connections"] = "Angenommene Verbindungen"; +App::$strings["Any connections"] = "Beliebige Verbindungen"; +App::$strings["Anybody on this website"] = "Jeder auf dieser Website"; +App::$strings["Anybody in this network"] = "Alle \$Projectname-Mitglieder"; +App::$strings["Anybody authenticated"] = "Jeder authentifizierte"; +App::$strings["Anybody on the internet"] = "Jeder im Internet"; +App::$strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; +App::$strings["or"] = "oder"; +App::$strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "Deine Dateien/Fotos sind via WebDAV verfügbar auf"; +App::$strings["Channel Settings"] = "Kanal-Einstellungen"; +App::$strings["Basic Settings"] = "Grundeinstellungen"; +App::$strings["Full Name:"] = "Voller Name:"; +App::$strings["Email Address:"] = "Email Adresse:"; +App::$strings["Your Timezone:"] = "Ihre Zeitzone:"; +App::$strings["Default Post Location:"] = "Standardstandort:"; +App::$strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; +App::$strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; +App::$strings["Adult Content"] = "Nicht jugendfreie Inhalte"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutz-Einstellungen"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; +App::$strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; +App::$strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; +App::$strings["Simple Privacy Settings:"] = "Einfache Privatsphäre-Einstellungen"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; +App::$strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; +App::$strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; +App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; +App::$strings["Channel Permission Limits"] = "Kanal-Berechtigungslimits"; +App::$strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; +App::$strings["0 or blank to use the website limit."] = "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden."; +App::$strings["This website expires after %d days."] = "Diese Webseite läuft nach %d Tagen ab."; +App::$strings["This website does not expire imported content."] = "Diese Webseite lässt importierte Inhalte nicht verfallen."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist."; +App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; +App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; +App::$strings["Default Privacy Group"] = "Standard-Gruppe"; +App::$strings["Use my default audience setting for the type of object published"] = "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps"; +App::$strings["Profile to assign new connections"] = "Profil, welches neuen Verbindungen zugewiesen wird"; +App::$strings["Default Permissions Group"] = "Standard-Berechtigungsgruppe"; +App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; +App::$strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; +App::$strings["Notification Settings"] = "Benachrichtigungs-Einstellungen"; +App::$strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; +App::$strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; +App::$strings["joining a forum/community"] = "Du einem Forum beitrittst"; +App::$strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; +App::$strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; +App::$strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; +App::$strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; +App::$strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; +App::$strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; +App::$strings["You receive a private message"] = "Du eine private Nachricht erhältst"; +App::$strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; +App::$strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; +App::$strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; +App::$strings["Someone likes your post/comment"] = "Jemand mag Ihren Beitrag/Kommentar"; +App::$strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; +App::$strings["Unseen grid activity"] = "Ungesehene Netzwerk-Aktivität"; +App::$strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; +App::$strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; +App::$strings["Recommended"] = "Empfohlen"; +App::$strings["Upcoming events"] = "Baldige Termine"; +App::$strings["Events today"] = "Heutige Termine"; +App::$strings["Upcoming birthdays"] = "Baldige Geburtstage"; +App::$strings["Not available in all themes"] = "Nicht in allen Designs verfügbar"; +App::$strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; +App::$strings["System info messages"] = "System – Info-Nachrichten"; +App::$strings["System critical alerts"] = "System – kritische Warnungen"; +App::$strings["New connections"] = "Neue Verbindungen"; +App::$strings["System Registrations"] = "System – Registrierungen"; +App::$strings["Unseen shared files"] = "Ungesehene geteilte Dateien"; +App::$strings["Unseen public activity"] = "Ungesehene öffentliche Aktivität"; +App::$strings["Unseen likes and dislikes"] = "Ungesehene Likes und Dislikes"; +App::$strings["Email notification hub (hostname)"] = "Hub für E-Mail-Benachrichtigungen (Hostname)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Zeige neue Pinnwand Beiträge, private Nachrichten und Verbindungen unter den Notizen an."; +App::$strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; +App::$strings["Must be greater than 0"] = "Muss größer als 0 sein"; +App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Konten- und Seitenart-Einstellungen"; +App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Kontos unter speziellen Umständen"; +App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; +App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; +App::$strings["%Y - current year, %m - current month"] = "%Y - aktuelles Jahr, %m - aktueller Monat"; +App::$strings["Default file upload folder"] = "Voreingestellter Ordner für hochgeladene Dateien"; +App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; +App::$strings["Remove this channel."] = "Diesen Kanal löschen"; +App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-Provider für Firefox Share"; +App::$strings["Start calendar week on Monday"] = "Beginne die kalendarische Woche am Montag"; +App::$strings["Additional Features"] = "Zusätzliche Funktionen"; +App::$strings["Your technical skill level"] = "Deine technische Qualifikationsstufe"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)."; +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["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 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["Their Settings"] = "Deren Einstellungen"; +App::$strings["Name and Secret are required"] = "Name und Geheimnis werden benötigt"; +App::$strings["Add OAuth2 application"] = "OAuth2 Anwendung hinzufügen"; +App::$strings["Name of application"] = "Name der Anwendung"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; +App::$strings["Redirect"] = "Umleitung"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; +App::$strings["Grant Types"] = "Genehmigungsarten"; +App::$strings["leave blank unless your application sepcifically requires this"] = "Frei lassen, es sei denn die Anwendung verlangt dies."; +App::$strings["Authorization scope"] = "Rahmen der Berechtigungen"; +App::$strings["OAuth2 Application not found."] = "OAuth2 Anwendung konnte nicht gefunden werden"; +App::$strings["Add application"] = "Anwendung hinzufügen"; +App::$strings["Connected OAuth2 Apps"] = "Verbundene OAuth2 Anwendungen"; +App::$strings["Client key starts with"] = "Client Key beginnt mit"; +App::$strings["No name"] = "Kein Name"; +App::$strings["Remove authorization"] = "Authorisierung aufheben"; +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."; +App::$strings["Technical skill level updated"] = "Technische Qualifikationsstufe aktualisiert"; +App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen."; +App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; +App::$strings["Password changed."] = "Kennwort geändert."; +App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; +App::$strings["Account Settings"] = "Konto-Einstellungen"; +App::$strings["Current Password"] = "Aktuelles Passwort"; +App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; +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["Remove Account"] = "Konto entfernen"; +App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +App::$strings["Affinity Slider settings updated."] = "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert."; +App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; +App::$strings["Default maximum affinity level"] = "Voreinstellung für maximalen Beziehungsgrad"; +App::$strings["0-99 default 99"] = "0-99 - Standard 99"; +App::$strings["Default minimum affinity level"] = "Voreinstellung für minimalen Beziehungsgrad"; +App::$strings["0-99 - default 0"] = "0-99 - Standard 0"; +App::$strings["Affinity Slider Settings"] = "Beziehungsgrad-Schieberegler-Einstellungen"; +App::$strings["Addon Settings"] = "Addon-Einstellungen"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest."; +App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; +App::$strings["Display Settings"] = "Anzeige-Einstellungen"; +App::$strings["Theme Settings"] = "Design-Einstellungen"; +App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Design-Einstellungen"; +App::$strings["Content Settings"] = "Inhaltseinstellungen"; +App::$strings["Display Theme:"] = "Anzeige-Design:"; +App::$strings["Select scheme"] = "Schema wählen"; +App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; +App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; +App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; +App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; +App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; +App::$strings["Provide channel menu in navigation bar"] = "Kanal-Menü in der Navigationsleiste zur Verfügung stellen"; +App::$strings["Default: channel menu located in app menu"] = "Voreinstellung: Kanal-Menü ist im App-Menü integriert"; +App::$strings["Manual conversation updates"] = "Manuelle Konversationsaktualisierung"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen."; +App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; +App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; +App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; +App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; +App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden"; +App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; +App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; +App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"; +App::$strings["Name is required"] = "Name ist erforderlich"; +App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Icon url"] = "Symbol-URL"; +App::$strings["Optional"] = "Optional"; +App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden."; +App::$strings["Connected Apps"] = "Verbundene Apps"; +App::$strings["View Photo"] = "Foto ansehen"; +App::$strings["Edit Album"] = "Album bearbeiten"; +App::$strings["Upload"] = "Hochladen"; +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["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["Permissions"] = "Berechtigungen"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Connection added."] = "Verbindung hinzugefügt"; +App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +App::$strings["Import completed."] = "Import abgeschlossen."; +App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +App::$strings["Import Channel"] = "Kanal importieren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; +App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; +App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +App::$strings["Your old login password"] = "Dein altes Passwort"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; +App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; +App::$strings["Move this channel (disable all previous locations)"] = "Verschiebe diesen Kanal (deaktiviere alle vorherigen Adressen/Klone)"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importiere die Beiträge einiger Monate, sofern möglich (beschränkt durch verfügbaren 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["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["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["Import"] = "Import"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Security Code:"] = "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode 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["Item not available."] = "Element nicht verfügbar."; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["vcard"] = "VCard"; +App::$strings["Apps"] = "Apps"; +App::$strings["Manage apps"] = "Apps verwalten"; +App::$strings["Create new app"] = "Neue App erstellen"; +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["Active"] = "Aktiv"; +App::$strings["Blocked"] = "Blockiert"; +App::$strings["Ignored"] = "Ignoriert"; +App::$strings["Hidden"] = "Versteckt"; +App::$strings["Archived/Unreachable"] = "Archiviert/Unerreichbar"; +App::$strings["New"] = "Neu"; +App::$strings["All"] = "Alle"; +App::$strings["Active Connections"] = "Aktive Verbindungen"; +App::$strings["Show active connections"] = "Zeige die aktiven Verbindungen an"; +App::$strings["New Connections"] = "Neue Verbindungen"; +App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; +App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; +App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; +App::$strings["Only show archived/unreachable connections"] = "Nur archivierte/unerreichbare Verbindungen anzeigen"; +App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; +App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; +App::$strings["Pending approval"] = "Wartet auf Genehmigung"; +App::$strings["Archived"] = "Archiviert"; +App::$strings["Not connected at this location"] = "An diesem Ort nicht verbunden"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Verbindung bearbeiten"; +App::$strings["Delete connection"] = "Verbindung löschen"; +App::$strings["Channel address"] = "Kanaladresse"; +App::$strings["Network"] = "Netzwerk"; +App::$strings["Call"] = "Anruf"; +App::$strings["Status"] = "Status"; +App::$strings["Connected"] = "Verbunden"; +App::$strings["Approve connection"] = "Verbindung genehmigen"; +App::$strings["Ignore connection"] = "Verbindung ignorieren"; +App::$strings["Ignore"] = "Ignorieren"; +App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; +App::$strings["Connections"] = "Verbindungen"; +App::$strings["Search your connections"] = "Verbindungen durchsuchen"; +App::$strings["Connections search"] = "Verbindung suchen"; +App::$strings["Find"] = "Finde"; +App::$strings["item"] = "Beitrag"; +App::$strings["Source of Item"] = "Quelle des Elements"; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +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"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht."; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem \$Projectname-Hub aus dem Netzwerk entfernt"; +App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +App::$strings["Album not found."] = "Album nicht gefunden."; +App::$strings["Delete Album"] = "Album löschen"; +App::$strings["Delete Photo"] = "Foto löschen"; +App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; +App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +App::$strings["Upload Photos"] = "Fotos hochladen"; +App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; +App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; +App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; +App::$strings["Description (optional)"] = "Beschreibung (optional)"; +App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; +App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +App::$strings["Add Photos"] = "Fotos hinzufügen"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +App::$strings["Photo not available"] = "Foto nicht verfügbar"; +App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; +App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; +App::$strings["Private Photo"] = "Privates Foto"; +App::$strings["View Full Size"] = "In voller Größe anzeigen"; +App::$strings["Edit photo"] = "Foto bearbeiten"; +App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +App::$strings["Move photo to album"] = "Foto in Album verschieben"; +App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +App::$strings["Please wait"] = "Bitte warten"; +App::$strings["This is you"] = "Das bist Du"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; +App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; +App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; +App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; +App::$strings["__ctx:title__ Attending"] = "Zusagen"; +App::$strings["__ctx:title__ Not attending"] = "Absagen"; +App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; App::$strings["View all"] = "Alles anzeigen"; App::$strings["__ctx:noun__ Like"] = array( 0 => "Gefällt mir", @@ -430,6 +1021,787 @@ App::$strings["__ctx:noun__ Dislike"] = array( 0 => "Gefällt nicht", 1 => "Gefällt nicht", ); +App::$strings["Photo Tools"] = "Fotowerkzeuge"; +App::$strings["In This Photo:"] = "Auf diesem Foto:"; +App::$strings["Map"] = "Karte"; +App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +App::$strings["Close"] = "Schließen"; +App::$strings["Recent Photos"] = "Neueste Fotos"; +App::$strings["Profile Unavailable."] = "Profil nicht verfügbar."; +App::$strings["Not found"] = "Nicht gefunden"; +App::$strings["Invalid channel"] = "Ungültiger Kanal"; +App::$strings["Error retrieving wiki"] = "Fehler beim Abrufen des Wiki"; +App::$strings["Error creating zip file export folder"] = "Fehler bei der Erzeugung des Zip-Datei Export-Verzeichnisses "; +App::$strings["Error downloading wiki: "] = "Fehler beim Herunterladen des Wiki:"; +App::$strings["Wikis"] = "Wikis"; +App::$strings["Download"] = "Herunterladen"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Wiki name"] = "Name des Wiki"; +App::$strings["Content type"] = "Inhaltstyp"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Text"; +App::$strings["Type"] = "Typ"; +App::$strings["Any type"] = "Alle Arten"; +App::$strings["Lock content type"] = "Inhaltstyp sperren"; +App::$strings["Create a status post for this wiki"] = "Erzeuge einen Statusbeitrag für dieses Wiki"; +App::$strings["Edit Wiki Name"] = "Wiki-Namen bearbeiten"; +App::$strings["Wiki not found"] = "Wiki nicht gefunden"; +App::$strings["Rename page"] = "Seite umbenennen"; +App::$strings["Error retrieving page content"] = "Fehler beim Abrufen des Seiteninhalts"; +App::$strings["New page"] = "Neue Seite"; +App::$strings["Revision Comparison"] = "Revisionsvergleich"; +App::$strings["Revert"] = "Rückgängig machen"; +App::$strings["Short description of your changes (optional)"] = "Kurze Beschreibung Ihrer Änderungen (optional)"; +App::$strings["Source"] = "Quelle"; +App::$strings["New page name"] = "Neuer Seitenname"; +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["Error creating wiki. Invalid name."] = "Fehler beim Erstellen des Wiki. Ungültiger Name."; +App::$strings["A wiki with this name already exists."] = "Es existiert bereits ein Wiki mit diesem Namen."; +App::$strings["Wiki created, but error creating Home page."] = "Das Wiki wurde erzeugt, aber es gab einen Fehler bei der Erstellung der Startseite"; +App::$strings["Error creating wiki"] = "Fehler beim Erstellen des Wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Fehler beim Aktualisieren des Wikis. Ungültiger Name."; +App::$strings["Error updating wiki"] = "Fehler beim Aktualisieren des Wikis"; +App::$strings["Wiki delete permission denied."] = "Wiki-Löschberechtigung verweigert."; +App::$strings["Error deleting wiki"] = "Fehler beim Löschen des Wiki"; +App::$strings["New page created"] = "Neue Seite erstellt"; +App::$strings["Cannot delete Home"] = "Kann die Startseite nicht löschen"; +App::$strings["Current Revision"] = "Aktuelle Revision"; +App::$strings["Selected Revision"] = "Ausgewählte Revision"; +App::$strings["You must be authenticated."] = "Sie müssen authenzifiziert sein."; +App::$strings["toggle full screen mode"] = "auf Vollbildmodus umschalten"; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["(modified)"] = "(geändert)"; +App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Edit another layout"] = "Ein weiteres Layout bearbeiten"; +App::$strings["System layout"] = "System-Layout"; +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["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +App::$strings["Profile Photos"] = "Profilfotos"; +App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +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["Unable to process image"] = "Kann Bild nicht verarbeiten"; +App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +App::$strings["Photo not available."] = "Foto nicht verfügbar."; +App::$strings["Upload File:"] = "Datei hochladen:"; +App::$strings["Select a profile:"] = "Wähle ein Profil:"; +App::$strings["Use Photo for Profile"] = "Foto für Profil verwenden"; +App::$strings["Change Profile Photo"] = "Profilfoto ändern"; +App::$strings["Use"] = "Verwenden"; +App::$strings["Use a photo from your albums"] = "Ein Foto aus meinen Alben verwenden"; +App::$strings["Select existing photo"] = "Wähle ein vorhandenes Foto aus"; +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["Away"] = "Abwesend"; +App::$strings["Online"] = "Online"; +App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; +App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +App::$strings["Your comment is awaiting approval."] = "Dein Kommentar muss noch bestätigt werden."; +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["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["requires approval"] = "Zustimmung erforderlich"; +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["shared a file with you"] = "hat eine Datei mit Dir geteilt"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Page not found."] = "Seite 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["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."; +App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; +App::$strings["is now connected to"] = "ist jetzt verbunden mit"; +App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; +App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; +App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; +App::$strings["View Profile"] = "Profil ansehen"; +App::$strings["View %s's profile"] = "%ss Profil ansehen"; +App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; +App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abrufen"; +App::$strings["Refresh Photo"] = "Foto aktualisieren"; +App::$strings["Fetch updated photo"] = "Aktualisiertes Profilfoto abrufen"; +App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; +App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; +App::$strings["Unignore"] = "Nicht ignorieren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; +App::$strings["Unarchive"] = "Aus Archiv zurückholen"; +App::$strings["Archive"] = "Archivieren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; +App::$strings["Unhide"] = "Wieder sichtbar machen"; +App::$strings["Hide"] = "Verstecken"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; +App::$strings["Delete this connection"] = "Verbindung löschen"; +App::$strings["Fetch Vcard"] = "Vcard abrufen"; +App::$strings["Fetch electronic calling card for this connection"] = "Rufe eine digitale Visitenkarte für diese Verbindung ab"; +App::$strings["Open Individual Permissions section by default"] = "Öffne standardmäßig den Bereich für individuelle Berechtigungen"; +App::$strings["Affinity"] = "Beziehung"; +App::$strings["Open Set Affinity section by default"] = "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen"; +App::$strings["Me"] = "Ich"; +App::$strings["Family"] = "Familie"; +App::$strings["Acquaintances"] = "Bekannte"; +App::$strings["Filter"] = "Filter"; +App::$strings["Open Custom Filter section by default"] = "Öffne standardmäßig den Bereich für benutzerdefinierte Filter"; +App::$strings["Approve this connection"] = "Verbindung genehmigen"; +App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; +App::$strings["Set Affinity"] = "Beziehung festlegen"; +App::$strings["Set Profile"] = "Profil festlegen"; +App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; +App::$strings["This connection is unreachable from this location."] = "Diese Verbindung ist von diesem Ort unerreichbar."; +App::$strings["This connection may be unreachable from other channel locations."] = "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein."; +App::$strings["Location independence is not supported by their network."] = "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt."; +App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +App::$strings["Connection: %s"] = "Verbindung: %s"; +App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; +App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; +App::$strings["Permission role"] = "Berechtigungsrolle"; +App::$strings["Loading"] = "Lädt..."; +App::$strings["Add permission role"] = "Berechtigungsrolle hinzufügen"; +App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; +App::$strings["Available locations:"] = "Verfügbare Klone:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; +App::$strings["Connection Tools"] = "Verbindungswerkzeuge"; +App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; +App::$strings["Rating"] = "Bewertung"; +App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; +App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; +App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; +App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "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."; +App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; +App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; +App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +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["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["Details"] = "Details"; +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["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Files"] = "Dateien"; +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["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["Layouts"] = "Layouts"; +App::$strings["Help"] = "Hilfe"; +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["Please refresh page"] = "Bitte die Seite neu laden"; +App::$strings["Unknown error"] = "Unbekannter Fehler"; +App::$strings["Token verification failed."] = "Überprüfung des Verifizierungscodes fehlgeschlagen."; +App::$strings["Email Verification Required"] = "Email-Überprüfung erforderlich"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint."; +App::$strings["Resend Email"] = "Email erneut versenden"; +App::$strings["Validation token"] = "Verifizierungscode"; +App::$strings["Post not found."] = "Beitrag nicht gefunden."; +App::$strings["post"] = "Beitrag"; +App::$strings["comment"] = "Kommentar"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +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["If enabled, connection requests will be approved without your interaction"] = "Ist dies aktiviert, werden Verbindungsanfragen ohne Deine aktive Zustimmung bestätigt."; +App::$strings["Automatic approval settings"] = "Einstellungen für automatische Bestätigung"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Einige individuelle Berechtigungen können basierend auf Deinen Kanal- und Privatsphäre-Einstellungen vorbelegt oder gesperrt sein."; +App::$strings["Unknown App"] = "Unbekannte Anwendung"; +App::$strings["Authorize"] = "Berechtigen"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "Willst du die Anwendung %s dazu berechtigen auf die Daten deines Kanals zuzugreifen?"; +App::$strings["Allow"] = "Erlauben"; +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."; +App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert."; +App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle."; +App::$strings["Privacy group name: "] = "Gruppenname:"; +App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; +App::$strings["Privacy group removed."] = "Gruppe wurde entfernt."; +App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden."; +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["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["Gender"] = "Geschlecht"; +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["Relationship"] = "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["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["Homepage URL"] = "Homepage-URL"; +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["Communications"] = "Kommunikation"; +App::$strings["Profile Image"] = "Profilfoto:"; +App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["This page is available only to site members"] = "Diese Seite ist nur für Mitglieder verfügbar"; +App::$strings["Welcome"] = "Willkommen"; +App::$strings["What would you like to do?"] = "Was möchtest Du gerne tun?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest."; +App::$strings["Upload a profile photo"] = "Ein Profilfoto hochladen"; +App::$strings["Upload a cover photo"] = "Ein Titelbild hochladen"; +App::$strings["Edit your default profile"] = "Dein Standardprofil bearbeiten"; +App::$strings["View friend suggestions"] = "Freundschafts- und Verbindungsvorschläge ansehen"; +App::$strings["View the channel directory"] = "Das Kanalverzeichnis ansehen"; +App::$strings["View/edit your channel settings"] = "Deine Kanaleinstellungen ansehen/bearbeiten"; +App::$strings["View the site or project documentation"] = "Die Website-/Projektdokumentation ansehen"; +App::$strings["Visit your channel homepage"] = "Deine Kanal-Startseite aufrufen"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["Page link"] = "Seiten-Link"; +App::$strings["Edit Webpage"] = "Webseite bearbeiten"; +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["Cards"] = "Karten"; +App::$strings["Add Card"] = "Karte hinzufügen"; +App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; +App::$strings["About this site"] = "Über diese Seite"; +App::$strings["Site Name"] = "Seitenname"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["Terms of Service"] = "Nutzungsbedingungen"; +App::$strings["Software and Project information"] = "Software und Projektinformationen"; +App::$strings["This site is powered by \$Projectname"] = "Diese Website wird bereitgestellt durch \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Project homepage"] = "Projekt-Website"; +App::$strings["Developer homepage"] = "Entwickler-Website"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Import Webpage Elements"] = "Webseitenelemente importieren"; +App::$strings["Import selected"] = "Import ausgewählt"; +App::$strings["Export Webpage Elements"] = "Webseitenelemente exportieren"; +App::$strings["Export selected"] = "Exportieren ausgewählt"; +App::$strings["Webpages"] = "Webseiten"; +App::$strings["Actions"] = "Aktionen"; +App::$strings["Page Link"] = "Seiten-Link"; +App::$strings["Page Title"] = "Seitentitel"; +App::$strings["Invalid file type."] = "Ungültiger Dateityp."; +App::$strings["Error opening zip file"] = "Fehler beim Öffnen der ZIP-Datei"; +App::$strings["Invalid folder path."] = "Ungültiger Ordnerpfad."; +App::$strings["No webpage elements detected."] = "Keine Webseitenelemente erkannt."; +App::$strings["Import complete."] = "Import abgeschlossen."; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Konto-Passworts können Kanäle nicht umbenannt werden."; +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["Change channel nickname/address"] = "Kanalname/-adresse ändern"; +App::$strings["Any/all connections on other networks will be lost!"] = "Jegliche/alle Verbindungen zu anderen Netzwerken gehen verloren!"; +App::$strings["New channel address"] = "Neue Kanaladresse"; +App::$strings["Rename Channel"] = "Kanal umbenennen"; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; +App::$strings["no results"] = "keine Ergebnisse"; +App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; +App::$strings["queued"] = "zur Warteschlange hinzugefügt"; +App::$strings["posted"] = "zugestellt"; +App::$strings["accepted for delivery"] = "für Zustellung akzeptiert"; +App::$strings["updated"] = "aktualisiert"; +App::$strings["update ignored"] = "Aktualisierung ignoriert"; +App::$strings["permission denied"] = "Zugriff verweigert"; +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["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."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanal-Quellen"; +App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; +App::$strings["New Source"] = "Neue Quelle"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +App::$strings["Channel Name"] = "Name des Kanals"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)"; +App::$strings["Source not found."] = "Quelle nicht gefunden."; +App::$strings["Edit Source"] = "Quelle bearbeiten"; +App::$strings["Delete Source"] = "Quelle löschen"; +App::$strings["Source removed"] = "Quelle gelöscht"; +App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +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["%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["No default suggestions were found."] = "Es wurden keine Standard Vorschläge gefunden."; +App::$strings["%d rating"] = array( + 0 => "%d Bewertung", + 1 => "%d Bewertungen", +); +App::$strings["Gender: "] = "Geschlecht:"; +App::$strings["Status: "] = "Status:"; +App::$strings["Homepage: "] = "Webseite:"; +App::$strings["Age:"] = "Alter:"; +App::$strings["Location:"] = "Ort:"; +App::$strings["Description:"] = "Beschreibung:"; +App::$strings["Hometown:"] = "Heimatstadt:"; +App::$strings["About:"] = "Über:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["Public Forum:"] = "Öffentliches Forum:"; +App::$strings["Keywords: "] = "Schlüsselwörter:"; +App::$strings["Don't suggest"] = "Nicht vorschlagen"; +App::$strings["Common connections (estimated):"] = "Gemeinsame Verbindungen (geschätzt):"; +App::$strings["Global Directory"] = "Globales Verzeichnis"; +App::$strings["Local Directory"] = "Lokales Verzeichnis"; +App::$strings["Finding:"] = "Ergebnisse:"; +App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; +App::$strings["next page"] = "nächste Seite"; +App::$strings["previous page"] = "vorherige Seite"; +App::$strings["Sort options"] = "Sortieroptionen"; +App::$strings["Alphabetic"] = "alphabetisch"; +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["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["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +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"] = "Nachricht"; +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["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["Rate"] = "Bewerten"; +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["Select a bookmark folder"] = "Lesezeichenordner wählen"; +App::$strings["Save Bookmark"] = "Lesezeichen speichern"; +App::$strings["URL of bookmark"] = "URL des Lesezeichens"; +App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; +App::$strings["Enter a folder name"] = "Gib einen Ordnernamen ein"; +App::$strings["or select an existing folder (doubleclick)"] = "oder wähle einen vorhanden Ordner aus (Doppelklick)"; +App::$strings["Save to Folder"] = "In Ordner speichern"; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +App::$strings["Registration successful. Continue to create your first channel..."] = "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; +App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."; +App::$strings["Register at another affiliated hub."] = "Registriere Dich auf einem der anderen verbundenen Hubs."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website."; +App::$strings["Your email address"] = "Ihre E-Mail Adresse"; +App::$strings["Choose a password"] = "Passwort"; +App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +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 requires email verification. After completing this form, please check your email for further instructions."] = "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen."; +App::$strings["Cover Photos"] = "Cover Foto"; +App::$strings["female"] = "weiblich"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; +App::$strings["male"] = "männlich"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; +App::$strings["cover photo"] = "Cover Foto"; +App::$strings["Change Cover Photo"] = "Titelbild ändern"; +App::$strings["Documentation Search"] = "Suche in der Dokumentation"; +App::$strings["About"] = "Über"; +App::$strings["Administrators"] = "Administratoren"; +App::$strings["Developers"] = "Entwickler"; +App::$strings["Tutorials"] = "Tutorials"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +App::$strings["Contents"] = "Inhalt"; +App::$strings["Article"] = "Artikel"; +App::$strings["Item has been removed."] = "Der Beitrag wurde entfernt."; +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["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["Invalid channel."] = "Ungültiger Kanal."; +App::$strings["network"] = "Netzwerk"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["Permission Denied."] = "Zugriff verweigert."; +App::$strings["File not found."] = "Datei nicht gefunden."; +App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +App::$strings["Return to file list"] = "Zurück zur Dateiliste"; +App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +App::$strings["Share this file"] = "Diese Datei freigeben"; +App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; +App::$strings["Show in your contacts shared folder"] = "Im geteilten Ordner Deiner Kontakte anzeigen"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["View Common Connections"] = "Zeige gemeinsame Verbindungen"; +App::$strings["Email verification resent"] = "Email zur Verifizierung wurde erneut versendet"; +App::$strings["Unable to resend email verification message."] = "Erneutes Versenden der Email zur Verifizierung nicht möglich."; +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["Blocked accounts"] = "Blockierte Benutzerkonten"; +App::$strings["Expired accounts"] = "Abgelaufene Benutzerkonten"; +App::$strings["Expiring accounts"] = "Ablaufende Benutzerkonten"; +App::$strings["Clones"] = "Klone"; +App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; +App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden"; +App::$strings["Summary"] = "Zusammenfassung"; +App::$strings["Registered accounts"] = "Registrierte Konten"; +App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; +App::$strings["Registered channels"] = "Registrierte Kanäle"; +App::$strings["Active plugins"] = "Aktive Plug-Ins"; +App::$strings["Version"] = "Version"; +App::$strings["Repository version (master)"] = "Repository-Version (master)"; +App::$strings["Repository version (dev)"] = "Repository-Version (dev)"; +App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; +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["Edit Card"] = "Karte bearbeiten"; +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["Mark all seen"] = "Alle als gelesen markieren"; +App::$strings["0. Beginner/Basic"] = "0. Einsteiger/Basis"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Anfänger - unerfahren, aber bereit zu lernen"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Fortgeschritten - relativ komfortabel"; +App::$strings["3. Advanced - very comfortable"] = "3. Fortgeschritten - sehr komfortabel"; +App::$strings["4. Expert - I can write computer code"] = "4. Experte - Ich kann Computercode schreiben"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Zauberer - ich kann wahrscheinlich mehr als Du"; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Report Bug"] = "Fehler melden"; +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["Activity"] = "Aktivität"; +App::$strings["Wiki"] = "Wiki"; +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["Language"] = "Sprache"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Purchase"] = "Kaufen"; +App::$strings["Undelete"] = "Wieder hergestellt"; +App::$strings["Add to app-tray"] = "Zum App-Menü hinzufügen"; +App::$strings["Remove from app-tray"] = "Aus dem App-Menü entfernen"; +App::$strings["Pin to navbar"] = "An Navigationsleiste anpinnen"; +App::$strings["Unpin from navbar"] = "Von Navigationsleiste entfernen"; +App::$strings["__ctx:permcat__ default"] = "Standard"; +App::$strings["__ctx:permcat__ follower"] = "Abonnent"; +App::$strings["__ctx:permcat__ contributor"] = "Beitragender"; +App::$strings["__ctx:permcat__ publisher"] = "Autor"; +App::$strings["(No Title)"] = "(Kein Titel)"; +App::$strings["Wiki page create failed."] = "Anlegen der Wiki-Seite fehlgeschlagen."; +App::$strings["Wiki not found."] = "Wiki nicht gefunden."; +App::$strings["Destination name already exists"] = "Zielname bereits vorhanden"; +App::$strings["Page not found"] = "Seite nicht gefunden"; +App::$strings["Error reading page content"] = "Fehler beim Lesen des Seiteninhalts"; +App::$strings["Error reading wiki"] = "Fehler beim Lesen des Wiki"; +App::$strings["Page update failed."] = "Seitenaktualisierung fehlgeschlagen."; +App::$strings["Nothing deleted"] = "Nichts gelöscht"; +App::$strings["Compare: object not found."] = "Vergleichen: Objekt nicht gefunden."; +App::$strings["Page updated"] = "Seite aktualisiert"; +App::$strings["Untitled"] = "Ohne Titel"; +App::$strings["Wiki resource_id required for git commit"] = "Die resource_id des Wiki wird benötigt für den git commit."; +App::$strings["__ctx:wiki_history__ Message"] = "Nachricht"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +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["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."; +App::$strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; +App::$strings["Room is full"] = "Der Chatraum ist voll"; +App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Danke."; +App::$strings["%s Administrator"] = "der Administrator von %s"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Diese Email wurde von %1\$s auf %2\$s gesendet."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an."; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Benachrichtigung] Neue Mail empfangen auf %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$shat dir auf %2\$seine private Nachricht geschickt."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; +App::$strings["a private message"] = "eine private Nachricht"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; +App::$strings["commented on"] = "kommentierte"; +App::$strings["liked"] = "gefiel"; +App::$strings["disliked"] = "missfiel"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]ein %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]dein %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1\$d von %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$shat einen Beitrag/eine Konversation kommentiert dem/der du folgst."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren."; +App::$strings["Please visit %s to approve or reject this comment."] = "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s mag [zrl=%2\$s]dein %3\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1\$d von %2\$s erhalten"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sgefällt ein Beitrag/eine Unterhaltung von dir."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$shat etwas auf deiner Profilwand auf %2\$sveröffentlicht"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s schrieb auf [zrl=%2\$s]Deine Pinnwand[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Benachrichtigung] %s hat Dich erwähnt"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s hat dich auf %2\$s getaggt"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s hat [zrl=%2\$s]Dich getagged[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Benachrichtigung] %1\$s hat Dich angestupst"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]hat dich angestupst.[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s hat Deinen Beitrag auf %2\$s getagged"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s hat [zrl=%2\$s]Deinen Beitrag[/zrl] getagged"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Benachrichtigung] Verbindungsanfrage erhalten"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Du hast auf %2\$s eine neue Verbindung von %1\$s erhalten."; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Du hast [zrl=%1\$s]eine neue Verbindungsanfrage[/zrl] von %2\$s erhalten."; +App::$strings["You may visit their profile at %s"] = "Du kannst Dir das Profil unter %s ansehen"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freundschaftsvorschlag von %1\$s auf %2\$s erhalten"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Du hast einen [zrl=%1\$s]Freundschaftsvorschlag[/zrl] für %2\$s von %3\$s erhalten."; +App::$strings["Name:"] = "Name:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname: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["edited a post dated %s"] = "hat einen Beitrag vom %s bearbeitet"; +App::$strings["edited a comment dated %s"] = "hat einen Kommentar vom %s bearbeitet"; +App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert"; +App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht"; +App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; +App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; +App::$strings["Private Message"] = "Private Nachricht"; +App::$strings["Select"] = "Auswählen"; +App::$strings["I will attend"] = "Ich werde teilnehmen"; +App::$strings["I will not attend"] = "Ich werde nicht teilnehmen"; +App::$strings["I might attend"] = "Ich werde vielleicht teilnehmen"; +App::$strings["I agree"] = "Ich stimme zu"; +App::$strings["I disagree"] = "Ich lehne ab"; +App::$strings["I abstain"] = "Ich enthalte mich"; App::$strings["Add Star"] = "Stern hinzufügen"; App::$strings["Remove Star"] = "Stern entfernen"; App::$strings["Toggle Star Status"] = "Markierungsstatus (Stern) umschalten"; @@ -437,12 +1809,11 @@ App::$strings["starred"] = "markiert"; App::$strings["Message signature validated"] = "Signatur überprüft"; App::$strings["Message signature incorrect"] = "Signatur nicht korrekt"; App::$strings["Add Tag"] = "Tag hinzufügen"; -App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; App::$strings["like"] = "mag"; -App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -App::$strings["dislike"] = "lehne ab"; +App::$strings["dislike"] = "verurteile"; App::$strings["Share This"] = "Teilen"; App::$strings["share"] = "Teilen"; +App::$strings["Delivery Report"] = "Zustellungsbericht"; App::$strings["%d comment"] = array( 0 => "%d Kommentar", 1 => "%d Kommentare", @@ -455,388 +1826,802 @@ App::$strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; App::$strings["from %s"] = "via %s"; App::$strings["last edited: %s"] = "zuletzt bearbeitet: %s"; App::$strings["Expires: %s"] = "Verfällt: %s"; +App::$strings["Attend"] = "Zusagen"; +App::$strings["Attendance Options"] = "Zusageoptionen"; +App::$strings["Vote"] = "Abstimmen"; +App::$strings["Voting Options"] = "Abstimmungsoptionen"; 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["__ctx:noun__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -App::$strings["Close"] = "Schließen"; -App::$strings["Please wait"] = "Bitte warten"; -App::$strings["This is you"] = "Das bist Du"; +App::$strings["This is an unsaved preview"] = "Dies ist eine nicht gespeicherte Vorschau"; +App::$strings["%s show all"] = "%s mehr anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; App::$strings["Quote"] = "Zitat"; App::$strings["Code"] = "Code"; App::$strings["Image"] = "Bild"; +App::$strings["Attach File"] = "Datei anhängen"; App::$strings["Insert Link"] = "Link einfügen"; App::$strings["Video"] = "Video"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -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 Browser Fenster oder Tab"; -App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; -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["View Profile"] = "Profil ansehen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Edit Profiles"] = "Profile bearbeiten"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Chat"] = "Chat"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Webpages"] = "Webseiten"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Login"] = "Anmelden"; -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["Register"] = "Registrieren"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help"] = "Hilfe"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site content"] = "Durchsuche Seiten-Inhalt"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Matrix"] = "Matrix"; -App::$strings["Your matrix"] = "Deine Matrix"; -App::$strings["Mark all matrix notifications seen"] = "Markiere alle Matrix-Benachrichtigungen als angesehen"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Connections"] = "Verbindungen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Mail"] = "Mail"; -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["Your full name (required)"] = "Ihr vollständiger Name (erforderlich)"; +App::$strings["Your email address (required)"] = "Ihre E-Mail-Adresse (erforderlich)"; +App::$strings["Your website URL (optional)"] = "Ihre Webseiten-URL (optional)"; +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["parent"] = "Übergeordnetes Verzeichnis"; +App::$strings["Collection"] = "Sammlung"; +App::$strings["Principal"] = "Prinzipal"; +App::$strings["Addressbook"] = "Adressbuch"; +App::$strings["Calendar"] = "Kalender"; +App::$strings["Schedule Inbox"] = "Posteingang für überwachte Kalender"; +App::$strings["Schedule Outbox"] = "Postausgang für überwachte Kalender"; +App::$strings["Total"] = "Summe"; +App::$strings["Shared"] = "Geteilt"; +App::$strings["Add Files"] = "Dateien hinzufügen"; +App::$strings["You are using %1\$s of your available file storage."] = "Sie verwenden %1\$s von Ihrem verfügbaren Dateispeicher."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Sie verwenden %1\$s von %2\$s verfügbarem Dateispeicher. (%3\$s%)"; +App::$strings["WARNING:"] = "WARNUNG:"; +App::$strings["Create new folder"] = "Neuen Ordner anlegen"; +App::$strings["Upload file"] = "Datei hochladen"; +App::$strings["Drop files here to immediately upload"] = "Dateien zum sofortigen Hochladen hier fallen lassen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Select Channel"] = "Kanal auswählen"; +App::$strings["Read-write"] = "Lesen-schreiben"; +App::$strings["Read-only"] = "Nur Lesen"; +App::$strings["My Calendars"] = "Meine Kalender"; +App::$strings["Shared Calendars"] = "Geteilte Kalender"; +App::$strings["Share this calendar"] = "Diesen Kalender teilen"; +App::$strings["Calendar name and color"] = "Kalendername und -farbe"; +App::$strings["Create new calendar"] = "Neuen Kalender erstellen"; +App::$strings["Calendar Name"] = "Kalendername"; +App::$strings["Calendar Tools"] = "Kalenderwerkzeuge"; +App::$strings["Import calendar"] = "Kalender importieren"; +App::$strings["Select a calendar to import to"] = "Kalender zum Hineinimportieren auswählen"; +App::$strings["Addressbooks"] = "Adressbücher"; +App::$strings["Addressbook name"] = "Adressbuchname"; +App::$strings["Create new addressbook"] = "Neues Adressbuch erstellen"; +App::$strings["Addressbook Name"] = "Adressbuchname"; +App::$strings["Addressbook Tools"] = "Adressbuchwerkzeuge"; +App::$strings["Import addressbook"] = "Adressbuch importieren"; +App::$strings["Select an addressbook to import to"] = "Adressbuch zum Hineinimportieren auswählen"; +App::$strings["Categories"] = "Kategorien"; +App::$strings["Everything"] = "Alles"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["HQ Control Panel"] = "HQ-Einstellungen"; +App::$strings["Create a new post"] = "Neuen Beitrag erstellen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; App::$strings["Inbox"] = "Eingang"; App::$strings["Outbox"] = "Ausgang"; -App::$strings["Events"] = "Termine"; -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["Channel Manager"] = "Kanal-Manager"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanaleinstellungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, content"] = "@Name, #Schlagwort, Text"; -App::$strings["Please wait..."] = "Bitte warten..."; -App::$strings["Tags"] = "Schlagwörter"; -App::$strings["Keywords"] = "Schlüsselwörter"; -App::$strings["have"] = "habe"; -App::$strings["has"] = "hat"; -App::$strings["want"] = "will"; -App::$strings["wants"] = "will"; -App::$strings["likes"] = "gefällt"; -App::$strings["dislikes"] = "mag nicht"; -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["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["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 photo albums"] = "Kann meine Fotoalben betrachten"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage"] = "Kann meine Dateiordner lesen"; -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 post photos to my photo albums"] = "Kann Fotos in meinen Fotoalben 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"] = "Kann in meine Dateiordner 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["Mostly Public"] = "Weitgehend öffentlich"; -App::$strings["Restricted"] = "Beschränkt"; -App::$strings["Private"] = "Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Celebrity/Soapbox"] = "Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Group Repository"] = "Gruppenarchiv"; -App::$strings["Other"] = "Andere"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings["channel"] = "Kanal"; -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 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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; -App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; -App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; -App::$strings["__ctx:title__ Attending"] = "Zusagen"; -App::$strings["__ctx:title__ Not attending"] = "Absagen"; -App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; -App::$strings["View %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["View Status"] = "Status ansehen"; -App::$strings["View Photos"] = "Fotos ansehen"; -App::$strings["Matrix Activity"] = "Matrix-Aktivität"; -App::$strings["Edit Contact"] = "Kontakt bearbeiten"; -App::$strings["Send PM"] = "Sende PN"; -App::$strings["Poke"] = "Anstupsen"; -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["Visible to everybody"] = "Sichtbar für jeden"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Please enter a video link/URL:"] = "Gib einen Video-Link/URL ein:"; -App::$strings["Please enter an audio link/URL:"] = "Gib einen Audio-Link/URL ein:"; -App::$strings["Tag term:"] = "Schlagwort:"; -App::$strings["Save to Folder:"] = "Speichern in Ordner:"; -App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Share"] = "Teilen"; -App::$strings["Page link name"] = "Link zur Seite"; -App::$strings["Post as"] = "Veröffentlichen als"; -App::$strings["Upload photo"] = "Foto hochladen"; -App::$strings["upload photo"] = "Foto hochladen"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["attach file"] = "Datei anfügen"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["web link"] = "Web-Link"; -App::$strings["Insert video link"] = "Video-Link einfügen"; -App::$strings["video link"] = "Video-Link"; -App::$strings["Insert audio link"] = "Audio-Link einfügen"; -App::$strings["audio link"] = "Audio-Link"; -App::$strings["Set your location"] = "Legen Sie Ihren Standort fest"; -App::$strings["set location"] = "Standort festlegen"; -App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; -App::$strings["Clear browser location"] = "Browser-Standort löschen"; -App::$strings["clear location"] = "Standort löschen"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Permission settings"] = "Berechtigungseinstellungen"; -App::$strings["permissions"] = "Berechtigungen"; -App::$strings["Public post"] = "Öffentlicher Beitrag"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Beispiel: bob@example.com, mary@example.com"; -App::$strings["Set expiration date"] = "Verfallsdatum festlegen"; -App::$strings["OK"] = "Ok"; -App::$strings["Cancel"] = "Abbrechen"; -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["New"] = "Neu"; -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["Channel"] = "Kanal"; -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["New Message"] = "Neue Nachricht"; 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["Permission denied"] = "Keine Berechtigung"; -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 Mitglied der RedMatrix 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["Item not found."] = "Element nicht gefunden."; -App::$strings["Permission denied."] = "Zugang verweigert"; -App::$strings["Collection not found."] = "Sammlung nicht gefunden"; -App::$strings["Collection is empty."] = "Sammlung ist leer."; -App::$strings["Collection: %s"] = "Sammlung: %s"; -App::$strings["Connection: %s"] = "Verbindung: %s"; -App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; -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["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["__ctx:widget__ Activity"] = "Aktivität"; +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["Wiki List"] = "Wikiliste"; +App::$strings["Archives"] = "Archive"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +App::$strings["add"] = "hinzufügen"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Add new page"] = "Neue Seite hinzufügen"; +App::$strings["Wiki Pages"] = "Wikiseiten"; +App::$strings["Page name"] = "Seitenname"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Tags"] = "Schlagwörter"; +App::$strings["Profile Creation"] = "Profilerstellung"; +App::$strings["Upload profile photo"] = "Profilfoto hochladen"; +App::$strings["Upload cover photo"] = "Titelbild hochladen"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Find and Connect with others"] = "Finden und Verbinden von/mit Anderen"; +App::$strings["View the directory"] = "Verzeichnis anzeigen"; +App::$strings["Manage your connections"] = "Deine Verbindungen verwalten"; +App::$strings["Communicate"] = "Kommunizieren"; +App::$strings["View your channel homepage"] = "Deine Kanal-Startseite ansehen"; +App::$strings["View your network stream"] = "Deine Netzwerk-Aktivitäten ansehen"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["View public stream"] = "Zeige öffentlichen Beitrags-Stream"; +App::$strings["New Member Links"] = "Links für neue Mitglieder"; +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["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Addon settings"] = "Addon-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["OAuth1 apps"] = "OAuth1 Anwendungen"; +App::$strings["OAuth2 apps"] = "OAuth2 Anwendungen"; +App::$strings["Permission Groups"] = "Berechtigungsrollen"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["New Network Activity"] = "Neue Netzwerk-Aktivitäten"; +App::$strings["New Network Activity Notifications"] = "Benachrichtigungen für neue Netzwerk-Aktivitäten"; +App::$strings["View your network activity"] = "Zeige Deine Netzwerk-Aktivitäten"; +App::$strings["Mark all notifications read"] = "Alle Benachrichtigungen als gesehen markieren"; +App::$strings["Show new posts only"] = "Zeige nur neue Beiträge"; +App::$strings["Filter by name"] = "Nach Namen filtern"; +App::$strings["New Home Activity"] = "Neue Kanal-Aktivitäten"; +App::$strings["New Home Activity Notifications"] = "Benachrichtigungen für neue Kanal-Aktivitäten"; +App::$strings["View your home activity"] = "Zeige Deine Kanal-Aktivitäten"; +App::$strings["Mark all notifications seen"] = "Alle Benachrichtigungen als gesehen markieren"; +App::$strings["New Mails"] = "Neue Mails"; +App::$strings["New Mails Notifications"] = "Benachrichtigungen für neue Mails"; +App::$strings["View your private mails"] = "Zeige Deine persönlichen Mails"; +App::$strings["Mark all messages seen"] = "Alle Mails als gelesen markieren"; +App::$strings["New Events"] = "Neue Termine"; +App::$strings["New Events Notifications"] = "Benachrichtigungen für neue Termine"; +App::$strings["View events"] = "Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["New Connections Notifications"] = "Benachrichtigungen für neue Verbindungen"; +App::$strings["View all connections"] = "Zeige alle Verbindungen"; +App::$strings["New Files"] = "Neue Dateien"; +App::$strings["New Files Notifications"] = "Benachrichtigungen für neue Dateien"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["View all notices"] = "Alle Notizen ansehen"; +App::$strings["Mark all notices seen"] = "Alle Notizen als gesehen markieren"; +App::$strings["New Registrations"] = "Neue Registrierungen"; +App::$strings["New Registrations Notifications"] = "Benachrichtigungen für neue Registrierungen"; +App::$strings["Public Stream Notifications"] = "Benachrichtigungen für öffentlichen Beitrags-Stream"; +App::$strings["View the public stream"] = "Zeige öffentlichen Beitrags-Stream"; +App::$strings["Sorry, you have got no notifications at the moment"] = "Du hast momentan keine Benachrichtigungen"; +App::$strings["Source channel not found."] = "Quellkanal nicht gefunden."; +App::$strings["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können."; +App::$strings["Logout"] = "Abmelden"; +App::$strings["Login/Email"] = "Anmelden/E-Mail"; +App::$strings["Password"] = "Kennwort"; +App::$strings["Remember me"] = "Angaben speichern"; +App::$strings["Forgot your password?"] = "Passwort vergessen?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Webseiten-SSL-Fehler für %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cron-Jobs laufen nicht auf %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; +App::$strings["never"] = "Nie"; +App::$strings["Cover Photo"] = "Cover Foto"; +App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; +App::$strings["Theme settings"] = "Design-Einstellungen"; +App::$strings["Narrow navbar"] = "Schmale Navigationsleiste"; +App::$strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; +App::$strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; +App::$strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; +App::$strings["Link color"] = "Linkfarbe"; +App::$strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; +App::$strings["Set the background color"] = "Hintergrundfarbe"; +App::$strings["Set the background image"] = "Hintergrundbild"; +App::$strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge"; +App::$strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare"; +App::$strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung"; +App::$strings["Examples: 1rem, 100%, 16px"] = "Beispiele: 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare"; +App::$strings["Set radius of corners"] = "Ecken-Radius"; +App::$strings["Example: 4px"] = "Beispiel: 4px"; +App::$strings["Set shadow depth of photos"] = "Schattentiefe von Fotos"; +App::$strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen"; +App::$strings["Leave empty for default width"] = "Leer lassen für Standardbreite"; +App::$strings["Left align page content"] = "Seiteninhalt linksbündig anzeigen"; +App::$strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern"; +App::$strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren"; +App::$strings["Errors encountered deleting database table "] = "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten."; +App::$strings["Submit Settings"] = "Einstellungen absenden"; +App::$strings["Drop tables when uninstalling?"] = "Lösche Tabellen beim Deinstallieren?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Wenn ausgewählt, werden die Rendezvous-Tabellen in der Datenbank gelöscht, sobald das Plugin deinstalliert wird."; +App::$strings["Mapbox Access Token"] = "Mapbox Zugangs-Token"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Wenn Du ein Mapbox Zugangs-Token eingibst, werden die Kartendaten (Kacheln) damit von Mapbox geladen, anstatt von OpenStreetMap, welches die Voreinstellung ist."; +App::$strings["Rendezvous"] = "Rendezvous"; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Diese Identität wurde von einem anderen Mitglied aufgrund von Inaktivität gelöscht. Bitte klicke auf \"Neue Identität\" oder aktualisiere die Website im Browser, um eine neue Identität zu registrieren. Du kannst dabei den selben Namen verwenden."; +App::$strings["Welcome to Rendezvous!"] = "Willkommen bei Rendezvous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Gib Deinen Namen ein, um diesem Rendezvous beizutreten. Um Deinen Standort mit anderen Mitgliedern zu teilen, klicke auf das GPS Symbol. Sobald Dein Standort ermittelt ist, erscheint ein roter Punkt, und die Anderen werden Dich auf der Karte sehen können."; +App::$strings["Let's meet here"] = "Lasst uns hier treffen"; +App::$strings["New marker"] = "Neue Markierung"; +App::$strings["Edit marker"] = "Markierung bearbeiten"; +App::$strings["New identity"] = "Neue Identität"; +App::$strings["Delete marker"] = "Markierung löschen"; +App::$strings["Delete member"] = "Mitglied löschen"; +App::$strings["Edit proximity alert"] = "Annäherungsalarm bearbeiten"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Ein Annäherungsalarm wird ausgelöst werden, sobald sich dieses Mitglied innerhalb eines bestimmten Radius von Dir aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):"; +App::$strings["distance"] = "Entfernung"; +App::$strings["Proximity alert distance (meters)"] = "Entfernung für Annäherungsalarm (in Metern)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Ein Annäherungsalarm wird ausgelöst werden, sobald Du Dich innerhalb eines bestimmten Radius der Markierung aufhält.

Gib einen Radius in Metern ein (0 zum Abschalten der Funktion):"; +App::$strings["Marker proximity alert"] = "Annäherungsalarm für Markierung"; +App::$strings["Reminder note"] = "Erinnerungshinweis"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Gib eine Nachricht ein, die angezeigt werden soll, wenn Du Dich in der festgelegten Nähe befindest..."; +App::$strings["Add new rendezvous"] = "Neues Rendezvous hinzufügen"; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Erstelle ein neues Rendezvous und teile den Zugriffslink mit allen, die Du in die Gruppe einladen möchtest. Die, die den Link öffnen, werden Mitglieder des Rendezvous. Sie können die Standorte der anderen Mitglieder sehen, Marker zur Karte hinzufügen oder ihre eigenen Standorte mit der Gruppe teilen."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Du hast kein Rendezvous. Drücke den Knopf oben, um ein Rendezvous zu erstellen!"; +App::$strings["Some setting"] = "Einige Einstellungen"; +App::$strings["A setting"] = "Eine Einstellung"; +App::$strings["Skeleton Settings"] = "Skeleton Einstellungen"; +App::$strings["GNU-Social Protocol Settings updated."] = "GNU social Protokoll Einstellungen aktualisiert"; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das GNU-Social-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; +App::$strings["Enable the GNU-Social protocol for this channel"] = "Aktiviere das GNU social Protokoll für diesen Kanal"; +App::$strings["GNU-Social Protocol Settings"] = "GNU social Protokoll Einstellungen"; +App::$strings["Follow"] = "Folgen"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s folgt nun %2\$s"; +App::$strings["Planets Settings updated."] = "Planeten Einstellungen aktualisiert"; +App::$strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin"; +App::$strings["Planets Settings"] = "Planeten Einstellungen"; +App::$strings["System defaults:"] = "Systemstandardeinstellungen:"; +App::$strings["Preferred Clipart IDs"] = "Bevorzugte Clipart-IDs"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Liste bevorzugter Clipart-IDs. Diese werden zuerst angezeigt."; +App::$strings["Default Search Term"] = "Standard-Suchbegriff"; +App::$strings["The default search term. These will be shown second."] = "Der Standard-Suchbegriff. Dieser wird an zweiter Stelle angezeigt."; +App::$strings["Return After"] = "Zurückkehren nach"; +App::$strings["Page to load after image selection."] = "Die Seite, die nach Auswahl eines Bildes geladen werden soll."; +App::$strings["Edit Profile"] = "Profil bearbeiten"; +App::$strings["Profile List"] = "Profilliste"; +App::$strings["Order of Preferred"] = "Reihenfolge der Bevorzugten"; +App::$strings["Sort order of preferred clipart ids."] = "Sortierreihenfolge der bevorzugten Clipart-IDs."; +App::$strings["Newest first"] = "Neueste zuerst"; +App::$strings["As entered"] = "Wie eingegeben"; +App::$strings["Order of other"] = "Sortierung aller anderen"; +App::$strings["Sort order of other clipart ids."] = "Sortierreihenfolge der übrigen Clipart-IDs."; +App::$strings["Most downloaded first"] = "Meist heruntergeladene zuerst"; +App::$strings["Most liked first"] = "Beliebteste zuerst"; +App::$strings["Preferred IDs Message"] = "Nachricht für bevorzugte IDs"; +App::$strings["Message to display above preferred results."] = "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll."; +App::$strings["Uploaded by: "] = "Hochgeladen von: "; +App::$strings["Drawn by: "] = "Gezeichnet von: "; +App::$strings["Use this image"] = "Dieses Bild verwenden"; +App::$strings["Or select from a free OpenClipart.org image:"] = "Oder wähle ein freies Bild von OpenClipart.org:"; +App::$strings["Search Term"] = "Suchbegriff"; +App::$strings["Unknown error. Please try again later."] = "Unbekannter Fehler. Bitte versuchen Sie es später erneut."; +App::$strings["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert."; +App::$strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit"; +App::$strings["Post to WordPress"] = "Auf WordPress posten"; +App::$strings["Enable WordPress Post Plugin"] = "Aktiviere das WordPress-Plugin"; +App::$strings["WordPress username"] = "WordPress-Benutzername"; +App::$strings["WordPress password"] = "WordPress-Passwort"; +App::$strings["WordPress API URL"] = "WordPress-API-URL"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Normalerweise https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = "WordPress blogid"; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Nötig für Mehrbenutzer Seiten wie wordpress.com, andernfalls frei lassen"; +App::$strings["Post to WordPress by default"] = "Standardmäßig auf auf WordPress posten"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Kommentare weiterleiten (benötigt hubzilla_wp Plugin)"; +App::$strings["WordPress Post Settings"] = "WordPress-Beitragseinstellungen"; +App::$strings["Wordpress Settings saved."] = "Wordpress-Einstellungen gespeichert."; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbausteinen, die Du hier unterhalb einträgst, und faltet alle Beiträge zusammen, in denen es diese Bausteine findet. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Es gilt als höflich und empfohlen, den #NSFW Tag für Beiträge zu verwenden, bei denen Du davon ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst aber auch beliebige andere Wörter in der Liste angeben und das Plugin so als allgemeinen Inhaltsfilter verwenden."; +App::$strings["Enable Content filter"] = "Inhaltsfilter aktivieren"; +App::$strings["Comma separated list of keywords to hide"] = "Kommaseparierte Liste von Schlüsselworten die verborgen werden sollen."; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Wort, /regular-expression/, lang=xx, lang!=xx"; +App::$strings["Not Safe For Work Settings"] = "Not Safe For Work Einstellungen"; +App::$strings["General Purpose Content Filter"] = "Allzweck-Inhaltsfilter"; +App::$strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert."; +App::$strings["Possible adult content"] = "Möglicherweise nicht jugendfreie Inhalte"; +App::$strings["%s - view"] = "%s - ansehen"; +App::$strings["Post to Insanejournal"] = "Bei InsaneJournal veröffentlichen"; +App::$strings["Enable InsaneJournal Post Plugin"] = "Aktiviere das InsaneJournal Plugin"; +App::$strings["InsaneJournal username"] = "InsaneJournal-Benutzername"; +App::$strings["InsaneJournal password"] = "InsaneJournal-Passwort"; +App::$strings["Post to InsaneJournal by default"] = "Standardmäßig bei InsaneJournal veröffentlichen"; +App::$strings["InsaneJournal Post Settings"] = "InsaneJournal-Beitragseinstellungen"; +App::$strings["Insane Journal Settings saved."] = "InsaneJournal-Einstellungen gespeichert."; +App::$strings["Post to Dreamwidth"] = "Bei Dreamwidth veröffentlichen"; +App::$strings["Enable Dreamwidth Post Plugin"] = "Aktiviere das Dreamwidth-Plugin"; +App::$strings["Dreamwidth username"] = "Dreamwidth-Benutzername"; +App::$strings["Dreamwidth password"] = "Dreamwidth-Passwort"; +App::$strings["Post to Dreamwidth by default"] = "Standardmäßig auf auf Dreamwidth posten"; +App::$strings["Dreamwidth Post Settings"] = "Dreamwidth-Beitragseinstellungen"; +App::$strings["New registration"] = "Neue Registrierung"; +App::$strings["Message sent to %s. New account registration: %s"] = "Nachricht gesendet an %s. Neue Kontoregistrierung: %s"; +App::$strings["Hubzilla Directory Stats"] = "Hubzilla-Verzeichnisstatistiken"; +App::$strings["Total Hubs"] = "Hubs insgesamt"; +App::$strings["Hubzilla Hubs"] = "Hubzilla Hubs"; +App::$strings["Friendica Hubs"] = "Friendica Hubs"; +App::$strings["Diaspora Pods"] = "Diaspora Pods"; +App::$strings["Hubzilla Channels"] = "Hubzilla-Kanäle"; +App::$strings["Friendica Channels"] = "Friendica-Kanäle"; +App::$strings["Diaspora Channels"] = "Diaspora-Kanäle"; +App::$strings["Aged 35 and above"] = "35 und älter"; +App::$strings["Aged 34 and under"] = "34 und jünger"; +App::$strings["Average Age"] = "Durchschnittsalter"; +App::$strings["Known Chatrooms"] = "Bekannte Chaträume"; +App::$strings["Known Tags"] = "Bekannte Schlagwörter"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Bitte berücksichtige, dass Diaspora und Friendica Statistiken nur solche einschließen, die **diesem Verzeichnis** bekannt sind, nicht alle im Netzwerk bekannten. Das gilt auch für Chaträume."; +App::$strings["Your Webbie:"] = "Dein Webbie"; +App::$strings["Fontsize (px):"] = "Schriftgröße (px):"; +App::$strings["Link:"] = "Link:"; +App::$strings["Like us on Hubzilla"] = "Like us on Hubzilla"; +App::$strings["Embed:"] = "Einbetten"; +App::$strings["Photos imported"] = "Fotos importiert"; +App::$strings["Redmatrix Photo Album Import"] = "Redmatrix-Fotoalbumimport"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Hiermit werden all deine Fotoalben von Redmatrix in diesen Kanal importiert."; +App::$strings["Redmatrix Server base URL"] = "Basis-URL des Redmatrix Servers"; +App::$strings["Redmatrix Login Username"] = "Redmatrix-Anmeldebenutzername"; +App::$strings["Redmatrix Login Password"] = "Redmatrix-Anmeldepasswort"; +App::$strings["Import just this album"] = "Nur dieses Album importieren"; +App::$strings["Leave blank to import all albums"] = "Leer lassen um alle Alben zu importieren"; +App::$strings["Maximum count to import"] = "Maximal zu importierende Anzahl"; +App::$strings["0 or blank to import all available"] = "0 oder leer lassen um alles zu importieren"; +App::$strings["Channels to auto connect"] = "Kanäle zur automatischen Verbindung"; +App::$strings["Comma separated list"] = "Kommagetrennte Liste"; +App::$strings["Popular Channels"] = "Beliebte Kanäle"; +App::$strings["IRC Settings"] = "IRC-Einstellungen"; +App::$strings["IRC settings saved."] = "IRC-Einstellungen gespeichert."; +App::$strings["IRC Chatroom"] = "IRC-Chatraum"; +App::$strings["Post to LiveJournal"] = "Bei LiveJurnal veröffentlichen"; +App::$strings["Enable LiveJournal Post Plugin"] = "Aktiviere das LiveJurnal Plugin"; +App::$strings["LiveJournal username"] = "LiveJournal-Benutzername"; +App::$strings["LiveJournal password"] = "LiveJournal-Passwort"; +App::$strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJurnal veröffentlichen"; +App::$strings["LiveJournal Post Settings"] = "LiveJournal-Beitragseinstellungen"; +App::$strings["LiveJournal Settings saved."] = "LiveJournal-Einstellungen gespeichert."; +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["First Name"] = "Vorname"; +App::$strings["Last Name"] = "Nachname"; +App::$strings["Nickname"] = "Spitzname"; +App::$strings["Full Name"] = "Voller Name"; +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["Birth Year"] = "Geburtsjahr"; +App::$strings["Birth Month"] = "Geburtsmonat"; +App::$strings["Birth Day"] = "Geburtstag"; +App::$strings["Birthdate"] = "Geburtsdatum"; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID-Protokollfehler. Keine Kennung zurückgegeben."; App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -App::$strings["Advanced"] = "Fortgeschritten"; -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["Find"] = "Finde"; -App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; -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["Visible to your default audience"] = "Standard-Sichtbarkeit"; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Permissions"] = "Berechtigungen"; -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["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["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; -App::$strings["Change profile photo"] = "Profilfoto ändern"; -App::$strings["Profiles"] = "Profile"; -App::$strings["Manage/edit profiles"] = "Profile verwalten/bearbeiten"; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Profile Image"] = "Profilfoto:"; -App::$strings["visible to everybody"] = "sichtbar für jeden"; -App::$strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["g A l F d"] = "l, j. F, G:i \\U\\h\\r"; -App::$strings["F d"] = "d. F"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["Birthday Reminders"] = "Geburtstags Erinnerungen"; -App::$strings["Birthdays this week:"] = "Geburtstage in dieser Woche:"; -App::$strings["[No description]"] = "[Keine Beschreibung]"; -App::$strings["Event Reminders"] = "Termin-Erinnerungen"; -App::$strings["Events this week:"] = "Termine in dieser Woche:"; -App::$strings["Profile"] = "Profil"; -App::$strings["Full Name:"] = "Voller Name:"; -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["Age:"] = "Alter:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Hometown:"] = "Heimatstadt:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["About:"] = "Über:"; -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["Male"] = "Männlich"; App::$strings["Female"] = "Weiblich"; +App::$strings["You're welcome."] = "Gern geschehen."; +App::$strings["Ah shucks..."] = "Ach Mist..."; +App::$strings["Don't mention it."] = "Keine Ursache."; +App::$strings["<blush>"] = ""; +App::$strings["Page to load after login"] = "Seite, die nach dem Login geladen werden soll"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Beispiele: "apps", "network?f=&gid=37" (Gruppen-gefilterte Beiträge), "channel" oder "notifications/system" (freilassen für die Standard-Netzwerkseite (grid)."; +App::$strings["Startpage Settings"] = "Startseiteneinstellungen"; +App::$strings["bitchslap"] = "Ohrfeige"; +App::$strings["bitchslapped"] = "geohrfeigt"; +App::$strings["shag"] = "bumsen"; +App::$strings["shagged"] = "gebumst"; +App::$strings["patent"] = "Patent"; +App::$strings["patented"] = "patentiert"; +App::$strings["hug"] = "umarmen"; +App::$strings["hugged"] = "umarmt"; +App::$strings["murder"] = "ermorden"; +App::$strings["murdered"] = "ermordet"; +App::$strings["worship"] = "Anbetung"; +App::$strings["worshipped"] = "angebetet"; +App::$strings["kiss"] = "küssen"; +App::$strings["kissed"] = "geküsst"; +App::$strings["tempt"] = "verlocken"; +App::$strings["tempted"] = "verlockt"; +App::$strings["raise eyebrows at"] = "Augenbrauen hochziehen"; +App::$strings["raised their eyebrows at"] = "zog die Augenbrauen hoch"; +App::$strings["insult"] = "beleidigen"; +App::$strings["insulted"] = "beleidigt"; +App::$strings["praise"] = "loben"; +App::$strings["praised"] = "gelobt"; +App::$strings["be dubious of"] = ""; +App::$strings["was dubious of"] = ""; +App::$strings["eat"] = "essen"; +App::$strings["ate"] = "aß"; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = "anzweifeln"; +App::$strings["doubted"] = "angezweifelt"; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = "ficken"; +App::$strings["fucked"] = "gefickt"; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = "erkläre unsterbliche Liebe"; +App::$strings["declared undying love for"] = "erklärte unsterbliche Liebe"; +App::$strings["Diaspora Protocol Settings updated."] = "Diaspora Protokoll Einstellungen aktualisiert"; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; +App::$strings["Enable the Diaspora protocol for this channel"] = "Das Diaspora Protokoll für diesen Kanal aktivieren"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Verfolgte Hashtags (Komma separierte Liste, ohne die #)"; +App::$strings["Diaspora Protocol Settings"] = "Diaspora Protokoll Einstellungen"; +App::$strings["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei 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["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen ablaufen."; +App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Konto wird bald auslaufen."; +App::$strings["Enable Rainbowtag"] = "Rainbowtag aktivieren"; +App::$strings["Rainbowtag Settings"] = "Rainbowtag-Einstellungen"; +App::$strings["Rainbowtag Settings saved."] = "Rainbowtag-Einstellungen gespeichert."; +App::$strings["Show Upload Limits"] = "Hochladebeschränkungen anzeigen"; +App::$strings["Hubzilla configured maximum size: "] = "Die in Hubzilla eingestellte maximale Größe:"; +App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize:"; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (muss größer sein als upload_max_filesize):"; +App::$strings["generic profile image"] = "generisches Profilbild"; +App::$strings["random geometric pattern"] = "zufälliges geometrisches Muster"; +App::$strings["monster face"] = "Monstergesicht"; +App::$strings["computer generated face"] = "computergeneriertes Gesicht"; +App::$strings["retro arcade style face"] = "Gesicht im Retro-Arcade Stil"; +App::$strings["Hub default profile photo"] = "Standard-Profilfoto für diesen Hub"; +App::$strings["Information"] = "Information"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere entweder das Libreavatar oder das Gravatar Addon.
Das Libravatar Addon verwendet als Notfalllösung Gravatar, sollte bei Libravatar kein Profilbild gefunden werden."; +App::$strings["Save Settings"] = "Einstellungen speichern"; +App::$strings["Default avatar image"] = "Standard-Avatarbild"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardprofilbild aus, sollte bei Gravatar keines gefunden werden. Beachte auch die README."; +App::$strings["Rating of images"] = "Bewertungen der Bilder"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Wähle die für deine Seite angemessene Profilbildeinstufung. Beachte auch die README."; +App::$strings["Gravatar settings updated."] = "Gravatar-Einstellungen aktualisiert."; +App::$strings["Hubzilla File Storage Import"] = "Hubzilla-Datenspeicher-Import"; +App::$strings["This will import all your cloud files from another server."] = "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert."; +App::$strings["Hubzilla Server base URL"] = "Basis-URL des Habzilla-Servers"; +App::$strings["Since modified date yyyy-mm-dd"] = "Seit Modifizierungsdatum yyyy-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Bis Modifizierungsdatum yyyy-mm-dd"; +App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher"; +App::$strings["This plugin/addon has not been configured."] = "Dieses Plugin/Addon wurde noch nicht konfiguriert."; +App::$strings["Please visit the Visage settings on %s"] = "Bitte rufe die Visage Einstellungen auf %s auf"; +App::$strings["your feature settings page"] = "Die Funktions-Einstellungsseite"; +App::$strings["No entries."] = "Keine Einträge."; +App::$strings["Enable Visage Visitor Logging"] = "Aktiviere das Visage-Besucher Logging"; +App::$strings["Visage Settings"] = "Visage-Einstellungen"; +App::$strings["Nsabait Settings updated."] = "Nsabait-Einstellungen aktualisiert."; +App::$strings["Enable NSAbait Plugin"] = "Aktiviere das NSAbait Plugin"; +App::$strings["NSAbait Settings"] = "NSAbait-Einstellungen"; +App::$strings["Send test email"] = "Test-E-Mail senden"; +App::$strings["No recipients found."] = "Keine Empfänger gefunden."; +App::$strings["Mail sent."] = "Mail gesendet."; +App::$strings["Sending of mail failed."] = "Senden der E-Mail fehlgeschlagen."; +App::$strings["Mail Test"] = "Mail Test"; +App::$strings["Message subject"] = "Betreff der Nachricht"; +App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen"; +App::$strings["View Larger"] = "Größer anzeigen"; +App::$strings["Tile Server URL"] = "Kachelserver-URL"; +App::$strings["A list of public tile servers"] = "Eine Liste öffentlicher Kachelserver"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "Nominatim (reverse Geokodierung) Server URL"; +App::$strings["A list of Nominatim servers"] = "Eine Liste der Nominatim Server"; +App::$strings["Default zoom"] = "Standardzoom"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Die Standard-Vergrößerungsstufe (1:Welt, 18:höchste, hängt außerdem vom Kachelserver ab)."; +App::$strings["Include marker on map"] = "Markierung auf der Karte einschließen"; +App::$strings["Include a marker on the map."] = "Binde eine Markierung auf der Karte ein."; +App::$strings["text to include in all outgoing posts from this site"] = "Test der in alle Beiträge angefügt werden soll, die von dieser Seite ausgehen"; +App::$strings["Fuzzloc Settings updated."] = "Fuzzloc-Einstellungen aktualisiert."; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc erlaubt es Dir, deinen genauen Standort etwas diffuser zu machen (nicht so exakt wie ermittelt), wenn Dein Kanal die Lokalisierungsfunktion des Browsers verwendet."; +App::$strings["Enable Fuzzloc Plugin"] = "Aktiviere das Fuzzloc-Plugin"; +App::$strings["Minimum offset in meters"] = "Minimale Verschiebung in Metern"; +App::$strings["Maximum offset in meters"] = "Maximale Verschiebung in Metern"; +App::$strings["Fuzzloc Settings"] = "Fuzzloc-Einstellungen"; +App::$strings["Post to Friendica"] = "Bei Friendica veröffentlichen"; +App::$strings["rtof Settings saved."] = "rtof-Einstellungen gespeichert."; +App::$strings["Allow posting to Friendica"] = "Erlaube die Veröffentlichung bei Friendica"; +App::$strings["Send public postings to Friendica by default"] = "Standardmäßig öffentliche Beiträge bei Friendica veröffentlichen"; +App::$strings["Friendica API Path"] = "Friendica-API-Pfad"; +App::$strings["https://{sitename}/api"] = "https://{sitename}/api"; +App::$strings["Friendica login name"] = "Friendica-Anmeldename"; +App::$strings["Friendica password"] = "Friendica-Passwort"; +App::$strings["Hubzilla to Friendica Post Settings"] = "Hubzilla-zu-Friendica Beitragseinstellungen"; +App::$strings["Status:"] = "Status:"; +App::$strings["Activate addon"] = "Addon aktiviren"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Jappix Mini Chat-Widget von der Weboberfläche verbergen"; +App::$strings["Jabber username"] = "Jabber-Benutzername"; +App::$strings["Jabber server"] = "Jabber-Server"; +App::$strings["Jabber BOSH host URL"] = "Jabber BOSH Host URL"; +App::$strings["Jabber password"] = "Jabber-Passwort"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = "Jabber-Passwort mit Hubzilla-Passwort verschlüsseln"; +App::$strings["Hubzilla password"] = "Hubzilla-Passwort"; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Verbindungsanfragen von Hubzilla-Kontakten automatisch annehmen"; +App::$strings["Purge internal list of jabber addresses of contacts"] = "Interne Liste der Jabber Adressen von Kontakten löschen"; +App::$strings["Configuration Help"] = "Konfigurationshilfe"; +App::$strings["Jappix Mini Settings"] = "Jappix Mini Einstellungen"; +App::$strings["Currently blocked"] = "Derzeit blockiert"; +App::$strings["No channels currently blocked"] = "Momentan sind keine Kanäle blockiert"; +App::$strings["Superblock Settings"] = "Superblock Einstellungen"; +App::$strings["Block Completely"] = "Vollständig blockieren"; +App::$strings["superblock settings updated"] = "Superblock Einstellungen aktualisiert"; +App::$strings["Federate"] = "Beitrag verteilen"; +App::$strings["nofed Settings saved."] = "nofed Einstellungen gespeichert"; +App::$strings["Allow Federation Toggle"] = "Umschalter zur Beitragsverteilung bereitstellen"; +App::$strings["Federate posts by default"] = "Beiträge standardmäßig verteilen"; +App::$strings["NoFed Settings"] = "NoFed-Einstellungen"; +App::$strings["Post to Red"] = "Beitrag bei Red veröffentlichen"; +App::$strings["Channel is required."] = "Kanal ist erforderlich."; +App::$strings["redred Settings saved."] = "redred-Einstellungen gespeichert."; +App::$strings["Allow posting to another Hubzilla Channel"] = "Erlaube die Veröffentlichung in anderen Hubzilla Kanälen"; +App::$strings["Send public postings to Hubzilla channel by default"] = "Sende öffentliche Beiträge standardmäßig an den Hubzilla Kanal"; +App::$strings["Hubzilla API Path"] = "Hubzilla-API-Pfad"; +App::$strings["Hubzilla login name"] = "Hubzilla-Anmeldename"; +App::$strings["Hubzilla channel name"] = "Hubzilla-Kanalname"; +App::$strings["Hubzilla Crosspost Settings"] = "Hubzilla Crosspost Einstellungen"; +App::$strings["Logfile archive directory"] = "Verzeichnis der Logdatei"; +App::$strings["Directory to store rotated logs"] = "Verzeichnis, in dem rotierte Logs gespeichert werden sollen"; +App::$strings["Logfile size in bytes before rotating"] = "zu erreichende Logdateigröße in Bytes, bevor rotiert wird"; +App::$strings["Number of logfiles to retain"] = "Anzahl aufzubewahrender rotierter Logdateien"; +App::$strings["Friendica Photo Album Import"] = "Friendica-Fotoalbumimport"; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Hiermit werden all deine Fotoalben von Friendica in diesen Hubzilla Kanal importiert."; +App::$strings["Friendica Server base URL"] = "BasisURL des Friendica Servers"; +App::$strings["Friendica Login Username"] = "Friendica-Anmeldebenutzername"; +App::$strings["Friendica Login Password"] = "Friendica-Anmeldepasswort"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPub Protokoll Einstellungen aktualisiert"; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das ActivityPub-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Aktiviere das ActivityPub Protokoll für diesen Kanal"; +App::$strings["Send multi-media HTML articles"] = "Multimedia HTML Artikel versenden"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt"; +App::$strings["ActivityPub Protocol Settings"] = "ActivityPub Protokoll Einstellungen"; +App::$strings["Project Servers and Resources"] = "Projektserver und -ressourcen"; +App::$strings["Project Creator and Tech Lead"] = "Projektersteller und Technischer Leiter"; +App::$strings["Admin, developer, directorymin, support bloke"] = "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende"; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Und die hunderte anderen Menschen und Organisationen, die geholfen haben Hubzilla möglich zu machen."; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Die Redmatrix/Hubzilla Projekte werden hauptsächlich von Freiwilligen bereitgestellt, die ihre Zeit und Expertise zur Verfügung stellen - und oft aus eigener Tasche für die Dienste zahlen, die sie mit anderen teilen."; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Es gibt keine Finanzierung durch Firmen, keine Werbung und wir verkaufen Deine persönlichen Daten nicht. (Wir kontrollieren Deine persönlichen Daten nicht - das machst Du.)"; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Hilf uns bei unserer wegweisenden Arbeit im Bereich der Dezantralisation, von Web-Identitäten und Privatsphäre."; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Die Spenden werden dafür verwendet Server und Dienste am laufen zu halten und helfen desweiteren innovative Neuerungen zu schaffen und die Entwicklung voran zu treiben."; +App::$strings["Donate"] = "Spenden"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Wähle ein Projekt, einen Entwickler oder einen öffentlichen Hub den du mit einer einmaligen Spende unterstützen willst."; +App::$strings["Donate Now"] = "Jetzt spenden"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "Oder werde ein Unterstützer des Projekts (ausschließlich Hubzilla)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Bitte teile uns mit ob dein kompletter Name oder dein Vorname (oder gar nichts) auf unserer Sponsoren-Seite veröffentlicht werden soll."; +App::$strings["Sponsor"] = "Sponsor"; +App::$strings["Special thanks to: "] = "Besonderer Dank an: "; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Einige gültige Beispiele: A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "Gitarrenakkorde"; +App::$strings["The complete online chord dictionary"] = "Das komplette online Akkord-Verzeichnis"; +App::$strings["Tuning"] = "Stimmen"; +App::$strings["Chord name: example: Em7"] = "Beispiel Akkord Name: Em7"; +App::$strings["Show for left handed stringing"] = "Linkshänder-Besaitung anzeigen"; +App::$strings["Quick Reference"] = "Schnellreferenz"; +App::$strings["Post to Libertree"] = "Bei Libertree veröffentlichen"; +App::$strings["Enable Libertree Post Plugin"] = "Aktivire das Libertree-Plugin"; +App::$strings["Libertree API token"] = "Libertree API Token"; +App::$strings["Libertree site URL"] = "URL der Libertree Seite"; +App::$strings["Post to Libertree by default"] = "Standardmäßig bei Libertree veröffentlichen"; +App::$strings["Libertree Post Settings"] = "Libertree-Beitragseinstellungen"; +App::$strings["Libertree Settings saved."] = "Libertree-Einstellungen gespeichert."; +App::$strings["Flattr this!"] = "Flattr this!"; +App::$strings["Flattr widget settings updated."] = "Flattr Widget Einstellungen aktualisiert"; +App::$strings["Flattr user"] = "Flattr Nutzer"; +App::$strings["URL of the Thing to flattr"] = "URL des Dings zum flattrn"; +App::$strings["If empty channel URL is used"] = "Falls leer wird die Channel URL verwendet"; +App::$strings["Title of the Thing to flattr"] = "Titel des Dings zum flattrn"; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Falls leer wird \"Kanalname auf The Hubzilla\" verwendet"; +App::$strings["Static or dynamic flattr button"] = "Statischer oder dynamischer Flattr Button"; +App::$strings["static"] = "statisch"; +App::$strings["dynamic"] = "dynamisch"; +App::$strings["Alignment of the widget"] = "Ausrichtung des Widgets"; +App::$strings["left"] = "links"; +App::$strings["right"] = "rechts"; +App::$strings["Enable Flattr widget"] = "Flattr Widget verwenden"; +App::$strings["Flattr Widget Settings"] = "Flattr Widget Einstellungen"; +App::$strings["Post to GNU social"] = "Bei GNU social veröffentlichen"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Bitte kontaktiere den Administrator deines Hubs.
Die angegebene API URL ist nicht korrekt."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "Mit dem angegebenen Pfad war es uns nicht möglich, die GNU social API zu erreichen."; +App::$strings["GNU social settings updated."] = "GNU social Einstellungen aktualisiert."; +App::$strings["Globally Available GNU social OAuthKeys"] = "Global verfügbare GNU social OAuthKeys"; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel.
Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten)."; +App::$strings["Provide your own OAuth Credentials"] = "Stelle deine eigenen OAuth Credentials zur Verfügung"; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.
Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert."; +App::$strings["OAuth Consumer Key"] = "OAuth Consumer Key"; +App::$strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; +App::$strings["Base API Path"] = "Basis Pfad der API"; +App::$strings["Remember the trailing /"] = "Denke an das abschließende /"; +App::$strings["GNU social application name"] = "GNU social Anwendungsname"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Um dich mit deinem GNU social Konto zu verbinden, klicke den Button unten und kopiere dann den Sicherheitscode von GNU social in das Formular weiter unten. Es werden ausschließlich deine öffentlichen Beiträge auf GNU social veröffentlicht."; +App::$strings["Log in with GNU social"] = "Mit GNU social anmelden"; +App::$strings["Copy the security code from GNU social here"] = "Kopiere den Sicherheitscode von GNU social hier her"; +App::$strings["Cancel Connection Process"] = "Verbindungsprozes abbrechen"; +App::$strings["Current GNU social API is"] = "Aktuelle GNU social API ist"; +App::$strings["Cancel GNU social Connection"] = "GNU social Verbindung trennen"; +App::$strings["Currently connected to: "] = "Momentan verbunden mit:"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu GNU social geteilter Link in öffentlichen Beiträgen Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist."; +App::$strings["Allow posting to GNU social"] = "Erlaube die Veröffentlichung bei GNU social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden."; +App::$strings["Post to GNU social by default"] = "Standardmäßig bei GNU social veröffentlichen"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht."; +App::$strings["Clear OAuth configuration"] = "OAuth Konfiguration löschen"; +App::$strings["GNU social Post Settings"] = "GNU social Einstellungen"; +App::$strings["API URL"] = "API-URL"; +App::$strings["Application name"] = "Anwendungsname"; +App::$strings["QR code"] = "QR-Code"; +App::$strings["QR Generator"] = "QR-Generator"; +App::$strings["Enter some text"] = "Etwas Text eingeben"; +App::$strings["Invalid game."] = "Ungültiges Spiel."; +App::$strings["You are not a player in this game."] = "Sie sind kein Spieler in diesem Spiel."; +App::$strings["You must be a local channel to create a game."] = "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein"; +App::$strings["You must select one opponent that is not yourself."] = "Du musst einen Gegner wählen, der nicht du selbst ist"; +App::$strings["Random color chosen."] = "Zufällige Farbe gewählt."; +App::$strings["Error creating new game."] = "Fehler beim Erstellen eines neuen Spiels."; +App::$strings["Requested channel is not available."] = "Angeforderter Kanal nicht verfügbar."; +App::$strings["You must select a local channel /chess/channelname"] = "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen"; +App::$strings["Enable notifications"] = "Benachrichtigungen aktivieren"; +App::$strings["Post to Twitter"] = "Bei Twitter veröffentlichen"; +App::$strings["Twitter settings updated."] = "Twitter-Einstellungen aktualisiert."; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator."; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine öffentlichen Beiträge werden auf Twitter geteilt."; +App::$strings["Log in with Twitter"] = "Mit Twitter anmelden"; +App::$strings["Copy the PIN from Twitter here"] = "PIN von Twitter hier her kopieren"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist."; +App::$strings["Allow posting to Twitter"] = "Erlaube die Veröffentlichung bei Twitter"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; +App::$strings["Twitter post length"] = "Länge von Twitter Beiträgen"; +App::$strings["Maximum tweet length"] = "Maximale Länge eines Tweets"; +App::$strings["Send public postings to Twitter by default"] = "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; +App::$strings["Twitter Post Settings"] = "Twitter-Beitragseinstellungen"; +App::$strings["Deactivate the feature"] = "Diese Funktion abschalten"; +App::$strings["Hide the button and show the smilies directly."] = "Verstecke die Schaltfläche und zeige die Smilies direkt an."; +App::$strings["Smileybutton Settings"] = "Smileyknopf-Einstellungen"; +App::$strings["Order Not Found"] = "Bestellung nicht gefunden"; +App::$strings["Order cannot be checked out."] = "Bestellvorgang kann nicht fortgesetzt werden."; +App::$strings["Enable Shopping Cart"] = "Aktiviere die Warenkorb-Funktion."; +App::$strings["Enable Test Catalog"] = "Aktiviere den Test-Warenbestand"; +App::$strings["Enable Manual Payments"] = "Aktiviere manuelle Zahlungen"; +App::$strings["Base Cart Settings"] = "Warenkorb-Grundeinstellungen"; +App::$strings["Add Item"] = "Füge den Artikel hinzu"; +App::$strings["Call cart_post_"] = ""; +App::$strings["Cart Not Enabled (profile: "] = ""; +App::$strings["Order not found."] = "Bestellung nicht gefunden."; +App::$strings["No Order Found"] = "Keine Bestellung gefunden"; +App::$strings["call: "] = ""; +App::$strings["An unknown error has occurred Please start again."] = "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es noch einmal."; +App::$strings["Invalid Payment Type. Please start again."] = "Unbekannte Zahlungsmethode. Bitte versuche es noch einmal."; +App::$strings["Order not found"] = "Bestellung nicht gefunden"; +App::$strings["Error: order mismatch. Please try again."] = "Fehler: Bestellungen stimmen nicht überein. Bitte versuche es noch einmal."; +App::$strings["Manual payments are not enabled."] = "Manuelle Zahlungen sind nicht aktiviert."; +App::$strings["Finished"] = "Fertig"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Diese Website verwendet Piwik, um die Besucherzugriffe auszuwerten."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Wenn Du nicht möchtest, dass Deine Besuche zu diesem Zweck gespeichert werden, kannst Du ein Cookie setzen, welches Piwik davon abhält, Deine weiteren Besuche auf dieser Website zu verfolgen (Opt-out)."; +App::$strings["Piwik Base URL"] = "Piwik Basis-URL"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Der absolute Pfad zu Deiner Piwik-Installation (ohne Protokoll (http/s), aber mit abschließendem Schrägstrich / )."; +App::$strings["Site ID"] = "Seitenkennung"; +App::$strings["Show opt-out cookie link?"] = "Den Opt-out Cookie-Link anzeigen?"; +App::$strings["Asynchronous tracking"] = "Asynchrones Tracking"; +App::$strings["Enable frontend JavaScript error tracking"] = "Ermögliche Frontend-JavaScript-Fehlertracking"; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Diese Funktion erfordert Piwik >= 2.2.0"; +App::$strings["Edit your profile and change settings."] = "Bearbeite dein Profil und ändere die Einstellungen."; +App::$strings["Click here to see activity from your connections."] = "Klicke hier, um die Aktivitäten Deiner Verbindungen zu sehen."; +App::$strings["Click here to see your channel home."] = "Klicke hier, um Deine Kanal-Hauptseite zu sehen."; +App::$strings["You can access your private messages from here."] = "Hierüber kannst Du auf Deine privaten Nachrichten zugreifen."; +App::$strings["Create new events here."] = "Neue Termine hier erstellen"; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Du kannst hier neue Verbindungen akzeptieren sowie die Einstellungen bereits vorhandener Vebindungen bearbeiten. Außerdem kannst Du Verbindungen in Gruppen zusammenfassen."; +App::$strings["System notifications will arrive here"] = "Systembenachrichtigungen werden hier eintreffen"; +App::$strings["Search for content and users"] = "Nach Inhalt von Benutzern suchen"; +App::$strings["Browse for new contacts"] = "Schaue nach möglichen neuen Verbindungen."; +App::$strings["Launch installed apps"] = "Installierte Apps starten"; +App::$strings["Looking for help? Click here."] = "Du benötigst Hilfe? Klicke hier."; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "In Deinem Netzwerk gibt es neue Ereignisse. Klicke hier, um zu sehen, was passiert ist!"; +App::$strings["You have received a new private message. Click here to see from who!"] = "Du hast eine neue private Nachricht erhalten. Klicke hier, um zu sehen, von wem!"; +App::$strings["There are events this week. Click here too see which!"] = "Es gibt neue Termine diese Woche. Klicke hier, um zu sehen, welche!"; +App::$strings["You have received a new introduction. Click here to see who!"] = "Du hast eine neue Verbindungsanfrage erhalten. Klicke hier, um zu sehen, wer es ist!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "Es gibt eine neue Systembenachrichtigung. Klicke hier, um zu sehen, was passiert ist!"; +App::$strings["Click here to share text, images, videos and sound."] = "Klicke hier, um Texte, Bilder, Videos und Klänge zu teilen."; +App::$strings["You can write an optional title for your update (good for long posts)."] = "Du kannst Deinem Beitrag einen optionalen Titel geben (gut für lange Beiträge)."; +App::$strings["Entering some categories here makes it easier to find your post later."] = "Ein paar Kategorien hier einzugeben, macht es leichter, Deinen Beitrag später wiederzufinden."; +App::$strings["Share photos, links, location, etc."] = "Teile Photos, Links, Standort, usw."; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Du möchtest diesen Inhalt nur für eine Weile teilen? Dann lass ihn zu einem bestimmten Datum ablaufen."; +App::$strings["You can password protect content."] = "Du kannst Inhalte mit einem Passwort schützen."; +App::$strings["Choose who you share with."] = "Wähle aus, mit wem Du teilen möchtest."; +App::$strings["Click here when you are done."] = "Klicke hier, wenn Du fertig bist."; +App::$strings["Adjust from which channels posts should be displayed."] = "Lege fest, von welchen Kanälen Beiträge angezeigt werden sollen."; +App::$strings["Only show posts from channels in the specified privacy group."] = "Zeige nur Beträge von Kanälen, die in einer bestimmten Gruppe sind."; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Finde Beiträge, die bestimmte Tags enthalten (Stichworte, die mit dem \"#\"-Symbol beginnen)."; +App::$strings["Easily find posts in given category."] = "Finde Beiträge in bestimmten Kategorien."; +App::$strings["Easily find posts by date."] = "Finde Beiträge anhand des Datums."; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Vorgeschlagene Kanäle, die in ihren Einstellungen zugestimmt haben, als Vorschläge angezeigt zu werden, und die Du eventuell interessant finden könntest."; +App::$strings["Here you see channels you have connected to."] = "Hier siehst du die Kanäle, mit denen Du verbunden bist."; +App::$strings["Save your search so you can repeat it at a later date."] = "Speichere Deine Suche, so dass Du sie später leicht erneut durchführen kannst."; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Wenn Du dieses Symbol siehst, kannst Du weitgehend sicher sein, dass der Ansender dem angegebenen entspricht. Nicht immer ist es möglich, den Absender zu verifizieren, daher fehlt das Symbol mitunter. Das ist aber in der Regel kein Grund zur Sorge."; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!"; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?

Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.

Du kannst auc durch das Drücken der Enter-Taste weitergehen."; +App::$strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit \$Projectname - Servern geteilt."; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe"; +App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; +App::$strings["New game"] = "Neues Spiel"; +App::$strings["New game with handicap"] = "Neues Handicaü-Spiel"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3D Tic-Tac-Toe funktioniert wie das ursprüngliche Spiel, nur dass es auf mehreren Ebenen gleichzeitig gespielt wird."; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In diesem Fall sind es drei Ebenen. Du gewinnst, wenn es dir gelingt drei in einer Reihe auf einer beliebigen Ebene oder diagonal über die verschiedenen Ebenen hinweg zu erreichen."; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Bei einem Handicap-Spiel wird die Position im Zentrum der mittleren Ebene gesperrt, da der Spieler der dieses Feld für sich beansprucht meist einen unfairen Vorteil hat."; +App::$strings["You go first..."] = "Du darfst anfangen..."; +App::$strings["I'm going first this time..."] = "Diesmal werde ich anfangen..."; +App::$strings["You won!"] = "Sie haben gewonnen!"; +App::$strings["\"Cat\" game!"] = "\"Katzen\"-Spiel!"; +App::$strings["I won!"] = "Ich habe gewonnen!"; +App::$strings["Message to display on every page on this server"] = "Nachricht, die auf jeder Seite dieses Servers angezeigt werden soll"; +App::$strings["Pageheader Settings"] = "Nachrichtenkopf-Einstellungen"; +App::$strings["pageheader Settings saved."] = "Nachrichtenkopf-Einstellungen gespeichert."; +App::$strings["Only authenticate automatically to sites of your friends"] = "Authentifiziere Dich nur auf Seiten deiner Freunde automatisch"; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "Authentifiziere Dich standardmäßig bei allen Seiten im Netzwerk automatisch"; +App::$strings["Authchoose Settings"] = "Einstellungen für automatische Authentifizierung"; +App::$strings["Atuhchoose Settings updated."] = "Einstellungen für automatische Authentifizierung aktualisiert."; +App::$strings["lonely"] = "einsam"; +App::$strings["drunk"] = "betrunken"; +App::$strings["horny"] = "geil"; +App::$strings["stoned"] = "bekifft"; +App::$strings["fucked up"] = "beschissen"; +App::$strings["clusterfucked"] = "clusterfucked"; +App::$strings["crazy"] = "verrückt"; +App::$strings["hurt"] = "verletzt"; +App::$strings["sleepy"] = "müde"; +App::$strings["grumpy"] = "mürrisch"; +App::$strings["high"] = "hoch"; +App::$strings["semi-conscious"] = "halb bewusstlos"; +App::$strings["in love"] = "verliebt"; +App::$strings["in lust"] = ""; +App::$strings["naked"] = "nackt"; +App::$strings["stinky"] = "stinkend"; +App::$strings["sweaty"] = "verschwitzt"; +App::$strings["bleeding out"] = "blutend"; +App::$strings["victorious"] = "siegreich"; +App::$strings["defeated"] = "besiegt"; +App::$strings["envious"] = "neidisch"; +App::$strings["jealous"] = "eifersüchtig"; +App::$strings["XMPP settings updated."] = "XMPP-Einstellungen aktualisiert."; +App::$strings["Enable Chat"] = "Chat aktivieren"; +App::$strings["Individual credentials"] = "Individuelle Anmeldedaten"; +App::$strings["Jabber BOSH server"] = "Jabber BOSH Server"; +App::$strings["XMPP Settings"] = "XMPP-Einstellungen"; +App::$strings["Jabber BOSH host"] = "Jabber BOSH Host"; +App::$strings["Use central userbase"] = "Zentrale Benutzerbasis verwenden"; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Wenn aktiviert, werden die Mitglieder automatisch auf dem EJabber Server, der auf dieser Maschine installiert ist, angemeldet und die Zugangsdaten werden über das \"auth_ejabberd.php\"-Script synchronisiert."; +App::$strings["Who likes me?"] = "Wer mag mich?"; +App::$strings["You are now authenticated to pumpio."] = "Du bist nun bei pumpio authenzifiziert."; +App::$strings["return to the featured settings page"] = "Zur Funktions-Einstellungsseite zurückkehren"; +App::$strings["Post to Pump.io"] = "Bei pumpio veröffentlichen"; +App::$strings["Pump.io servername"] = "Pump.io-Servername"; +App::$strings["Without \"http://\" or \"https://\""] = "Ohne \"http://\" oder \"https://\""; +App::$strings["Pump.io username"] = "Pump.io-Benutzername"; +App::$strings["Without the servername"] = "Ohne dem Servernamen"; +App::$strings["You are not authenticated to pumpio"] = "Du bist nicht bei pumpio authentifiziert."; +App::$strings["(Re-)Authenticate your pump.io connection"] = "Deine pumpio Verbindung (erneut) authentifizieren"; +App::$strings["Enable pump.io Post Plugin"] = "Aktiviere das pumpio-Plugin"; +App::$strings["Post to pump.io by default"] = "Standardmäßig bei pumpio veröffentlichen"; +App::$strings["Should posts be public"] = "Sollen die Beiträge öffentlich sein"; +App::$strings["Mirror all public posts"] = "Öffentliche Beiträge spiegeln"; +App::$strings["Pump.io Post Settings"] = "Pump.io-Beitragseinstellungen"; +App::$strings["PumpIO Settings saved."] = "PumpIO-Einstellungen gespeichert."; +App::$strings["An account has been created for you."] = "Ein Konto wurde für Sie erstellt."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert."; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = "\$Projectname suchen"; +App::$strings["Redmatrix File Storage Import"] = "Import des Redmatrix Datei Speichers"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Hiermit werden alle deine Daten aus der Redmatrix Cloud in diesen Kanal importiert."; +App::$strings["file"] = "Datei"; +App::$strings["Send email to all members"] = "E-Mail an alle Mitglieder senden"; +App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d von %2\$d Nachrichten gesendet."; +App::$strings["Send email to all hub members."] = "Eine E-Mail an alle Mitglieder dieses Hubs senden."; +App::$strings["Sender Email address"] = "E-Mail Adresse des Absenders"; +App::$strings["Test mode (only send to hub administrator)"] = "Test Modus (nur an Hub Administratoren senden)"; +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"] = "Transgender"; +App::$strings["Transgender"] = "Transsexuell"; App::$strings["Intersex"] = "Zwischengeschlechtlich"; App::$strings["Transsexual"] = "Transsexuell"; App::$strings["Hermaphrodite"] = "Zwitter"; @@ -886,1264 +2671,589 @@ 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["Site Admin"] = "Hub-Administration"; -App::$strings["Address Book"] = "Adressbuch"; -App::$strings["Mood"] = "Laune"; -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["Language"] = "Sprache"; -App::$strings["Post"] = "Beitrag"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Update"] = "Aktualisieren"; -App::$strings["Install"] = "Installieren"; -App::$strings["Purchase"] = "Kaufen"; +App::$strings["likes %1\$s's %2\$s"] = "gefällt %1\$ss %2\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "missfällt %1\$ss %2\$s"; +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["Loading..."] = "Lädt ..."; +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["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["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; +App::$strings["Comments enabled"] = "Kommentare aktiviert"; +App::$strings["Comments disabled"] = "Kommentare deaktiviert"; +App::$strings["Page link name"] = "Link zur Seite"; +App::$strings["Post as"] = "Veröffentlichen als"; +App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Disable comments"] = "Kommentare deaktivieren"; +App::$strings["Toggle comments"] = "Kommentare umschalten"; +App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; +App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; +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["Profile Details"] = "Profil-Details"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; +App::$strings["View Cards"] = "Karten anzeigen"; +App::$strings["articles"] = "Artikel"; +App::$strings["View Articles"] = "Artikel anzeigen"; +App::$strings["View Webpages"] = "Webseiten anzeigen"; +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["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["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["Unable to import a removed channel."] = "Nicht möglich, einen gelöschten Kanal zu importieren."; +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["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +App::$strings["prev"] = "vorherige"; +App::$strings["first"] = "erste"; +App::$strings["last"] = "letzte"; +App::$strings["next"] = "nächste"; +App::$strings["older"] = "älter"; +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["ping"] = "anpingen"; +App::$strings["pinged"] = "pingte"; +App::$strings["prod"] = "knuffen"; +App::$strings["prodded"] = "knuffte"; +App::$strings["slap"] = "ohrfeigen"; +App::$strings["slapped"] = "ohrfeigte"; +App::$strings["finger"] = "befummeln"; +App::$strings["fingered"] = "befummelte"; +App::$strings["rebuff"] = "eine Abfuhr erteilen"; +App::$strings["rebuffed"] = "zurückgewiesen"; +App::$strings["happy"] = "glücklich"; +App::$strings["sad"] = "traurig"; +App::$strings["mellow"] = "sanft"; +App::$strings["tired"] = "müde"; +App::$strings["perky"] = "frech"; +App::$strings["angry"] = "sauer"; +App::$strings["stupefied"] = "verblüfft"; +App::$strings["puzzled"] = "verwirrt"; +App::$strings["interested"] = "interessiert"; +App::$strings["bitter"] = "verbittert"; +App::$strings["cheerful"] = "fröhlich"; +App::$strings["alive"] = "lebendig"; +App::$strings["annoyed"] = "verärgert"; +App::$strings["anxious"] = "unruhig"; +App::$strings["cranky"] = "schrullig"; +App::$strings["disturbed"] = "verstört"; +App::$strings["frustrated"] = "frustriert"; +App::$strings["depressed"] = "deprimiert"; +App::$strings["motivated"] = "motiviert"; +App::$strings["relaxed"] = "entspannt"; +App::$strings["surprised"] = "überrascht"; +App::$strings["Monday"] = "Montag"; +App::$strings["Tuesday"] = "Dienstag"; +App::$strings["Wednesday"] = "Mittwoch"; +App::$strings["Thursday"] = "Donnerstag"; +App::$strings["Friday"] = "Freitag"; +App::$strings["Saturday"] = "Samstag"; +App::$strings["Sunday"] = "Sonntag"; +App::$strings["January"] = "Januar"; +App::$strings["February"] = "Februar"; +App::$strings["March"] = "März"; +App::$strings["April"] = "April"; +App::$strings["May"] = "Mai"; +App::$strings["June"] = "Juni"; +App::$strings["July"] = "Juli"; +App::$strings["August"] = "August"; +App::$strings["September"] = "September"; +App::$strings["October"] = "Oktober"; +App::$strings["November"] = "November"; +App::$strings["December"] = "Dezember"; +App::$strings["Unknown Attachment"] = "Unbekannter Anhang"; +App::$strings["unknown"] = "unbekannt"; +App::$strings["remove category"] = "Kategorie entfernen"; +App::$strings["remove from file"] = "aus der Datei entfernen"; +App::$strings["Download binary/encrypted content"] = "Binären/verschlüsselten Inhalt herunterladen"; +App::$strings["default"] = "Standard"; +App::$strings["Page layout"] = "Seiten-Layout"; +App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; +App::$strings["HTML"] = "HTML"; +App::$strings["Comanche Layout"] = "Comanche-Layout"; +App::$strings["PHP"] = "PHP"; +App::$strings["Page content type"] = "Art des Seiteninhalts"; +App::$strings["activity"] = "Aktivität"; +App::$strings["a-z, 0-9, -, and _ only"] = "nur a-z, 0-9, - und _"; +App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; +App::$strings["Pages"] = "Seiten"; +App::$strings["Import website..."] = "Webseite importieren..."; +App::$strings["Select folder to import"] = "Ordner zum Importieren auswählen"; +App::$strings["Import from a zipped folder:"] = "Aus einem gezippten Ordner importieren:"; +App::$strings["Import from cloud files:"] = "Aus Cloud-Dateien importieren:"; +App::$strings["/cloud/channel/path/to/folder"] = "/Cloud/Kanal/Pfad/zum/Ordner"; +App::$strings["Enter path to website files"] = "Pfad zu Webseitendateien eingeben"; +App::$strings["Select folder"] = "Ordner auswählen"; +App::$strings["Export website..."] = "Webseite exportieren..."; +App::$strings["Export to a zip file"] = "In eine ZIP-Datei exportieren"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "Geben Sie einen für die ZIP-Datei ein."; +App::$strings["Export to cloud files"] = "In Cloud-Dateien exportieren"; +App::$strings["/path/to/export/folder"] = "/Pfad/zum/exportierenden/Ordner"; +App::$strings["Enter a path to a cloud files destination."] = "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein."; +App::$strings["Specify folder"] = "Ordner angeben"; +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["Common Connections"] = "Gemeinsame Verbindungen"; +App::$strings["View all %d common connections"] = "Zeige alle %d gemeinsamen Verbindungen"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +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["Premium channel - please visit:"] = "Premium-Kanal - bitte gehe zu:"; +App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; +App::$strings["Remote channel or protocol unavailable."] = "Externer Kanal oder Protokoll nicht verfügbar."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +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["Password too short"] = "Kennwort zu kurz"; +App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +App::$strings["everybody"] = "alle"; +App::$strings["Secret Passphrase"] = "geheime Passphrase"; +App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +App::$strings["close all"] = "Alle schließen"; +App::$strings["Nothing new here"] = "Nichts Neues hier"; +App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; +App::$strings["Describe (optional)"] = "Beschreibung (optional)"; +App::$strings["Please enter a link URL"] = "Gib eine URL ein:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; +App::$strings["timeago.prefixAgo"] = "vor"; +App::$strings["timeago.prefixFromNow"] = "in"; +App::$strings["timeago.suffixAgo"] = "NONE"; +App::$strings["timeago.suffixFromNow"] = "NONE"; +App::$strings["less than a minute"] = "weniger als einer Minute"; +App::$strings["about a minute"] = "ungefähr einer Minute"; +App::$strings["%d minutes"] = "%d Minuten"; +App::$strings["about an hour"] = "ungefähr einer Stunde"; +App::$strings["about %d hours"] = "ungefähr %d Stunden"; +App::$strings["a day"] = "einem Tag"; +App::$strings["%d days"] = "%d Tagen"; +App::$strings["about a month"] = "ungefähr einem Monat"; +App::$strings["%d months"] = "%d Monaten"; +App::$strings["about a year"] = "ungefähr einem Jahr"; +App::$strings["%d years"] = "%d Jahren"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "Mai"; +App::$strings["Jan"] = "Jan"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mär"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "Mai"; +App::$strings["Jun"] = "Jun"; +App::$strings["Jul"] = "Jul"; +App::$strings["Aug"] = "Aug"; +App::$strings["Sep"] = "Sep"; +App::$strings["Oct"] = "Okt"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Dez"; +App::$strings["Sun"] = "So"; +App::$strings["Mon"] = "Mo"; +App::$strings["Tue"] = "Di"; +App::$strings["Wed"] = "Mi"; +App::$strings["Thu"] = "Do"; +App::$strings["Fri"] = "Fr"; +App::$strings["Sat"] = "Sa"; +App::$strings["__ctx:calendar__ today"] = "heute"; +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["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +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["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["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["[Edited %s]"] = "[%s wurde bearbeitet]"; +App::$strings["__ctx:edit_activity__ Post"] = "Beitrag"; +App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar"; +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 Konten-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Unable to retrieve modified identity"] = "Geänderte Identität kann nicht empfangen werden"; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Change your profile photo"] = "Dein Profilfoto ändern"; +App::$strings["Trans"] = "Trans"; +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["Tags:"] = "Schlagworte:"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +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["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["Home, Voice"] = "Zuhause, Sprache"; +App::$strings["Home, Fax"] = "Zuhause, Fax"; +App::$strings["Work, Voice"] = "Arbeit, Sprache"; +App::$strings["Work, Fax"] = "Arbeit, Fax"; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +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["Select an alternate language"] = "Wähle eine alternative Sprache"; +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["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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; 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, allerdings fehlen dir die nötigen Rechte es auf dieser Seite zu installieren."; -App::$strings["webpage"] = "Webseite"; -App::$strings["layout"] = "Gestaltung"; -App::$strings["block"] = "Block"; -App::$strings["menu"] = "Menü"; -App::$strings["QR code"] = "QR-Code"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["post"] = "Beitrag"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 spoiler"] = "$1 Spoiler"; +App::$strings["Install %1\$s element %2\$s"] = "Installiere %1\$s Element %2\$s"; +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["card"] = "Karte"; +App::$strings["article"] = "Artikel"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["View article"] = "Artikel ansehen"; +App::$strings["View summary"] = "Zusammenfassung ansehen"; App::$strings["$1 wrote:"] = "$1 schrieb:"; -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."; -App::$strings["Room not found."] = "Chatraum konnte nicht gefunden werden."; -App::$strings["Room is full"] = "Der Raum ist voll"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Limit der Webseite von %lu bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -App::$strings["Photo storage failed."] = "Foto speichern schlug fehl"; -App::$strings["Upload New Photos"] = "Lade neue Fotos hoch"; -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["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["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 Channels"] = "Delegierte Kanäle"; -App::$strings["Public access denied."] = "Öffentlicher Zugang verweigert."; -App::$strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", -); -App::$strings["Gender: "] = "Geschlecht:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Webseite:"; -App::$strings["Description:"] = "Beschreibung:"; -App::$strings["Public Forum:"] = "Öffentliches Forum:"; -App::$strings["Keywords: "] = "Schlüsselwörter:"; -App::$strings["Don't suggest"] = "Nicht vorschlagen."; -App::$strings["Common connections:"] = "Gemeinsame Verbindungen:"; -App::$strings["Global Directory"] = "Globales Verzeichnis"; -App::$strings["Local Directory"] = "Lokales Verzeichnis"; -App::$strings["Finding:"] = "Ergebnisse:"; -App::$strings["next page"] = "nächste Seite"; -App::$strings["previous page"] = "vorherige Seite"; -App::$strings["Sort options"] = "Sortieroptionen"; -App::$strings["Alphabetic"] = "alphabetisch"; -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["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["Not found."] = "Nicht gefunden."; -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["Page Title"] = "Seitentitel"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; -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["Remove"] = "Entferne"; -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["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["Item not available."] = "Element nicht verfügbar."; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; -App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -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["Image exceeds size limit of %d"] = "Bild ist größer als das Limit von %d"; -App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -App::$strings["Photo not available."] = "Foto nicht verfügbar."; -App::$strings["Upload File:"] = "Datei hochladen:"; -App::$strings["Select a profile:"] = "Wähle ein Profil:"; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["or"] = "oder"; -App::$strings["skip this step"] = "diesen Schritt überspringen"; -App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -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["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -App::$strings["Image size reduction [%s] failed."] = "Reduzierung der Bildgröße [%s] fehlgeschlagen."; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Page not found."] = "Seite nicht gefunden."; -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["thing"] = "Sache"; -App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; -App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -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["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["l, F j"] = "l, j. F"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Create New Event"] = "Neuen Termin erstellen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["Import"] = "Import"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Event details"] = "Termin-Details"; -App::$strings["Starting date and Title are required."] = "Startdatum und Titel sind erforderlich."; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Event Starts:"] = "Termin beginnt:"; -App::$strings["Finish date/time is not known or not relevant"] = "Ende Datum/Zeit sind unbekannt oder unwichtig"; -App::$strings["Event Finishes:"] = "Termin endet:"; -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["Title:"] = "Titel:"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -App::$strings["Public Sites"] = "Öffentliche Server"; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Die hier aufgeführten Server sind öffentlich und erlauben die Registrierung bei \$Projectname. Alle Server dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten könnten nähere Details dazu stehen."; -App::$strings["Rate this hub"] = "Bewerte diesen Hub"; -App::$strings["Site URL"] = "Server-URL"; -App::$strings["Access Type"] = "Zugangstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Location"] = "Ort"; -App::$strings["View hub ratings"] = "Bewertungen dieses Hubs ansehen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["View ratings"] = "Bewertungen ansehen"; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["\$Projectname channel"] = "\$Projectname-Kanal"; -App::$strings["Collection created."] = "Sammlung erstellt."; -App::$strings["Could not create collection."] = "Sammlung kann nicht erstellt werden."; -App::$strings["Collection updated."] = "Sammlung aktualisiert."; -App::$strings["Create a collection of channels."] = "Erstelle eine Sammlung von Kanälen."; -App::$strings["Collection Name: "] = "Name der Sammlung:"; -App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -App::$strings["Collection removed."] = "Sammlung gelöscht."; -App::$strings["Unable to remove collection."] = "Löschen der Sammlung nicht möglich."; -App::$strings["Collection Editor"] = "Sammlung-Editor"; -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["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["\$Projectname"] = "\$Projectname"; -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["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Bitte besuchen Sie redmatrix.me, 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["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."; -App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -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["No such group"] = "Sammlung nicht gefunden"; -App::$strings["No such channel"] = "Kanal nicht gefunden"; -App::$strings["Search Results For:"] = "Suchergebnisse für:"; -App::$strings["Collection is empty"] = "Sammlung ist leer"; -App::$strings["Collection: "] = "Sammlung:"; -App::$strings["Connection: "] = "Verbindung:"; -App::$strings["Invalid connection."] = "Ungültige Verbindung."; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -App::$strings["This site is not a directory server"] = "Diese Website ist kein Verzeichnis-Server"; -App::$strings["Blocked"] = "Blockiert"; -App::$strings["Ignored"] = "Ignoriert"; -App::$strings["Hidden"] = "Versteckt"; -App::$strings["Archived"] = "Archiviert"; -App::$strings["Suggest new connections"] = "Neue Verbindungen vorschlagen"; -App::$strings["New Connections"] = "Neue Verbindungen"; -App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; -App::$strings["All Connections"] = "Alle Verbindungen"; -App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; -App::$strings["Unblocked"] = "Freigegeben"; -App::$strings["Only show unblocked connections"] = "Nur freigegebene Verbindungen anzeigen"; -App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; -App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; -App::$strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; -App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Verbindung bearbeiten"; -App::$strings["Search your connections"] = "Verbindungen durchsuchen"; -App::$strings["Finding: "] = "Ergebnisse:"; -App::$strings["Block Name"] = "Datenblockname"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Delete item?"] = "Eintrag löschen?"; -App::$strings["Insert YouTube video"] = "YouTube-Video einfügen"; -App::$strings["Insert Vorbis [.ogg] video"] = "Vorbis [.ogg]-Video einfügen"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Vorbis [.ogg]-Audio einfügen"; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname-Gäste: Benutzername: {Ihre E-Mail-Adresse}, Passwort: +++"; -App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -App::$strings["Album not found."] = "Album nicht gefunden."; -App::$strings["Delete Album"] = "Album löschen"; -App::$strings["Delete Photo"] = "Foto löschen"; -App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; -App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -App::$strings["Upload Photos"] = "Fotos hochladen"; -App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; -App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -App::$strings["Contact Photos"] = "Kontakt-Bilder"; -App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; -App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -App::$strings["View Photo"] = "Foto ansehen"; -App::$strings["Edit Album"] = "Album bearbeiten"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -App::$strings["Photo not available"] = "Foto nicht verfügbar"; -App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; -App::$strings["Private Photo"] = "Privates Foto"; -App::$strings["View Full Size"] = "In voller Größe anzeigen"; -App::$strings["Edit photo"] = "Foto bearbeiten"; -App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -App::$strings["Caption"] = "Bildunterschrift"; -App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -App::$strings["In This Photo:"] = "Auf diesem Foto:"; -App::$strings["Map"] = "Karte"; -App::$strings["View Album"] = "Album ansehen"; -App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; -App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; -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["Away"] = "Abwesend"; -App::$strings["Online"] = "Online"; -App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; -App::$strings["Save Bookmark"] = "Lesezeichen speichern"; -App::$strings["URL of bookmark"] = "URL des Lesezeichens"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Layout updated."] = "Gestaltung aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Gestaltung nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Gestaltungshilfe"; -App::$strings["- select -"] = "– auswählen –"; -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"; -App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; -App::$strings["The data provided is not compatible with this project."] = "Die bereitgestellten Daten sind mit diesem Projekt nicht kompatibel."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; -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["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -App::$strings["Import Channel"] = "Kanal importieren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen RadMatrix-Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; -App::$strings["File to Upload"] = "Hochzuladende Datei:"; -App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen Red-Servers ein"; -App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -App::$strings["Your old login password"] = "Dein altes Passwort"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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 Red-Server 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."; -App::$strings["Make this hub my primary location"] = "Dieser Red-Server ist mein primärer Server."; -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["Delete layout?"] = "Gestaltung löschen?"; -App::$strings["Layout Description (Optional)"] = "Gestaltungsbeschreibung (Optional)"; -App::$strings["Layout Name"] = "Gestaltungsname"; -App::$strings["Edit Layout"] = "Gestaltung bearbeiten"; -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 This Room"] = "Diesen 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["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom Name"] = "Name des Chatraums"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["Menu not found."] = "Menü nicht gefunden"; -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["Delete webpage?"] = "Webseite löschen?"; -App::$strings["Page link title"] = "Seitentitel-Link"; -App::$strings["Edit Webpage"] = "Webseite bearbeiten"; -App::$strings["This directory server requires an access token"] = "Dieser Verzeichnis-Server benötigt ein Zugangstoken"; -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."] = "Ihr 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["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Entfernter 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["Delete block?"] = "Block löschen?"; -App::$strings["Edit Block"] = "Block bearbeiten"; -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 Red"] = "Schließe Dich uns an und werde Teil der Red-Matrix"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines Red-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: "] = "Gib folgenden Einladungs-Code ein:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Server (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["Primary location cannot be removed."] = "Der primäre Klon kann nicht gelöscht werden."; -App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; -App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; -App::$strings["Location (address)"] = "URL (Adresse)"; -App::$strings["Primary Location"] = "Primärer Klon"; -App::$strings["Drop location"] = "Klon löschen"; -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."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; -App::$strings["New Source"] = "Neue Quelle"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importieren Sie alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteilen Sie sie gemäß der Ihrer Kanaleinstellungen."; -App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -App::$strings["Channel Name"] = "Name des Kanals"; -App::$strings["Source not found."] = "Quelle nicht gefunden."; -App::$strings["Edit Source"] = "Quelle bearbeiten"; -App::$strings["Delete Source"] = "Quelle löschen"; -App::$strings["Source removed"] = "Quelle gelöscht"; -App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -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["Drop"] = "Löschen"; -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["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["Permission Denied."] = "Zugriff verweigert."; -App::$strings["File not found."] = "Datei nicht gefunden."; -App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -App::$strings["Return to file list"] = "Zurück zur Dateiliste"; -App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -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["Contact not found."] = "Kontakt nicht gefunden"; -App::$strings["Friend suggestion sent."] = "Freundschaftsempfehlung senden."; -App::$strings["Suggest Friends"] = "Kontakte vorschlagen"; -App::$strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -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["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -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["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s ist fehlgeschlagen"; -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."] = "Profilname ist 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["Gender"] = "Geschlecht"; -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 contact/friend list from viewers of this profile?"] = "Deine Kontaktliste vor Betrachtern dieses Profils verbergen?"; -App::$strings["Edit Profile Details"] = "Bearbeite Profil-Details"; -App::$strings["View this profile"] = "Dieses Profil ansehen"; -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["Import profile from file"] = "Profil aus einer Datei importieren"; -App::$strings["Export profile to file"] = "Profil in eine Datei exportieren"; -App::$strings["Profile Name:"] = "Profilname:"; -App::$strings["Your Full Name:"] = "Dein voller Name:"; -App::$strings["Title/Description:"] = "Titel/Beschreibung:"; -App::$strings["Your Gender:"] = "Dein Geschlecht:"; -App::$strings["Birthday :"] = "Geburtstag:"; -App::$strings["Street Address:"] = "Straße und Hausnummer:"; -App::$strings["Locality/City:"] = "Wohnort:"; -App::$strings["Postal/Zip Code:"] = "Postleitzahl:"; -App::$strings["Country:"] = "Land:"; -App::$strings["Region/State:"] = "Region/Bundesstaat:"; -App::$strings[" Marital Status:"] = " Beziehungsstatus:"; -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["Homepage URL:"] = "Homepage URL:"; -App::$strings["Religious Views:"] = "Religiöse Ansichten:"; -App::$strings["Keywords:"] = "Schlüsselwörter:"; -App::$strings["Example: fishing photography software"] = "Beispiel: Angeln Fotografie Software"; -App::$strings["Used in directory listings"] = "Wird in Verzeichnis-Auflistungen verwendet"; -App::$strings["Tell us about yourself..."] = "Erzähle uns ein wenig von Dir …"; -App::$strings["Hobbies/Interests"] = "Hobbys/Interessen"; -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["This is your default profile."] = "Das ist Dein Standardprofil."; +App::$strings[" by "] = "von"; +App::$strings[" on "] = "am"; +App::$strings["Embedded content"] = "Eingebetteter Inhalt"; +App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s willkommen"; +App::$strings["General Features"] = "Allgemeine Funktionen"; +App::$strings["Display new member quick links menu"] = "Zeigt neuen Mitgliedern ein Menü mit Schnell-Links zu wichtigen Funktionen"; +App::$strings["Advanced Profiles"] = "Erweiterte Profile"; +App::$strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; +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["Private Notes"] = "Private Notizen"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; +App::$strings["Create personal planning cards"] = "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken"; +App::$strings["Create interactive articles"] = "Erstelle interaktive Artikel"; +App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü"; +App::$strings["Photo Location"] = "Aufnahmeort"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte"; +App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume"; +App::$strings["Provide chatrooms and chat services with access control."] = "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an."; +App::$strings["Smart Birthdays"] = "Smarte Geburtstage"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind."; +App::$strings["Event Timezone Selection"] = "Termin-Zeitzonenauswahl"; +App::$strings["Allow event creation in timezones other than your own."] = "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen."; +App::$strings["Premium Channel"] = "Premium-Kanal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; +App::$strings["Advanced Directory Search"] = "Erweiterte Verzeichnissuche"; +App::$strings["Allows creation of complex directory search queries"] = "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen"; +App::$strings["Advanced Theme and Layout Settings"] = "Erweiterte Design- und Layout-Einstellungen"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Erlaubt die Feineinstellung von Designs und Seitenlayouts"; +App::$strings["Access Control and Permissions"] = "Zugriffskontrolle und Berechtigungen"; +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["Multiple Profiles"] = "Mehrfachprofile"; +App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; +App::$strings["Provide alternate connection permission roles."] = "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung."; +App::$strings["OAuth1 Clients"] = "OAuth1 Clients"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Verwalte OAuth1-Tokens für den Zugriff von mobilen bzw. externen Anwendungen."; +App::$strings["OAuth2 Clients"] = "OAuth2 Clients"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Verwalte OAuth2-Tokens für den Zugriff von mobilen bzw. externen Anwendungen."; +App::$strings["Access Tokens"] = "Zugangstokens"; +App::$strings["Create access tokens so that non-members can access private content."] = "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte."; +App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; +App::$strings["Large Photos"] = "Große Fotos"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds"; +App::$strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)"; +App::$strings["Enable Voting Tools"] = "Umfragewerkzeuge aktivieren"; +App::$strings["Provide a class of post which others can vote on"] = "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.)"; +App::$strings["Disable Comments"] = "Kommentare deaktivieren"; +App::$strings["Provide the option to disable comments for a post"] = "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten"; +App::$strings["Delayed Posting"] = "Verzögertes Senden"; +App::$strings["Allow posts to be published at a later date"] = "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen"; +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."; +App::$strings["Suppress Duplicate Posts/Comments"] = "Doppelte Beiträge unterdrücken"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden."; +App::$strings["Auto-save drafts of posts and comments"] = "Auto-Speicherung von Beitrags- und Kommentarentwürfen"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Speichert Deine Beitrags- und Kommentarentwürfe automatisch im lokalen Browserspeicher und hilft so, versehentlichem Verlust dieser Inhalte vorzubeugen"; +App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; +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["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"; +App::$strings["Network New Tab"] = "Netzwerkreiter Neu"; +App::$strings["Enable tab to display all new Network activity"] = "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt"; +App::$strings["Affinity Tool"] = "Beziehungs-Tool"; +App::$strings["Filter stream activity by depth of relationships"] = "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann"; +App::$strings["Show friend and connection suggestions"] = "Freund- und Verbindungsvorschläge anzeigen"; +App::$strings["Connection Filtering"] = "Filter für Verbindungen"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; +App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; +App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; +App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; +App::$strings["Post Categories"] = "Beitrags-Kategorien"; +App::$strings["Add categories to your posts"] = "Aktiviert Kategorien für Beiträge"; +App::$strings["Emoji Reactions"] = "Emoji Reaktionen"; +App::$strings["Add emoji reaction ability to posts"] = "Aktiviert Emoji-Reaktionen für Beiträge"; +App::$strings["Ability to file posts under folders"] = "Möglichkeit, Beiträge in Verzeichnissen zu sammeln"; +App::$strings["Dislike Posts"] = "Gefällt-mir-nicht-Beiträge"; +App::$strings["Ability to dislike posts/comments"] = "Aktiviert die „Gefällt mir nicht“-Schaltfläche"; +App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; +App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; +App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; +App::$strings["Trending"] = "Meistbeachtet"; +App::$strings["Keywords"] = "Schlüsselwörter"; +App::$strings["have"] = "habe"; +App::$strings["has"] = "hat"; +App::$strings["want"] = "will"; +App::$strings["wants"] = "will"; +App::$strings["likes"] = "gefällt"; +App::$strings["dislikes"] = "missfällt"; +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["Birthday"] = "Geburtstag"; App::$strings["Age: "] = "Alter:"; -App::$strings["Edit/Manage Profiles"] = "Profile bearbeiten/verwalten"; -App::$strings["Add profile things"] = "Sachen zum Profil hinzufügen"; -App::$strings["Include desirable objects in your profile"] = "Binde begehrenswerte Dinge in Dein Profil ein"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; -App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -App::$strings["Could not create table."] = "Kann Tabelle nicht erstellen."; -App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemprüfung"; -App::$strings["Check again"] = "Bitte nochmal prüfen"; -App::$strings["Database connection"] = "Datenbank Verbindung"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktieren Sie Ihren Hosting-Provider oder Administrator, falls Sie Fragen zu diesen Einstellungen haben."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -App::$strings["Database Server Name"] = "Datenbank-Servername"; -App::$strings["Default is localhost"] = "Standard ist localhost"; -App::$strings["Database Port"] = "Datenbank-Port"; -App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -App::$strings["Database Login Name"] = "Datenbank-Benutzername"; -App::$strings["Database Login Password"] = "Datenbank-Kennwort"; -App::$strings["Database Name"] = "Datenbank-Name"; -App::$strings["Database Type"] = "Datenbanktyp"; -App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -App::$strings["Website URL"] = "URL der Webseite"; -App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -App::$strings["Site settings"] = "Seiteneinstellungen"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -App::$strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; -App::$strings["Command line PHP"] = "PHP Befehlszeile"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; -App::$strings["This is required for message delivery to work."] = "Das ist für die funktionierende Auslieferung von Nachrichten erforderlich."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; -App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -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 ist erforderlich, aber nicht installiert."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open ist erforderlich, aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL ist erforderlich, aber nicht installiert."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung ist erforderlich, aber nicht installiert."; -App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl ist erforderlich, 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 ist erforderlich, aber nicht installiert."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt ist erforderlich, 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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Red-Installation speichern musst."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Red-Installationsverzeichnisses."; -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["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 benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server 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."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -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 Red-Server (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["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"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -App::$strings["

What next

"] = "

Was als Nächstes

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -App::$strings["Export Channel"] = "Kanal exportieren"; -App::$strings["Export your basic channel information to a small 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 hub, but\tdoes 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 all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as 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 Inhalte Deines Kanals, ist aber nicht unbedingt für den Import eines Kanals auf einem anderen Hub geeignet, da die Datei SEHR groß werden kann. Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["No connections."] = "Keine Verbindungen."; -App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +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["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["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)"; +App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Hub durchsuchen: @Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["Add Apps"] = "Apps hinzufügen"; +App::$strings["Arrange Apps"] = "Apps anordnen"; +App::$strings["Toggle System Apps"] = "System-Apps umschalten"; +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["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -App::$strings["Site"] = "Seite"; -App::$strings["Accounts"] = "Konten"; -App::$strings["Channels"] = "Kanäle"; -App::$strings["Plugins"] = "Plug-Ins"; -App::$strings["Themes"] = "Themes"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["Profile Config"] = "Profilkonfiguration"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Logs"] = "Protokolle"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; -App::$strings["User registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["# Accounts"] = "Anzahl der Konten"; -App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; -App::$strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; -App::$strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; -App::$strings["# Channels"] = "Anzahl der Kanäle"; -App::$strings["# primary"] = "Anzahl der primären Kanäle"; -App::$strings["# clones"] = "Anzahl der Klone"; -App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; -App::$strings["Administration"] = "Administration"; -App::$strings["Summary"] = "Zusammenfassung"; -App::$strings["Registered accounts"] = "Registrierte Konten"; -App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; -App::$strings["Registered channels"] = "Registrierte Kanäle"; -App::$strings["Active plugins"] = "Aktive Plug-Ins"; -App::$strings["Version"] = "Version"; -App::$strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; -App::$strings["mobile"] = "mobil"; -App::$strings["experimental"] = "experimentell"; -App::$strings["unsupported"] = "nicht unterstützt"; -App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; -App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; -App::$strings["My site has paid access only"] = "Mein Server erlaubt nur bezahlten Zugang"; -App::$strings["My site has free access only"] = "Mein Server erlaubt ausschließlich freien Zugang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -App::$strings["Registration"] = "Registrierung"; -App::$strings["File upload"] = "Dateiupload"; -App::$strings["Policies"] = "Richtlinien"; -App::$strings["Site name"] = "Seitenname"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Administrator-Informationen"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -App::$strings["System language"] = "System-Sprache"; -App::$strings["System theme"] = "System-Theme"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; -App::$strings["Mobile system theme"] = "Mobile System-Theme:"; -App::$strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -App::$strings["Enable Diaspora Protocol"] = "Diaspora-Protokoll aktivieren"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunikation mit Diaspora und Friendica – experimentell"; -App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -App::$strings["Maximum image size"] = "Maximale Bildgröße"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -App::$strings["Register text"] = "Registrierungstext"; -App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Servers, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; -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."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; -App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; -App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; -App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Zugriff auf sonst öffentliche persönliche Seiten blockieren, wenn man nicht eingeloggt ist."; -App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -App::$strings["Force publish"] = "Veröffentlichung erzwingen"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -App::$strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden"; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."; -App::$strings["login on Homepage"] = "Anmeldemaske auf der Homepage"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; -App::$strings["Proxy user"] = "Proxy Benutzer"; -App::$strings["Proxy URL"] = "Proxy URL"; -App::$strings["Network timeout"] = "Netzwerk-Timeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -App::$strings["Delivery interval"] = "Auslieferung Intervall"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -App::$strings["Poll interval"] = "Abfrageintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -App::$strings["Maximum Load Average"] = "Maximales Load Average"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -App::$strings["Expiration period in days for imported (matrix/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte Inhalte aus der RedMatrix (dem Netzwerk) ablaufen sollen"; -App::$strings["0 for no expiration of imported content"] = "Setze 0, damit importierte Inhalte niemals ablaufen (entfernt werden)"; -App::$strings["No server found"] = "Kein Server gefunden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "für Kanal"; -App::$strings["on server"] = "auf Server"; -App::$strings["Status"] = "Status"; -App::$strings["Server"] = "Server"; -App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -App::$strings["Queue Statistics"] = "Warteschlangenstatistiken"; -App::$strings["Total Entries"] = "Einträge insgesamt"; -App::$strings["Priority"] = "Priorität"; -App::$strings["Destination URL"] = "Ziel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; -App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; -App::$strings["Last known contact"] = "Letzter bekannter Kontakt"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s Konto blockiert/freigegeben", - 1 => "%s Konten blockiert/freigegeben", -); -App::$strings["%s account deleted"] = array( - 0 => "%s Konto gelöscht", - 1 => "%s Konten gelöscht", -); -App::$strings["Account not found"] = "Konto nicht gefunden"; -App::$strings["Account '%s' deleted"] = "Konte '%s' gelöscht"; -App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; -App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; -App::$strings["Users"] = "Benutzer"; -App::$strings["select all"] = "Alle auswählen"; -App::$strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; -App::$strings["Request date"] = "Antragsdatum"; -App::$strings["No registrations."] = "Keine Registrierungen."; -App::$strings["Approve"] = "Genehmigen"; -App::$strings["Deny"] = "Verweigern"; -App::$strings["Block"] = "Blockieren"; -App::$strings["Unblock"] = "Freigeben"; -App::$strings["Register date"] = "Registrierungs-Datum"; -App::$strings["Last login"] = "Letzte Anmeldung"; -App::$strings["Expires"] = "Verfällt"; -App::$strings["Service Class"] = "Service-Klasse"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Ausgewählte Konten werden gelöscht.\\n\\nAlles was diese Konten auf dieser Seite veröffentlicht haben wird permanent gelöscht werden!\\n\\nBist du dir sicher?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf dieser Seite veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Code für %s Kanal gesperrt/freigegeben.", - 1 => "Code für %s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -App::$strings["Channel not found"] = "Kanal nicht gefunden"; -App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt."; -App::$strings["Censor"] = "Sperren"; -App::$strings["Uncensor"] = "Freigeben"; -App::$strings["Allow Code"] = "Code erlauben"; -App::$strings["Disallow Code"] = "Code nicht erlauben"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -App::$strings["Disable"] = "Deaktivieren"; -App::$strings["Enable"] = "Aktivieren"; -App::$strings["Toggle"] = "Umschalten"; -App::$strings["Author: "] = "Autor: "; -App::$strings["Maintainer: "] = "Betreuer:"; -App::$strings["No themes found."] = "Keine Theme gefunden."; -App::$strings["Screenshot"] = "Bildschirmfoto"; -App::$strings["[Experimental]"] = "[Experimentell]"; -App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; -App::$strings["Log settings updated."] = "Protokolleinstellungen aktualisiert."; -App::$strings["Clear"] = "Leeren"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "Protokolldatei"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Red-Stammverzeichnis."; -App::$strings["Log level"] = "Protokollstufe"; -App::$strings["New Profile Field"] = "Neues Profilfeld"; -App::$strings["Field nickname"] = "Kurzname für das Feld"; -App::$strings["System name of field"] = "Systemname des Feldes"; -App::$strings["Input type"] = "Art des Inhalts"; -App::$strings["Field Name"] = "Feldname"; -App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -App::$strings["Help text"] = "Hilfetext"; -App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -App::$strings["Registration on this site/hub is by approval only."] = "Anmeldungen auf diesem Server erfordern Zustimmung durch den Administrator"; -App::$strings["Register at another affiliated site/hub"] = "Registrierung auf einem anderen, angeschlossenen Server"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -App::$strings["Terms of Service"] = "Nutzungsbedingungen"; -App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -App::$strings["Your email address"] = "Ihre E-Mail Adresse"; -App::$strings["Choose a password"] = "Passwort"; -App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -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"; -App::$strings["WARNING: "] = "WARNUNG: "; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht."; -App::$strings["This action is permanent and can not be undone!"] = "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!"; -App::$strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"; -App::$strings["Remove Account"] = "Konto entfernen"; +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["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["Delegation session ended."] = ""; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Email validation is incomplete. Please check your email."] = "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; App::$strings["Help:"] = "Hilfe:"; App::$strings["Not Found"] = "Nicht gefunden"; -App::$strings["\$Projectname Documentation"] = "\$Projectname Dokkumentation"; -App::$strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]"; -App::$strings["Remote privacy information not available."] = "Privatsphäreeinstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; -App::$strings["Name is required"] = "Name ist erforderlich"; -App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis sind erforderlich"; -App::$strings["Diaspora Policy Settings updated."] = "Diaspora-Richtlinieneinstellungen aktualisiert."; -App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; -App::$strings["Password changed."] = "Kennwort geändert."; -App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; -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."; -App::$strings["Settings updated."] = "Einstellungen aktualisiert."; -App::$strings["Add application"] = "Anwendung hinzufügen"; -App::$strings["Name of application"] = "Name der Anwendung"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Umleitung"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; -App::$strings["Icon url"] = "Symbol-URL"; -App::$strings["Optional"] = "Optional"; -App::$strings["You can't edit this application."] = "Diese Anwendung kann nicht bearbeitet werden."; -App::$strings["Connected Apps"] = "Verbundene Apps"; -App::$strings["Client key starts with"] = "Client Key beginnt mit"; -App::$strings["No name"] = "Kein Name"; -App::$strings["Remove authorization"] = "Authorisierung aufheben"; -App::$strings["No feature settings configured"] = "Keine Funktionseinstellungen konfiguriert"; -App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; -App::$strings["Settings for the built-in Diaspora emulator"] = "Einstellungen für den eingebauten Diaspora-Emulator"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Jedem Diaspora-Mitglied erlauben, Deine öffentlichen Beiträge zu kommentieren"; -App::$strings["Enable the Diaspora protocol for this channel"] = "Diaspora-Protokoll für diesen Kanal aktivieren"; -App::$strings["Diaspora Policy Settings"] = "Diaspora-Richtlinieneinstellungen"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Verhindern, dass Deine hashtags zu anderen Seiten umgeleitet werden"; -App::$strings["Account Settings"] = "Kontoeinstellungen"; -App::$strings["Enter New Password:"] = "Neues Passwort eingeben:"; -App::$strings["Confirm New Password:"] = "Neues Passwort bestätigen:"; -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["Off"] = "Aus"; -App::$strings["On"] = "An"; -App::$strings["Additional Features"] = "Zusätzliche Funktionen"; -App::$strings["Connector Settings"] = "Verbindereinstellungen"; -App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; -App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; -App::$strings["Display Settings"] = "Anzeigeeinstellungen"; -App::$strings["Theme Settings"] = "Theme-Einstellungen"; -App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; -App::$strings["Content Settings"] = "Inhaltseinstellungen"; -App::$strings["Display Theme:"] = "Anzeige-Theme:"; -App::$strings["Mobile Theme:"] = "Mobile Theme:"; -App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; -App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; -App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; -App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; -App::$strings["System Page Layout Editor - (advanced)"] = "Systemseitengestaltungseditor - (erweitert)"; -App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; -App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -App::$strings["Use blog/list mode on matrix page"] = "Blog-/Listenmodus auf der Matrixseite verwenden"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; -App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; -App::$strings["Matrix page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Matrixseite (in Pixeln)"; -App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst"; -App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; -App::$strings["Approved connections"] = "Angenommene Verbindungen"; -App::$strings["Any connections"] = "Beliebige Verbindungen"; -App::$strings["Anybody on this website"] = "Jeder auf dieser Website"; -App::$strings["Anybody in this network"] = "Alle Red-Nutzer"; -App::$strings["Anybody authenticated"] = "Jeder authentifizierte"; -App::$strings["Anybody on the internet"] = "Jeder im Internet"; -App::$strings["Publish your default profile in the network directory"] = "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"; -App::$strings["Your channel address is"] = "Deine Kanal-Adresse lautet"; -App::$strings["Channel Settings"] = "Kanaleinstellungen"; -App::$strings["Basic Settings"] = "Grundeinstellungen"; -App::$strings["Your Timezone:"] = "Ihre Zeitzone:"; -App::$strings["Default Post Location:"] = "Standardstandort:"; -App::$strings["Geographical location to display on your posts"] = "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll"; -App::$strings["Use Browser Location:"] = "Standort des Browsers verwenden:"; -App::$strings["Adult Content"] = "Nicht jugendfreie Inhalte"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Sicherheits- und Datenschutzeinstellungen"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern"; -App::$strings["Hide my online presence"] = "Meine Online-Präsenz verbergen"; -App::$strings["Prevents displaying in your profile that you are online"] = "Verhindert die Anzeige Deines Online-Status in deinem Profil"; -App::$strings["Simple Privacy Settings:"] = "Einfache Privatsphäreeinstellungen:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)"; -App::$strings["Private - default private, never open or public"] = "Privat – Standard privat, nie offen oder öffentlich"; -App::$strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; -App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; -App::$strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäreeinstellungen"; -App::$strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; -App::$strings["0 or blank prevents expiration"] = "0 oder kein Inhalt verhindern das Verfallen"; -App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; -App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -App::$strings["Default Post Permissions"] = "Standardmäßige Beitragsberechtigungen"; -App::$strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; -App::$strings["Useful to reduce spamming"] = "Nützlich, um Spam zu verringern"; -App::$strings["Notification Settings"] = "Benachrichtigungseinstellungen"; -App::$strings["By default post a status message when:"] = "Sende standardmäßig Status-Nachrichten, wenn:"; -App::$strings["accepting a friend request"] = "Du eine Verbindungsanfrage annimmst"; -App::$strings["joining a forum/community"] = "Du einem Forum beitrittst"; -App::$strings["making an interesting profile change"] = "Du eine interessante Änderung an Deinem Profil vornimmst"; -App::$strings["Send a notification email when:"] = "Eine E-Mail-Benachrichtigung senden, wenn:"; -App::$strings["You receive a connection request"] = "Du eine Verbindungsanfrage erhältst"; -App::$strings["Your connections are confirmed"] = "Eine Verbindung bestätigt wurde"; -App::$strings["Someone writes on your profile wall"] = "Jemand auf Deine Pinnwand schreibt"; -App::$strings["Someone writes a followup comment"] = "Jemand einen Beitrag kommentiert"; -App::$strings["You receive a private message"] = "Du eine private Nachricht erhältst"; -App::$strings["You receive a friend suggestion"] = "Du einen Kontaktvorschlag erhältst"; -App::$strings["You are tagged in a post"] = "Du in einem Beitrag erwähnt wurdest"; -App::$strings["You are poked/prodded/etc. in a post"] = "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest"; -App::$strings["Show visual notifications including:"] = "Visuelle Benachrichtigungen anzeigen für:"; -App::$strings["Unseen matrix activity"] = "Ungesehene Matrix-Aktivität"; -App::$strings["Unseen channel activity"] = "Ungesehene Kanal-Aktivität"; -App::$strings["Unseen private messages"] = "Ungelesene persönliche Nachrichten"; -App::$strings["Recommended"] = "Empfohlen"; -App::$strings["Upcoming events"] = "Baldige Termine"; -App::$strings["Events today"] = "Heutige Termine"; -App::$strings["Upcoming birthdays"] = "Baldige Geburtstage"; -App::$strings["Not available in all themes"] = "Nicht in allen Themes verfügbar"; -App::$strings["System (personal) notifications"] = "System – (persönliche) Benachrichtigungen"; -App::$strings["System info messages"] = "System – Info-Nachrichten"; -App::$strings["System critical alerts"] = "System – kritische Warnungen"; -App::$strings["New connections"] = "Neue Verbindungen"; -App::$strings["System Registrations"] = "System – Registrierungen"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Zeigt neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen an"; -App::$strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; -App::$strings["Must be greater than 0"] = "Muss größer als 0 sein"; -App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentypeinstellungen"; -App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Bitte aktivieren Sie den Expertenmodus (unter Einstellungen > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; -App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; -App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals"; -App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["Remove this channel."] = "Diesen Kanal löschen"; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -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["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["D, d M Y - g:i A"] = "D, d. M Y - G:i"; -App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["Total votes"] = "Stimmen insgesamt"; -App::$strings["Average Rating"] = "Durchschnittliche Bewertung"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; -App::$strings["Remove This Channel"] = "Diesen Kanal löschen"; -App::$strings["This channel will be completely removed from the network. "] = "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht."; -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["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."; -App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -App::$strings["is now connected to"] = "ist jetzt verbunden mit"; -App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -App::$strings["View %s's profile"] = "%ss Profil ansehen"; -App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; -App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; -App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; -App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; -App::$strings["Unignore"] = "Nicht ignorieren"; -App::$strings["Ignore"] = "Ignorieren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; -App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; -App::$strings["Unarchive"] = "Aus Archiv zurückholen"; -App::$strings["Archive"] = "Archivieren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; -App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert."; -App::$strings["Unhide"] = "Wieder sichtbar machen"; -App::$strings["Hide"] = "Verstecken"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; -App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; -App::$strings["Delete this connection"] = "Verbindung löschen"; -App::$strings["Approve this connection"] = "Verbindung genehmigen"; -App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -App::$strings["Set Affinity"] = "Beziehung festlegen"; -App::$strings["Set Profile"] = "Profil festlegen"; -App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; -App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -App::$strings["This connection's address is"] = "Die Adresse des Kontakts lautet"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen verwendet."; -App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -App::$strings["Slide to adjust your rating"] = "Verschieben, um deine Bewertung festzulegen"; -App::$strings["Optionally explain your rating"] = "Optional kannst du deine Bewertung beschreiben"; -App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; -App::$strings["Only import posts with this text"] = "Importiere nur Beiträge mit diesem Text"; -App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Einzelne Worte pro Zeile, #Tags oder /Muster/. Frei lassen, um alle Posts zu importieren."; -App::$strings["Do not import posts with this text"] = "Importiere keine Einträ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["Connection Request"] = "Verbindungs Anfrage"; -App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) möchte sich mit dir verbinden. Bitte genehmige die Verbindung um eine Kommunikation zu ermöglichen."; -App::$strings["Approve Later"] = "Bestätige später"; -App::$strings["inherited"] = "geerbt"; -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"; -App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -App::$strings["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."] = "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 bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; -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 bei einer Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; -App::$strings["Last update:"] = "Letzte Aktualisierung:"; -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["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["Message deleted."] = "Nachricht gelöscht."; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Send"] = "Absenden"; -App::$strings["Message not found."] = "Nachricht nicht gefunden."; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Private Conversation"] = "Private Unterhaltung"; -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["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Please login."] = "Bitte melde dich an."; -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["Add a Channel"] = "Kanal hinzufügen"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Ein Kanal ist Deine eigene Sammlung von zusammengehörigen Webseiten. Ein Kanal kann genutzt werden, um ein Social-Network-Profil, ein Blog, eine Gesprächsgruppe oder ein Forum, Promi-Seiten und vieles mehr zu erstellen. Du kannst so viele Kanäle erstellen, wie es der Betreiber Deines Hubs zulässt."; -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 easily remembered channel address (like an email address) which you can share with others."] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst."; -App::$strings["Or import an existing channel from another location"] = "Oder importiere einen bestehenden Kanal von einem anderen Server"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Wähle einen Kanaltyp (wie Soziales Netzwerk oder Forum) und Privatsphäre-Vorgaben, so dass wir die passenden Kanal-Zugriffsrechte für Dich setzen können"; -App::$strings["Channel Type"] = "Kanaltyp"; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -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["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["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; -App::$strings["Layout Description"] = "Gestaltungsbeschreibung"; -App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; -App::$strings["Lorem Ipsum"] = "Lorem Ipsum"; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert spezielles Vorgehen, die Bearbeitung wurde 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 verlass diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -App::$strings["Poll"] = "Umfrage"; -App::$strings["View Results"] = "Ergebnisse ansehen"; -App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -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["Schema Default"] = "Schemastandard"; -App::$strings["Sans-Serif"] = "Sans Serif"; -App::$strings["Monospace"] = "Monospace (dicktengleich)"; -App::$strings["Theme settings"] = "Theme-Einstellungen"; -App::$strings["Set scheme"] = "Schema festlegen"; -App::$strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -App::$strings["Set font face"] = "Schriftart"; -App::$strings["Set iconset"] = "Symbolsatz festlegen"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Ausmaß der großen Schatten (Default 15px 15px 15px)"; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Ausmaß der kleinen Schatten festlegen (Voreinstellung 5px 5px 5px)"; -App::$strings["Set shadow color, default #000"] = "Schattenfarbe (Voreinstellung #000)"; -App::$strings["Set radius size, default 5px"] = "Eckenradius (Voreinstellung 5px)"; -App::$strings["Set line-height for posts and comments"] = "Zeilenhöhe für Beiträge und Kommentare"; -App::$strings["Set background image"] = "Hintergrundbild festlegen"; -App::$strings["Set background attachment"] = "Hintergrunddatei"; -App::$strings["Set background color"] = "Hintergrundfarbe festlegen"; -App::$strings["Set section background image"] = "Hintergrundbild für die section"; -App::$strings["Set section background color"] = "Hintergrundfarbe für die section"; -App::$strings["Set color of items - use hex"] = "Farbe für Beiträge – Hex benutzen"; -App::$strings["Set color of links - use hex"] = "Farbe für Links – Hex benutzen"; -App::$strings["Set max-width for items. Default 400px"] = "Maximalbreite von Beiträgen (Voreinstellung 400px)"; -App::$strings["Set min-width for items. Default 240px"] = "Minimalbreite von Beiträgen (Voreinstellung 240px)"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Breite des „generic content wrapper“ (Voreinstellung 48%)"; -App::$strings["Set color of fonts - use hex"] = "Schriftfarbe – Hex benutzen"; -App::$strings["Set background-size element"] = "size-Element für den Hintergrund"; -App::$strings["Item opacity"] = "Deckkraft für Beiträge"; -App::$strings["Display post previews only"] = "Nur Beitragsvorschau anzeigen"; -App::$strings["Display side bar on channel page"] = "Seitenleiste auf der Kanalseite anzeigen"; -App::$strings["Colour of the navigation bar"] = "Farbe der Navigationsleiste"; -App::$strings["Item float"] = "float für Beiträge"; -App::$strings["Left offset of the section element"] = "Linker offset des section-Elements"; -App::$strings["Right offset of the section element"] = "Rechter offset des section-Elements"; -App::$strings["Section width"] = "Breite der section"; -App::$strings["Left offset of the aside"] = "Linker offset der Seitenleiste"; -App::$strings["Right offset of the aside element"] = "Rechter offset der Seitenleiste"; -App::$strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)"; -App::$strings["Select scheme"] = "Schema wählen"; -App::$strings["Narrow navbar"] = "Schmale Navigationsleiste"; -App::$strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; -App::$strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; -App::$strings["Navigation bar gradient bottom color"] = "Farbverlauf der Navigationsleiste: Farbe unten"; -App::$strings["Navigation active button gradient top color"] = "Navigations-Button aktiv: Farbe für Farbverlauf oben"; -App::$strings["Navigation active button gradient bottom color"] = "Navigations-Button aktiv: Farbe für Farbverlauf unten"; -App::$strings["Navigation bar border color "] = "Farbe für den Rand der Navigationsleiste"; -App::$strings["Navigation bar icon color "] = "Farbe für die Icons der Navigationsleiste"; -App::$strings["Navigation bar active icon color "] = "Farbe für aktive Icons der Navigationsleiste"; -App::$strings["link color"] = "Farbe für Links"; -App::$strings["Set font-color for banner"] = "Farbe der Schrift des Banners"; -App::$strings["Set the background color"] = "Hintergrundfarbe festlegen"; -App::$strings["Set the background image"] = "Hintergrundbild festlegen"; -App::$strings["Set the background color of items"] = "Hintergrundfarbe für Beiträge festlegen"; -App::$strings["Set the background color of comments"] = "Hintergrundfarbe für Kommentare festlegen"; -App::$strings["Set the border color of comments"] = "Farbe des Randes von Kommentaren festlegen"; -App::$strings["Set the indent for comments"] = "Einzugsbreite für Kommentare festlegen"; -App::$strings["Set the basic color for item icons"] = "Grundfarbe für Beitragssymbole festlegen"; -App::$strings["Set the hover color for item icons"] = "Farbe für Beitragssymbole unter dem Mauszeiger festlegen"; -App::$strings["Set font-size for the entire application"] = "Schriftgröße für die gesamte Anwendung festlegen"; -App::$strings["Example: 14px"] = "Beispiel: 14px"; -App::$strings["Set font-color for posts and comments"] = "Schriftfarbe für Beiträge und Kommentare festlegen"; -App::$strings["Set radius of corners"] = "Eckenradius festlegen"; -App::$strings["Set shadow depth of photos"] = "Schattentiefe von Fotos festlegen"; -App::$strings["Set maximum width of content region in pixel"] = "Maximalbreite des Inhaltsbereichs in Pixel festlegen"; -App::$strings["Leave empty for default width"] = "Leer lassen für Standardbreite"; -App::$strings["Center page content"] = "Seiteninhalt zentrieren"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Mindestdeckkraft der Navigationsleiste festlegen - zum Verstecken"; -App::$strings["Set size of conversation author photo"] = "Größe der Avatare von Themenstartern festlegen"; -App::$strings["Set size of followup author photos"] = "Größe der Avatare von Kommentatoren festlegen"; -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 Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."; -App::$strings["Password"] = "Kennwort"; -App::$strings["Remember me"] = "Angaben speichern"; -App::$strings["Forgot your password?"] = "Passwort vergessen?"; -App::$strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; -App::$strings["[red] Website SSL error for %s"] = "[red] Website-SSL-Fehler für %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Cron-Aufgaben laufen nicht."; -App::$strings["[red] Cron tasks not running on %s"] = "[red] Cron-Aufgaben für %s laufen nicht"; diff --git a/view/en-au/hstrings.php b/view/en-au/hstrings.php deleted file mode 100644 index 95f8c4e00..000000000 --- a/view/en-au/hstrings.php +++ /dev/null @@ -1,5 +0,0 @@ -, 2015 -# inboxwall , 2015 -# jeroenpraat , 2015 -# Manuel Jiménez Friaza , 2017-2018 -# Manuel Jiménez Friaza , 2015-2017 -# Rafael, 2015 -# tony baldwin , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Redmatrix\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-23 11:34+0200\n" -"PO-Revision-Date: 2018-05-15 09:50+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Pueden verse la actividad y publicaciones de mi canal" - -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" -msgstr "Se me pueden enviar entradas y contenido de un canal" - -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "Pueden verse mi repositorio de ficheros y mis fotos" - -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" -msgstr "Se pueden subir / modificar elementos en mi repositorio de ficheros y fotos" - -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can view my channel webpages" -msgstr "Pueden verse las páginas personales de mi canal" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" -msgstr "Pueden verse mis páginas wiki" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" -msgstr "Pueden crearse / modificarse páginas personales en mi canal" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" -msgstr "Se pueden modificar las páginas de mi wiki" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" - -#: ../../Zotlabs/Access/Permissions.php:67 -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:68 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" - -#: ../../Zotlabs/Access/Permissions.php:69 -msgid "Can like/dislike profiles and profile things" -msgstr "Se puede mostrar agrado o desagrado (Me gusta / No me gusta) en mis perfiles y sus distintos apartados" - -#: ../../Zotlabs/Access/Permissions.php:70 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de @+ menciones en las entradas" - -#: ../../Zotlabs/Access/Permissions.php:71 -msgid "Can chat with me" -msgstr "Se puede chatear conmigo" - -#: ../../Zotlabs/Access/Permissions.php:72 -msgid "Can source my public posts in derived channels" -msgstr "Pueden utilizarse mis entradas públicas como origen de contenidos en canales derivados" - -#: ../../Zotlabs/Access/Permissions.php:73 -msgid "Can administer my channel" -msgstr "Se puede administrar mi canal" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "Redes sociales" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "Social - Federación" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "Social - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "Social - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "Social - Privado" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "Foro de discusión" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "Foro - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "Foro - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "Foro - Privado" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "Feed - Público en su mayor parte" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "Feed - Restringido" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "Propósito especial" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "Especial - Celebridad / Tribuna improvisada" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "Especial - Repositorio de grupo" - -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 -#: ../../Zotlabs/Module/Settings/Channel.php:479 -#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:697 -#: ../../include/connections.php:704 -msgid "Other" -msgstr "Otro" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." - -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 -#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:91 -#: ../../Zotlabs/Module/New_channel.php:116 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Settings/Features.php:38 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:281 -#: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 -#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 -#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 -#: ../../include/attach.php:197 ../../include/attach.php:270 -#: ../../include/attach.php:284 ../../include/attach.php:293 -#: ../../include/attach.php:366 ../../include/attach.php:380 -#: ../../include/attach.php:387 ../../include/attach.php:469 -#: ../../include/attach.php:1029 ../../include/attach.php:1103 -#: ../../include/attach.php:1268 ../../include/items.php:3706 -#: ../../include/photos.php:27 -msgid "Permission denied." -msgstr "Acceso denegado." - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 -msgid "Blocks" -msgstr "Bloques" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 -msgid "Created" -msgstr "Creado" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 -msgid "Edited" -msgstr "Editado" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "Crear" - -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 -#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../include/menu.php:113 -msgid "Edit" -msgstr "Editar" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 -#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../include/conversation.php:1366 -msgid "Share" -msgstr "Compartir" - -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 -#: ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 -#: ../../include/conversation.php:690 ../../include/conversation.php:733 -msgid "Delete" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 -msgid "View" -msgstr "Ver" - -#: ../../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:67 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" - -#: ../../Zotlabs/Module/Invite.php:77 -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:82 -#: ../../addon/notifyadmin/notifyadmin.php:40 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." - -#: ../../Zotlabs/Module/Invite.php:86 -#, 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:107 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" - -#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." - -#: ../../Zotlabs/Module/Invite.php:143 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" - -#: ../../Zotlabs/Module/Invite.php:144 -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:146 -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:147 -msgid "or visit" -msgstr "o visitar" - -#: ../../Zotlabs/Module/Invite.php:149 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" - -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Appman.php:153 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 -#: ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:296 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 -#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:97 -#: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 -#: ../../addon/planets/planets.php:153 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 -#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:825 -#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 -#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 -#: ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:168 -#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 -#: ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 -#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 -#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 -#: ../../addon/flattrwidget/flattrwidget.php:124 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:380 -#: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 -#: ../../addon/twitter/twitter.php:265 -#: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 -#: ../../addon/pageheader/pageheader.php:48 -#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 -#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 -#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 -msgid "Submit" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 -#: ../../include/nav.php:469 -msgid "Articles" -msgstr "Artículos" - -#: ../../Zotlabs/Module/Articles.php:95 -msgid "Add Article" -msgstr "Añadir un artículo" - -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 -#: ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "Nombre de la plantilla" - -#: ../../Zotlabs/Module/Editlayout.php:129 -#: ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "Descripción de la plantilla (opcional)" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "Modificar la plantilla" - -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 -#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 -#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:358 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: ../../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:111 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "Visible para" - -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:200 -msgid "All Connections" -msgstr "Todas las conexiones" - -#: ../../Zotlabs/Module/Cdav.php:785 -msgid "INVALID EVENT DISMISSED!" -msgstr "¡EVENTO NO VÁLIDO RECHAZADO!" - -#: ../../Zotlabs/Module/Cdav.php:786 -msgid "Summary: " -msgstr "Resumen: " - -#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 -#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 -#: ../../include/conversation.php:1160 -msgid "Unknown" -msgstr "Desconocido" - -#: ../../Zotlabs/Module/Cdav.php:787 -msgid "Date: " -msgstr "Fecha: " - -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 -msgid "Reason: " -msgstr "Razón: " - -#: ../../Zotlabs/Module/Cdav.php:793 -msgid "INVALID CARD DISMISSED!" -msgstr "¡TARJETA NO VÁLIDA RECHAZADA!" - -#: ../../Zotlabs/Module/Cdav.php:794 -msgid "Name: " -msgstr "Nombre: " - -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 -msgid "Event title" -msgstr "Título del evento" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "Ejemplo: YYYY-MM-DD HH:mm" - -#: ../../Zotlabs/Module/Cdav.php:870 -msgid "End date and time" -msgstr "Fecha y hora de finalización" - -#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../addon/rendezvous/rendezvous.php:173 -msgid "Description" -msgstr "Descripción" - -#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicación" - -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 -msgid "Previous" -msgstr "Anterior" - -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Photos.php:980 -msgid "Next" -msgstr "Siguiente" - -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 -msgid "Today" -msgstr "Hoy" - -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 -msgid "Month" -msgstr "Mes" - -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 -msgid "Week" -msgstr "Semana" - -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 -msgid "Day" -msgstr "Día" - -#: ../../Zotlabs/Module/Cdav.php:885 -msgid "List month" -msgstr "Lista mensual" - -#: ../../Zotlabs/Module/Cdav.php:886 -msgid "List week" -msgstr "Lista semanal" - -#: ../../Zotlabs/Module/Cdav.php:887 -msgid "List day" -msgstr "Lista diaria" - -#: ../../Zotlabs/Module/Cdav.php:894 -msgid "More" -msgstr "Más" - -#: ../../Zotlabs/Module/Cdav.php:895 -msgid "Less" -msgstr "Menos" - -#: ../../Zotlabs/Module/Cdav.php:896 -msgid "Select calendar" -msgstr "Seleccionar un calendario" - -#: ../../Zotlabs/Module/Cdav.php:898 -msgid "Delete all" -msgstr "Eliminar todos" - -#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Admin/Plugins.php:423 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../Zotlabs/Module/Cdav.php:900 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado." - -#: ../../Zotlabs/Module/Cdav.php:1170 -#: ../../Zotlabs/Module/Sharedwithme.php:105 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:283 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../addon/rendezvous/rendezvous.php:172 -msgid "Name" -msgstr "Nombre" - -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 -msgid "Organisation" -msgstr "Organización" - -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 -msgid "Title" -msgstr "Título" - -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "Teléfono" - -#: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 -msgid "Email" -msgstr "Correo electrónico" - -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "Mensajería instantánea" - -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "Sitio web" - -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "Dirección" - -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "Nota" - -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 -#: ../../include/connections.php:690 -msgid "Mobile" -msgstr "Móvil" - -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 -#: ../../include/connections.php:691 -msgid "Home" -msgstr "Inicio" - -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 -#: ../../include/connections.php:694 -msgid "Work" -msgstr "Trabajo" - -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/jappixmini.php:368 -msgid "Add Contact" -msgstr "Añadir un contacto" - -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "Añadir un campo" - -#: ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Admin/Plugins.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:39 -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Lib/Apps.php:393 -msgid "Update" -msgstr "Actualizar" - -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 -msgid "P.O. Box" -msgstr "Buzón de correos" - -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 -msgid "Additional" -msgstr "Adicional" - -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 -msgid "Street" -msgstr "Calle" - -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 -msgid "Locality" -msgstr "Localidad" - -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 -msgid "Region" -msgstr "Provincia, región o estado" - -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 -msgid "ZIP Code" -msgstr "Código postal" - -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "País" - -#: ../../Zotlabs/Module/Cdav.php:1242 -msgid "Default Calendar" -msgstr "Calendario por defecto" - -#: ../../Zotlabs/Module/Cdav.php:1252 -msgid "Default Addressbook" -msgstr "Agenda de direcciones por defecto" - -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Este sitio no es un servidor de directorio" - -#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 -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:47 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" - -#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "Solo publicaciones" - -#: ../../Zotlabs/Module/Channel.php:107 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "Exportar el canal" - -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "Exportar contenidos" - -#: ../../Zotlabs/Module/Uexport.php:61 -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/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." - -#: ../../Zotlabs/Module/Uexport.php:65 -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/Uexport.php:66 -#, 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:67 -#, 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:68 -#, 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/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "¡Bienvenido a Hubzilla!" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "No tiene ningún mensaje sin leer..." - -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Acceso público denegado." - -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1051 ../../include/text.php:1063 -#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 -msgid "Search" -msgstr "Buscar" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" - -#: ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:131 -msgid "Public Stream" -msgstr "\"Stream\" público" - -#: ../../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 "Sincronizando 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 ../../Zotlabs/Module/Admin.php:111 -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/Apporder.php:44 -msgid "Change Order of Pinned Navbar Apps" -msgstr "Cambiar el orden de las aplicaciones fijas en la barra de navegación" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of App Tray Apps" -msgstr "Cambiar el orden de las aplicaciones de la bandeja de aplicaciones" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the" -" navbar" -msgstr "Use las flechas para mover la aplicación correspondiente a la izquierda (arriba) o derecha (abajo) en la barra de navegación." - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "Use las flechas para mover la aplicación correspondiente hacia arriba o hacia abajo en la bandeja de aplicaciones." - -#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "No se puede 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:120 ../../Zotlabs/Module/Menu.php:166 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../Zotlabs/Module/Mitem.php:161 -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:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:259 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "No" -msgstr "No" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:261 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 -#: ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "Yes" -msgstr "Sí" - -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -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:165 -msgid "Submit and finish" -msgstr "Enviar y terminar" - -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Enviar y continuar" - -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menú:" - -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destino del enlace" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Editar menú" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Editar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Eliminar el elemento" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuevo elemento" - -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" - -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" - -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" - -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." - -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Texto del enlace" - -#: ../../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:110 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." - -#: ../../Zotlabs/Module/Events.php:119 -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:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "Evento no encontrado." - -#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 -#: ../../include/text.php:2008 ../../include/event.php:1153 -msgid "event" -msgstr "el/su evento" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "Editar el título del evento" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 -#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "Obligatorio" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "Temas (lista separada por comas)" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "Modificar el tema" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "Tema" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -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:469 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" - -#: ../../Zotlabs/Module/Events.php:471 -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:473 -msgid "Edit Description" -msgstr "Editar la descripción" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Modificar la dirección" - -#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 -#: ../../include/conversation.php:1333 -msgid "Preview" -msgstr "Previsualizar" - -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "Zona horaria: " - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "Opciones avanzadas" - -#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "Editar evento" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "Borrar evento" - -#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1827 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Edit Event" -msgstr "Editar el evento" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Create Event" -msgstr "Crear un evento" - -#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1647 -msgid "Export" -msgstr "Exportar" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "Aplicación instalada." - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "Aplicación con errores" - -#: ../../Zotlabs/Module/Appman.php:130 -msgid "Embed code" -msgstr "Código incorporado" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Edit App" -msgstr "Modificar la aplicación" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Create App" -msgstr "Crear una aplicación" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Name of app" -msgstr "Nombre de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Location (URL) of app" -msgstr "Dirección (URL) de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Photo icon URL" -msgstr "Dirección del icono" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Categories (optional, comma separated list)" -msgstr "Temas (opcional, lista separada por comas)" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Version ID" -msgstr "Versión" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Price of app" -msgstr "Precio de la aplicación" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Location (URL) to purchase app" -msgstr "Dirección (URL) donde adquirir la aplicación" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Por favor, inicie sesión." - -#: ../../Zotlabs/Module/Magic.php:72 -msgid "Hub not found." -msgstr "Servidor no encontrado" - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 -#: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 -#: ../../include/conversation.php:116 ../../include/text.php:2005 -msgid "photo" -msgstr "foto" - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 -#: ../../include/conversation.php:144 ../../include/text.php:2011 -msgid "status" -msgstr "el mensaje de estado " - -#: ../../Zotlabs/Module/Subthread.php:142 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo %3$s de %2$s" - -#: ../../Zotlabs/Module/Subthread.php:144 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha dejado de seguir %3$s de %2$s" - -#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Card_edit.php:44 -msgid "Channel not found." -msgstr "Canal no encontrado." - -#: ../../Zotlabs/Module/Article_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../include/conversation.php:1278 -msgid "Insert web link" -msgstr "Insertar enlace web" - -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../include/conversation.php:1401 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "Editar el artículo" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 -msgid "Nothing to import." -msgstr "No hay nada para importar." - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 -#: ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" - -#: ../../Zotlabs/Module/Import_items.php:77 -#: ../../Zotlabs/Module/Import.php:102 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." - -#: ../../Zotlabs/Module/Import_items.php:93 -#, 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_items.php:108 -msgid "Import completed" -msgstr "Importación completada" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "Importar elementos" - -#: ../../Zotlabs/Module/Import_items.php:126 -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/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:517 -msgid "File to Upload" -msgstr "Fichero para subir" - -#: ../../Zotlabs/Module/New_channel.php:133 -#: ../../Zotlabs/Module/Manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -msgid "Name or caption" -msgstr "Nombre o descripción" - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -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:148 -#: ../../Zotlabs/Module/Register.php:256 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" - -#: ../../Zotlabs/Module/New_channel.php:148 -#: ../../Zotlabs/Module/Register.php:256 -#, 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:149 -#: ../../Zotlabs/Module/Settings/Channel.php:539 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" - -#: ../../Zotlabs/Module/New_channel.php:149 -#: ../../Zotlabs/Module/Register.php:257 -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:149 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" - -#: ../../Zotlabs/Module/New_channel.php:152 -msgid "Create Channel" -msgstr "Crear un canal" - -#: ../../Zotlabs/Module/New_channel.php:153 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed," -" and many other things. Channels can make connections with other channels to" -" share information with each other." -msgstr "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas. Los canales pueden conectarse con otros canales para compartir información unos con otros." - -#: ../../Zotlabs/Module/New_channel.php:153 -msgid "" -"The type of channel you create affects the basic privacy settings, the " -"permissions that are granted to connections/friends, and also the channel's " -"visibility across the network." -msgstr "El tipo de canal que cree afecta a la configuración básica de privacidad, a los permisos que se conceden a las conexiones/amigos y también a la visibilidad del canal en la red." - -#: ../../Zotlabs/Module/New_channel.php:154 -msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." - -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Validate" -msgstr "Validar" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Eliminar este canal" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "ATENCIÓN:" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red. " - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -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/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" - -#: ../../Zotlabs/Module/Removeme.php:63 -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/Channel.php:600 -msgid "Remove Channel" -msgstr "Eliminar el canal" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -msgid "NEW" -msgstr "NUEVO" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 -msgid "Size" -msgstr "Tamaño" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:286 -msgid "Last Modified" -msgstr "Última modificación" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove all files" -msgstr "Eliminar todos los ficheros" - -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove this file" -msgstr "Eliminar este fichero" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "No se puede crear la tabla." - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "Verificación del sistema" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "Verificar de nuevo" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "Conexión a la base de datos" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "De forma predeterminada es 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "Puerto de la base de datos" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "Nombre de la base de datos" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "Tipo de base de datos" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "Dirección del sitio web" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "Ajustes del sitio" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "Se requiere la versión 5.5, o superior, de PHP." - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "Versión de PHP" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "Ruta del ejecutable PHP" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado." - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la transmisión de mensajes." - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../Zotlabs/Module/Setup.php:446 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." - -#: ../../Zotlabs/Module/Setup.php:451 -msgid "You can adjust these settings in the server php.ini file." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." - -#: ../../Zotlabs/Module/Setup.php:453 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." - -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../Zotlabs/Module/Setup.php:480 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" - -#: ../../Zotlabs/Module/Setup.php:499 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" - -#: ../../Zotlabs/Module/Setup.php:500 -msgid "PDO database PHP module" -msgstr "Módulo PHP de la base de datos PDO " - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "xml PHP module" -msgstr "módulo PHP xml" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "zip PHP module" -msgstr "Módulo zip PHP" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " - -#: ../../Zotlabs/Module/Setup.php:507 -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:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" -msgstr "ejecutable" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" -msgstr "shell_exec" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini" - -#: ../../Zotlabs/Module/Setup.php:527 -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:531 -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:535 -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:539 -msgid "Error: PDO database PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado." - -#: ../../Zotlabs/Module/Setup.php:543 -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:547 -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:551 -msgid "Error: zip PHP module required but not installed." -msgstr "Error: se requiere el módulo zip PHP pero no está instalado." - -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" - -#: ../../Zotlabs/Module/Setup.php:575 -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:576 -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:577 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "Por favor, consulte install/INSTALL.txt para más información." - -#: ../../Zotlabs/Module/Setup.php:593 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización." - -#: ../../Zotlabs/Module/Setup.php:594 -#, 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:595 ../../Zotlabs/Module/Setup.php:616 -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:596 -#, 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:599 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" - -#: ../../Zotlabs/Module/Setup.php:615 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level" -" web folder" -msgstr "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior" - -#: ../../Zotlabs/Module/Setup.php:619 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" - -#: ../../Zotlabs/Module/Setup.php:651 -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:652 -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:653 -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 entradas públicas hagan referencia a imágenes en su propio servidor." - -#: ../../Zotlabs/Module/Setup.php:654 -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:655 -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:656 -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:658 -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 "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." - -#: ../../Zotlabs/Module/Setup.php:660 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" - -#: ../../Zotlabs/Module/Setup.php:666 -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:669 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" - -#: ../../Zotlabs/Module/Setup.php:683 -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:707 -#: ../../addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." - -#: ../../Zotlabs/Module/Setup.php:747 -msgid "

What next?

" -msgstr "

¿Qué sigue?

" - -#: ../../Zotlabs/Module/Setup.php:748 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." - -#: ../../Zotlabs/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/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "Estadísticas de la cola" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "Total de entradas" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "Prioridad" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "Dirección de destino" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "Marcar el servidor como permanentemente fuera de línea" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "Vaciar la cola para este servidor" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "Último contacto conocido" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "Off" -msgstr "Desactivado" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "On" -msgstr "Activado" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Bloquear la funcionalidad %s" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Gestionar las funcionalidades" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "La actualización ha sido marcada como exitosa" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La actualización de %s se ha realizado exitosamente." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "No se encuentra la función de actualización de %s." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Han fallado las actualizaciones" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "Intentar ejecutar este paso de actualización automáticamente" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." - -#: ../../Zotlabs/Module/Admin/Plugins.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:453 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3619 -msgid "Item not found." -msgstr "Elemento no encontrado." - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." - -#: ../../Zotlabs/Module/Admin/Plugins.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." - -#: ../../Zotlabs/Module/Admin/Plugins.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "Desactivar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "Activar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:341 -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Administration" -msgstr "Administración" - -#: ../../Zotlabs/Module/Admin/Plugins.php:342 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -#: ../../Zotlabs/Widget/Admin.php:27 -msgid "Plugins" -msgstr "Extensiones (plugins)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "Cambiar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 -#: ../../include/nav.php:192 -msgid "Settings" -msgstr "Ajustes" - -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "Autor:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -msgid "Minimum project version: " -msgstr "Versión mínima del proyecto:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:354 -msgid "Maximum project version: " -msgstr "Versión máxima del proyecto:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:355 -msgid "Minimum PHP version: " -msgstr "Versión mínima de PHP:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:356 -msgid "Compatible Server Roles: " -msgstr "Configuraciones compatibles con este servidor:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:357 -msgid "Requires: " -msgstr "Se requiere:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:358 -#: ../../Zotlabs/Module/Admin/Plugins.php:442 -msgid "Disabled - version incompatibility" -msgstr "Deshabilitado - versiones incompatibles" - -#: ../../Zotlabs/Module/Admin/Plugins.php:411 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Escriba la URL pública del repositorio git del plugin." - -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Plugin repo git URL" -msgstr "URL del repositorio git del plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "Custom repo name" -msgstr "Nombre personalizado del repositorio" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "(optional)" -msgstr "(opcional)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -msgid "Download Plugin Repo" -msgstr "Descargar el repositorio" - -#: ../../Zotlabs/Module/Admin/Plugins.php:421 -msgid "Install new repo" -msgstr "Instalar un nuevo repositorio" - -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 -msgid "Install" -msgstr "Instalar" - -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -msgid "Manage Repos" -msgstr "Gestionar los repositorios" - -#: ../../Zotlabs/Module/Admin/Plugins.php:446 -msgid "Installed Plugin Repositories" -msgstr "Repositorios de los plugins instalados" - -#: ../../Zotlabs/Module/Admin/Plugins.php:447 -msgid "Install a New Plugin Repository" -msgstr "Instalar un nuevo repositorio de plugins" - -#: ../../Zotlabs/Module/Admin/Plugins.php:454 -msgid "Switch branch" -msgstr "Cambiar la rama" - -#: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/superblock.php:116 -msgid "Remove" -msgstr "Eliminar" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s cuenta bloqueada/desbloqueada" -msgstr[1] "%s cuenta bloqueada/desbloqueada" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s cuentas eliminadas" -msgstr[1] "%s cuentas eliminadas" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "Cuenta no encontrada" - -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 -#, php-format -msgid "Account '%s' deleted" -msgstr "La cuenta '%s' ha sido eliminada" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "La cuenta '%s' ha sido bloqueada" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "La cuenta '%s' ha sido desbloqueada" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "Cuentas" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "seleccionar todo" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Inscripciones en espera de confirmación" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "Fecha de solicitud" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Sin registros." - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 -msgid "Approve" -msgstr "Aprobar" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:26 -msgid "Deny" -msgstr "Rechazar" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Block" -msgstr "Bloquear" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 -msgid "All Channels" -msgstr "Todos los canales" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "Fecha de registro" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "Último acceso" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "Caduca" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "Clase de servicio" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "Actualizado el informe de configuraciones." - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "Informes" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Vaciar" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Depuración" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "Fichero de informe" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Nivel de depuración" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canales censurados/no censurados" -msgstr[1] "%s canales censurados/no censurados" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s código permitido/no permitido al canal" -msgstr[1] "%s código permitido/no permitido al canal" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canales eliminados" -msgstr[1] "%s canales eliminados" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "Canal no encontrado" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' eliminado" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurado" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Código permitido al canal '%s'" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Código no permitido al canal '%s'" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "Canales" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "Censurar" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "No censurar" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "Permitir código" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "No permitir código" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1811 ../../include/nav.php:378 -msgid "Channel" -msgstr "Canal" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "UID" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "Ajustes del tema actualizados." - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "No se han encontrado temas." - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "Instantánea de pantalla" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "Temas" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "[No soportado]" - -#: ../../Zotlabs/Module/Admin/Site.php:165 -msgid "Site settings updated." -msgstr "Ajustes del sitio actualizados." - -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 -msgid "Default" -msgstr "Predeterminado" - -#: ../../Zotlabs/Module/Admin/Site.php:202 -#: ../../Zotlabs/Module/Settings/Display.php:130 -#, php-format -msgid "%s - (Incompatible)" -msgstr "%s - (Incompatible)" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "mobile" -msgstr "móvil" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "experimental" -msgstr "experimental" - -#: ../../Zotlabs/Module/Admin/Site.php:213 -msgid "unsupported" -msgstr "no soportado" - -#: ../../Zotlabs/Module/Admin/Site.php:260 -msgid "Yes - with approval" -msgstr "Sí - con aprobación" - -#: ../../Zotlabs/Module/Admin/Site.php:266 -msgid "My site is not a public server" -msgstr "Mi sitio no es un servidor público" - -#: ../../Zotlabs/Module/Admin/Site.php:267 -msgid "My site has paid access only" -msgstr "Mi sitio es un servicio de pago" - -#: ../../Zotlabs/Module/Admin/Site.php:268 -msgid "My site has free access only" -msgstr "Mi sitio es un servicio gratuito" - -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" - -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Beginner/Basic" -msgstr "Principiante / Básico" - -#: ../../Zotlabs/Module/Admin/Site.php:282 -msgid "Novice - not skilled but willing to learn" -msgstr "Novato: no cualificado, pero dispuesto a aprender" - -#: ../../Zotlabs/Module/Admin/Site.php:283 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedio: bastante cómodo" - -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Advanced - very comfortable" -msgstr "Avanzado: muy cómodo" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Expert - I can write computer code" -msgstr "Experto: puedo escribir código informático" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Wizard - I probably know more than you do" -msgstr "Colaborador: probablemente sé más que tú" - -#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "Sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../Zotlabs/Module/Register.php:269 -msgid "Registration" -msgstr "Registro" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "File upload" -msgstr "Subir fichero" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Policies" -msgstr "Políticas" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzado" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -#: ../../addon/statusnet/statusnet.php:891 -msgid "Site name" -msgstr "Nombre del sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Site default technical skill level" -msgstr "Nivel de habilidad técnica predeterminado del sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Lock the technical skill level setting" -msgstr "Bloquear el ajuste del nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Members can set their own technical comfort level by default" -msgstr "Los miembros pueden configurar su nivel de comodidad técnica por defecto" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "Se permite HTML/CSS/JS sin filtrar" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Administrator Information" -msgstr "Información del Administrador" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Information" -msgstr "Información sobre el sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "System language" -msgstr "Idioma del sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "System theme" -msgstr "Tema gráfico del sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Allow Feeds as Connections" -msgstr "Permitir contenidos RSS como conexiones" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso de los recursos del sistema)" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Invitation only" -msgstr "Solo con una invitación" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age" -msgstr "Edad mínima" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age (in years) for who may register on this site." -msgstr "Edad mínima (en años) para poder registrarse en este sitio." - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Which best describes the types of account offered by this hub?" -msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Register text" -msgstr "Texto del registro" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Preserve site homepage URL" -msgstr "Preservar la dirección de la página personal" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Force publish" -msgstr "Forzar la publicación" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Import Public Streams" -msgstr "Importar contenido público" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Site only Public Streams" -msgstr "Solo contenido público en este sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Login on Homepage" -msgstr "Iniciar sesión en la página personal" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Enable context help" -msgstr "Habilitar la ayuda contextual" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Reply-to email address for system generated email." -msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "Sender (From) email address for system generated email." -msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Name of email sender for system generated email." -msgstr "Nombre del remitente del correo electrónico generado por el sistema." - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Directory Server URL" -msgstr "URL del servidor de directorio" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Default directory server" -msgstr "Servidor de directorio predeterminado" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Proxy user" -msgstr "Usuario del proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Proxy URL" -msgstr "Dirección del proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Network timeout" -msgstr "Tiempo de espera de la red" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Delivery interval" -msgstr "Intervalo de entrega" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Deliveries per process" -msgstr "Intentos de envío por proceso" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Queue Threshold" -msgstr "Umbral de la cola de espera" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "Poll interval" -msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "Path to ImageMagick convert program" -msgstr "Ruta al programa de conversión de ImageMagick" - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "Allow SVG thumbnails in file browser" -msgstr "Permitir miniaturas SVG en el navegador de archivos" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "WARNING: SVG images may contain malicious code." -msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Maximum Load Average" -msgstr "Carga media máxima" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Caducidad del contenido importado de otros sitios (en días)" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "0 for no expiration of imported content" -msgstr "0 para que no caduque el contenido importado" - -#: ../../Zotlabs/Module/Admin/Site.php:353 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días" - -#: ../../Zotlabs/Module/Admin/Site.php:355 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" - -#: ../../Zotlabs/Module/Admin/Site.php:355 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "Crear esta página primero. Por defecto es %s/register" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Page to display after creating a new channel" -msgstr "Página a mostrar después de la creación de un nuevo canal" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Recommend: profiles, go, or settings" -msgstr "Recomendar: perfiles, ir, o ajustes" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Optional: site location" -msgstr "Opcional: ubicación del sitio" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Region or country" -msgstr "Región o país" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "Nuevo campo en el perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "Alias del campo" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "Nombre del campo en el sistema" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "Tipo de entrada" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "Nombre del campo" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "Etiqueta a mostrar en la página del perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "Texto de ayuda" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "Información adicional (opcional)" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 -#: ../../include/text.php:1064 -msgid "Save" -msgstr "Guardar" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "Definición del campo no encontrada" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "Modificar el campo del perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "Campos del perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "Campos básicos del perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "Campos avanzados del perfil" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "(Además de los campos básicos)" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "Todos los campos disponibles" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "Campos personalizados" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "Crear un campo personalizado" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "Ha cambiado la contraseña para la cuenta %d." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "Se han actualizado los ajustes de la cuenta." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "No se ha encontrado la cuenta." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "Editar la cuenta" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "Nueva contraseña" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "Nueva contraseña otra vez" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "Idioma de la cuenta (para los correos electrónicos)" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "Clase de servicio" - -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." - -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " - -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." - -#: ../../Zotlabs/Module/Admin/Security.php:87 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "Seguridad" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "Bloquear páginas públicas" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "Se aceptan dominios de correo electrónico" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "No se permiten dominios de correo electrónico" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "Permitir la comunicación solo desde estos sitios" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "Bloquear la comunicación desde estos sitios" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "Permitir la comunicación solo desde estos canales" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "Bloquear la comunicación desde estos canales" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "Bloquear contenido con HTML incorporado desde estos dominios" - -#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "Perfil" - -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" -msgstr "El comentario ha sido aprobado" - -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" -msgstr "Se ha eliminado el comentario" - -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "Se requiere el nombre de la autorización" - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "Se ha guardado la categoría del permiso." - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones." - -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -msgid "Permission Categories" -msgstr "Tipos de permisos" - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Nombre de la autorización" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -msgid "My Settings" -msgstr "Mis ajustes" - -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -msgid "inherited" -msgstr "heredado" - -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -msgid "Individual Permissions" -msgstr "Permisos individuales" - -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:894 -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 "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/Settings/Channel.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:83 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:437 -#: ../../include/channel.php:438 ../../include/channel.php:445 -msgid "Friends" -msgstr "Amigos/as" - -#: ../../Zotlabs/Module/Settings/Channel.php:264 -#: ../../Zotlabs/Module/Defperms.php:103 -#: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:184 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:102 -msgid "Settings updated." -msgstr "Ajustes actualizados." - -#: ../../Zotlabs/Module/Settings/Channel.php:325 -msgid "Nobody except yourself" -msgstr "Nadie excepto usted" - -#: ../../Zotlabs/Module/Settings/Channel.php:326 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" - -#: ../../Zotlabs/Module/Settings/Channel.php:327 -msgid "Approved connections" -msgstr "Conexiones aprobadas" - -#: ../../Zotlabs/Module/Settings/Channel.php:328 -msgid "Any connections" -msgstr "Cualquier conexión" - -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" - -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" - -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" - -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" - -#: ../../Zotlabs/Module/Settings/Channel.php:407 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" - -#: ../../Zotlabs/Module/Settings/Channel.php:412 -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/Channel.php:416 -msgid "or" -msgstr "o" - -#: ../../Zotlabs/Module/Settings/Channel.php:425 -msgid "Your channel address is" -msgstr "Su dirección de canal es" - -#: ../../Zotlabs/Module/Settings/Channel.php:428 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "Sus archivos y fotos son accesibles a través de WebDAV en " - -#: ../../Zotlabs/Module/Settings/Channel.php:493 -msgid "Channel Settings" -msgstr "Ajustes del canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Basic Settings" -msgstr "Configuración básica" - -#: ../../Zotlabs/Module/Settings/Channel.php:501 -#: ../../include/channel.php:1521 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:119 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" - -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Your Timezone:" -msgstr "Su huso horario:" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Default Post Location:" -msgstr "Localización geográfica predeterminada para sus publicaciones:" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Geographical location to display on your posts" -msgstr "Localización geográfica que debe mostrarse en sus publicaciones" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Use Browser Location:" -msgstr "Usar la localización geográfica del navegador:" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Adult Content" -msgstr "Contenido solo para adultos" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -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/Channel.php:509 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Hide my online presence" -msgstr "Ocultar mi presencia en línea" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" - -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" - -#: ../../Zotlabs/Module/Settings/Channel.php:516 -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/Channel.php:517 -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/Channel.php:518 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -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/Channel.php:523 -msgid "Channel Permission Limits" -msgstr "Límites de los permisos del canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -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/Channel.php:525 -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/Channel.php:525 -#, php-format -msgid "This website expires after %d days." -msgstr "Este sitio web caduca después de %d días." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "This website does not expire imported content." -msgstr "Este sitio web no caduca el contenido importado." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -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/Channel.php:526 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Default Privacy Group" -msgstr "Grupo de canales predeterminado" - -#: ../../Zotlabs/Module/Settings/Channel.php:529 -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/Channel.php:530 -msgid "Profile to assign new connections" -msgstr "Perfil para asignar a las nuevas conexiones" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default Permissions Group" -msgstr "Grupo de permisos predeterminados" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" -msgstr "Configuración de las notificaciones" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "accepting a friend request" -msgstr "Acepte una solicitud de amistad" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "making an interesting profile change" -msgstr "Realice un cambio interesante en su perfil" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (\"muro\")" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" - -#: ../../Zotlabs/Module/Settings/Channel.php:559 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" - -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una publicación" - -#: ../../Zotlabs/Module/Settings/Channel.php:564 -msgid "Someone likes your post/comment" -msgstr "Alguien muestre agrado por su entrada o comentario" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:576 -#: ../../Zotlabs/Module/Settings/Channel.php:577 -#: ../../Zotlabs/Module/Settings/Channel.php:578 -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Recommended" -msgstr "Recomendado" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Upcoming events" -msgstr "Próximos eventos" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "Events today" -msgstr "Eventos de hoy" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "System info messages" -msgstr "Mensajes de información del sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "New connections" -msgstr "Nuevas conexiones" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "System Registrations" -msgstr "Registros del sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Unseen shared files" -msgstr "Ficheros compartidos no vistos" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Unseen public activity" -msgstr "Actividad pública no vista" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Unseen likes and dislikes" -msgstr "Los \"me gusta\" y \"no me gusta\" no vistos" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Email notification hub (hostname)" -msgstr "Email de notificación del hub (nombre del host)" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s" - -#: ../../Zotlabs/Module/Settings/Channel.php:584 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos" - -#: ../../Zotlabs/Module/Settings/Channel.php:586 -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/Channel.php:586 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Default photo upload folder" -msgstr "Carpeta por defecto de las fotos subidas" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "%Y - current year, %m - current month" -msgstr "%Y - año en curso, %m - mes actual" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "Default file upload folder" -msgstr "Carpeta por defecto de los ficheros subidos" - -#: ../../Zotlabs/Module/Settings/Channel.php:599 -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/Channel.php:601 -msgid "Remove this channel." -msgstr "Eliminar este canal." - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Start calendar week on Monday" -msgstr "Comenzar el calendario semanal por el lunes" - -#: ../../Zotlabs/Module/Settings/Features.php:73 -msgid "Additional Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "Su nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad" - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Este canal tiene un límite de %d tokens" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Se requiere el nombre y la contraseña." - -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Token salvado." - -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -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 private content." -msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." - -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -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 "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " - -#: ../../Zotlabs/Module/Settings/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:100 -msgid "Guest Access Tokens" -msgstr "Tokens de acceso para invitados" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Nombre de inicio de sesión" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Contraseña de inicio de sesión" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Expira (aaaa-mm-dd)" - -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "Their Settings" -msgstr "Sus ajustes" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:35 -msgid "Name and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:83 -msgid "Add OAuth2 application" -msgstr "Añadir aplicación OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Nombre de la aplicación" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -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/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Redirigir" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -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/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -msgid "Grant Types" -msgstr "Tipos de permisos" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "leave blank unless your application sepcifically requires this" -msgstr "Dejar en blanco a menos que su aplicación lo requiera específicamente" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Authorization scope" -msgstr "Alcance de la autorización" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:102 -msgid "OAuth2 Application not found." -msgstr "No se ha encontrado la aplicación OAuth2." - -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Añadir aplicación" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:147 -msgid "Connected OAuth2 Apps" -msgstr "Aplicaciones OAuth2 conectadas" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Sin nombre" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Eliminar autorización" - -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "Correo electrónico no válido." - -#: ../../Zotlabs/Module/Settings/Account.php:23 -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/Account.php:32 -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/Account.php:40 -msgid "Technical skill level updated" -msgstr "Se ha actualizado el nivel de habilidad técnica" - -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "La comprobación de la contraseña ha fallado." - -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." - -#: ../../Zotlabs/Module/Settings/Account.php:67 -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/Account.php:81 -msgid "Password changed." -msgstr "Contraseña cambiada." - -#: ../../Zotlabs/Module/Settings/Account.php:83 -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/Account.php:112 -msgid "Account Settings" -msgstr "Configuración de la cuenta" - -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" -msgstr "Contraseña actual" - -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" -msgstr "Escribir una nueva contraseña" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" -msgstr "Confirmar la nueva contraseña" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." - -#: ../../Zotlabs/Module/Settings/Account.php:120 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Eliminar cuenta" - -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" - -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "Se han actualizado los ajustes del controlador de afinidad." - -#: ../../Zotlabs/Module/Settings/Featured.php:38 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de los complementos" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "Nivel máximo de afinidad por defecto" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "0-99 por defecto 99" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "Nivel mínimo de afinidad por defecto" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "0-99 - por defecto 0" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "Ajustes del controlador de afinidad" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 -msgid "Addon Settings" -msgstr "Ajustes de los complementos" - -#: ../../Zotlabs/Module/Settings/Featured.php:68 -msgid "Please save/submit changes to any panel before opening another." -msgstr "Guarde o envíe los cambios a cualquier panel antes de abrir otro." - -#: ../../Zotlabs/Module/Settings/Display.php:139 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Display Settings" -msgstr "Ajustes de visualización" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Theme Settings" -msgstr "Ajustes del tema" - -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Content Settings" -msgstr "Ajustes del contenido" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Select scheme" -msgstr "Elegir un esquema" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Preload images before rendering the page" -msgstr "Carga previa de las imágenes antes de generar la página" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -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/Display.php:200 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -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/Display.php:202 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Provide channel menu in navigation bar" -msgstr "Proporcionar un menú de canales en la barra de navegación" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Default: channel menu located in app menu" -msgstr "Predeterminado: menú de canales ubicado en el menú de aplicaciones" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Manual conversation updates" -msgstr "Actualizaciones manuales de la conversación" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla" - -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" - -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -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/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" - -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" - -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" -msgstr "El nombre es obligatorio" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "Dirección del icono" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Aplicación no encontrada." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "Aplicaciones (apps) conectadas" - -#: ../../Zotlabs/Module/Embedphotos.php:140 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 -#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "Ver foto" - -#: ../../Zotlabs/Module/Embedphotos.php:156 -#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "Editar álbum" - -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:712 -#: ../../Zotlabs/Module/Profile_photo.php:458 -#: ../../Zotlabs/Module/Cover_photo.php:362 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 -#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 -msgid "Upload" -msgstr "Subir" - -#: ../../Zotlabs/Module/Achievements.php:38 -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/Thing.php:120 -msgid "Thing updated" -msgstr "Elemento actualizado." - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "Elemento añadido" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "Mostrar elemento" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "elemento no encontrado." - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "Editar elemento" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "Seleccionar un perfil" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "Publicar una actividad" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo enviar a espectadores del perfil pertinente." - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento, p. ej.:. \"algo\"" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "Permisos" - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:57 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../Zotlabs/Module/Notify.php:65 -#: ../../Zotlabs/Module/Notifications.php:61 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "Se ha incorporado una conexión." - -#: ../../Zotlabs/Module/Import.php:144 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." - -#: ../../Zotlabs/Module/Import.php:158 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" - -#: ../../Zotlabs/Module/Import.php:482 -#: ../../addon/diaspora/import_diaspora.php:139 -msgid "Import completed." -msgstr "Importación completada." - -#: ../../Zotlabs/Module/Import.php:510 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." - -#: ../../Zotlabs/Module/Import.php:515 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../Zotlabs/Module/Import.php:516 -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/Import.php:518 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" - -#: ../../Zotlabs/Module/Import.php:519 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" - -#: ../../Zotlabs/Module/Import.php:520 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" - -#: ../../Zotlabs/Module/Import.php:521 -msgid "Your old login password" -msgstr "Su antigua contraseña" - -#: ../../Zotlabs/Module/Import.php:522 -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/Import.php:523 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" - -#: ../../Zotlabs/Module/Import.php:524 -msgid "Move this channel (disable all previous locations)" -msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)" - -#: ../../Zotlabs/Module/Import.php:525 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Importar unos meses de mensajes si es posible (limitado por la memoria disponible" - -#: ../../Zotlabs/Module/Import.php:526 -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/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Falló la autenticación." - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 -#: ../../include/channel.php:2318 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 -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:77 ../../include/channel.php:2320 -msgid "Authenticate" -msgstr "Acceder" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." - -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 -msgid "Import" -msgstr "Importar" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "Vuelva a su aplicación e introduzca este código de seguridad: " - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento no disponible" - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "vcard" - -#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 -msgid "Apps" -msgstr "Aplicaciones (apps)" - -#: ../../Zotlabs/Module/Apps.php:51 -msgid "Manage apps" -msgstr "Gestionar las aplicaciones" - -#: ../../Zotlabs/Module/Apps.php:52 -msgid "Create new app" -msgstr "Crear una nueva aplicación" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 -#, 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:253 -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/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Active" -msgstr "Activo/a" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Blocked" -msgstr "Bloqueadas" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Ignored" -msgstr "Ignoradas" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Hidden" -msgstr "Ocultas" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Archived/Unreachable" -msgstr "Archivadas o inaccesibles" - -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 -#: ../../Zotlabs/Module/Notifications.php:52 -#: ../../include/conversation.php:1717 -msgid "New" -msgstr "Nuevas" - -#: ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 -msgid "All" -msgstr "Todos/as" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "Conexiones activas" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "Mostrar las conexiones activas" - -#: ../../Zotlabs/Module/Connections.php:147 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "Nuevas conexiones" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show archived/unreachable connections" -msgstr "Mostrar solo las conexiones archivadas o no localizables" - -#: ../../Zotlabs/Module/Connections.php:188 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" - -#: ../../Zotlabs/Module/Connections.php:203 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Pending approval" -msgstr "Pendiente de aprobación" - -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Archived" -msgstr "Archivadas" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Not connected at this location" -msgstr "No está conectado/a en esta ubicación" - -#: ../../Zotlabs/Module/Connections.php:279 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Edit connection" -msgstr "Editar conexión" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Delete connection" -msgstr "Eliminar conexión" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Channel address" -msgstr "Dirección del canal" - -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Network" -msgstr "Red" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Call" -msgstr "Llamar" - -#: ../../Zotlabs/Module/Connections.php:298 -msgid "Status" -msgstr "Estado" - -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Connected" -msgstr "Conectado/a" - -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Approve connection" -msgstr "Aprobar esta conexión" - -#: ../../Zotlabs/Module/Connections.php:304 -msgid "Ignore connection" -msgstr "Ignorar esta conexión" - -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Recent activity" -msgstr "Actividad reciente" - -#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/text.php:973 -msgid "Connections" -msgstr "Conexiones" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "Buscar sus conexiones" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "Buscar conexiones" - -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Encontrar" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "elemento" - -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "Source of Item" -msgstr "Origen del elemento" - -#: ../../Zotlabs/Module/Bookmarks.php:56 -msgid "Bookmark added" -msgstr "Marcador añadido" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "My Bookmarks" -msgstr "Mis marcadores" - -#: ../../Zotlabs/Module/Bookmarks.php:90 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" - -#: ../../Zotlabs/Module/Photos.php:78 -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:94 ../../Zotlabs/Module/Photos.php:120 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "Borrar álbum" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 -msgid "Delete Photo" -msgstr "Borrar foto" - -#: ../../Zotlabs/Module/Photos.php:551 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" - -#: ../../Zotlabs/Module/Photos.php:600 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../Zotlabs/Module/Photos.php:646 -#, 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:649 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." - -#: ../../Zotlabs/Module/Photos.php:691 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:696 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" - -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" - -#: ../../Zotlabs/Module/Photos.php:699 -msgid "Description (optional)" -msgstr "Descripción (opcional)" - -#: ../../Zotlabs/Module/Photos.php:785 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" - -#: ../../Zotlabs/Module/Photos.php:787 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" - -#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 -msgid "Add Photos" -msgstr "Añadir fotos" - -#: ../../Zotlabs/Module/Photos.php:892 -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:894 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../Zotlabs/Module/Photos.php:952 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" - -#: ../../Zotlabs/Module/Photos.php:960 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../Zotlabs/Module/Photos.php:975 -msgid "View Full Size" -msgstr "Ver tamaño completo" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../Zotlabs/Module/Photos.php:1059 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" - -#: ../../Zotlabs/Module/Photos.php:1060 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" - -#: ../../Zotlabs/Module/Photos.php:1063 -msgid "Move photo to album" -msgstr "Mover la foto a un álbum" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" - -#: ../../Zotlabs/Module/Photos.php:1065 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" - -#: ../../Zotlabs/Module/Photos.php:1070 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../Zotlabs/Module/Photos.php:1078 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" - -#: ../../Zotlabs/Module/Photos.php:1081 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" - -#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" - -#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 -#: ../../include/conversation.php:785 -msgid "Please wait" -msgstr "Espere por favor" - -#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:749 -msgid "This is you" -msgstr "Este es usted" - -#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentar" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 -#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 -msgid "View all" -msgstr "Ver todo" - -#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1981 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:661 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 -#: ../../include/conversation.php:1984 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1265 -msgid "Photo Tools" -msgstr "Gestión de las fotos" - -#: ../../Zotlabs/Module/Photos.php:1274 -msgid "In This Photo:" -msgstr "En esta foto:" - -#: ../../Zotlabs/Module/Photos.php:1279 -msgid "Map" -msgstr "Mapa" - -#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "Cerrar" - -#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 -#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 -msgid "Profile Unavailable." -msgstr "Perfil no disponible" - -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 -msgid "Not found" -msgstr "No encontrado" - -#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 -#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 -msgid "Invalid channel" -msgstr "Canal no válido" - -#: ../../Zotlabs/Module/Wiki.php:124 -msgid "Error retrieving wiki" -msgstr "Error al recuperar el wiki" - -#: ../../Zotlabs/Module/Wiki.php:131 -msgid "Error creating zip file export folder" -msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" - -#: ../../Zotlabs/Module/Wiki.php:182 -msgid "Error downloading wiki: " -msgstr "Error al descargar el wiki: " - -#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 -#: ../../include/nav.php:494 -msgid "Wikis" -msgstr "Wikis" - -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Download" -msgstr "Descargar" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 -msgid "Create New" -msgstr "Crear" - -#: ../../Zotlabs/Module/Wiki.php:207 -msgid "Wiki name" -msgstr "Nombre del wiki" - -#: ../../Zotlabs/Module/Wiki.php:208 -msgid "Content type" -msgstr "Tipo de contenido" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 -#: ../../include/text.php:1869 -msgid "Markdown" -msgstr "Markdown" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 -msgid "BBcode" -msgstr "BBcode" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 -msgid "Text" -msgstr "Texto" - -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 -msgid "Type" -msgstr "Tipo" - -#: ../../Zotlabs/Module/Wiki.php:211 -msgid "Any type" -msgstr "Cualquier tipo" - -#: ../../Zotlabs/Module/Wiki.php:218 -msgid "Lock content type" -msgstr "Tipo de contenido bloqueado" - -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Create a status post for this wiki" -msgstr "Crear un mensaje de estado para este wiki" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Edit Wiki Name" -msgstr "Editar el nombre del wiki" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "Wiki not found" -msgstr "Wiki no encontrado" - -#: ../../Zotlabs/Module/Wiki.php:286 -msgid "Rename page" -msgstr "Renombrar la página" - -#: ../../Zotlabs/Module/Wiki.php:307 -msgid "Error retrieving page content" -msgstr "Error al recuperar el contenido de la página" - -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 -msgid "New page" -msgstr "Nueva página" - -#: ../../Zotlabs/Module/Wiki.php:345 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" - -#: ../../Zotlabs/Module/Wiki.php:346 -msgid "Revert" -msgstr "Revertir" - -#: ../../Zotlabs/Module/Wiki.php:353 -msgid "Short description of your changes (optional)" -msgstr "Breve descripción de sus cambios (opcional)" - -#: ../../Zotlabs/Module/Wiki.php:362 -msgid "Source" -msgstr "Fuente" - -#: ../../Zotlabs/Module/Wiki.php:372 -msgid "New page name" -msgstr "Nombre de la nueva página" - -#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" - -#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" - -#: ../../Zotlabs/Module/Wiki.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:368 -#: ../../include/conversation.php:1320 -msgid "Choose images to embed" -msgstr "Elegir imágenes para incluir" - -#: ../../Zotlabs/Module/Wiki.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:369 -#: ../../include/conversation.php:1321 -msgid "Choose an album" -msgstr "Elegir un álbum" - -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:370 -msgid "Choose a different album" -msgstr "Elegir un álbum diferente..." - -#: ../../Zotlabs/Module/Wiki.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:371 -#: ../../include/conversation.php:1323 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" - -#: ../../Zotlabs/Module/Wiki.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:372 -#: ../../include/conversation.php:1324 -msgid "Error getting photo link" -msgstr "Error al obtener el enlace de la foto" - -#: ../../Zotlabs/Module/Wiki.php:386 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:373 -#: ../../include/conversation.php:1325 -msgid "Error getting album" -msgstr "Error al obtener el álbum" - -#: ../../Zotlabs/Module/Wiki.php:462 -msgid "Error creating wiki. Invalid name." -msgstr "Error al crear el wiki: el nombre no es válido." - -#: ../../Zotlabs/Module/Wiki.php:469 -msgid "A wiki with this name already exists." -msgstr "Ya hay un wiki con este nombre." - -#: ../../Zotlabs/Module/Wiki.php:482 -msgid "Wiki created, but error creating Home page." -msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio." - -#: ../../Zotlabs/Module/Wiki.php:489 -msgid "Error creating wiki" -msgstr "Error al crear el wiki" - -#: ../../Zotlabs/Module/Wiki.php:512 -msgid "Error updating wiki. Invalid name." -msgstr "Error al actualizar el wiki. Nombre no válido." - -#: ../../Zotlabs/Module/Wiki.php:532 -msgid "Error updating wiki" -msgstr "Error al actualizar el wiki" - -#: ../../Zotlabs/Module/Wiki.php:547 -msgid "Wiki delete permission denied." -msgstr "Se ha denegado el permiso para eliminar el wiki." - -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error deleting wiki" -msgstr "Se ha producido un error al eliminar el wiki" - -#: ../../Zotlabs/Module/Wiki.php:590 -msgid "New page created" -msgstr "Se ha creado la nueva página" - -#: ../../Zotlabs/Module/Wiki.php:711 -msgid "Cannot delete Home" -msgstr "No se puede eliminar la página principal" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Current Revision" -msgstr "Revisión actual" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Selected Revision" -msgstr "Revisión seleccionada" - -#: ../../Zotlabs/Module/Wiki.php:825 -msgid "You must be authenticated." -msgstr "Debe estar autenticado." - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "cambiar al modo de pantalla completa" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Plantilla actualizada." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." - -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" - -#: ../../Zotlabs/Module/Pdledit.php:68 -msgid "(modified)" -msgstr "(modificado)" - -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../Zotlabs/Module/Pdledit.php:85 -msgid "Layout not found." -msgstr "Plantilla no encontrada" - -#: ../../Zotlabs/Module/Pdledit.php:91 -msgid "Module Name:" -msgstr "Nombre del módulo:" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" - -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Edit another layout" -msgstr "Editar otro diseño" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "System layout" -msgstr "Diseño del sistema" - -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 -#: ../../include/conversation.php:1092 -msgid "Poke" -msgstr "Toques y otras cosas" - -#: ../../Zotlabs/Module/Poke.php:183 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" - -#: ../../Zotlabs/Module/Poke.php:186 -msgid "Poke/Prod" -msgstr "Toque/Incitación" - -#: ../../Zotlabs/Module/Poke.php:187 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" - -#: ../../Zotlabs/Module/Poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" - -#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 -msgid "Make this post private" -msgstr "Convertir en privado este envío" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:56 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " - -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:741 -msgid "Profile Photos" -msgstr "Fotos del perfil" - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:159 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." - -#: ../../Zotlabs/Module/Profile_photo.php:218 -#: ../../addon/openclipatar/openclipatar.php:298 -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:225 -#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:197 -msgid "Image upload failed." -msgstr "La carga de la imagen ha fallado." - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:214 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:307 -#: ../../Zotlabs/Module/Cover_photo.php:322 -msgid "Photo not available." -msgstr "Foto no disponible." - -#: ../../Zotlabs/Module/Profile_photo.php:455 -#: ../../Zotlabs/Module/Cover_photo.php:359 -msgid "Upload File:" -msgstr "Subir fichero:" - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Use Photo for Profile" -msgstr "Usar la fotografía para el perfil" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Change Profile Photo" -msgstr "Cambiar la foto del perfil" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use" -msgstr "Usar" - -#: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:364 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "Use a photo from your albums" -msgstr "Usar una foto de sus álbumes" - -#: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../Zotlabs/Module/Cover_photo.php:376 -msgid "Select existing photo" -msgstr "Seleccionar una foto existente" - -#: ../../Zotlabs/Module/Profile_photo.php:492 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:394 -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/Profile_photo.php:495 -#: ../../Zotlabs/Module/Cover_photo.php:396 -msgid "Done Editing" -msgstr "Edición completada" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "Ausente" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "Conectado/a" - -#: ../../Zotlabs/Module/Item.php:194 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." - -#: ../../Zotlabs/Module/Item.php:477 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." - -#: ../../Zotlabs/Module/Item.php:874 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." - -#: ../../Zotlabs/Module/Item.php:1019 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." - -#: ../../Zotlabs/Module/Item.php:1055 -msgid "Your comment is awaiting approval." -msgstr "Su comentario está pendiente de aprobación." - -#: ../../Zotlabs/Module/Item.php:1160 -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:1189 -#, 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:1196 -#, 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/Ping.php:330 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" - -#: ../../Zotlabs/Module/Ping.php:383 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" - -#: ../../Zotlabs/Module/Ping.php:407 -msgid "requires approval" -msgstr "requiere aprobación" - -#: ../../Zotlabs/Module/Ping.php:417 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:435 -msgid "[today]" -msgstr "[hoy]" - -#: ../../Zotlabs/Module/Ping.php:444 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../Zotlabs/Module/Ping.php:477 -msgid "shared a file with you" -msgstr "compartió un archivo con usted" - -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." -msgstr "Elemento no válido." - -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 -#: ../../Zotlabs/Module/Display.php:175 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 -#: ../../include/help.php:81 -msgid "Page not found." -msgstr "Página no encontrada." - -#: ../../Zotlabs/Module/Page.php:173 -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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "Conexión actualizada." - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." - -#: ../../Zotlabs/Module/Connedit.php:302 -msgid "is now connected to" -msgstr "ahora está conectado/a" - -#: ../../Zotlabs/Module/Connedit.php:427 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." - -#: ../../Zotlabs/Module/Connedit.php:475 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." - -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 -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:554 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." - -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 -#: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:114 -msgid "View Profile" -msgstr "Ver el perfil" - -#: ../../Zotlabs/Module/Connedit.php:597 -#, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" - -#: ../../Zotlabs/Module/Connedit.php:601 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" - -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Photo" -msgstr "Actualizar la foto" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated photo" -msgstr "Obtener una foto actualizada" - -#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 -msgid "Recent Activity" -msgstr "Actividad reciente" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" - -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Unignore" -msgstr "Dejar de ignorar" - -#: ../../Zotlabs/Module/Connedit.php:633 -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:634 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Unarchive" -msgstr "Desarchivar" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Archive" -msgstr "Archivar" - -#: ../../Zotlabs/Module/Connedit.php:641 -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:642 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Unhide" -msgstr "Mostrar" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Hide" -msgstr "Ocultar" - -#: ../../Zotlabs/Module/Connedit.php:649 -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:650 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" - -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Fetch Vcard" -msgstr "Obtener una vcard" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Fetch electronic calling card for this connection" -msgstr "Obtener una tarjeta de llamada electrónica para esta conexión" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Open Individual Permissions section by default" -msgstr "Abrir la sección de permisos individuales por defecto" - -#: ../../Zotlabs/Module/Connedit.php:702 -msgid "Affinity" -msgstr "Afinidad" - -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Open Set Affinity section by default" -msgstr "Abrir por defecto la sección para definir la afinidad" - -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 -msgid "Me" -msgstr "Yo" - -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 -msgid "Family" -msgstr "Familia" - -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 -msgid "Acquaintances" -msgstr "Conocidos/as" - -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "Filter" -msgstr "Filtrar" - -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Open Custom Filter section by default" -msgstr "Abrir por defecto la sección de personalización de filtros" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Set Affinity" -msgstr "Ajustar la afinidad" - -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Set Profile" -msgstr "Ajustar el perfil" - -#: ../../Zotlabs/Module/Connedit.php:790 -msgid "Set Affinity & Profile" -msgstr "Ajustar la afinidad y el perfil" - -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This connection is unreachable from this location." -msgstr "No se puede acceder a la conexión desde este sitio." - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "This connection may be unreachable from other channel locations." -msgstr "Esta conexión puede ser inaccesible desde otras ubicaciones del canal." - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Location independence is not supported by their network." -msgstr "La independencia de ubicación no es compatible con su red." - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red." - -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -#: ../../Zotlabs/Widget/Settings_menu.php:117 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" - -#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" - -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" - -#: ../../Zotlabs/Module/Connedit.php:851 -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:852 ../../Zotlabs/Module/Defperms.php:240 -msgid "Permission role" -msgstr "Rol de acceso" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 -msgid "Loading" -msgstr "Cargando" - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 -msgid "Add permission role" -msgstr "Añadir un rol de acceso" - -#: ../../Zotlabs/Module/Connedit.php:860 -msgid "This connection's primary address is" -msgstr "La dirección primaria de esta conexión es" - -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Available locations:" -msgstr "Ubicaciones disponibles:" - -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 -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:867 -msgid "Connection Tools" -msgstr "Gestión de las conexiones" - -#: ../../Zotlabs/Module/Connedit.php:869 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" - -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valoración" - -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" - -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" - -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Custom Filter" -msgstr "Filtro personalizado" - -#: ../../Zotlabs/Module/Connedit.php:875 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" - -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -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:876 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contengan este texto" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "This information is public!" -msgstr "¡Esta información es pública!" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" - -#: ../../Zotlabs/Module/Connedit.php:888 -#, 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:895 -msgid "" -"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." -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:896 -msgid "Last update:" -msgstr "Última actualización:" - -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "Details" -msgstr "Detalles" - -#: ../../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:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 -#: ../../include/conversation.php:1435 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../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:250 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "Expiration" -msgstr "Caducidad" - -#: ../../Zotlabs/Module/Chat.php:260 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 -#: ../../include/conversation.php:1834 ../../include/nav.php:401 -msgid "Photos" -msgstr "Fotos" - -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 -#: ../../include/nav.php:409 -msgid "Files" -msgstr "Ficheros" - -#: ../../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:2423 -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: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/Layouts.php:184 ../../include/text.php:2424 -msgid "Layouts" -msgstr "Plantillas" - -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 -#: ../../include/nav.php:176 ../../include/nav.php:280 -#: ../../include/help.php:68 ../../include/help.php:74 -msgid "Help" -msgstr "Ayuda" - -#: ../../Zotlabs/Module/Layouts.php:186 -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:190 -msgid "Layout Description" -msgstr "Descripción de la plantilla" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" - -#: ../../Zotlabs/Module/Cloud.php:120 -msgid "Please refresh page" -msgstr "Por favor, recargue la página" - -#: ../../Zotlabs/Module/Cloud.php:123 -msgid "Unknown error" -msgstr "Error desconocido" - -#: ../../Zotlabs/Module/Email_validation.php:24 -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "Ha fallado el token de verificación." - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "Verificación obligatoria del correo electrónico" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje." - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "Reenvío de correo electrónico" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "Token de validación" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "Mensaje no encontrado." - -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:352 -msgid "post" -msgstr "la entrada" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2013 -msgid "comment" -msgstr "el comentario" - -#: ../../Zotlabs/Module/Tagger.php:119 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" - -#: ../../Zotlabs/Module/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/Defperms.php:239 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención." - -#: ../../Zotlabs/Module/Defperms.php:246 -msgid "Automatic approval settings" -msgstr "Opciones de autorización automática" - -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad." - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "Aplicación desconocida" - -#: ../../Zotlabs/Module/Authorize.php:22 -msgid "Authorize" -msgstr "Autorizar" - -#: ../../Zotlabs/Module/Authorize.php:23 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "¿Autoriza a la aplicación %s a acceder a los datos de su canal?" - -#: ../../Zotlabs/Module/Authorize.php:25 -msgid "Allow" -msgstr "Permitir" - -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "El grupo de canales ha sido creado." - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "No se puede crear el grupo de canales" - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4181 -msgid "Privacy group not found." -msgstr "Grupo de canales no encontrado." - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Grupo de canales actualizado." - -#: ../../Zotlabs/Module/Group.php:92 -msgid "Create a group of channels." -msgstr "Crear un grupo de canales." - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 -msgid "Privacy group name: " -msgstr "Nombre del grupo de canales:" - -#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 -msgid "Members are visible to other channels" -msgstr "Los miembros son visibles para otros canales" - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Privacy group removed." -msgstr "Grupo de canales eliminado." - -#: ../../Zotlabs/Module/Group.php:115 -msgid "Unable to remove privacy group." -msgstr "No se puede eliminar el grupo de canales." - -#: ../../Zotlabs/Module/Group.php:185 -msgid "Privacy group editor" -msgstr "Editor de grupos de canales" - -#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "Miembros" - -#: ../../Zotlabs/Module/Group.php:201 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" - -#: ../../Zotlabs/Module/Group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "Perfil no encontrado." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminado." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "El nuevo perfil ha sido creado." - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "Estado civil" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "Pareja sentimental" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "Me gusta" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "Trabajo:" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "Religión" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "Ideas políticas" - -#: ../../Zotlabs/Module/Profiles.php:486 -#: ../../addon/openid/MysqlProvider.php:74 -msgid "Gender" -msgstr "Género" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "Preferencia sexual" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "Página personal" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "Intereses" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Perfil actualizado." - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Ocultar la lista de conexiones a los visitantes del perfil" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1319 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "Gestión del perfil" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "Cambiar la imagen de portada del perfil" - -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "Eliminar este perfil" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" - -#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 -msgid "Personal" -msgstr "Personales" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "Relación" - -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "Varios" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "Género" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "Estado civil" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "Preferencia sexual" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "Nombre del perfil" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "Este es su perfil principal." - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "Nombre completo" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "Título o descripción" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "Dirección" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "Ciudad" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "Región o Estado" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "Código postal" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "Quién (si es pertinente)" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "Desde (fecha)" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "Háblenos de usted" - -#: ../../Zotlabs/Module/Profiles.php:767 -#: ../../addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" -msgstr "Dirección de la página personal" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "Lugar de nacimiento" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "Ideas políticas" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "Creencias religiosas" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "Palabras clave utilizadas en los listados de directorios" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "Preferencias musicales" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "Libros, literatura" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "Televisión" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cine, danza, cultura, entretenimiento" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "Aficiones o intereses" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "Vida sentimental o amorosa" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "Estudios" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "Información de contacto y redes sociales" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "Mis otros canales" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "Comunicaciones" - -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 -msgid "Profile Image" -msgstr "Imagen del perfil" - -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 -#: ../../include/nav.php:117 -msgid "Edit Profiles" -msgstr "Editar perfiles" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "Esta página está disponible sólo para los miembros del sitio" - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "Bienvenido/a" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "¿Qué le gustaría hacer?" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro." - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "Subir una foto de perfil" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "Subir una foto de portada del perfil" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "Editar su perfil por defecto" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 -msgid "View friend suggestions" -msgstr "Ver sugerencias de amistad" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "Ver el directorio de canales" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "Ver o modificar los ajustes de su canal" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "Ver el sitio o la documentación del proyecto" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "Visitar la página principal de su canal" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca" - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)" - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "Ver el \"stream\" público. Advertencia: este contenido no está moderado" - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "Enlace de la página" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "Editar la página web" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" - -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Channel Manager" -msgstr "Administración de canales" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "Canal actual" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "Canal principal" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "Convertir en predeterminado" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas solicitudes de conexión" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "Canal delegado" - -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 -#: ../../include/features.php:123 ../../include/nav.php:458 -msgid "Cards" -msgstr "Fichas" - -#: ../../Zotlabs/Module/Cards.php:99 -msgid "Add Card" -msgstr "Añadir una ficha" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "El servidor de este directorio necesita un \"token\" de acceso" - -#: ../../Zotlabs/Module/Siteinfo.php:18 -msgid "About this site" -msgstr "Acerca de este sitio" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -msgid "Site Name" -msgstr "Nombre del sitio" - -#: ../../Zotlabs/Module/Siteinfo.php:23 -msgid "Administrator" -msgstr "Administrador" - -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 -msgid "Terms of Service" -msgstr "Términos del servicio" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Software and Project information" -msgstr "Información sobre el software y el proyecto" - -#: ../../Zotlabs/Module/Siteinfo.php:27 -msgid "This site is powered by $Projectname" -msgstr "Este sitio funciona con $Projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "Servicios federados y descentralizados de identidad y redes proporcionados por Zot" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -#, php-format -msgid "Version %s" -msgstr "Versión %s" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Project homepage" -msgstr "Página principal del proyecto" - -#: ../../Zotlabs/Module/Siteinfo.php:32 -msgid "Developer homepage" -msgstr "Página principal del desarrollador" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Ninguna valoración" - -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1082 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valoración:" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descripción:" - -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import Webpage Elements" -msgstr "Importar elementos de una página web" - -#: ../../Zotlabs/Module/Webpages.php:55 -msgid "Import selected" -msgstr "Importar elementos seleccionados" - -#: ../../Zotlabs/Module/Webpages.php:78 -msgid "Export Webpage Elements" -msgstr "Exportar elementos de una página web" - -#: ../../Zotlabs/Module/Webpages.php:79 -msgid "Export selected" -msgstr "Exportar los elementos seleccionados" - -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 -#: ../../include/conversation.php:1915 ../../include/nav.php:481 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Actions" -msgstr "Acciones" - -#: ../../Zotlabs/Module/Webpages.php:249 -msgid "Page Link" -msgstr "Vínculo de la página" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Título de página" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Tipo de fichero no válido." - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Error al abrir el fichero comprimido zip" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "La ruta de la carpeta no es válida." - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "No se han detectado elementos de ninguna página web." - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Importación completada." - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account" -" password." -msgstr "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta." - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 -#: ../../include/channel.php:599 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 -#: ../../include/channel.php:604 -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." - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "Cambiar el alias o la dirección del canal" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "¡Cualquier/todas las conexiones en otras redes se perderán!" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "Nueva dirección del canal" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "Renombrar el canal" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "El elemento no es editable" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "Editar la entrada" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "Mensaje no válido" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "sin resultados" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "encolado" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "enviado" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "aceptado para el envío" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "actualizado" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "actualización ignorada" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "permiso denegado" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "destinatario no encontrado" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "mensaje de correo revocado" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "correo enviado" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de entrega para %1$s" - -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Options" -msgstr "Opciones" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "Volver a enviar" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Fuente creada." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Fuente actualizada." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestionar contenido de origen remoto para su canal." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nueva fuente" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importar solo contenido que contenga estas palabras (una por línea)" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Dejar en blanco para importar todo el contenido público" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nombre del canal" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Fuente no encontrada" - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Editar fuente" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Eliminar fuente" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Fuente eliminada" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "No se puede eliminar la fuente." - -#: ../../Zotlabs/Module/Like.php:54 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" - -#: ../../Zotlabs/Module/Like.php:59 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." - -#: ../../Zotlabs/Module/Like.php:60 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." - -#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 -msgid "Invalid request." -msgstr "Solicitud incorrecta." - -#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 -msgid "channel" -msgstr "el canal" - -#: ../../Zotlabs/Module/Like.php:150 -msgid "thing" -msgstr "elemento" - -#: ../../Zotlabs/Module/Like.php:196 -msgid "Channel unavailable." -msgstr "Canal no disponible." - -#: ../../Zotlabs/Module/Like.php:244 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." - -#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 -#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 -#, 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:440 ../../addon/pubcrawl/as.php:1442 -#: ../../include/conversation.php:163 -#, 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:442 -#, 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:444 -#, 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:446 -#, 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:448 ../../addon/diaspora/Receiver.php:2072 -#, 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:450 ../../addon/diaspora/Receiver.php:2074 -#, 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:452 ../../addon/diaspora/Receiver.php:2076 -#, 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:564 -msgid "Action completed." -msgstr "Acción completada." - -#: ../../Zotlabs/Module/Like.php:565 -msgid "Thank you." -msgstr "Gracias." - -#: ../../Zotlabs/Module/Directory.php:106 -msgid "No default suggestions were found." -msgstr "No se encontraron sugerencias por defecto." - -#: ../../Zotlabs/Module/Directory.php:255 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" - -#: ../../Zotlabs/Module/Directory.php:266 -msgid "Gender: " -msgstr "Género:" - -#: ../../Zotlabs/Module/Directory.php:268 -msgid "Status: " -msgstr "Estado:" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Homepage: " -msgstr "Página personal:" - -#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 -msgid "Age:" -msgstr "Edad:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 -#: ../../include/event.php:54 ../../include/event.php:86 -msgid "Location:" -msgstr "Ubicación:" - -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Description:" -msgstr "Descripción:" - -#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 -msgid "Hometown:" -msgstr "Lugar de nacimiento:" - -#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 -msgid "About:" -msgstr "Sobre mí:" - -#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1052 ../../include/channel.php:1376 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "Conectar" - -#: ../../Zotlabs/Module/Directory.php:339 -msgid "Public Forum:" -msgstr "Foro público:" - -#: ../../Zotlabs/Module/Directory.php:342 -msgid "Keywords: " -msgstr "Palabras clave:" - -#: ../../Zotlabs/Module/Directory.php:345 -msgid "Don't suggest" -msgstr "No sugerir:" - -#: ../../Zotlabs/Module/Directory.php:347 -msgid "Common connections (estimated):" -msgstr "Conexiones comunes (estimadas): " - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Global Directory" -msgstr "Directorio global:" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Local Directory" -msgstr "Directorio local:" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Finding:" -msgstr "Encontrar:" - -#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "next page" -msgstr "siguiente página" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "previous page" -msgstr "página anterior" - -#: ../../Zotlabs/Module/Directory.php:408 -msgid "Sort options" -msgstr "Ordenar opciones" - -#: ../../Zotlabs/Module/Directory.php:409 -msgid "Alphabetic" -msgstr "Alfabético" - -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Reverse Alphabetic" -msgstr "Alfabético inverso" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "Newest to Oldest" -msgstr "De más nuevo a más antiguo" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Oldest to Newest" -msgstr "De más antiguo a más nuevo" - -#: ../../Zotlabs/Module/Directory.php:429 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas entradas pueden estar ocultas)." - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Búsqueda de canales" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Buscar un canal (o un \"webbie\") que comience por:" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../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/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "No se puede asociar a un destinatario." - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "No se puede establecer la comunicación con el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:105 -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:160 -msgid "Messages" -msgstr "Mensajes" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "mensaje" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "Mensaje revocado." - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "Para:" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1385 -msgid "Attach file" -msgstr "Adjuntar fichero" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "Enviar" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1430 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "Revocar el mensaje" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "Eliminar conversación" - -#: ../../Zotlabs/Module/Mail.php:416 -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:420 -msgid "Send Reply" -msgstr "Responder" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../Zotlabs/Module/Pubsites.php:27 -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:33 -msgid "Hub URL" -msgstr "Dirección del hub" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo de acceso" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Normas de registro" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Estadísticas" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "Valorar" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 -msgid "webpage" -msgstr "página web" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 -msgid "block" -msgstr "bloque" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 -msgid "layout" -msgstr "plantilla" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 -msgid "menu" -msgstr "menú" - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Guardar marcador" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "Dirección del marcador" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "Escriba un nombre de carpeta" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "o seleccione una (con un doble click)" - -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 -msgid "Save to Folder" -msgstr "Guardar en carpeta" - -#: ../../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/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registro exitoso. Continúe creando tu primer canal..." - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "El registro está deshabilitado en este sitio." - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "El registro en este hub está sometido a aprobación previa." - -#: ../../Zotlabs/Module/Register.php:202 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." - -#: ../../Zotlabs/Module/Register.php:212 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." - -#: ../../Zotlabs/Module/Register.php:238 -#, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" - -#: ../../Zotlabs/Module/Register.php:245 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" - -#: ../../Zotlabs/Module/Register.php:250 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" - -#: ../../Zotlabs/Module/Register.php:251 -msgid "Choose a password" -msgstr "Elija una contraseña" - -#: ../../Zotlabs/Module/Register.php:252 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" - -#: ../../Zotlabs/Module/Register.php:253 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "yes" -msgstr "sí" - -#: ../../Zotlabs/Module/Register.php:274 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." - -#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 -#: ../../include/nav.php:164 -msgid "Register" -msgstr "Registrarse" - -#: ../../Zotlabs/Module/Register.php:287 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." - -#: ../../Zotlabs/Module/Cover_photo.php:136 -#: ../../Zotlabs/Module/Cover_photo.php:186 -msgid "Cover Photos" -msgstr "Imágenes de portada del perfil" - -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 -msgid "female" -msgstr "mujer" - -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s ha actualizado su %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 -msgid "male" -msgstr "hombre" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s ha actualizado su %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s ha actualizado su %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 -msgid "cover photo" -msgstr "Imagen de portada del perfil" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -msgid "Change Cover Photo" -msgstr "Cambiar la foto de portada del perfil" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "Búsqueda de Documentación" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 -#: ../../include/nav.php:391 -msgid "About" -msgstr "Mi perfil" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "Administradores" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "Desarrolladores" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "Tutoriales" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "Documentación de $Projectname" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "Contenidos" - -#: ../../Zotlabs/Module/Display.php:394 -msgid "Article" -msgstr "Artículo" - -#: ../../Zotlabs/Module/Display.php:446 -msgid "Item has been removed." -msgstr "Se ha eliminado el elemento." - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Etiqueta eliminada." - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" - -#: ../../Zotlabs/Module/Network.php:100 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../Zotlabs/Module/Network.php:142 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../Zotlabs/Module/Network.php:147 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:159 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:229 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" - -#: ../../Zotlabs/Module/Network.php:238 -msgid "Privacy group: " -msgstr "Grupo de canales: " - -#: ../../Zotlabs/Module/Network.php:265 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 -msgid "Invalid channel." -msgstr "El canal no es válido." - -#: ../../Zotlabs/Module/Acl.php:361 -msgid "network" -msgstr "red" - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." -msgstr "Permiso denegado" - -#: ../../Zotlabs/Module/Filestorage.php:95 -msgid "File not found." -msgstr "Fichero no encontrado." - -#: ../../Zotlabs/Module/Filestorage.php:142 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" - -#: ../../Zotlabs/Module/Filestorage.php:154 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" - -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" - -#: ../../Zotlabs/Module/Filestorage.php:158 -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:159 -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:161 -msgid "Share this file" -msgstr "Compartir este fichero" - -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" - -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 -msgid "Show in your contacts shared folder" -msgstr "Mostrar en la carpeta compartida con sus contactos" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "Ninguna conexión en común." - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "Ver las conexiones comunes" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "Reenvío del email de verificación" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "No se puede reenviar el mensaje de verificación por correo electrónico." - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Sin conexiones." - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar el perfil de %s [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "Ver conexiones" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "Cuentas bloqueadas" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "Cuentas caducadas" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "Cuentas que caducan" - -#: ../../Zotlabs/Module/Admin.php:112 -msgid "Clones" -msgstr "Clones" - -#: ../../Zotlabs/Module/Admin.php:118 -msgid "Message queues" -msgstr "Mensajes en cola" - -#: ../../Zotlabs/Module/Admin.php:132 -msgid "Your software should be updated" -msgstr "Debe actualizar su software" - -#: ../../Zotlabs/Module/Admin.php:137 -msgid "Summary" -msgstr "Sumario" - -#: ../../Zotlabs/Module/Admin.php:140 -msgid "Registered accounts" -msgstr "Cuentas registradas" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Pending registrations" -msgstr "Registros pendientes" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Registered channels" -msgstr "Canales registrados" - -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Active plugins" -msgstr "Extensiones (plugins) activas" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Version" -msgstr "Versión" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Repository version (master)" -msgstr "Versión del repositorio (master)" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Repository version (dev)" -msgstr "Versión del repositorio (dev)" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Rate.php:159 -#, 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:160 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "Editar la ficha" - -#: ../../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:108 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../Zotlabs/Module/Lostpass.php:68 -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:91 ../../boot.php:1598 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../Zotlabs/Module/Lostpass.php:96 -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:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "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:132 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../Zotlabs/Module/Notifications.php:62 -#: ../../Zotlabs/Lib/ThreadItem.php:408 -msgid "Mark all seen" -msgstr "Marcar todo como visto" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "0. Principiante/Básico" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "1. Novato: no cualificado, pero dispuesto a aprender" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "2. Intermedio - algo cómodo" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "3. Avanzado - muy cómodo" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "4. Experto - Puedo escribir código informático" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "5. Colaborador - probablemente sé más que tú" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Site Admin" -msgstr "Administrador del sitio" - -#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "Informe de errores" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "View Bookmarks" -msgstr "Ver los marcadores" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Activity" -msgstr "Actividad" - -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 -#: ../../include/features.php:96 ../../include/nav.php:497 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Lib/Apps.php:246 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 -msgid "Events" -msgstr "Eventos" - -#: ../../Zotlabs/Lib/Apps.php:250 -msgid "Directory" -msgstr "Directorio" - -#: ../../Zotlabs/Lib/Apps.php:252 -msgid "Mail" -msgstr "Correo" - -#: ../../Zotlabs/Lib/Apps.php:255 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:257 -msgid "Probe" -msgstr "Probar" - -#: ../../Zotlabs/Lib/Apps.php:258 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../Zotlabs/Lib/Apps.php:259 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../Zotlabs/Lib/Apps.php:260 -msgid "Invite" -msgstr "Invitar" - -#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Idioma" - -#: ../../Zotlabs/Lib/Apps.php:263 -msgid "Post" -msgstr "Publicación" - -#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "Foto del perfil" - -#: ../../Zotlabs/Lib/Apps.php:407 -msgid "Purchase" -msgstr "Comprar" - -#: ../../Zotlabs/Lib/Apps.php:411 -msgid "Undelete" -msgstr "Recuperar" - -#: ../../Zotlabs/Lib/Apps.php:419 -msgid "Add to app-tray" -msgstr "Añadir a la bandeja de aplicaciones" - -#: ../../Zotlabs/Lib/Apps.php:420 -msgid "Remove from app-tray" -msgstr "Quitar de la bandeja de aplicaciones" - -#: ../../Zotlabs/Lib/Apps.php:421 -msgid "Pin to navbar" -msgstr "Fijar en la barra de navegación" - -#: ../../Zotlabs/Lib/Apps.php:422 -msgid "Unpin from navbar" -msgstr "Quitar de la barra de navegación" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "por defecto" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "seguidor" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "contribuidor" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "editor" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:93 -msgid "(No Title)" -msgstr "(Sin título)" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:107 -msgid "Wiki page create failed." -msgstr "Se ha producido un error en la creación de la página wiki." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:120 -msgid "Wiki not found." -msgstr "No se ha encontrado el wiki." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:131 -msgid "Destination name already exists" -msgstr "El nombre de destino ya existe" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:163 -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -msgid "Page not found" -msgstr "No se ha encontrado la página" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:194 -msgid "Error reading page content" -msgstr "Se ha producido un error al leer el contenido de la página" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:350 -#: ../../Zotlabs/Lib/NativeWikiPage.php:400 -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 -msgid "Error reading wiki" -msgstr "Se ha producido un error al leer el wiki" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:388 -msgid "Page update failed." -msgstr "Se ha producido un error al actualizar la página." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:422 -msgid "Nothing deleted" -msgstr "No se ha eliminado nada" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:488 -msgid "Compare: object not found." -msgstr "No se ha encontrado un objeto para comparar." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:494 -msgid "Page updated" -msgstr "Se ha actualizado la página" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:497 -msgid "Untitled" -msgstr "Sin título" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:503 -msgid "Wiki resource_id required for git commit" -msgstr "Se necesita Wiki resource_id para el git commit" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:559 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "Mensaje" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 -#: ../../include/bbcode.php:914 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:106 -msgid "Only me" -msgstr "Sólo yo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "Público" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "Cualquiera en la red $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "Cualquier cuenta en %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "Cualquiera de mis conexiones" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "Sólo las conexiones que yo permita de forma explícita" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -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:114 -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:150 -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:151 -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:152 -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:153 -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:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "Sala de chat sin nombre" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "Nombre de sala duplicado." - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "Especificador de sala no válido." - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "Sala no encontrada." - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "La sala está llena." - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "Notificación de $Projectname" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 -#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "Gracias," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "Este email ha sido enviado por %1$s a %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "Para dejar de recibir estos mensajes, por favor, ajuste su %s" - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Aviso] Nuevo correo recibido en %s" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s le ha enviado un nuevo mensaje privado en %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s le ha enviado %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "un mensaje privado" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "ha comentado sobre " - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "ha gustado de " - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "no ha gustado de " - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s%2$s [zrl=%3$s ]un %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s %2$s[zrl=%3$s]%5$s de %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]su %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Aviso] Comentario moderado en la conversación #%1$d por %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "%1$sha comentado un elemento/conversación que ha estado siguiendo." - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Para ver o comentar la conversación, visite %s" - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "Por favor, visite %s para aprobar o rechazar este comentario." - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "A %1$sle ha gustado [zrl=%2$s]su %3$s [/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Aviso] \"Me gusta\" de %2$s en la conversación #%1$d" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "A %1$s le ha gustado un elemento o conversación que ha creado usted." - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha publicado en su muro en %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "%1$sha publicado en [zrl=%2$s]su muro[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Aviso] %s le ha etiquetado" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$sle ha etiquetado en %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "%1$s [zrl=%2$s]le ha etiquetado[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Aviso] %1$s le ha dado un toque" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$sle ha dado un toque en %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s [zrl=%2$s] le ha dado un toque[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Aviso] %s ha etiquetado su entrada" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$sha etiquetado su entrada en %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "%1$s ha etiquetado [zrl=%2$s]su entrada[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Aviso] Ha recibido una solicitud de conexión" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "Ha recibido una nueva solicitud de conexión de '%1$s' en %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "Ha recibido [zrl=%1$s]una nueva solicitud de conexión[/zrl] de %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puede visitar su perfil en %s" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Aviso] Ha recibido una sugerencia de conexión" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Ha recibido una sugerencia de amistad de '%1$s' en %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "" -"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "Ha recibido [zrl=%1$s]una sugerencia de amistad[/zrl] para %2$s de %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "Nombre:" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "Foto:" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Aviso]" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "ha creado una nueva entrada" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "ha comentado la entrada de %s" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "ha editado una entrada fechada el %s" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "ha editado un comentario fechado el %s" - -#: ../../Zotlabs/Lib/NativeWiki.php:151 -msgid "Wiki updated successfully" -msgstr "El wiki se ha actualizado con éxito" - -#: ../../Zotlabs/Lib/NativeWiki.php:205 -msgid "Wiki files deleted successfully" -msgstr "Se han borrado con éxito los ficheros del wiki" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "Error de actualización en %s" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "La actualización %s ha fallado. Mire el informe de errores." - -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 -msgid "Private Message" -msgstr "Mensaje Privado" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 -msgid "Select" -msgstr "Seleccionar" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will attend" -msgstr "Participaré" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will not attend" -msgstr "No participaré" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I might attend" -msgstr "Quizá participe" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I agree" -msgstr "Estoy de acuerdo" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I disagree" -msgstr "No estoy de acuerdo" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I abstain" -msgstr "Me abstengo" - -#: ../../Zotlabs/Lib/ThreadItem.php:238 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:239 -msgid "Remove Star" -msgstr "Eliminar estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:240 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" - -#: ../../Zotlabs/Lib/ThreadItem.php:244 -msgid "starred" -msgstr "preferidas" - -#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" - -#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" - -#: ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "Add Tag" -msgstr "Añadir etiqueta" - -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 -msgid "like" -msgstr "me gusta" - -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 -msgid "dislike" -msgstr "no me gusta" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Share This" -msgstr "Compartir esto" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "share" -msgstr "compartir" - -#: ../../Zotlabs/Lib/ThreadItem.php:295 -msgid "Delivery Report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Lib/ThreadItem.php:313 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" - -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 -msgid "to" -msgstr "a" - -#: ../../Zotlabs/Lib/ThreadItem.php:348 -msgid "via" -msgstr "mediante" - -#: ../../Zotlabs/Lib/ThreadItem.php:349 -msgid "Wall-to-Wall" -msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" - -#: ../../Zotlabs/Lib/ThreadItem.php:350 -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:363 ../../include/conversation.php:763 -#, php-format -msgid "from %s" -msgstr "desde %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:374 -msgid "Attend" -msgstr "Participar o asistir" - -#: ../../Zotlabs/Lib/ThreadItem.php:375 -msgid "Attendance Options" -msgstr "Opciones de participación o asistencia" - -#: ../../Zotlabs/Lib/ThreadItem.php:376 -msgid "Vote" -msgstr "Votar" - -#: ../../Zotlabs/Lib/ThreadItem.php:377 -msgid "Voting Options" -msgstr "Opciones de votación" - -#: ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" - -#: ../../Zotlabs/Lib/ThreadItem.php:399 -msgid "Add to Calendar" -msgstr "Añadir al calendario" - -#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 -msgid "This is an unsaved preview" -msgstr "Esta es una previsualización sin guardar" - -#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostrar todo" - -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 -msgid "Bold" -msgstr "Negrita" - -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 -msgid "Italic" -msgstr "Itálico " - -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 -msgid "Underline" -msgstr "Subrayar" - -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 -msgid "Quote" -msgstr "Citar" - -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 -msgid "Code" -msgstr "Código" - -#: ../../Zotlabs/Lib/ThreadItem.php:758 -msgid "Image" -msgstr "Imagen" - -#: ../../Zotlabs/Lib/ThreadItem.php:759 -msgid "Attach File" -msgstr "Fichero adjunto" - -#: ../../Zotlabs/Lib/ThreadItem.php:760 -msgid "Insert Link" -msgstr "Insertar enlace" - -#: ../../Zotlabs/Lib/ThreadItem.php:761 -msgid "Video" -msgstr "Vídeo" - -#: ../../Zotlabs/Lib/ThreadItem.php:771 -msgid "Your full name (required)" -msgstr "Su nombre completo (requerido)" - -#: ../../Zotlabs/Lib/ThreadItem.php:772 -msgid "Your email address (required)" -msgstr "Su dirección de correo electrónico (requerido)" - -#: ../../Zotlabs/Lib/ThreadItem.php:773 -msgid "Your website URL (optional)" -msgstr "La URL de su sitio web (opcional)" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." - -#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 -#: ../../addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 -msgid "parent" -msgstr "padre" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 -msgid "Collection" -msgstr "Colección" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Principal" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Libreta de direcciones" - -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 -#: ../../include/nav.php:423 -msgid "Calendar" -msgstr "Calendario" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Programar bandeja de entrada" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Programar bandeja de salida" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "Total" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "Compartido" - -#: ../../Zotlabs/Storage/Browser.php:277 -msgid "Add Files" -msgstr "Añadir ficheros" - -#: ../../Zotlabs/Storage/Browser.php:353 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Está usando %1$s de su espacio disponible para ficheros." - -#: ../../Zotlabs/Storage/Browser.php:358 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:369 -msgid "WARNING:" -msgstr "ATENCIÓN: " - -#: ../../Zotlabs/Storage/Browser.php:381 -msgid "Create new folder" -msgstr "Crear nueva carpeta" - -#: ../../Zotlabs/Storage/Browser.php:383 -msgid "Upload file" -msgstr "Subir fichero" - -#: ../../Zotlabs/Storage/Browser.php:396 -msgid "Drop files here to immediately upload" -msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" - -#: ../../Zotlabs/Widget/Forums.php:100 -msgid "Forums" -msgstr "Foros" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "Seleccionar un canal" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "Lectura y escritura" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "Sólo lectura" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "Mis calendarios" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "Calendarios compartidos" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "Compartir este calendario" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "Nombre y color del calendario" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "Crear un nuevo calendario" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "Nombre del calendario" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "Gestión de calendarios" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "Importar un calendario" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "Seleccionar un calendario para importarlo" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "Agenda de direcciones" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "Nombre de la agenda" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "Crear una nueva agenda de direcciones" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "Nombre de la agenda" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "Gestión de agendas de direcciones" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "Importar una agenda de direcciones" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "Seleccionar una agenda para importarla" - -#: ../../Zotlabs/Widget/Appcategories.php:40 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 -msgid "Categories" -msgstr "Temas" - -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 -msgid "Everything" -msgstr "Todo" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "Gestión de eventos" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "Exportar el calendario" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "Importar un calendario" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "Panel de control de HQ" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "Crear una nueva entrada" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "Vista combinada" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "Bandeja de entrada" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "Bandeja de salida" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 -#: ../../include/nav.php:434 ../../include/nav.php:437 -msgid "Chatrooms" -msgstr "Salas de chat" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "Resumen" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "Valoraciones" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "Valorar este canal" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "Actividad" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "Dirección del canal" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" - -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wiki List" -msgstr "Lista de wikis" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "Hemeroteca" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "Mensajes recibidos" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "Enviar mensajes" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "Conversaciones" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "Sin mensajes." - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "Miembros del chat" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "foto/imagen" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 -msgid "add" -msgstr "añadir" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Notas" - -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:89 -msgid "Add new page" -msgstr "Añadir una nueva página" - -#: ../../Zotlabs/Widget/Wiki_pages.php:83 -msgid "Wiki Pages" -msgstr "Páginas del wiki" - -#: ../../Zotlabs/Widget/Wiki_pages.php:94 -msgid "Page name" -msgstr "Nombre de la página" - -#: ../../Zotlabs/Widget/Affinity.php:45 -msgid "Refresh" -msgstr "Recargar" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "Tareas" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "Sugerencias" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "Ver más..." - -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:470 -msgid "Saved Folders" -msgstr "Carpetas guardadas" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "Hacer clic para ver más" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 -#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 -msgid "Tags" -msgstr "Etiquetas" - -#: ../../Zotlabs/Widget/Newmember.php:24 -msgid "Profile Creation" -msgstr "Creación de perfiles" - -#: ../../Zotlabs/Widget/Newmember.php:26 -msgid "Upload profile photo" -msgstr "Cargar la foto del perfil" - -#: ../../Zotlabs/Widget/Newmember.php:27 -msgid "Upload cover photo" -msgstr "Cargar la foto de portada del perfil" - -#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Find and Connect with others" -msgstr "Encontrar y conectarse con otros" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "View the directory" -msgstr "Ver el directorio" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Manage your connections" -msgstr "Gestionar sus conexiones" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Communicate" -msgstr "Comunicarse" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View your channel homepage" -msgstr "Ver la página principal de su canal" - -#: ../../Zotlabs/Widget/Newmember.php:41 -msgid "View your network stream" -msgstr "Ver el \"stream\" de su red" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Documentation" -msgstr "Documentación" - -#: ../../Zotlabs/Widget/Newmember.php:58 -msgid "View public stream" -msgstr "Ver el \"stream\" público" - -#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 -msgid "New Member Links" -msgstr "Enlaces para nuevos miembros" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "Examinar la cola" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 -msgid "Admin" -msgstr "Administrador" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "Extensiones" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "Configuración de la cuenta" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "Configuración del canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "Ajustes de los complementos" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Display settings" -msgstr "Ajustes de visualización" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "OAuth1 apps" -msgstr "Aplicaciones OAuth1" - -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "OAuth2 apps" -msgstr "Aplicaciones OAuth2" - -#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 -msgid "Permission Groups" -msgstr "Grupos de permisos" - -#: ../../Zotlabs/Widget/Settings_menu.php:125 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "Nueva actividad en la red" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "Avisos de nueva actividad en la red" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "Ver su actividad en la red" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "Marcar todas las notificaciones como leídas" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:141 -msgid "Show new posts only" -msgstr "Mostrar solo las entradas nuevas" - -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Filter by name" -msgstr "Filtrar por nombre" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "Nueva actividad en su página principal" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "Avisos de nueva actividad en su página principal" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "Ver su actividad en su página principal" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:138 -msgid "Mark all notifications seen" -msgstr "Marcar todas las notificaciones como vistas" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "Nuevos mensajes de correo" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "Avisos de nuevos mensajes de correo" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "Ver sus correos privados" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "Marcar todos los mensajes como vistos" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "Eventos nuevos" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "Avisos de nuevos eventos" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "Ver los eventos" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "Avisos de nuevas conexiones" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "Ver todas las conexiones" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "Ficheros nuevos" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "Avisos de nuevos ficheros" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "Avisos" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "Ver todos los avisos" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "Marcar como leídos todos los avisos" - -#: ../../Zotlabs/Widget/Notifications.php:121 -msgid "New Registrations" -msgstr "Registros nuevos" - -#: ../../Zotlabs/Widget/Notifications.php:122 -msgid "New Registrations Notifications" -msgstr "Notificaciones de nuevos registros" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "Public Stream Notifications" -msgstr "Avisos del \"stream\" público" - -#: ../../Zotlabs/Widget/Notifications.php:135 -msgid "View the public stream" -msgstr "Ver el \"stream\" público" - -#: ../../Zotlabs/Widget/Notifications.php:150 -msgid "Sorry, you have got no notifications at the moment" -msgstr "Lo sentimos, por el momento no ha recibido ninguna notificación" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "No se ha encontrado el canal de origen." - -#: ../../boot.php:1569 -msgid "Create an account to access services and applications" -msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" - -#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 -#: ../../include/nav.php:159 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../boot.php:1592 -msgid "Login/Email" -msgstr "Inicio de sesión / Correo electrónico" - -#: ../../boot.php:1593 -msgid "Password" -msgstr "Contraseña" - -#: ../../boot.php:1594 -msgid "Remember me" -msgstr "Recordarme" - -#: ../../boot.php:1597 -msgid "Forgot your password?" -msgstr "¿Olvidó su contraseña?" - -#: ../../boot.php:2354 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "[$Projectname] Error SSL del sitio web en %s" - -#: ../../boot.php:2359 -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:2475 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" - -#: ../../boot.php:2480 -msgid "Cron/Scheduled tasks not running." -msgstr "Las tareas del Planificador/Cron no están funcionando." - -#: ../../boot.php:2481 ../../include/datetime.php:238 -msgid "never" -msgstr "nunca" - -#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 -msgid "Cover Photo" -msgstr "Imagen de portada del perfil" - -#: ../../view/theme/redbasic_c/php/config.php:16 -#: ../../view/theme/redbasic_c/php/config.php:19 -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "Focus (predefinido)" - -#: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "Ajustes del tema" - -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "Estrechar la barra de navegación" - -#: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "Color de fondo de la barra de navegación" - -#: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "Color del icono de la barra de navegación" - -#: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "Color del icono activo de la barra de navegación" - -#: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "Color del enlace" - -#: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "Ajustar el color del tipo de letra para el \"banner\"" - -#: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "Ajustar el color de fondo" - -#: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "Ajustar la imagen de fondo" - -#: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "Ajustar el color de los elementos de fondo" - -#: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "Ajustar el color de fondo de los comentarios" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "Ajustar el tamaño de letra para toda la aplicación" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "Ejemplos: 1rem, 100%, 16px" - -#: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "Establecer el color de la letra para publicaciones y comentarios" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "Establecer el radio de curvatura de las esquinas" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "Ejemplo: 4px" - -#: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "Ajustar la profundidad de sombras de las fotos" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "Dejar en blanco para la anchura predeterminada" - -#: ../../view/theme/redbasic_c/php/config.php:115 -msgid "Left align page content" -msgstr "Alinear a la izquierda el contenido de la página" - -#: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "Ajustar el tamaño de la foto del autor de la conversación" - -#: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "Ajustar el tamaño de foto de los seguidores del autor" - -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "Errores encontrados al eliminar la tabla de la base de datos" - -#: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:779 -msgid "Submit Settings" -msgstr "Enviar los ajustes" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "¿Eliminar tablas al desinstalar?" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "Si se selecciona, las tablas de la base de datos Rendezvous se eliminarán cuando se desinstale el plugin." - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "Token de acceso de Mapbox" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "Si introduce un token de acceso a Mapbox, se utilizará para recuperar los mapas de mosaicos de imágenes de Mapbox en lugar del servidor de mosaico de imágenes OpenStreetMap predeterminado." - -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "Rendezvous" - -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "Esta identidad ha sido eliminada por otro miembro debido a su inactividad. Pulse el botón \"Nueva identidad\" o actualice la página para registrar una nueva identidad. Puede usar el mismo nombre." - -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "¡Bienvenido/a a Rendevous!" - -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with" -" the other members, tap the GPS control. When your location is discovered, a" -" red dot will appear and others will be able to see you on the map." -msgstr "Introduzca tu nombre para unirse a esta cita. Para comenzar a compartir su ubicación con los demás miembros, pulse en el control GPS. Cuando se descubra su ubicación, aparecerá un punto rojo y otros podrán verlo en el mapa." - -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "Reunámonos aquí" - -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "Nuevo marcador" - -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "Editar un marcador" - -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "Nueva identidad" - -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "Eliminar un marcador" - -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "Eliminar un miembro" - -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "Editar alerta de proximidad" - -#: ../../addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius" -" of you.

Enter a radius in meters (0 to disable):" -msgstr "Se emitirá una alerta de proximidad cuando este miembro esté dentro de un radio determinado respecto a usted.

Ingrese el radio en metros (0 para deshabilitar):" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "distancia" - -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "Distancia (en metros) para la alerta de proximidad" - -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the" -" marker location.

Enter a radius in meters (0 to disable):" -msgstr "Se emitirá una alerta de proximidad cuando usted esté dentro de un radio determinado respecto al marcador de localización.

Ingrese el radio en metros (0 para deshabilitar):" - -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "Marcador de alerta de proximidad" - -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "Recordatorio" - -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "Introduzca una nota que se mostrará cuando esté dentro de la proximidad especificada..." - -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "Añadir una nueva cita" - -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or" -" share their own locations with the group." -msgstr "Cree una nueva cita y comparta los enlaces de acceso con los que desea invitar al grupo. Aquellos que abran el enlace se convertirán en miembros de la cita. Pueden ver otras ubicaciones de miembros, añadir marcadores al mapa o compartir sus propias ubicaciones con el grupo." - -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" -msgstr "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!" - -#: ../../addon/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "Algunos ajustes" - -#: ../../addon/skeleton/skeleton.php:61 -msgid "A setting" -msgstr "Un ajuste" - -#: ../../addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" -msgstr "Ajustes de Skeleton" - -#: ../../addon/gnusoc/gnusoc.php:249 -msgid "GNU-Social Protocol Settings updated." -msgstr "Se han actualizado los ajustes del protocolo de GNU-Social." - -#: ../../addon/gnusoc/gnusoc.php:268 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos." - -#: ../../addon/gnusoc/gnusoc.php:271 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "Activar el protocolo de GNU-Social para este canal" - -#: ../../addon/gnusoc/gnusoc.php:275 -msgid "GNU-Social Protocol Settings" -msgstr "Ajustes del protocolo de GNU-Social" - -#: ../../addon/gnusoc/gnusoc.php:471 -msgid "Follow" -msgstr "Seguir" - -#: ../../addon/gnusoc/gnusoc.php:474 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "%1$s está siguiendo ahora a %2$s" - -#: ../../addon/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "Se han guardado los ajustes de Planets." - -#: ../../addon/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "Habilitar el plugin Planets" - -#: ../../addon/planets/planets.php:153 -msgid "Planets Settings" -msgstr "Ajustes de Planets" - -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "Valores predeterminados del sistema: " - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "IDs de las imágenes clipart preferidas" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "Lista de ids de imágenes de clipart preferidas. Se verán en primer lugar." - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "Términos de búsqueda predeterminados" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "Los términos de búsqueda predeterminados. Estos se mostrarán en segundo lugar." - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "Regresar después" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "Página para cargar después de la selección de imágenes." - -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 -#: ../../include/nav.php:119 -msgid "Edit Profile" -msgstr "Editar el perfil" - -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "Lista de perfiles" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "Orden de preferencia" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "Orden de clasificación de los identificadores de imágenes clipart preferidas." - -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "Las más nuevas en primer lugar" - -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "Tal como se ingresaron" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "Orden de los demás" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "Orden de clasificación de otros ids de imágenes clipart." - -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "Las más descargadas en primer lugar" - -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "Las más apreciadas en primer lugar" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "Mensaje de IDs preferido" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "Mensaje para mostrar sobre los resultados preferidos." - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "Subida por: " - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "Creada por: " - -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "Usar esta imagen" - -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "O seleccionar una imagen gratuita de OpenClipart.org: " - -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "Término de búsqueda" - -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "Error desconocido. Por favor, inténtelo otra vez." - -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "Se ha actualizado con éxito la foto de perfil." - -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "Indicador (\"flag\") de fotos de adultos" - -#: ../../addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada" - -#: ../../addon/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "Publicar en WordPress" - -#: ../../addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "Habilitar el plugin de publicación en WordPress" - -#: ../../addon/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "Nombre de usuario de WordPress" - -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "Contraseña de WordPress" - -#: ../../addon/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "URL de la API de WordPress" - -#: ../../addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "Habitualmente https://your-blog.tld/xmlrpc.php" - -#: ../../addon/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "Blog de WordPress" - -#: ../../addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco" - -#: ../../addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "Publicar en WordPress por defecto" - -#: ../../addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "Reenviar comentarios (requerido por el plugin hubzilla_wp)" - -#: ../../addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "Ajustes de publicación en WordPress" - -#: ../../addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." -msgstr "Se han guardado los ajustes de WordPress." - -#: ../../addon/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "Este complemento busca en los mensajes las palabras o texto que se especifican a continuación y contrae cualquier contenido que contenga esas palabras clave para que no se muestre en momentos inapropiados, como insinuaciones sexuales que pueden ser impropias en un entorno de trabajo. Es una muestra de educación y se recomienda marcar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como un filtro de contenido de propósito general." - -#: ../../addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "Habilitar filtro de contenido" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" -msgstr "Lista separada por comas de palabras clave para ocultar" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "Palabra, /expresión regular/, lang=xx, lang!=xx" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "No es seguro para ajustes de trabajo" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "Filtro de contenido de propósito general" - -#: ../../addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "Se han guardado los ajustes de NSFW." - -#: ../../addon/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "Posible contenido para adultos" - -#: ../../addon/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "ver - %s" - -#: ../../addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "Publicar en Insanejournal" - -#: ../../addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "Habilitar el plugin de publicación en InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "Nombre de usuario en InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "Contraseña en InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "Publicar por defecto en InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "Ajustes de publicación en InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "Se han guardado los ajustes de InsaneJournal." - -#: ../../addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "Publicar en Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "Activar el plugin de publicación en Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "Nombre de usuario en Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "Contraseña en Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "Publicar en Dreamwidth de forma predeterminada" - -#: ../../addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "Ajustes de publicación en Dreamwidth" - -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "Nuevo registro" - -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "Mensaje enviado a %s. Registro de una nueva cuenta: %s" - -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "Estadísticas de directorio de Hubzilla" - -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "Número total de servidores" - -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "Servidores (hubs) de Hubzilla" - -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "Servidores (hubs) de Friendica" - -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "Servidores (pods) de Diaspora" - -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "Canales de Hubzilla" - -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "Canales de Friendica" - -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "Canales de Diaspora" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "De 35 años de edad en adelante" - -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "De 34 o menos años de edad" - -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "Promedio de edad" - -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "Salas de chat conocidas" - -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "Etiquetas conocidas" - -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refieren únicamente a aquellas de las que **este directorio** es consciente, y no a todos los conocidos en la red. Esto también es aplicable a las salas de chat," - -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "Su webbie: " - -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "Tamaño de fuente (px): " - -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "Enlace: " - -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "Múestrenos su agrado en Hubzilla" - -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "Incorporado: " - -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "Se han importado las fotos" - -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "Importar un álbum de fotos de Redmatrix" - -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "Esto importará todos sus álbumes de fotos de Redmatrix a este canal." - -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" -msgstr "URL base del servidor Redmatrix" - -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" -msgstr "Nombre de inicio de sesión en Redmatrix" - -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" -msgstr "Contraseña de inicio de sesión en Redmatrix" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "Importar solo este álbum" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "Dejar en blanco para importar todos los álbumes" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "Límite máximo de importación" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "0 o en blanco para importar todos los disponibles" - -#: ../../addon/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "Canales para conexión automática" - -#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 -msgid "Comma separated list" -msgstr "Lista separada por comas" - -#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Canales populares" - -#: ../../addon/irc/irc.php:53 -msgid "IRC Settings" -msgstr "Ajustes de IRC" - -#: ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Se han guardado los ajustes de IRC." - -#: ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Sala de chat IRC" - -#: ../../addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "Publicar en LiveJournal" - -#: ../../addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "Habilitar el plugin de publicación en LiveJournal" - -#: ../../addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "Nombre de usuario en LiveJournal" - -#: ../../addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "Contraseña en LiveJournal" - -#: ../../addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "Publicar en LiveJournal por defecto" - -#: ../../addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "Ajustes de publicación en LiveJournal" - -#: ../../addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "Se han guardado los ajustes de LiveJournal." - -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema al iniciar sesión con el OpenID que proporcionó. Compruebe si el ID está correctamente escrito." - -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "El mensaje de error ha sido: " - -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "Nombre" - -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "Apellido" - -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 -msgid "Nickname" -msgstr "Alias" - -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "Nombre completo" - -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "Foto del perfil 16px" - -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "Foto del perfil 32px" - -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "Foto del perfil 48px" - -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "Foto del perfil 64px" - -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "Foto del perfil 80px" - -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "Foto del perfil 128px" - -#: ../../addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "Zona horaria" - -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "Año de nacimiento" - -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "Mes de nacimiento" - -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "Día de nacimiento" - -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." - -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 -msgid "Login failed." -msgstr "El acceso ha fallado." - -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 -msgid "Male" -msgstr "Hombre" - -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 -msgid "Female" -msgstr "Mujer" - -#: ../../addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "Bienvenido." - -#: ../../addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "Ah, joder..." - -#: ../../addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "No lo menciones." - -#: ../../addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "<sonrojo>" - -#: ../../addon/startpage/startpage.php:109 -msgid "Page to load after login" -msgstr "Página para cargar tras el inicio de sesión" - -#: ../../addon/startpage/startpage.php:109 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "Ejemplos: "aplicaciones", "mi red?f=&gid=37" (grupo de canales), "mi canal" or "notificaciones del sistema" (dejar en blanco para la página de mi red por defecto (grid)." - -#: ../../addon/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "Ajustes de startpage" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "una bofetada humillante" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "ha abofeteado de forma humillante a" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "un polvo" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "ha dejado exhausto/a a" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "una patente" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "ha patentado a" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "un abrazo" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "ha abrazado a" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "un asesinato" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "ha asesinado a" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "una alabanza" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "ha elogiado a" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "un beso" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "ha besado a" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "una tentación" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "ha tentado a" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "un levantamiento de cejas" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "ha levantado las cejas a" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "un insulto" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "ha insultado a" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "un elogio" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "ha elogiado a" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "una indecisión" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "estaba dudoso de" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "una comida" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "ha comido" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "una sonrisa aduladora" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "ha sonreído y adulado a" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "una duda" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "ha dudado de" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "una mirada furiosa" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "ha mirado con furia" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "una mierda" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "ha mandado a la mierda a" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "un golpe" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "ha golpeado a" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "una declaración de amor eterno" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "ha declarado amor eterno a" - -#: ../../addon/diaspora/diaspora.php:781 -msgid "Diaspora Protocol Settings updated." -msgstr "Los ajustes del protocolo de Diaspora se han actualizado." - -#: ../../addon/diaspora/diaspora.php:800 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos." - -#: ../../addon/diaspora/diaspora.php:803 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activar el protocolo de Diaspora para este canal" - -#: ../../addon/diaspora/diaspora.php:807 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas" - -#: ../../addon/diaspora/diaspora.php:811 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " - -#: ../../addon/diaspora/diaspora.php:815 -msgid "" -"Sign and forward posts and comments with no existing Diaspora signature" -msgstr "Firmar y enviar entradas y comentarios sin firma de Diaspora" - -#: ../../addon/diaspora/diaspora.php:820 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" - -#: ../../addon/diaspora/diaspora.php:825 -msgid "Diaspora Protocol Settings" -msgstr "Ajustes del protocolo de Diaspora" - -#: ../../addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero de importación." - -#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 -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." - -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "Su cuenta en %s caducará en unos pocos días." - -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "Su cuenta de prueba de $Productname está a punto de caducar." - -#: ../../addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "Habilitar Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "Ajustes de Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "Se han guardado los ajustes de Rainbowtag." - -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "Mostrar los límites de subida" - -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "Tamaño máximo configurado por Hubzilla: " - -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "PHP upload_max_filesize: " - -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "PHP post_max_size (debe ser mayor que upload_max_filesize): " - -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "imagen del perfil general" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "patrón geométrico aleatorio" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "cara de monstruo" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "cara generada por ordenador" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "cara de estilo retro arcade" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "Foto del perfil por defecto del hub" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "Información" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "El addon Libravatar también está instalado. Por favor deshabilite el addon de Libravatar o este addon de Gravatar.
El addon de Libravatar volverá a Gravatar si no se encuentra nada en Libravatar." - -#: ../../addon/gravatar/gravatar.php:150 -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "Guardar ajustes" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "Imagen del avatar por defecto" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "Selecciona la imagen de avatar predeterminada si no se encontró ninguna en Gravatar. Ver README" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "Valoración de las imágenes" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "Seleccione la valoración adecuada del avatar para su sitio. Ver README" - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "Se han actualizado los ajustes de Gravatar." - -#: ../../addon/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "Importar del depósito de ficheros de Hubzilla" - -#: ../../addon/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "Esto importará todos sus ficheros en la nube desde otro servidor." - -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "URL base del servidor Hubzilla" - -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "Modificado desde la fecha yyyy-mm-dd" - -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "Modificado hasta la fecha yyyy-mm-dd" - -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Visitantes recientes del canal o perfil" - -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "El plugin o complemento no se ha configurado." - -#: ../../addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "Por favor, revise los ajustes de Visage en %s" - -#: ../../addon/visage/visage.php:99 -msgid "your feature settings page" -msgstr "su página de ajustes de las funcionalidades" - -#: ../../addon/visage/visage.php:112 -msgid "No entries." -msgstr "No hay entradas." - -#: ../../addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "Habilitar el registro de visitantes de Visage" - -#: ../../addon/visage/visage.php:170 -msgid "Visage Settings" -msgstr "Ajustes de Visage" - -#: ../../addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "Se han actualizado los ajustes de Nsabait" - -#: ../../addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "Habilitar el plugin NSAbait" - -#: ../../addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "Ajustes de NSAbait" - -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "Enviar un correo electrónico de prueba" - -#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "No se han encontrado destinatarios." - -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "El correo electrónico ha sido enviado." - -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "No se pudo enviar el correo." - -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "Prueba de correo" - -#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "Asunto del mensaje" - -#: ../../addon/mdpost/mdpost.php:41 -msgid "Use markdown for editing posts" -msgstr "Usar markdown para editar las entradas" - -#: ../../addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "Ver más grande" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" -msgstr "URL del servidor de mosaicos de imágenes " - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of public tile servers" -msgstr "Una lista de servidores públicos de mosaicos de imágenes" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "URL del servidor nominatim (geocodificación inversa)" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" -msgstr "Una lista de servidores nominatim" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" -msgstr "Zoom predeterminado" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "El nivel de zoom predeterminado. (1: mundo, 18: el más alto, también depende del servidor del mosaico de imágenes)" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" -msgstr "Incluir un marcador en el mapa" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." -msgstr "Incluir un marcador en el mapa." - -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "texto a incluir en todos los mensajes salientes de este sitio" - -#: ../../addon/fuzzloc/fuzzloc.php:148 -msgid "Fuzzloc Settings updated." -msgstr "Los ajustes de Fuzzloc se han actualizado." - -#: ../../addon/fuzzloc/fuzzloc.php:175 -msgid "" -"Fuzzloc allows you to blur your precise location if your channel uses " -"browser location mapping." -msgstr "Fuzzloc le permite desdibujar su ubicación precisa si su canal utiliza la asignación de ubicación del navegador." - -#: ../../addon/fuzzloc/fuzzloc.php:178 -msgid "Enable Fuzzloc Plugin" -msgstr "Habilitar el plugin Fuzzloc" - -#: ../../addon/fuzzloc/fuzzloc.php:182 -msgid "Minimum offset in meters" -msgstr "Offset mínimo en metros" - -#: ../../addon/fuzzloc/fuzzloc.php:186 -msgid "Maximum offset in meters" -msgstr "Offset máximo en metros" - -#: ../../addon/fuzzloc/fuzzloc.php:191 -msgid "Fuzzloc Settings" -msgstr "Ajustes de Fuzzloc" - -#: ../../addon/rtof/rtof.php:45 -msgid "Post to Friendica" -msgstr "Publicar en Friendica" - -#: ../../addon/rtof/rtof.php:62 -msgid "rtof Settings saved." -msgstr "Se han guardado los ajustes de rtof" - -#: ../../addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" -msgstr "Permitir publicar en Friendica" - -#: ../../addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" -msgstr "Enviar entradas públicas a Friendica por defecto" - -#: ../../addon/rtof/rtof.php:89 -msgid "Friendica API Path" -msgstr "Ruta a la API de Friendica" - -#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 -msgid "https://{sitename}/api" -msgstr "https://{sitename}/api" - -#: ../../addon/rtof/rtof.php:93 -msgid "Friendica login name" -msgstr "Nombre de inicio de sesión en Friendica" - -#: ../../addon/rtof/rtof.php:97 -msgid "Friendica password" -msgstr "Contraseña de Friendica" - -#: ../../addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" -msgstr "Ajustes de publicación de Hubzilla a Friendica" - -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 -#: ../../include/channel.php:1567 -msgid "Status:" -msgstr "Estado:" - -#: ../../addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "Habilitar complemento" - -#: ../../addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "Ocultar el widget de chat Jappixmini en la interfaz web" - -#: ../../addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "Nombre de usuario en Jabber" - -#: ../../addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "Servidor de Jabber" - -#: ../../addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "URL del host BOSH de Jabber" - -#: ../../addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "Contraseña en Jabber" - -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "Cifrar la contraseña de Jabber con la contraseña de Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "Contraseña de Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "Aprobar automáticamente las solicitudes de suscripción de los contactos de Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "Purgar la lista interna de las direcciones de contactos de jabber" - -#: ../../addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "Ayuda para los ajustes" - -#: ../../addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "Ajustes de Jappix Mini" - -#: ../../addon/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "Actualmente bloqueado" - -#: ../../addon/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "No hay canales bloqueados actualmente" - -#: ../../addon/superblock/superblock.php:120 -msgid "Superblock Settings" -msgstr "Ajustes de Superblock" - -#: ../../addon/superblock/superblock.php:345 -msgid "Block Completely" -msgstr "Bloquear completamente" - -#: ../../addon/superblock/superblock.php:394 -msgid "superblock settings updated" -msgstr "se han actualizado los ajustes de superblock" - -#: ../../addon/nofed/nofed.php:42 -msgid "Federate" -msgstr "Federar" - -#: ../../addon/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "Se han guardado los ajustes de nofed." - -#: ../../addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "Permitir alternancia de federación" - -#: ../../addon/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "Federar las publicaciones por defecto" - -#: ../../addon/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "Ajustes de NoFed" - -#: ../../addon/redred/redred.php:45 -msgid "Post to Red" -msgstr "Enviar a Red" - -#: ../../addon/redred/redred.php:60 -msgid "Channel is required." -msgstr "Se requiere un canal." - -#: ../../addon/redred/redred.php:76 -msgid "redred Settings saved." -msgstr "Se han salvado los ajustes de redred." - -#: ../../addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" -msgstr "Permitir la publicación en otro canal de Hubzilla" - -#: ../../addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" -msgstr "Enviar entradas públicas al canal Hubzilla por defecto" - -#: ../../addon/redred/redred.php:103 -msgid "Hubzilla API Path" -msgstr "Ruta de la API de Hubzilla" - -#: ../../addon/redred/redred.php:107 -msgid "Hubzilla login name" -msgstr "Nombre de inicio de sesión en Hubzilla" - -#: ../../addon/redred/redred.php:111 -msgid "Hubzilla channel name" -msgstr "Nombre del canal de Hubzilla" - -#: ../../addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" -msgstr "Ajustes de Hubzilla Crosspost" - -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "Directorio de los ficheros de informe" - -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "Directorio para almacenar los informes rotados" - -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "Tamaño del fichero de informe en bytes antes de rotarlo" - -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "Número de ficheros de informe que se deben retener" - -#: ../../addon/frphotos/frphotos.php:92 -msgid "Friendica Photo Album Import" -msgstr "Importar un álbum de fotos de Friendica" - -#: ../../addon/frphotos/frphotos.php:93 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "Esto importará todos sus álbumes de fotos de Friendica a este canal de Hubzilla." - -#: ../../addon/frphotos/frphotos.php:94 -msgid "Friendica Server base URL" -msgstr "URL base del servidor de Friendica" - -#: ../../addon/frphotos/frphotos.php:95 -msgid "Friendica Login Username" -msgstr "Nombre de inicio de sesión en Friendica" - -#: ../../addon/frphotos/frphotos.php:96 -msgid "Friendica Login Password" -msgstr "Contraseña de inicio de sesión en Friendica" - -#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 -#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: ../../addon/pubcrawl/pubcrawl.php:1053 -msgid "ActivityPub Protocol Settings updated." -msgstr "Se han actualizado los ajustes del protocolo ActivityPub." - -#: ../../addon/pubcrawl/pubcrawl.php:1062 -msgid "" -"The ActivityPub protocol does not support location independence. Connections" -" you make within that network may be unreachable from alternate channel " -"locations." -msgstr "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos." - -#: ../../addon/pubcrawl/pubcrawl.php:1065 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "Activar el protocolo ActivityPub para este canal" - -#: ../../addon/pubcrawl/pubcrawl.php:1068 -msgid "Send multi-media HTML articles" -msgstr "Enviar artículos multimedia en HTML" - -#: ../../addon/pubcrawl/pubcrawl.php:1068 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "No soportado por algunos servicios de microblog como Mastodon" - -#: ../../addon/pubcrawl/pubcrawl.php:1072 -msgid "ActivityPub Protocol Settings" -msgstr "Ajustes del protocolo ActivityPub" - -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "Servidores y recursos del proyecto" - -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "Creador del proyecto y director técnico" - -#: ../../addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "Administrador, desarrollador, administrador del directorio, trabajador de apoyo" - -#: ../../addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "Y los cientos de personas y organizaciones más que ayudaron a hacer posible Hubzilla." - -#: ../../addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "Los proyectos Redmatrix / Hubzilla están proporcionados principalmente por voluntarios que les prestan su tiempo y experiencia, pagando a menudo de su bolsillo por los servicios que comparten con otros." - -#: ../../addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "No hay financiación corporativa ni publicidad y no recogemos ni vendemos su información personal. (De hecho, no tenemos control sobre sus datos privados. Usted lo tiene.)" - -#: ../../addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and" -" privacy." -msgstr "Ayude apoyando nuestro trabajo pionero en la descentralización, la identidad web, y la privacidad." - -#: ../../addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "Sus donaciones mantienen servidores y servicios en ejecución y también nos ayudan a proporcionar nuevas características innovadoras y a mantener el desarrollo de forma continuada." - -#: ../../addon/donate/donate.php:60 -msgid "Donate" -msgstr "Donar" - -#: ../../addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "Elija un proyecto, desarrollador, o \"hub\" público para apoyar con una donación de una sola vez" - -#: ../../addon/donate/donate.php:63 -msgid "Donate Now" -msgstr "Donar ahora" - -#: ../../addon/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project " -"only)" -msgstr "O convertirse en un patrocinador del proyecto (sólo del proyecto Hubzilla)" - -#: ../../addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "Por favor, indique si desea que su nombre de pila o el nombre completo (o nada) aparezca en nuestra lista de patrocinadores" - -#: ../../addon/donate/donate.php:66 -msgid "Sponsor" -msgstr "Patrocinador" - -#: ../../addon/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "Agradecimiento especial a: " - -#: ../../addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "Se trata de un diccionario bastante amplio y completo de acordes de guitarra que enumerará la mayor parte de las formas disponibles para tocar un acorde determinado, partiendo de la base del diapasón hasta unos pocos trastes más allá del traste doce (más allá del cual todo se repite). Se proporcionan un par de afinaciones no convencionales para provecho de los guitarristas con \"slides\" ( barras de acero), etc." - -#: ../../addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "Los nombres de acordes comienzan con una nota fundamental (La-Sol) y pueden incluir sostenidos (#) y bemoles (b). Este software analizará la mayor parte de las convenciones de nomenclatura estándar como maj, min, tenue, SUS (2 ó 4), aug, con la repetición de elementos opcionales." - -#: ../../addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "Ejemplos válidos son A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." - -#: ../../addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "Acordes de guitarra" - -#: ../../addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "El diccionario completo de acordes en línea" - -#: ../../addon/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "Afinación" - -#: ../../addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "Nombre del acorde, por ejemplo: Em7" - -#: ../../addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "Mostrar para tocadores zurdos" - -#: ../../addon/chords/chords.php:33 -msgid "Quick Reference" -msgstr "Referencia rápida" - -#: ../../addon/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "Publicar en Libertree" - -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "Habilitar el plugin de publicación en Libertree" - -#: ../../addon/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "Token de la API de Libertree" - -#: ../../addon/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "URL del servidor de Libertree" - -#: ../../addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "Publicar en Libertree por defecto" - -#: ../../addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "Ajustes de publicación en Libertree" - -#: ../../addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "Se han guardado los ajustes de Libertree." - -#: ../../addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "¡Apoyar esto en Flattr!" - -#: ../../addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "Los ajustes del widget Flattr han sido actualizados." - -#: ../../addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "Usuario en Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "URL de la Cosa para apoyar en flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "Si está vacío, se usa la URL del canal" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "Título de la Cosa para apoyar en flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "Si está vacío, se usará \"nombre del canal en Hubzilla\"" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "Botón de flattr estático o dinámico" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "estático" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "dinámico" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "Alineamiento del widget" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "izquierda" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "derecha" - -#: ../../addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "Habilitar el widget Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "Ajustes del widget Flattr" - -#: ../../addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" -msgstr "Publicar en GNU social" - -#: ../../addon/statusnet/statusnet.php:195 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Por favor, contacte con el administrador de su sitio.
La URL de la API proporcionada no es válida." - -#: ../../addon/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "No podemos conectar con la API de GNU social con la ruta que ha proporcionado." - -#: ../../addon/statusnet/statusnet.php:266 -msgid "GNU social settings updated." -msgstr "Se han guardado los ajustes de GNU social." - -#: ../../addon/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" -msgstr "OAuthKeys globales de GNU social disponibles" - -#: ../../addon/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." -msgstr "Existen pares de claves OAuth preconfiguradas disponibles para algunos servidores libres de GNU social. Si está usando uno de ellos, utilice estas credenciales.
Si no se siente libre de conectarse a cualquier otra instancia de GNU social (vea a continuación)." - -#: ../../addon/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" -msgstr "Proporcione sus propias credenciales de OAuth" - -#: ../../addon/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as" -" an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." -msgstr "No se ha encontrado un par de claves de consumidor para GNU social. Registre su cuenta de Hubzilla como un cliente de escritorio en su cuenta social GNU, copie el par de claves de consumidor aquí y escriba la dirección raíz de la API.
Antes de registrar su propio par de claves OAuth, pregunte al administrador si ya hay un par de claves para esta instalación de Hubzilla en su instalación GNU social favorita." - -#: ../../addon/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" - -#: ../../addon/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Base API Path" -msgstr "Ruta base de la API" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Remember the trailing /" -msgstr "Recuerde la barra /" - -#: ../../addon/statusnet/statusnet.php:345 -msgid "GNU social application name" -msgstr "Nombre de la aplicación de GNU social" - -#: ../../addon/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." -msgstr "Para conectarse a su cuenta de GNU social, haga clic en el botón de abajo para obtener un código de seguridad de GNU social que tiene que copiar en el cuadro de entrada a continuación y envíe el formulario. Solo sus entradas públicas aparecerán en GNU social." - -#: ../../addon/statusnet/statusnet.php:370 -msgid "Log in with GNU social" -msgstr "Inicio de sesión en GNU social" - -#: ../../addon/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" -msgstr "Copiar aquí el código de seguridad de GNU social" - -#: ../../addon/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" -msgstr "Cancelar el proceso de conexión" - -#: ../../addon/statusnet/statusnet.php:385 -msgid "Current GNU social API is" -msgstr "La API actual de GNU social es " - -#: ../../addon/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" -msgstr "Cancelar la conexión de GNU social" - -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 -msgid "Currently connected to: " -msgstr "Actualmente está conectado a: " - -#: ../../addon/statusnet/statusnet.php:406 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?) el vínculo potencialmente incluido en las entradas públicas retransmitidas a GNU social llevará al visitante a una página en blanco que le informará de que el acceso a su perfil ha sido restringido." - -#: ../../addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "Habilitar la publicación en GNU social" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "Si está habilitado, sus entradas públicas se pueden publicar en la cuenta GNU-social asociada" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" -msgstr "Publicar en GNU social por defecto" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada" - -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 -msgid "Clear OAuth configuration" -msgstr "Limpiar la configuración de OAuth" - -#: ../../addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" -msgstr "Ajustes de publicación en GNU social" - -#: ../../addon/statusnet/statusnet.php:892 -msgid "API URL" -msgstr "URL de la API" - -#: ../../addon/statusnet/statusnet.php:895 -msgid "Application name" -msgstr "Nombre de la aplicación" - -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "Código QR" - -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "Generador QR" - -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "Escribir algún texto" - -#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 -msgid "Invalid game." -msgstr "Juego no válido." - -#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 -msgid "You are not a player in this game." -msgstr "Usted no participa en este juego." - -#: ../../addon/chess/chess.php:415 -msgid "You must be a local channel to create a game." -msgstr "Debe ser un canal local para crear un juego" - -#: ../../addon/chess/chess.php:433 -msgid "You must select one opponent that is not yourself." -msgstr "Debe seleccionar un oponente que no sea usted mismo." - -#: ../../addon/chess/chess.php:444 -msgid "Random color chosen." -msgstr "Elegido un color aleatorio." - -#: ../../addon/chess/chess.php:452 -msgid "Error creating new game." -msgstr "Error al crear un nuevo juego." - -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." - -#: ../../addon/chess/chess.php:500 -msgid "You must select a local channel /chess/channelname" -msgstr "Debe seleccionar un canal local /chess/nombredelcanal" - -#: ../../addon/chess/chess.php:1066 -msgid "Enable notifications" -msgstr "Habilitar notificaciones" - -#: ../../addon/twitter/twitter.php:99 -msgid "Post to Twitter" -msgstr "Publicar en Twitter" - -#: ../../addon/twitter/twitter.php:155 -msgid "Twitter settings updated." -msgstr "Se han actualizado los ajustes de Twitter." - -#: ../../addon/twitter/twitter.php:184 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio." - -#: ../../addon/twitter/twitter.php:206 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input" -" box below and submit the form. Only your public posts will" -" be posted to Twitter." -msgstr "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter." - -#: ../../addon/twitter/twitter.php:208 -msgid "Log in with Twitter" -msgstr "Iniciar sesión en Twitter" - -#: ../../addon/twitter/twitter.php:211 -msgid "Copy the PIN from Twitter here" -msgstr "Copiar aquí el PIN de Twitter" - -#: ../../addon/twitter/twitter.php:238 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido." - -#: ../../addon/twitter/twitter.php:243 -msgid "Allow posting to Twitter" -msgstr "Permitir la publicación en Twitter" - -#: ../../addon/twitter/twitter.php:243 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada" - -#: ../../addon/twitter/twitter.php:247 -msgid "Twitter post length" -msgstr "Longitud del mensaje en Twitter" - -#: ../../addon/twitter/twitter.php:247 -msgid "Maximum tweet length" -msgstr "Longitud máxima del tweet" - -#: ../../addon/twitter/twitter.php:252 -msgid "Send public postings to Twitter by default" -msgstr "Enviar mensajes públicos a Twitter de forma predeterminada" - -#: ../../addon/twitter/twitter.php:252 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada." - -#: ../../addon/twitter/twitter.php:270 -msgid "Twitter Post Settings" -msgstr "Ajustes de publicación en Twitter" - -#: ../../addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" -msgstr "Desactivar la funcionalidad" - -#: ../../addon/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." -msgstr "Ocultar el botón y mostrar los smilies directamente." - -#: ../../addon/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" -msgstr "Ajustes de Smileybutton" - -#: ../../addon/cart/myshop.php:138 -msgid "Order Not Found" -msgstr "No se ha encontrado el pedido" - -#: ../../addon/cart/cart.php:810 -msgid "Order cannot be checked out." -msgstr "No se puede verificar el pedido." - -#: ../../addon/cart/cart.php:1073 -msgid "Enable Shopping Cart" -msgstr "Habilitar el carro de la compra" - -#: ../../addon/cart/cart.php:1080 -msgid "Enable Test Catalog" -msgstr "Habilitar el catálogo de pruebas" - -#: ../../addon/cart/cart.php:1088 -msgid "Enable Manual Payments" -msgstr "Permitir pagos manuales" - -#: ../../addon/cart/cart.php:1103 -msgid "Base Cart Settings" -msgstr "Configuración del carro base" - -#: ../../addon/cart/cart.php:1151 -msgid "Add Item" -msgstr "Agregar un elemento" - -#: ../../addon/cart/cart.php:1165 -msgid "Call cart_post_" -msgstr "Llamar a cart_post_" - -#: ../../addon/cart/cart.php:1195 -msgid "Cart Not Enabled (profile: " -msgstr "El carro no está habilitado (perfil: " - -#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 -msgid "Order not found." -msgstr "El pedido no se ha encontrado." - -#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 -msgid "No Order Found" -msgstr "No se ha encontrado ningún pedido" - -#: ../../addon/cart/cart.php:1270 -msgid "call: " -msgstr "llamar: " - -#: ../../addon/cart/cart.php:1273 -msgid "An unknown error has occurred Please start again." -msgstr "Se ha producido un error desconocido Vuelva a empezar." - -#: ../../addon/cart/cart.php:1414 -msgid "Invalid Payment Type. Please start again." -msgstr "Tipo de pago no válido. Por favor, empiece de nuevo." - -#: ../../addon/cart/cart.php:1421 -msgid "Order not found" -msgstr "El pedido no se ha encontrado" - -#: ../../addon/cart/manual_payments.php:9 -msgid "Error: order mismatch. Please try again." -msgstr "Error: desajuste de pedidos. Por favor, inténtelo de nuevo." - -#: ../../addon/cart/manual_payments.php:29 -msgid "Manual payments are not enabled." -msgstr "Los pagos manuales no están habilitados." - -#: ../../addon/cart/manual_payments.php:44 -msgid "Finished" -msgstr "Terminado" - -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Este sitio es rastreado mediante la herramienta analítica Piwik." - -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Si usted no quiere que sus visitas se registren de esta manera puede establecer una cookie para evitar que Piwik rastree otras visitas del sitio (opt-out)." - -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "URL base de Piwik" - -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "Ruta absoluta a la instalación de Piwik. (Sin protocolo (http/s), con barra diagonal)" - -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "ID del sitio" - -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "Mostrar el enlace de la cookie opt-out?" - -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "Rastreo asíncrono" - -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "Habilitar la interfaz JavaScript de seguimiento de errores" - -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "Esta funcionalidad requiere Piwik >= 2.2.0" - -#: ../../addon/tour/tour.php:76 -msgid "Edit your profile and change settings." -msgstr "Editar su perfil y cambiar los ajustes." - -#: ../../addon/tour/tour.php:77 -msgid "Click here to see activity from your connections." -msgstr "Pulsar aquí para ver la actividad de sus conexiones." - -#: ../../addon/tour/tour.php:78 -msgid "Click here to see your channel home." -msgstr "Pulsar aquí para ver la página de inicio de su canal." - -#: ../../addon/tour/tour.php:79 -msgid "You can access your private messages from here." -msgstr "Puede acceder a sus mensajes privados desde aquí." - -#: ../../addon/tour/tour.php:80 -msgid "Create new events here." -msgstr "Crear nuevos eventos aquí." - -#: ../../addon/tour/tour.php:81 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "Puede aceptar nuevas conexiones y cambiar permisos para las existentes aquí. También puede, por ejemplo, crear grupos de contactos." - -#: ../../addon/tour/tour.php:82 -msgid "System notifications will arrive here" -msgstr "Las notificaciones del sistema llegarán aquí" - -#: ../../addon/tour/tour.php:83 -msgid "Search for content and users" -msgstr "Buscar contenido y usuarios" - -#: ../../addon/tour/tour.php:84 -msgid "Browse for new contacts" -msgstr "Buscar nuevos contactos" - -#: ../../addon/tour/tour.php:85 -msgid "Launch installed apps" -msgstr "Iniciar aplicaciones instaladas" - -#: ../../addon/tour/tour.php:86 -msgid "Looking for help? Click here." -msgstr "¿Busca ayuda? Pulse aquí." - -#: ../../addon/tour/tour.php:87 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "Se han producido nuevos eventos en su red. ¡Haga clic aquí para ver lo que ha sucedido!" - -#: ../../addon/tour/tour.php:88 -msgid "You have received a new private message. Click here to see from who!" -msgstr "Ha recibido un nuevo mensaje privado. Haga clic aquí para ver de quién!" - -#: ../../addon/tour/tour.php:89 -msgid "There are events this week. Click here too see which!" -msgstr "Hay eventos esta semana. Haga clic aquí para ver cuáles!" - -#: ../../addon/tour/tour.php:90 -msgid "You have received a new introduction. Click here to see who!" -msgstr "Ha recibido una nueva solicitud de conexión. ¡Pulse aquí para ver de quién!" - -#: ../../addon/tour/tour.php:91 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "Hay una nueva notificación del sistema. ¡Haga clic aquí para ver lo que ha sucedido!" - -#: ../../addon/tour/tour.php:94 -msgid "Click here to share text, images, videos and sound." -msgstr "Haga clic aquí para compartir texto, imágenes, vídeos y sonido." - -#: ../../addon/tour/tour.php:95 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "Puede escribir un título opcional para su actualización (bueno para los mensajes largos)." - -#: ../../addon/tour/tour.php:96 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "Al ingresar algunos temas aquí, es más fácil encontrar su publicación más tarde." - -#: ../../addon/tour/tour.php:97 -msgid "Share photos, links, location, etc." -msgstr "Compartir fotos, enlaces, ubicación, etc." - -#: ../../addon/tour/tour.php:98 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "¿Solo quieres compartir contenido durante un tiempo? Haga que expire en una fecha determinada." - -#: ../../addon/tour/tour.php:99 -msgid "You can password protect content." -msgstr "Puede proteger contenido con una contraseña." - -#: ../../addon/tour/tour.php:100 -msgid "Choose who you share with." -msgstr "Elegir con quién compartir." - -#: ../../addon/tour/tour.php:102 -msgid "Click here when you are done." -msgstr "Haga clic aquí cuando haya terminado." - -#: ../../addon/tour/tour.php:105 -msgid "Adjust from which channels posts should be displayed." -msgstr "Ajustar de qué canales se deben mostrar las publicaciones." - -#: ../../addon/tour/tour.php:106 -msgid "Only show posts from channels in the specified privacy group." -msgstr "Mostrar solo las entradas de los canales de un grupo específico de canales." - -#: ../../addon/tour/tour.php:110 -msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "Encuentre fácilmente entradas que contengan etiquetas (palabras clave precedidas del símbolo \"#\")." - -#: ../../addon/tour/tour.php:111 -msgid "Easily find posts in given category." -msgstr "Encuentre fácilmente las publicaciones en una categoría dada." - -#: ../../addon/tour/tour.php:112 -msgid "Easily find posts by date." -msgstr "Encuentre fácilmente entradas por fechas." - -#: ../../addon/tour/tour.php:113 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we" -" think you might find interesting." -msgstr "Se sugiere a los usuarios que se han ofrecido voluntariamente que se muestren como sugerencias, y que creemos que podrían resultar interesantes." - -#: ../../addon/tour/tour.php:114 -msgid "Here you see channels you have connected to." -msgstr "Aquí puede ver los canales a los que está conectado." - -#: ../../addon/tour/tour.php:115 -msgid "Save your search so you can repeat it at a later date." -msgstr "Guarde su búsqueda para poder repetirla en una fecha posterior." - -#: ../../addon/tour/tour.php:118 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It" -" is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "Si ve este icono puede estar seguro de que el remitente es quien dice ser. Es normal que no siempre sea posible verificar el remitente, por lo que el icono faltará en ocasiones. Por lo general, no hay necesidad de preocuparse por eso." - -#: ../../addon/tour/tour.php:119 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!" - -#: ../../addon/tour/tour.php:126 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

También puede avanzar pulsando la tecla de retorno" - -#: ../../addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "Compartir identidad extendida" - -#: ../../addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de $Projectname." - -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Juego en 3D Tic-Tac-Toe" - -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game" -msgstr "Nuevo juego" - -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "Nuevo juego con hándicap" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "El juego en 3D tic-tac-toe es como el juego tradicional, excepto que se juega en varios niveles simultáneamente." - -#: ../../addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "En este caso hay tres niveles. Usted gana al conseguir tres en una fila en cualquier nivel, así como arriba, abajo, y en diagonal a través de los diferentes niveles." - -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "El juego con hándicap deshabilita la posición central en el nivel medio porque el jugador que reclama este cuadrado a menudo tiene una ventaja injusta." - -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "Usted va primero..." - -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "Yo voy primero esta vez..." - -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "¡Usted ha ganado!" - -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "¡El juego del \"gato\"!" - -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "¡He ganado yo!" - -#: ../../addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "Mensaje para mostrar en todas las páginas de este servidor" - -#: ../../addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" -msgstr "Ajustes del encabezado de página" - -#: ../../addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." -msgstr "Se han guardado los ajustes del encabezado de página." - -#: ../../addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "Autenticación automática solo en los sitios de sus amigos" - -#: ../../addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "De forma predeterminada, se autenticará automáticamente en cualquier parte de la red" - -#: ../../addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "Ajustes de Authchoose" - -#: ../../addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "Se han actualizado los ajustes de Atuhchoose." - -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "Solo/a" - -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "ebrio/a" - -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "caliente" - -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "drogado/a" - -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "jodido/a" - -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "hecho/a polvo" - -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "loco/a" - -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "ofendido/a" - -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "soñoliento/a" - -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "gruñón/ona" - -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "superior" - -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "semiconsciente" - -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "enamorado/a" - -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "lujurioso/a" - -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "desnudo/a" - -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "apestoso/a" - -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "sudoroso/a" - -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "exánime" - -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "victorioso/a" - -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "derrotado/a" - -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "envidioso/a" - -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "celoso/a" - -#: ../../addon/xmpp/xmpp.php:31 -msgid "XMPP settings updated." -msgstr "Se han actualizado los ajustes de XMPP." - -#: ../../addon/xmpp/xmpp.php:53 -msgid "Enable Chat" -msgstr "Habilitar el chat" - -#: ../../addon/xmpp/xmpp.php:58 -msgid "Individual credentials" -msgstr "Credenciales individuales" - -#: ../../addon/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" -msgstr "Servidor BOSH de Jabber" - -#: ../../addon/xmpp/xmpp.php:69 -msgid "XMPP Settings" -msgstr "Ajustes de XMPP" - -#: ../../addon/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" -msgstr "BOSH de Jabber" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "Use central userbase" -msgstr "Usar la base de usuarios central" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "Si está habilitado, los miembros se conectarán automáticamente a un servidor ejabberd que debe instalarse en esta máquina con credenciales sincronizadas a través del script \"auth ejabberd.php\"." - -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "¿Quién me ha puesto \"Me gusta\"?" - -#: ../../addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "Ahora está autenticado en pump.io." - -#: ../../addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "Volver a la página de configuración destacada" - -#: ../../addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "Publicar en Pump.io" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "Nombre del servidor de Pump.io" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "Sin \"http://\" or \"https://\"" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "Nombre de usuario en Pump.io" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "Sin el nombre del servidor" - -#: ../../addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "No está autenticado en pump.io" - -#: ../../addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "(Re-)Autenticar su conexión en pump.io" - -#: ../../addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "Habilitar el plugin de publicación en pump.io" - -#: ../../addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "Publicar por defecto en pump.io" - -#: ../../addon/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "¿Las entradas deben ser públicas?" - -#: ../../addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "Reflejar todos los mensajes públicos" - -#: ../../addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "Ajustes de publicación en pump.io" - -#: ../../addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "Se han guardado los ajustes de PumpIO." - -#: ../../addon/ldapauth/ldapauth.php:61 -msgid "An account has been created for you." -msgstr "Se ha creado una cuenta para usted." - -#: ../../addon/ldapauth/ldapauth.php:68 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "Autenticación correcta pero rechazada: la creación de cuentas está deshabilitada." - -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Buscar %1$s (%2$s)" - -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "Buscar $Projectname" - -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "Importar repositorio de ficheros de Redmatrix" - -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "Esto importará todos sus ficheros de la nube de Redmatrix a este canal." - -#: ../../addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "fichero" - -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "Enviar un correo electrónico a todos los miembros" - -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "%1$d de %2$d mensajes enviados." - -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "Enviar un correo electrónico a todos los miembros del hub." - -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "Dirección de correo electrónico del remitente" - -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "Modo de prueba (enviar sólo al administrador del hub)" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frecuentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos veces al día" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualmente" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualmente hombre" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualmente mujer" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Generalmente hombre" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Generalmente mujer" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgénero" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transexual" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/selectors.php:49 ../../include/channel.php:1484 -msgid "Neuter" -msgstr "Neutral" - -#: ../../include/selectors.php:49 ../../include/channel.php:1486 -msgid "Non-specific" -msgstr "No especificado" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso/a" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hombres" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Mujeres" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homosexual" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbiana" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sin preferencias" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Casto/a" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Virgen" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Fuera de lo común" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetichista" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgías" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Soltero/a" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solo/a" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No disponible" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Enamorado/a" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Apasionado/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Saliendo con alguien" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infiel" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Con adicción al sexo" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Prometido/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casado/a" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Pareja" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitando" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio tradicional" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felíz" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "No estoy buscando" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Libertino" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Engañado/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separado/a" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciado/a" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Viudo/a" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Indeterminado" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es complicado" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No me importa" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregúnteme" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "gusta de %2$s de %1$s" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "no gusta de %2$s de %1$s" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado/a con %2$s" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha dado un toque a %2$s" - -#: ../../include/conversation.php:251 ../../include/text.php:1129 -#: ../../include/text.php:1133 -msgid "poked" -msgstr "ha dado un toque a" - -#: ../../include/conversation.php:736 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" - -#: ../../include/conversation.php:756 -msgid "Categories:" -msgstr "Temas:" - -#: ../../include/conversation.php:757 -msgid "Filed under:" -msgstr "Archivado bajo:" - -#: ../../include/conversation.php:783 -msgid "View in context" -msgstr "Mostrar en su contexto" - -#: ../../include/conversation.php:884 -msgid "remove" -msgstr "eliminar" - -#: ../../include/conversation.php:888 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/conversation.php:889 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" - -#: ../../include/conversation.php:932 -msgid "View Source" -msgstr "Ver el código fuente de la entrada" - -#: ../../include/conversation.php:942 -msgid "Follow Thread" -msgstr "Seguir este hilo" - -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Dejar de seguir este hilo" - -#: ../../include/conversation.php:1062 -msgid "Edit Connection" -msgstr "Editar conexión" - -#: ../../include/conversation.php:1072 -msgid "Message" -msgstr "Mensaje" - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." - -#: ../../include/conversation.php:1210 -#, 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:1212 -#, 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:1218 -msgid "and" -msgstr "y" - -#: ../../include/conversation.php:1221 -#, 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:1222 -#, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." - -#: ../../include/conversation.php:1222 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." - -#: ../../include/conversation.php:1265 -msgid "Set your location" -msgstr "Establecer su ubicación" - -#: ../../include/conversation.php:1266 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" - -#: ../../include/conversation.php:1316 -msgid "Tag term:" -msgstr "Término de la etiqueta:" - -#: ../../include/conversation.php:1317 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" - -#: ../../include/conversation.php:1322 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." - -#: ../../include/conversation.php:1326 -msgid "Comments enabled" -msgstr "Comentarios habilitados" - -#: ../../include/conversation.php:1327 -msgid "Comments disabled" -msgstr "Comentarios deshabilitados" - -#: ../../include/conversation.php:1375 -msgid "Page link name" -msgstr "Nombre del enlace de la página" - -#: ../../include/conversation.php:1378 -msgid "Post as" -msgstr "Publicar como" - -#: ../../include/conversation.php:1392 -msgid "Toggle voting" -msgstr "Cambiar votación" - -#: ../../include/conversation.php:1395 -msgid "Disable comments" -msgstr "Dehabilitar los comentarios" - -#: ../../include/conversation.php:1396 -msgid "Toggle comments" -msgstr "Activar o desactivar los comentarios" - -#: ../../include/conversation.php:1404 -msgid "Categories (optional, comma-separated list)" -msgstr "Temas (opcional, lista separada por comas)" - -#: ../../include/conversation.php:1427 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" - -#: ../../include/conversation.php:1433 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" - -#: ../../include/conversation.php:1693 -msgid "Commented Order" -msgstr "Comentarios recientes" - -#: ../../include/conversation.php:1696 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" - -#: ../../include/conversation.php:1700 -msgid "Posted Order" -msgstr "Publicaciones recientes" - -#: ../../include/conversation.php:1703 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" - -#: ../../include/conversation.php:1711 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" - -#: ../../include/conversation.php:1720 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" - -#: ../../include/conversation.php:1726 -msgid "Starred" -msgstr "Preferidas" - -#: ../../include/conversation.php:1729 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" - -#: ../../include/conversation.php:1736 -msgid "Spam" -msgstr "Correo basura" - -#: ../../include/conversation.php:1739 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" - -#: ../../include/conversation.php:1814 ../../include/nav.php:381 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" - -#: ../../include/conversation.php:1827 ../../include/nav.php:394 -msgid "Profile Details" -msgstr "Detalles del perfil" - -#: ../../include/conversation.php:1837 ../../include/nav.php:404 -#: ../../include/photos.php:666 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/conversation.php:1845 ../../include/nav.php:412 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" - -#: ../../include/conversation.php:1882 ../../include/nav.php:447 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/conversation.php:1885 ../../include/nav.php:450 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" - -#: ../../include/conversation.php:1896 ../../include/nav.php:461 -msgid "View Cards" -msgstr "Ver las fichas" - -#: ../../include/conversation.php:1904 -msgid "articles" -msgstr "artículos" - -#: ../../include/conversation.php:1907 ../../include/nav.php:472 -msgid "View Articles" -msgstr "Ver los artículos" - -#: ../../include/conversation.php:1918 ../../include/nav.php:484 -msgid "View Webpages" -msgstr "Ver páginas web" - -#: ../../include/conversation.php:1987 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participaré" -msgstr[1] "Participaré" - -#: ../../include/conversation.php:1990 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No participaré" -msgstr[1] "No participaré" - -#: ../../include/conversation.php:1993 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" - -#: ../../include/conversation.php:1996 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "De acuerdo" -msgstr[1] "De acuerdo" - -#: ../../include/conversation.php:1999 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "En desacuerdo" -msgstr[1] "En desacuerdo" - -#: ../../include/conversation.php:2002 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" - -#: ../../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/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" - -#: ../../include/import.php:25 -msgid "Unable to import a removed channel." -msgstr "No se puede importar un canal eliminado." - -#: ../../include/import.php:46 -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:111 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." - -#: ../../include/text.php:492 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:494 -msgid "first" -msgstr "primera" - -#: ../../include/text.php:523 -msgid "last" -msgstr "última" - -#: ../../include/text.php:526 -msgid "next" -msgstr "próxima" - -#: ../../include/text.php:537 -msgid "older" -msgstr "más antiguas" - -#: ../../include/text.php:539 -msgid "newer" -msgstr "más recientes" - -#: ../../include/text.php:961 -msgid "No connections" -msgstr "Sin conexiones" - -#: ../../include/text.php:993 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" - -#: ../../include/text.php:1129 ../../include/text.php:1133 -msgid "poke" -msgstr "un toque" - -#: ../../include/text.php:1134 -msgid "ping" -msgstr "un \"ping\"" - -#: ../../include/text.php:1134 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" - -#: ../../include/text.php:1135 -msgid "prod" -msgstr "una incitación " - -#: ../../include/text.php:1135 -msgid "prodded" -msgstr "ha incitado a " - -#: ../../include/text.php:1136 -msgid "slap" -msgstr "una bofetada " - -#: ../../include/text.php:1136 -msgid "slapped" -msgstr "ha abofeteado a " - -#: ../../include/text.php:1137 -msgid "finger" -msgstr "un \"finger\" " - -#: ../../include/text.php:1137 -msgid "fingered" -msgstr "envió un \"finger\" a" - -#: ../../include/text.php:1138 -msgid "rebuff" -msgstr "un reproche" - -#: ../../include/text.php:1138 -msgid "rebuffed" -msgstr "ha hecho un reproche a " - -#: ../../include/text.php:1161 -msgid "happy" -msgstr "feliz " - -#: ../../include/text.php:1162 -msgid "sad" -msgstr "triste " - -#: ../../include/text.php:1163 -msgid "mellow" -msgstr "tranquilo/a" - -#: ../../include/text.php:1164 -msgid "tired" -msgstr "cansado/a " - -#: ../../include/text.php:1165 -msgid "perky" -msgstr "vivaz" - -#: ../../include/text.php:1166 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1167 -msgid "stupefied" -msgstr "asombrado/a" - -#: ../../include/text.php:1168 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1169 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1170 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1171 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1172 -msgid "alive" -msgstr "animado/a" - -#: ../../include/text.php:1173 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1174 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1175 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1176 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1177 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1178 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1179 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1180 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1181 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1360 ../../include/js_strings.php:76 -msgid "Monday" -msgstr "lunes" - -#: ../../include/text.php:1360 ../../include/js_strings.php:77 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/text.php:1360 ../../include/js_strings.php:78 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/text.php:1360 ../../include/js_strings.php:79 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/text.php:1360 ../../include/js_strings.php:80 -msgid "Friday" -msgstr "viernes" - -#: ../../include/text.php:1360 ../../include/js_strings.php:81 -msgid "Saturday" -msgstr "sábado" - -#: ../../include/text.php:1360 ../../include/js_strings.php:75 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/text.php:1364 ../../include/js_strings.php:51 -msgid "January" -msgstr "enero" - -#: ../../include/text.php:1364 ../../include/js_strings.php:52 -msgid "February" -msgstr "febrero" - -#: ../../include/text.php:1364 ../../include/js_strings.php:53 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1364 ../../include/js_strings.php:54 -msgid "April" -msgstr "abril" - -#: ../../include/text.php:1364 -msgid "May" -msgstr "mayo" - -#: ../../include/text.php:1364 ../../include/js_strings.php:56 -msgid "June" -msgstr "junio" - -#: ../../include/text.php:1364 ../../include/js_strings.php:57 -msgid "July" -msgstr "julio" - -#: ../../include/text.php:1364 ../../include/js_strings.php:58 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1364 ../../include/js_strings.php:59 -msgid "September" -msgstr "septiembre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:60 -msgid "October" -msgstr "octubre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:61 -msgid "November" -msgstr "noviembre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:62 -msgid "December" -msgstr "diciembre" - -#: ../../include/text.php:1428 ../../include/text.php:1432 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" - -#: ../../include/text.php:1434 ../../include/feedutils.php:860 -msgid "unknown" -msgstr "desconocido" - -#: ../../include/text.php:1470 -msgid "remove category" -msgstr "eliminar el tema" - -#: ../../include/text.php:1544 -msgid "remove from file" -msgstr "eliminar del fichero" - -#: ../../include/text.php:1686 ../../include/message.php:12 -msgid "Download binary/encrypted content" -msgstr "Descargar contenido binario o cifrado" - -#: ../../include/text.php:1849 ../../include/language.php:397 -msgid "default" -msgstr "por defecto" - -#: ../../include/text.php:1857 -msgid "Page layout" -msgstr "Plantilla de la página" - -#: ../../include/text.php:1857 -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:1868 -msgid "HTML" -msgstr "HTML" - -#: ../../include/text.php:1871 -msgid "Comanche Layout" -msgstr "Plantilla de Comanche" - -#: ../../include/text.php:1876 -msgid "PHP" -msgstr "PHP" - -#: ../../include/text.php:1885 -msgid "Page content type" -msgstr "Tipo de contenido de la página" - -#: ../../include/text.php:2018 -msgid "activity" -msgstr "la/su actividad" - -#: ../../include/text.php:2100 -msgid "a-z, 0-9, -, and _ only" -msgstr "a-z, 0-9, -, and _ only" - -#: ../../include/text.php:2419 -msgid "Design Tools" -msgstr "Herramientas de diseño web" - -#: ../../include/text.php:2425 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/text.php:2447 -msgid "Import website..." -msgstr "Importar un sitio web..." - -#: ../../include/text.php:2448 -msgid "Select folder to import" -msgstr "Seleccionar la carpeta que se va a importar" - -#: ../../include/text.php:2449 -msgid "Import from a zipped folder:" -msgstr "Importar desde una carpeta comprimida: " - -#: ../../include/text.php:2450 -msgid "Import from cloud files:" -msgstr "Importar desde los ficheros en la nube: " - -#: ../../include/text.php:2451 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/canal/ruta/a la/carpeta" - -#: ../../include/text.php:2452 -msgid "Enter path to website files" -msgstr "Ruta a los ficheros del sitio web" - -#: ../../include/text.php:2453 -msgid "Select folder" -msgstr "Seleccionar la carpeta" - -#: ../../include/text.php:2454 -msgid "Export website..." -msgstr "Exportar un sitio web..." - -#: ../../include/text.php:2455 -msgid "Export to a zip file" -msgstr "Exportar a un fichero comprimido .zip" - -#: ../../include/text.php:2456 -msgid "website.zip" -msgstr "sitio_web.zip" - -#: ../../include/text.php:2457 -msgid "Enter a name for the zip file." -msgstr "Escriba un nombre para el fichero zip." - -#: ../../include/text.php:2458 -msgid "Export to cloud files" -msgstr "Exportar a la nube de ficheros" - -#: ../../include/text.php:2459 -msgid "/path/to/export/folder" -msgstr "/ruta/para/exportar/carpeta" - -#: ../../include/text.php:2460 -msgid "Enter a path to a cloud files destination." -msgstr "Escriba una ruta de destino a la nube de ficheros." - -#: ../../include/text.php:2461 -msgid "Specify folder" -msgstr "Especificar una carpeta" - -#: ../../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:223 -msgid "Common Connections" -msgstr "Conexiones comunes" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "Ver todas las %d conexiones comunes" - -#: ../../include/markdown.php:158 ../../include/bbcode.php:356 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "Canal Premium - por favor visite:" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." - -#: ../../include/follow.php:165 -msgid "Remote channel or protocol unavailable." -msgstr "Canal remoto o protocolo no disponible." - -#: ../../include/follow.php:188 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." - -#: ../../include/follow.php:200 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." - -#: ../../include/follow.php:211 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." - -#: ../../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 "%s mostrar menos" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s expandir" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s contraer" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contraseña demasiado corta" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "cualquiera" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contraseña secreta" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista de contraseña" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "cerrar todo" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valorar este canal (esto es público)" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Describir (opcional)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor, introduzca una dirección de enlace" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" - -#: ../../include/js_strings.php:31 -msgid "timeago.prefixAgo" -msgstr "hace " - -#: ../../include/js_strings.php:32 -msgid "timeago.prefixFromNow" -msgstr "en " - -#: ../../include/js_strings.php:33 -msgid "timeago.suffixAgo" -msgstr "NONE" - -#: ../../include/js_strings.php:34 -msgid "timeago.suffixFromNow" -msgstr "NONE" - -#: ../../include/js_strings.php:37 -msgid "less than a minute" -msgstr "menos de un minuto" - -#: ../../include/js_strings.php:38 -msgid "about a minute" -msgstr "alrededor de un minuto" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" - -#: ../../include/js_strings.php:40 -msgid "about an hour" -msgstr "alrededor de una hora" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" - -#: ../../include/js_strings.php:42 -msgid "a day" -msgstr "un día" - -#: ../../include/js_strings.php:43 -#, php-format -msgid "%d days" -msgstr "%d días" - -#: ../../include/js_strings.php:44 -msgid "about a month" -msgstr "alrededor de un mes" - -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d months" -msgstr "%d meses" - -#: ../../include/js_strings.php:46 -msgid "about a year" -msgstr "alrededor de un año" - -#: ../../include/js_strings.php:47 -#, php-format -msgid "%d years" -msgstr "%d años" - -#: ../../include/js_strings.php:48 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:49 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:55 -msgctxt "long" -msgid "May" -msgstr "mayo" - -#: ../../include/js_strings.php:63 -msgid "Jan" -msgstr "ene" - -#: ../../include/js_strings.php:64 -msgid "Feb" -msgstr "feb" - -#: ../../include/js_strings.php:65 -msgid "Mar" -msgstr "mar" - -#: ../../include/js_strings.php:66 -msgid "Apr" -msgstr "abr" - -#: ../../include/js_strings.php:67 -msgctxt "short" -msgid "May" -msgstr "may" - -#: ../../include/js_strings.php:68 -msgid "Jun" -msgstr "jun" - -#: ../../include/js_strings.php:69 -msgid "Jul" -msgstr "jul" - -#: ../../include/js_strings.php:70 -msgid "Aug" -msgstr "ago" - -#: ../../include/js_strings.php:71 -msgid "Sep" -msgstr "sep" - -#: ../../include/js_strings.php:72 -msgid "Oct" -msgstr "oct" - -#: ../../include/js_strings.php:73 -msgid "Nov" -msgstr "nov" - -#: ../../include/js_strings.php:74 -msgid "Dec" -msgstr "dic" - -#: ../../include/js_strings.php:82 -msgid "Sun" -msgstr "dom" - -#: ../../include/js_strings.php:83 -msgid "Mon" -msgstr "lun" - -#: ../../include/js_strings.php:84 -msgid "Tue" -msgstr "mar" - -#: ../../include/js_strings.php:85 -msgid "Wed" -msgstr "mié" - -#: ../../include/js_strings.php:86 -msgid "Thu" -msgstr "jue" - -#: ../../include/js_strings.php:87 -msgid "Fri" -msgstr "vie" - -#: ../../include/js_strings.php:88 -msgid "Sat" -msgstr "sáb" - -#: ../../include/js_strings.php:89 -msgctxt "calendar" -msgid "today" -msgstr "hoy" - -#: ../../include/js_strings.php:90 -msgctxt "calendar" -msgid "month" -msgstr "mes" - -#: ../../include/js_strings.php:91 -msgctxt "calendar" -msgid "week" -msgstr "semana" - -#: ../../include/js_strings.php:92 -msgctxt "calendar" -msgid "day" -msgstr "día" - -#: ../../include/js_strings.php:93 -msgctxt "calendar" -msgid "All day" -msgstr "Todos los días" - -#: ../../include/message.php:40 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " - -#: ../../include/message.php:79 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." - -#: ../../include/message.php:84 -msgid "[no subject]" -msgstr "[sin asunto]" - -#: ../../include/message.php:214 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." - -#: ../../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/attach.php:265 ../../include/attach.php:361 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: ../../include/attach.php:554 -msgid "No source file." -msgstr "Ningún fichero de origen" - -#: ../../include/attach.php:576 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." - -#: ../../include/attach.php:595 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" - -#: ../../include/attach.php:737 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" - -#: ../../include/attach.php:758 -#, 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:940 -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:969 -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:1043 ../../include/attach.php:1059 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:1108 ../../include/attach.php:1273 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:1134 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" - -#: ../../include/attach.php:1159 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:1227 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:1231 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/attach.php:1279 -msgid "Empty path" -msgstr "Ruta vacía" - -#: ../../include/security.php:541 -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/items.php:885 ../../include/items.php:945 -msgid "(Unknown)" -msgstr "(Desconocido)" - -#: ../../include/items.php:1133 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." - -#: ../../include/items.php:1135 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1137 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." - -#: ../../include/items.php:1139 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." - -#: ../../include/items.php:1141 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." - -#: ../../include/items.php:1143 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." - -#: ../../include/items.php:1145 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." - -#: ../../include/items.php:1147 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." - -#: ../../include/items.php:4197 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." - -#: ../../include/items.php:4204 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" - -#: ../../include/items.php:4216 -msgid "Connection not found." -msgstr "Conexión no encontrada" - -#: ../../include/items.php:4565 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/items.php:4756 -#, php-format -msgid "[Edited %s]" -msgstr "[se ha editado %s]" - -#: ../../include/items.php:4756 -msgctxt "edit_activity" -msgid "Post" -msgstr "Publicar" - -#: ../../include/items.php:4756 -msgctxt "edit_activity" -msgid "Comment" -msgstr "Comentar" - -#: ../../include/channel.php:35 -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/channel.php:68 -msgid "Empty name" -msgstr "Nombre vacío" - -#: ../../include/channel.php:71 -msgid "Name too long" -msgstr "Nombre demasiado largo" - -#: ../../include/channel.php:188 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" - -#: ../../include/channel.php:200 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." - -#: ../../include/channel.php:277 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" - -#: ../../include/channel.php:373 -msgid "Default Profile" -msgstr "Perfil principal" - -#: ../../include/channel.php:532 ../../include/channel.php:621 -msgid "Unable to retrieve modified identity" -msgstr "No se puede recuperar la identidad modficada" - -#: ../../include/channel.php:1297 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" - -#: ../../include/channel.php:1318 -msgid "Visible to everybody" -msgstr "Visible para todos" - -#: ../../include/channel.php:1395 ../../include/channel.php:1523 -msgid "Gender:" -msgstr "Género:" - -#: ../../include/channel.php:1397 ../../include/channel.php:1591 -msgid "Homepage:" -msgstr "Página personal:" - -#: ../../include/channel.php:1398 -msgid "Online Now" -msgstr "Ahora en línea" - -#: ../../include/channel.php:1451 -msgid "Change your profile photo" -msgstr "Cambiar su foto del perfil" - -#: ../../include/channel.php:1482 -msgid "Trans" -msgstr "Trans" - -#: ../../include/channel.php:1528 -msgid "Like this channel" -msgstr "Me gusta este canal" - -#: ../../include/channel.php:1552 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1553 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1560 -msgid "Birthday:" -msgstr "Cumpleaños:" - -#: ../../include/channel.php:1573 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" - -#: ../../include/channel.php:1585 -msgid "Tags:" -msgstr "Etiquetas:" - -#: ../../include/channel.php:1589 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" - -#: ../../include/channel.php:1595 -msgid "Political Views:" -msgstr "Posición política:" - -#: ../../include/channel.php:1597 -msgid "Religion:" -msgstr "Religión:" - -#: ../../include/channel.php:1601 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" - -#: ../../include/channel.php:1603 -msgid "Likes:" -msgstr "Me gusta:" - -#: ../../include/channel.php:1605 -msgid "Dislikes:" -msgstr "No me gusta:" - -#: ../../include/channel.php:1607 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" - -#: ../../include/channel.php:1609 -msgid "My other channels:" -msgstr "Mis otros canales:" - -#: ../../include/channel.php:1611 -msgid "Musical interests:" -msgstr "Preferencias musicales:" - -#: ../../include/channel.php:1613 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: ../../include/channel.php:1615 -msgid "Television:" -msgstr "Televisión:" - -#: ../../include/channel.php:1617 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" - -#: ../../include/channel.php:1619 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" - -#: ../../include/channel.php:1621 -msgid "Work/employment:" -msgstr "Trabajo:" - -#: ../../include/channel.php:1623 -msgid "School/education:" -msgstr "Estudios:" - -#: ../../include/channel.php:1646 -msgid "Like this thing" -msgstr "Me gusta esto" - -#: ../../include/event.php:24 ../../include/event.php:71 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" - -#: ../../include/event.php:32 ../../include/event.php:75 -msgid "Starts:" -msgstr "Comienza:" - -#: ../../include/event.php:42 ../../include/event.php:79 -msgid "Finishes:" -msgstr "Finaliza:" - -#: ../../include/event.php:1011 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." - -#: ../../include/event.php:1227 -msgid "Not specified" -msgstr "Sin especificar" - -#: ../../include/event.php:1228 -msgid "Needs Action" -msgstr "Necesita de una intervención" - -#: ../../include/event.php:1229 -msgid "Completed" -msgstr "Completado/a" - -#: ../../include/event.php:1230 -msgid "In Process" -msgstr "En proceso" - -#: ../../include/event.php:1231 -msgid "Cancelled" -msgstr "Cancelado/a" - -#: ../../include/event.php:1310 ../../include/connections.php:692 -msgid "Home, Voice" -msgstr "Llamadas particulares" - -#: ../../include/event.php:1311 ../../include/connections.php:693 -msgid "Home, Fax" -msgstr "Fax particular" - -#: ../../include/event.php:1313 ../../include/connections.php:695 -msgid "Work, Voice" -msgstr "Llamadas de trabajo" - -#: ../../include/event.php:1314 ../../include/connections.php:696 -msgid "Work, Fax" -msgstr "Fax de trabajo" - -#: ../../include/network.php:762 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1764 ../../include/network.php:1765 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:1766 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:1767 -msgid "GNU-Social" -msgstr "GNU Social" - -#: ../../include/network.php:1768 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:1771 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:1772 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:1773 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:1774 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:1775 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:1776 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "Selección personalizada" - -#: ../../include/acl_selectors.php:115 -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:116 -msgid "Show" -msgstr "Mostrar" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:150 -#, 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/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" - -#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 -#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 -#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 -#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 -#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 -#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 -#: ../../include/bbcode.php:1239 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:253 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "Instalar el elemento de%1$s%2$s" - -#: ../../include/bbcode.php:257 -#, 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:348 -msgid "card" -msgstr "ficha" - -#: ../../include/bbcode.php:350 -msgid "article" -msgstr "el artículo" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:441 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:454 -msgid "View article" -msgstr "Ver el artículo" - -#: ../../include/bbcode.php:454 -msgid "View summary" -msgstr "Ver sumario" - -#: ../../include/bbcode.php:1188 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/oembed.php:329 -msgid " by " -msgstr "por" - -#: ../../include/oembed.php:330 -msgid " on " -msgstr "en" - -#: ../../include/oembed.php:359 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:368 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/zid.php:347 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" - -#: ../../include/features.php:56 -msgid "General Features" -msgstr "Funcionalidades básicas" - -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "Mostrar el menú de enlaces rápidos para nuevos miembros" - -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" - -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" - -#: ../../include/features.php:78 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" - -#: ../../include/features.php:79 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" - -#: ../../include/features.php:87 -msgid "Web Pages" -msgstr "Páginas web" - -#: ../../include/features.php:88 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" - -#: ../../include/features.php:97 -msgid "Provide a wiki for your channel" -msgstr "Proporcionar un wiki para su canal" - -#: ../../include/features.php:114 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:115 -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:124 -msgid "Create personal planning cards" -msgstr "Crear fichas de planificación personal" - -#: ../../include/features.php:134 -msgid "Create interactive articles" -msgstr "Crear artículos interactivos" - -#: ../../include/features.php:142 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" - -#: ../../include/features.php:143 -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:151 -msgid "Photo Location" -msgstr "Ubicación de las fotos" - -#: ../../include/features.php:152 -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:160 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" - -#: ../../include/features.php:161 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." - -#: ../../include/features.php:170 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" - -#: ../../include/features.php:171 -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:179 -msgid "Event Timezone Selection" -msgstr "Selección del huso horario del evento" - -#: ../../include/features.php:180 -msgid "Allow event creation in timezones other than your own." -msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." - -#: ../../include/features.php:189 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:190 -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:198 -msgid "Advanced Directory Search" -msgstr "Búsqueda avanzada en el directorio" - -#: ../../include/features.php:199 -msgid "Allows creation of complex directory search queries" -msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" - -#: ../../include/features.php:207 -msgid "Advanced Theme and Layout Settings" -msgstr "Ajustes avanzados de temas y esquemas" - -#: ../../include/features.php:208 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permitir el ajuste fino de temas y esquemas de páginas" - -#: ../../include/features.php:217 -msgid "Access Control and Permissions" -msgstr "Control de acceso y permisos" - -#: ../../include/features.php:221 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Grupos de canales" - -#: ../../include/features.php:222 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" - -#: ../../include/features.php:230 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - -#: ../../include/features.php:231 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:241 -msgid "Provide alternate connection permission roles." -msgstr "Proporcionar roles de acceso alternativos para esta conexión." - -#: ../../include/features.php:249 -msgid "OAuth1 Clients" -msgstr "Clientes OAuth1" - -#: ../../include/features.php:250 -msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." -msgstr "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas." - -#: ../../include/features.php:258 -msgid "OAuth2 Clients" -msgstr "Clientes OAuth2" - -#: ../../include/features.php:259 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas." - -#: ../../include/features.php:267 -msgid "Access Tokens" -msgstr "Tokens de acceso" - -#: ../../include/features.php:268 -msgid "Create access tokens so that non-members can access private content." -msgstr "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado." - -#: ../../include/features.php:279 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" - -#: ../../include/features.php:283 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" - -#: ../../include/features.php:284 -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:293 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" - -#: ../../include/features.php:301 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" - -#: ../../include/features.php:302 -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:310 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" - -#: ../../include/features.php:311 -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:319 -msgid "Disable Comments" -msgstr "Deshabilitar comentarios" - -#: ../../include/features.php:320 -msgid "Provide the option to disable comments for a post" -msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" - -#: ../../include/features.php:328 -msgid "Delayed Posting" -msgstr "Publicación aplazada" - -#: ../../include/features.php:329 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" - -#: ../../include/features.php:337 -msgid "Content Expiration" -msgstr "Caducidad del contenido" - -#: ../../include/features.php:338 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" - -#: ../../include/features.php:346 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" - -#: ../../include/features.php:347 -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:355 -msgid "Auto-save drafts of posts and comments" -msgstr "Guardar automáticamente borradores de entradas y comentarios" - -#: ../../include/features.php:356 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help" -" prevent accidental loss of compositions" -msgstr "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones." - -#: ../../include/features.php:367 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" - -#: ../../include/features.php:371 -msgid "Search by Date" -msgstr "Buscar por fecha" - -#: ../../include/features.php:372 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" - -#: ../../include/features.php:382 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" - -#: ../../include/features.php:390 -msgid "Network Personal Tab" -msgstr "Actividad personal" - -#: ../../include/features.php:391 -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:399 -msgid "Network New Tab" -msgstr "Contenido nuevo" - -#: ../../include/features.php:400 -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:408 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:409 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" - -#: ../../include/features.php:418 -msgid "Show friend and connection suggestions" -msgstr "Mostrar sugerencias de amigos y conexiones" - -#: ../../include/features.php:426 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" - -#: ../../include/features.php:427 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" - -#: ../../include/features.php:439 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" - -#: ../../include/features.php:443 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" - -#: ../../include/features.php:444 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" - -#: ../../include/features.php:452 -msgid "Post Categories" -msgstr "Temas de las entradas" - -#: ../../include/features.php:453 -msgid "Add categories to your posts" -msgstr "Añadir temas a sus publicaciones" - -#: ../../include/features.php:461 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" - -#: ../../include/features.php:462 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" - -#: ../../include/features.php:471 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" - -#: ../../include/features.php:479 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" - -#: ../../include/features.php:480 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" - -#: ../../include/features.php:488 -msgid "Star Posts" -msgstr "Entradas destacadas" - -#: ../../include/features.php:489 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" - -#: ../../include/features.php:497 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" - -#: ../../include/features.php:498 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" - -#: ../../include/taxonomy.php:320 -msgid "Trending" -msgstr "Trending" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "Palabras clave" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "tener" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "tiene" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "quiero" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "quiere" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "gusta de" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "no gusta de" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" - -#: ../../include/account.php:38 -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:44 -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:76 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." - -#: ../../include/account.php:314 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" - -#: ../../include/account.php:383 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../include/account.php:405 -msgid "your registration password" -msgstr "su contraseña de registro" - -#: ../../include/account.php:411 ../../include/account.php:473 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" - -#: ../../include/account.php:484 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: ../../include/account.php:524 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" - -#: ../../include/account.php:803 ../../include/account.php:805 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" - -#: ../../include/account.php:811 -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:816 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "Cumpleaños" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "Edad:" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "hace un instante" - -#: ../../include/datetime.php:262 -#, 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:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" - -#: ../../include/nav.php:96 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" - -#: ../../include/nav.php:96 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" - -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" - -#: ../../include/nav.php:105 ../../include/nav.php:192 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" - -#: ../../include/nav.php:111 ../../include/nav.php:140 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:114 -msgid "Your profile page" -msgstr "Su página del perfil" - -#: ../../include/nav.php:117 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:157 -msgid "Take me home" -msgstr "Volver a la página principal" - -#: ../../include/nav.php:159 -msgid "Log me out of this site" -msgstr "Salir de este sitio" - -#: ../../include/nav.php:164 -msgid "Create an account" -msgstr "Crear una cuenta" - -#: ../../include/nav.php:176 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:179 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido" - -#: ../../include/nav.php:199 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:290 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "@nombre, !foro, #tag, ?docs, contenido" - -#: ../../include/nav.php:291 -msgid "Please wait..." -msgstr "Espere por favor…" - -#: ../../include/nav.php:297 -msgid "Add Apps" -msgstr "Añadir aplicaciones" - -#: ../../include/nav.php:298 -msgid "Arrange Apps" -msgstr "Organizar aplicaciones" - -#: ../../include/nav.php:299 -msgid "Toggle System Apps" -msgstr "Alternar aplicaciones de sistema" - -#: ../../include/photos.php:150 -#, 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:161 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " - -#: ../../include/photos.php:326 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." - -#: ../../include/photos.php:375 -msgid "a new photo" -msgstr "una nueva foto" - -#: ../../include/photos.php:379 -#, 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:671 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: ../../include/zot.php:772 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" - -#: ../../include/zot.php:799 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" - -#: ../../include/zot.php:2552 -#, 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:4219 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Añadir conexiones nuevas a este grupo de canales" - -#: ../../include/group.php:306 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:329 -msgid "Edit group" -msgstr "Editar grupo" - -#: ../../include/group.php:330 -msgid "Add privacy group" -msgstr "Añadir un grupo de canales" - -#: ../../include/group.php:331 -msgid "Channels not in any privacy group" -msgstr "Sin canales en ningún grupo" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "Nueva ventana" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" - -#: ../../include/auth.php:152 -msgid "Delegation session ended." -msgstr "Finalizó la sesión de la delegación." - -#: ../../include/auth.php:156 -msgid "Logged out." -msgstr "Desconectado/a." - -#: ../../include/auth.php:273 -msgid "Email validation is incomplete. Please check your email." -msgstr "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico." - -#: ../../include/auth.php:289 -msgid "Failed authentication" -msgstr "Autenticación fallida." - -#: ../../include/help.php:34 -msgid "Help:" -msgstr "Ayuda:" - -#: ../../include/help.php:78 -msgid "Not Found" -msgstr "No encontrado" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php deleted file mode 100644 index 6f07ece43..000000000 --- a/view/es-es/hstrings.php +++ /dev/null @@ -1,3259 +0,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["Submit"] = "Enviar"; -App::$strings["Articles"] = "Artículos"; -App::$strings["Add Article"] = "Añadir un artículo"; -App::$strings["Item not found"] = "Elemento no encontrado"; -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["Permission denied"] = "Permiso denegado"; -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["All Connections"] = "Todas las conexiones"; -App::$strings["INVALID EVENT DISMISSED!"] = "¡EVENTO NO VÁLIDO RECHAZADO!"; -App::$strings["Summary: "] = "Resumen: "; -App::$strings["Unknown"] = "Desconocido"; -App::$strings["Date: "] = "Fecha: "; -App::$strings["Reason: "] = "Razón: "; -App::$strings["INVALID CARD DISMISSED!"] = "¡TARJETA NO VÁLIDA RECHAZADA!"; -App::$strings["Name: "] = "Nombre: "; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "Ejemplo: YYYY-MM-DD HH:mm"; -App::$strings["End date and time"] = "Fecha y hora de finalización"; -App::$strings["Description"] = "Descripción"; -App::$strings["Location"] = "Ubicación"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Today"] = "Hoy"; -App::$strings["Month"] = "Mes"; -App::$strings["Week"] = "Semana"; -App::$strings["Day"] = "Día"; -App::$strings["List month"] = "Lista mensual"; -App::$strings["List week"] = "Lista semanal"; -App::$strings["List day"] = "Lista diaria"; -App::$strings["More"] = "Más"; -App::$strings["Less"] = "Menos"; -App::$strings["Select calendar"] = "Seleccionar un calendario"; -App::$strings["Delete all"] = "Eliminar todos"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado."; -App::$strings["Name"] = "Nombre"; -App::$strings["Organisation"] = "Organización"; -App::$strings["Title"] = "Título"; -App::$strings["Phone"] = "Teléfono"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["Instant messenger"] = "Mensajería instantánea"; -App::$strings["Website"] = "Sitio web"; -App::$strings["Address"] = "Dirección"; -App::$strings["Note"] = "Nota"; -App::$strings["Mobile"] = "Móvil"; -App::$strings["Home"] = "Inicio"; -App::$strings["Work"] = "Trabajo"; -App::$strings["Add Contact"] = "Añadir un contacto"; -App::$strings["Add Field"] = "Añadir un campo"; -App::$strings["Update"] = "Actualizar"; -App::$strings["P.O. Box"] = "Buzón de correos"; -App::$strings["Additional"] = "Adicional"; -App::$strings["Street"] = "Calle"; -App::$strings["Locality"] = "Localidad"; -App::$strings["Region"] = "Provincia, región o estado"; -App::$strings["ZIP Code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Default Calendar"] = "Calendario por defecto"; -App::$strings["Default Addressbook"] = "Agenda de direcciones por defecto"; -App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -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["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["Welcome to Hubzilla!"] = "¡Bienvenido a Hubzilla!"; -App::$strings["You have got no unseen posts..."] = "No tiene ningún mensaje sin leer..."; -App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["Search"] = "Buscar"; -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["Public Stream"] = "\"Stream\" público"; -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"] = "Sincronizando 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["Change Order of Pinned Navbar Apps"] = "Cambiar el orden de las aplicaciones fijas en la barra de navegación"; -App::$strings["Change Order of App Tray Apps"] = "Cambiar el orden de las aplicaciones de la bandeja de aplicaciones"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Use las flechas para mover la aplicación correspondiente a la izquierda (arriba) o derecha (abajo) en la barra de navegación."; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Use las flechas para mover la aplicación correspondiente hacia arriba o hacia abajo en la bandeja de aplicaciones."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Unable to create element."] = "No se puede 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["Not found."] = "No encontrado."; -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["No"] = "No"; -App::$strings["Yes"] = "Sí"; -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["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"] = "el/su evento"; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; -App::$strings["Edit Category"] = "Modificar el tema"; -App::$strings["Category"] = "Tema"; -App::$strings["Edit start date and time"] = "Modificar la 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["Edit Location"] = "Modificar la dirección"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Timezone:"] = "Zona horaria: "; -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["Export"] = "Exportar"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; -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)"] = "Temas (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["Please login."] = "Por favor, inicie sesión."; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "el mensaje de estado "; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; -App::$strings["Channel not found."] = "Canal no encontrado."; -App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Article"] = "Editar el artículo"; -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"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -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["File to Upload"] = "Fichero para subir"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -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 a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas. Los canales pueden conectarse con otros canales para compartir información unos con otros."; -App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "El tipo de canal que cree afecta a la configuración básica de privacidad, a los permisos que se conceden a las conexiones/amigos y también a la visibilidad del canal en la red."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["Validate"] = "Validar"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Channel"] = "Eliminar este canal"; -App::$strings["WARNING: "] = "ATENCIÓN:"; -App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red. "; -App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; -App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; -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["Files: shared with me"] = "Ficheros: compartidos conmigo"; -App::$strings["NEW"] = "NUEVO"; -App::$strings["Size"] = "Tamaño"; -App::$strings["Last Modified"] = "Última modificación"; -App::$strings["Remove all files"] = "Eliminar todos los ficheros"; -App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; -App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; -App::$strings["Could not create table."] = "No se puede crear la tabla."; -App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Verificación del sistema"; -App::$strings["Check again"] = "Verificar de nuevo"; -App::$strings["Database connection"] = "Conexión a la base de datos"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; -App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; -App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; -App::$strings["Database Port"] = "Puerto de la base de datos"; -App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; -App::$strings["Database Login Name"] = "Usuario de la base de datos"; -App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; -App::$strings["Database Name"] = "Nombre de la base de datos"; -App::$strings["Database Type"] = "Tipo de base de datos"; -App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; -App::$strings["Website URL"] = "Dirección del sitio web"; -App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; -App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; -App::$strings["Site settings"] = "Ajustes del sitio"; -App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; -App::$strings["PHP version"] = "Versión de PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor 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."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron."; -App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; -App::$strings["Command line PHP"] = "PHP en línea de comandos"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; -App::$strings["PHP upload limits"] = "Límites PHP de subida"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; -App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; -App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; -App::$strings["PDO database PHP module"] = "Módulo PHP de la base de datos PDO "; -App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; -App::$strings["xml PHP module"] = "módulo PHP xml"; -App::$strings["zip PHP module"] = "Módulo zip PHP"; -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."; -App::$strings["exec"] = "ejecutable"; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini"; -App::$strings["shell_exec"] = "shell_exec"; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; -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: PDO database PHP module required but not installed."] = "Error: se necesita el módulo PHP de la base de datos PDO, pero no 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: 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["Error: zip PHP module required but not installed."] = "Error: se requiere el módulo zip PHP pero no está instalado."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; -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."; -App::$strings["Please see install/INSTALL.txt for additional information."] = "Por favor, consulte install/INSTALL.txt para más información."; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización."; -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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; -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 top level web folder"] = "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior"; -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."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus entradas públicas hagan referencia a imágenes en su propio servidor."; -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."] = "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor."; -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"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; -App::$strings["

What next?

"] = "

¿Qué sigue?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; -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["Queue Statistics"] = "Estadísticas de la cola"; -App::$strings["Total Entries"] = "Total de entradas"; -App::$strings["Priority"] = "Prioridad"; -App::$strings["Destination URL"] = "Dirección de destino"; -App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; -App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; -App::$strings["Last known contact"] = "Último contacto conocido"; -App::$strings["Off"] = "Desactivado"; -App::$strings["On"] = "Activado"; -App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; -App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; -App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; -App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; -App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; -App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; -App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; -App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; -App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; -App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; -App::$strings["Plugin %s enabled."] = "Extensión %s activada."; -App::$strings["Disable"] = "Desactivar"; -App::$strings["Enable"] = "Activar"; -App::$strings["Administration"] = "Administración"; -App::$strings["Plugins"] = "Extensiones (plugins)"; -App::$strings["Toggle"] = "Cambiar"; -App::$strings["Settings"] = "Ajustes"; -App::$strings["Author: "] = "Autor:"; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; -App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; -App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; -App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; -App::$strings["Requires: "] = "Se requiere:"; -App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; -App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin"; -App::$strings["Custom repo name"] = "Nombre personalizado del repositorio"; -App::$strings["(optional)"] = "(opcional)"; -App::$strings["Download Plugin Repo"] = "Descargar el repositorio"; -App::$strings["Install new repo"] = "Instalar un nuevo repositorio"; -App::$strings["Install"] = "Instalar"; -App::$strings["Manage Repos"] = "Gestionar los repositorios"; -App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; -App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; -App::$strings["Switch branch"] = "Cambiar la rama"; -App::$strings["Remove"] = "Eliminar"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s cuenta bloqueada/desbloqueada", - 1 => "%s cuenta bloqueada/desbloqueada", -); -App::$strings["%s account deleted"] = array( - 0 => "%s cuentas eliminadas", - 1 => "%s cuentas eliminadas", -); -App::$strings["Account not found"] = "Cuenta no encontrada"; -App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; -App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; -App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["Accounts"] = "Cuentas"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; -App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["No registrations."] = "Sin registros."; -App::$strings["Approve"] = "Aprobar"; -App::$strings["Deny"] = "Rechazar"; -App::$strings["Block"] = "Bloquear"; -App::$strings["Unblock"] = "Desbloquear"; -App::$strings["ID"] = "ID"; -App::$strings["All Channels"] = "Todos los canales"; -App::$strings["Register date"] = "Fecha de registro"; -App::$strings["Last login"] = "Último acceso"; -App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Clase de servicio"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; -App::$strings["Logs"] = "Informes"; -App::$strings["Clear"] = "Vaciar"; -App::$strings["Debugging"] = "Depuración"; -App::$strings["Log file"] = "Fichero de informe"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal."; -App::$strings["Log level"] = "Nivel de depuración"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canales censurados/no censurados", - 1 => "%s canales censurados/no censurados", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s código permitido/no permitido al canal", - 1 => "%s código permitido/no permitido al canal", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canales eliminados", - 1 => "%s canales eliminados", -); -App::$strings["Channel not found"] = "Canal no encontrado"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; -App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; -App::$strings["Channels"] = "Canales"; -App::$strings["Censor"] = "Censurar"; -App::$strings["Uncensor"] = "No censurar"; -App::$strings["Allow Code"] = "Permitir código"; -App::$strings["Disallow Code"] = "No permitir código"; -App::$strings["Channel"] = "Canal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; -App::$strings["No themes found."] = "No se han encontrado temas."; -App::$strings["Screenshot"] = "Instantánea de pantalla"; -App::$strings["Themes"] = "Temas"; -App::$strings["[Experimental]"] = "[Experimental]"; -App::$strings["[Unsupported]"] = "[No soportado]"; -App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; -App::$strings["Default"] = "Predeterminado"; -App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; -App::$strings["mobile"] = "móvil"; -App::$strings["experimental"] = "experimental"; -App::$strings["unsupported"] = "no soportado"; -App::$strings["Yes - with approval"] = "Sí - con aprobación"; -App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; -App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; -App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; -App::$strings["Beginner/Basic"] = "Principiante / Básico"; -App::$strings["Novice - not skilled but willing to learn"] = "Novato: no cualificado, pero dispuesto a aprender"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermedio: bastante cómodo"; -App::$strings["Advanced - very comfortable"] = "Avanzado: muy cómodo"; -App::$strings["Expert - I can write computer code"] = "Experto: puedo escribir código informático"; -App::$strings["Wizard - I probably know more than you do"] = "Colaborador: probablemente sé más que tú"; -App::$strings["Site"] = "Sitio"; -App::$strings["Registration"] = "Registro"; -App::$strings["File upload"] = "Subir fichero"; -App::$strings["Policies"] = "Políticas"; -App::$strings["Advanced"] = "Avanzado"; -App::$strings["Site name"] = "Nombre del sitio"; -App::$strings["Site default technical skill level"] = "Nivel de habilidad técnica predeterminado del sitio"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica"; -App::$strings["Lock the technical skill level setting"] = "Bloquear el ajuste del nivel de habilidad técnica"; -App::$strings["Members can set their own technical comfort level by default"] = "Los miembros pueden configurar su nivel de comodidad técnica por defecto"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Se permite HTML/CSS/JS sin filtrar"; -App::$strings["Administrator Information"] = "Información del Administrador"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; -App::$strings["Site Information"] = "Información sobre el sitio"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; -App::$strings["System language"] = "Idioma del sistema"; -App::$strings["System theme"] = "Tema gráfico del sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema"; -App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como conexiones"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; -App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -App::$strings["Invitation only"] = "Solo con una invitación"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; -App::$strings["Minimum age"] = "Edad mínima"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; -App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; -App::$strings["Register text"] = "Texto del registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; -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."] = "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; -App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; -App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; -App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; -App::$strings["Force publish"] = "Forzar la publicación"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; -App::$strings["Import Public Streams"] = "Importar contenido público"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas."; -App::$strings["Site only Public Streams"] = "Solo contenido público en este sitio"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado."; -App::$strings["Login on Homepage"] = "Iniciar sesión en la página personal"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; -App::$strings["Enable context help"] = "Habilitar la ayuda contextual"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda."; -App::$strings["Reply-to email address for system generated email."] = "Dirección de respuesta para el correo electrónico generado por el sistema."; -App::$strings["Sender (From) email address for system generated email."] = "Dirección del remitente (From) para el correo electrónico generado por el sistema."; -App::$strings["Name of email sender for system generated email."] = "Nombre del remitente del correo electrónico generado por el sistema."; -App::$strings["Directory Server URL"] = "URL del servidor de directorio"; -App::$strings["Default directory server"] = "Servidor de directorio predeterminado"; -App::$strings["Proxy user"] = "Usuario del proxy"; -App::$strings["Proxy URL"] = "Dirección del proxy"; -App::$strings["Network timeout"] = "Tiempo de espera de la red"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; -App::$strings["Delivery interval"] = "Intervalo de entrega"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; -App::$strings["Deliveries per process"] = "Intentos de envío por proceso"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5."; -App::$strings["Queue Threshold"] = "Umbral de la cola de espera"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas."; -App::$strings["Poll interval"] = "Intervalo máximo de tiempo entre dos mensajes sucesivos"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega."; -App::$strings["Path to ImageMagick convert program"] = "Ruta al programa de conversión de ImageMagick"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Permitir miniaturas SVG en el navegador de archivos"; -App::$strings["WARNING: SVG images may contain malicious code."] = "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso."; -App::$strings["Maximum Load Average"] = "Carga media máxima"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; -App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros"; -App::$strings["Create this page first. Default is %s/register"] = "Crear esta página primero. Por defecto es %s/register"; -App::$strings["Page to display after creating a new channel"] = "Página a mostrar después de la creación de un nuevo canal"; -App::$strings["Recommend: profiles, go, or settings"] = "Recomendar: perfiles, ir, o ajustes"; -App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; -App::$strings["Region or country"] = "Región o país"; -App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; -App::$strings["Field nickname"] = "Alias del campo"; -App::$strings["System name of field"] = "Nombre del campo en el sistema"; -App::$strings["Input type"] = "Tipo de entrada"; -App::$strings["Field Name"] = "Nombre del campo"; -App::$strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; -App::$strings["Help text"] = "Texto de ayuda"; -App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; -App::$strings["Save"] = "Guardar"; -App::$strings["Field definition not found"] = "Definición del campo no encontrada"; -App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; -App::$strings["Profile Fields"] = "Campos del perfil"; -App::$strings["Basic Profile Fields"] = "Campos básicos del perfil"; -App::$strings["Advanced Profile Fields"] = "Campos avanzados del perfil"; -App::$strings["(In addition to basic fields)"] = "(Además de los campos básicos)"; -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["Password changed for account %d."] = "Ha cambiado la contraseña para la cuenta %d."; -App::$strings["Account settings updated."] = "Se han actualizado los ajustes de la cuenta."; -App::$strings["Account not found."] = "No se ha encontrado la cuenta."; -App::$strings["Account Edit"] = "Editar la cuenta"; -App::$strings["New Password"] = "Nueva contraseña"; -App::$strings["New Password again"] = "Nueva contraseña otra vez"; -App::$strings["Technical skill level"] = "Nivel de habilidad técnica"; -App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los correos electrónicos)"; -App::$strings["Service class"] = "Clase de servicio"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: "; -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."] = "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita."; -App::$strings["Security"] = "Seguridad"; -App::$strings["Block public"] = "Bloquear páginas públicas"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP"; -App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; -App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; -App::$strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; -App::$strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios"; -App::$strings["Allow communications only from these channels"] = "Permitir la comunicación solo desde estos canales"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; -App::$strings["Block communications from these channels"] = "Bloquear la comunicación desde estos canales"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Permitir contenido HTML sin filtrar sólo desde estos dominios "; -App::$strings["One site per line. By default embedded content is filtered."] = "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada."; -App::$strings["Block embedded HTML from these domains"] = "Bloquear contenido con HTML incorporado desde estos dominios"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["__ctx:acl__ Profile"] = "Perfil"; -App::$strings["Comment approved"] = "El comentario ha sido aprobado"; -App::$strings["Comment deleted"] = "Se ha eliminado el comentario"; -App::$strings["Permission Name is required."] = "Se requiere el nombre de la autorización"; -App::$strings["Permission category saved."] = "Se ha guardado la categoría del permiso."; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones."; -App::$strings["Permission Categories"] = "Tipos de permisos"; -App::$strings["Permission Name"] = "Nombre de la autorización"; -App::$strings["My Settings"] = "Mis ajustes"; -App::$strings["inherited"] = "heredado"; -App::$strings["Individual Permissions"] = "Permisos individuales"; -App::$strings["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."] = "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í."; -App::$strings["Friends"] = "Amigos/as"; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Nobody except yourself"] = "Nadie excepto usted"; -App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; -App::$strings["Approved connections"] = "Conexiones aprobadas"; -App::$strings["Any connections"] = "Cualquier conexión"; -App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; -App::$strings["Anybody in this network"] = "Cualquiera en esta red"; -App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; -App::$strings["Anybody on the internet"] = "Cualquiera en internet"; -App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -App::$strings["or"] = "o"; -App::$strings["Your channel address is"] = "Su dirección de canal es"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "Sus archivos y fotos son accesibles a través de WebDAV en "; -App::$strings["Channel Settings"] = "Ajustes del canal"; -App::$strings["Basic Settings"] = "Configuración básica"; -App::$strings["Full Name:"] = "Nombre completo:"; -App::$strings["Email Address:"] = "Dirección de correo electrónico:"; -App::$strings["Your Timezone:"] = "Su huso horario:"; -App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; -App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; -App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; -App::$strings["Adult Content"] = "Contenido solo para adultos"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; -App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; -App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; -App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; -App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; -App::$strings["Channel Permission Limits"] = "Límites de los permisos del canal"; -App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; -App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; -App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; -App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; -App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; -App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; -App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Privacy Group"] = "Grupo de canales predeterminado"; -App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; -App::$strings["Profile to assign new connections"] = "Perfil para asignar a las nuevas conexiones"; -App::$strings["Default Permissions Group"] = "Grupo de permisos predeterminados"; -App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; -App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; -App::$strings["Notification Settings"] = "Configuración de las notificaciones"; -App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; -App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; -App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; -App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; -App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; -App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; -App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; -App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; -App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; -App::$strings["You receive a private message"] = "Reciba un mensaje privado"; -App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; -App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; -App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; -App::$strings["Someone likes your post/comment"] = "Alguien muestre agrado por su entrada o comentario"; -App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; -App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; -App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; -App::$strings["Recommended"] = "Recomendado"; -App::$strings["Upcoming events"] = "Próximos eventos"; -App::$strings["Events today"] = "Eventos de hoy"; -App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; -App::$strings["Not available in all themes"] = "No disponible en todos los temas"; -App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; -App::$strings["System info messages"] = "Mensajes de información del sistema"; -App::$strings["System critical alerts"] = "Alertas críticas del sistema"; -App::$strings["New connections"] = "Nuevas conexiones"; -App::$strings["System Registrations"] = "Registros del sistema"; -App::$strings["Unseen shared files"] = "Ficheros compartidos no vistos"; -App::$strings["Unseen public activity"] = "Actividad pública no vista"; -App::$strings["Unseen likes and dislikes"] = "Los \"me gusta\" y \"no me gusta\" no vistos"; -App::$strings["Email notification hub (hostname)"] = "Email de notificación del hub (nombre del host)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos"; -App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; -App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; -App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; -App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; -App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; -App::$strings["Default file upload folder"] = "Carpeta por defecto de los ficheros subidos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; -App::$strings["Remove this channel."] = "Eliminar este canal."; -App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; -App::$strings["Start calendar week on Monday"] = "Comenzar el calendario semanal por el lunes"; -App::$strings["Additional Features"] = "Funcionalidades"; -App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad"; -App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; -App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; -App::$strings["Token saved."] = "Token salvado."; -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 private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; -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:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; -App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; -App::$strings["Login Name"] = "Nombre de inicio de sesión"; -App::$strings["Login Password"] = "Contraseña de inicio de sesión"; -App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; -App::$strings["Their Settings"] = "Sus ajustes"; -App::$strings["Name and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["Add OAuth2 application"] = "Añadir aplicación OAuth2"; -App::$strings["Name of application"] = "Nombre de la aplicación"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -App::$strings["Redirect"] = "Redirigir"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; -App::$strings["Grant Types"] = "Tipos de permisos"; -App::$strings["leave blank unless your application sepcifically requires this"] = "Dejar en blanco a menos que su aplicación lo requiera específicamente"; -App::$strings["Authorization scope"] = "Alcance de la autorización"; -App::$strings["OAuth2 Application not found."] = "No se ha encontrado la aplicación OAuth2."; -App::$strings["Add application"] = "Añadir aplicación"; -App::$strings["Connected OAuth2 Apps"] = "Aplicaciones OAuth2 conectadas"; -App::$strings["Client key starts with"] = "La \"client key\" empieza por"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Eliminar autorización"; -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."; -App::$strings["Technical skill level updated"] = "Se ha actualizado el nivel de habilidad técnica"; -App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; -App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; -App::$strings["Password changed."] = "Contraseña cambiada."; -App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; -App::$strings["Account Settings"] = "Configuración de la cuenta"; -App::$strings["Current Password"] = "Contraseña actual"; -App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; -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["Remove Account"] = "Eliminar cuenta"; -App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -App::$strings["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad."; -App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; -App::$strings["Default maximum affinity level"] = "Nivel máximo de afinidad por defecto"; -App::$strings["0-99 default 99"] = "0-99 por defecto 99"; -App::$strings["Default minimum affinity level"] = "Nivel mínimo de afinidad por defecto"; -App::$strings["0-99 - default 0"] = "0-99 - por defecto 0"; -App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad"; -App::$strings["Addon Settings"] = "Ajustes de los complementos"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Guarde o envíe los cambios a cualquier panel antes de abrir otro."; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Ajustes de visualización"; -App::$strings["Theme Settings"] = "Ajustes del tema"; -App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; -App::$strings["Content Settings"] = "Ajustes del contenido"; -App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; -App::$strings["Select scheme"] = "Elegir un esquema"; -App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; -App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; -App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; -App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; -App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; -App::$strings["Provide channel menu in navigation bar"] = "Proporcionar un menú de canales en la barra de navegación"; -App::$strings["Default: channel menu located in app menu"] = "Predeterminado: menú de canales ubicado en el menú de aplicaciones"; -App::$strings["Manual conversation updates"] = "Actualizaciones manuales de la conversación"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla"; -App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; -App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; -App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; -App::$strings["Name is required"] = "El nombre es obligatorio"; -App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Icon url"] = "Dirección del icono"; -App::$strings["Optional"] = "Opcional"; -App::$strings["Application not found."] = "Aplicación no encontrada."; -App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["View Photo"] = "Ver foto"; -App::$strings["Edit Album"] = "Editar álbum"; -App::$strings["Upload"] = "Subir"; -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["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["Permissions"] = "Permisos"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Connection added."] = "Se ha incorporado una conexión."; -App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; -App::$strings["Import completed."] = "Importación completada."; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; -App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -App::$strings["Move this channel (disable all previous locations)"] = "Mover este canal (desactivar todas las ubicaciones anteriores)"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importar unos meses de mensajes si es posible (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["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["Permissions denied."] = "Permisos denegados."; -App::$strings["Import"] = "Importar"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Security Code:"] = "Vuelva a su aplicación e introduzca 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["Item not available."] = "Elemento no disponible"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["vcard"] = "vcard"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Manage apps"] = "Gestionar las aplicaciones"; -App::$strings["Create new app"] = "Crear una nueva aplicación"; -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["Active"] = "Activo/a"; -App::$strings["Blocked"] = "Bloqueadas"; -App::$strings["Ignored"] = "Ignoradas"; -App::$strings["Hidden"] = "Ocultas"; -App::$strings["Archived/Unreachable"] = "Archivadas o inaccesibles"; -App::$strings["New"] = "Nuevas"; -App::$strings["All"] = "Todos/as"; -App::$strings["Active Connections"] = "Conexiones activas"; -App::$strings["Show active connections"] = "Mostrar las conexiones activas"; -App::$strings["New Connections"] = "Nuevas conexiones"; -App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; -App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; -App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; -App::$strings["Only show archived/unreachable connections"] = "Mostrar solo las conexiones archivadas o no localizables"; -App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; -App::$strings["Show all connections"] = "Mostrar todas las conexiones"; -App::$strings["Pending approval"] = "Pendiente de aprobación"; -App::$strings["Archived"] = "Archivadas"; -App::$strings["Not connected at this location"] = "No está conectado/a en esta ubicación"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Editar conexión"; -App::$strings["Delete connection"] = "Eliminar conexión"; -App::$strings["Channel address"] = "Dirección del canal"; -App::$strings["Network"] = "Red"; -App::$strings["Call"] = "Llamar"; -App::$strings["Status"] = "Estado"; -App::$strings["Connected"] = "Conectado/a"; -App::$strings["Approve connection"] = "Aprobar esta conexión"; -App::$strings["Ignore connection"] = "Ignorar esta conexión"; -App::$strings["Ignore"] = "Ignorar"; -App::$strings["Recent activity"] = "Actividad reciente"; -App::$strings["Connections"] = "Conexiones"; -App::$strings["Search your connections"] = "Buscar sus conexiones"; -App::$strings["Connections search"] = "Buscar conexiones"; -App::$strings["Find"] = "Encontrar"; -App::$strings["item"] = "elemento"; -App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -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"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; -App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; -App::$strings["Album not found."] = "Álbum no encontrado."; -App::$strings["Delete Album"] = "Borrar álbum"; -App::$strings["Delete Photo"] = "Borrar foto"; -App::$strings["No photos selected"] = "No hay fotos seleccionadas"; -App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; -App::$strings["Upload Photos"] = "Subir fotos"; -App::$strings["Enter an album name"] = "Introducir un nombre de álbum"; -App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; -App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida"; -App::$strings["Description (optional)"] = "Descripción (opcional)"; -App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; -App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; -App::$strings["Add Photos"] = "Añadir fotos"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -App::$strings["Photo not available"] = "Foto no disponible"; -App::$strings["Use as profile photo"] = "Usar como foto del perfil"; -App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; -App::$strings["Private Photo"] = "Foto privada"; -App::$strings["View Full Size"] = "Ver tamaño completo"; -App::$strings["Edit photo"] = "Editar foto"; -App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; -App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; -App::$strings["Move photo to album"] = "Mover la foto a un álbum"; -App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; -App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; -App::$strings["Add a Tag"] = "Añadir una etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; -App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; -App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; -App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -App::$strings["Please wait"] = "Espere por favor"; -App::$strings["This is you"] = "Este es usted"; -App::$strings["Comment"] = "Comentar"; -App::$strings["__ctx:title__ Likes"] = "Me gusta"; -App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; -App::$strings["__ctx:title__ Agree"] = "De acuerdo"; -App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; -App::$strings["__ctx:title__ Abstain"] = "Abstención"; -App::$strings["__ctx:title__ Attending"] = "Participaré"; -App::$strings["__ctx:title__ Not attending"] = "No participaré"; -App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; -App::$strings["View all"] = "Ver todo"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Me gusta", - 1 => "Me gusta", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "No me gusta", - 1 => "No me gusta", -); -App::$strings["Photo Tools"] = "Gestión de las fotos"; -App::$strings["In This Photo:"] = "En esta foto:"; -App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Me gusta"; -App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; -App::$strings["Close"] = "Cerrar"; -App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["Profile Unavailable."] = "Perfil no disponible"; -App::$strings["Not found"] = "No encontrado"; -App::$strings["Invalid channel"] = "Canal no válido"; -App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki"; -App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar"; -App::$strings["Error downloading wiki: "] = "Error al descargar el wiki: "; -App::$strings["Wikis"] = "Wikis"; -App::$strings["Download"] = "Descargar"; -App::$strings["Create New"] = "Crear"; -App::$strings["Wiki name"] = "Nombre del wiki"; -App::$strings["Content type"] = "Tipo de contenido"; -App::$strings["Markdown"] = "Markdown"; -App::$strings["BBcode"] = "BBcode"; -App::$strings["Text"] = "Texto"; -App::$strings["Type"] = "Tipo"; -App::$strings["Any type"] = "Cualquier tipo"; -App::$strings["Lock content type"] = "Tipo de contenido bloqueado"; -App::$strings["Create a status post for this wiki"] = "Crear un mensaje de estado para este wiki"; -App::$strings["Edit Wiki Name"] = "Editar el nombre del wiki"; -App::$strings["Wiki not found"] = "Wiki no encontrado"; -App::$strings["Rename page"] = "Renombrar la página"; -App::$strings["Error retrieving page content"] = "Error al recuperar el contenido de la página"; -App::$strings["New page"] = "Nueva página"; -App::$strings["Revision Comparison"] = "Comparación de revisiones"; -App::$strings["Revert"] = "Revertir"; -App::$strings["Short description of your changes (optional)"] = "Breve descripción de sus cambios (opcional)"; -App::$strings["Source"] = "Fuente"; -App::$strings["New page name"] = "Nombre de la nueva página"; -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["Error creating wiki. Invalid name."] = "Error al crear el wiki: el nombre no es válido."; -App::$strings["A wiki with this name already exists."] = "Ya hay un wiki con este nombre."; -App::$strings["Wiki created, but error creating Home page."] = "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio."; -App::$strings["Error creating wiki"] = "Error al crear el wiki"; -App::$strings["Error updating wiki. Invalid name."] = "Error al actualizar el wiki. Nombre no válido."; -App::$strings["Error updating wiki"] = "Error al actualizar el wiki"; -App::$strings["Wiki delete permission denied."] = "Se ha denegado el permiso para eliminar el wiki."; -App::$strings["Error deleting wiki"] = "Se ha producido un error al eliminar el wiki"; -App::$strings["New page created"] = "Se ha creado la nueva página"; -App::$strings["Cannot delete Home"] = "No se puede eliminar la página principal"; -App::$strings["Current Revision"] = "Revisión actual"; -App::$strings["Selected Revision"] = "Revisión seleccionada"; -App::$strings["You must be authenticated."] = "Debe estar autenticado."; -App::$strings["toggle full screen mode"] = "cambiar al modo de pantalla completa"; -App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -App::$strings["(modified)"] = "(modificado)"; -App::$strings["Reset"] = "Reiniciar"; -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["Edit another layout"] = "Editar otro diseño"; -App::$strings["System layout"] = "Diseño del sistema"; -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["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; -App::$strings["Profile Photos"] = "Fotos del perfil"; -App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; -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["Unable to process image"] = "No ha sido posible procesar la imagen"; -App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; -App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; -App::$strings["Photo not available."] = "Foto no disponible."; -App::$strings["Upload File:"] = "Subir fichero:"; -App::$strings["Select a profile:"] = "Seleccionar un perfil:"; -App::$strings["Use Photo for Profile"] = "Usar la fotografía para el perfil"; -App::$strings["Change Profile Photo"] = "Cambiar la foto del perfil"; -App::$strings["Use"] = "Usar"; -App::$strings["Use a photo from your albums"] = "Usar una foto de sus álbumes"; -App::$strings["Select existing photo"] = "Seleccionar una foto existente"; -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["Away"] = "Ausente"; -App::$strings["Online"] = "Conectado/a"; -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["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; -App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; -App::$strings["Your comment is awaiting approval."] = "Su comentario está pendiente de aprobación."; -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["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["requires approval"] = "requiere aprobación"; -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["shared a file with you"] = "compartió un archivo con usted"; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Page not found."] = "Página no encontrada."; -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["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."; -App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -App::$strings["is now connected to"] = "ahora está conectado/a"; -App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; -App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; -App::$strings["View Profile"] = "Ver el perfil"; -App::$strings["View %s's profile"] = "Ver el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recargar los permisos"; -App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -App::$strings["Refresh Photo"] = "Actualizar la foto"; -App::$strings["Fetch updated photo"] = "Obtener una foto actualizada"; -App::$strings["Recent Activity"] = "Actividad reciente"; -App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -App::$strings["Unignore"] = "Dejar de ignorar"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -App::$strings["Unarchive"] = "Desarchivar"; -App::$strings["Archive"] = "Archivar"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; -App::$strings["Unhide"] = "Mostrar"; -App::$strings["Hide"] = "Ocultar"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -App::$strings["Delete this connection"] = "Eliminar esta conexión"; -App::$strings["Fetch Vcard"] = "Obtener una vcard"; -App::$strings["Fetch electronic calling card for this connection"] = "Obtener una tarjeta de llamada electrónica para esta conexión"; -App::$strings["Open Individual Permissions section by default"] = "Abrir la sección de permisos individuales por defecto"; -App::$strings["Affinity"] = "Afinidad"; -App::$strings["Open Set Affinity section by default"] = "Abrir por defecto la sección para definir la afinidad"; -App::$strings["Me"] = "Yo"; -App::$strings["Family"] = "Familia"; -App::$strings["Acquaintances"] = "Conocidos/as"; -App::$strings["Filter"] = "Filtrar"; -App::$strings["Open Custom Filter section by default"] = "Abrir por defecto la sección de personalización de filtros"; -App::$strings["Approve this connection"] = "Aprobar esta conexión"; -App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -App::$strings["Set Affinity"] = "Ajustar la afinidad"; -App::$strings["Set Profile"] = "Ajustar el perfil"; -App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; -App::$strings["This connection is unreachable from this location."] = "No se puede acceder a la conexión desde este sitio."; -App::$strings["This connection may be unreachable from other channel locations."] = "Esta conexión puede ser inaccesible desde otras ubicaciones del canal."; -App::$strings["Location independence is not supported by their network."] = "La independencia de ubicación no es compatible con su red."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red."; -App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; -App::$strings["Connection: %s"] = "Conexión: %s"; -App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; -App::$strings["Permission role"] = "Rol de acceso"; -App::$strings["Loading"] = "Cargando"; -App::$strings["Add permission role"] = "Añadir un rol de acceso"; -App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; -App::$strings["Available locations:"] = "Ubicaciones disponibles:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; -App::$strings["Connection Tools"] = "Gestión de las conexiones"; -App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; -App::$strings["Rating"] = "Valoración"; -App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -App::$strings["Custom Filter"] = "Filtro personalizado"; -App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; -App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; -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["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["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["Details"] = "Detalles"; -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["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["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Files"] = "Ficheros"; -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["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["Layouts"] = "Plantillas"; -App::$strings["Help"] = "Ayuda"; -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["Please refresh page"] = "Por favor, recargue la página"; -App::$strings["Unknown error"] = "Error desconocido"; -App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; -App::$strings["Email Verification Required"] = "Verificación obligatoria del correo electrónico"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje."; -App::$strings["Resend Email"] = "Reenvío de correo electrónico"; -App::$strings["Validation token"] = "Token de validación"; -App::$strings["Post not found."] = "Mensaje no encontrado."; -App::$strings["post"] = "la entrada"; -App::$strings["comment"] = "el comentario"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; -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["If enabled, connection requests will be approved without your interaction"] = "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención."; -App::$strings["Automatic approval settings"] = "Opciones de autorización automática"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad."; -App::$strings["Unknown App"] = "Aplicación desconocida"; -App::$strings["Authorize"] = "Autorizar"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "¿Autoriza a la aplicación %s a acceder a los datos de su canal?"; -App::$strings["Allow"] = "Permitir"; -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."; -App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Create a group of channels."] = "Crear un grupo de canales."; -App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; -App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; -App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; -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["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["Gender"] = "Género"; -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["Relationship"] = "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["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["Homepage URL"] = "Dirección de la página personal"; -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["Communications"] = "Comunicaciones"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["This page is available only to site members"] = "Esta página está disponible sólo para los miembros del sitio"; -App::$strings["Welcome"] = "Bienvenido/a"; -App::$strings["What would you like to do?"] = "¿Qué le gustaría hacer?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro."; -App::$strings["Upload a profile photo"] = "Subir una foto de perfil"; -App::$strings["Upload a cover photo"] = "Subir una foto de portada del perfil"; -App::$strings["Edit your default profile"] = "Editar su perfil por defecto"; -App::$strings["View friend suggestions"] = "Ver sugerencias de amistad"; -App::$strings["View the channel directory"] = "Ver el directorio de canales"; -App::$strings["View/edit your channel settings"] = "Ver o modificar los ajustes de su canal"; -App::$strings["View the site or project documentation"] = "Ver el sitio o la documentación del proyecto"; -App::$strings["Visit your channel homepage"] = "Visitar la página principal de su canal"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca"; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Ver el \"stream\" público. Advertencia: este contenido no está moderado"; -App::$strings["Page link"] = "Enlace de la página"; -App::$strings["Edit Webpage"] = "Editar la página web"; -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 solicitudes de conexión"; -App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Cards"] = "Fichas"; -App::$strings["Add Card"] = "Añadir una ficha"; -App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["About this site"] = "Acerca de este sitio"; -App::$strings["Site Name"] = "Nombre del sitio"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["Terms of Service"] = "Términos del servicio"; -App::$strings["Software and Project information"] = "Información sobre el software y el proyecto"; -App::$strings["This site is powered by \$Projectname"] = "Este sitio funciona con \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Servicios federados y descentralizados de identidad y redes proporcionados por Zot"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Project homepage"] = "Página principal del proyecto"; -App::$strings["Developer homepage"] = "Página principal del desarrollador"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; -App::$strings["Import selected"] = "Importar elementos seleccionados"; -App::$strings["Export Webpage Elements"] = "Exportar elementos de una página web"; -App::$strings["Export selected"] = "Exportar los elementos seleccionados"; -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["Invalid file type."] = "Tipo de fichero no válido."; -App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido zip"; -App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; -App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; -App::$strings["Import complete."] = "Importación completada."; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta."; -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["Change channel nickname/address"] = "Cambiar el alias o la dirección del canal"; -App::$strings["Any/all connections on other networks will be lost!"] = "¡Cualquier/todas las conexiones en otras redes se perderán!"; -App::$strings["New channel address"] = "Nueva dirección del canal"; -App::$strings["Rename Channel"] = "Renombrar el canal"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; -App::$strings["Invalid message"] = "Mensaje no válido"; -App::$strings["no results"] = "sin resultados"; -App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; -App::$strings["queued"] = "encolado"; -App::$strings["posted"] = "enviado"; -App::$strings["accepted for delivery"] = "aceptado para el envío"; -App::$strings["updated"] = "actualizado"; -App::$strings["update ignored"] = "actualización ignorada"; -App::$strings["permission denied"] = "permiso denegado"; -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"] = "Opciones"; -App::$strings["Redeliver"] = "Volver a enviar"; -App::$strings["Failed to create source. No channel selected."] = "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal."; -App::$strings["Source created."] = "Fuente creada."; -App::$strings["Source updated."] = "Fuente actualizada."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; -App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; -App::$strings["New Source"] = "Nueva fuente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; -App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; -App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; -App::$strings["Channel Name"] = "Nombre del canal"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)"; -App::$strings["Source not found."] = "Fuente no encontrada"; -App::$strings["Edit Source"] = "Editar fuente"; -App::$strings["Delete Source"] = "Eliminar fuente"; -App::$strings["Source removed"] = "Fuente eliminada"; -App::$strings["Unable to remove source."] = "No se puede eliminar la fuente."; -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["%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["No default suggestions were found."] = "No se encontraron sugerencias por defecto."; -App::$strings["%d rating"] = array( - 0 => "%d valoración", - 1 => "%d valoraciones", -); -App::$strings["Gender: "] = "Género:"; -App::$strings["Status: "] = "Estado:"; -App::$strings["Homepage: "] = "Página personal:"; -App::$strings["Age:"] = "Edad:"; -App::$strings["Location:"] = "Ubicación:"; -App::$strings["Description:"] = "Descripción:"; -App::$strings["Hometown:"] = "Lugar de nacimiento:"; -App::$strings["About:"] = "Sobre mí:"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Public Forum:"] = "Foro público:"; -App::$strings["Keywords: "] = "Palabras clave:"; -App::$strings["Don't suggest"] = "No sugerir:"; -App::$strings["Common connections (estimated):"] = "Conexiones comunes (estimadas): "; -App::$strings["Global Directory"] = "Directorio global:"; -App::$strings["Local Directory"] = "Directorio local:"; -App::$strings["Finding:"] = "Encontrar:"; -App::$strings["Channel Suggestions"] = "Sugerencias de canales"; -App::$strings["next page"] = "siguiente página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["Sort options"] = "Ordenar opciones"; -App::$strings["Alphabetic"] = "Alfabético"; -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["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["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["Unable to lookup recipient."] = "No se puede asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "No se puede establecer la comunicación 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"] = "mensaje"; -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["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["Rate"] = "Valorar"; -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["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; -App::$strings["Save Bookmark"] = "Guardar marcador"; -App::$strings["URL of bookmark"] = "Dirección del marcador"; -App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; -App::$strings["Enter a folder name"] = "Escriba un nombre de carpeta"; -App::$strings["or select an existing folder (doubleclick)"] = "o seleccione una (con un doble click)"; -App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; -App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; -App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; -App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; -App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; -App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; -App::$strings["I am over %s years of age and accept the %s for this website"] = "Tengo más de %s años de edad y acepto los %s de este sitio web"; -App::$strings["Your email address"] = "Su dirección de correo electrónico"; -App::$strings["Choose a password"] = "Elija una contraseña"; -App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; -App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -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 requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; -App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; -App::$strings["female"] = "mujer"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["male"] = "hombre"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["cover photo"] = "Imagen de portada del perfil"; -App::$strings["Change Cover Photo"] = "Cambiar la foto de portada del perfil"; -App::$strings["Documentation Search"] = "Búsqueda de Documentación"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Administrators"] = "Administradores"; -App::$strings["Developers"] = "Desarrolladores"; -App::$strings["Tutorials"] = "Tutoriales"; -App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -App::$strings["Contents"] = "Contenidos"; -App::$strings["Article"] = "Artículo"; -App::$strings["Item has been removed."] = "Se ha eliminado el elemento."; -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["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["Invalid channel."] = "El canal no es válido."; -App::$strings["network"] = "red"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; -App::$strings["Permission Denied."] = "Permiso denegado"; -App::$strings["File not found."] = "Fichero no encontrado."; -App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; -App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; -App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; -App::$strings["Return to file list"] = "Volver a la lista de ficheros"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; -App::$strings["Share this file"] = "Compartir este fichero"; -App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; -App::$strings["Show in your contacts shared folder"] = "Mostrar en la carpeta compartida con sus contactos"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["No connections in common."] = "Ninguna conexión en común."; -App::$strings["View Common Connections"] = "Ver las conexiones comunes"; -App::$strings["Email verification resent"] = "Reenvío del email de verificación"; -App::$strings["Unable to resend email verification message."] = "No se puede reenviar el mensaje de verificación por correo electrónico."; -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["Blocked accounts"] = "Cuentas bloqueadas"; -App::$strings["Expired accounts"] = "Cuentas caducadas"; -App::$strings["Expiring accounts"] = "Cuentas que caducan"; -App::$strings["Clones"] = "Clones"; -App::$strings["Message queues"] = "Mensajes en cola"; -App::$strings["Your software should be updated"] = "Debe actualizar su software"; -App::$strings["Summary"] = "Sumario"; -App::$strings["Registered accounts"] = "Cuentas registradas"; -App::$strings["Pending registrations"] = "Registros pendientes"; -App::$strings["Registered channels"] = "Canales registrados"; -App::$strings["Active plugins"] = "Extensiones (plugins) activas"; -App::$strings["Version"] = "Versión"; -App::$strings["Repository version (master)"] = "Versión del repositorio (master)"; -App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; -App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; -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["Edit Card"] = "Editar la ficha"; -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["Mark all seen"] = "Marcar todo como visto"; -App::$strings["0. Beginner/Basic"] = "0. Principiante/Básico"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novato: no cualificado, pero dispuesto a aprender"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermedio - algo cómodo"; -App::$strings["3. Advanced - very comfortable"] = "3. Avanzado - muy cómodo"; -App::$strings["4. Expert - I can write computer code"] = "4. Experto - Puedo escribir código informático"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Colaborador - probablemente sé más que tú"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Report Bug"] = "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["Activity"] = "Actividad"; -App::$strings["Wiki"] = "Wiki"; -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["Language"] = "Idioma"; -App::$strings["Post"] = "Publicación"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Purchase"] = "Comprar"; -App::$strings["Undelete"] = "Recuperar"; -App::$strings["Add to app-tray"] = "Añadir a la bandeja de aplicaciones"; -App::$strings["Remove from app-tray"] = "Quitar de la bandeja de aplicaciones"; -App::$strings["Pin to navbar"] = "Fijar en la barra de navegación"; -App::$strings["Unpin from navbar"] = "Quitar de la barra de navegación"; -App::$strings["__ctx:permcat__ default"] = "por defecto"; -App::$strings["__ctx:permcat__ follower"] = "seguidor"; -App::$strings["__ctx:permcat__ contributor"] = "contribuidor"; -App::$strings["__ctx:permcat__ publisher"] = "editor"; -App::$strings["(No Title)"] = "(Sin título)"; -App::$strings["Wiki page create failed."] = "Se ha producido un error en la creación de la página wiki."; -App::$strings["Wiki not found."] = "No se ha encontrado el wiki."; -App::$strings["Destination name already exists"] = "El nombre de destino ya existe"; -App::$strings["Page not found"] = "No se ha encontrado la página"; -App::$strings["Error reading page content"] = "Se ha producido un error al leer el contenido de la página"; -App::$strings["Error reading wiki"] = "Se ha producido un error al leer el wiki"; -App::$strings["Page update failed."] = "Se ha producido un error al actualizar la página."; -App::$strings["Nothing deleted"] = "No se ha eliminado nada"; -App::$strings["Compare: object not found."] = "No se ha encontrado un objeto para comparar."; -App::$strings["Page updated"] = "Se ha actualizado la página"; -App::$strings["Untitled"] = "Sin título"; -App::$strings["Wiki resource_id required for git commit"] = "Se necesita Wiki resource_id para el git commit"; -App::$strings["__ctx:wiki_history__ Message"] = "Mensaje"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -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["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."; -App::$strings["Room not found."] = "Sala no encontrada."; -App::$strings["Room is full"] = "La sala está llena."; -App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gracias,"; -App::$strings["%s Administrator"] = "%s Administrador"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "Este email ha sido enviado por %1\$s a %2\$s."; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "Para dejar de recibir estos mensajes, por favor, ajuste su %s"; -App::$strings["%s "] = "%s "; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Aviso] Nuevo correo recibido en %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s le ha enviado un nuevo mensaje privado en %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; -App::$strings["a private message"] = "un mensaje privado"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -App::$strings["commented on"] = "ha comentado sobre "; -App::$strings["liked"] = "ha gustado de "; -App::$strings["disliked"] = "no ha gustado de "; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s%2\$s [zrl=%3\$s ]un %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s[zrl=%3\$s]%5\$s de %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]su %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Comentario moderado en la conversación #%1\$d por %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sha comentado un elemento/conversación que ha estado siguiendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -App::$strings["Please visit %s to approve or reject this comment."] = "Por favor, visite %s para aprobar o rechazar este comentario."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "A %1\$sle ha gustado [zrl=%2\$s]su %3\$s [/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] \"Me gusta\" de %2\$s en la conversación #%1\$d"; -App::$strings["%1\$s liked an item/conversation you created."] = "A %1\$s le ha gustado un elemento o conversación que ha creado usted."; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha publicado en su muro en %2\$s"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$sha publicado en [zrl=%2\$s]su muro[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Aviso] %s le ha etiquetado"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sle ha etiquetado en %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]le ha etiquetado[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Aviso] %1\$s le ha dado un toque"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$sle ha dado un toque en %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s] le ha dado un toque[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Aviso] %s ha etiquetado su entrada"; -App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$sha etiquetado su entrada en %2\$s"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha etiquetado [zrl=%2\$s]su entrada[/zrl]"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Aviso] Ha recibido una solicitud de conexión"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Ha recibido una nueva solicitud de conexión de '%1\$s' en %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Ha recibido [zrl=%1\$s]una nueva solicitud de conexión[/zrl] de %2\$s."; -App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Aviso] Ha recibido una sugerencia de conexión"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ha recibido una sugerencia de amistad de '%1\$s' en %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Ha recibido [zrl=%1\$s]una sugerencia de amistad[/zrl] para %2\$s de %3\$s."; -App::$strings["Name:"] = "Nombre:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname: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["edited a post dated %s"] = "ha editado una entrada fechada el %s"; -App::$strings["edited a comment dated %s"] = "ha editado un comentario fechado el %s"; -App::$strings["Wiki updated successfully"] = "El wiki se ha actualizado con éxito"; -App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito los ficheros del wiki"; -App::$strings["Update Error at %s"] = "Error de actualización en %s"; -App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; -App::$strings["Private Message"] = "Mensaje Privado"; -App::$strings["Select"] = "Seleccionar"; -App::$strings["I will attend"] = "Participaré"; -App::$strings["I will not attend"] = "No participaré"; -App::$strings["I might attend"] = "Quizá participe"; -App::$strings["I agree"] = "Estoy de acuerdo"; -App::$strings["I disagree"] = "No estoy de acuerdo"; -App::$strings["I abstain"] = "Me abstengo"; -App::$strings["Add Star"] = "Destacar añadiendo una estrella"; -App::$strings["Remove Star"] = "Eliminar estrella"; -App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; -App::$strings["starred"] = "preferidas"; -App::$strings["Message signature validated"] = "Firma de mensaje validada"; -App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; -App::$strings["Add Tag"] = "Añadir etiqueta"; -App::$strings["like"] = "me gusta"; -App::$strings["dislike"] = "no me gusta"; -App::$strings["Share This"] = "Compartir esto"; -App::$strings["share"] = "compartir"; -App::$strings["Delivery Report"] = "Informe de transmisión"; -App::$strings["%d comment"] = array( - 0 => "%d comentario", - 1 => "%d comentarios", -); -App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "mediante"; -App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["from %s"] = "desde %s"; -App::$strings["last edited: %s"] = "último cambio: %s"; -App::$strings["Expires: %s"] = "Caduca: %s"; -App::$strings["Attend"] = "Participar o asistir"; -App::$strings["Attendance Options"] = "Opciones de participación o asistencia"; -App::$strings["Vote"] = "Votar"; -App::$strings["Voting Options"] = "Opciones de votación"; -App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; -App::$strings["Add to Calendar"] = "Añadir al calendario"; -App::$strings["This is an unsaved preview"] = "Esta es una previsualización sin guardar"; -App::$strings["%s show all"] = "%s mostrar todo"; -App::$strings["Bold"] = "Negrita"; -App::$strings["Italic"] = "Itálico "; -App::$strings["Underline"] = "Subrayar"; -App::$strings["Quote"] = "Citar"; -App::$strings["Code"] = "Código"; -App::$strings["Image"] = "Imagen"; -App::$strings["Attach File"] = "Fichero adjunto"; -App::$strings["Insert Link"] = "Insertar enlace"; -App::$strings["Video"] = "Vídeo"; -App::$strings["Your full name (required)"] = "Su nombre completo (requerido)"; -App::$strings["Your email address (required)"] = "Su dirección de correo electrónico (requerido)"; -App::$strings["Your website URL (optional)"] = "La URL de su sitio web (opcional)"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; -App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; -App::$strings["parent"] = "padre"; -App::$strings["Collection"] = "Colección"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Libreta de direcciones"; -App::$strings["Calendar"] = "Calendario"; -App::$strings["Schedule Inbox"] = "Programar bandeja de entrada"; -App::$strings["Schedule Outbox"] = "Programar bandeja de salida"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Compartido"; -App::$strings["Add Files"] = "Añadir ficheros"; -App::$strings["You are using %1\$s of your available file storage."] = "Está usando %1\$s de su espacio disponible para ficheros."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Está usando %1\$s de %2\$s que tiene a su disposición para ficheros. (%3\$s%)"; -App::$strings["WARNING:"] = "ATENCIÓN: "; -App::$strings["Create new folder"] = "Crear nueva carpeta"; -App::$strings["Upload file"] = "Subir fichero"; -App::$strings["Drop files here to immediately upload"] = "Arrastre los ficheros aquí para subirlos de forma inmediata"; -App::$strings["Forums"] = "Foros"; -App::$strings["Select Channel"] = "Seleccionar un canal"; -App::$strings["Read-write"] = "Lectura y escritura"; -App::$strings["Read-only"] = "Sólo lectura"; -App::$strings["My Calendars"] = "Mis calendarios"; -App::$strings["Shared Calendars"] = "Calendarios compartidos"; -App::$strings["Share this calendar"] = "Compartir este calendario"; -App::$strings["Calendar name and color"] = "Nombre y color del calendario"; -App::$strings["Create new calendar"] = "Crear un nuevo calendario"; -App::$strings["Calendar Name"] = "Nombre del calendario"; -App::$strings["Calendar Tools"] = "Gestión de calendarios"; -App::$strings["Import calendar"] = "Importar un calendario"; -App::$strings["Select a calendar to import to"] = "Seleccionar un calendario para importarlo"; -App::$strings["Addressbooks"] = "Agenda de direcciones"; -App::$strings["Addressbook name"] = "Nombre de la agenda"; -App::$strings["Create new addressbook"] = "Crear una nueva agenda de direcciones"; -App::$strings["Addressbook Name"] = "Nombre de la agenda"; -App::$strings["Addressbook Tools"] = "Gestión de agendas de direcciones"; -App::$strings["Import addressbook"] = "Importar una agenda de direcciones"; -App::$strings["Select an addressbook to import to"] = "Seleccionar una agenda para importarla"; -App::$strings["Categories"] = "Temas"; -App::$strings["Everything"] = "Todo"; -App::$strings["Events Tools"] = "Gestión de eventos"; -App::$strings["Export Calendar"] = "Exportar el calendario"; -App::$strings["Import Calendar"] = "Importar un calendario"; -App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -App::$strings["HQ Control Panel"] = "Panel de control de HQ"; -App::$strings["Create a new post"] = "Crear una nueva entrada"; -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["Chatrooms"] = "Salas de chat"; -App::$strings["Overview"] = "Resumen"; -App::$strings["Rating Tools"] = "Valoraciones"; -App::$strings["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["__ctx:widget__ Activity"] = "Actividad"; -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["Wiki List"] = "Lista de wikis"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Received Messages"] = "Mensajes recibidos"; -App::$strings["Sent Messages"] = "Enviar mensajes"; -App::$strings["Conversations"] = "Conversaciones"; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["Chat Members"] = "Miembros del chat"; -App::$strings["photo/image"] = "foto/imagen"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["add"] = "añadir"; -App::$strings["Notes"] = "Notas"; -App::$strings["Add new page"] = "Añadir una nueva página"; -App::$strings["Wiki Pages"] = "Páginas del wiki"; -App::$strings["Page name"] = "Nombre de la página"; -App::$strings["Refresh"] = "Recargar"; -App::$strings["Tasks"] = "Tareas"; -App::$strings["Suggestions"] = "Sugerencias"; -App::$strings["See more..."] = "Ver más..."; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Click to show more"] = "Hacer clic para ver más"; -App::$strings["Tags"] = "Etiquetas"; -App::$strings["Profile Creation"] = "Creación de perfiles"; -App::$strings["Upload profile photo"] = "Cargar la foto del perfil"; -App::$strings["Upload cover photo"] = "Cargar la foto de portada del perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Find and Connect with others"] = "Encontrar y conectarse con otros"; -App::$strings["View the directory"] = "Ver el directorio"; -App::$strings["Manage your connections"] = "Gestionar sus conexiones"; -App::$strings["Communicate"] = "Comunicarse"; -App::$strings["View your channel homepage"] = "Ver la página principal de su canal"; -App::$strings["View your network stream"] = "Ver el \"stream\" de su red"; -App::$strings["Documentation"] = "Documentación"; -App::$strings["View public stream"] = "Ver el \"stream\" público"; -App::$strings["New Member Links"] = "Enlaces para nuevos miembros"; -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["Account settings"] = "Configuración de la cuenta"; -App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Addon settings"] = "Ajustes de los 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["OAuth1 apps"] = "Aplicaciones OAuth1"; -App::$strings["OAuth2 apps"] = "Aplicaciones OAuth2"; -App::$strings["Permission Groups"] = "Grupos de permisos"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -App::$strings["New Network Activity"] = "Nueva actividad en la red"; -App::$strings["New Network Activity Notifications"] = "Avisos de nueva actividad en la red"; -App::$strings["View your network activity"] = "Ver su actividad en la red"; -App::$strings["Mark all notifications read"] = "Marcar todas las notificaciones como leídas"; -App::$strings["Show new posts only"] = "Mostrar solo las entradas nuevas"; -App::$strings["Filter by name"] = "Filtrar por nombre"; -App::$strings["New Home Activity"] = "Nueva actividad en su página principal"; -App::$strings["New Home Activity Notifications"] = "Avisos de nueva actividad en su página principal"; -App::$strings["View your home activity"] = "Ver su actividad en su página principal"; -App::$strings["Mark all notifications seen"] = "Marcar todas las notificaciones como vistas"; -App::$strings["New Mails"] = "Nuevos mensajes de correo"; -App::$strings["New Mails Notifications"] = "Avisos de nuevos mensajes de correo"; -App::$strings["View your private mails"] = "Ver sus correos privados"; -App::$strings["Mark all messages seen"] = "Marcar todos los mensajes como vistos"; -App::$strings["New Events"] = "Eventos nuevos"; -App::$strings["New Events Notifications"] = "Avisos de nuevos eventos"; -App::$strings["View events"] = "Ver los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["New Connections Notifications"] = "Avisos de nuevas conexiones"; -App::$strings["View all connections"] = "Ver todas las conexiones"; -App::$strings["New Files"] = "Ficheros nuevos"; -App::$strings["New Files Notifications"] = "Avisos de nuevos ficheros"; -App::$strings["Notices"] = "Avisos"; -App::$strings["View all notices"] = "Ver todos los avisos"; -App::$strings["Mark all notices seen"] = "Marcar como leídos todos los avisos"; -App::$strings["New Registrations"] = "Registros nuevos"; -App::$strings["New Registrations Notifications"] = "Notificaciones de nuevos registros"; -App::$strings["Public Stream Notifications"] = "Avisos del \"stream\" público"; -App::$strings["View the public stream"] = "Ver el \"stream\" público"; -App::$strings["Sorry, you have got no notifications at the moment"] = "Lo sentimos, por el momento no ha recibido ninguna notificación"; -App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; -App::$strings["Create an account to access services and applications"] = "Crear una cuenta para acceder a los servicios y aplicaciones"; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["Login/Email"] = "Inicio de sesión / Correo electrónico"; -App::$strings["Password"] = "Contraseña"; -App::$strings["Remember me"] = "Recordarme"; -App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Error SSL del sitio web en %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Las tareas de Cron no están funcionando en %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando."; -App::$strings["never"] = "nunca"; -App::$strings["Cover Photo"] = "Imagen de portada del perfil"; -App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; -App::$strings["Theme settings"] = "Ajustes del tema"; -App::$strings["Narrow navbar"] = "Estrechar la barra de navegación"; -App::$strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; -App::$strings["Navigation bar icon color "] = "Color del icono de la barra de navegación"; -App::$strings["Navigation bar active icon color "] = "Color del icono activo de la barra de navegación"; -App::$strings["Link color"] = "Color del enlace"; -App::$strings["Set font-color for banner"] = "Ajustar el color del tipo de letra para el \"banner\""; -App::$strings["Set the background color"] = "Ajustar el color de fondo"; -App::$strings["Set the background image"] = "Ajustar la imagen de fondo"; -App::$strings["Set the background color of items"] = "Ajustar el color de los elementos de fondo"; -App::$strings["Set the background color of comments"] = "Ajustar el color de fondo de los comentarios"; -App::$strings["Set font-size for the entire application"] = "Ajustar el tamaño de letra para toda la aplicación"; -App::$strings["Examples: 1rem, 100%, 16px"] = "Ejemplos: 1rem, 100%, 16px"; -App::$strings["Set font-color for posts and comments"] = "Establecer el color de la letra para publicaciones y comentarios"; -App::$strings["Set radius of corners"] = "Establecer el radio de curvatura de las esquinas"; -App::$strings["Example: 4px"] = "Ejemplo: 4px"; -App::$strings["Set shadow depth of photos"] = "Ajustar la profundidad de sombras de las fotos"; -App::$strings["Set maximum width of content region in pixel"] = "Ajustar la anchura máxima de la región de contenido, en pixels"; -App::$strings["Leave empty for default width"] = "Dejar en blanco para la anchura predeterminada"; -App::$strings["Left align page content"] = "Alinear a la izquierda el contenido de la página"; -App::$strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación"; -App::$strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor"; -App::$strings["Errors encountered deleting database table "] = "Errores encontrados al eliminar la tabla de la base de datos"; -App::$strings["Submit Settings"] = "Enviar los ajustes"; -App::$strings["Drop tables when uninstalling?"] = "¿Eliminar tablas al desinstalar?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Si se selecciona, las tablas de la base de datos Rendezvous se eliminarán cuando se desinstale el plugin."; -App::$strings["Mapbox Access Token"] = "Token de acceso de Mapbox"; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Si introduce un token de acceso a Mapbox, se utilizará para recuperar los mapas de mosaicos de imágenes de Mapbox en lugar del servidor de mosaico de imágenes OpenStreetMap predeterminado."; -App::$strings["Rendezvous"] = "Rendezvous"; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Esta identidad ha sido eliminada por otro miembro debido a su inactividad. Pulse el botón \"Nueva identidad\" o actualice la página para registrar una nueva identidad. Puede usar el mismo nombre."; -App::$strings["Welcome to Rendezvous!"] = "¡Bienvenido/a a Rendevous!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Introduzca tu nombre para unirse a esta cita. Para comenzar a compartir su ubicación con los demás miembros, pulse en el control GPS. Cuando se descubra su ubicación, aparecerá un punto rojo y otros podrán verlo en el mapa."; -App::$strings["Let's meet here"] = "Reunámonos aquí"; -App::$strings["New marker"] = "Nuevo marcador"; -App::$strings["Edit marker"] = "Editar un marcador"; -App::$strings["New identity"] = "Nueva identidad"; -App::$strings["Delete marker"] = "Eliminar un marcador"; -App::$strings["Delete member"] = "Eliminar un miembro"; -App::$strings["Edit proximity alert"] = "Editar alerta de proximidad"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Se emitirá una alerta de proximidad cuando este miembro esté dentro de un radio determinado respecto a usted.

Ingrese el radio en metros (0 para deshabilitar):"; -App::$strings["distance"] = "distancia"; -App::$strings["Proximity alert distance (meters)"] = "Distancia (en metros) para la alerta de proximidad"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Se emitirá una alerta de proximidad cuando usted esté dentro de un radio determinado respecto al marcador de localización.

Ingrese el radio en metros (0 para deshabilitar):"; -App::$strings["Marker proximity alert"] = "Marcador de alerta de proximidad"; -App::$strings["Reminder note"] = "Recordatorio"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Introduzca una nota que se mostrará cuando esté dentro de la proximidad especificada..."; -App::$strings["Add new rendezvous"] = "Añadir una nueva cita"; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Cree una nueva cita y comparta los enlaces de acceso con los que desea invitar al grupo. Aquellos que abran el enlace se convertirán en miembros de la cita. Pueden ver otras ubicaciones de miembros, añadir marcadores al mapa o compartir sus propias ubicaciones con el grupo."; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!"; -App::$strings["Some setting"] = "Algunos ajustes"; -App::$strings["A setting"] = "Un ajuste"; -App::$strings["Skeleton Settings"] = "Ajustes de Skeleton"; -App::$strings["GNU-Social Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo de GNU-Social."; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos."; -App::$strings["Enable the GNU-Social protocol for this channel"] = "Activar el protocolo de GNU-Social para este canal"; -App::$strings["GNU-Social Protocol Settings"] = "Ajustes del protocolo de GNU-Social"; -App::$strings["Follow"] = "Seguir"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s está siguiendo ahora a %2\$s"; -App::$strings["Planets Settings updated."] = "Se han guardado los ajustes de Planets."; -App::$strings["Enable Planets Plugin"] = "Habilitar el plugin Planets"; -App::$strings["Planets Settings"] = "Ajustes de Planets"; -App::$strings["System defaults:"] = "Valores predeterminados del sistema: "; -App::$strings["Preferred Clipart IDs"] = "IDs de las imágenes clipart preferidas"; -App::$strings["List of preferred clipart ids. These will be shown first."] = "Lista de ids de imágenes de clipart preferidas. Se verán en primer lugar."; -App::$strings["Default Search Term"] = "Términos de búsqueda predeterminados"; -App::$strings["The default search term. These will be shown second."] = "Los términos de búsqueda predeterminados. Estos se mostrarán en segundo lugar."; -App::$strings["Return After"] = "Regresar después"; -App::$strings["Page to load after image selection."] = "Página para cargar después de la selección de imágenes."; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Profile List"] = "Lista de perfiles"; -App::$strings["Order of Preferred"] = "Orden de preferencia"; -App::$strings["Sort order of preferred clipart ids."] = "Orden de clasificación de los identificadores de imágenes clipart preferidas."; -App::$strings["Newest first"] = "Las más nuevas en primer lugar"; -App::$strings["As entered"] = "Tal como se ingresaron"; -App::$strings["Order of other"] = "Orden de los demás"; -App::$strings["Sort order of other clipart ids."] = "Orden de clasificación de otros ids de imágenes clipart."; -App::$strings["Most downloaded first"] = "Las más descargadas en primer lugar"; -App::$strings["Most liked first"] = "Las más apreciadas en primer lugar"; -App::$strings["Preferred IDs Message"] = "Mensaje de IDs preferido"; -App::$strings["Message to display above preferred results."] = "Mensaje para mostrar sobre los resultados preferidos."; -App::$strings["Uploaded by: "] = "Subida por: "; -App::$strings["Drawn by: "] = "Creada por: "; -App::$strings["Use this image"] = "Usar esta imagen"; -App::$strings["Or select from a free OpenClipart.org image:"] = "O seleccionar una imagen gratuita de OpenClipart.org: "; -App::$strings["Search Term"] = "Término de búsqueda"; -App::$strings["Unknown error. Please try again later."] = "Error desconocido. Por favor, inténtelo otra vez."; -App::$strings["Profile photo updated successfully."] = "Se ha actualizado con éxito la foto de perfil."; -App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada"; -App::$strings["Post to WordPress"] = "Publicar en WordPress"; -App::$strings["Enable WordPress Post Plugin"] = "Habilitar el plugin de publicación en WordPress"; -App::$strings["WordPress username"] = "Nombre de usuario de WordPress"; -App::$strings["WordPress password"] = "Contraseña de WordPress"; -App::$strings["WordPress API URL"] = "URL de la API de WordPress"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Habitualmente https://your-blog.tld/xmlrpc.php"; -App::$strings["WordPress blogid"] = "Blog de WordPress"; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco"; -App::$strings["Post to WordPress by default"] = "Publicar en WordPress por defecto"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Reenviar comentarios (requerido por el plugin hubzilla_wp)"; -App::$strings["WordPress Post Settings"] = "Ajustes de publicación en WordPress"; -App::$strings["Wordpress Settings saved."] = "Se han guardado los ajustes de WordPress."; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Este complemento busca en los mensajes las palabras o texto que se especifican a continuación y contrae cualquier contenido que contenga esas palabras clave para que no se muestre en momentos inapropiados, como insinuaciones sexuales que pueden ser impropias en un entorno de trabajo. Es una muestra de educación y se recomienda marcar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como un filtro de contenido de propósito general."; -App::$strings["Enable Content filter"] = "Habilitar filtro de contenido"; -App::$strings["Comma separated list of keywords to hide"] = "Lista separada por comas de palabras clave para ocultar"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Palabra, /expresión regular/, lang=xx, lang!=xx"; -App::$strings["Not Safe For Work Settings"] = "No es seguro para ajustes de trabajo"; -App::$strings["General Purpose Content Filter"] = "Filtro de contenido de propósito general"; -App::$strings["NSFW Settings saved."] = "Se han guardado los ajustes de NSFW."; -App::$strings["Possible adult content"] = "Posible contenido para adultos"; -App::$strings["%s - view"] = "ver - %s"; -App::$strings["Post to Insanejournal"] = "Publicar en Insanejournal"; -App::$strings["Enable InsaneJournal Post Plugin"] = "Habilitar el plugin de publicación en InsaneJournal"; -App::$strings["InsaneJournal username"] = "Nombre de usuario en InsaneJournal"; -App::$strings["InsaneJournal password"] = "Contraseña en InsaneJournal"; -App::$strings["Post to InsaneJournal by default"] = "Publicar por defecto en InsaneJournal"; -App::$strings["InsaneJournal Post Settings"] = "Ajustes de publicación en InsaneJournal"; -App::$strings["Insane Journal Settings saved."] = "Se han guardado los ajustes de InsaneJournal."; -App::$strings["Post to Dreamwidth"] = "Publicar en Dreamwidth"; -App::$strings["Enable Dreamwidth Post Plugin"] = "Activar el plugin de publicación en Dreamwidth"; -App::$strings["Dreamwidth username"] = "Nombre de usuario en Dreamwidth"; -App::$strings["Dreamwidth password"] = "Contraseña en Dreamwidth"; -App::$strings["Post to Dreamwidth by default"] = "Publicar en Dreamwidth de forma predeterminada"; -App::$strings["Dreamwidth Post Settings"] = "Ajustes de publicación en Dreamwidth"; -App::$strings["New registration"] = "Nuevo registro"; -App::$strings["Message sent to %s. New account registration: %s"] = "Mensaje enviado a %s. Registro de una nueva cuenta: %s"; -App::$strings["Hubzilla Directory Stats"] = "Estadísticas de directorio de Hubzilla"; -App::$strings["Total Hubs"] = "Número total de servidores"; -App::$strings["Hubzilla Hubs"] = "Servidores (hubs) de Hubzilla"; -App::$strings["Friendica Hubs"] = "Servidores (hubs) de Friendica"; -App::$strings["Diaspora Pods"] = "Servidores (pods) de Diaspora"; -App::$strings["Hubzilla Channels"] = "Canales de Hubzilla"; -App::$strings["Friendica Channels"] = "Canales de Friendica"; -App::$strings["Diaspora Channels"] = "Canales de Diaspora"; -App::$strings["Aged 35 and above"] = "De 35 años de edad en adelante"; -App::$strings["Aged 34 and under"] = "De 34 o menos años de edad"; -App::$strings["Average Age"] = "Promedio de edad"; -App::$strings["Known Chatrooms"] = "Salas de chat conocidas"; -App::$strings["Known Tags"] = "Etiquetas conocidas"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refieren únicamente a aquellas de las que **este directorio** es consciente, y no a todos los conocidos en la red. Esto también es aplicable a las salas de chat,"; -App::$strings["Your Webbie:"] = "Su webbie: "; -App::$strings["Fontsize (px):"] = "Tamaño de fuente (px): "; -App::$strings["Link:"] = "Enlace: "; -App::$strings["Like us on Hubzilla"] = "Múestrenos su agrado en Hubzilla"; -App::$strings["Embed:"] = "Incorporado: "; -App::$strings["Photos imported"] = "Se han importado las fotos"; -App::$strings["Redmatrix Photo Album Import"] = "Importar un álbum de fotos de Redmatrix"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Esto importará todos sus álbumes de fotos de Redmatrix a este canal."; -App::$strings["Redmatrix Server base URL"] = "URL base del servidor Redmatrix"; -App::$strings["Redmatrix Login Username"] = "Nombre de inicio de sesión en Redmatrix"; -App::$strings["Redmatrix Login Password"] = "Contraseña de inicio de sesión en Redmatrix"; -App::$strings["Import just this album"] = "Importar solo este álbum"; -App::$strings["Leave blank to import all albums"] = "Dejar en blanco para importar todos los álbumes"; -App::$strings["Maximum count to import"] = "Límite máximo de importación"; -App::$strings["0 or blank to import all available"] = "0 o en blanco para importar todos los disponibles"; -App::$strings["Channels to auto connect"] = "Canales para conexión automática"; -App::$strings["Comma separated list"] = "Lista separada por comas"; -App::$strings["Popular Channels"] = "Canales populares"; -App::$strings["IRC Settings"] = "Ajustes de IRC"; -App::$strings["IRC settings saved."] = "Se han guardado los ajustes de IRC."; -App::$strings["IRC Chatroom"] = "Sala de chat IRC"; -App::$strings["Post to LiveJournal"] = "Publicar en LiveJournal"; -App::$strings["Enable LiveJournal Post Plugin"] = "Habilitar el plugin de publicación en LiveJournal"; -App::$strings["LiveJournal username"] = "Nombre de usuario en LiveJournal"; -App::$strings["LiveJournal password"] = "Contraseña en LiveJournal"; -App::$strings["Post to LiveJournal by default"] = "Publicar en LiveJournal por defecto"; -App::$strings["LiveJournal Post Settings"] = "Ajustes de publicación en LiveJournal"; -App::$strings["LiveJournal Settings saved."] = "Se han guardado los ajustes de LiveJournal."; -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 al iniciar sesión con el OpenID que proporcionó. Compruebe si el ID está correctamente escrito."; -App::$strings["The error message was:"] = "El mensaje de error ha sido: "; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Alias"; -App::$strings["Full Name"] = "Nombre completo"; -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 horaria"; -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["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. No se recuperó ninguna ID."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["You're welcome."] = "Bienvenido."; -App::$strings["Ah shucks..."] = "Ah, joder..."; -App::$strings["Don't mention it."] = "No lo menciones."; -App::$strings["<blush>"] = "<sonrojo>"; -App::$strings["Page to load after login"] = "Página para cargar tras el inicio de sesión"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Ejemplos: "aplicaciones", "mi red?f=&gid=37" (grupo de canales), "mi canal" or "notificaciones del sistema" (dejar en blanco para la página de mi red por defecto (grid)."; -App::$strings["Startpage Settings"] = "Ajustes de startpage"; -App::$strings["bitchslap"] = "una bofetada humillante"; -App::$strings["bitchslapped"] = "ha abofeteado de forma humillante a"; -App::$strings["shag"] = "un polvo"; -App::$strings["shagged"] = "ha dejado exhausto/a a"; -App::$strings["patent"] = "una patente"; -App::$strings["patented"] = "ha patentado a"; -App::$strings["hug"] = "un abrazo"; -App::$strings["hugged"] = "ha abrazado a"; -App::$strings["murder"] = "un asesinato"; -App::$strings["murdered"] = "ha asesinado a"; -App::$strings["worship"] = "una alabanza"; -App::$strings["worshipped"] = "ha elogiado a"; -App::$strings["kiss"] = "un beso"; -App::$strings["kissed"] = "ha besado a"; -App::$strings["tempt"] = "una tentación"; -App::$strings["tempted"] = "ha tentado a"; -App::$strings["raise eyebrows at"] = "un levantamiento de cejas"; -App::$strings["raised their eyebrows at"] = "ha levantado las cejas a"; -App::$strings["insult"] = "un insulto"; -App::$strings["insulted"] = "ha insultado a"; -App::$strings["praise"] = "un elogio"; -App::$strings["praised"] = "ha elogiado a"; -App::$strings["be dubious of"] = "una indecisión"; -App::$strings["was dubious of"] = "estaba dudoso de"; -App::$strings["eat"] = "una comida"; -App::$strings["ate"] = "ha comido"; -App::$strings["giggle and fawn at"] = "una sonrisa aduladora"; -App::$strings["giggled and fawned at"] = "ha sonreído y adulado a"; -App::$strings["doubt"] = "una duda"; -App::$strings["doubted"] = "ha dudado de"; -App::$strings["glare"] = "una mirada furiosa"; -App::$strings["glared at"] = "ha mirado con furia"; -App::$strings["fuck"] = "una mierda"; -App::$strings["fucked"] = "ha mandado a la mierda a"; -App::$strings["bonk"] = "un golpe"; -App::$strings["bonked"] = "ha golpeado a"; -App::$strings["declare undying love for"] = "una declaración de amor eterno"; -App::$strings["declared undying love for"] = "ha declarado amor eterno a"; -App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocolo de Diaspora se han actualizado."; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos."; -App::$strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Firmar y enviar entradas y comentarios sin firma de Diaspora"; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\"Hashtags\" seguidos (separados por comas, sin incluir #)"; -App::$strings["Diaspora Protocol Settings"] = "Ajustes del protocolo de Diaspora"; -App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero de importación."; -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["Your account on %s will expire in a few days."] = "Su cuenta en %s caducará en unos pocos días."; -App::$strings["Your $Productname test account is about to expire."] = "Su cuenta de prueba de $Productname está a punto de caducar."; -App::$strings["Enable Rainbowtag"] = "Habilitar Rainbowtag"; -App::$strings["Rainbowtag Settings"] = "Ajustes de Rainbowtag"; -App::$strings["Rainbowtag Settings saved."] = "Se han guardado los ajustes de Rainbowtag."; -App::$strings["Show Upload Limits"] = "Mostrar los límites de subida"; -App::$strings["Hubzilla configured maximum size: "] = "Tamaño máximo configurado por Hubzilla: "; -App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (debe ser mayor que upload_max_filesize): "; -App::$strings["generic profile image"] = "imagen del perfil general"; -App::$strings["random geometric pattern"] = "patrón geométrico aleatorio"; -App::$strings["monster face"] = "cara de monstruo"; -App::$strings["computer generated face"] = "cara generada por ordenador"; -App::$strings["retro arcade style face"] = "cara de estilo retro arcade"; -App::$strings["Hub default profile photo"] = "Foto del perfil por defecto del hub"; -App::$strings["Information"] = "Información"; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "El addon Libravatar también está instalado. Por favor deshabilite el addon de Libravatar o este addon de Gravatar.
El addon de Libravatar volverá a Gravatar si no se encuentra nada en Libravatar."; -App::$strings["Save Settings"] = "Guardar ajustes"; -App::$strings["Default avatar image"] = "Imagen del avatar por defecto"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Selecciona la imagen de avatar predeterminada si no se encontró ninguna en Gravatar. Ver README"; -App::$strings["Rating of images"] = "Valoración de las imágenes"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Seleccione la valoración adecuada del avatar para su sitio. Ver README"; -App::$strings["Gravatar settings updated."] = "Se han actualizado los ajustes de Gravatar."; -App::$strings["Hubzilla File Storage Import"] = "Importar del depósito de ficheros de Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Esto importará todos sus ficheros en la nube desde otro servidor."; -App::$strings["Hubzilla Server base URL"] = "URL base del servidor Hubzilla"; -App::$strings["Since modified date yyyy-mm-dd"] = "Modificado desde la fecha yyyy-mm-dd"; -App::$strings["Until modified date yyyy-mm-dd"] = "Modificado hasta la fecha yyyy-mm-dd"; -App::$strings["Recent Channel/Profile Viewers"] = "Visitantes recientes del canal o perfil"; -App::$strings["This plugin/addon has not been configured."] = "El plugin o complemento no se ha configurado."; -App::$strings["Please visit the Visage settings on %s"] = "Por favor, revise los ajustes de Visage en %s"; -App::$strings["your feature settings page"] = "su página de ajustes de las funcionalidades"; -App::$strings["No entries."] = "No hay entradas."; -App::$strings["Enable Visage Visitor Logging"] = "Habilitar el registro de visitantes de Visage"; -App::$strings["Visage Settings"] = "Ajustes de Visage"; -App::$strings["Nsabait Settings updated."] = "Se han actualizado los ajustes de Nsabait"; -App::$strings["Enable NSAbait Plugin"] = "Habilitar el plugin NSAbait"; -App::$strings["NSAbait Settings"] = "Ajustes de NSAbait"; -App::$strings["Send test email"] = "Enviar un correo electrónico de prueba"; -App::$strings["No recipients found."] = "No se han encontrado destinatarios."; -App::$strings["Mail sent."] = "El correo electrónico ha sido enviado."; -App::$strings["Sending of mail failed."] = "No se pudo enviar el correo."; -App::$strings["Mail Test"] = "Prueba de correo"; -App::$strings["Message subject"] = "Asunto del mensaje"; -App::$strings["Use markdown for editing posts"] = "Usar markdown para editar las entradas"; -App::$strings["View Larger"] = "Ver más grande"; -App::$strings["Tile Server URL"] = "URL del servidor de mosaicos de imágenes "; -App::$strings["A list of public tile servers"] = "Una lista de servidores públicos de mosaicos de imágenes"; -App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL del servidor nominatim (geocodificación inversa)"; -App::$strings["A list of Nominatim servers"] = "Una lista de servidores nominatim"; -App::$strings["Default zoom"] = "Zoom predeterminado"; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "El nivel de zoom predeterminado. (1: mundo, 18: el más alto, también depende del servidor del mosaico de imágenes)"; -App::$strings["Include marker on map"] = "Incluir un marcador en el mapa"; -App::$strings["Include a marker on the map."] = "Incluir un marcador en el mapa."; -App::$strings["text to include in all outgoing posts from this site"] = "texto a incluir en todos los mensajes salientes de este sitio"; -App::$strings["Fuzzloc Settings updated."] = "Los ajustes de Fuzzloc se han actualizado."; -App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc le permite desdibujar su ubicación precisa si su canal utiliza la asignación de ubicación del navegador."; -App::$strings["Enable Fuzzloc Plugin"] = "Habilitar el plugin Fuzzloc"; -App::$strings["Minimum offset in meters"] = "Offset mínimo en metros"; -App::$strings["Maximum offset in meters"] = "Offset máximo en metros"; -App::$strings["Fuzzloc Settings"] = "Ajustes de Fuzzloc"; -App::$strings["Post to Friendica"] = "Publicar en Friendica"; -App::$strings["rtof Settings saved."] = "Se han guardado los ajustes de rtof"; -App::$strings["Allow posting to Friendica"] = "Permitir publicar en Friendica"; -App::$strings["Send public postings to Friendica by default"] = "Enviar entradas públicas a Friendica por defecto"; -App::$strings["Friendica API Path"] = "Ruta a la API de Friendica"; -App::$strings["https://{sitename}/api"] = "https://{sitename}/api"; -App::$strings["Friendica login name"] = "Nombre de inicio de sesión en Friendica"; -App::$strings["Friendica password"] = "Contraseña de Friendica"; -App::$strings["Hubzilla to Friendica Post Settings"] = "Ajustes de publicación de Hubzilla a Friendica"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Activate addon"] = "Habilitar complemento"; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Ocultar el widget de chat Jappixmini en la interfaz web"; -App::$strings["Jabber username"] = "Nombre de usuario en Jabber"; -App::$strings["Jabber server"] = "Servidor de Jabber"; -App::$strings["Jabber BOSH host URL"] = "URL del host BOSH de Jabber"; -App::$strings["Jabber password"] = "Contraseña en Jabber"; -App::$strings["Encrypt Jabber password with Hubzilla password"] = "Cifrar la contraseña de Jabber con la contraseña de Hubzilla"; -App::$strings["Hubzilla password"] = "Contraseña de Hubzilla"; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Aprobar automáticamente las solicitudes de suscripción de los contactos de Hubzilla"; -App::$strings["Purge internal list of jabber addresses of contacts"] = "Purgar la lista interna de las direcciones de contactos de jabber"; -App::$strings["Configuration Help"] = "Ayuda para los ajustes"; -App::$strings["Jappix Mini Settings"] = "Ajustes de Jappix Mini"; -App::$strings["Currently blocked"] = "Actualmente bloqueado"; -App::$strings["No channels currently blocked"] = "No hay canales bloqueados actualmente"; -App::$strings["Superblock Settings"] = "Ajustes de Superblock"; -App::$strings["Block Completely"] = "Bloquear completamente"; -App::$strings["superblock settings updated"] = "se han actualizado los ajustes de superblock"; -App::$strings["Federate"] = "Federar"; -App::$strings["nofed Settings saved."] = "Se han guardado los ajustes de nofed."; -App::$strings["Allow Federation Toggle"] = "Permitir alternancia de federación"; -App::$strings["Federate posts by default"] = "Federar las publicaciones por defecto"; -App::$strings["NoFed Settings"] = "Ajustes de NoFed"; -App::$strings["Post to Red"] = "Enviar a Red"; -App::$strings["Channel is required."] = "Se requiere un canal."; -App::$strings["redred Settings saved."] = "Se han salvado los ajustes de redred."; -App::$strings["Allow posting to another Hubzilla Channel"] = "Permitir la publicación en otro canal de Hubzilla"; -App::$strings["Send public postings to Hubzilla channel by default"] = "Enviar entradas públicas al canal Hubzilla por defecto"; -App::$strings["Hubzilla API Path"] = "Ruta de la API de Hubzilla"; -App::$strings["Hubzilla login name"] = "Nombre de inicio de sesión en Hubzilla"; -App::$strings["Hubzilla channel name"] = "Nombre del canal de Hubzilla"; -App::$strings["Hubzilla Crosspost Settings"] = "Ajustes de Hubzilla Crosspost"; -App::$strings["Logfile archive directory"] = "Directorio de los ficheros de informe"; -App::$strings["Directory to store rotated logs"] = "Directorio para almacenar los informes rotados"; -App::$strings["Logfile size in bytes before rotating"] = "Tamaño del fichero de informe en bytes antes de rotarlo"; -App::$strings["Number of logfiles to retain"] = "Número de ficheros de informe que se deben retener"; -App::$strings["Friendica Photo Album Import"] = "Importar un álbum de fotos de Friendica"; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Esto importará todos sus álbumes de fotos de Friendica a este canal de Hubzilla."; -App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica"; -App::$strings["Friendica Login Username"] = "Nombre de inicio de sesión en Friendica"; -App::$strings["Friendica Login Password"] = "Contraseña de inicio de sesión en Friendica"; -App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["ActivityPub Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo ActivityPub."; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos."; -App::$strings["Enable the ActivityPub protocol for this channel"] = "Activar el protocolo ActivityPub para este canal"; -App::$strings["Send multi-media HTML articles"] = "Enviar artículos multimedia en HTML"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "No soportado por algunos servicios de microblog como Mastodon"; -App::$strings["ActivityPub Protocol Settings"] = "Ajustes del protocolo ActivityPub"; -App::$strings["Project Servers and Resources"] = "Servidores y recursos del proyecto"; -App::$strings["Project Creator and Tech Lead"] = "Creador del proyecto y director técnico"; -App::$strings["Admin, developer, directorymin, support bloke"] = "Administrador, desarrollador, administrador del directorio, trabajador de apoyo"; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Y los cientos de personas y organizaciones más que ayudaron a hacer posible Hubzilla."; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Los proyectos Redmatrix / Hubzilla están proporcionados principalmente por voluntarios que les prestan su tiempo y experiencia, pagando a menudo de su bolsillo por los servicios que comparten con otros."; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "No hay financiación corporativa ni publicidad y no recogemos ni vendemos su información personal. (De hecho, no tenemos control sobre sus datos privados. Usted lo tiene.)"; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Ayude apoyando nuestro trabajo pionero en la descentralización, la identidad web, y la privacidad."; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Sus donaciones mantienen servidores y servicios en ejecución y también nos ayudan a proporcionar nuevas características innovadoras y a mantener el desarrollo de forma continuada."; -App::$strings["Donate"] = "Donar"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Elija un proyecto, desarrollador, o \"hub\" público para apoyar con una donación de una sola vez"; -App::$strings["Donate Now"] = "Donar ahora"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "O convertirse en un patrocinador del proyecto (sólo del proyecto Hubzilla)"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Por favor, indique si desea que su nombre de pila o el nombre completo (o nada) aparezca en nuestra lista de patrocinadores"; -App::$strings["Sponsor"] = "Patrocinador"; -App::$strings["Special thanks to: "] = "Agradecimiento especial a: "; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Se trata de un diccionario bastante amplio y completo de acordes de guitarra que enumerará la mayor parte de las formas disponibles para tocar un acorde determinado, partiendo de la base del diapasón hasta unos pocos trastes más allá del traste doce (más allá del cual todo se repite). Se proporcionan un par de afinaciones no convencionales para provecho de los guitarristas con \"slides\" ( barras de acero), etc."; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "Los nombres de acordes comienzan con una nota fundamental (La-Sol) y pueden incluir sostenidos (#) y bemoles (b). Este software analizará la mayor parte de las convenciones de nomenclatura estándar como maj, min, tenue, SUS (2 ó 4), aug, con la repetición de elementos opcionales."; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Ejemplos válidos son A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; -App::$strings["Guitar Chords"] = "Acordes de guitarra"; -App::$strings["The complete online chord dictionary"] = "El diccionario completo de acordes en línea"; -App::$strings["Tuning"] = "Afinación"; -App::$strings["Chord name: example: Em7"] = "Nombre del acorde, por ejemplo: Em7"; -App::$strings["Show for left handed stringing"] = "Mostrar para tocadores zurdos"; -App::$strings["Quick Reference"] = "Referencia rápida"; -App::$strings["Post to Libertree"] = "Publicar en Libertree"; -App::$strings["Enable Libertree Post Plugin"] = "Habilitar el plugin de publicación en Libertree"; -App::$strings["Libertree API token"] = "Token de la API de Libertree"; -App::$strings["Libertree site URL"] = "URL del servidor de Libertree"; -App::$strings["Post to Libertree by default"] = "Publicar en Libertree por defecto"; -App::$strings["Libertree Post Settings"] = "Ajustes de publicación en Libertree"; -App::$strings["Libertree Settings saved."] = "Se han guardado los ajustes de Libertree."; -App::$strings["Flattr this!"] = "¡Apoyar esto en Flattr!"; -App::$strings["Flattr widget settings updated."] = "Los ajustes del widget Flattr han sido actualizados."; -App::$strings["Flattr user"] = "Usuario en Flattr"; -App::$strings["URL of the Thing to flattr"] = "URL de la Cosa para apoyar en flattr"; -App::$strings["If empty channel URL is used"] = "Si está vacío, se usa la URL del canal"; -App::$strings["Title of the Thing to flattr"] = "Título de la Cosa para apoyar en flattr"; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Si está vacío, se usará \"nombre del canal en Hubzilla\""; -App::$strings["Static or dynamic flattr button"] = "Botón de flattr estático o dinámico"; -App::$strings["static"] = "estático"; -App::$strings["dynamic"] = "dinámico"; -App::$strings["Alignment of the widget"] = "Alineamiento del widget"; -App::$strings["left"] = "izquierda"; -App::$strings["right"] = "derecha"; -App::$strings["Enable Flattr widget"] = "Habilitar el widget Flattr"; -App::$strings["Flattr Widget Settings"] = "Ajustes del widget Flattr"; -App::$strings["Post to GNU social"] = "Publicar en GNU social"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Por favor, contacte con el administrador de su sitio.
La URL de la API proporcionada no es válida."; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "No podemos conectar con la API de GNU social con la ruta que ha proporcionado."; -App::$strings["GNU social settings updated."] = "Se han guardado los ajustes de GNU social."; -App::$strings["Globally Available GNU social OAuthKeys"] = "OAuthKeys globales de GNU social disponibles"; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Existen pares de claves OAuth preconfiguradas disponibles para algunos servidores libres de GNU social. Si está usando uno de ellos, utilice estas credenciales.
Si no se siente libre de conectarse a cualquier otra instancia de GNU social (vea a continuación)."; -App::$strings["Provide your own OAuth Credentials"] = "Proporcione sus propias credenciales de OAuth"; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "No se ha encontrado un par de claves de consumidor para GNU social. Registre su cuenta de Hubzilla como un cliente de escritorio en su cuenta social GNU, copie el par de claves de consumidor aquí y escriba la dirección raíz de la API.
Antes de registrar su propio par de claves OAuth, pregunte al administrador si ya hay un par de claves para esta instalación de Hubzilla en su instalación GNU social favorita."; -App::$strings["OAuth Consumer Key"] = "OAuth Consumer Key"; -App::$strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; -App::$strings["Base API Path"] = "Ruta base de la API"; -App::$strings["Remember the trailing /"] = "Recuerde la barra /"; -App::$strings["GNU social application name"] = "Nombre de la aplicación de GNU social"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Para conectarse a su cuenta de GNU social, haga clic en el botón de abajo para obtener un código de seguridad de GNU social que tiene que copiar en el cuadro de entrada a continuación y envíe el formulario. Solo sus entradas públicas aparecerán en GNU social."; -App::$strings["Log in with GNU social"] = "Inicio de sesión en GNU social"; -App::$strings["Copy the security code from GNU social here"] = "Copiar aquí el código de seguridad de GNU social"; -App::$strings["Cancel Connection Process"] = "Cancelar el proceso de conexión"; -App::$strings["Current GNU social API is"] = "La API actual de GNU social es "; -App::$strings["Cancel GNU social Connection"] = "Cancelar la conexión de GNU social"; -App::$strings["Currently connected to: "] = "Actualmente está conectado a: "; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?) el vínculo potencialmente incluido en las entradas públicas retransmitidas a GNU social llevará al visitante a una página en blanco que le informará de que el acceso a su perfil ha sido restringido."; -App::$strings["Allow posting to GNU social"] = "Habilitar la publicación en GNU social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si está habilitado, sus entradas públicas se pueden publicar en la cuenta GNU-social asociada"; -App::$strings["Post to GNU social by default"] = "Publicar en GNU social por defecto"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada"; -App::$strings["Clear OAuth configuration"] = "Limpiar la configuración de OAuth"; -App::$strings["GNU social Post Settings"] = "Ajustes de publicación en GNU social"; -App::$strings["API URL"] = "URL de la API"; -App::$strings["Application name"] = "Nombre de la aplicación"; -App::$strings["QR code"] = "Código QR"; -App::$strings["QR Generator"] = "Generador QR"; -App::$strings["Enter some text"] = "Escribir algún texto"; -App::$strings["Invalid game."] = "Juego no válido."; -App::$strings["You are not a player in this game."] = "Usted no participa en este juego."; -App::$strings["You must be a local channel to create a game."] = "Debe ser un canal local para crear un juego"; -App::$strings["You must select one opponent that is not yourself."] = "Debe seleccionar un oponente que no sea usted mismo."; -App::$strings["Random color chosen."] = "Elegido un color aleatorio."; -App::$strings["Error creating new game."] = "Error al crear un nuevo juego."; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["You must select a local channel /chess/channelname"] = "Debe seleccionar un canal local /chess/nombredelcanal"; -App::$strings["Enable notifications"] = "Habilitar notificaciones"; -App::$strings["Post to Twitter"] = "Publicar en Twitter"; -App::$strings["Twitter settings updated."] = "Se han actualizado los ajustes de Twitter."; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio."; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter."; -App::$strings["Log in with Twitter"] = "Iniciar sesión en Twitter"; -App::$strings["Copy the PIN from Twitter here"] = "Copiar aquí el PIN de Twitter"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido."; -App::$strings["Allow posting to Twitter"] = "Permitir la publicación en Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada"; -App::$strings["Twitter post length"] = "Longitud del mensaje en Twitter"; -App::$strings["Maximum tweet length"] = "Longitud máxima del tweet"; -App::$strings["Send public postings to Twitter by default"] = "Enviar mensajes públicos a Twitter de forma predeterminada"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada."; -App::$strings["Twitter Post Settings"] = "Ajustes de publicación en Twitter"; -App::$strings["Deactivate the feature"] = "Desactivar la funcionalidad"; -App::$strings["Hide the button and show the smilies directly."] = "Ocultar el botón y mostrar los smilies directamente."; -App::$strings["Smileybutton Settings"] = "Ajustes de Smileybutton"; -App::$strings["Order Not Found"] = "No se ha encontrado el pedido"; -App::$strings["Order cannot be checked out."] = "No se puede verificar el pedido."; -App::$strings["Enable Shopping Cart"] = "Habilitar el carro de la compra"; -App::$strings["Enable Test Catalog"] = "Habilitar el catálogo de pruebas"; -App::$strings["Enable Manual Payments"] = "Permitir pagos manuales"; -App::$strings["Base Cart Settings"] = "Configuración del carro base"; -App::$strings["Add Item"] = "Agregar un elemento"; -App::$strings["Call cart_post_"] = "Llamar a cart_post_"; -App::$strings["Cart Not Enabled (profile: "] = "El carro no está habilitado (perfil: "; -App::$strings["Order not found."] = "El pedido no se ha encontrado."; -App::$strings["No Order Found"] = "No se ha encontrado ningún pedido"; -App::$strings["call: "] = "llamar: "; -App::$strings["An unknown error has occurred Please start again."] = "Se ha producido un error desconocido Vuelva a empezar."; -App::$strings["Invalid Payment Type. Please start again."] = "Tipo de pago no válido. Por favor, empiece de nuevo."; -App::$strings["Order not found"] = "El pedido no se ha encontrado"; -App::$strings["Error: order mismatch. Please try again."] = "Error: desajuste de pedidos. Por favor, inténtelo de nuevo."; -App::$strings["Manual payments are not enabled."] = "Los pagos manuales no están habilitados."; -App::$strings["Finished"] = "Terminado"; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Este sitio es rastreado mediante la herramienta analítica Piwik."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si usted no quiere que sus visitas se registren de esta manera puede establecer una cookie para evitar que Piwik rastree otras visitas del sitio (opt-out)."; -App::$strings["Piwik Base URL"] = "URL base de Piwik"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Ruta absoluta a la instalación de Piwik. (Sin protocolo (http/s), con barra diagonal)"; -App::$strings["Site ID"] = "ID del sitio"; -App::$strings["Show opt-out cookie link?"] = "Mostrar el enlace de la cookie opt-out?"; -App::$strings["Asynchronous tracking"] = "Rastreo asíncrono"; -App::$strings["Enable frontend JavaScript error tracking"] = "Habilitar la interfaz JavaScript de seguimiento de errores"; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Esta funcionalidad requiere Piwik >= 2.2.0"; -App::$strings["Edit your profile and change settings."] = "Editar su perfil y cambiar los ajustes."; -App::$strings["Click here to see activity from your connections."] = "Pulsar aquí para ver la actividad de sus conexiones."; -App::$strings["Click here to see your channel home."] = "Pulsar aquí para ver la página de inicio de su canal."; -App::$strings["You can access your private messages from here."] = "Puede acceder a sus mensajes privados desde aquí."; -App::$strings["Create new events here."] = "Crear nuevos eventos aquí."; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Puede aceptar nuevas conexiones y cambiar permisos para las existentes aquí. También puede, por ejemplo, crear grupos de contactos."; -App::$strings["System notifications will arrive here"] = "Las notificaciones del sistema llegarán aquí"; -App::$strings["Search for content and users"] = "Buscar contenido y usuarios"; -App::$strings["Browse for new contacts"] = "Buscar nuevos contactos"; -App::$strings["Launch installed apps"] = "Iniciar aplicaciones instaladas"; -App::$strings["Looking for help? Click here."] = "¿Busca ayuda? Pulse aquí."; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Se han producido nuevos eventos en su red. ¡Haga clic aquí para ver lo que ha sucedido!"; -App::$strings["You have received a new private message. Click here to see from who!"] = "Ha recibido un nuevo mensaje privado. Haga clic aquí para ver de quién!"; -App::$strings["There are events this week. Click here too see which!"] = "Hay eventos esta semana. Haga clic aquí para ver cuáles!"; -App::$strings["You have received a new introduction. Click here to see who!"] = "Ha recibido una nueva solicitud de conexión. ¡Pulse aquí para ver de quién!"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = "Hay una nueva notificación del sistema. ¡Haga clic aquí para ver lo que ha sucedido!"; -App::$strings["Click here to share text, images, videos and sound."] = "Haga clic aquí para compartir texto, imágenes, vídeos y sonido."; -App::$strings["You can write an optional title for your update (good for long posts)."] = "Puede escribir un título opcional para su actualización (bueno para los mensajes largos)."; -App::$strings["Entering some categories here makes it easier to find your post later."] = "Al ingresar algunos temas aquí, es más fácil encontrar su publicación más tarde."; -App::$strings["Share photos, links, location, etc."] = "Compartir fotos, enlaces, ubicación, etc."; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "¿Solo quieres compartir contenido durante un tiempo? Haga que expire en una fecha determinada."; -App::$strings["You can password protect content."] = "Puede proteger contenido con una contraseña."; -App::$strings["Choose who you share with."] = "Elegir con quién compartir."; -App::$strings["Click here when you are done."] = "Haga clic aquí cuando haya terminado."; -App::$strings["Adjust from which channels posts should be displayed."] = "Ajustar de qué canales se deben mostrar las publicaciones."; -App::$strings["Only show posts from channels in the specified privacy group."] = "Mostrar solo las entradas de los canales de un grupo específico de canales."; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Encuentre fácilmente entradas que contengan etiquetas (palabras clave precedidas del símbolo \"#\")."; -App::$strings["Easily find posts in given category."] = "Encuentre fácilmente las publicaciones en una categoría dada."; -App::$strings["Easily find posts by date."] = "Encuentre fácilmente entradas por fechas."; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Se sugiere a los usuarios que se han ofrecido voluntariamente que se muestren como sugerencias, y que creemos que podrían resultar interesantes."; -App::$strings["Here you see channels you have connected to."] = "Aquí puede ver los canales a los que está conectado."; -App::$strings["Save your search so you can repeat it at a later date."] = "Guarde su búsqueda para poder repetirla en una fecha posterior."; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si ve este icono puede estar seguro de que el remitente es quien dice ser. Es normal que no siempre sea posible verificar el remitente, por lo que el icono faltará en ocasiones. Por lo general, no hay necesidad de preocuparse por eso."; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!"; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

También puede avanzar pulsando la tecla de retorno"; -App::$strings["Extended Identity Sharing"] = "Compartir identidad extendida"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de \$Projectname."; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "Juego en 3D Tic-Tac-Toe"; -App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; -App::$strings["New game"] = "Nuevo juego"; -App::$strings["New game with handicap"] = "Nuevo juego con hándicap"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "El juego en 3D tic-tac-toe es como el juego tradicional, excepto que se juega en varios niveles simultáneamente."; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "En este caso hay tres niveles. Usted gana al conseguir tres en una fila en cualquier nivel, así como arriba, abajo, y en diagonal a través de los diferentes niveles."; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "El juego con hándicap deshabilita la posición central en el nivel medio porque el jugador que reclama este cuadrado a menudo tiene una ventaja injusta."; -App::$strings["You go first..."] = "Usted va primero..."; -App::$strings["I'm going first this time..."] = "Yo voy primero esta vez..."; -App::$strings["You won!"] = "¡Usted ha ganado!"; -App::$strings["\"Cat\" game!"] = "¡El juego del \"gato\"!"; -App::$strings["I won!"] = "¡He ganado yo!"; -App::$strings["Message to display on every page on this server"] = "Mensaje para mostrar en todas las páginas de este servidor"; -App::$strings["Pageheader Settings"] = "Ajustes del encabezado de página"; -App::$strings["pageheader Settings saved."] = "Se han guardado los ajustes del encabezado de página."; -App::$strings["Only authenticate automatically to sites of your friends"] = "Autenticación automática solo en los sitios de sus amigos"; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "De forma predeterminada, se autenticará automáticamente en cualquier parte de la red"; -App::$strings["Authchoose Settings"] = "Ajustes de Authchoose"; -App::$strings["Atuhchoose Settings updated."] = "Se han actualizado los ajustes de Atuhchoose."; -App::$strings["lonely"] = "Solo/a"; -App::$strings["drunk"] = "ebrio/a"; -App::$strings["horny"] = "caliente"; -App::$strings["stoned"] = "drogado/a"; -App::$strings["fucked up"] = "jodido/a"; -App::$strings["clusterfucked"] = "hecho/a polvo"; -App::$strings["crazy"] = "loco/a"; -App::$strings["hurt"] = "ofendido/a"; -App::$strings["sleepy"] = "soñoliento/a"; -App::$strings["grumpy"] = "gruñón/ona"; -App::$strings["high"] = "superior"; -App::$strings["semi-conscious"] = "semiconsciente"; -App::$strings["in love"] = "enamorado/a"; -App::$strings["in lust"] = "lujurioso/a"; -App::$strings["naked"] = "desnudo/a"; -App::$strings["stinky"] = "apestoso/a"; -App::$strings["sweaty"] = "sudoroso/a"; -App::$strings["bleeding out"] = "exánime"; -App::$strings["victorious"] = "victorioso/a"; -App::$strings["defeated"] = "derrotado/a"; -App::$strings["envious"] = "envidioso/a"; -App::$strings["jealous"] = "celoso/a"; -App::$strings["XMPP settings updated."] = "Se han actualizado los ajustes de XMPP."; -App::$strings["Enable Chat"] = "Habilitar el chat"; -App::$strings["Individual credentials"] = "Credenciales individuales"; -App::$strings["Jabber BOSH server"] = "Servidor BOSH de Jabber"; -App::$strings["XMPP Settings"] = "Ajustes de XMPP"; -App::$strings["Jabber BOSH host"] = "BOSH de Jabber"; -App::$strings["Use central userbase"] = "Usar la base de usuarios central"; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Si está habilitado, los miembros se conectarán automáticamente a un servidor ejabberd que debe instalarse en esta máquina con credenciales sincronizadas a través del script \"auth ejabberd.php\"."; -App::$strings["Who likes me?"] = "¿Quién me ha puesto \"Me gusta\"?"; -App::$strings["You are now authenticated to pumpio."] = "Ahora está autenticado en pump.io."; -App::$strings["return to the featured settings page"] = "Volver a la página de configuración destacada"; -App::$strings["Post to Pump.io"] = "Publicar en Pump.io"; -App::$strings["Pump.io servername"] = "Nombre del servidor de Pump.io"; -App::$strings["Without \"http://\" or \"https://\""] = "Sin \"http://\" or \"https://\""; -App::$strings["Pump.io username"] = "Nombre de usuario en Pump.io"; -App::$strings["Without the servername"] = "Sin el nombre del servidor"; -App::$strings["You are not authenticated to pumpio"] = "No está autenticado en pump.io"; -App::$strings["(Re-)Authenticate your pump.io connection"] = "(Re-)Autenticar su conexión en pump.io"; -App::$strings["Enable pump.io Post Plugin"] = "Habilitar el plugin de publicación en pump.io"; -App::$strings["Post to pump.io by default"] = "Publicar por defecto en pump.io"; -App::$strings["Should posts be public"] = "¿Las entradas deben ser públicas?"; -App::$strings["Mirror all public posts"] = "Reflejar todos los mensajes públicos"; -App::$strings["Pump.io Post Settings"] = "Ajustes de publicación en pump.io"; -App::$strings["PumpIO Settings saved."] = "Se han guardado los ajustes de PumpIO."; -App::$strings["An account has been created for you."] = "Se ha creado una cuenta para usted."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "Autenticación correcta pero rechazada: la creación de cuentas está deshabilitada."; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Buscar %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Search \$Projectname"] = "Buscar \$Projectname"; -App::$strings["Redmatrix File Storage Import"] = "Importar repositorio de ficheros de Redmatrix"; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Esto importará todos sus ficheros de la nube de Redmatrix a este canal."; -App::$strings["file"] = "fichero"; -App::$strings["Send email to all members"] = "Enviar un correo electrónico a todos los miembros"; -App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d de %2\$d mensajes enviados."; -App::$strings["Send email to all hub members."] = "Enviar un correo electrónico a todos los miembros del hub."; -App::$strings["Sender Email address"] = "Dirección de correo electrónico del remitente"; -App::$strings["Test mode (only send to hub administrator)"] = "Modo de prueba (enviar sólo al administrador del hub)"; -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["likes %1\$s's %2\$s"] = "gusta de %2\$s de %1\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "no gusta de %2\$s de %1\$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["poked"] = "ha dado un toque a"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Temas:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Loading..."] = "Cargando..."; -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["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["Choose a different album..."] = "Elegir un álbum diferente..."; -App::$strings["Comments enabled"] = "Comentarios habilitados"; -App::$strings["Comments disabled"] = "Comentarios deshabilitados"; -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["Disable comments"] = "Dehabilitar los comentarios"; -App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; -App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -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["Profile Details"] = "Detalles del perfil"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["View Cards"] = "Ver las fichas"; -App::$strings["articles"] = "artículos"; -App::$strings["View Articles"] = "Ver los artículos"; -App::$strings["View Webpages"] = "Ver 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["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["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["Unable to import a removed channel."] = "No se puede importar un canal eliminado."; -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["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["prev"] = "anterior"; -App::$strings["first"] = "primera"; -App::$strings["last"] = "última"; -App::$strings["next"] = "próxima"; -App::$strings["older"] = "más antiguas"; -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["ping"] = "un \"ping\""; -App::$strings["pinged"] = "ha enviado un \"ping\" a"; -App::$strings["prod"] = "una incitación "; -App::$strings["prodded"] = "ha incitado a "; -App::$strings["slap"] = "una bofetada "; -App::$strings["slapped"] = "ha abofeteado a "; -App::$strings["finger"] = "un \"finger\" "; -App::$strings["fingered"] = "envió un \"finger\" a"; -App::$strings["rebuff"] = "un reproche"; -App::$strings["rebuffed"] = "ha hecho un reproche a "; -App::$strings["happy"] = "feliz "; -App::$strings["sad"] = "triste "; -App::$strings["mellow"] = "tranquilo/a"; -App::$strings["tired"] = "cansado/a "; -App::$strings["perky"] = "vivaz"; -App::$strings["angry"] = "enfadado/a"; -App::$strings["stupefied"] = "asombrado/a"; -App::$strings["puzzled"] = "perplejo/a"; -App::$strings["interested"] = "interesado/a"; -App::$strings["bitter"] = "amargado/a"; -App::$strings["cheerful"] = "alegre"; -App::$strings["alive"] = "animado/a"; -App::$strings["annoyed"] = "molesto/a"; -App::$strings["anxious"] = "ansioso/a"; -App::$strings["cranky"] = "de mal humor"; -App::$strings["disturbed"] = "perturbado/a"; -App::$strings["frustrated"] = "frustrado/a"; -App::$strings["depressed"] = "deprimido/a"; -App::$strings["motivated"] = "motivado/a"; -App::$strings["relaxed"] = "relajado/a"; -App::$strings["surprised"] = "sorprendido/a"; -App::$strings["Monday"] = "lunes"; -App::$strings["Tuesday"] = "martes"; -App::$strings["Wednesday"] = "miércoles"; -App::$strings["Thursday"] = "jueves"; -App::$strings["Friday"] = "viernes"; -App::$strings["Saturday"] = "sábado"; -App::$strings["Sunday"] = "domingo"; -App::$strings["January"] = "enero"; -App::$strings["February"] = "febrero"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "abril"; -App::$strings["May"] = "mayo"; -App::$strings["June"] = "junio"; -App::$strings["July"] = "julio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "septiembre"; -App::$strings["October"] = "octubre"; -App::$strings["November"] = "noviembre"; -App::$strings["December"] = "diciembre"; -App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; -App::$strings["unknown"] = "desconocido"; -App::$strings["remove category"] = "eliminar el tema"; -App::$strings["remove from file"] = "eliminar del fichero"; -App::$strings["Download binary/encrypted content"] = "Descargar contenido binario o cifrado"; -App::$strings["default"] = "por defecto"; -App::$strings["Page layout"] = "Plantilla de la página"; -App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; -App::$strings["HTML"] = "HTML"; -App::$strings["Comanche Layout"] = "Plantilla de Comanche"; -App::$strings["PHP"] = "PHP"; -App::$strings["Page content type"] = "Tipo de contenido de la página"; -App::$strings["activity"] = "la/su actividad"; -App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, and _ only"; -App::$strings["Design Tools"] = "Herramientas de diseño web"; -App::$strings["Pages"] = "Páginas"; -App::$strings["Import website..."] = "Importar un sitio web..."; -App::$strings["Select folder to import"] = "Seleccionar la carpeta que se va a importar"; -App::$strings["Import from a zipped folder:"] = "Importar desde una carpeta comprimida: "; -App::$strings["Import from cloud files:"] = "Importar desde los ficheros en la nube: "; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/canal/ruta/a la/carpeta"; -App::$strings["Enter path to website files"] = "Ruta a los ficheros del sitio web"; -App::$strings["Select folder"] = "Seleccionar la carpeta"; -App::$strings["Export website..."] = "Exportar un sitio web..."; -App::$strings["Export to a zip file"] = "Exportar a un fichero comprimido .zip"; -App::$strings["website.zip"] = "sitio_web.zip"; -App::$strings["Enter a name for the zip file."] = "Escriba un nombre para el fichero zip."; -App::$strings["Export to cloud files"] = "Exportar a la nube de ficheros"; -App::$strings["/path/to/export/folder"] = "/ruta/para/exportar/carpeta"; -App::$strings["Enter a path to a cloud files destination."] = "Escriba una ruta de destino a la nube de ficheros."; -App::$strings["Specify folder"] = "Especificar una carpeta"; -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["Common Connections"] = "Conexiones comunes"; -App::$strings["View all %d common connections"] = "Ver todas las %d conexiones comunes"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -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["Premium channel - please visit:"] = "Canal Premium - por favor visite:"; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Remote channel or protocol unavailable."] = "Canal remoto o protocolo no disponible."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["%s show less"] = "%s mostrar menos"; -App::$strings["%s expand"] = "%s expandir"; -App::$strings["%s collapse"] = "%s 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"; -App::$strings["Secret Passphrase"] = "Contraseña secreta"; -App::$strings["Passphrase hint"] = "Pista de contraseña"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; -App::$strings["close all"] = "cerrar todo"; -App::$strings["Nothing new here"] = "Nada nuevo por aquí"; -App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; -App::$strings["Describe (optional)"] = "Describir (opcional)"; -App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; -App::$strings["timeago.prefixAgo"] = "hace "; -App::$strings["timeago.prefixFromNow"] = "en "; -App::$strings["timeago.suffixAgo"] = "NONE"; -App::$strings["timeago.suffixFromNow"] = "NONE"; -App::$strings["less than a minute"] = "menos de un minuto"; -App::$strings["about a minute"] = "alrededor de un minuto"; -App::$strings["%d minutes"] = "%d minutos"; -App::$strings["about an hour"] = "alrededor de una hora"; -App::$strings["about %d hours"] = "alrededor de %d horas"; -App::$strings["a day"] = "un día"; -App::$strings["%d days"] = "%d días"; -App::$strings["about a month"] = "alrededor de un mes"; -App::$strings["%d months"] = "%d meses"; -App::$strings["about a year"] = "alrededor de un año"; -App::$strings["%d years"] = "%d años"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "mayo"; -App::$strings["Jan"] = "ene"; -App::$strings["Feb"] = "feb"; -App::$strings["Mar"] = "mar"; -App::$strings["Apr"] = "abr"; -App::$strings["__ctx:short__ May"] = "may"; -App::$strings["Jun"] = "jun"; -App::$strings["Jul"] = "jul"; -App::$strings["Aug"] = "ago"; -App::$strings["Sep"] = "sep"; -App::$strings["Oct"] = "oct"; -App::$strings["Nov"] = "nov"; -App::$strings["Dec"] = "dic"; -App::$strings["Sun"] = "dom"; -App::$strings["Mon"] = "lun"; -App::$strings["Tue"] = "mar"; -App::$strings["Wed"] = "mié"; -App::$strings["Thu"] = "jue"; -App::$strings["Fri"] = "vie"; -App::$strings["Sat"] = "sáb"; -App::$strings["__ctx:calendar__ today"] = "hoy"; -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["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -App::$strings["[no subject]"] = "[sin asunto]"; -App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -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["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["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["[Edited %s]"] = "[se ha editado %s]"; -App::$strings["__ctx:edit_activity__ Post"] = "Publicar"; -App::$strings["__ctx:edit_activity__ Comment"] = "Comentar"; -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["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Unable to retrieve modified identity"] = "No se puede recuperar la identidad modficada"; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Change your profile photo"] = "Cambiar su foto del perfil"; -App::$strings["Trans"] = "Trans"; -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["Tags:"] = "Etiquetas:"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -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["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["Home, Voice"] = "Llamadas particulares"; -App::$strings["Home, Fax"] = "Fax particular"; -App::$strings["Work, Voice"] = "Llamadas de trabajo"; -App::$strings["Work, Fax"] = "Fax de trabajo"; -App::$strings["view full size"] = "Ver en el tamaño original"; -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["Select an alternate language"] = "Seleccionar un idioma alternativo"; -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["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["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/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %1\$s element %2\$s"] = "Instalar el elemento de%1\$s%2\$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["card"] = "ficha"; -App::$strings["article"] = "el artículo"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["View article"] = "Ver el artículo"; -App::$strings["View summary"] = "Ver sumario"; -App::$strings["$1 wrote:"] = "$1 escribió:"; -App::$strings[" by "] = "por"; -App::$strings[" on "] = "en"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s da la bienvenida a %2\$s"; -App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Display new member quick links menu"] = "Mostrar el menú de enlaces rápidos para nuevos miembros"; -App::$strings["Advanced Profiles"] = "Perfiles avanzados"; -App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -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"] = "Proporcionar un wiki para su canal"; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; -App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; -App::$strings["Create interactive articles"] = "Crear artículos interactivos"; -App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; -App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento"; -App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo."; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio"; -App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio"; -App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas"; -App::$strings["Access Control and Permissions"] = "Control de acceso y permisos"; -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["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; -App::$strings["OAuth1 Clients"] = "Clientes OAuth1"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas."; -App::$strings["OAuth2 Clients"] = "Clientes OAuth2"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas."; -App::$strings["Access Tokens"] = "Tokens de acceso"; -App::$strings["Create access tokens so that non-members can access private content."] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado."; -App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; -App::$strings["Large Photos"] = "Fotos de gran tamaño"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -App::$strings["Even More Encryption"] = "Más cifrado todavía"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; -App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; -App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -App::$strings["Disable Comments"] = "Deshabilitar comentarios"; -App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios para una entrada"; -App::$strings["Delayed Posting"] = "Publicación aplazada"; -App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; -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"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; -App::$strings["Auto-save drafts of posts and comments"] = "Guardar automáticamente borradores de entradas y comentarios"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones."; -App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; -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["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."; -App::$strings["Network New Tab"] = "Contenido nuevo"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; -App::$strings["Affinity Tool"] = "Herramienta de afinidad"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias de amigos y conexiones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Temas de las entradas"; -App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; -App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; -App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["Trending"] = "Trending"; -App::$strings["Keywords"] = "Palabras clave"; -App::$strings["have"] = "tener"; -App::$strings["has"] = "tiene"; -App::$strings["want"] = "quiero"; -App::$strings["wants"] = "quiere"; -App::$strings["likes"] = "gusta de"; -App::$strings["dislikes"] = "no gusta de"; -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["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -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["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["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["Take me home"] = "Volver a la página principal"; -App::$strings["Log me out of this site"] = "Salir de este sitio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["@name, !forum, #tag, ?doc, content"] = "@nombre, !foro, #tag, ?docs, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["Add Apps"] = "Añadir aplicaciones"; -App::$strings["Arrange Apps"] = "Organizar aplicaciones"; -App::$strings["Toggle System Apps"] = "Alternar aplicaciones de sistema"; -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["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["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["Delegation session ended."] = "Finalizó la sesión de la delegación."; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Email validation is incomplete. Please check your email."] = "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Help:"] = "Ayuda:"; -App::$strings["Not Found"] = "No encontrado"; diff --git a/view/es-es/messages.po b/view/es-es/messages.po index 4ed1d6c44..b4087fef8 100644 --- a/view/es-es/messages.po +++ b/view/es-es/messages.po @@ -1,460 +1,12841 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project -# This file is distributed under the same license as the Red package. +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. # # Translators: -# boquiabierto , 2013-2014 -# Alfonso , 2015 -# jeroenpraat , 2015 -# Manuel Jiménez Friaza , 2015 +# alfonsomthd , 2015 +# inboxwall , 2015 +# jeroenpraat , 2015 +# Manuel Jiménez Friaza , 2017-2018 +# Manuel Jiménez Friaza , 2015-2017 # Rafael, 2015 # tony baldwin , 2014 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-23 00:04-0700\n" -"PO-Revision-Date: 2015-10-31 19:26+0000\n" -"Last-Translator: Manuel Jiménez Friaza \n" -"Language-Team: Spanish (http://www.transifex.com/Friendica/red-matrix/language/es/)\n" +"POT-Creation-Date: 2018-04-23 11:34+0200\n" +"PO-Revision-Date: 2018-05-15 09:50+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" "Content-Transfer-Encoding: 8bit\n" -"Language: es\n" +"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "Pueden verse la actividad y publicaciones de mi canal" -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:92 ../../mod/photos.php:637 -msgid "Profile Photos" -msgstr "Fotos de perfil" +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "Se me pueden enviar entradas y contenido de un canal" -#: ../../include/menu.php:107 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 ../../include/RedDAV/RedBrowser.php:266 -#: ../../include/ItemObject.php:100 ../../include/apps.php:254 -#: ../../mod/webpages.php:181 ../../mod/thing.php:255 -#: ../../mod/connections.php:242 ../../mod/connections.php:255 -#: ../../mod/connections.php:274 ../../mod/blocks.php:153 -#: ../../mod/editpost.php:106 ../../mod/editlayout.php:133 -#: ../../mod/editwebpage.php:178 ../../mod/editblock.php:134 -#: ../../mod/menu.php:106 ../../mod/settings.php:650 ../../mod/layouts.php:183 +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." + +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" + +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" + +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "Se pueden subir / modificar elementos en mi repositorio de ficheros y fotos" + +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "Pueden verse las páginas personales de mi canal" + +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Pueden verse mis páginas wiki" + +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "Pueden crearse / modificarse páginas personales en mi canal" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Se pueden modificar las páginas de mi wiki" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" + +#: ../../Zotlabs/Access/Permissions.php:67 +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:68 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" + +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "Se puede mostrar agrado o desagrado (Me gusta / No me gusta) en mis perfiles y sus distintos apartados" + +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a través de @+ menciones en las entradas" + +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can chat with me" +msgstr "Se puede chatear conmigo" + +#: ../../Zotlabs/Access/Permissions.php:72 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis entradas públicas como origen de contenidos en canales derivados" + +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" +msgstr "Se puede administrar mi canal" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "Redes sociales" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "Social - Federación" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "Social - Público en su mayor parte" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "Social - Restringido" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "Social - Privado" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "Foro de discusión" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "Foro - Público en su mayor parte" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "Foro - Restringido" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "Foro - Privado" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "Feed - Público en su mayor parte" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "Feed - Restringido" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "Propósito especial" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Celebridad / Tribuna improvisada" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "Especial - Repositorio de grupo" + +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 +#: ../../Zotlabs/Module/Settings/Channel.php:479 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:697 +#: ../../include/connections.php:704 +msgid "Other" +msgstr "Otro" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" + +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 +msgid "Requested profile is not available." +msgstr "El perfil solicitado no está disponible." + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:91 +#: ../../Zotlabs/Module/New_channel.php:116 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Settings/Features.php:38 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 +#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:85 +#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 +#: ../../include/attach.php:197 ../../include/attach.php:270 +#: ../../include/attach.php:284 ../../include/attach.php:293 +#: ../../include/attach.php:366 ../../include/attach.php:380 +#: ../../include/attach.php:387 ../../include/attach.php:469 +#: ../../include/attach.php:1029 ../../include/attach.php:1103 +#: ../../include/attach.php:1268 ../../include/items.php:3706 +#: ../../include/photos.php:27 +msgid "Permission denied." +msgstr "Acceso denegado." + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Nombre del bloque" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 +msgid "Blocks" +msgstr "Bloques" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Título del bloque" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "Creado" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "Editado" + +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "Crear" + +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Settings/Oauth2.php:149 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 +#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 +#: ../../include/channel.php:1300 ../../include/menu.php:113 msgid "Edit" msgstr "Editar" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frecuentemente" +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 +#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../include/conversation.php:1366 +msgid "Share" +msgstr "Compartir" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Cada hora" +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Settings/Oauth2.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:289 +#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 +#: ../../include/conversation.php:690 ../../include/conversation.php:733 +msgid "Delete" +msgstr "Eliminar" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dos veces al día" +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +msgid "View" +msgstr "Ver" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../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. " -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Module/Invite.php:77 +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." -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1552 +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" + +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "Su mensaje:" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." + +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Tendrá que suministrar este código de invitación:" + +#: ../../Zotlabs/Module/Invite.php:144 +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:146 +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:147 +msgid "or visit" +msgstr "o visitar" + +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" + +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 +#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Channel.php:495 +#: ../../Zotlabs/Module/Settings/Features.php:79 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Oauth2.php:84 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 +#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 +#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:825 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 +#: ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 +#: ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 +#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 +#: ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Artículos" + +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Añadir un artículo" + +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "Elemento no encontrado" + +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Nombre de la plantilla" + +#: ../../Zotlabs/Module/Editlayout.php:129 +#: ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Descripción de la plantilla (opcional)" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Modificar la plantilla" + +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:358 +msgid "Permission denied" +msgstr "Permiso denegado" + +#: ../../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:111 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" + +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 +msgid "Profile" +msgstr "Perfil" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Visible para" + +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:200 +msgid "All Connections" +msgstr "Todas las conexiones" + +#: ../../Zotlabs/Module/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "¡EVENTO NO VÁLIDO RECHAZADO!" + +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Resumen: " + +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 +#: ../../include/conversation.php:1160 +msgid "Unknown" +msgstr "Desconocido" + +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Fecha: " + +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Razón: " + +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "¡TARJETA NO VÁLIDA RECHAZADA!" + +#: ../../Zotlabs/Module/Cdav.php:794 +msgid "Name: " +msgstr "Nombre: " + +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Título del evento" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Ejemplo: YYYY-MM-DD HH:mm" + +#: ../../Zotlabs/Module/Cdav.php:870 +msgid "End date and time" +msgstr "Fecha y hora de finalización" + +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +msgid "Description" +msgstr "Descripción" + +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" + +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Photos.php:980 +msgid "Next" +msgstr "Siguiente" + +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Hoy" + +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "Mes" + +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "Semana" + +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "Día" + +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Lista mensual" + +#: ../../Zotlabs/Module/Cdav.php:886 +msgid "List week" +msgstr "Lista semanal" + +#: ../../Zotlabs/Module/Cdav.php:887 +msgid "List day" +msgstr "Lista diaria" + +#: ../../Zotlabs/Module/Cdav.php:894 +msgid "More" +msgstr "Más" + +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Menos" + +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Seleccionar un calendario" + +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Eliminar todos" + +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth2.php:85 +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../Zotlabs/Module/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado." + +#: ../../Zotlabs/Module/Cdav.php:1170 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +msgid "Name" +msgstr "Nombre" + +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Organización" + +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Título" + +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "Teléfono" + +#: ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 msgid "Email" msgstr "Correo electrónico" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "Mensajería instantánea" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "Sitio web" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "Dirección" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "Nota" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 +#: ../../include/connections.php:690 +msgid "Mobile" +msgstr "Móvil" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 +#: ../../include/connections.php:691 +msgid "Home" +msgstr "Inicio" -#: ../../include/notify.php:23 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 +#: ../../include/connections.php:694 +msgid "Work" +msgstr "Trabajo" + +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "Añadir un contacto" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "Añadir un campo" + +#: ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth2.php:39 +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Lib/Apps.php:393 +msgid "Update" +msgstr "Actualizar" + +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "Buzón de correos" + +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Adicional" + +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Calle" + +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Localidad" + +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Provincia, región o estado" + +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "Código postal" + +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "País" + +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Calendario por defecto" + +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Agenda de direcciones por defecto" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Este sitio no es un servidor de directorio" + +#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 +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:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" + +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Solo publicaciones" + +#: ../../Zotlabs/Module/Channel.php:107 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Exportar el canal" + +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Exportar contenidos" + +#: ../../Zotlabs/Module/Uexport.php:61 +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/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." + +#: ../../Zotlabs/Module/Uexport.php:65 +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/Uexport.php:66 +#, 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:67 +#, 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:68 +#, 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/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "¡Bienvenido a Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "No tiene ningún mensaje sin leer..." + +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Acceso público denegado." + +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 +msgid "Search" +msgstr "Buscar" + +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" + +#: ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:131 +msgid "Public Stream" +msgstr "\"Stream\" público" + +#: ../../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 "Sincronizando 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 ../../Zotlabs/Module/Admin.php:111 +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/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Cambiar el orden de las aplicaciones fijas en la barra de navegación" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Cambiar el orden de las aplicaciones de la bandeja de aplicaciones" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the" +" navbar" +msgstr "Use las flechas para mover la aplicación correspondiente a la izquierda (arriba) o derecha (abajo) en la barra de navegación." + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Use las flechas para mover la aplicación correspondiente hacia arriba o hacia abajo en la bandeja de aplicaciones." + +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "No se puede 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:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nombre del enlace" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" + +#: ../../Zotlabs/Module/Mitem.php:161 +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:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:259 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "No" +msgstr "No" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:261 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "Sí" + +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Orden en la lista" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +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:165 +msgid "Submit and finish" +msgstr "Enviar y terminar" + +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Enviar y continuar" + +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menú:" + +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destino del enlace" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Editar menú" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Editar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Eliminar el elemento" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuevo elemento" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Texto del enlace" + +#: ../../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:110 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." + +#: ../../Zotlabs/Module/Events.php:119 +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:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "Evento no encontrado." + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 +#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 +#: ../../include/text.php:2008 ../../include/event.php:1153 +msgid "event" +msgstr "el/su evento" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Editar el título del evento" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../include/datetime.php:211 +msgid "Required" +msgstr "Obligatorio" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Temas (lista separada por comas)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Modificar el tema" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Tema" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +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:469 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" + +#: ../../Zotlabs/Module/Events.php:471 +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:473 +msgid "Edit Description" +msgstr "Editar la descripción" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Modificar la dirección" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../include/conversation.php:1333 +msgid "Preview" +msgstr "Previsualizar" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Zona horaria: " + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Opciones avanzadas" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Editar evento" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Borrar evento" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 +#: ../../include/text.php:1827 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Editar el evento" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Crear un evento" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 +#: ../../include/channel.php:1647 +msgid "Export" +msgstr "Exportar" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "Evento borrado" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "Aplicación instalada." + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "Aplicación con errores" + +#: ../../Zotlabs/Module/Appman.php:130 +msgid "Embed code" +msgstr "Código incorporado" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Edit App" +msgstr "Modificar la aplicación" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Create App" +msgstr "Crear una aplicación" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Name of app" +msgstr "Nombre de la aplicación" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Photo icon URL" +msgstr "Dirección del icono" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Categories (optional, comma separated list)" +msgstr "Temas (opcional, lista separada por comas)" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Version ID" +msgstr "Versión" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Price of app" +msgstr "Precio de la aplicación" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Por favor, inicie sesión." + +#: ../../Zotlabs/Module/Magic.php:72 +msgid "Hub not found." +msgstr "Servidor no encontrado" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:384 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 +#: ../../include/conversation.php:116 ../../include/text.php:2005 +msgid "photo" +msgstr "foto" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 +#: ../../include/conversation.php:144 ../../include/text.php:2011 +msgid "status" +msgstr "el mensaje de estado " + +#: ../../Zotlabs/Module/Subthread.php:142 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo %3$s de %2$s" + +#: ../../Zotlabs/Module/Subthread.php:144 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ha dejado de seguir %3$s de %2$s" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "Canal no encontrado." + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../include/conversation.php:1278 +msgid "Insert web link" +msgstr "Insertar enlace web" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../include/conversation.php:1401 +msgid "Title (optional)" +msgstr "Título (opcional)" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Editar el artículo" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." +msgstr "No hay nada para importar." + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" + +#: ../../Zotlabs/Module/Import_items.php:77 +#: ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." + +#: ../../Zotlabs/Module/Import_items.php:93 +#, 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_items.php:108 +msgid "Import completed" +msgstr "Importación completada" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Importar elementos" + +#: ../../Zotlabs/Module/Import_items.php:126 +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/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:517 +msgid "File to Upload" +msgstr "Fichero para subir" + +#: ../../Zotlabs/Module/New_channel.php:133 +#: ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +msgid "Name or caption" +msgstr "Nombre o descripción" + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +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:148 +#: ../../Zotlabs/Module/Register.php:256 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" + +#: ../../Zotlabs/Module/New_channel.php:148 +#: ../../Zotlabs/Module/Register.php:256 +#, 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:149 +#: ../../Zotlabs/Module/Settings/Channel.php:539 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" + +#: ../../Zotlabs/Module/New_channel.php:149 +#: ../../Zotlabs/Module/Register.php:257 +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:149 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" + +#: ../../Zotlabs/Module/New_channel.php:152 +msgid "Create Channel" +msgstr "Crear un canal" + +#: ../../Zotlabs/Module/New_channel.php:153 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed," +" and many other things. Channels can make connections with other channels to" +" share information with each other." +msgstr "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas. Los canales pueden conectarse con otros canales para compartir información unos con otros." + +#: ../../Zotlabs/Module/New_channel.php:153 +msgid "" +"The type of channel you create affects the basic privacy settings, the " +"permissions that are granted to connections/friends, and also the channel's " +"visibility across the network." +msgstr "El tipo de canal que cree afecta a la configuración básica de privacidad, a los permisos que se conceden a las conexiones/amigos y también a la visibilidad del canal en la red." + +#: ../../Zotlabs/Module/New_channel.php:154 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." + +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Validate" +msgstr "Validar" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Eliminar este canal" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "ATENCIÓN:" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red. " + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +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/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" + +#: ../../Zotlabs/Module/Removeme.php:63 +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/Channel.php:600 +msgid "Remove Channel" +msgstr "Eliminar el canal" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "NUEVO" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 +msgid "Size" +msgstr "Tamaño" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:286 +msgid "Last Modified" +msgstr "Última modificación" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Eliminar este fichero" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" + +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." + +#: ../../Zotlabs/Module/Setup.php:178 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." + +#: ../../Zotlabs/Module/Setup.php:185 +msgid "Could not create table." +msgstr "No se puede crear la tabla." + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." + +#: ../../Zotlabs/Module/Setup.php:197 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." + +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:749 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" +msgstr "Verificación del sistema" + +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" +msgstr "Verificar de nuevo" + +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" +msgstr "Conexión a la base de datos" + +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." + +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "De forma predeterminada es 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" +msgstr "Puerto de la base de datos" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Tipo de base de datos" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" +msgstr "Dirección del sitio web" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" + +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" +msgstr "Ajustes del sitio" + +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "Se requiere la versión 5.5, o superior, de PHP." + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "Versión de PHP" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." + +#: ../../Zotlabs/Module/Setup.php:402 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." + +#: ../../Zotlabs/Module/Setup.php:411 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado." + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." + +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../Zotlabs/Module/Setup.php:480 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "Módulo PHP de la base de datos PDO " + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "módulo PHP xml" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "Módulo zip PHP" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " + +#: ../../Zotlabs/Module/Setup.php:507 +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:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "ejecutable" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "shell_exec" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini" + +#: ../../Zotlabs/Module/Setup.php:527 +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:531 +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:535 +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:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP de la base de datos PDO, pero no está instalado." + +#: ../../Zotlabs/Module/Setup.php:543 +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:547 +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:551 +msgid "Error: zip PHP module required but not installed." +msgstr "Error: se requiere el módulo zip PHP pero no está instalado." + +#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" + +#: ../../Zotlabs/Module/Setup.php:575 +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:576 +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:577 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "Por favor, consulte install/INSTALL.txt para más información." + +#: ../../Zotlabs/Module/Setup.php:593 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización." + +#: ../../Zotlabs/Module/Setup.php:594 +#, 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:595 ../../Zotlabs/Module/Setup.php:616 +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:596 +#, 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:599 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" + +#: ../../Zotlabs/Module/Setup.php:615 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level" +" web folder" +msgstr "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior" + +#: ../../Zotlabs/Module/Setup.php:619 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" + +#: ../../Zotlabs/Module/Setup.php:651 +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:652 +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:653 +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 entradas públicas hagan referencia a imágenes en su propio servidor." + +#: ../../Zotlabs/Module/Setup.php:654 +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:655 +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:656 +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:658 +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 "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor." + +#: ../../Zotlabs/Module/Setup.php:660 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" + +#: ../../Zotlabs/Module/Setup.php:666 +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:669 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" + +#: ../../Zotlabs/Module/Setup.php:683 +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:707 +#: ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." + +#: ../../Zotlabs/Module/Setup.php:747 +msgid "

What next?

" +msgstr "

¿Qué sigue?

" + +#: ../../Zotlabs/Module/Setup.php:748 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." + +#: ../../Zotlabs/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/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Estadísticas de la cola" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Total de entradas" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Prioridad" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "Dirección de destino" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Marcar el servidor como permanentemente fuera de línea" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Vaciar la cola para este servidor" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Último contacto conocido" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "Off" +msgstr "Desactivado" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "On" +msgstr "Activado" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Bloquear la funcionalidad %s" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Gestionar las funcionalidades" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "La actualización ha sido marcada como exitosa" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La actualización de %s se ha realizado exitosamente." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "No se encuentra la función de actualización de %s." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Han fallado las actualizaciones" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Intentar ejecutar este paso de actualización automáticamente" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." + +#: ../../Zotlabs/Module/Admin/Plugins.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 +#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3619 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extensión %s desactivada." + +#: ../../Zotlabs/Module/Admin/Plugins.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extensión %s activada." + +#: ../../Zotlabs/Module/Admin/Plugins.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "Desactivar" + +#: ../../Zotlabs/Module/Admin/Plugins.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "Activar" + +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Administration" +msgstr "Administración" + +#: ../../Zotlabs/Module/Admin/Plugins.php:342 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +#: ../../Zotlabs/Widget/Admin.php:27 +msgid "Plugins" +msgstr "Extensiones (plugins)" + +#: ../../Zotlabs/Module/Admin/Plugins.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "Cambiar" + +#: ../../Zotlabs/Module/Admin/Plugins.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 +#: ../../include/nav.php:192 +msgid "Settings" +msgstr "Ajustes" + +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "Autor:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "Mantenedor:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +msgid "Minimum project version: " +msgstr "Versión mínima del proyecto:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:354 +msgid "Maximum project version: " +msgstr "Versión máxima del proyecto:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:355 +msgid "Minimum PHP version: " +msgstr "Versión mínima de PHP:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:356 +msgid "Compatible Server Roles: " +msgstr "Configuraciones compatibles con este servidor:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:357 +msgid "Requires: " +msgstr "Se requiere:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:358 +#: ../../Zotlabs/Module/Admin/Plugins.php:442 +msgid "Disabled - version incompatibility" +msgstr "Deshabilitado - versiones incompatibles" + +#: ../../Zotlabs/Module/Admin/Plugins.php:411 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Escriba la URL pública del repositorio git del plugin." + +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Plugin repo git URL" +msgstr "URL del repositorio git del plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "Custom repo name" +msgstr "Nombre personalizado del repositorio" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "(optional)" +msgstr "(opcional)" + +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +msgid "Download Plugin Repo" +msgstr "Descargar el repositorio" + +#: ../../Zotlabs/Module/Admin/Plugins.php:421 +msgid "Install new repo" +msgstr "Instalar un nuevo repositorio" + +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 +msgid "Install" +msgstr "Instalar" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +msgid "Manage Repos" +msgstr "Gestionar los repositorios" + +#: ../../Zotlabs/Module/Admin/Plugins.php:446 +msgid "Installed Plugin Repositories" +msgstr "Repositorios de los plugins instalados" + +#: ../../Zotlabs/Module/Admin/Plugins.php:447 +msgid "Install a New Plugin Repository" +msgstr "Instalar un nuevo repositorio de plugins" + +#: ../../Zotlabs/Module/Admin/Plugins.php:454 +msgid "Switch branch" +msgstr "Cambiar la rama" + +#: ../../Zotlabs/Module/Admin/Plugins.php:455 +#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" +msgstr "Eliminar" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s cuenta bloqueada/desbloqueada" +msgstr[1] "%s cuenta bloqueada/desbloqueada" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s cuentas eliminadas" +msgstr[1] "%s cuentas eliminadas" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "Cuenta no encontrada" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 +#, php-format +msgid "Account '%s' deleted" +msgstr "La cuenta '%s' ha sido eliminada" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "La cuenta '%s' ha sido bloqueada" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "La cuenta '%s' ha sido desbloqueada" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "Cuentas" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "seleccionar todo" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "Inscripciones en espera de confirmación" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "Fecha de solicitud" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "Sin registros." + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 +msgid "Approve" +msgstr "Aprobar" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:26 +msgid "Deny" +msgstr "Rechazar" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "Bloquear" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 +msgid "All Channels" +msgstr "Todos los canales" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "Fecha de registro" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "Último acceso" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "Caduca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "Clase de servicio" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Actualizado el informe de configuraciones." + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "Informes" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Vaciar" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Depuración" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Fichero de informe" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Nivel de depuración" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canales censurados/no censurados" +msgstr[1] "%s canales censurados/no censurados" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s código permitido/no permitido al canal" +msgstr[1] "%s código permitido/no permitido al canal" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canales eliminados" +msgstr[1] "%s canales eliminados" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Canal no encontrado" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' eliminado" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurado" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' no censurado" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Código permitido al canal '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Código no permitido al canal '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "Canales" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Censurar" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "No censurar" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Permitir código" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "No permitir código" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1811 ../../include/nav.php:378 +msgid "Channel" +msgstr "Canal" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "Ajustes del tema actualizados." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "No se han encontrado temas." + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Instantánea de pantalla" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "Temas" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[No soportado]" + +#: ../../Zotlabs/Module/Admin/Site.php:165 +msgid "Site settings updated." +msgstr "Ajustes del sitio actualizados." + +#: ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 +msgid "Default" +msgstr "Predeterminado" + +#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (Incompatible)" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "mobile" +msgstr "móvil" + +#: ../../Zotlabs/Module/Admin/Site.php:211 +msgid "experimental" +msgstr "experimental" + +#: ../../Zotlabs/Module/Admin/Site.php:213 +msgid "unsupported" +msgstr "no soportado" + +#: ../../Zotlabs/Module/Admin/Site.php:260 +msgid "Yes - with approval" +msgstr "Sí - con aprobación" + +#: ../../Zotlabs/Module/Admin/Site.php:266 +msgid "My site is not a public server" +msgstr "Mi sitio no es un servidor público" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "My site has paid access only" +msgstr "Mi sitio es un servicio de pago" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "My site has free access only" +msgstr "Mi sitio es un servicio gratuito" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" + +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Beginner/Basic" +msgstr "Principiante / Básico" + +#: ../../Zotlabs/Module/Admin/Site.php:282 +msgid "Novice - not skilled but willing to learn" +msgstr "Novato: no cualificado, pero dispuesto a aprender" + +#: ../../Zotlabs/Module/Admin/Site.php:283 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio: bastante cómodo" + +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Advanced - very comfortable" +msgstr "Avanzado: muy cómodo" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Expert - I can write computer code" +msgstr "Experto: puedo escribir código informático" + +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "Wizard - I probably know more than you do" +msgstr "Colaborador: probablemente sé más que tú" + +#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "Sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Register.php:269 +msgid "Registration" +msgstr "Registro" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "File upload" +msgstr "Subir fichero" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Policies" +msgstr "Políticas" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../addon/statusnet/statusnet.php:891 +msgid "Site name" +msgstr "Nombre del sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Site default technical skill level" +msgstr "Nivel de habilidad técnica predeterminado del sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Lock the technical skill level setting" +msgstr "Bloquear el ajuste del nivel de habilidad técnica" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Members can set their own technical comfort level by default" +msgstr "Los miembros pueden configurar su nivel de comodidad técnica por defecto" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Se permite HTML/CSS/JS sin filtrar" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Administrator Information" +msgstr "Información del Administrador" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Information" +msgstr "Información sobre el sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "System language" +msgstr "Idioma del sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "System theme" +msgstr "Tema gráfico del sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Allow Feeds as Connections" +msgstr "Permitir contenidos RSS como conexiones" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso de los recursos del sistema)" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Invitation only" +msgstr "Solo con una invitación" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age" +msgstr "Edad mínima" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Edad mínima (en años) para poder registrarse en este sitio." + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Which best describes the types of account offered by this hub?" +msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Register text" +msgstr "Texto del registro" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Will be displayed prominently on the registration page." +msgstr "Se mostrará de forma destacada en la página de registro." + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Preserve site homepage URL" +msgstr "Preservar la dirección de la página personal" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Verify Email Addresses" +msgstr "Verificar las direcciones de correo electrónico" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Force publish" +msgstr "Forzar la publicación" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Import Public Streams" +msgstr "Importar contenido público" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Site only Public Streams" +msgstr "Solo contenido público en este sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Login on Homepage" +msgstr "Iniciar sesión en la página personal" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Enable context help" +msgstr "Habilitar la ayuda contextual" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Reply-to email address for system generated email." +msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Sender (From) email address for system generated email." +msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Name of email sender for system generated email." +msgstr "Nombre del remitente del correo electrónico generado por el sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Directory Server URL" +msgstr "URL del servidor de directorio" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Default directory server" +msgstr "Servidor de directorio predeterminado" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Proxy user" +msgstr "Usuario del proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Proxy URL" +msgstr "Dirección del proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Network timeout" +msgstr "Tiempo de espera de la red" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Delivery interval" +msgstr "Intervalo de entrega" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Deliveries per process" +msgstr "Intentos de envío por proceso" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Queue Threshold" +msgstr "Umbral de la cola de espera" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Poll interval" +msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "Path to ImageMagick convert program" +msgstr "Ruta al programa de conversión de ImageMagick" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Allow SVG thumbnails in file browser" +msgstr "Permitir miniaturas SVG en el navegador de archivos" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "WARNING: SVG images may contain malicious code." +msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "Maximum Load Average" +msgstr "Carga media máxima" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Caducidad del contenido importado de otros sitios (en días)" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "0 for no expiration of imported content" +msgstr "0 para que no caduque el contenido importado" + +#: ../../Zotlabs/Module/Admin/Site.php:353 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días" + +#: ../../Zotlabs/Module/Admin/Site.php:355 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" + +#: ../../Zotlabs/Module/Admin/Site.php:355 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Crear esta página primero. Por defecto es %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Page to display after creating a new channel" +msgstr "Página a mostrar después de la creación de un nuevo canal" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Recommend: profiles, go, or settings" +msgstr "Recomendar: perfiles, ir, o ajustes" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Optional: site location" +msgstr "Opcional: ubicación del sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Region or country" +msgstr "Región o país" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Nuevo campo en el perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Alias del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "Nombre del campo en el sistema" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Tipo de entrada" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Nombre del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Etiqueta a mostrar en la página del perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Texto de ayuda" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Información adicional (opcional)" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 +msgid "Save" +msgstr "Guardar" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "Definición del campo no encontrada" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Modificar el campo del perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "Campos del perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Campos básicos del perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Campos avanzados del perfil" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "(Además de los campos básicos)" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Todos los campos disponibles" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "Campos personalizados" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Crear un campo personalizado" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "Ha cambiado la contraseña para la cuenta %d." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "Se han actualizado los ajustes de la cuenta." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "No se ha encontrado la cuenta." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Editar la cuenta" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Nueva contraseña" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Nueva contraseña otra vez" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Nivel de habilidad técnica" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Idioma de la cuenta (para los correos electrónicos)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Clase de servicio" + +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." + +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " + +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" + +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." + +#: ../../Zotlabs/Module/Admin/Security.php:87 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "Seguridad" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Bloquear páginas públicas" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." + +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" + +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Se aceptan dominios de correo electrónico" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "No se permiten dominios de correo electrónico" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Permitir la comunicación solo desde estos sitios" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Bloquear la comunicación desde estos sitios" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Permitir la comunicación solo desde estos canales" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Bloquear la comunicación desde estos canales" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Bloquear contenido con HTML incorporado desde estos dominios" + +#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "Perfil" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "El comentario ha sido aprobado" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "Se ha eliminado el comentario" + +#: ../../Zotlabs/Module/Settings/Permcats.php:23 +msgid "Permission Name is required." +msgstr "Se requiere el nombre de la autorización" + +#: ../../Zotlabs/Module/Settings/Permcats.php:42 +msgid "Permission category saved." +msgstr "Se ha guardado la categoría del permiso." + +#: ../../Zotlabs/Module/Settings/Permcats.php:66 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones." + +#: ../../Zotlabs/Module/Settings/Permcats.php:99 +msgid "Permission Categories" +msgstr "Tipos de permisos" + +#: ../../Zotlabs/Module/Settings/Permcats.php:107 +msgid "Permission Name" +msgstr "Nombre de la autorización" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +msgid "My Settings" +msgstr "Mis ajustes" + +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +msgid "inherited" +msgstr "heredado" + +#: ../../Zotlabs/Module/Settings/Permcats.php:113 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +msgid "Individual Permissions" +msgstr "Permisos individuales" + +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:894 +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 "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/Settings/Channel.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:83 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:437 +#: ../../include/channel.php:438 ../../include/channel.php:445 +msgid "Friends" +msgstr "Amigos/as" + +#: ../../Zotlabs/Module/Settings/Channel.php:264 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "Ajustes actualizados." + +#: ../../Zotlabs/Module/Settings/Channel.php:325 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" + +#: ../../Zotlabs/Module/Settings/Channel.php:326 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Approved connections" +msgstr "Conexiones aprobadas" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Any connections" +msgstr "Cualquier conexión" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" + +#: ../../Zotlabs/Module/Settings/Channel.php:407 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" + +#: ../../Zotlabs/Module/Settings/Channel.php:412 +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/Channel.php:416 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Settings/Channel.php:425 +msgid "Your channel address is" +msgstr "Su dirección de canal es" + +#: ../../Zotlabs/Module/Settings/Channel.php:428 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "Sus archivos y fotos son accesibles a través de WebDAV en " + +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Channel Settings" +msgstr "Ajustes del canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +#: ../../include/channel.php:1521 +msgid "Full Name:" +msgstr "Nombre completo:" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Your Timezone:" +msgstr "Su huso horario:" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Default Post Location:" +msgstr "Localización geográfica predeterminada para sus publicaciones:" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Geographical location to display on your posts" +msgstr "Localización geográfica que debe mostrarse en sus publicaciones" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Use Browser Location:" +msgstr "Usar la localización geográfica del navegador:" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Adult Content" +msgstr "Contenido solo para adultos" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +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/Channel.php:509 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +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/Channel.php:517 +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/Channel.php:518 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +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/Channel.php:523 +msgid "Channel Permission Limits" +msgstr "Límites de los permisos del canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +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/Channel.php:525 +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/Channel.php:525 +#, php-format +msgid "This website expires after %d days." +msgstr "Este sitio web caduca después de %d días." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "This website does not expire imported content." +msgstr "Este sitio web no caduca el contenido importado." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +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/Channel.php:526 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Default Privacy Group" +msgstr "Grupo de canales predeterminado" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +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/Channel.php:530 +msgid "Profile to assign new connections" +msgstr "Perfil para asignar a las nuevas conexiones" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default Permissions Group" +msgstr "Grupo de permisos predeterminados" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Configuración de las notificaciones" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "accepting a friend request" +msgstr "Acepte una solicitud de amistad" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "making an interesting profile change" +msgstr "Realice un cambio interesante en su perfil" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (\"muro\")" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" + +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" + +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una publicación" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 +msgid "Someone likes your post/comment" +msgstr "Alguien muestre agrado por su entrada o comentario" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "Recomendado" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Upcoming events" +msgstr "Próximos eventos" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "Events today" +msgstr "Eventos de hoy" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "System info messages" +msgstr "Mensajes de información del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "New connections" +msgstr "Nuevas conexiones" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "System Registrations" +msgstr "Registros del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Unseen shared files" +msgstr "Ficheros compartidos no vistos" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Unseen public activity" +msgstr "Actividad pública no vista" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Unseen likes and dislikes" +msgstr "Los \"me gusta\" y \"no me gusta\" no vistos" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Email notification hub (hostname)" +msgstr "Email de notificación del hub (nombre del host)" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s" + +#: ../../Zotlabs/Module/Settings/Channel.php:584 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos" + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +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/Channel.php:586 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "%Y - current year, %m - current month" +msgstr "%Y - año en curso, %m - mes actual" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los ficheros subidos" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +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/Channel.php:601 +msgid "Remove this channel." +msgstr "Eliminar este canal." + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Firefox Share $Projectname provider" +msgstr "Servicio de compartición de Firefox: proveedor $Projectname" + +#: ../../Zotlabs/Module/Settings/Channel.php:603 +msgid "Start calendar week on Monday" +msgstr "Comenzar el calendario semanal por el lunes" + +#: ../../Zotlabs/Module/Settings/Features.php:73 +msgid "Additional Features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "Su nivel de habilidad técnica" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad" + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Este canal tiene un límite de %d tokens" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Se requiere el nombre y la contraseña." + +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token salvado." + +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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 private content." +msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +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 "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " + +#: ../../Zotlabs/Module/Settings/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:100 +msgid "Guest Access Tokens" +msgstr "Tokens de acceso para invitados" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nombre de inicio de sesión" + +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Contraseña de inicio de sesión" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Expira (aaaa-mm-dd)" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "Their Settings" +msgstr "Sus ajustes" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:35 +msgid "Name and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:83 +msgid "Add OAuth2 application" +msgstr "Añadir aplicación OAuth2" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +msgid "Name of application" +msgstr "Nombre de la aplicación" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +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/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Redirect" +msgstr "Redirigir" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +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/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +msgid "Grant Types" +msgstr "Tipos de permisos" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "leave blank unless your application sepcifically requires this" +msgstr "Dejar en blanco a menos que su aplicación lo requiera específicamente" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "Authorization scope" +msgstr "Alcance de la autorización" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:102 +msgid "OAuth2 Application not found." +msgstr "No se ha encontrado la aplicación OAuth2." + +#: ../../Zotlabs/Module/Settings/Oauth2.php:111 +#: ../../Zotlabs/Module/Settings/Oauth2.php:148 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +msgid "Add application" +msgstr "Añadir aplicación" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:147 +msgid "Connected OAuth2 Apps" +msgstr "Aplicaciones OAuth2 conectadas" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:151 +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:152 +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "No name" +msgstr "Sin nombre" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:153 +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +msgid "Remove authorization" +msgstr "Eliminar autorización" + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Correo electrónico no válido." + +#: ../../Zotlabs/Module/Settings/Account.php:23 +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/Account.php:32 +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/Account.php:40 +msgid "Technical skill level updated" +msgstr "Se ha actualizado el nivel de habilidad técnica" + +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "La comprobación de la contraseña ha fallado." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." + +#: ../../Zotlabs/Module/Settings/Account.php:67 +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/Account.php:81 +msgid "Password changed." +msgstr "Contraseña cambiada." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +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/Account.php:112 +msgid "Account Settings" +msgstr "Configuración de la cuenta" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Contraseña actual" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Escribir una nueva contraseña" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Confirmar la nueva contraseña" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." + +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Eliminar cuenta" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "Se han actualizado los ajustes del controlador de afinidad." + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de los complementos" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "Nivel máximo de afinidad por defecto" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 por defecto 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "Nivel mínimo de afinidad por defecto" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - por defecto 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "Ajustes del controlador de afinidad" + +#: ../../Zotlabs/Module/Settings/Featured.php:67 +msgid "Addon Settings" +msgstr "Ajustes de los complementos" + +#: ../../Zotlabs/Module/Settings/Featured.php:68 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Guarde o envíe los cambios a cualquier panel antes de abrir otro." + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Ajustes de visualización" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Ajustes del tema" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Ajustes del contenido" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Elegir un esquema" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Carga previa de las imágenes antes de generar la página" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +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/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +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/Display.php:202 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "Proporcionar un menú de canales en la barra de navegación" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "Predeterminado: menú de canales ubicado en el menú de aplicaciones" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "Actualizaciones manuales de la conversación" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla" + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de plantilla de página del sistema - (avanzado)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +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/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" + +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" + +#: ../../Zotlabs/Module/Settings/Oauth.php:35 +msgid "Name is required" +msgstr "El nombre es obligatorio" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "Dirección del icono" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Opcional" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "Aplicación no encontrada." + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "Aplicaciones (apps) conectadas" + +#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "Editar álbum" + +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Photos.php:712 +#: ../../Zotlabs/Module/Profile_photo.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:362 +#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 +#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "Subir" + +#: ../../Zotlabs/Module/Achievements.php:38 +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/Thing.php:120 +msgid "Thing updated" +msgstr "Elemento actualizado." + +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" + +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" +msgstr "Elemento añadido" + +#: ../../Zotlabs/Module/Thing.php:202 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" +msgstr "Mostrar elemento" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." +msgstr "elemento no encontrado." + +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" +msgstr "Editar elemento" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" +msgstr "Seleccionar un perfil" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" +msgstr "Publicar una actividad" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." + +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" + +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" + +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:147 +#: ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "Permisos" + +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:57 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" + +#: ../../Zotlabs/Module/Notify.php:65 +#: ../../Zotlabs/Module/Notifications.php:61 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "Se ha incorporado una conexión." + +#: ../../Zotlabs/Module/Import.php:144 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." + +#: ../../Zotlabs/Module/Import.php:158 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" + +#: ../../Zotlabs/Module/Import.php:482 +#: ../../addon/diaspora/import_diaspora.php:139 +msgid "Import completed." +msgstr "Importación completada." + +#: ../../Zotlabs/Module/Import.php:510 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." + +#: ../../Zotlabs/Module/Import.php:515 +msgid "Import Channel" +msgstr "Importar canal" + +#: ../../Zotlabs/Module/Import.php:516 +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/Import.php:518 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" + +#: ../../Zotlabs/Module/Import.php:519 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" + +#: ../../Zotlabs/Module/Import.php:520 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" + +#: ../../Zotlabs/Module/Import.php:521 +msgid "Your old login password" +msgstr "Su antigua contraseña" + +#: ../../Zotlabs/Module/Import.php:522 +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/Import.php:523 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" + +#: ../../Zotlabs/Module/Import.php:524 +msgid "Move this channel (disable all previous locations)" +msgstr "Mover este canal (desactivar todas las ubicaciones anteriores)" + +#: ../../Zotlabs/Module/Import.php:525 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Importar unos meses de mensajes si es posible (limitado por la memoria disponible" + +#: ../../Zotlabs/Module/Import.php:526 +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/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Falló la autenticación." + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 +#: ../../include/channel.php:2318 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 +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:77 ../../include/channel.php:2320 +msgid "Authenticate" +msgstr "Acceder" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." + +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 +msgid "Import" +msgstr "Importar" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Vuelva a su aplicación e introduzca este código de seguridad: " + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento no disponible" + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Modificar este bloque" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "vcard" + +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 +msgid "Apps" +msgstr "Aplicaciones (apps)" + +#: ../../Zotlabs/Module/Apps.php:51 +msgid "Manage apps" +msgstr "Gestionar las aplicaciones" + +#: ../../Zotlabs/Module/Apps.php:52 +msgid "Create new app" +msgstr "Crear una nueva aplicación" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 +#, 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:253 +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/Connections.php:55 +#: ../../Zotlabs/Module/Connections.php:112 +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Active" +msgstr "Activo/a" + +#: ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Blocked" +msgstr "Bloqueadas" + +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Ignored" +msgstr "Ignoradas" + +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:185 +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Hidden" +msgstr "Ocultas" + +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Archived/Unreachable" +msgstr "Archivadas o inaccesibles" + +#: ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 +#: ../../Zotlabs/Module/Notifications.php:52 +#: ../../include/conversation.php:1717 +msgid "New" +msgstr "Nuevas" + +#: ../../Zotlabs/Module/Connections.php:94 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 +msgid "All" +msgstr "Todos/as" + +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" +msgstr "Conexiones activas" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" +msgstr "Mostrar las conexiones activas" + +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "Nuevas conexiones" + +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" + +#: ../../Zotlabs/Module/Connections.php:174 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" + +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show archived/unreachable connections" +msgstr "Mostrar solo las conexiones archivadas o no localizables" + +#: ../../Zotlabs/Module/Connections.php:188 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" + +#: ../../Zotlabs/Module/Connections.php:203 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" + +#: ../../Zotlabs/Module/Connections.php:257 +msgid "Pending approval" +msgstr "Pendiente de aprobación" + +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Archived" +msgstr "Archivadas" + +#: ../../Zotlabs/Module/Connections.php:262 +msgid "Not connected at this location" +msgstr "No está conectado/a en esta ubicación" + +#: ../../Zotlabs/Module/Connections.php:279 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Edit connection" +msgstr "Editar conexión" + +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Delete connection" +msgstr "Eliminar conexión" + +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Channel address" +msgstr "Dirección del canal" + +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Network" +msgstr "Red" + +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Call" +msgstr "Llamar" + +#: ../../Zotlabs/Module/Connections.php:298 +msgid "Status" +msgstr "Estado" + +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Connected" +msgstr "Conectado/a" + +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Approve connection" +msgstr "Aprobar esta conexión" + +#: ../../Zotlabs/Module/Connections.php:304 +msgid "Ignore connection" +msgstr "Ignorar esta conexión" + +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../Zotlabs/Module/Connections.php:306 +msgid "Recent activity" +msgstr "Actividad reciente" + +#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 +msgid "Connections" +msgstr "Conexiones" + +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Search your connections" +msgstr "Buscar sus conexiones" + +#: ../../Zotlabs/Module/Connections.php:337 +msgid "Connections search" +msgstr "Buscar conexiones" + +#: ../../Zotlabs/Module/Connections.php:338 +#: ../../Zotlabs/Module/Directory.php:401 +#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Encontrar" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "elemento" + +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" +msgstr "Origen del elemento" + +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "Marcador añadido" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "Mis marcadores" + +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" + +#: ../../Zotlabs/Module/Photos.php:78 +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:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../Zotlabs/Module/Photos.php:551 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../Zotlabs/Module/Photos.php:600 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../Zotlabs/Module/Photos.php:646 +#, 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:649 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:691 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:696 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" + +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" + +#: ../../Zotlabs/Module/Photos.php:699 +msgid "Description (optional)" +msgstr "Descripción (opcional)" + +#: ../../Zotlabs/Module/Photos.php:785 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" + +#: ../../Zotlabs/Module/Photos.php:787 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" + +#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 +msgid "Add Photos" +msgstr "Añadir fotos" + +#: ../../Zotlabs/Module/Photos.php:892 +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:894 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: ../../Zotlabs/Module/Photos.php:952 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" + +#: ../../Zotlabs/Module/Photos.php:960 +msgid "Private Photo" +msgstr "Foto privada" + +#: ../../Zotlabs/Module/Photos.php:975 +msgid "View Full Size" +msgstr "Ver tamaño completo" + +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Edit photo" +msgstr "Editar foto" + +#: ../../Zotlabs/Module/Photos.php:1059 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" + +#: ../../Zotlabs/Module/Photos.php:1060 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" + +#: ../../Zotlabs/Module/Photos.php:1063 +msgid "Move photo to album" +msgstr "Mover la foto a un álbum" + +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" + +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" + +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" + +#: ../../Zotlabs/Module/Photos.php:1081 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" + +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" + +#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 +#: ../../include/conversation.php:785 +msgid "Please wait" +msgstr "Espere por favor" + +#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:749 +msgid "This is you" +msgstr "Este es usted" + +#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" + +#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 +#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "View all" +msgstr "Ver todo" + +#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 +#: ../../include/conversation.php:1981 ../../include/channel.php:1539 +#: ../../include/taxonomy.php:661 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 +#: ../../include/conversation.php:1984 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1265 +msgid "Photo Tools" +msgstr "Gestión de las fotos" + +#: ../../Zotlabs/Module/Photos.php:1274 +msgid "In This Photo:" +msgstr "En esta foto:" + +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "Map" +msgstr "Mapa" + +#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "Cerrar" + +#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 +#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 +msgid "Recent Photos" +msgstr "Fotos recientes" + +#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 +msgid "Profile Unavailable." +msgstr "Perfil no disponible" + +#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 +msgid "Not found" +msgstr "No encontrado" + +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 +#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 +msgid "Invalid channel" +msgstr "Canal no válido" + +#: ../../Zotlabs/Module/Wiki.php:124 +msgid "Error retrieving wiki" +msgstr "Error al recuperar el wiki" + +#: ../../Zotlabs/Module/Wiki.php:131 +msgid "Error creating zip file export folder" +msgstr "Error al crear el fichero comprimido zip de la carpeta a exportar" + +#: ../../Zotlabs/Module/Wiki.php:182 +msgid "Error downloading wiki: " +msgstr "Error al descargar el wiki: " + +#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 +#: ../../include/nav.php:494 +msgid "Wikis" +msgstr "Wikis" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Download" +msgstr "Descargar" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 +msgid "Create New" +msgstr "Crear" + +#: ../../Zotlabs/Module/Wiki.php:207 +msgid "Wiki name" +msgstr "Nombre del wiki" + +#: ../../Zotlabs/Module/Wiki.php:208 +msgid "Content type" +msgstr "Tipo de contenido" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1869 +msgid "Markdown" +msgstr "Markdown" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 +msgid "BBcode" +msgstr "BBcode" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 +msgid "Text" +msgstr "Texto" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 +msgid "Type" +msgstr "Tipo" + +#: ../../Zotlabs/Module/Wiki.php:211 +msgid "Any type" +msgstr "Cualquier tipo" + +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "Tipo de contenido bloqueado" + +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Create a status post for this wiki" +msgstr "Crear un mensaje de estado para este wiki" + +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "Editar el nombre del wiki" + +#: ../../Zotlabs/Module/Wiki.php:262 +msgid "Wiki not found" +msgstr "Wiki no encontrado" + +#: ../../Zotlabs/Module/Wiki.php:286 +msgid "Rename page" +msgstr "Renombrar la página" + +#: ../../Zotlabs/Module/Wiki.php:307 +msgid "Error retrieving page content" +msgstr "Error al recuperar el contenido de la página" + +#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +msgid "New page" +msgstr "Nueva página" + +#: ../../Zotlabs/Module/Wiki.php:345 +msgid "Revision Comparison" +msgstr "Comparación de revisiones" + +#: ../../Zotlabs/Module/Wiki.php:346 +msgid "Revert" +msgstr "Revertir" + +#: ../../Zotlabs/Module/Wiki.php:353 +msgid "Short description of your changes (optional)" +msgstr "Breve descripción de sus cambios (opcional)" + +#: ../../Zotlabs/Module/Wiki.php:362 +msgid "Source" +msgstr "Fuente" + +#: ../../Zotlabs/Module/Wiki.php:372 +msgid "New page name" +msgstr "Nombre de la nueva página" + +#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 +msgid "Embed image from photo albums" +msgstr "Incluir una imagen de los álbumes de fotos" + +#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 +msgid "Embed an image from your albums" +msgstr "Incluir una imagen de sus álbumes" + +#: ../../Zotlabs/Module/Wiki.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:368 +#: ../../include/conversation.php:1320 +msgid "Choose images to embed" +msgstr "Elegir imágenes para incluir" + +#: ../../Zotlabs/Module/Wiki.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +#: ../../include/conversation.php:1321 +msgid "Choose an album" +msgstr "Elegir un álbum" + +#: ../../Zotlabs/Module/Wiki.php:383 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:370 +msgid "Choose a different album" +msgstr "Elegir un álbum diferente..." + +#: ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:371 +#: ../../include/conversation.php:1323 +msgid "Error getting album list" +msgstr "Error al obtener la lista de álbumes" + +#: ../../Zotlabs/Module/Wiki.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:372 +#: ../../include/conversation.php:1324 +msgid "Error getting photo link" +msgstr "Error al obtener el enlace de la foto" + +#: ../../Zotlabs/Module/Wiki.php:386 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:373 +#: ../../include/conversation.php:1325 +msgid "Error getting album" +msgstr "Error al obtener el álbum" + +#: ../../Zotlabs/Module/Wiki.php:462 +msgid "Error creating wiki. Invalid name." +msgstr "Error al crear el wiki: el nombre no es válido." + +#: ../../Zotlabs/Module/Wiki.php:469 +msgid "A wiki with this name already exists." +msgstr "Ya hay un wiki con este nombre." + +#: ../../Zotlabs/Module/Wiki.php:482 +msgid "Wiki created, but error creating Home page." +msgstr "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio." + +#: ../../Zotlabs/Module/Wiki.php:489 +msgid "Error creating wiki" +msgstr "Error al crear el wiki" + +#: ../../Zotlabs/Module/Wiki.php:512 +msgid "Error updating wiki. Invalid name." +msgstr "Error al actualizar el wiki. Nombre no válido." + +#: ../../Zotlabs/Module/Wiki.php:532 +msgid "Error updating wiki" +msgstr "Error al actualizar el wiki" + +#: ../../Zotlabs/Module/Wiki.php:547 +msgid "Wiki delete permission denied." +msgstr "Se ha denegado el permiso para eliminar el wiki." + +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error deleting wiki" +msgstr "Se ha producido un error al eliminar el wiki" + +#: ../../Zotlabs/Module/Wiki.php:590 +msgid "New page created" +msgstr "Se ha creado la nueva página" + +#: ../../Zotlabs/Module/Wiki.php:711 +msgid "Cannot delete Home" +msgstr "No se puede eliminar la página principal" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Current Revision" +msgstr "Revisión actual" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Selected Revision" +msgstr "Revisión seleccionada" + +#: ../../Zotlabs/Module/Wiki.php:825 +msgid "You must be authenticated." +msgstr "Debe estar autenticado." + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "cambiar al modo de pantalla completa" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Plantilla actualizada." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." + +#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" + +#: ../../Zotlabs/Module/Pdledit.php:68 +msgid "(modified)" +msgstr "(modificado)" + +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../Zotlabs/Module/Pdledit.php:85 +msgid "Layout not found." +msgstr "Plantilla no encontrada" + +#: ../../Zotlabs/Module/Pdledit.php:91 +msgid "Module Name:" +msgstr "Nombre del módulo:" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Ayuda para el diseño de plantillas de página" + +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Edit another layout" +msgstr "Editar otro diseño" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "System layout" +msgstr "Diseño del sistema" + +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 +#: ../../include/conversation.php:1092 +msgid "Poke" +msgstr "Toques y otras cosas" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "Toque/Incitación" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" + +#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Convertir en privado este envío" + +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " + +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +#: ../../include/photo/photo_driver.php:741 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." +msgstr "El ajuste del tamaño de la imagen ha fallado." + +#: ../../Zotlabs/Module/Profile_photo.php:218 +#: ../../addon/openclipatar/openclipatar.php:298 +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:225 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" + +#: ../../Zotlabs/Module/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." +msgstr "La carga de la imagen ha fallado." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." +msgstr "No ha sido posible procesar la imagen." + +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." +msgstr "Foto no disponible." + +#: ../../Zotlabs/Module/Profile_photo.php:455 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Upload File:" +msgstr "Subir fichero:" + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:360 +msgid "Select a profile:" +msgstr "Seleccionar un perfil:" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Use Photo for Profile" +msgstr "Usar la fotografía para el perfil" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Cambiar la foto del perfil" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use" +msgstr "Usar" + +#: ../../Zotlabs/Module/Profile_photo.php:462 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:364 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "Use a photo from your albums" +msgstr "Usar una foto de sus álbumes" + +#: ../../Zotlabs/Module/Profile_photo.php:473 +#: ../../Zotlabs/Module/Cover_photo.php:376 +msgid "Select existing photo" +msgstr "Seleccionar una foto existente" + +#: ../../Zotlabs/Module/Profile_photo.php:492 +#: ../../Zotlabs/Module/Cover_photo.php:393 +msgid "Crop Image" +msgstr "Recortar imagen" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:394 +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/Profile_photo.php:495 +#: ../../Zotlabs/Module/Cover_photo.php:396 +msgid "Done Editing" +msgstr "Edición completada" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Ausente" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "Conectado/a" + +#: ../../Zotlabs/Module/Item.php:194 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../Zotlabs/Module/Item.php:477 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../Zotlabs/Module/Item.php:874 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." + +#: ../../Zotlabs/Module/Item.php:1019 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../Zotlabs/Module/Item.php:1055 +msgid "Your comment is awaiting approval." +msgstr "Su comentario está pendiente de aprobación." + +#: ../../Zotlabs/Module/Item.php:1160 +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:1189 +#, 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:1196 +#, 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/Ping.php:330 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" + +#: ../../Zotlabs/Module/Ping.php:383 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" + +#: ../../Zotlabs/Module/Ping.php:407 +msgid "requires approval" +msgstr "requiere aprobación" + +#: ../../Zotlabs/Module/Ping.php:417 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:435 +msgid "[today]" +msgstr "[hoy]" + +#: ../../Zotlabs/Module/Ping.php:444 +msgid "posted an event" +msgstr "publicó un evento" + +#: ../../Zotlabs/Module/Ping.php:477 +msgid "shared a file with you" +msgstr "compartió un archivo con usted" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "Elemento no válido." + +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 +#: ../../Zotlabs/Module/Display.php:175 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 +#: ../../include/help.php:81 +msgid "Page not found." +msgstr "Página no encontrada." + +#: ../../Zotlabs/Module/Page.php:173 +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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "Conexión actualizada." + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." + +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "ahora está conectado/a" + +#: ../../Zotlabs/Module/Connedit.php:427 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." + +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." + +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +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:554 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." + +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 +msgid "View Profile" +msgstr "Ver el perfil" + +#: ../../Zotlabs/Module/Connedit.php:597 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" + +#: ../../Zotlabs/Module/Connedit.php:601 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" + +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "Actualizar la foto" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "Obtener una foto actualizada" + +#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 +msgid "Recent Activity" +msgstr "Actividad reciente" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Dejar de ignorar" + +#: ../../Zotlabs/Module/Connedit.php:633 +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:634 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Unarchive" +msgstr "Desarchivar" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Archive" +msgstr "Archivar" + +#: ../../Zotlabs/Module/Connedit.php:641 +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:642 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Unhide" +msgstr "Mostrar" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Hide" +msgstr "Ocultar" + +#: ../../Zotlabs/Module/Connedit.php:649 +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:650 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" + +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "Obtener una vcard" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "Obtener una tarjeta de llamada electrónica para esta conexión" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "Abrir la sección de permisos individuales por defecto" + +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "Afinidad" + +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "Abrir por defecto la sección para definir la afinidad" + +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +msgid "Me" +msgstr "Yo" + +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +msgid "Family" +msgstr "Familia" + +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +msgid "Acquaintances" +msgstr "Conocidos/as" + +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "Filtrar" + +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "Abrir por defecto la sección de personalización de filtros" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" + +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" + +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Ajustar el perfil" + +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" + +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "No se puede acceder a la conexión desde este sitio." + +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "Esta conexión puede ser inaccesible desde otras ubicaciones del canal." + +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "La independencia de ubicación no es compatible con su red." + +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red." + +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Connection Default Permissions" +msgstr "Permisos predeterminados de conexión" + +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" + +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" + +#: ../../Zotlabs/Module/Connedit.php:851 +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:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "Rol de acceso" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Cargando" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "Añadir un rol de acceso" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "La dirección primaria de esta conexión es" + +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Ubicaciones disponibles:" + +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +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:867 +msgid "Connection Tools" +msgstr "Gestión de las conexiones" + +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valoración" + +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" + +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" + +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Filtro personalizado" + +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" + +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +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:876 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "¡Esta información es pública!" + +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" + +#: ../../Zotlabs/Module/Connedit.php:888 +#, 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:895 +msgid "" +"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." +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:896 +msgid "Last update:" +msgstr "Última actualización:" + +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "Detalles" + +#: ../../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:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 +#: ../../include/conversation.php:1435 +msgid "Encrypt text" +msgstr "Cifrar texto" + +#: ../../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:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Caducidad" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1834 ../../include/nav.php:401 +msgid "Photos" +msgstr "Fotos" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 +#: ../../include/nav.php:409 +msgid "Files" +msgstr "Ficheros" + +#: ../../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:2423 +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: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/Layouts.php:184 ../../include/text.php:2424 +msgid "Layouts" +msgstr "Plantillas" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 +#: ../../include/help.php:68 ../../include/help.php:74 +msgid "Help" +msgstr "Ayuda" + +#: ../../Zotlabs/Module/Layouts.php:186 +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:190 +msgid "Layout Description" +msgstr "Descripción de la plantilla" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" + +#: ../../Zotlabs/Module/Cloud.php:120 +msgid "Please refresh page" +msgstr "Por favor, recargue la página" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Unknown error" +msgstr "Error desconocido" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Verificación obligatoria del correo electrónico" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Reenvío de correo electrónico" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Token de validación" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "Mensaje no encontrado." + +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 +#: ../../include/bbcode.php:352 +msgid "post" +msgstr "la entrada" + +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2013 +msgid "comment" +msgstr "el comentario" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" + +#: ../../Zotlabs/Module/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/Defperms.php:239 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención." + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "Opciones de autorización automática" + +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad." + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "Aplicación desconocida" + +#: ../../Zotlabs/Module/Authorize.php:22 +msgid "Authorize" +msgstr "Autorizar" + +#: ../../Zotlabs/Module/Authorize.php:23 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "¿Autoriza a la aplicación %s a acceder a los datos de su canal?" + +#: ../../Zotlabs/Module/Authorize.php:25 +msgid "Allow" +msgstr "Permitir" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "El grupo de canales ha sido creado." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "No se puede crear el grupo de canales" + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 +#: ../../include/items.php:4181 +msgid "Privacy group not found." +msgstr "Grupo de canales no encontrado." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Grupo de canales actualizado." + +#: ../../Zotlabs/Module/Group.php:92 +msgid "Create a group of channels." +msgstr "Crear un grupo de canales." + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 +msgid "Privacy group name: " +msgstr "Nombre del grupo de canales:" + +#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +msgid "Members are visible to other channels" +msgstr "Los miembros son visibles para otros canales" + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Privacy group removed." +msgstr "Grupo de canales eliminado." + +#: ../../Zotlabs/Module/Group.php:115 +msgid "Unable to remove privacy group." +msgstr "No se puede eliminar el grupo de canales." + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Privacy group editor" +msgstr "Editor de grupos de canales" + +#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "Miembros" + +#: ../../Zotlabs/Module/Group.php:201 +msgid "All Connected Channels" +msgstr "Todos los canales conectados" + +#: ../../Zotlabs/Module/Group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Haga clic en un canal para agregarlo o quitarlo." + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Perfil no encontrado." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminado." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Perfil-" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "El nuevo perfil ha sido creado." + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Perfil no disponible para clonar." + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Perfil no disponible para exportar." + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Se necesita el nombre del perfil." + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "Estado civil" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Pareja sentimental" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "Me gusta" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "No me gusta" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "Trabajo:" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Religión" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Ideas políticas" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "Género" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Preferencia sexual" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Página personal" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Intereses" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Perfil actualizado." + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "Ocultar la lista de conexiones a los visitantes del perfil" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "Modificar los detalles de este perfil" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "Ver este perfil" + +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 +#: ../../include/channel.php:1319 +msgid "Edit visibility" +msgstr "Editar visibilidad" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "Gestión del perfil" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "Cambiar la imagen de portada del perfil" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "Crear un nuevo perfil usando estos ajustes" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "Clonar este perfil" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "Eliminar este perfil" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "Añadir cosas al perfil" + +#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 +msgid "Personal" +msgstr "Personales" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "Relación" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "Varios" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "Importar perfil desde un fichero" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "Exportar perfil a un fichero" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "Género" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "Estado civil" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "Preferencia sexual" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "Nombre del perfil" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "Este es su perfil principal." + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "Nombre completo" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "Título o descripción" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "Dirección" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "Ciudad" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "Región o Estado" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "Código postal" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "Quién (si es pertinente)" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "Desde (fecha)" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "Háblenos de usted" + +#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "Dirección de la página personal" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "Lugar de nacimiento" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "Ideas políticas" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "Creencias religiosas" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "Palabras clave utilizadas en los listados de directorios" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "Por ejemplo: software de fotografía submarina" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "Preferencias musicales" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "Libros, literatura" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "Televisión" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cine, danza, cultura, entretenimiento" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "Aficiones o intereses" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "Vida sentimental o amorosa" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "Estudios" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "Información de contacto y redes sociales" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "Mis otros canales" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "Comunicaciones" + +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 +msgid "Profile Image" +msgstr "Imagen del perfil" + +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 +#: ../../include/nav.php:117 +msgid "Edit Profiles" +msgstr "Editar perfiles" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Esta página está disponible sólo para los miembros del sitio" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Bienvenido/a" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "¿Qué le gustaría hacer?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Subir una foto de perfil" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Subir una foto de portada del perfil" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Editar su perfil por defecto" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 +msgid "View friend suggestions" +msgstr "Ver sugerencias de amistad" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "Ver el directorio de canales" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Ver o modificar los ajustes de su canal" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Ver el sitio o la documentación del proyecto" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Visitar la página principal de su canal" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Ver el \"stream\" público. Advertencia: este contenido no está moderado" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Enlace de la página" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Editar la página web" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Channel Manager" +msgstr "Administración de canales" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Canal actual" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "Canal principal" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Convertir en predeterminado" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas solicitudes de conexión" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Canal delegado" + +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 +#: ../../include/features.php:123 ../../include/nav.php:458 +msgid "Cards" +msgstr "Fichas" + +#: ../../Zotlabs/Module/Cards.php:99 +msgid "Add Card" +msgstr "Añadir una ficha" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "El servidor de este directorio necesita un \"token\" de acceso" + +#: ../../Zotlabs/Module/Siteinfo.php:18 +msgid "About this site" +msgstr "Acerca de este sitio" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +msgid "Site Name" +msgstr "Nombre del sitio" + +#: ../../Zotlabs/Module/Siteinfo.php:23 +msgid "Administrator" +msgstr "Administrador" + +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 +msgid "Terms of Service" +msgstr "Términos del servicio" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Software and Project information" +msgstr "Información sobre el software y el proyecto" + +#: ../../Zotlabs/Module/Siteinfo.php:27 +msgid "This site is powered by $Projectname" +msgstr "Este sitio funciona con $Projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "Servicios federados y descentralizados de identidad y redes proporcionados por Zot" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +#, php-format +msgid "Version %s" +msgstr "Versión %s" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "Project homepage" +msgstr "Página principal del proyecto" + +#: ../../Zotlabs/Module/Siteinfo.php:32 +msgid "Developer homepage" +msgstr "Página principal del desarrollador" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Ninguna valoración" + +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1082 +msgid "Ratings" +msgstr "Valoraciones" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valoración:" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sitio web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descripción:" + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Importar elementos de una página web" + +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Importar elementos seleccionados" + +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Exportar elementos de una página web" + +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "Exportar los elementos seleccionados" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1915 ../../include/nav.php:481 +msgid "Webpages" +msgstr "Páginas web" + +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Acciones" + +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Vínculo de la página" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Título de página" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Tipo de fichero no válido." + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Error al abrir el fichero comprimido zip" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "La ruta de la carpeta no es válida." + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "No se han detectado elementos de ninguna página web." + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importación completada." + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 +#: ../../include/channel.php:599 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 +#: ../../include/channel.php:604 +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." + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Cambiar el alias o la dirección del canal" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "¡Cualquier/todas las conexiones en otras redes se perderán!" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Nueva dirección del canal" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Renombrar el canal" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "El elemento no es editable" + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "Editar la entrada" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "Mensaje no válido" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "sin resultados" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "encolado" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "enviado" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "aceptado para el envío" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "actualizado" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "actualización ignorada" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "permiso denegado" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "destinatario no encontrado" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "mensaje de correo revocado" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "correo enviado" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" + +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Options" +msgstr "Opciones" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "Volver a enviar" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Fuente creada." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Fuente actualizada." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 +msgid "Channel Sources" +msgstr "Orígenes de los contenidos del canal" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestionar contenido de origen remoto para su canal." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nueva fuente" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importar solo contenido que contenga estas palabras (una por línea)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Dejar en blanco para importar todo el contenido público" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nombre del canal" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Fuente no encontrada" + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Editar fuente" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Eliminar fuente" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Fuente eliminada" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "No se puede eliminar la fuente." + +#: ../../Zotlabs/Module/Like.php:54 +msgid "Like/Dislike" +msgstr "Me gusta/No me gusta" + +#: ../../Zotlabs/Module/Like.php:59 +msgid "This action is restricted to members." +msgstr "Esta acción está restringida solo para miembros." + +#: ../../Zotlabs/Module/Like.php:60 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." + +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 +msgid "Invalid request." +msgstr "Solicitud incorrecta." + +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 +msgid "channel" +msgstr "el canal" + +#: ../../Zotlabs/Module/Like.php:150 +msgid "thing" +msgstr "elemento" + +#: ../../Zotlabs/Module/Like.php:196 +msgid "Channel unavailable." +msgstr "Canal no disponible." + +#: ../../Zotlabs/Module/Like.php:244 +msgid "Previous action reversed." +msgstr "Acción anterior revocada." + +#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 +#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 +#, 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:440 ../../addon/pubcrawl/as.php:1442 +#: ../../include/conversation.php:163 +#, 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:442 +#, 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:444 +#, 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:446 +#, 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:448 ../../addon/diaspora/Receiver.php:2072 +#, 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:450 ../../addon/diaspora/Receiver.php:2074 +#, 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:452 ../../addon/diaspora/Receiver.php:2076 +#, 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:564 +msgid "Action completed." +msgstr "Acción completada." + +#: ../../Zotlabs/Module/Like.php:565 +msgid "Thank you." +msgstr "Gracias." + +#: ../../Zotlabs/Module/Directory.php:106 +msgid "No default suggestions were found." +msgstr "No se encontraron sugerencias por defecto." + +#: ../../Zotlabs/Module/Directory.php:255 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoración" +msgstr[1] "%d valoraciones" + +#: ../../Zotlabs/Module/Directory.php:266 +msgid "Gender: " +msgstr "Género:" + +#: ../../Zotlabs/Module/Directory.php:268 +msgid "Status: " +msgstr "Estado:" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Homepage: " +msgstr "Página personal:" + +#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 +msgid "Age:" +msgstr "Edad:" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 +#: ../../include/event.php:54 ../../include/event.php:86 +msgid "Location:" +msgstr "Ubicación:" + +#: ../../Zotlabs/Module/Directory.php:330 +msgid "Description:" +msgstr "Descripción:" + +#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 +msgid "Hometown:" +msgstr "Lugar de nacimiento:" + +#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 +msgid "About:" +msgstr "Sobre mí:" + +#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1052 ../../include/channel.php:1376 +#: ../../include/connections.php:110 +msgid "Connect" +msgstr "Conectar" + +#: ../../Zotlabs/Module/Directory.php:339 +msgid "Public Forum:" +msgstr "Foro público:" + +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Keywords: " +msgstr "Palabras clave:" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Don't suggest" +msgstr "No sugerir:" + +#: ../../Zotlabs/Module/Directory.php:347 +msgid "Common connections (estimated):" +msgstr "Conexiones comunes (estimadas): " + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Global Directory" +msgstr "Directorio global:" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Local Directory" +msgstr "Directorio local:" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Finding:" +msgstr "Encontrar:" + +#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Sugerencias de canales" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "next page" +msgstr "siguiente página" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "previous page" +msgstr "página anterior" + +#: ../../Zotlabs/Module/Directory.php:408 +msgid "Sort options" +msgstr "Ordenar opciones" + +#: ../../Zotlabs/Module/Directory.php:409 +msgid "Alphabetic" +msgstr "Alfabético" + +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Reverse Alphabetic" +msgstr "Alfabético inverso" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Newest to Oldest" +msgstr "De más nuevo a más antiguo" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Oldest to Newest" +msgstr "De más antiguo a más nuevo" + +#: ../../Zotlabs/Module/Directory.php:429 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas entradas pueden estar ocultas)." + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Búsqueda de canales" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Buscar un canal (o un \"webbie\") que comience por:" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: ../../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/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "No se puede asociar a un destinatario." + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "No se puede establecer la comunicación con el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." + +#: ../../Zotlabs/Module/Mail.php:105 +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:160 +msgid "Messages" +msgstr "Mensajes" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "mensaje" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Mensaje revocado." + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "Para:" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +#: ../../include/conversation.php:1385 +msgid "Attach file" +msgstr "Adjuntar fichero" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Enviar" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1430 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Informe de transmisión" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Revocar el mensaje" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Eliminar conversación" + +#: ../../Zotlabs/Module/Mail.php:416 +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:420 +msgid "Send Reply" +msgstr "Responder" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "Servidores públicos" + +#: ../../Zotlabs/Module/Pubsites.php:27 +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:33 +msgid "Hub URL" +msgstr "Dirección del hub" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo de acceso" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Normas de registro" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Estadísticas" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Valorar" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 +msgid "webpage" +msgstr "página web" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 +msgid "block" +msgstr "bloque" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 +msgid "layout" +msgstr "plantilla" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" + +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guardar marcador" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "Dirección del marcador" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "Escriba un nombre de carpeta" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "o seleccione una (con un doble click)" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 +msgid "Save to Folder" +msgstr "Guardar en carpeta" + +#: ../../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/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Registro exitoso. Continúe creando tu primer canal..." + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "Su registro está pendiente de aprobación por el propietario del sitio." + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "El registro está deshabilitado en este sitio." + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "El registro en este hub está sometido a aprobación previa." + +#: ../../Zotlabs/Module/Register.php:202 +msgid "Register at another affiliated hub." +msgstr "Registrarse en otro hub afiliado." + +#: ../../Zotlabs/Module/Register.php:212 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." + +#: ../../Zotlabs/Module/Register.php:238 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" + +#: ../../Zotlabs/Module/Register.php:245 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" + +#: ../../Zotlabs/Module/Register.php:250 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" + +#: ../../Zotlabs/Module/Register.php:251 +msgid "Choose a password" +msgstr "Elija una contraseña" + +#: ../../Zotlabs/Module/Register.php:252 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" + +#: ../../Zotlabs/Module/Register.php:253 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "no" +msgstr "no" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "yes" +msgstr "sí" + +#: ../../Zotlabs/Module/Register.php:274 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." + +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 +#: ../../include/nav.php:164 +msgid "Register" +msgstr "Registrarse" + +#: ../../Zotlabs/Module/Register.php:287 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." + +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" +msgstr "Imágenes de portada del perfil" + +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 +msgid "female" +msgstr "mujer" + +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s ha actualizado su %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 +msgid "male" +msgstr "hombre" + +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s ha actualizado su %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s ha actualizado su %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 +msgid "cover photo" +msgstr "Imagen de portada del perfil" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +msgid "Change Cover Photo" +msgstr "Cambiar la foto de portada del perfil" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Búsqueda de Documentación" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 +#: ../../include/nav.php:391 +msgid "About" +msgstr "Mi perfil" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "Administradores" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "Desarrolladores" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "Tutoriales" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "Documentación de $Projectname" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "Contenidos" + +#: ../../Zotlabs/Module/Display.php:394 +msgid "Article" +msgstr "Artículo" + +#: ../../Zotlabs/Module/Display.php:446 +msgid "Item has been removed." +msgstr "Se ha eliminado el elemento." + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Etiqueta eliminada." + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" + +#: ../../Zotlabs/Module/Network.php:100 +msgid "No such group" +msgstr "No se encuentra el grupo" + +#: ../../Zotlabs/Module/Network.php:142 +msgid "No such channel" +msgstr "No se encuentra el canal" + +#: ../../Zotlabs/Module/Network.php:147 +msgid "forum" +msgstr "foro" + +#: ../../Zotlabs/Module/Network.php:159 +msgid "Search Results For:" +msgstr "Buscar resultados para:" + +#: ../../Zotlabs/Module/Network.php:229 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" + +#: ../../Zotlabs/Module/Network.php:238 +msgid "Privacy group: " +msgstr "Grupo de canales: " + +#: ../../Zotlabs/Module/Network.php:265 +msgid "Invalid connection." +msgstr "Conexión no válida." + +#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "El canal no es válido." + +#: ../../Zotlabs/Module/Acl.php:361 +msgid "network" +msgstr "red" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Permiso denegado" + +#: ../../Zotlabs/Module/Filestorage.php:95 +msgid "File not found." +msgstr "Fichero no encontrado." + +#: ../../Zotlabs/Module/Filestorage.php:142 +msgid "Edit file permissions" +msgstr "Modificar los permisos del fichero" + +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Establecer/editar los permisos" + +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Incluir todos los ficheros y subcarpetas" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Return to file list" +msgstr "Volver a la lista de ficheros" + +#: ../../Zotlabs/Module/Filestorage.php:158 +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:159 +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:161 +msgid "Share this file" +msgstr "Compartir este fichero" + +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "Mostrar la dirección de este fichero" + +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Show in your contacts shared folder" +msgstr "Mostrar en la carpeta compartida con sus contactos" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "Ninguna conexión en común." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Ver las conexiones comunes" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Reenvío del email de verificación" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "No se puede reenviar el mensaje de verificación por correo electrónico." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Sin conexiones." + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar el perfil de %s [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "Ver conexiones" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "Cuentas bloqueadas" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "Cuentas caducadas" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "Cuentas que caducan" + +#: ../../Zotlabs/Module/Admin.php:112 +msgid "Clones" +msgstr "Clones" + +#: ../../Zotlabs/Module/Admin.php:118 +msgid "Message queues" +msgstr "Mensajes en cola" + +#: ../../Zotlabs/Module/Admin.php:132 +msgid "Your software should be updated" +msgstr "Debe actualizar su software" + +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Summary" +msgstr "Sumario" + +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Registered accounts" +msgstr "Cuentas registradas" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Pending registrations" +msgstr "Registros pendientes" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered channels" +msgstr "Canales registrados" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Active plugins" +msgstr "Extensiones (plugins) activas" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Version" +msgstr "Versión" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Repository version (master)" +msgstr "Versión del repositorio (master)" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (dev)" +msgstr "Versión del repositorio (dev)" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sitio web:" + +#: ../../Zotlabs/Module/Rate.php:159 +#, 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:160 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Editar la ficha" + +#: ../../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:108 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../Zotlabs/Module/Lostpass.php:68 +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:91 ../../boot.php:1598 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "Su nueva contraseña es" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "pulse aquí para conectarse" + +#: ../../Zotlabs/Module/Lostpass.php:96 +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:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "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:132 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: ../../Zotlabs/Module/Notifications.php:62 +#: ../../Zotlabs/Lib/ThreadItem.php:408 +msgid "Mark all seen" +msgstr "Marcar todo como visto" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "0. Principiante/Básico" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "1. Novato: no cualificado, pero dispuesto a aprender" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "2. Intermedio - algo cómodo" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "3. Avanzado - muy cómodo" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "4. Experto - Puedo escribir código informático" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "5. Colaborador - probablemente sé más que tú" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Site Admin" +msgstr "Administrador del sitio" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Informe de errores" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "View Bookmarks" +msgstr "Ver los marcadores" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "My Chatrooms" +msgstr "Mis salas de chat" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" + +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 +msgid "Suggest Channels" +msgstr "Sugerir canales" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../Zotlabs/Lib/Apps.php:241 +msgid "Activity" +msgstr "Actividad" + +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 +#: ../../include/features.php:96 ../../include/nav.php:497 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:246 +msgid "Channel Home" +msgstr "Mi canal" + +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 +#: ../../include/conversation.php:1856 +msgid "Events" +msgstr "Eventos" + +#: ../../Zotlabs/Lib/Apps.php:250 +msgid "Directory" +msgstr "Directorio" + +#: ../../Zotlabs/Lib/Apps.php:252 +msgid "Mail" +msgstr "Correo" + +#: ../../Zotlabs/Lib/Apps.php:255 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:257 +msgid "Probe" +msgstr "Probar" + +#: ../../Zotlabs/Lib/Apps.php:258 +msgid "Suggest" +msgstr "Sugerir" + +#: ../../Zotlabs/Lib/Apps.php:259 +msgid "Random Channel" +msgstr "Canal aleatorio" + +#: ../../Zotlabs/Lib/Apps.php:260 +msgid "Invite" +msgstr "Invitar" + +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Idioma" + +#: ../../Zotlabs/Lib/Apps.php:263 +msgid "Post" +msgstr "Publicación" + +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "Foto del perfil" + +#: ../../Zotlabs/Lib/Apps.php:407 +msgid "Purchase" +msgstr "Comprar" + +#: ../../Zotlabs/Lib/Apps.php:411 +msgid "Undelete" +msgstr "Recuperar" + +#: ../../Zotlabs/Lib/Apps.php:419 +msgid "Add to app-tray" +msgstr "Añadir a la bandeja de aplicaciones" + +#: ../../Zotlabs/Lib/Apps.php:420 +msgid "Remove from app-tray" +msgstr "Quitar de la bandeja de aplicaciones" + +#: ../../Zotlabs/Lib/Apps.php:421 +msgid "Pin to navbar" +msgstr "Fijar en la barra de navegación" + +#: ../../Zotlabs/Lib/Apps.php:422 +msgid "Unpin from navbar" +msgstr "Quitar de la barra de navegación" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "por defecto" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "seguidor" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "contribuidor" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "editor" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +msgid "(No Title)" +msgstr "(Sin título)" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +msgid "Wiki page create failed." +msgstr "Se ha producido un error en la creación de la página wiki." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +msgid "Wiki not found." +msgstr "No se ha encontrado el wiki." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:131 +msgid "Destination name already exists" +msgstr "El nombre de destino ya existe" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:163 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +msgid "Page not found" +msgstr "No se ha encontrado la página" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +msgid "Error reading page content" +msgstr "Se ha producido un error al leer el contenido de la página" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:350 +#: ../../Zotlabs/Lib/NativeWikiPage.php:400 +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Error reading wiki" +msgstr "Se ha producido un error al leer el wiki" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +msgid "Page update failed." +msgstr "Se ha producido un error al actualizar la página." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +msgid "Nothing deleted" +msgstr "No se ha eliminado nada" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +msgid "Compare: object not found." +msgstr "No se ha encontrado un objeto para comparar." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +msgid "Page updated" +msgstr "Se ha actualizado la página" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +msgid "Untitled" +msgstr "Sin título" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +msgid "Wiki resource_id required for git commit" +msgstr "Se necesita Wiki resource_id para el git commit" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "Mensaje" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 +#: ../../include/bbcode.php:914 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "Sólo yo" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "Público" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "Cualquiera en la red $Projectname" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "Cualquier cuenta en %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "Cualquiera de mis conexiones" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "Sólo las conexiones que yo permita de forma explícita" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +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:114 +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:150 +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:151 +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:152 +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:153 +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:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" + +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "Sala de chat sin nombre" + +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "Nombre de sala duplicado." + +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "Especificador de sala no válido." + +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "Sala no encontrada." + +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "La sala está llena." + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "Notificación de $Projectname" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "Gracias," + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Este email ha sido enviado por %1$s a %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Para dejar de recibir estos mensajes, por favor, ajuste su %s" + +#: ../../Zotlabs/Lib/Enotify.php:123 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Aviso] Nuevo correo recibido en %s" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s le ha enviado un nuevo mensaje privado en %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s le ha enviado %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "un mensaje privado" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "ha comentado sobre " + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "ha gustado de " + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "no ha gustado de " + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s%2$s [zrl=%3$s ]un %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s %2$s[zrl=%3$s]%5$s de %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]su %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Aviso] Comentario moderado en la conversación #%1$d por %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "%1$sha comentado un elemento/conversación que ha estado siguiendo." + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Para ver o comentar la conversación, visite %s" + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "Por favor, visite %s para aprobar o rechazar este comentario." + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "A %1$sle ha gustado [zrl=%2$s]su %3$s [/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Aviso] \"Me gusta\" de %2$s en la conversación #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "A %1$s le ha gustado un elemento o conversación que ha creado usted." + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha publicado en su muro en %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$sha publicado en [zrl=%2$s]su muro[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Aviso] %s le ha etiquetado" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$sle ha etiquetado en %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s [zrl=%2$s]le ha etiquetado[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Aviso] %1$s le ha dado un toque" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$sle ha dado un toque en %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl=%2$s] le ha dado un toque[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Aviso] %s ha etiquetado su entrada" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$sha etiquetado su entrada en %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$s ha etiquetado [zrl=%2$s]su entrada[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Aviso] Ha recibido una solicitud de conexión" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "Ha recibido una nueva solicitud de conexión de '%1$s' en %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "Ha recibido [zrl=%1$s]una nueva solicitud de conexión[/zrl] de %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puede visitar su perfil en %s" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Aviso] Ha recibido una sugerencia de conexión" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Ha recibido una sugerencia de amistad de '%1$s' en %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "" +"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "Ha recibido [zrl=%1$s]una sugerencia de amistad[/zrl] para %2$s de %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "Nombre:" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Aviso]" + +#: ../../Zotlabs/Lib/Enotify.php:808 msgid "created a new post" msgstr "ha creado una nueva entrada" -#: ../../include/notify.php:24 +#: ../../Zotlabs/Lib/Enotify.php:809 #, php-format msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero importado." +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "ha editado una entrada fechada el %s" -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "ha editado un comentario fechado el %s" -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "Importación completada." +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "El wiki se ha actualizado con éxito" -#: ../../include/group.php:26 +#: ../../Zotlabs/Lib/NativeWiki.php:205 +msgid "Wiki files deleted successfully" +msgstr "Se han borrado con éxito los ficheros del wiki" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "Error de actualización en %s" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "La actualización %s ha fallado. Mire el informe de errores." + +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 +msgid "Private Message" +msgstr "Mensaje Privado" + +#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 +msgid "Select" +msgstr "Seleccionar" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will attend" +msgstr "Participaré" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will not attend" +msgstr "No participaré" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I might attend" +msgstr "Quizá participe" + +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I agree" +msgstr "Estoy de acuerdo" + +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I disagree" +msgstr "No estoy de acuerdo" + +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I abstain" +msgstr "Me abstengo" + +#: ../../Zotlabs/Lib/ThreadItem.php:238 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" + +#: ../../Zotlabs/Lib/ThreadItem.php:239 +msgid "Remove Star" +msgstr "Eliminar estrella" + +#: ../../Zotlabs/Lib/ThreadItem.php:240 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" + +#: ../../Zotlabs/Lib/ThreadItem.php:244 +msgid "starred" +msgstr "preferidas" + +#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" + +#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" + +#: ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "Add Tag" +msgstr "Añadir etiqueta" + +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 +msgid "like" +msgstr "me gusta" + +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 +msgid "dislike" +msgstr "no me gusta" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "Share This" +msgstr "Compartir esto" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "share" +msgstr "compartir" + +#: ../../Zotlabs/Lib/ThreadItem.php:295 +msgid "Delivery Report" +msgstr "Informe de transmisión" + +#: ../../Zotlabs/Lib/ThreadItem.php:313 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" + +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:347 +msgid "to" +msgstr "a" + +#: ../../Zotlabs/Lib/ThreadItem.php:348 +msgid "via" +msgstr "mediante" + +#: ../../Zotlabs/Lib/ThreadItem.php:349 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" + +#: ../../Zotlabs/Lib/ThreadItem.php:350 +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:363 ../../include/conversation.php:763 +#, php-format +msgid "from %s" +msgstr "desde %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:374 +msgid "Attend" +msgstr "Participar o asistir" + +#: ../../Zotlabs/Lib/ThreadItem.php:375 +msgid "Attendance Options" +msgstr "Opciones de participación o asistencia" + +#: ../../Zotlabs/Lib/ThreadItem.php:376 +msgid "Vote" +msgstr "Votar" + +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Voting Options" +msgstr "Opciones de votación" + +#: ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" + +#: ../../Zotlabs/Lib/ThreadItem.php:399 +msgid "Add to Calendar" +msgstr "Añadir al calendario" + +#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "Esta es una previsualización sin guardar" + +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostrar todo" + +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 +msgid "Bold" +msgstr "Negrita" + +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 +msgid "Italic" +msgstr "Itálico " + +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 +msgid "Underline" +msgstr "Subrayar" + +#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 +msgid "Quote" +msgstr "Citar" + +#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 +msgid "Code" +msgstr "Código" + +#: ../../Zotlabs/Lib/ThreadItem.php:758 +msgid "Image" +msgstr "Imagen" + +#: ../../Zotlabs/Lib/ThreadItem.php:759 +msgid "Attach File" +msgstr "Fichero adjunto" + +#: ../../Zotlabs/Lib/ThreadItem.php:760 +msgid "Insert Link" +msgstr "Insertar enlace" + +#: ../../Zotlabs/Lib/ThreadItem.php:761 +msgid "Video" +msgstr "Vídeo" + +#: ../../Zotlabs/Lib/ThreadItem.php:771 +msgid "Your full name (required)" +msgstr "Su nombre completo (requerido)" + +#: ../../Zotlabs/Lib/ThreadItem.php:772 +msgid "Your email address (required)" +msgstr "Su dirección de correo electrónico (requerido)" + +#: ../../Zotlabs/Lib/ThreadItem.php:773 +msgid "Your website URL (optional)" +msgstr "La URL de su sitio web (opcional)" + +#: ../../Zotlabs/Zot/Auth.php:152 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto por favor cree otro grupo con un nombre diferente." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Privacidad de grupo por defecto para nuevos contactos " +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Todos los canales" +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 +msgid "parent" +msgstr "padre" -#: ../../include/group.php:276 -msgid "edit" -msgstr "editar" +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 +msgid "Collection" +msgstr "Colección" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Colecciones" +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Principal" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Editar colección" +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Libreta de direcciones" -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Añadir nueva colección" +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 +msgid "Calendar" +msgstr "Calendario" -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "El canal no se encuentra en ninguna colección" +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Programar bandeja de entrada" -#: ../../include/group.php:303 ../../include/widgets.php:275 +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Programar bandeja de salida" + +#: ../../Zotlabs/Storage/Browser.php:273 +msgid "Total" +msgstr "Total" + +#: ../../Zotlabs/Storage/Browser.php:275 +msgid "Shared" +msgstr "Compartido" + +#: ../../Zotlabs/Storage/Browser.php:277 +msgid "Add Files" +msgstr "Añadir ficheros" + +#: ../../Zotlabs/Storage/Browser.php:353 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "Está usando %1$s de su espacio disponible para ficheros." + +#: ../../Zotlabs/Storage/Browser.php:358 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" + +#: ../../Zotlabs/Storage/Browser.php:369 +msgid "WARNING:" +msgstr "ATENCIÓN: " + +#: ../../Zotlabs/Storage/Browser.php:381 +msgid "Create new folder" +msgstr "Crear nueva carpeta" + +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Upload file" +msgstr "Subir fichero" + +#: ../../Zotlabs/Storage/Browser.php:396 +msgid "Drop files here to immediately upload" +msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" + +#: ../../Zotlabs/Widget/Forums.php:100 +msgid "Forums" +msgstr "Foros" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "Seleccionar un canal" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "Lectura y escritura" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "Sólo lectura" + +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "Mis calendarios" + +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "Calendarios compartidos" + +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "Compartir este calendario" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "Nombre y color del calendario" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "Crear un nuevo calendario" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "Nombre del calendario" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "Gestión de calendarios" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "Importar un calendario" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "Seleccionar un calendario para importarlo" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "Agenda de direcciones" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "Nombre de la agenda" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "Crear una nueva agenda de direcciones" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "Nombre de la agenda" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "Gestión de agendas de direcciones" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "Importar una agenda de direcciones" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "Seleccionar una agenda para importarla" + +#: ../../Zotlabs/Widget/Appcategories.php:40 +#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 +#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 +msgid "Categories" +msgstr "Temas" + +#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +msgid "Everything" +msgstr "Todo" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Gestión de eventos" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Exportar el calendario" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Importar un calendario" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "Panel de control de HQ" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "Crear una nueva entrada" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Vista combinada" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "Bandeja de entrada" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Bandeja de salida" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 +#: ../../include/nav.php:434 ../../include/nav.php:437 +msgid "Chatrooms" +msgstr "Salas de chat" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Resumen" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Valoraciones" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "Valorar este canal" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Actividad" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Dirección del canal" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wiki List" +msgstr "Lista de wikis" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Hemeroteca" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Mensajes recibidos" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Enviar mensajes" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Conversaciones" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Sin mensajes." + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Miembros del chat" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "foto/imagen" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 msgid "add" msgstr "añadir" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Notas" -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a los dominios permitidos en este sitio." +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:89 +msgid "Add new page" +msgstr "Añadir una nueva página" -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../Zotlabs/Widget/Wiki_pages.php:83 +msgid "Wiki Pages" +msgstr "Páginas del wiki" -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." +#: ../../Zotlabs/Widget/Wiki_pages.php:94 +msgid "Page name" +msgstr "Nombre de la página" -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." +#: ../../Zotlabs/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Recargar" -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Tareas" -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Sugerencias" -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Ver más..." -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:470 +msgid "Saved Folders" +msgstr "Carpetas guardadas" -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 ../../include/network.php:1632 -msgid "Administrator" +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Hacer clic para ver más" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 +#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 +msgid "Tags" +msgstr "Etiquetas" + +#: ../../Zotlabs/Widget/Newmember.php:24 +msgid "Profile Creation" +msgstr "Creación de perfiles" + +#: ../../Zotlabs/Widget/Newmember.php:26 +msgid "Upload profile photo" +msgstr "Cargar la foto del perfil" + +#: ../../Zotlabs/Widget/Newmember.php:27 +msgid "Upload cover photo" +msgstr "Cargar la foto de portada del perfil" + +#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Find and Connect with others" +msgstr "Encontrar y conectarse con otros" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "View the directory" +msgstr "Ver el directorio" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Manage your connections" +msgstr "Gestionar sus conexiones" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Communicate" +msgstr "Comunicarse" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View your channel homepage" +msgstr "Ver la página principal de su canal" + +#: ../../Zotlabs/Widget/Newmember.php:41 +msgid "View your network stream" +msgstr "Ver el \"stream\" de su red" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Documentation" +msgstr "Documentación" + +#: ../../Zotlabs/Widget/Newmember.php:58 +msgid "View public stream" +msgstr "Ver el \"stream\" público" + +#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 +msgid "New Member Links" +msgstr "Enlaces para nuevos miembros" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Examinar la cola" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 +msgid "Admin" msgstr "Administrador" -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "su contraseña de registro" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" +msgstr "Extensiones" -#: ../../include/account.php:339 ../../include/account.php:399 +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Configuración de la cuenta" + +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Configuración del canal" + +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Funcionalidades" + +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "Ajustes de los complementos" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Ajustes de visualización" + +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" + +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Exportar canal" + +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "OAuth1 apps" +msgstr "Aplicaciones OAuth1" + +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "OAuth2 apps" +msgstr "Aplicaciones OAuth2" + +#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 +msgid "Permission Groups" +msgstr "Grupos de permisos" + +#: ../../Zotlabs/Widget/Settings_menu.php:125 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" + +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Nueva actividad en la red" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Avisos de nueva actividad en la red" + +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "Ver su actividad en la red" + +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "Marcar todas las notificaciones como leídas" + +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 +msgid "Show new posts only" +msgstr "Mostrar solo las entradas nuevas" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Filtrar por nombre" + +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "Nueva actividad en su página principal" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "Avisos de nueva actividad en su página principal" + +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "Ver su actividad en su página principal" + +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 +msgid "Mark all notifications seen" +msgstr "Marcar todas las notificaciones como vistas" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "Nuevos mensajes de correo" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "Avisos de nuevos mensajes de correo" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "Ver sus correos privados" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "Marcar todos los mensajes como vistos" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "Eventos nuevos" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "Avisos de nuevos eventos" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "Ver los eventos" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "Avisos de nuevas conexiones" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "Ver todas las conexiones" + +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "Ficheros nuevos" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "Avisos de nuevos ficheros" + +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Avisos" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "Ver todos los avisos" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "Marcar como leídos todos los avisos" + +#: ../../Zotlabs/Widget/Notifications.php:121 +msgid "New Registrations" +msgstr "Registros nuevos" + +#: ../../Zotlabs/Widget/Notifications.php:122 +msgid "New Registrations Notifications" +msgstr "Notificaciones de nuevos registros" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "Public Stream Notifications" +msgstr "Avisos del \"stream\" público" + +#: ../../Zotlabs/Widget/Notifications.php:135 +msgid "View the public stream" +msgstr "Ver el \"stream\" público" + +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Lo sentimos, por el momento no ha recibido ninguna notificación" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "No se ha encontrado el canal de origen." + +#: ../../boot.php:1569 +msgid "Create an account to access services and applications" +msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" + +#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../boot.php:1592 +msgid "Login/Email" +msgstr "Inicio de sesión / Correo electrónico" + +#: ../../boot.php:1593 +msgid "Password" +msgstr "Contraseña" + +#: ../../boot.php:1594 +msgid "Remember me" +msgstr "Recordarme" + +#: ../../boot.php:1597 +msgid "Forgot your password?" +msgstr "¿Olvidó su contraseña?" + +#: ../../boot.php:2354 #, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" +msgid "[$Projectname] Website SSL error for %s" +msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Cuenta aprobada." +#: ../../boot.php:2359 +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." -#: ../../include/account.php:447 +#: ../../boot.php:2475 #, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Cuenta verificada. Por favor, inicie sesión." +#: ../../boot.php:2480 +msgid "Cron/Scheduled tasks not running." +msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" - -#: ../../include/account.php:713 -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:718 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." - -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Varios" - -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" - -#: ../../include/datetime.php:235 ../../mod/events.php:672 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Obligatorio" - -#: ../../include/datetime.php:262 ../../boot.php:2353 +#: ../../boot.php:2481 ../../include/datetime.php:238 msgid "never" msgstr "nunca" -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "hace un instante" +#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 +msgid "Cover Photo" +msgstr "Imagen de portada del perfil" -#: ../../include/datetime.php:271 -msgid "year" -msgstr "año" +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (predefinido)" -#: ../../include/datetime.php:271 -msgid "years" -msgstr "años" +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Ajustes del tema" -#: ../../include/datetime.php:272 -msgid "month" -msgstr "mes" +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Estrechar la barra de navegación" -#: ../../include/datetime.php:272 -msgid "months" -msgstr "meses" +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Color de fondo de la barra de navegación" -#: ../../include/datetime.php:273 -msgid "week" -msgstr "semana" +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Color del icono de la barra de navegación" -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "semanas" +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Color del icono activo de la barra de navegación" -#: ../../include/datetime.php:274 -msgid "day" -msgstr "día" +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "Color del enlace" -#: ../../include/datetime.php:274 -msgid "days" -msgstr "días" +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Ajustar el color del tipo de letra para el \"banner\"" -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "hora" +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Ajustar el color de fondo" -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "horas" +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Ajustar la imagen de fondo" -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "minuto" +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "Ajustar el color de los elementos de fondo" -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "minutos" +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Ajustar el color de fondo de los comentarios" -#: ../../include/datetime.php:277 -msgid "second" -msgstr "segundo" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Ajustar el tamaño de letra para toda la aplicación" -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "segundos" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "Ejemplos: 1rem, 100%, 16px" -#: ../../include/datetime.php:285 +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Establecer el color de la letra para publicaciones y comentarios" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Establecer el radio de curvatura de las esquinas" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "Ejemplo: 4px" + +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Ajustar la profundidad de sombras de las fotos" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Dejar en blanco para la anchura predeterminada" + +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "Alinear a la izquierda el contenido de la página" + +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Ajustar el tamaño de la foto del autor de la conversación" + +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Ajustar el tamaño de foto de los seguidores del autor" + +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "Errores encontrados al eliminar la tabla de la base de datos" + +#: ../../addon/rendezvous/rendezvous.php:95 +#: ../../addon/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "Enviar los ajustes" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "¿Eliminar tablas al desinstalar?" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "Si se selecciona, las tablas de la base de datos Rendezvous se eliminarán cuando se desinstale el plugin." + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "Token de acceso de Mapbox" + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "Si introduce un token de acceso a Mapbox, se utilizará para recuperar los mapas de mosaicos de imágenes de Mapbox en lugar del servidor de mosaico de imágenes OpenStreetMap predeterminado." + +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "Rendezvous" + +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "Esta identidad ha sido eliminada por otro miembro debido a su inactividad. Pulse el botón \"Nueva identidad\" o actualice la página para registrar una nueva identidad. Puede usar el mismo nombre." + +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "¡Bienvenido/a a Rendevous!" + +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with" +" the other members, tap the GPS control. When your location is discovered, a" +" red dot will appear and others will be able to see you on the map." +msgstr "Introduzca tu nombre para unirse a esta cita. Para comenzar a compartir su ubicación con los demás miembros, pulse en el control GPS. Cuando se descubra su ubicación, aparecerá un punto rojo y otros podrán verlo en el mapa." + +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "Reunámonos aquí" + +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "Nuevo marcador" + +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "Editar un marcador" + +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "Nueva identidad" + +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "Eliminar un marcador" + +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "Eliminar un miembro" + +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "Editar alerta de proximidad" + +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius" +" of you.

Enter a radius in meters (0 to disable):" +msgstr "Se emitirá una alerta de proximidad cuando este miembro esté dentro de un radio determinado respecto a usted.

Ingrese el radio en metros (0 para deshabilitar):" + +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "distancia" + +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "Distancia (en metros) para la alerta de proximidad" + +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the" +" marker location.

Enter a radius in meters (0 to disable):" +msgstr "Se emitirá una alerta de proximidad cuando usted esté dentro de un radio determinado respecto al marcador de localización.

Ingrese el radio en metros (0 para deshabilitar):" + +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "Marcador de alerta de proximidad" + +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "Recordatorio" + +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "Introduzca una nota que se mostrará cuando esté dentro de la proximidad especificada..." + +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "Añadir una nueva cita" + +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or" +" share their own locations with the group." +msgstr "Cree una nueva cita y comparta los enlaces de acceso con los que desea invitar al grupo. Aquellos que abran el enlace se convertirán en miembros de la cita. Pueden ver otras ubicaciones de miembros, añadir marcadores al mapa o compartir sus propias ubicaciones con el grupo." + +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" +msgstr "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!" + +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "Algunos ajustes" + +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "Un ajuste" + +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "Ajustes de Skeleton" + +#: ../../addon/gnusoc/gnusoc.php:249 +msgid "GNU-Social Protocol Settings updated." +msgstr "Se han actualizado los ajustes del protocolo de GNU-Social." + +#: ../../addon/gnusoc/gnusoc.php:268 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos." + +#: ../../addon/gnusoc/gnusoc.php:271 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "Activar el protocolo de GNU-Social para este canal" + +#: ../../addon/gnusoc/gnusoc.php:275 +msgid "GNU-Social Protocol Settings" +msgstr "Ajustes del protocolo de GNU-Social" + +#: ../../addon/gnusoc/gnusoc.php:471 +msgid "Follow" +msgstr "Seguir" + +#: ../../addon/gnusoc/gnusoc.php:474 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" +msgid "%1$s is now following %2$s" +msgstr "%1$s está siguiendo ahora a %2$s" -#: ../../include/datetime.php:519 +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "Se han guardado los ajustes de Planets." + +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "Habilitar el plugin Planets" + +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "Ajustes de Planets" + +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "Valores predeterminados del sistema: " + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "IDs de las imágenes clipart preferidas" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "Lista de ids de imágenes de clipart preferidas. Se verán en primer lugar." + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "Términos de búsqueda predeterminados" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "Los términos de búsqueda predeterminados. Estos se mostrarán en segundo lugar." + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "Regresar después" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "Página para cargar después de la selección de imágenes." + +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 +#: ../../include/nav.php:119 +msgid "Edit Profile" +msgstr "Editar el perfil" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "Lista de perfiles" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "Orden de preferencia" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "Orden de clasificación de los identificadores de imágenes clipart preferidas." + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "Las más nuevas en primer lugar" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "Tal como se ingresaron" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "Orden de los demás" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "Orden de clasificación de otros ids de imágenes clipart." + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "Las más descargadas en primer lugar" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "Las más apreciadas en primer lugar" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "Mensaje de IDs preferido" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "Mensaje para mostrar sobre los resultados preferidos." + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "Subida por: " + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "Creada por: " + +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Usar esta imagen" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "O seleccionar una imagen gratuita de OpenClipart.org: " + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "Término de búsqueda" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "Error desconocido. Por favor, inténtelo otra vez." + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "Se ha actualizado con éxito la foto de perfil." + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Indicador (\"flag\") de fotos de adultos" + +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada" + +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "Publicar en WordPress" + +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "Habilitar el plugin de publicación en WordPress" + +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "Nombre de usuario de WordPress" + +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "Contraseña de WordPress" + +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "URL de la API de WordPress" + +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "Habitualmente https://your-blog.tld/xmlrpc.php" + +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "Blog de WordPress" + +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco" + +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "Publicar en WordPress por defecto" + +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "Reenviar comentarios (requerido por el plugin hubzilla_wp)" + +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "Ajustes de publicación en WordPress" + +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "Se han guardado los ajustes de WordPress." + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Este complemento busca en los mensajes las palabras o texto que se especifican a continuación y contrae cualquier contenido que contenga esas palabras clave para que no se muestre en momentos inapropiados, como insinuaciones sexuales que pueden ser impropias en un entorno de trabajo. Es una muestra de educación y se recomienda marcar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como un filtro de contenido de propósito general." + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "Habilitar filtro de contenido" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "Lista separada por comas de palabras clave para ocultar" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "Palabra, /expresión regular/, lang=xx, lang!=xx" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "No es seguro para ajustes de trabajo" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "Filtro de contenido de propósito general" + +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "Se han guardado los ajustes de NSFW." + +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "Posible contenido para adultos" + +#: ../../addon/nsfw/nsfw.php:222 #, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" +msgid "%s - view" +msgstr "ver - %s" -#: ../../include/datetime.php:520 +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "Publicar en Insanejournal" + +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Habilitar el plugin de publicación en InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Nombre de usuario en InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "Contraseña en InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "Publicar por defecto en InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "Ajustes de publicación en InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "Se han guardado los ajustes de InsaneJournal." + +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "Publicar en Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "Activar el plugin de publicación en Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "Nombre de usuario en Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "Contraseña en Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "Publicar en Dreamwidth de forma predeterminada" + +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "Ajustes de publicación en Dreamwidth" + +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "Nuevo registro" + +#: ../../addon/notifyadmin/notifyadmin.php:42 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" +msgid "Message sent to %s. New account registration: %s" +msgstr "Mensaje enviado a %s. Registro de una nueva cuenta: %s" -#: ../../include/dir_fns.php:126 +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "Estadísticas de directorio de Hubzilla" + +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "Número total de servidores" + +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "Servidores (hubs) de Hubzilla" + +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "Servidores (hubs) de Friendica" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "Servidores (pods) de Diaspora" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "Canales de Hubzilla" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "Canales de Friendica" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "Canales de Diaspora" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "De 35 años de edad en adelante" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "De 34 o menos años de edad" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "Promedio de edad" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "Salas de chat conocidas" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "Etiquetas conocidas" + +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refieren únicamente a aquellas de las que **este directorio** es consciente, y no a todos los conocidos en la red. Esto también es aplicable a las salas de chat," + +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "Su webbie: " + +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "Tamaño de fuente (px): " + +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "Enlace: " + +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Múestrenos su agrado en Hubzilla" + +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "Incorporado: " + +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "Se han importado las fotos" + +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "Importar un álbum de fotos de Redmatrix" + +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "Esto importará todos sus álbumes de fotos de Redmatrix a este canal." + +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "URL base del servidor Redmatrix" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "Nombre de inicio de sesión en Redmatrix" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "Contraseña de inicio de sesión en Redmatrix" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "Importar solo este álbum" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "Dejar en blanco para importar todos los álbumes" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "Límite máximo de importación" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "0 o en blanco para importar todos los disponibles" + +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "Canales para conexión automática" + +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" +msgstr "Lista separada por comas" + +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Canales populares" + +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" +msgstr "Ajustes de IRC" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Se han guardado los ajustes de IRC." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "Sala de chat IRC" + +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "Publicar en LiveJournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "Habilitar el plugin de publicación en LiveJournal" + +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "Nombre de usuario en LiveJournal" + +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "Contraseña en LiveJournal" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "Publicar en LiveJournal por defecto" + +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "Ajustes de publicación en LiveJournal" + +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "Se han guardado los ajustes de LiveJournal." + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Encontramos un problema al iniciar sesión con el OpenID que proporcionó. Compruebe si el ID está correctamente escrito." + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "El mensaje de error ha sido: " + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "Nombre" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "Apellido" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" +msgstr "Alias" + +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "Nombre completo" + +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "Foto del perfil 16px" + +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "Foto del perfil 32px" + +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "Foto del perfil 48px" + +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "Foto del perfil 64px" + +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "Foto del perfil 80px" + +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "Foto del perfil 128px" + +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "Zona horaria" + +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "Año de nacimiento" + +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "Mes de nacimiento" + +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "Día de nacimiento" + +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "Fecha de nacimiento" + +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." + +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 +msgid "Login failed." +msgstr "El acceso ha fallado." + +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1480 +msgid "Male" +msgstr "Hombre" + +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1478 +msgid "Female" +msgstr "Mujer" + +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "Bienvenido." + +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "Ah, joder..." + +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "No lo menciones." + +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "<sonrojo>" + +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "Página para cargar tras el inicio de sesión" + +#: ../../addon/startpage/startpage.php:109 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "Ejemplos: "aplicaciones", "mi red?f=&gid=37" (grupo de canales), "mi canal" or "notificaciones del sistema" (dejar en blanco para la página de mi red por defecto (grid)." + +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "Ajustes de startpage" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "una bofetada humillante" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "ha abofeteado de forma humillante a" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "un polvo" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "ha dejado exhausto/a a" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "una patente" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "ha patentado a" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "un abrazo" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "ha abrazado a" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "un asesinato" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "ha asesinado a" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "una alabanza" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "ha elogiado a" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "un beso" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "ha besado a" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "una tentación" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "ha tentado a" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "un levantamiento de cejas" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "ha levantado las cejas a" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "un insulto" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "ha insultado a" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "un elogio" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "ha elogiado a" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "una indecisión" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "estaba dudoso de" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "una comida" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "ha comido" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "una sonrisa aduladora" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "ha sonreído y adulado a" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "una duda" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "ha dudado de" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "una mirada furiosa" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "ha mirado con furia" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "una mierda" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "ha mandado a la mierda a" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "un golpe" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "ha golpeado a" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "una declaración de amor eterno" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "ha declarado amor eterno a" + +#: ../../addon/diaspora/diaspora.php:781 +msgid "Diaspora Protocol Settings updated." +msgstr "Los ajustes del protocolo de Diaspora se han actualizado." + +#: ../../addon/diaspora/diaspora.php:800 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos." + +#: ../../addon/diaspora/diaspora.php:803 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Activar el protocolo de Diaspora para este canal" + +#: ../../addon/diaspora/diaspora.php:807 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas" + +#: ../../addon/diaspora/diaspora.php:811 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " + +#: ../../addon/diaspora/diaspora.php:815 +msgid "" +"Sign and forward posts and comments with no existing Diaspora signature" +msgstr "Firmar y enviar entradas y comentarios sin firma de Diaspora" + +#: ../../addon/diaspora/diaspora.php:820 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" + +#: ../../addon/diaspora/diaspora.php:825 +msgid "Diaspora Protocol Settings" +msgstr "Ajustes del protocolo de Diaspora" + +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "No se ha encontrado el nombre de usuario en el fichero de importación." + +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 +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." + +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Su cuenta en %s caducará en unos pocos días." + +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "Su cuenta de prueba de $Productname está a punto de caducar." + +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "Habilitar Rainbowtag" + +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "Ajustes de Rainbowtag" + +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "Se han guardado los ajustes de Rainbowtag." + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "Mostrar los límites de subida" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "Tamaño máximo configurado por Hubzilla: " + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "PHP upload_max_filesize: " + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "PHP post_max_size (debe ser mayor que upload_max_filesize): " + +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "imagen del perfil general" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "patrón geométrico aleatorio" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "cara de monstruo" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "cara generada por ordenador" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "cara de estilo retro arcade" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Foto del perfil por defecto del hub" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Información" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "El addon Libravatar también está instalado. Por favor deshabilite el addon de Libravatar o este addon de Gravatar.
El addon de Libravatar volverá a Gravatar si no se encuentra nada en Libravatar." + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "Guardar ajustes" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "Imagen del avatar por defecto" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Selecciona la imagen de avatar predeterminada si no se encontró ninguna en Gravatar. Ver README" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "Valoración de las imágenes" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Seleccione la valoración adecuada del avatar para su sitio. Ver README" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "Se han actualizado los ajustes de Gravatar." + +#: ../../addon/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "Importar del depósito de ficheros de Hubzilla" + +#: ../../addon/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "Esto importará todos sus ficheros en la nube desde otro servidor." + +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "URL base del servidor Hubzilla" + +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "Modificado desde la fecha yyyy-mm-dd" + +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "Modificado hasta la fecha yyyy-mm-dd" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Visitantes recientes del canal o perfil" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "El plugin o complemento no se ha configurado." + +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "Por favor, revise los ajustes de Visage en %s" + +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "su página de ajustes de las funcionalidades" + +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "No hay entradas." + +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "Habilitar el registro de visitantes de Visage" + +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "Ajustes de Visage" + +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "Se han actualizado los ajustes de Nsabait" + +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "Habilitar el plugin NSAbait" + +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "Ajustes de NSAbait" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "Enviar un correo electrónico de prueba" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "No se han encontrado destinatarios." + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "El correo electrónico ha sido enviado." + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "No se pudo enviar el correo." + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "Prueba de correo" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "Asunto del mensaje" + +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Usar markdown para editar las entradas" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "Ver más grande" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "URL del servidor de mosaicos de imágenes " + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "Una lista de servidores públicos de mosaicos de imágenes" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "URL del servidor nominatim (geocodificación inversa)" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "Una lista de servidores nominatim" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "Zoom predeterminado" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "El nivel de zoom predeterminado. (1: mundo, 18: el más alto, también depende del servidor del mosaico de imágenes)" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "Incluir un marcador en el mapa" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "Incluir un marcador en el mapa." + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "texto a incluir en todos los mensajes salientes de este sitio" + +#: ../../addon/fuzzloc/fuzzloc.php:148 +msgid "Fuzzloc Settings updated." +msgstr "Los ajustes de Fuzzloc se han actualizado." + +#: ../../addon/fuzzloc/fuzzloc.php:175 +msgid "" +"Fuzzloc allows you to blur your precise location if your channel uses " +"browser location mapping." +msgstr "Fuzzloc le permite desdibujar su ubicación precisa si su canal utiliza la asignación de ubicación del navegador." + +#: ../../addon/fuzzloc/fuzzloc.php:178 +msgid "Enable Fuzzloc Plugin" +msgstr "Habilitar el plugin Fuzzloc" + +#: ../../addon/fuzzloc/fuzzloc.php:182 +msgid "Minimum offset in meters" +msgstr "Offset mínimo en metros" + +#: ../../addon/fuzzloc/fuzzloc.php:186 +msgid "Maximum offset in meters" +msgstr "Offset máximo en metros" + +#: ../../addon/fuzzloc/fuzzloc.php:191 +msgid "Fuzzloc Settings" +msgstr "Ajustes de Fuzzloc" + +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "Publicar en Friendica" + +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "Se han guardado los ajustes de rtof" + +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "Permitir publicar en Friendica" + +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "Enviar entradas públicas a Friendica por defecto" + +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "Ruta a la API de Friendica" + +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "https://{sitename}/api" + +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "Nombre de inicio de sesión en Friendica" + +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "Contraseña de Friendica" + +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "Ajustes de publicación de Hubzilla a Friendica" + +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 +#: ../../include/channel.php:1567 +msgid "Status:" +msgstr "Estado:" + +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "Habilitar complemento" + +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "Ocultar el widget de chat Jappixmini en la interfaz web" + +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "Nombre de usuario en Jabber" + +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "Servidor de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "URL del host BOSH de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "Contraseña en Jabber" + +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "Cifrar la contraseña de Jabber con la contraseña de Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "Contraseña de Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "Aprobar automáticamente las solicitudes de suscripción de los contactos de Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Purgar la lista interna de las direcciones de contactos de jabber" + +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "Ayuda para los ajustes" + +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "Ajustes de Jappix Mini" + +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "Actualmente bloqueado" + +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "No hay canales bloqueados actualmente" + +#: ../../addon/superblock/superblock.php:120 +msgid "Superblock Settings" +msgstr "Ajustes de Superblock" + +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "Bloquear completamente" + +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "se han actualizado los ajustes de superblock" + +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "Federar" + +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "Se han guardado los ajustes de nofed." + +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "Permitir alternancia de federación" + +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "Federar las publicaciones por defecto" + +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "Ajustes de NoFed" + +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "Enviar a Red" + +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "Se requiere un canal." + +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "Se han salvado los ajustes de redred." + +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "Permitir la publicación en otro canal de Hubzilla" + +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "Enviar entradas públicas al canal Hubzilla por defecto" + +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "Ruta de la API de Hubzilla" + +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "Nombre de inicio de sesión en Hubzilla" + +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "Nombre del canal de Hubzilla" + +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "Ajustes de Hubzilla Crosspost" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "Directorio de los ficheros de informe" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "Directorio para almacenar los informes rotados" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "Tamaño del fichero de informe en bytes antes de rotarlo" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "Número de ficheros de informe que se deben retener" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "Friendica Photo Album Import" +msgstr "Importar un álbum de fotos de Friendica" + +#: ../../addon/frphotos/frphotos.php:93 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "Esto importará todos sus álbumes de fotos de Friendica a este canal de Hubzilla." + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Server base URL" +msgstr "URL base del servidor de Friendica" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Username" +msgstr "Nombre de inicio de sesión en Friendica" + +#: ../../addon/frphotos/frphotos.php:96 +msgid "Friendica Login Password" +msgstr "Contraseña de inicio de sesión en Friendica" + +#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 +#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: ../../addon/pubcrawl/pubcrawl.php:1053 +msgid "ActivityPub Protocol Settings updated." +msgstr "Se han actualizado los ajustes del protocolo ActivityPub." + +#: ../../addon/pubcrawl/pubcrawl.php:1062 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos." + +#: ../../addon/pubcrawl/pubcrawl.php:1065 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "Activar el protocolo ActivityPub para este canal" + +#: ../../addon/pubcrawl/pubcrawl.php:1068 +msgid "Send multi-media HTML articles" +msgstr "Enviar artículos multimedia en HTML" + +#: ../../addon/pubcrawl/pubcrawl.php:1068 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "No soportado por algunos servicios de microblog como Mastodon" + +#: ../../addon/pubcrawl/pubcrawl.php:1072 +msgid "ActivityPub Protocol Settings" +msgstr "Ajustes del protocolo ActivityPub" + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "Servidores y recursos del proyecto" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "Creador del proyecto y director técnico" + +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "Administrador, desarrollador, administrador del directorio, trabajador de apoyo" + +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "Y los cientos de personas y organizaciones más que ayudaron a hacer posible Hubzilla." + +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "Los proyectos Redmatrix / Hubzilla están proporcionados principalmente por voluntarios que les prestan su tiempo y experiencia, pagando a menudo de su bolsillo por los servicios que comparten con otros." + +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "No hay financiación corporativa ni publicidad y no recogemos ni vendemos su información personal. (De hecho, no tenemos control sobre sus datos privados. Usted lo tiene.)" + +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and" +" privacy." +msgstr "Ayude apoyando nuestro trabajo pionero en la descentralización, la identidad web, y la privacidad." + +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "Sus donaciones mantienen servidores y servicios en ejecución y también nos ayudan a proporcionar nuevas características innovadoras y a mantener el desarrollo de forma continuada." + +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "Donar" + +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "Elija un proyecto, desarrollador, o \"hub\" público para apoyar con una donación de una sola vez" + +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "Donar ahora" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project " +"only)" +msgstr "O convertirse en un patrocinador del proyecto (sólo del proyecto Hubzilla)" + +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "Por favor, indique si desea que su nombre de pila o el nombre completo (o nada) aparezca en nuestra lista de patrocinadores" + +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "Patrocinador" + +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "Agradecimiento especial a: " + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "Se trata de un diccionario bastante amplio y completo de acordes de guitarra que enumerará la mayor parte de las formas disponibles para tocar un acorde determinado, partiendo de la base del diapasón hasta unos pocos trastes más allá del traste doce (más allá del cual todo se repite). Se proporcionan un par de afinaciones no convencionales para provecho de los guitarristas con \"slides\" ( barras de acero), etc." + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "Los nombres de acordes comienzan con una nota fundamental (La-Sol) y pueden incluir sostenidos (#) y bemoles (b). Este software analizará la mayor parte de las convenciones de nomenclatura estándar como maj, min, tenue, SUS (2 ó 4), aug, con la repetición de elementos opcionales." + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Ejemplos válidos son A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Acordes de guitarra" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "El diccionario completo de acordes en línea" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Afinación" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Nombre del acorde, por ejemplo: Em7" + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Mostrar para tocadores zurdos" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Referencia rápida" + +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "Publicar en Libertree" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Habilitar el plugin de publicación en Libertree" + +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "Token de la API de Libertree" + +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "URL del servidor de Libertree" + +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "Publicar en Libertree por defecto" + +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "Ajustes de publicación en Libertree" + +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "Se han guardado los ajustes de Libertree." + +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "¡Apoyar esto en Flattr!" + +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "Los ajustes del widget Flattr han sido actualizados." + +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "Usuario en Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "URL de la Cosa para apoyar en flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "Si está vacío, se usa la URL del canal" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "Título de la Cosa para apoyar en flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "Si está vacío, se usará \"nombre del canal en Hubzilla\"" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "Botón de flattr estático o dinámico" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "estático" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "dinámico" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "Alineamiento del widget" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "izquierda" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "derecha" + +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "Habilitar el widget Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "Ajustes del widget Flattr" + +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "Publicar en GNU social" + +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Por favor, contacte con el administrador de su sitio.
La URL de la API proporcionada no es válida." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "No podemos conectar con la API de GNU social con la ruta que ha proporcionado." + +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "Se han guardado los ajustes de GNU social." + +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "OAuthKeys globales de GNU social disponibles" + +#: ../../addon/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "Existen pares de claves OAuth preconfiguradas disponibles para algunos servidores libres de GNU social. Si está usando uno de ellos, utilice estas credenciales.
Si no se siente libre de conectarse a cualquier otra instancia de GNU social (vea a continuación)." + +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "Proporcione sus propias credenciales de OAuth" + +#: ../../addon/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as" +" an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "No se ha encontrado un par de claves de consumidor para GNU social. Registre su cuenta de Hubzilla como un cliente de escritorio en su cuenta social GNU, copie el par de claves de consumidor aquí y escriba la dirección raíz de la API.
Antes de registrar su propio par de claves OAuth, pregunte al administrador si ya hay un par de claves para esta instalación de Hubzilla en su instalación GNU social favorita." + +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "OAuth Consumer Key" + +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "OAuth Consumer Secret" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "Ruta base de la API" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "Recuerde la barra /" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "Nombre de la aplicación de GNU social" + +#: ../../addon/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "Para conectarse a su cuenta de GNU social, haga clic en el botón de abajo para obtener un código de seguridad de GNU social que tiene que copiar en el cuadro de entrada a continuación y envíe el formulario. Solo sus entradas públicas aparecerán en GNU social." + +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "Inicio de sesión en GNU social" + +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "Copiar aquí el código de seguridad de GNU social" + +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "Cancelar el proceso de conexión" + +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "La API actual de GNU social es " + +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "Cancelar la conexión de GNU social" + +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +msgid "Currently connected to: " +msgstr "Actualmente está conectado a: " + +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?) el vínculo potencialmente incluido en las entradas públicas retransmitidas a GNU social llevará al visitante a una página en blanco que le informará de que el acceso a su perfil ha sido restringido." + +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "Habilitar la publicación en GNU social" + +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "Si está habilitado, sus entradas públicas se pueden publicar en la cuenta GNU-social asociada" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "Publicar en GNU social por defecto" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada" + +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +msgid "Clear OAuth configuration" +msgstr "Limpiar la configuración de OAuth" + +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "Ajustes de publicación en GNU social" + +#: ../../addon/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "URL de la API" + +#: ../../addon/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "Nombre de la aplicación" + +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "Código QR" + +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "Generador QR" + +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "Escribir algún texto" + +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +msgid "Invalid game." +msgstr "Juego no válido." + +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "Usted no participa en este juego." + +#: ../../addon/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "Debe ser un canal local para crear un juego" + +#: ../../addon/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "Debe seleccionar un oponente que no sea usted mismo." + +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "Elegido un color aleatorio." + +#: ../../addon/chess/chess.php:452 +msgid "Error creating new game." +msgstr "Error al crear un nuevo juego." + +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." + +#: ../../addon/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "Debe seleccionar un canal local /chess/nombredelcanal" + +#: ../../addon/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "Habilitar notificaciones" + +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "Publicar en Twitter" + +#: ../../addon/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "Se han actualizado los ajustes de Twitter." + +#: ../../addon/twitter/twitter.php:184 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio." + +#: ../../addon/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter." + +#: ../../addon/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "Iniciar sesión en Twitter" + +#: ../../addon/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "Copiar aquí el PIN de Twitter" + +#: ../../addon/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido." + +#: ../../addon/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "Permitir la publicación en Twitter" + +#: ../../addon/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada" + +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Longitud del mensaje en Twitter" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Longitud máxima del tweet" + +#: ../../addon/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "Enviar mensajes públicos a Twitter de forma predeterminada" + +#: ../../addon/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada." + +#: ../../addon/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "Ajustes de publicación en Twitter" + +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "Desactivar la funcionalidad" + +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "Ocultar el botón y mostrar los smilies directamente." + +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "Ajustes de Smileybutton" + +#: ../../addon/cart/myshop.php:138 +msgid "Order Not Found" +msgstr "No se ha encontrado el pedido" + +#: ../../addon/cart/cart.php:810 +msgid "Order cannot be checked out." +msgstr "No se puede verificar el pedido." + +#: ../../addon/cart/cart.php:1073 +msgid "Enable Shopping Cart" +msgstr "Habilitar el carro de la compra" + +#: ../../addon/cart/cart.php:1080 +msgid "Enable Test Catalog" +msgstr "Habilitar el catálogo de pruebas" + +#: ../../addon/cart/cart.php:1088 +msgid "Enable Manual Payments" +msgstr "Permitir pagos manuales" + +#: ../../addon/cart/cart.php:1103 +msgid "Base Cart Settings" +msgstr "Configuración del carro base" + +#: ../../addon/cart/cart.php:1151 +msgid "Add Item" +msgstr "Agregar un elemento" + +#: ../../addon/cart/cart.php:1165 +msgid "Call cart_post_" +msgstr "Llamar a cart_post_" + +#: ../../addon/cart/cart.php:1195 +msgid "Cart Not Enabled (profile: " +msgstr "El carro no está habilitado (perfil: " + +#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 +msgid "Order not found." +msgstr "El pedido no se ha encontrado." + +#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 +msgid "No Order Found" +msgstr "No se ha encontrado ningún pedido" + +#: ../../addon/cart/cart.php:1270 +msgid "call: " +msgstr "llamar: " + +#: ../../addon/cart/cart.php:1273 +msgid "An unknown error has occurred Please start again." +msgstr "Se ha producido un error desconocido Vuelva a empezar." + +#: ../../addon/cart/cart.php:1414 +msgid "Invalid Payment Type. Please start again." +msgstr "Tipo de pago no válido. Por favor, empiece de nuevo." + +#: ../../addon/cart/cart.php:1421 +msgid "Order not found" +msgstr "El pedido no se ha encontrado" + +#: ../../addon/cart/manual_payments.php:9 +msgid "Error: order mismatch. Please try again." +msgstr "Error: desajuste de pedidos. Por favor, inténtelo de nuevo." + +#: ../../addon/cart/manual_payments.php:29 +msgid "Manual payments are not enabled." +msgstr "Los pagos manuales no están habilitados." + +#: ../../addon/cart/manual_payments.php:44 +msgid "Finished" +msgstr "Terminado" + +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Este sitio es rastreado mediante la herramienta analítica Piwik." + +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "Si usted no quiere que sus visitas se registren de esta manera puede establecer una cookie para evitar que Piwik rastree otras visitas del sitio (opt-out)." + +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "URL base de Piwik" + +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Ruta absoluta a la instalación de Piwik. (Sin protocolo (http/s), con barra diagonal)" + +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "ID del sitio" + +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "Mostrar el enlace de la cookie opt-out?" + +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "Rastreo asíncrono" + +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "Habilitar la interfaz JavaScript de seguimiento de errores" + +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "Esta funcionalidad requiere Piwik >= 2.2.0" + +#: ../../addon/tour/tour.php:76 +msgid "Edit your profile and change settings." +msgstr "Editar su perfil y cambiar los ajustes." + +#: ../../addon/tour/tour.php:77 +msgid "Click here to see activity from your connections." +msgstr "Pulsar aquí para ver la actividad de sus conexiones." + +#: ../../addon/tour/tour.php:78 +msgid "Click here to see your channel home." +msgstr "Pulsar aquí para ver la página de inicio de su canal." + +#: ../../addon/tour/tour.php:79 +msgid "You can access your private messages from here." +msgstr "Puede acceder a sus mensajes privados desde aquí." + +#: ../../addon/tour/tour.php:80 +msgid "Create new events here." +msgstr "Crear nuevos eventos aquí." + +#: ../../addon/tour/tour.php:81 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "Puede aceptar nuevas conexiones y cambiar permisos para las existentes aquí. También puede, por ejemplo, crear grupos de contactos." + +#: ../../addon/tour/tour.php:82 +msgid "System notifications will arrive here" +msgstr "Las notificaciones del sistema llegarán aquí" + +#: ../../addon/tour/tour.php:83 +msgid "Search for content and users" +msgstr "Buscar contenido y usuarios" + +#: ../../addon/tour/tour.php:84 +msgid "Browse for new contacts" +msgstr "Buscar nuevos contactos" + +#: ../../addon/tour/tour.php:85 +msgid "Launch installed apps" +msgstr "Iniciar aplicaciones instaladas" + +#: ../../addon/tour/tour.php:86 +msgid "Looking for help? Click here." +msgstr "¿Busca ayuda? Pulse aquí." + +#: ../../addon/tour/tour.php:87 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "Se han producido nuevos eventos en su red. ¡Haga clic aquí para ver lo que ha sucedido!" + +#: ../../addon/tour/tour.php:88 +msgid "You have received a new private message. Click here to see from who!" +msgstr "Ha recibido un nuevo mensaje privado. Haga clic aquí para ver de quién!" + +#: ../../addon/tour/tour.php:89 +msgid "There are events this week. Click here too see which!" +msgstr "Hay eventos esta semana. Haga clic aquí para ver cuáles!" + +#: ../../addon/tour/tour.php:90 +msgid "You have received a new introduction. Click here to see who!" +msgstr "Ha recibido una nueva solicitud de conexión. ¡Pulse aquí para ver de quién!" + +#: ../../addon/tour/tour.php:91 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "Hay una nueva notificación del sistema. ¡Haga clic aquí para ver lo que ha sucedido!" + +#: ../../addon/tour/tour.php:94 +msgid "Click here to share text, images, videos and sound." +msgstr "Haga clic aquí para compartir texto, imágenes, vídeos y sonido." + +#: ../../addon/tour/tour.php:95 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "Puede escribir un título opcional para su actualización (bueno para los mensajes largos)." + +#: ../../addon/tour/tour.php:96 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "Al ingresar algunos temas aquí, es más fácil encontrar su publicación más tarde." + +#: ../../addon/tour/tour.php:97 +msgid "Share photos, links, location, etc." +msgstr "Compartir fotos, enlaces, ubicación, etc." + +#: ../../addon/tour/tour.php:98 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "¿Solo quieres compartir contenido durante un tiempo? Haga que expire en una fecha determinada." + +#: ../../addon/tour/tour.php:99 +msgid "You can password protect content." +msgstr "Puede proteger contenido con una contraseña." + +#: ../../addon/tour/tour.php:100 +msgid "Choose who you share with." +msgstr "Elegir con quién compartir." + +#: ../../addon/tour/tour.php:102 +msgid "Click here when you are done." +msgstr "Haga clic aquí cuando haya terminado." + +#: ../../addon/tour/tour.php:105 +msgid "Adjust from which channels posts should be displayed." +msgstr "Ajustar de qué canales se deben mostrar las publicaciones." + +#: ../../addon/tour/tour.php:106 +msgid "Only show posts from channels in the specified privacy group." +msgstr "Mostrar solo las entradas de los canales de un grupo específico de canales." + +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "Encuentre fácilmente entradas que contengan etiquetas (palabras clave precedidas del símbolo \"#\")." + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts in given category." +msgstr "Encuentre fácilmente las publicaciones en una categoría dada." + +#: ../../addon/tour/tour.php:112 +msgid "Easily find posts by date." +msgstr "Encuentre fácilmente entradas por fechas." + +#: ../../addon/tour/tour.php:113 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we" +" think you might find interesting." +msgstr "Se sugiere a los usuarios que se han ofrecido voluntariamente que se muestren como sugerencias, y que creemos que podrían resultar interesantes." + +#: ../../addon/tour/tour.php:114 +msgid "Here you see channels you have connected to." +msgstr "Aquí puede ver los canales a los que está conectado." + +#: ../../addon/tour/tour.php:115 +msgid "Save your search so you can repeat it at a later date." +msgstr "Guarde su búsqueda para poder repetirla en una fecha posterior." + +#: ../../addon/tour/tour.php:118 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It" +" is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "Si ve este icono puede estar seguro de que el remitente es quien dice ser. Es normal que no siempre sea posible verificar el remitente, por lo que el icono faltará en ocasiones. Por lo general, no hay necesidad de preocuparse por eso." + +#: ../../addon/tour/tour.php:119 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!" + +#: ../../addon/tour/tour.php:126 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

También puede avanzar pulsando la tecla de retorno" + +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "Compartir identidad extendida" + +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de $Projectname." + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Juego en 3D Tic-Tac-Toe" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "3D Tic-Tac-Toe" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "Nuevo juego" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "Nuevo juego con hándicap" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "El juego en 3D tic-tac-toe es como el juego tradicional, excepto que se juega en varios niveles simultáneamente." + +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "En este caso hay tres niveles. Usted gana al conseguir tres en una fila en cualquier nivel, así como arriba, abajo, y en diagonal a través de los diferentes niveles." + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "El juego con hándicap deshabilita la posición central en el nivel medio porque el jugador que reclama este cuadrado a menudo tiene una ventaja injusta." + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "Usted va primero..." + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "Yo voy primero esta vez..." + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "¡Usted ha ganado!" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "¡El juego del \"gato\"!" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "¡He ganado yo!" + +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "Mensaje para mostrar en todas las páginas de este servidor" + +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "Ajustes del encabezado de página" + +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "Se han guardado los ajustes del encabezado de página." + +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "Autenticación automática solo en los sitios de sus amigos" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "De forma predeterminada, se autenticará automáticamente en cualquier parte de la red" + +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "Ajustes de Authchoose" + +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "Se han actualizado los ajustes de Atuhchoose." + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "Solo/a" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "ebrio/a" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "caliente" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "drogado/a" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "jodido/a" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "hecho/a polvo" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "loco/a" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "ofendido/a" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "soñoliento/a" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "gruñón/ona" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "superior" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "semiconsciente" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "enamorado/a" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "lujurioso/a" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "desnudo/a" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "apestoso/a" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "sudoroso/a" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "exánime" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "victorioso/a" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "derrotado/a" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "envidioso/a" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "celoso/a" + +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "Se han actualizado los ajustes de XMPP." + +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "Habilitar el chat" + +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "Credenciales individuales" + +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "Servidor BOSH de Jabber" + +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "Ajustes de XMPP" + +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "BOSH de Jabber" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "Usar la base de usuarios central" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "Si está habilitado, los miembros se conectarán automáticamente a un servidor ejabberd que debe instalarse en esta máquina con credenciales sincronizadas a través del script \"auth ejabberd.php\"." + +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "¿Quién me ha puesto \"Me gusta\"?" + +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "Ahora está autenticado en pump.io." + +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "Volver a la página de configuración destacada" + +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "Publicar en Pump.io" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "Nombre del servidor de Pump.io" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "Sin \"http://\" or \"https://\"" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "Nombre de usuario en Pump.io" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "Sin el nombre del servidor" + +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "No está autenticado en pump.io" + +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "(Re-)Autenticar su conexión en pump.io" + +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "Habilitar el plugin de publicación en pump.io" + +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "Publicar por defecto en pump.io" + +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "¿Las entradas deben ser públicas?" + +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "Reflejar todos los mensajes públicos" + +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "Ajustes de publicación en pump.io" + +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "Se han guardado los ajustes de PumpIO." + +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." +msgstr "Se ha creado una cuenta para usted." + +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "Autenticación correcta pero rechazada: la creación de cuentas está deshabilitada." + +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Buscar %1$s (%2$s)" + +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "Buscar $Projectname" + +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "Importar repositorio de ficheros de Redmatrix" + +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "Esto importará todos sus ficheros de la nube de Redmatrix a este canal." + +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "fichero" + +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "Enviar un correo electrónico a todos los miembros" + +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "%1$d de %2$d mensajes enviados." + +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "Enviar un correo electrónico a todos los miembros del hub." + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "Dirección de correo electrónico del remitente" + +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "Modo de prueba (enviar sólo al administrador del hub)" + +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frecuentemente" + +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Cada hora" + +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos veces al día" + +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Diariamente" + +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Mensualmente" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualmente hombre" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actualmente mujer" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Generalmente hombre" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Generalmente mujer" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgénero" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transexual" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" + +#: ../../include/selectors.php:49 ../../include/channel.php:1484 +msgid "Neuter" +msgstr "Neutral" + +#: ../../include/selectors.php:49 ../../include/channel.php:1486 +msgid "Non-specific" +msgstr "No especificado" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso/a" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hombres" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Mujeres" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homosexual" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbiana" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sin preferencias" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Casto/a" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Virgen" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Fuera de lo común" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetichista" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgías" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Soltero/a" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solo/a" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No disponible" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Enamorado/a" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Apasionado/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Saliendo con alguien" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infiel" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Con adicción al sexo" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Prometido/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casado/a" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Pareja" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitando" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio tradicional" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felíz" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No estoy buscando" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Libertino" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Engañado/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separado/a" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciado/a" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Viudo/a" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Indeterminado" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es complicado" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "No me importa" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregúnteme" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "gusta de %2$s de %1$s" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "no gusta de %2$s de %1$s" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" + +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 +msgid "poked" +msgstr "ha dado un toque a" + +#: ../../include/conversation.php:736 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" + +#: ../../include/conversation.php:756 +msgid "Categories:" +msgstr "Temas:" + +#: ../../include/conversation.php:757 +msgid "Filed under:" +msgstr "Archivado bajo:" + +#: ../../include/conversation.php:783 +msgid "View in context" +msgstr "Mostrar en su contexto" + +#: ../../include/conversation.php:884 +msgid "remove" +msgstr "eliminar" + +#: ../../include/conversation.php:888 +msgid "Loading..." +msgstr "Cargando..." + +#: ../../include/conversation.php:889 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" + +#: ../../include/conversation.php:932 +msgid "View Source" +msgstr "Ver el código fuente de la entrada" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Seguir este hilo" + +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Dejar de seguir este hilo" + +#: ../../include/conversation.php:1062 +msgid "Edit Connection" +msgstr "Editar conexión" + +#: ../../include/conversation.php:1072 +msgid "Message" +msgstr "Mensaje" + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." + +#: ../../include/conversation.php:1210 +#, 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:1212 +#, 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:1218 +msgid "and" +msgstr "y" + +#: ../../include/conversation.php:1221 +#, 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:1222 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." + +#: ../../include/conversation.php:1265 +msgid "Set your location" +msgstr "Establecer su ubicación" + +#: ../../include/conversation.php:1266 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" + +#: ../../include/conversation.php:1316 +msgid "Tag term:" +msgstr "Término de la etiqueta:" + +#: ../../include/conversation.php:1317 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" + +#: ../../include/conversation.php:1322 +msgid "Choose a different album..." +msgstr "Elegir un álbum diferente..." + +#: ../../include/conversation.php:1326 +msgid "Comments enabled" +msgstr "Comentarios habilitados" + +#: ../../include/conversation.php:1327 +msgid "Comments disabled" +msgstr "Comentarios deshabilitados" + +#: ../../include/conversation.php:1375 +msgid "Page link name" +msgstr "Nombre del enlace de la página" + +#: ../../include/conversation.php:1378 +msgid "Post as" +msgstr "Publicar como" + +#: ../../include/conversation.php:1392 +msgid "Toggle voting" +msgstr "Cambiar votación" + +#: ../../include/conversation.php:1395 +msgid "Disable comments" +msgstr "Dehabilitar los comentarios" + +#: ../../include/conversation.php:1396 +msgid "Toggle comments" +msgstr "Activar o desactivar los comentarios" + +#: ../../include/conversation.php:1404 +msgid "Categories (optional, comma-separated list)" +msgstr "Temas (opcional, lista separada por comas)" + +#: ../../include/conversation.php:1427 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" + +#: ../../include/conversation.php:1433 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" + +#: ../../include/conversation.php:1693 +msgid "Commented Order" +msgstr "Comentarios recientes" + +#: ../../include/conversation.php:1696 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" + +#: ../../include/conversation.php:1700 +msgid "Posted Order" +msgstr "Publicaciones recientes" + +#: ../../include/conversation.php:1703 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" + +#: ../../include/conversation.php:1711 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" + +#: ../../include/conversation.php:1720 +msgid "Activity Stream - by date" +msgstr "Contenido - por fecha" + +#: ../../include/conversation.php:1726 +msgid "Starred" +msgstr "Preferidas" + +#: ../../include/conversation.php:1729 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" + +#: ../../include/conversation.php:1736 +msgid "Spam" +msgstr "Correo basura" + +#: ../../include/conversation.php:1739 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" + +#: ../../include/conversation.php:1814 ../../include/nav.php:381 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" + +#: ../../include/conversation.php:1827 ../../include/nav.php:394 +msgid "Profile Details" +msgstr "Detalles del perfil" + +#: ../../include/conversation.php:1837 ../../include/nav.php:404 +#: ../../include/photos.php:666 +msgid "Photo Albums" +msgstr "Álbumes de fotos" + +#: ../../include/conversation.php:1845 ../../include/nav.php:412 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" + +#: ../../include/conversation.php:1882 ../../include/nav.php:447 +msgid "Bookmarks" +msgstr "Marcadores" + +#: ../../include/conversation.php:1885 ../../include/nav.php:450 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" + +#: ../../include/conversation.php:1896 ../../include/nav.php:461 +msgid "View Cards" +msgstr "Ver las fichas" + +#: ../../include/conversation.php:1904 +msgid "articles" +msgstr "artículos" + +#: ../../include/conversation.php:1907 ../../include/nav.php:472 +msgid "View Articles" +msgstr "Ver los artículos" + +#: ../../include/conversation.php:1918 ../../include/nav.php:484 +msgid "View Webpages" +msgstr "Ver páginas web" + +#: ../../include/conversation.php:1987 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participaré" +msgstr[1] "Participaré" + +#: ../../include/conversation.php:1990 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participaré" +msgstr[1] "No participaré" + +#: ../../include/conversation.php:1993 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" + +#: ../../include/conversation.php:1996 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "De acuerdo" +msgstr[1] "De acuerdo" + +#: ../../include/conversation.php:1999 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "En desacuerdo" +msgstr[1] "En desacuerdo" + +#: ../../include/conversation.php:2002 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" + +#: ../../include/dir_fns.php:141 msgid "Directory Options" msgstr "Opciones del directorio" -#: ../../include/dir_fns.php:128 +#: ../../include/dir_fns.php:143 msgid "Safe Mode" msgstr "Modo seguro" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:428 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../mod/connedit.php:647 ../../mod/connedit.php:675 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "No" -msgstr "No" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/mitem.php:159 ../../mod/mitem.php:160 -#: ../../mod/mitem.php:232 ../../mod/mitem.php:233 ../../mod/menu.php:94 -#: ../../mod/menu.php:151 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:430 -#: ../../mod/settings.php:579 ../../mod/removeme.php:60 -#: ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1554 -msgid "Yes" -msgstr "Sí" - -#: ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:144 msgid "Public Forums Only" msgstr "Solo foros públicos" -#: ../../include/dir_fns.php:130 +#: ../../include/dir_fns.php:145 msgid "This Website Only" msgstr "Solo este sitio web" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:187 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" -msgstr "Ver" +#: ../../include/import.php:25 +msgid "Unable to import a removed channel." +msgstr "No se puede importar un canal eliminado." -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1166 ../../mod/webpages.php:188 -#: ../../mod/events.php:690 ../../mod/editpost.php:143 -#: ../../mod/photos.php:982 ../../mod/editwebpage.php:214 -#: ../../mod/editblock.php:170 -msgid "Preview" -msgstr "Previsualizar" +#: ../../include/import.php:46 +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/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Acciones" +#: ../../include/import.php:111 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../include/text.php:492 +msgid "prev" +msgstr "anterior" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Título" +#: ../../include/text.php:494 +msgid "first" +msgstr "primera" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:150 ../../mod/menu.php:108 ../../mod/layouts.php:181 -msgid "Created" -msgstr "Creado" +#: ../../include/text.php:523 +msgid "last" +msgstr "última" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:193 -#: ../../mod/blocks.php:151 ../../mod/menu.php:109 ../../mod/layouts.php:182 -msgid "Edited" -msgstr "Editado" +#: ../../include/text.php:526 +msgid "next" +msgstr "próxima" -#: ../../include/api.php:1267 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../include/text.php:537 +msgid "older" +msgstr "más antiguas" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Predeterminado" +#: ../../include/text.php:539 +msgid "newer" +msgstr "más recientes" + +#: ../../include/text.php:961 +msgid "No connections" +msgstr "Sin conexiones" + +#: ../../include/text.php:993 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" + +#: ../../include/text.php:1129 ../../include/text.php:1133 +msgid "poke" +msgstr "un toque" + +#: ../../include/text.php:1134 +msgid "ping" +msgstr "un \"ping\"" + +#: ../../include/text.php:1134 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" + +#: ../../include/text.php:1135 +msgid "prod" +msgstr "una incitación " + +#: ../../include/text.php:1135 +msgid "prodded" +msgstr "ha incitado a " + +#: ../../include/text.php:1136 +msgid "slap" +msgstr "una bofetada " + +#: ../../include/text.php:1136 +msgid "slapped" +msgstr "ha abofeteado a " + +#: ../../include/text.php:1137 +msgid "finger" +msgstr "un \"finger\" " + +#: ../../include/text.php:1137 +msgid "fingered" +msgstr "envió un \"finger\" a" + +#: ../../include/text.php:1138 +msgid "rebuff" +msgstr "un reproche" + +#: ../../include/text.php:1138 +msgid "rebuffed" +msgstr "ha hecho un reproche a " + +#: ../../include/text.php:1161 +msgid "happy" +msgstr "feliz " + +#: ../../include/text.php:1162 +msgid "sad" +msgstr "triste " + +#: ../../include/text.php:1163 +msgid "mellow" +msgstr "tranquilo/a" + +#: ../../include/text.php:1164 +msgid "tired" +msgstr "cansado/a " + +#: ../../include/text.php:1165 +msgid "perky" +msgstr "vivaz" + +#: ../../include/text.php:1166 +msgid "angry" +msgstr "enfadado/a" + +#: ../../include/text.php:1167 +msgid "stupefied" +msgstr "asombrado/a" + +#: ../../include/text.php:1168 +msgid "puzzled" +msgstr "perplejo/a" + +#: ../../include/text.php:1169 +msgid "interested" +msgstr "interesado/a" + +#: ../../include/text.php:1170 +msgid "bitter" +msgstr "amargado/a" + +#: ../../include/text.php:1171 +msgid "cheerful" +msgstr "alegre" + +#: ../../include/text.php:1172 +msgid "alive" +msgstr "animado/a" + +#: ../../include/text.php:1173 +msgid "annoyed" +msgstr "molesto/a" + +#: ../../include/text.php:1174 +msgid "anxious" +msgstr "ansioso/a" + +#: ../../include/text.php:1175 +msgid "cranky" +msgstr "de mal humor" + +#: ../../include/text.php:1176 +msgid "disturbed" +msgstr "perturbado/a" + +#: ../../include/text.php:1177 +msgid "frustrated" +msgstr "frustrado/a" + +#: ../../include/text.php:1178 +msgid "depressed" +msgstr "deprimido/a" + +#: ../../include/text.php:1179 +msgid "motivated" +msgstr "motivado/a" + +#: ../../include/text.php:1180 +msgid "relaxed" +msgstr "relajado/a" + +#: ../../include/text.php:1181 +msgid "surprised" +msgstr "sorprendido/a" + +#: ../../include/text.php:1360 ../../include/js_strings.php:76 +msgid "Monday" +msgstr "lunes" + +#: ../../include/text.php:1360 ../../include/js_strings.php:77 +msgid "Tuesday" +msgstr "martes" + +#: ../../include/text.php:1360 ../../include/js_strings.php:78 +msgid "Wednesday" +msgstr "miércoles" + +#: ../../include/text.php:1360 ../../include/js_strings.php:79 +msgid "Thursday" +msgstr "jueves" + +#: ../../include/text.php:1360 ../../include/js_strings.php:80 +msgid "Friday" +msgstr "viernes" + +#: ../../include/text.php:1360 ../../include/js_strings.php:81 +msgid "Saturday" +msgstr "sábado" + +#: ../../include/text.php:1360 ../../include/js_strings.php:75 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1364 ../../include/js_strings.php:51 +msgid "January" +msgstr "enero" + +#: ../../include/text.php:1364 ../../include/js_strings.php:52 +msgid "February" +msgstr "febrero" + +#: ../../include/text.php:1364 ../../include/js_strings.php:53 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1364 ../../include/js_strings.php:54 +msgid "April" +msgstr "abril" + +#: ../../include/text.php:1364 +msgid "May" +msgstr "mayo" + +#: ../../include/text.php:1364 ../../include/js_strings.php:56 +msgid "June" +msgstr "junio" + +#: ../../include/text.php:1364 ../../include/js_strings.php:57 +msgid "July" +msgstr "julio" + +#: ../../include/text.php:1364 ../../include/js_strings.php:58 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1364 ../../include/js_strings.php:59 +msgid "September" +msgstr "septiembre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:60 +msgid "October" +msgstr "octubre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:61 +msgid "November" +msgstr "noviembre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:62 +msgid "December" +msgstr "diciembre" + +#: ../../include/text.php:1428 ../../include/text.php:1432 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" + +#: ../../include/text.php:1434 ../../include/feedutils.php:860 +msgid "unknown" +msgstr "desconocido" + +#: ../../include/text.php:1470 +msgid "remove category" +msgstr "eliminar el tema" + +#: ../../include/text.php:1544 +msgid "remove from file" +msgstr "eliminar del fichero" + +#: ../../include/text.php:1686 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "Descargar contenido binario o cifrado" + +#: ../../include/text.php:1849 ../../include/language.php:397 +msgid "default" +msgstr "por defecto" + +#: ../../include/text.php:1857 +msgid "Page layout" +msgstr "Plantilla de la página" + +#: ../../include/text.php:1857 +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:1868 +msgid "HTML" +msgstr "HTML" + +#: ../../include/text.php:1871 +msgid "Comanche Layout" +msgstr "Plantilla de Comanche" + +#: ../../include/text.php:1876 +msgid "PHP" +msgstr "PHP" + +#: ../../include/text.php:1885 +msgid "Page content type" +msgstr "Tipo de contenido de la página" + +#: ../../include/text.php:2018 +msgid "activity" +msgstr "la/su actividad" + +#: ../../include/text.php:2100 +msgid "a-z, 0-9, -, and _ only" +msgstr "a-z, 0-9, -, and _ only" + +#: ../../include/text.php:2419 +msgid "Design Tools" +msgstr "Herramientas de diseño web" + +#: ../../include/text.php:2425 +msgid "Pages" +msgstr "Páginas" + +#: ../../include/text.php:2447 +msgid "Import website..." +msgstr "Importar un sitio web..." + +#: ../../include/text.php:2448 +msgid "Select folder to import" +msgstr "Seleccionar la carpeta que se va a importar" + +#: ../../include/text.php:2449 +msgid "Import from a zipped folder:" +msgstr "Importar desde una carpeta comprimida: " + +#: ../../include/text.php:2450 +msgid "Import from cloud files:" +msgstr "Importar desde los ficheros en la nube: " + +#: ../../include/text.php:2451 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/canal/ruta/a la/carpeta" + +#: ../../include/text.php:2452 +msgid "Enter path to website files" +msgstr "Ruta a los ficheros del sitio web" + +#: ../../include/text.php:2453 +msgid "Select folder" +msgstr "Seleccionar la carpeta" + +#: ../../include/text.php:2454 +msgid "Export website..." +msgstr "Exportar un sitio web..." + +#: ../../include/text.php:2455 +msgid "Export to a zip file" +msgstr "Exportar a un fichero comprimido .zip" + +#: ../../include/text.php:2456 +msgid "website.zip" +msgstr "sitio_web.zip" + +#: ../../include/text.php:2457 +msgid "Enter a name for the zip file." +msgstr "Escriba un nombre para el fichero zip." + +#: ../../include/text.php:2458 +msgid "Export to cloud files" +msgstr "Exportar a la nube de ficheros" + +#: ../../include/text.php:2459 +msgid "/path/to/export/folder" +msgstr "/ruta/para/exportar/carpeta" + +#: ../../include/text.php:2460 +msgid "Enter a path to a cloud files destination." +msgstr "Escriba una ruta de destino a la nube de ficheros." + +#: ../../include/text.php:2461 +msgid "Specify folder" +msgstr "Especificar una carpeta" + +#: ../../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:223 +msgid "Common Connections" +msgstr "Conexiones comunes" + +#: ../../include/contact_widgets.php:228 +#, php-format +msgid "View all %d common connections" +msgstr "Ver todas las %d conexiones comunes" + +#: ../../include/markdown.php:158 ../../include/bbcode.php:356 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" + +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." + +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." + +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." + +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "Canal Premium - por favor visite:" + +#: ../../include/follow.php:110 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." + +#: ../../include/follow.php:165 +msgid "Remote channel or protocol unavailable." +msgstr "Canal remoto o protocolo no disponible." + +#: ../../include/follow.php:188 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." + +#: ../../include/follow.php:200 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." + +#: ../../include/follow.php:211 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "¿Borrar este elemento?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Comentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] mostrar todo:" - #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostrar menos" +#, php-format +msgid "%s show less" +msgstr "%s mostrar menos" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandir" +#, php-format +msgid "%s expand" +msgstr "%s expandir" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] contraer" +#, php-format +msgid "%s collapse" +msgstr "%s contraer" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -462,9 +12843,9 @@ msgstr "Contraseña demasiado corta" #: ../../include/js_strings.php:12 msgid "Passwords do not match" -msgstr "Las contraseñas no cinciden" +msgstr "Las contraseñas no coinciden" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "cualquiera" @@ -492,39 +12873,10 @@ msgstr "Nada nuevo por aquí" msgid "Rate This Channel (this is public)" msgstr "Valorar este canal (esto es público)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -#: ../../mod/connedit.php:683 -msgid "Rating" -msgstr "Valoración" - #: ../../include/js_strings.php:21 msgid "Describe (optional)" msgstr "Describir (opcional)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/xchan.php:11 ../../mod/connect.php:93 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/group.php:81 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/pdledit.php:58 ../../mod/import.php:592 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/mitem.php:235 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:156 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/admin.php:453 ../../mod/admin.php:819 ../../mod/admin.php:986 -#: ../../mod/admin.php:1118 ../../mod/admin.php:1312 ../../mod/admin.php:1397 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/mood.php:134 -#: ../../mod/connedit.php:704 ../../mod/mail.php:355 ../../mod/appman.php:99 -#: ../../mod/pconfig.php:108 ../../mod/poll.php:68 -#: ../../mod/bulksetclose.php:24 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - #: ../../include/js_strings.php:23 msgid "Please enter a link URL" msgstr "Por favor, introduzca una dirección de enlace" @@ -533,8637 +12885,1431 @@ msgstr "Por favor, introduzca una dirección de enlace" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +msgstr "hace " -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +msgstr "en " -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "de su publicación" +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "NONE" -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "desde ahora" +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "NONE" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "menos de un minuto" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "alrededor de un minuto" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d minutos" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "alrededor de una hora" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "alrededor de %d horas" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "un día" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d días" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "alrededor de un mes" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d meses" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "alrededor de un año" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d años" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/text.php:391 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:393 -msgid "first" -msgstr "primera" - -#: ../../include/text.php:422 -msgid "last" -msgstr "última" - -#: ../../include/text.php:425 -msgid "next" -msgstr "próxima" - -#: ../../include/text.php:435 -msgid "older" -msgstr "más antiguas" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "más recientes" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "Sin conexiones" - -#: ../../include/text.php:844 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d Conexión" -msgstr[1] "%d Conexiones" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Ver conexiones" - -#: ../../include/text.php:914 ../../include/text.php:926 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Buscar" - -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 -msgid "Save" -msgstr "Guardar" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "un toque" - -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha recibido un toque" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "un \"ping\"" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "avisado/a" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "incitar" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "incitado/a" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "abofetear" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "abofeteado/a" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "un \"finger\"" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "ha recibido un \"finger\"" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "un rechazo" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "ha sido rechazado/a" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "feliz" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "amable" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "cansado/a" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "fesco/a" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "estupefacto/a" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "vivo/a" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "lunes" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "viernes" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "sábado" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/text.php:1201 -msgid "January" -msgstr "enero" - -#: ../../include/text.php:1201 -msgid "February" -msgstr "febrero" - -#: ../../include/text.php:1201 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1201 -msgid "April" -msgstr "abril" - -#: ../../include/text.php:1201 ../../mod/uexport.php:58 -#: ../../mod/uexport.php:59 +#: ../../include/js_strings.php:55 +msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/text.php:1201 -msgid "June" -msgstr "junio" - -#: ../../include/text.php:1201 -msgid "July" -msgstr "julio" - -#: ../../include/text.php:1201 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1201 -msgid "September" -msgstr "septiembre" - -#: ../../include/text.php:1201 -msgid "October" -msgstr "octubre" - -#: ../../include/text.php:1201 -msgid "November" -msgstr "noviembre" - -#: ../../include/text.php:1201 -msgid "December" -msgstr "diciembre" - -#: ../../include/text.php:1306 -msgid "unknown.???" -msgstr "desconocido???" - -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1343 -msgid "remove category" -msgstr "eliminar categoría" - -#: ../../include/text.php:1418 -msgid "remove from file" -msgstr "eliminar del fichero" - -#: ../../include/text.php:1494 ../../include/text.php:1505 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/text.php:1661 ../../mod/events.php:474 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" - -#: ../../include/text.php:1682 ../../include/text.php:1753 -msgid "default" -msgstr "por defecto" - -#: ../../include/text.php:1690 -msgid "Page layout" -msgstr "Formato de la página" - -#: ../../include/text.php:1690 -msgid "You can create your own with the layouts tool" -msgstr "Puede crear su propio formato gráfico con las herramientas de diseño" - -#: ../../include/text.php:1731 -msgid "Page content type" -msgstr "Tipo de contenido de página" - -#: ../../include/text.php:1765 -msgid "Select an alternate language" -msgstr "Selecciona un idioma alternativo" - -#: ../../include/text.php:1884 ../../include/diaspora.php:2119 -#: ../../include/conversation.php:120 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1887 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "evento" - -#: ../../include/text.php:1890 ../../include/diaspora.php:2119 -#: ../../include/conversation.php:148 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "el mensaje de estado" - -#: ../../include/text.php:1892 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "comentario" - -#: ../../include/text.php:1897 -msgid "activity" -msgstr "actividad" - -#: ../../include/text.php:2192 -msgid "Design Tools" -msgstr "Herramientas de diseño" - -#: ../../include/text.php:2195 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Bloques" - -#: ../../include/text.php:2196 ../../mod/menu.php:101 -msgid "Menus" -msgstr "Menús" - -#: ../../include/text.php:2197 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Formato gráfico" - -#: ../../include/text.php:2198 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/text.php:2549 ../../include/RedDAV/RedBrowser.php:131 -msgid "Collection" -msgstr "Colección" - -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "padre" - -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principal" - -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Libreta de direcciones" - -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendario" - -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Programar bandeja de entrada" - -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Programar bandeja de salida" - -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1030 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" -msgstr "Desconocido" - -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "%1$s usado" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s usado de %2$s (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1620 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Ficheros" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Total" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Compartido" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/webpages.php:180 -#: ../../mod/blocks.php:152 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/layouts.php:175 -msgid "Create" -msgstr "Crear" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:718 ../../mod/photos.php:1248 -msgid "Upload" -msgstr "Subir" - -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nombre" - -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "Tipo" - -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Tamaño" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Última modificación" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:671 ../../include/apps.php:255 -#: ../../mod/webpages.php:183 ../../mod/thing.php:256 ../../mod/group.php:176 -#: ../../mod/blocks.php:155 ../../mod/photos.php:1062 -#: ../../mod/editlayout.php:178 ../../mod/editwebpage.php:225 -#: ../../mod/editblock.php:180 ../../mod/admin.php:826 ../../mod/admin.php:988 -#: ../../mod/settings.php:651 ../../mod/connedit.php:563 -msgid "Delete" -msgstr "Borrar" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Crear nueva carpeta" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Subir fichero" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1585 ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "Notificación de $Projectname" - -#: ../../include/network.php:1586 ../../include/enotify.php:59 -#: ../../include/diaspora.php:2522 ../../include/diaspora.php:2533 -#: ../../mod/p.php:46 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/network.php:1588 ../../include/enotify.php:61 -msgid "Thank You," -msgstr "Gracias," - -#: ../../include/network.php:1590 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "Administrador de %s" - -#: ../../include/network.php:1646 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Características generales" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Caducidad del contenido" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Páginas web" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Activar una herramienta para almacenar notas y recordatorios" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar canales directamente desde el menú de navegación desplegable" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Ubicación de las fotos" - -#: ../../include/features.php:47 -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, enlaza estas a un mapa." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Modo de experto" - -#: ../../include/features.php:49 -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:50 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Características de composición de entradas" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Usar Markdown" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Permitir el uso de \"Markdown\" para formatear publicaciones" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)" - -#: ../../include/features.php:59 ../../include/widgets.php:548 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" - -#: ../../include/features.php:60 -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:61 -msgid "Enable voting tools" -msgstr "Activar herramientas de votación" - -#: ../../include/features.php:61 -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:67 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Buscar por fecha" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtrado de colecciones" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Habilitar la muestra de entradas eligiendo colecciones" - -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Pestaña de red personal" - -#: ../../include/features.php:71 -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:72 -msgid "Network New Tab" -msgstr "Nueva pestaña de red" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre toda la actividad de la red" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar la actividad del flujo por profundidad de relaciones" - -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" - -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones basadas en palabras clave / contenido" - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Herramientas de entradas/comentarios" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Etiquetado" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Categorías de entradas" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" - -#: ../../include/features.php:83 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Carpetas guardadas" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Entradas destacadas" - -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" - -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" - -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorías" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Aplicaciones" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "Personales" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Crear una aplicación personal" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Editar una aplicación personal" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:956 ../../mod/directory.php:316 -#: ../../mod/match.php:64 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Conectar" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "Sugerencias" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Ver más..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Introducir la dirección del canal" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Todo" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Hemeroteca" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "Yo" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "Familia" - -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:345 -#: ../../mod/settings.php:349 ../../mod/settings.php:350 -#: ../../mod/settings.php:353 ../../mod/settings.php:364 -#: ../../mod/connedit.php:585 -msgid "Friends" -msgstr "Amigos" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "Conocidos/as" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "Todas" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "Recargar" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "Configuración de la cuenta" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "Configuración del canal" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "Características adicionales" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "Configuración de características o complementos" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "Ajustes de visualización" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "Aplicaciones conectadas" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "Exportar canal" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" - -#: ../../include/widgets.php:556 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "Ajustes" - -#: ../../include/widgets.php:569 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Mensajes" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "Comprobar correo" - -#: ../../include/widgets.php:577 ../../include/nav.php:199 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "Salas de chat" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "foto/imagen" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "Valorar este canal" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../include/event.php:22 ../../include/bb2diaspora.php:459 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:465 -msgid "Starts:" -msgstr "Comienza:" - -#: ../../include/event.php:40 ../../include/bb2diaspora.php:473 -msgid "Finishes:" -msgstr "Finaliza:" - -#: ../../include/event.php:50 ../../include/bb2diaspora.php:481 -#: ../../include/identity.php:1007 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "Ubicación:" - -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." - -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Aviso] Nuevo correo recibido en %s" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s le envió %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un mensaje privado" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado sobre [zrl=%3$s]%4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s comentó un elemento/conversación que ha estado siguiendo." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Para ver o comentar la conversación, visite %s" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Aviso] %s escribió en su página de perfil" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s publicó en su página de perfil en %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s publicó en [zrl=%3$s]su página de perfil[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Aviso] %s le etiquetó" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s le etiquetó en %3$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Aviso] %1$s le ha dado un toque" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s le dio un toque en %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]le dio un toque[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Aviso] %s etiquetó su entrada" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Aviso] Solicitud de conexión recibida" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puede visitar su perfil en %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Aviso] recibió una sugerencia de conexión" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nombre:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Aviso]" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[sin asunto]" - -#: ../../include/message.php:45 +#: ../../include/js_strings.php:63 +msgid "Jan" +msgstr "ene" + +#: ../../include/js_strings.php:64 +msgid "Feb" +msgstr "feb" + +#: ../../include/js_strings.php:65 +msgid "Mar" +msgstr "mar" + +#: ../../include/js_strings.php:66 +msgid "Apr" +msgstr "abr" + +#: ../../include/js_strings.php:67 +msgctxt "short" +msgid "May" +msgstr "may" + +#: ../../include/js_strings.php:68 +msgid "Jun" +msgstr "jun" + +#: ../../include/js_strings.php:69 +msgid "Jul" +msgstr "jul" + +#: ../../include/js_strings.php:70 +msgid "Aug" +msgstr "ago" + +#: ../../include/js_strings.php:71 +msgid "Sep" +msgstr "sep" + +#: ../../include/js_strings.php:72 +msgid "Oct" +msgstr "oct" + +#: ../../include/js_strings.php:73 +msgid "Nov" +msgstr "nov" + +#: ../../include/js_strings.php:74 +msgid "Dec" +msgstr "dic" + +#: ../../include/js_strings.php:82 +msgid "Sun" +msgstr "dom" + +#: ../../include/js_strings.php:83 +msgid "Mon" +msgstr "lun" + +#: ../../include/js_strings.php:84 +msgid "Tue" +msgstr "mar" + +#: ../../include/js_strings.php:85 +msgid "Wed" +msgstr "mié" + +#: ../../include/js_strings.php:86 +msgid "Thu" +msgstr "jue" + +#: ../../include/js_strings.php:87 +msgid "Fri" +msgstr "vie" + +#: ../../include/js_strings.php:88 +msgid "Sat" +msgstr "sáb" + +#: ../../include/js_strings.php:89 +msgctxt "calendar" +msgid "today" +msgstr "hoy" + +#: ../../include/js_strings.php:90 +msgctxt "calendar" +msgid "month" +msgstr "mes" + +#: ../../include/js_strings.php:91 +msgctxt "calendar" +msgid "week" +msgstr "semana" + +#: ../../include/js_strings.php:92 +msgctxt "calendar" +msgid "day" +msgstr "día" + +#: ../../include/js_strings.php:93 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" + +#: ../../include/message.php:40 msgid "Unable to determine sender." msgstr "No ha sido posible determinar el remitente. " -#: ../../include/message.php:200 +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." + +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: ../../include/message.php:214 msgid "Stored post could not be verified." -msgstr "No se han podido verificar las entradas guardadas." +msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/diaspora.php:2148 ../../include/conversation.php:164 -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "a %1$s le gusta el %3$s de %2$s" - -#: ../../include/diaspora.php:2494 -msgid "Please choose" -msgstr "Por favor, elija" - -#: ../../include/diaspora.php:2496 -msgid "Agree" -msgstr "De acuerdo" - -#: ../../include/diaspora.php:2498 -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../include/diaspora.php:2500 -msgid "Abstain" -msgstr "Abstención" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Falta la ubicación del canal." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." - -#: ../../include/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." - -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "Protocolo bloqueado para este canal." - -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." - -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "No se ha encontrado la cuenta local." - -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "Mensaje Privado" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "Seleccionar" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Guardar en carpeta" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Participaré" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "No participaré" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Quizá participe" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Estoy de acuerdo" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "No estoy de acuerdo" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Me abstengo" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "Ver todo" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1712 ../../include/identity.php:1266 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Eliminar estrella" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "preferidas" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Añadir etiqueta" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "me gusta (cambiar)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "me gusta" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "no me gusta" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Compartir esto" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "compartir" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "mediante" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "De página de perfil a página de perfil (de Muro a Muro)" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página de perfil a página de perfil (de Muro a Muro)" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "desde %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:731 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Añadir al calendario" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Marcar todo como visto" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "Cerrar" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/editpost.php:123 -#: ../../mod/photos.php:962 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:192 ../../mod/editblock.php:149 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Espera por favor" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "Este es usted" - -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1192 -#: ../../mod/editpost.php:107 ../../mod/editlayout.php:134 -#: ../../mod/editwebpage.php:179 ../../mod/editblock.php:135 -msgid "Bold" -msgstr "Negrita" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1193 -#: ../../mod/editpost.php:108 ../../mod/editlayout.php:135 -#: ../../mod/editwebpage.php:180 ../../mod/editblock.php:136 -msgid "Italic" -msgstr "Itálico " - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1194 -#: ../../mod/editpost.php:109 ../../mod/editlayout.php:136 -#: ../../mod/editwebpage.php:181 ../../mod/editblock.php:137 -msgid "Underline" -msgstr "Subrayar" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1195 -#: ../../mod/editpost.php:110 ../../mod/editlayout.php:137 -#: ../../mod/editwebpage.php:182 ../../mod/editblock.php:138 -msgid "Quote" -msgstr "Citar" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1196 -#: ../../mod/editpost.php:111 ../../mod/editlayout.php:138 -#: ../../mod/editwebpage.php:183 ../../mod/editblock.php:139 -msgid "Code" -msgstr "Código" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Imagen" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Insertar enlace" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1247 -#: ../../mod/editpost.php:151 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nueva ventana" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la ubicación seleccionada en una ventana o pestaña aparte" - -#: ../../include/Contact.php:212 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Sus entradas y conversaciones" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "Ver el perfil" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Su página de perfil" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Editar perfiles" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/nav.php:95 ../../include/identity.php:979 -msgid "Edit Profile" -msgstr "Editar perfil" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Editar su perfil" - -#: ../../include/nav.php:97 ../../include/conversation.php:1611 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Sus fotos" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Sus ficheros" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Sus salas de chat" - -#: ../../include/nav.php:109 ../../include/conversation.php:1646 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Sus marcadores" - -#: ../../include/nav.php:113 ../../include/conversation.php:1656 -#: ../../include/apps.php:136 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Sus páginas web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Acceder" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Página de inicio" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "Registrarse" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Crear una cuenta" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Ayuda" - -#: ../../include/nav.php:160 -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 content" -msgstr "Buscar contenido del sitio" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "Directorio" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Directorio de canales" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "RedMatrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Su red" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Marcar todas las notificaciones de la red como leídas" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "Conexiones" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Avisos" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Correo" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Bandeja de entrada" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Bandeja de salida" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "Eventos" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Ver todos los eventos" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Administración de canales" - -#: ../../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 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administrador" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "Cargando..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@nombre, #etiqueta, contenido" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Espere por favor…" - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Etiquetas" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Palabras clave" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "tener" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "tiene" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "quiero" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "quiere" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "le gusta" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "no le gusta" - -#: ../../include/activities.php:39 +#: ../../include/activities.php:41 msgid " and " -msgstr "y" +msgstr " y " -#: ../../include/activities.php:47 +#: ../../include/activities.php:49 msgid "public profile" -msgstr "perfil público" +msgstr "el perfil público" -#: ../../include/activities.php:56 +#: ../../include/activities.php:58 #, php-format msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s cambió %2$s a “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" -#: ../../include/activities.php:57 +#: ../../include/activities.php:59 #, php-format msgid "Visit %1$s's %2$s" msgstr "Visitar %2$s de %1$s" -#: ../../include/activities.php:60 +#: ../../include/activities.php:62 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s actualizó %2$s, %3$s cambió." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../include/security.php:349 +#: ../../include/attach.php:265 ../../include/attach.php:361 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: ../../include/attach.php:554 +msgid "No source file." +msgstr "Ningún fichero de origen" + +#: ../../include/attach.php:576 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." + +#: ../../include/attach.php:595 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" + +#: ../../include/attach.php:737 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" + +#: ../../include/attach.php:758 +#, 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:940 +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:969 +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:1043 ../../include/attach.php:1059 +msgid "Path not available." +msgstr "Ruta no disponible." + +#: ../../include/attach.php:1108 ../../include/attach.php:1273 +msgid "Empty pathname" +msgstr "Ruta vacía" + +#: ../../include/attach.php:1134 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" + +#: ../../include/attach.php:1159 +msgid "Path not found." +msgstr "Ruta no encontrada" + +#: ../../include/attach.php:1227 +msgid "mkdir failed." +msgstr "mkdir ha fallado." + +#: ../../include/attach.php:1231 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." + +#: ../../include/attach.php:1279 +msgid "Empty path" +msgstr "Ruta vacía" + +#: ../../include/security.php:541 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/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi flujo de 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 photo albums" -msgstr "Pueden verse mis álbumes de fotos" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Puede verse mi repositorio de ficheros" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Me pueden enviar sus entradas y flujo de actividad su canal" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crear entradas en mi página de inicio del canal (“muro”)" - -#: ../../include/permissions.php:36 -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:37 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Pueden publicarse fotos en mis álbumes" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gustar/no me gusta." - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" - -#: ../../include/permissions.php:41 -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:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foro o grupos" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Puede escribirse en mi repositorio de ficheros" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Puede editar mis páginas web" - -#: ../../include/permissions.php:46 -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:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" - -#: ../../include/permissions.php:48 -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:893 -msgid "Social Networking" -msgstr "Redes sociales" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Público en su mayor parte" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Restringido" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privado" - -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Foro de discusión" - -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" - -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Propósito especial" - -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Página para fans" - -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Repositorio de grupo" - -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Otro" - -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "canal" - -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "a %1$s no le gusta el %3$s de %2$s" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado con %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s dio un toque a %2$s" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" - -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" - -#: ../../include/conversation.php:718 -msgid "Categories:" -msgstr "Categorías:" - -#: ../../include/conversation.php:719 -msgid "Filed under:" -msgstr "Archivado bajo:" - -#: ../../include/conversation.php:746 -msgid "View in context" -msgstr "Mostrar en su contexto" - -#: ../../include/conversation.php:857 -msgid "remove" -msgstr "eliminar" - -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" - -#: ../../include/conversation.php:950 -msgid "View Source" -msgstr "Ver la fuente original de la entrada" - -#: ../../include/conversation.php:951 -msgid "Follow Thread" -msgstr "Seguir el hilo" - -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "Estado actual" - -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "Ver fotos" - -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "Actividad en la red de esta conexión" - -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "Editar contacto" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "Enviar Mensaje Privado" - -#: ../../include/conversation.php:959 ../../include/apps.php:145 -msgid "Poke" -msgstr "Toques y otras cosas" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." -msgstr "a %s le gusta esto." - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." -msgstr "a %s no le gusta esto." - -#: ../../include/conversation.php:1077 -#, 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:1079 -#, 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:1085 -msgid "and" -msgstr "y" - -#: ../../include/conversation.php:1088 -#, 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:1089 -#, php-format -msgid "%s like this." -msgstr "a %s le gusta esto." - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." -msgstr "a %s no le gusta esto." - -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "Por favor, introduzca un enlace de vídeo:" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "Por favor, introduzca un enlace de audio:" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "Término de la etiqueta:" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" - -#: ../../include/conversation.php:1158 ../../mod/editpost.php:47 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1185 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 ../../mod/photos.php:961 ../../mod/layouts.php:184 -msgid "Share" -msgstr "Compartir" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "Nombre de enlace de página" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "Publicar como" - -#: ../../include/conversation.php:1197 ../../mod/editpost.php:112 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:184 -#: ../../mod/editblock.php:141 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Subir foto" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "subir foto" - -#: ../../include/conversation.php:1199 ../../mod/editpost.php:113 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:185 -#: ../../mod/editblock.php:142 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Adjuntar fichero" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "adjuntar fichero" - -#: ../../include/conversation.php:1201 ../../mod/editpost.php:114 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:186 -#: ../../mod/editblock.php:143 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Insertar enlace web" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "enlace web" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "Insertar enlace de vídeo" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "enlace de vídeo" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "Insertar enlace de audio" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "enlace de audio" - -#: ../../include/conversation.php:1207 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:190 -#: ../../mod/editblock.php:147 -msgid "Set your location" -msgstr "Configure su localización" - -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "configure localización" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "Cambiar votación" - -#: ../../include/conversation.php:1212 ../../mod/editpost.php:119 -#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:191 -#: ../../mod/editblock.php:148 -msgid "Clear browser location" -msgstr "Eliminar localización del navegador" - -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "eliminar localización" - -#: ../../include/conversation.php:1215 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:207 ../../mod/editblock.php:161 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../include/conversation.php:1219 ../../mod/editpost.php:137 -#: ../../mod/editlayout.php:162 ../../mod/editwebpage.php:209 -#: ../../mod/editblock.php:164 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorías (opcional, lista separada por comas)" - -#: ../../include/conversation.php:1221 ../../mod/editpost.php:124 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:193 -#: ../../mod/editblock.php:150 -msgid "Permission settings" -msgstr "Configuración de permisos" - -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "permisos" - -#: ../../include/conversation.php:1230 ../../mod/editpost.php:132 -#: ../../mod/editlayout.php:155 ../../mod/editwebpage.php:202 -#: ../../mod/editblock.php:158 -msgid "Public post" -msgstr "Entrada pública" - -#: ../../include/conversation.php:1232 ../../mod/editpost.php:138 -#: ../../mod/editlayout.php:163 ../../mod/editwebpage.php:210 -#: ../../mod/editblock.php:165 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" - -#: ../../include/conversation.php:1245 ../../mod/editpost.php:149 -#: ../../mod/editlayout.php:172 ../../mod/editwebpage.php:219 -#: ../../mod/editblock.php:175 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" - -#: ../../include/conversation.php:1249 ../../mod/events.php:674 -#: ../../mod/editpost.php:153 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1250 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:134 ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:154 -#: ../../mod/settings.php:589 ../../mod/settings.php:615 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "Descubrir" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "Flujos públicos importados" - -#: ../../include/conversation.php:1500 -msgid "Commented Order" -msgstr "Comentarios recientes" - -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" - -#: ../../include/conversation.php:1507 -msgid "Posted Order" -msgstr "Publicaciones recientes" - -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" - -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" - -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "Nuevas" - -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" -msgstr "Flujo de actividad - por fecha" - -#: ../../include/conversation.php:1533 -msgid "Starred" -msgstr "Preferidas" - -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" - -#: ../../include/conversation.php:1543 -msgid "Spam" -msgstr "Correo basura" - -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" - -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "Canal" - -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" - -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "Sobre mí" - -#: ../../include/conversation.php:1605 -msgid "Profile Details" -msgstr "Detalles del perfil" - -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/conversation.php:1623 -msgid "Files and Storage" -msgstr "Repositorio de ficheros" - -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Salas de chat" - -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" - -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Administrar páginas web" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Asistir" -msgstr[1] "Participaré" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No asistir" -msgstr[1] "No participaré" - -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" - -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Está de acuerdo" -msgstr[1] "Están de acuerdo" - -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "No está de acuerdo" -msgstr[1] "No están de acuerdo" - -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" - -#: ../../include/items.php:413 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: ../../include/items.php:1101 ../../include/items.php:1147 +#: ../../include/items.php:885 ../../include/items.php:945 msgid "(Unknown)" msgstr "(Desconocido)" -#: ../../include/items.php:1373 +#: ../../include/items.php:1133 msgid "Visible to anybody on the internet." msgstr "Visible para cualquiera en internet." -#: ../../include/items.php:1375 +#: ../../include/items.php:1135 msgid "Visible to you only." msgstr "Visible sólo para usted." -#: ../../include/items.php:1377 +#: ../../include/items.php:1137 msgid "Visible to anybody in this network." msgstr "Visible para cualquiera en esta red." -#: ../../include/items.php:1379 +#: ../../include/items.php:1139 msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que haya sido autenticado." +msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/items.php:1381 +#: ../../include/items.php:1141 #, php-format msgid "Visible to anybody on %s." msgstr "Visible para cualquiera en %s." -#: ../../include/items.php:1383 +#: ../../include/items.php:1143 msgid "Visible to all connections." msgstr "Visible para todas las conexiones." -#: ../../include/items.php:1385 +#: ../../include/items.php:1145 msgid "Visible to approved connections." msgstr "Visible para las conexiones permitidas." -#: ../../include/items.php:1387 +#: ../../include/items.php:1147 msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4310 ../../mod/thing.php:74 -#: ../../mod/filestorage.php:27 ../../mod/viewsrc.php:20 -#: ../../mod/admin.php:167 ../../mod/admin.php:1025 ../../mod/admin.php:1225 -#: ../../mod/display.php:36 -msgid "Item not found." -msgstr "Elemento no encontrado." +#: ../../include/items.php:4197 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4383 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:305 -#: ../../include/attach.php:319 ../../include/attach.php:350 -#: ../../include/attach.php:546 ../../include/attach.php:618 -#: ../../include/chat.php:131 ../../include/photos.php:26 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/webpages.php:69 ../../mod/thing.php:269 -#: ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:249 ../../mod/group.php:9 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:1005 ../../mod/network.php:12 -#: ../../mod/common.php:35 ../../mod/connections.php:29 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/editpost.php:13 -#: ../../mod/photos.php:69 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/mitem.php:111 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/editblock.php:65 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/setup.php:223 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/register.php:72 ../../mod/settings.php:570 ../../mod/id.php:71 -#: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:348 -#: ../../mod/mail.php:114 ../../mod/notifications.php:66 -#: ../../mod/regmod.php:17 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 -#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 -#: ../../mod/page.php:31 ../../mod/page.php:86 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:100 ../../mod/channel.php:219 -#: ../../mod/channel.php:262 ../../mod/suggest.php:26 -#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:182 ../../index.php:393 -msgid "Permission denied." -msgstr "Acceso denegado." - -#: ../../include/items.php:4787 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Colección no encontrada." - -#: ../../include/items.php:4803 -msgid "Collection is empty." -msgstr "La colección está vacía." - -#: ../../include/items.php:4810 +#: ../../include/items.php:4204 #, php-format -msgid "Collection: %s" -msgstr "Colección: %s" +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" -#: ../../include/items.php:4820 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" - -#: ../../include/items.php:4822 +#: ../../include/items.php:4216 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/zot.php:684 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" +#: ../../include/items.php:4565 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../include/zot.php:700 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la signatura del canal" - -#: ../../include/zot.php:2208 +#: ../../include/items.php:4756 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la signatura del sitio para %s" +msgid "[Edited %s]" +msgstr "[se ha editado %s]" -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Contenido incorporado" +#: ../../include/items.php:4756 +msgctxt "edit_activity" +msgid "Post" +msgstr "Publicar" -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" +#: ../../include/items.php:4756 +msgctxt "edit_activity" +msgid "Comment" +msgstr "Comentar" -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Desconectado." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Autenticación fallida." - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "El acceso ha fallado." - -#: ../../include/contact_widgets.php:14 -#, 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 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "Avanzado" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Encontrar canales" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Introducir nombre o interés" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" - -#: ../../include/contact_widgets.php:26 ../../mod/directory.php:379 -#: ../../mod/directory.php:384 ../../mod/connections.php:273 -msgid "Find" -msgstr "Encontrar" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Perfil aleatorio" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invitar a amigos" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" - -#: ../../include/contact_widgets.php:125 -#, 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:130 -msgid "show more" -msgstr "mostrar más" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Mostrar" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "No mostrar" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:691 -#: ../../mod/photos.php:571 ../../mod/photos.php:934 ../../mod/chat.php:209 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "Permisos" - -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "Ningún fichero de origen" - -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." - -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" - -#: ../../include/attach.php:410 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" - -#: ../../include/attach.php:422 -#, 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:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Error de carga, posiblemente por limite de sistema o porque la acción ha finalizado." - -#: ../../include/attach.php:517 -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:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "Nombre de ruta o fichero duplicados" - -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/identity.php:33 +#: ../../include/channel.php:35 msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener los datos de identidad desde la base de datos" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/identity.php:67 +#: ../../include/channel.php:68 msgid "Empty name" msgstr "Nombre vacío" -#: ../../include/identity.php:70 +#: ../../include/channel.php:71 msgid "Name too long" msgstr "Nombre demasiado largo" -#: ../../include/identity.php:186 +#: ../../include/channel.php:188 msgid "No account identifier" msgstr "Ningún identificador de la cuenta" -#: ../../include/identity.php:198 +#: ../../include/channel.php:200 msgid "Nickname is required." msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." - -#: ../../include/identity.php:217 ../../include/dimport.php:34 -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 usuarios de este sitio." - -#: ../../include/identity.php:292 +#: ../../include/channel.php:277 msgid "Unable to retrieve created identity" msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/identity.php:350 +#: ../../include/channel.php:373 msgid "Default Profile" msgstr "Perfil principal" -#: ../../include/identity.php:759 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "No se puede recuperar la identidad modficada" -#: ../../include/identity.php:806 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/webpages.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29 -#: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28 -#: ../../mod/editblock.php:29 ../../mod/filestorage.php:54 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." - -#: ../../include/identity.php:969 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Cambiar foto de perfil" - -#: ../../include/identity.php:975 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../include/identity.php:975 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../include/identity.php:976 ../../mod/profiles.php:775 +#: ../../include/channel.php:1297 msgid "Create New Profile" -msgstr "Crear nuevo perfil" +msgstr "Crear un nuevo perfil" -#: ../../include/identity.php:991 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Imagen de perfil" +#: ../../include/channel.php:1318 +msgid "Visible to everybody" +msgstr "Visible para todos" -#: ../../include/identity.php:994 -msgid "visible to everybody" -msgstr "visible para cualquiera" - -#: ../../include/identity.php:995 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: ../../include/identity.php:1011 ../../include/identity.php:1250 +#: ../../include/channel.php:1395 ../../include/channel.php:1523 msgid "Gender:" msgstr "Género:" -#: ../../include/identity.php:1012 ../../include/identity.php:1294 -msgid "Status:" -msgstr "Estado:" - -#: ../../include/identity.php:1013 ../../include/identity.php:1305 +#: ../../include/channel.php:1397 ../../include/channel.php:1591 msgid "Homepage:" msgstr "Página personal:" -#: ../../include/identity.php:1014 +#: ../../include/channel.php:1398 msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/identity.php:1097 ../../include/identity.php:1175 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../include/channel.php:1451 +msgid "Change your profile photo" +msgstr "Cambiar su foto del perfil" -#: ../../include/identity.php:1098 ../../include/identity.php:1176 -msgid "F d" -msgstr "d F" +#: ../../include/channel.php:1482 +msgid "Trans" +msgstr "Trans" -#: ../../include/identity.php:1143 ../../include/identity.php:1215 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[hoy]" - -#: ../../include/identity.php:1154 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: ../../include/identity.php:1155 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: ../../include/identity.php:1208 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: ../../include/identity.php:1226 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: ../../include/identity.php:1227 -msgid "Events this week:" -msgstr "Eventos de esta semana:" - -#: ../../include/identity.php:1240 ../../include/identity.php:1357 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" - -#: ../../include/identity.php:1248 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: ../../include/identity.php:1255 +#: ../../include/channel.php:1528 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/identity.php:1279 +#: ../../include/channel.php:1552 msgid "j F, Y" msgstr "j F Y" -#: ../../include/identity.php:1280 +#: ../../include/channel.php:1553 msgid "j F" msgstr "j F" -#: ../../include/identity.php:1287 +#: ../../include/channel.php:1560 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/identity.php:1291 ../../mod/directory.php:297 -msgid "Age:" -msgstr "Edad:" - -#: ../../include/identity.php:1300 +#: ../../include/channel.php:1573 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/identity.php:1303 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" - -#: ../../include/identity.php:1307 ../../mod/directory.php:313 -#: ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Ciudad de origen:" - -#: ../../include/identity.php:1309 +#: ../../include/channel.php:1585 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/identity.php:1311 ../../mod/profiles.php:694 +#: ../../include/channel.php:1589 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" + +#: ../../include/channel.php:1595 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/identity.php:1313 +#: ../../include/channel.php:1597 msgid "Religion:" msgstr "Religión:" -#: ../../include/identity.php:1315 ../../mod/directory.php:315 -msgid "About:" -msgstr "Sobre mí:" - -#: ../../include/identity.php:1317 +#: ../../include/channel.php:1601 msgid "Hobbies/Interests:" -msgstr "Aficciones/Intereses:" +msgstr "Aficciones o intereses:" -#: ../../include/identity.php:1319 ../../mod/profiles.php:697 +#: ../../include/channel.php:1603 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/identity.php:1321 ../../mod/profiles.php:698 +#: ../../include/channel.php:1605 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/identity.php:1323 +#: ../../include/channel.php:1607 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/identity.php:1325 +#: ../../include/channel.php:1609 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/identity.php:1327 +#: ../../include/channel.php:1611 msgid "Musical interests:" -msgstr "Intereses musicales:" +msgstr "Preferencias musicales:" -#: ../../include/identity.php:1329 +#: ../../include/channel.php:1613 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/identity.php:1331 +#: ../../include/channel.php:1615 msgid "Television:" msgstr "Televisión:" -#: ../../include/identity.php:1333 +#: ../../include/channel.php:1617 msgid "Film/dance/culture/entertainment:" -msgstr "Cine/danza/cultura/entretenimiento:" +msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/identity.php:1335 +#: ../../include/channel.php:1619 msgid "Love/Romance:" -msgstr "Vida sentimental/amorosa:" +msgstr "Vida sentimental o amorosa:" -#: ../../include/identity.php:1337 +#: ../../include/channel.php:1621 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/identity.php:1339 +#: ../../include/channel.php:1623 msgid "School/education:" msgstr "Estudios:" -#: ../../include/identity.php:1359 +#: ../../include/channel.php:1646 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Hombre" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Mujer" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualmente hombre" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualmente mujer" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Generalmente hombre" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Generalmente mujer" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgénero" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutral" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "No especificado" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Hombres" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Mujeres" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbiana" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Sin preferencias" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexual" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Casto" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Virgen" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Fuera de lo común" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetichista" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Orgías" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Asexual" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Soltero/a" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Solo/a" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponible" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "No disponible" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Enamorado/a" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Apasionado" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Saliendo con alguien" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infiel" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Con adicción al sexo" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amistad beneficiosa" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Prometido/a" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Casado/a" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Pareja" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Cohabitando" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Matrimonio tradicional" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Felíz" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "No estoy buscando" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Infiel" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Engañado/a" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separado/a" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Inestable" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorciado/a" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Viudo/a" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Indeterminado" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es complicado" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "No me importa" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Pregúnteme" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Adminstrador del sitio" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Libreta de direcciones" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Estado de ánimo" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Probar" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Invitar" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Características" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Idioma" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Publicación" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Foto de perfil" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "Actualizar" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Instalar" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Comprar" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" + +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Comienza:" + +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Finaliza:" + +#: ../../include/event.php:1011 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." + +#: ../../include/event.php:1227 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:1228 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:1229 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:1230 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:1231 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/event.php:1310 ../../include/connections.php:692 +msgid "Home, Voice" +msgstr "Llamadas particulares" + +#: ../../include/event.php:1311 ../../include/connections.php:693 +msgid "Home, Fax" +msgstr "Fax particular" + +#: ../../include/event.php:1313 ../../include/connections.php:695 +msgid "Work, Voice" +msgstr "Llamadas de trabajo" + +#: ../../include/event.php:1314 ../../include/connections.php:696 +msgid "Work, Fax" +msgstr "Fax de trabajo" + +#: ../../include/network.php:762 +msgid "view full size" +msgstr "Ver en el tamaño original" + +#: ../../include/network.php:1764 ../../include/network.php:1765 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:1766 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:1767 +msgid "GNU-Social" +msgstr "GNU Social" + +#: ../../include/network.php:1768 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:1771 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:1772 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:1773 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:1774 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:1775 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:1776 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Selección personalizada" + +#: ../../include/acl_selectors.php:115 +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:116 +msgid "Show" +msgstr "Mostrar" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "No mostrar" + +#: ../../include/acl_selectors.php:150 +#, 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/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" + +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 +#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 +#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 +#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 +#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 +#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 +#: ../../include/bbcode.php:1239 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:178 +#: ../../include/bbcode.php:253 #, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" +msgid "Install %1$s element %2$s" +msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:182 +#: ../../include/bbcode.php:257 #, 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:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "página web" +#: ../../include/bbcode.php:348 +msgid "card" +msgstr "ficha" -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "disposición" +#: ../../include/bbcode.php:350 +msgid "article" +msgstr "el artículo" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "bloque" +#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "menú" +#: ../../include/bbcode.php:441 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "Código QR" +#: ../../include/bbcode.php:454 +msgid "View article" +msgstr "Ver el artículo" -#: ../../include/bbcode.php:266 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió la siguiente %2$s %3$s" +#: ../../include/bbcode.php:454 +msgid "View summary" +msgstr "Ver sumario" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "entrada" - -#: ../../include/bbcode.php:518 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma diferente" - -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:756 +#: ../../include/bbcode.php:1188 msgid "$1 wrote:" -msgstr "$1 escribió" +msgstr "$1 escribió:" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Nombre de sala desaparecido." +#: ../../include/oembed.php:329 +msgid " by " +msgstr "por" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Nombre de sala duplicado." +#: ../../include/oembed.php:330 +msgid " on " +msgstr "en" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Especificador de sala no válido." +#: ../../include/oembed.php:359 +msgid "Embedded content" +msgstr "Contenido incorporado" -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Sala no encontrada." +#: ../../include/oembed.php:368 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "La sala está llena." - -#: ../../include/photos.php:94 +#: ../../include/zid.php:347 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen es demasiado grande (%lu demás)" +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" -#: ../../include/photos.php:101 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../include/features.php:56 +msgid "General Features" +msgstr "Funcionalidades básicas" -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../include/features.php:61 +msgid "Display new member quick links menu" +msgstr "Mostrar el menú de enlaces rápidos para nuevos miembros" -#: ../../include/photos.php:199 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../include/features.php:69 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" -#: ../../include/photos.php:363 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../include/features.php:70 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" -#: ../../mod/achievements.php:34 -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í" +#: ../../include/features.php:78 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." +#: ../../include/features.php:79 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" +#: ../../include/features.php:87 +msgid "Web Pages" +msgstr "Páginas web" -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Canal actual" +#: ../../include/features.php:88 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." +#: ../../include/features.php:97 +msgid "Provide a wiki for your channel" +msgstr "Proporcionar un wiki para su canal" -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Canal principal" +#: ../../include/features.php:114 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Convertir en predeterminado" +#: ../../include/features.php:115 +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)" -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" +#: ../../include/features.php:124 +msgid "Create personal planning cards" +msgstr "Crear fichas de planificación personal" -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" +#: ../../include/features.php:134 +msgid "Create interactive articles" +msgstr "Crear artículos interactivos" -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Canales delegados" +#: ../../include/features.php:142 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../mod/directory.php:59 ../../mod/photos.php:441 ../../mod/search.php:13 -#: ../../mod/ratings.php:82 ../../mod/viewconnections.php:17 -#: ../../mod/display.php:13 -msgid "Public access denied." -msgstr "Acceso público denegado." +#: ../../include/features.php:143 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" +#: ../../include/features.php:151 +msgid "Photo Location" +msgstr "Ubicación de las fotos" -#: ../../mod/directory.php:245 -msgid "Gender: " -msgstr "Género:" +#: ../../include/features.php:152 +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." -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "Estado:" +#: ../../include/features.php:160 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "Página personal:" +#: ../../include/features.php:161 +msgid "Provide chatrooms and chat services with access control." +msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "Descripción:" +#: ../../include/features.php:170 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "Foro público:" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "Palabras clave:" - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "No sugerir:" - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "Conexiones comunes:" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "Directorio global:" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "Directorio local:" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "Encontrar:" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "siguiente página" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "página anterior" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "Ordenar opciones" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "Alfabético" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "Alfabético inverso" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "De más nuevo a más antiguo" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "De más antiguo a más nuevo" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas entradas pueden estar ocultas)." - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Búsqueda de canales" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Buscar un canal (o un \"webbie\") que comience por:" - -#: ../../mod/xchan.php:37 ../../mod/mitem.php:116 ../../mod/menu.php:160 -msgid "Not found." -msgstr "No encontrado." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Por favor inicia sesión para continuar." - -#: ../../mod/api.php:104 +#: ../../include/features.php:171 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?" +"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." -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "Título de página" +#: ../../include/features.php:179 +msgid "Event Timezone Selection" +msgstr "Selección del huso horario del evento" -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canal añadido." +#: ../../include/features.php:180 +msgid "Allow event creation in timezones other than your own." +msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Etiqueta eliminada." +#: ../../include/features.php:189 +msgid "Premium Channel" +msgstr "Canal premium" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:887 -msgid "Remove" -msgstr "Eliminar" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continuar" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" - -#: ../../mod/connect.php:88 +#: ../../include/features.php:190 msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo paypal, normas de uso, etc." +"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" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 +#: ../../include/features.php:198 +msgid "Advanced Directory Search" +msgstr "Búsqueda avanzada en el directorio" + +#: ../../include/features.php:199 +msgid "Allows creation of complex directory search queries" +msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" + +#: ../../include/features.php:207 +msgid "Advanced Theme and Layout Settings" +msgstr "Ajustes avanzados de temas y esquemas" + +#: ../../include/features.php:208 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permitir el ajuste fino de temas y esquemas de páginas" + +#: ../../include/features.php:217 +msgid "Access Control and Permissions" +msgstr "Control de acceso y permisos" + +#: ../../include/features.php:221 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Grupos de canales" + +#: ../../include/features.php:222 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" + +#: ../../include/features.php:230 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" + +#: ../../include/features.php:231 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" + +#: ../../include/features.php:241 +msgid "Provide alternate connection permission roles." +msgstr "Proporcionar roles de acceso alternativos para esta conexión." + +#: ../../include/features.php:249 +msgid "OAuth1 Clients" +msgstr "Clientes OAuth1" + +#: ../../include/features.php:250 +msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." +msgstr "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas." + +#: ../../include/features.php:258 +msgid "OAuth2 Clients" +msgstr "Clientes OAuth2" + +#: ../../include/features.php:259 +msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." +msgstr "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas." + +#: ../../include/features.php:267 +msgid "Access Tokens" +msgstr "Tokens de acceso" + +#: ../../include/features.php:268 +msgid "Create access tokens so that non-members can access private content." +msgstr "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado." + +#: ../../include/features.php:279 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" + +#: ../../include/features.php:283 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" + +#: ../../include/features.php:284 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:" +"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)" -#: ../../mod/connect.php:91 +#: ../../include/features.php:293 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" + +#: ../../include/features.php:301 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" + +#: ../../include/features.php:302 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:" +"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." -#: ../../mod/connect.php:92 ../../mod/connect.php:113 +#: ../../include/features.php:310 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" + +#: ../../include/features.php:311 +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:319 +msgid "Disable Comments" +msgstr "Deshabilitar comentarios" + +#: ../../include/features.php:320 +msgid "Provide the option to disable comments for a post" +msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" + +#: ../../include/features.php:328 +msgid "Delayed Posting" +msgstr "Publicación aplazada" + +#: ../../include/features.php:329 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" + +#: ../../include/features.php:337 +msgid "Content Expiration" +msgstr "Caducidad del contenido" + +#: ../../include/features.php:338 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" + +#: ../../include/features.php:346 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" + +#: ../../include/features.php:347 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 intrucciones proporcionadas en esta página." +"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." -#: ../../mod/connect.php:101 -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.)" +#: ../../include/features.php:355 +msgid "Auto-save drafts of posts and comments" +msgstr "Guardar automáticamente borradores de entradas y comentarios" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "Elemento actualizado." - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "Elemento añadido" - -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "Mostrar elemento" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "elemento no encontrado." - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "Editar elemento" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "Seleccionar un perfil" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "Publicar una actividad" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo envíos a espectadores del perfil pertinente." - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento p. ej.:. \"algo\"" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "Añadir elemento a su perfil" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento no disponible" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." - -#: ../../mod/profile_photo.php:206 +#: ../../include/features.php:356 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." +"Automatically saves post and comment drafts in local browser storage to help" +" prevent accidental loss of compositions" +msgstr "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones." -#: ../../mod/profile_photo.php:233 +#: ../../include/features.php:367 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" + +#: ../../include/features.php:371 +msgid "Search by Date" +msgstr "Buscar por fecha" + +#: ../../include/features.php:372 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" + +#: ../../include/features.php:382 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" + +#: ../../include/features.php:390 +msgid "Network Personal Tab" +msgstr "Actividad personal" + +#: ../../include/features.php:391 +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:399 +msgid "Network New Tab" +msgstr "Contenido nuevo" + +#: ../../include/features.php:400 +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:408 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" + +#: ../../include/features.php:409 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" + +#: ../../include/features.php:418 +msgid "Show friend and connection suggestions" +msgstr "Mostrar sugerencias de amigos y conexiones" + +#: ../../include/features.php:426 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" + +#: ../../include/features.php:427 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" + +#: ../../include/features.php:439 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" + +#: ../../include/features.php:443 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" + +#: ../../include/features.php:444 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" + +#: ../../include/features.php:452 +msgid "Post Categories" +msgstr "Temas de las entradas" + +#: ../../include/features.php:453 +msgid "Add categories to your posts" +msgstr "Añadir temas a sus publicaciones" + +#: ../../include/features.php:461 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" + +#: ../../include/features.php:462 +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" + +#: ../../include/features.php:471 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" + +#: ../../include/features.php:479 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" + +#: ../../include/features.php:480 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" + +#: ../../include/features.php:488 +msgid "Star Posts" +msgstr "Entradas destacadas" + +#: ../../include/features.php:489 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" + +#: ../../include/features.php:497 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" + +#: ../../include/features.php:498 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "Trending" + +#: ../../include/taxonomy.php:552 +msgid "Keywords" +msgstr "Palabras clave" + +#: ../../include/taxonomy.php:573 +msgid "have" +msgstr "tener" + +#: ../../include/taxonomy.php:573 +msgid "has" +msgstr "tiene" + +#: ../../include/taxonomy.php:574 +msgid "want" +msgstr "quiero" + +#: ../../include/taxonomy.php:574 +msgid "wants" +msgstr "quiere" + +#: ../../include/taxonomy.php:575 +msgid "likes" +msgstr "gusta de" + +#: ../../include/taxonomy.php:576 +msgid "dislikes" +msgstr "no gusta de" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" + +#: ../../include/account.php:38 +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:44 +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:76 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." + +#: ../../include/account.php:158 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." + +#: ../../include/account.php:225 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." + +#: ../../include/account.php:314 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "La imagen supera el tamaño límite de %d" +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto no disponible." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Subir fichero:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "Omitir este paso" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Edición completada" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Imagen subida correctamente." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Subida de imagen fallida." - -#: ../../mod/profile_photo.php:439 +#: ../../include/account.php:383 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "La reducción de la imagen [%s] ha fallado." +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" -#: ../../mod/block.php:27 ../../mod/page.php:36 -msgid "Invalid item." -msgstr "Elemento no válido." +#: ../../include/account.php:405 +msgid "your registration password" +msgstr "su contraseña de registro" -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:52 -msgid "Channel not found." -msgstr "Canal no encontrado." - -#: ../../mod/block.php:75 ../../mod/display.php:110 ../../mod/help.php:79 -#: ../../mod/page.php:89 ../../index.php:241 -msgid "Page not found." -msgstr "Página no encontrada." - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Solicitud incorrecta." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "elemento" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Canal no disponible." - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." - -#: ../../mod/like.php:401 +#: ../../include/account.php:411 ../../include/account.php:473 #, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s está de acuerdo con %3$s de %2$s" +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" -#: ../../mod/like.php:403 +#: ../../include/account.php:484 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: ../../include/account.php:524 #, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s no está de acuerdo con %3$s de %2$s" +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" -#: ../../mod/like.php:405 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s se abstiene en %3$s de %2$s" +#: ../../include/account.php:803 ../../include/account.php:805 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s participará en el %3$s de %2$s" +#: ../../include/account.php:811 +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 " -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s no participará en el %3$s de %2$s" +#: ../../include/account.php:816 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s tal vez participe en el %3$s de %2$s" +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "Cumpleaños" -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "Acción completada." - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "Gracias." - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "No encontradas entradas de calendario." - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "Evento no encontrado." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "Editar evento" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "Borrar evento" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "calendario" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "Crear Nuevo Evento" - -#: ../../mod/events.php:505 ../../mod/photos.php:839 -msgid "Previous" -msgstr "Anterior" - -#: ../../mod/events.php:506 ../../mod/photos.php:848 ../../mod/setup.php:281 -msgid "Next" -msgstr "Siguiente" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "Exportar" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "Importar" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "Error al borrar el evento" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "Detalles del evento" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "Se requieren fecha y título." - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha / hora de finalización no se conocen o no son relevantes" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de zona horaria" - -#: ../../mod/events.php:680 -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." - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "Título:" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "Compartir este evento" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo %2$s de %3$s" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Sitios públicos" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links may " -"provide additional details." -msgstr "Los sitios listados permiten el registro público de la red $Projectname. Todos los sitios de la red están vinculados entre sí por lo que sus miembros, en ninguna 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 enlaces de los proveedores pueden proporcionar detalles adicionales." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Valorar este sitio" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "Dirección del sitio" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Tipo de Acceso" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Normas de Registro" - -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Localización" - -#: ../../mod/pubsites.php:26 -msgid "Project" -msgstr "Proyecto" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Ver las valoraciones del sitio" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Valorar" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Ver valoraciones" - -#: ../../mod/rpost.php:131 ../../mod/editpost.php:158 -msgid "Edit post" -msgstr "Editar entrada" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "canal $Projectname" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Colección creada." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "No se puede crear colección." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Colección actualizada." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crear una colección de canales." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nombre de la colección:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Los miembros son visibles para otros canales" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Colección eliminada." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "No ha sido posible de eliminar la colección." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Editor de colecciones" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Miembros" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Versión %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones/Aplicaciones instaladas:" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Extensiones/Aplicaciones no instaladas:" - -#: ../../mod/siteinfo.php:155 ../../mod/home.php:58 ../../mod/home.php:66 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/siteinfo.php:156 -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." - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Etiqueta:" - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more" -" about $Projectname." -msgstr "Por favor, visite redmatrix.me para aprender más sobre $Projectname." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "Problemas en $projectname" - -#: ../../mod/siteinfo.php:168 -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" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Administradores del sitio" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "Desechada entrada vacía." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "Error del sistema. Entrada no salvada." - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." - -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f tope máximo de entradas" - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "La colección está vacía" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Colección:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Conexión:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Ninguna conexión en común." - -#: ../../mod/regdir.php:45 ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Este sitio no es un servidor de directorio" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "Bloqueadas" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "Ignoradas" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "Ocultas" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "Archivadas" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "Sugerir nuevas conexiones" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nuevas conexiones" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Todas las conexiones" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "Desbloqueadas" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "Mostrar solo las conexiones desbloqueadas" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "Editar conexión" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "Buscar sus conexiones" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "Búsqueda:" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:76 -#: ../../mod/editwebpage.php:77 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 -msgid "Item not found" -msgstr "Elemento no encontrado" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "El elemento no es editable" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "¿Borrar el elemento?" - -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:187 ../../mod/editblock.php:144 -msgid "Insert YouTube video" -msgstr "Insertar vídeo de YouTube" - -#: ../../mod/editpost.php:116 ../../mod/editlayout.php:143 -#: ../../mod/editwebpage.php:188 ../../mod/editblock.php:145 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insertar vídeo Vorbis [.ogg]" - -#: ../../mod/editpost.php:117 ../../mod/editlayout.php:144 -#: ../../mod/editwebpage.php:189 ../../mod/editblock.php:146 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insertar audio Vorbis [.ogg]" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "$Projectname - Invitados: Nombre de usuario: {su dirección de correo electrónico}, Contraseña: +++" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "Borrar álbum" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "Borrar foto" - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB usados de la capacidad de almacenamiento de fotos." - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB utilizados de la capacidad de almacenamiento de fotos." - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "Crear una entrada de estado para esta subida" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "Fotos de contacto" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "Ver foto" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "Editar álbum" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "Usar como foto de perfil" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "Ver tamaño completo" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "Editar foto" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "Título" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplo: @bob, @Barbara_Gómez, @juan@ejemplo.com" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "En esta foto:" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "Mapa" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../mod/match.php:31 -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." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Ausente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Conectado" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Guardar marcador" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "Dirección del marcador" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Descripción" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Notificaciones de sistema" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "red" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Formato actualizado" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Formato no encontrado" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nombre del módulo:" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "Ayuda para el diseño de la página" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- seleccionar -" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "No hay nada para importar." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "Los datos proporcionados no son compatibles con este proyecto." - -#: ../../mod/import.php:115 -#, 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." - -#: ../../mod/import.php:135 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear el canal porque el identificador del canal no se ha podido duplicar en este servidor." - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "No se ha podido importar el canal porque el canal no se ha podido clonar." - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../mod/import.php:580 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "Fichero para subir" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "Su antigua contraseña" - -#: ../../mod/import.php:586 -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 ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" - -#: ../../mod/import.php:588 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" - -#: ../../mod/import.php:589 -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." - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "¿Borrar formato?" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Descripción del formato gráfico (opcional)" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Nombre del formato" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "Modificar formato" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Sala no encontrada" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Abandonar sala" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Eliminar esta sala" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Estoy conectado" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nueva sala de chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nombre de sala de chat" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Sala de chat de %1$s" - -#: ../../mod/mitem.php:24 ../../mod/menu.php:138 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../mod/mitem.php:155 ../../mod/mitem.php:227 ../../mod/settings.php:1083 -msgid "(click to open/close)" -msgstr "(pulse para abrir/cerrar)" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../mod/mitem.php:158 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introduzca la dirección del enlace o seleccione el nombre de un submenú" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../mod/mitem.php:161 ../../mod/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" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "Enviar y terminar" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "Enviar y continuar" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "Menú:" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "Destino del enlace" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "Editar menú" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "Editar elemento" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "Eliminar el elemento" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "Nuevo elemento" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "Texto del enlace" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "¿Eliminar página web?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Título del enlace de la página" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Editar página web" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "El servidor de este directorio necesita un \"token\" de acceso" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../mod/lostpass.php:63 -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." - -#: ../../mod/lostpass.php:86 ../../boot.php:1558 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "Pulse aquí para conectarse" - -#: ../../mod/lostpass.php:91 -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." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../mod/lostpass.php:124 -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." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "¿Borrar este bloque?" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Únase a nosotros en RedMatrix" - -#: ../../mod/invite.php:87 -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." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló la entrega del mensaje." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Enviar invitaciones" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónica, una por línea:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Su mensaje:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Debe proporcionar este código de invitación:" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier lugar del $Projectname (están todos interconectados)" - -#: ../../mod/invite.php:137 -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." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "o visite" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Localización no encontrada." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "La localización primaria no puede ser eliminada." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Ninguna localización encontrada." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Gestionar localizaciones del canal" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Localización (dirección)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Localización primaria" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Eliminar localización" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Imposible crear el origen de los clontenidos. Ningún canal ha sido seleccionado." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Fuente creada." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Fuente actualizada." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestionar contenido de origen remoto para su canal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nueva fuente" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal, y distribuirlo de acuerdo con sus ajustes." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importar solo contenido que contenga estas palabras (una por línea)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Dejar en blanco para importar todo el contenido público" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nombre del canal" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Fuente no encontrada" - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Editar fuente" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Eliminar fuente" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Fuente eliminada" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Imposible eliminar la fuente." - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "Nombre del menú" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "Título del menú" - -#: ../../mod/menu.php:93 -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" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "Enviar y proceder" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "Eliminar" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Permiso denegado" - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "Fichero no encontrado." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiar/pegar este código para adjuntar el fichero al envío" - -#: ../../mod/filestorage.php:155 -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" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Compartir este fichero" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Avisar a sus contactos sobre este fichero" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contacto no encontrado" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Enviar sugerencia a un amigo." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir un amigo a %s" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Servidor no encontrado" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Toque/Incitación" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "dar un toque, incitar u otras cosas a alguien" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Convertir en privado este envío" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil no válido" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadir o eliminar." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visible para" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Perfil no encontrado." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Perfil eliminado." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Creado el nuevo perfil." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Estado civil" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Pareja sentimental" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Me gusta" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "No me gusta" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Trabajo:" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religión" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Ideas políticas" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Género" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Preferencia sexual" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Página personal" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Intereses" - -#: ../../mod/profiles.php:447 ../../mod/admin.php:994 -msgid "Address" -msgstr "Dirección" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Perfil actualizado." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "¿Ocultar su lista de contactos a los visitantes de este perfil?" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Cambiar la foto del perfil" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Eliminar este perfil" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Nombre del perfil:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Su nombre completo:" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Título/Descripción:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Su género:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Cumpleaños:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Calle:" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Ciudad:" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Código postal:" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "País:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Región/Estado:" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Estado sentimental:" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Quién: (si es aplicable)" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Desde [fecha]:" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Dirección de la página personal:" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Creencias religiosas:" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Palabras clave:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Visible en el directorio público del canal" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Háblenos de usted..." - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Aficiones/Intereses" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Información de contacto y redes sociales" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Mis otros canales" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Preferencias musicales" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Libros, literatura" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Televisión" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Cine/danza/cultura/entretenimiento" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Vida sentimental/amorosa" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Trabajo" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Estudios" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Este es su perfil principal." - -#: ../../mod/profiles.php:728 +#: ../../include/datetime.php:140 msgid "Age: " msgstr "Edad:" -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Modificar/gestionar perfiles" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "hace un instante" -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Añadir objetos interesantes en su perfil" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Ninguna valoración" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Valoración:" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Sitio web:" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Descripción:" - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Origen del elemento" - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "No se puede crear la tabla." - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "Verificación del sistema" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "Verificar de nuevo" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "Conexión a la base de datos" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "Por defecto es localhost" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "Puerto de la base de datos" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - usar 0 como valor por defecto" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "Nombre de acceso a la base de datos" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "Nombre de la base de datos" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "Tipo de base de datos" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "Dirección del sitio web" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones la zona horaria por defecto de su sitio web" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "Ajustes del sitio" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar votaciones en segundo plano vía cron." - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "ruta del ejecutable PHP" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la entrega de mensajes." - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:454 +#: ../../include/datetime.php:262 #, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "módulo PHP mcrypt " - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "módulo PHP xml" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " - -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." - -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." - -#: ../../mod/setup.php:536 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero no ninguno de los dos está instalado." - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." - -#: ../../mod/setup.php:548 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." - -#: ../../mod/setup.php:566 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." - -#: ../../mod/setup.php:567 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." - -#: ../../mod/setup.php:568 -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 Red." - -#: ../../mod/setup.php:569 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." - -#: ../../mod/setup.php:587 +#: ../../include/datetime.php:520 #, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Red." +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." - -#: ../../mod/setup.php:589 +#: ../../include/datetime.php:521 #, 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 al fichero de plantilla (.tpl) que contiene." +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" -#: ../../mod/setup.php:592 +#: ../../include/nav.php:96 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" + +#: ../../include/nav.php:96 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" + +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" + +#: ../../include/nav.php:105 ../../include/nav.php:192 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" + +#: ../../include/nav.php:111 ../../include/nav.php:140 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:114 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:117 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Sign in" +msgstr "Acceder" + +#: ../../include/nav.php:157 +msgid "Take me home" +msgstr "Volver a la página principal" + +#: ../../include/nav.php:159 +msgid "Log me out of this site" +msgstr "Salir de este sitio" + +#: ../../include/nav.php:164 +msgid "Create an account" +msgstr "Crear una cuenta" + +#: ../../include/nav.php:176 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:179 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido" + +#: ../../include/nav.php:199 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" + +#: ../../include/nav.php:290 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "@nombre, !foro, #tag, ?docs, contenido" + +#: ../../include/nav.php:291 +msgid "Please wait..." +msgstr "Espere por favor…" + +#: ../../include/nav.php:297 +msgid "Add Apps" +msgstr "Añadir aplicaciones" + +#: ../../include/nav.php:298 +msgid "Arrange Apps" +msgstr "Organizar aplicaciones" + +#: ../../include/nav.php:299 +msgid "Toggle System Apps" +msgstr "Alternar aplicaciones de sistema" + +#: ../../include/photos.php:150 #, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red 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." +#: ../../include/photos.php:161 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" +#: ../../include/photos.php:326 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../mod/setup.php:645 -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." +#: ../../include/photos.php:375 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../mod/setup.php:646 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." - -#: ../../mod/setup.php:647 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." - -#: ../../mod/setup.php:648 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." - -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" - -#: ../../mod/setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "La reescritura de la direcciones funciona correctamente" - -#: ../../mod/setup.php:670 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

Siguiente paso

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para las actualizaciones." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:287 +#: ../../include/photos.php:379 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../mod/tagger.php:96 +#: ../../include/photos.php:671 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" + +#: ../../include/zot.php:772 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" + +#: ../../include/zot.php:799 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" + +#: ../../include/zot.php:2552 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado la %3$s de %2$s con %4$s" +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Sin conexiones." - -#: ../../mod/viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar el perfil de %s [%s]" - -#: ../../mod/zfinger.php:23 +#: ../../include/zot.php:4219 msgid "invalid target signature" msgstr "La firma recibida no es válida" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Ajustes del tema actualizados." - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "Sitio" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Cuentas" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "Canales" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "Extensiones" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "Temas" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Examinar la cola" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Ajustes del perfil" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "Informes" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Ajustes de la extensión" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Registros de usuarios pendientes de confirmación" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Cuentas" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# cuentas bloqueadas" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# cuentas caducadas" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# cuentas que caducan" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Canales" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primario" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# clones" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Mensajes en cola" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "Administración" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Sumario" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Cuentas registradas" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "Registros pendientes" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Canales registrados" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "Extensiones activas" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versión" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "Ajustes del sitio actualizados." - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "móvil" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "experimental" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "no soportado" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "Sí - con aprobación" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "Mi sitio no es un servidor público" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "Mi sitio es un servicio de pago" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "Mi sitio es un servicio gratuito" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registro" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "Fichero subido" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "Políticas" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "Nombre del sitio" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "Información del Administrador" - -#: ../../mod/admin.php:463 +#: ../../include/group.php:22 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "Idioma del sistema" +#: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "Tema gráfico del sistema" +#: ../../include/group.php:306 +msgid "edit" +msgstr "editar" -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar ajustes del tema" +#: ../../include/group.php:329 +msgid "Edit group" +msgstr "Editar grupo" -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "Tema del sistema para móviles" +#: ../../include/group.php:330 +msgid "Add privacy group" +msgstr "Añadir un grupo de canales" -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "Tema para aparatos móviles" +#: ../../include/group.php:331 +msgid "Channels not in any privacy group" +msgstr "Sin canales en ningún grupo" -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "Activar el protocolo de la red social Diaspora" +#: ../../include/connections.php:133 +msgid "New window" +msgstr "Nueva ventana" -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Comunicar con Diaspora y Friendica - experimental" +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "Permitir flujos RSS como conexiones" +#: ../../include/auth.php:152 +msgid "Delegation session ended." +msgstr "Finalizó la sesión de la delegación." -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso de los recursos del sistema)" +#: ../../include/auth.php:156 +msgid "Logged out." +msgstr "Desconectado/a." -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "Tamaño máximo de imagen" +#: ../../include/auth.php:273 +msgid "Email validation is incomplete. Please check your email." +msgstr "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico." -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." +#: ../../include/auth.php:289 +msgid "Failed authentication" +msgstr "Autenticación fallida." -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "Texto del registro" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "Preservar la dirección de la página personal" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonados después de x días" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "Se aceptan dominios de correo electrónico" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "No se permiten dominios de correo electrónico" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "Bloquear página pública" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Activar para bloquear el acceso público a todas las páginas públicas personales en este sitio salvo que estén identificadas en el sistema." - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "Verificar direcciones de correo electrónico" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "Forzar la publicación" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "Desactivar la pestaña \"Descubrir\"" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio." - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "acceso a la página personal" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "Usuario del proxy" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "Dirección del proxy" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "Tiempo de espera de la red" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "Intervalo de entrega" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retrasar los procesos de entrega en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para hosts compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "Intervalo de sondeo" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retrasar el sondeo en segundo plano en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega." - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "Carga media máxima" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima del sistema antes de que los procesos de entrega y sondeo se hayan retardado - por defecto, 50." - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Periodo de caducidad en días para el contenido importado (red)" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "0 para que no caduque el contenido importado" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "Servidor no encontrado" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "por canal" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "en el servidor" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "Estado" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "Servidor" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "La actualización ha sido marcada como exitosa" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La actualización de %s se ha realizado exitosamente." - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "No se encuentra la función de actualización de %s." - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Han fallado las actualizaciones" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Intentar ejecutar este paso de actualización automáticamente" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "Estadísticas de la cola" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "Total de entradas" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "Prioridad" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "Dirección de destino" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "Marcar el servidor como permanentemente fuera de línea" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "Vaciar la cola para este servidor" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "Último contacto conocido" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s cuenta bloqueada/desbloqueada" -msgstr[1] "%s cuenta bloqueada/desbloqueada" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s cuentas eliminadas" -msgstr[1] "%s cuentas eliminadas" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "Cuenta no encontrada" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "La cuenta '%s' ha sido eliminada" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "La cuenta '%s' ha sido bloqueada" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "La cuenta '%s' ha sido desbloqueada" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "Usuarios" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "seleccionar todo" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuario en espera de aprobación" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "Fecha de solicitud" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "Sin registros." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "Aprobar" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "Rechazar" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "Fecha de registro" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "Último acceso" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "Caduca" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "Clase de servicio" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canales censurados/no censurados" -msgstr[1] "%s canales censurados/no censurados" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s código permitido/no permitido al canal" -msgstr[1] "%s código permitido/no permitido al canal" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canales eliminados" -msgstr[1] "%s canales eliminados" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "Canal no encontrado" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' eliminado" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurado" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Código permitido al canal '%s'" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Código no permitido al canal '%s'" - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "Censurar" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "No censurar" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "Permitir código" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "No permitir código" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "Desactivar" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "Activar" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "Cambiar" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "Autor:" - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "No se han encontrado temas." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "Instantánea de pantalla" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[No soportado]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "Actualizado el informe de configuraciones." - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "Vaciar" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "Depuración" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "Fichero de informe" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Debe tener permisos de escritura para el servidor web. Ruta relativa al directorio raíz de Red." - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "Nivel de depuración" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "Nuevo campo en el perfil" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "Alias del campo" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "Nombre del campo en el sistema" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "Tipo de entrada" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "Nombre del campo" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "Etiqueta a mostrar en las páginas del perfil" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "Texto de ayuda" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "Información adicional (opcional)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "Definición del campo no encontrada" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "Modificar el campo del perfil" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Enviado con éxito." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "El registro en este servidor/hub está sometido a aprobación previa." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Inscribirse en un servidor/hub afiliado" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Términos del servicio" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Elija una contraseña" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" - -#: ../../mod/removeaccount.php:30 -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." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ATENCIÓN:" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "Eliminar cuenta" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 +#: ../../include/help.php:34 msgid "Help:" msgstr "Ayuda:" -#: ../../mod/help.php:76 ../../index.php:238 +#: ../../include/help.php:78 msgid "Not Found" msgstr "No encontrado" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "Documentación de $Projectname" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 ../../mod/update_public.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenido incorporado - recargue la página para poder verlo]" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visible para:" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "El nombre es obligatorio" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Clave y Secreto son obligatorios" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "Configuración de directivas de Diaspora actualizada." - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "Constraseña cambiada." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "Correo electrónico no válido." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." - -#: ../../mod/settings.php:284 -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." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "Ajustes actualizados." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "Añadir aplicación" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "Nombre de la aplicación" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "Clave de consumidor" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "Clave secreta de consumidor" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "Redirigir" - -#: ../../mod/settings.php:593 -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" - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "dirección del icono" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "Opcional" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "No puede modificar esta aplicación." - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "La clave de cliente empieza por" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "Sin nombre" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "Eliminar autorización" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de características" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "Ajustes de la característica o el complemento" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Configuración para el emulador de Diaspora incorporado" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permitir a cualquier miembro de Diaspora comentar en sus publicaciones públicas" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activar el protocolo de Diaspora para este canal" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "Configuración de directivas de Diaspora" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "Configuración de la cuenta" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "Introduzca la nueva contraseña:" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "Confirme la nueva contraseña:" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco los campos de contraseña a menos que cambie" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "Desactivado" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "Activado" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "Características adicionales" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "Configuración del conector" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "Ajustes de visualización" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "Ajustes del tema" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "Ajustes del contenido" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de diseño de página del sistema - (avanzado)" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "Mostrar la red en modo blog/lista" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "Pulsa para expandir el contenido que excede esta altura" - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página de la red (en píxeles)" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "Nadie excepto tú" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "Conexiones aprobadas" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "Cualquier conexión" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "Su dirección de canal es" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "Ajustes del canal" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "Configuración básica" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "Su zona horaria:" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "Ubicación de publicación predeterminada:" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "Ubicación geográfica que debe mostrarse en sus publicaciones" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "Usar la localización del navegador:" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "Contenido solo para adultos" - -#: ../../mod/settings.php:1062 -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)" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "Ocultra mi presencia en línea" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" - -#: ../../mod/settings.php:1072 -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)" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" - -#: ../../mod/settings.php:1076 -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." - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otro canal después de este número de días" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "0 o en claro evitan la caducidad" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "Permidos de publicación predeterminados" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "Categoría de permisos del canal:" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "Configuración de notificaciones" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "acepte una solicitud de amistad" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "realice un cambio interesante en su perfil" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (muro)" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "Usted ha sido etiquetado en una publicación" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una entrada" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "Actividad no vista en la red" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "Recomendado" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "Próximos eventos" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "Eventos de hoy" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "Mensajes de información del sistema" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "Nuevas conexiones" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "Registros del sistema" - -#: ../../mod/settings.php:1125 -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" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Activar modo experto (en Ajustes > Características Adicionales) para ajustar." - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" - -#: ../../mod/settings.php:1137 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Eliminar canal" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "Eliminar este canal." - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Nombre" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Apellido" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Sobrenombre o Alias" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nombre completo" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto de perfil 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto de perfil 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto de perfil 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto de perfil 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto de perfil 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto de perfil 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Zona horaria" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "Dirección de la página personal" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Año de nacimiento" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mes de nacimiento" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Día de nacimiento" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Sin mensajes." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 -msgid "Export Channel" -msgstr "Exportar el canal" - -#: ../../mod/uexport.php:52 -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." - -#: ../../mod/uexport.php:53 -msgid "Export Content" -msgstr "Exportar contenidos" - -#: ../../mod/uexport.php:54 -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." - -#: ../../mod/uexport.php:55 -msgid "Export your posts from a given year or month:" -msgstr "Exporta sus entradas de un año o mes determinados." - -#: ../../mod/uexport.php:57 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Click on one of the recent years or months below." -msgstr "También puede exportar sus entradas y conversaciones de un año o mes en particular. Hágalo en primer lugar con uno de los años o meses más recientes." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jan" -msgstr "Ene" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Feb" -msgstr "Feb" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Mar" -msgstr "Mar" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Apr" -msgstr "Abr" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jun" -msgstr "Jun" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jul" -msgstr "Jul" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Aug" -msgstr "Ago" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Sep" -msgstr "Sep" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Oct" -msgstr "Oct" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Nov" -msgstr "Nov" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Dec" -msgstr "Dic" - -#: ../../mod/uexport.php:60 -msgid "" -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, inténtelo de nuevo seleccionando un rango de fechas más pequeño." - -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"Or adjust the date in your browser location bar to select other dates. For " -"example the year 2013; %1$s/2013 or the month " -"September 2013; %1$s/2013/9" -msgstr "Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Por ejemlo, el año 2013: %1$s/2013 o el mes de septiembre de 2013: %1$s/2013/9" - -#: ../../mod/uexport.php:62 -msgid "Please visit" -msgstr "Por favor, visite" - -#: ../../mod/uexport.php:62 -msgid "on another hub to import the backup files(s)." -msgstr "en otro servidor hub para importar el fichero (s) de copia de seguridad." - -#: ../../mod/uexport.php:63 -msgid "" -"We advise you to clone the channel on the new hub first and than to import " -"the backup file(s) (from the same channel) in chronological order. Importing" -" the backup files into another channel will certainly give permission " -"issues." -msgstr "Aviso: al clonar el canal en un nuevo servidor hub, en primer lugar tiene que importar el fichero (s) con las copias de seguridad (desde el mismo canal) en orden cronológico. Importar los ficheros de copia de seguridad en otro canal le dará, con toda seguridad, problemas de permisos." - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Total de votos" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Valoración media" - -#: ../../mod/removeme.php:29 -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." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Eliminar este canal" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" - -#: ../../mod/removeme.php:60 -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" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "Conexión actualizada." - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "ahora está conectado a" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "No se pudo acceder a la entrada en su libreta de direcciones." - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar actualmente el canal" - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "Actividad reciente" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "Dejar de ignorar" - -#: ../../mod/connedit.php:539 ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "Desarchivar" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "Archivar" - -#: ../../mod/connedit.php:550 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "¡Esta conexión está archivada!" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "Mostrar" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "Ocultar" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "Ajustar Afinidad" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "Ajustar Perfil" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "Ajustar Afinidad y Perfil" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "La dirección de esta conexión es" - -#: ../../mod/connedit.php:680 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "Filtro Personalizado" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "Palabras, una por línea o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contienen este texto" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "¡Esta información es pública!" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "Solicitud de conexión" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación." - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "Aprobar más tarde" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "heredado" - -#: ../../mod/connedit.php:705 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "Sus ajustes" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "Mis ajustes" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "Permisos individuales" - -#: ../../mod/connedit.php:711 -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 "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í." - -#: ../../mod/connedit.php:712 -msgid "" -"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." -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 impacto hasta que cambie los ajustes heredados." - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "Última actualización:" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. por favor, compruebe que la ID está correctamente escrita." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "El mensaje de error fue:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Falló la autenticación." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Acceder" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Mensaje eliminado." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Mensaje revocado." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Para:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Enviar" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "No se encuentra el mensaje." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Mensaje eliminado" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Revocar el mensaje" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversación privada" - -#: ../../mod/mail.php:338 -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 de perfil del remitente." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Responder" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Descartar" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Por favor, inicie sesión." - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Añadir un canal" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" " - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "O importar un canal existente de otro lugar" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Tipo de canal" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Aplicación instalada." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Aplicación con errores" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "código incorporado" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Modificar la aplicación" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crear una aplicación" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nombre de la aplicación" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Ubicación (URL) de la aplicación" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Dirección del icono que se va a utilizar para esta foto" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versión" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Precio de la aplicación" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Ubicación (URL) donde adquirir la aplicación" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "enviarle un mensaje privado" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Descripción del formato" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" - -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "Lorem Ipsum" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Marcador añadido" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mis Marcadores" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -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." - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Editor de configuración" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Atención: El cambio de algunos ajustes puede volver inoperante su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Sondear" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Mostrar resultados" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NUEVO" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Borrar todos los ficheros" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Borrar este fichero" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Esquema predeterminado" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Ajustes del tema" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Ajustar esquema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Ajustar el tamaño del tipo de letra para entradas y comentarios" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Ajustar el tipo de letra" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Ajustar el conjunto de iconos" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ajustar el sombreado grande, por defecto 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ajustar el sombreado pequeño, por defecto 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Ajustar el color del sombreado, predeterminado a #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Ajusta el tamaño del radio, predeterminado a 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Ajustar la altura de linea para entradas y comentarios" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Ajustar la imagen de fondo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Ajustar el fondo adjuntado" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Ajustar el color de fondo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Ajustar la imagen de la sección del fondo" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Ajustar el color de la sección del fondo" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Ajustar el color de los elementos - utilizar código hexadecimal" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Ajusta el color de los enlaces - utilizar código hexadecimal" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Ajustar la anchura máxima para los elementos. Predeterminado a 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Ajustar la anchura mínima para los elementos. Predeterminado a 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Ajustar el ancho de la envoltura del contenido genérico. Predeterminado 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Ajustar el color del tipo de letra - utiliza código hexadecimal" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Ajustar el tamaño de fondo del elemento" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacidad del elemento" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostrar solo las previsualizaciones de las entradas" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Muestra la barra lateral en la página del canal" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Color de la barra de navegación" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Elemento flotante" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Desplazamiento izquierdo del elemento de la sección" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Desplazamiento derecho del elemento de la sección" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Ancho de la sección" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Desplazamiento izquierdo del panel lateral" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Desplazamiento derecho del elemento del panel lateral" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Ligero (predeterminado de RedMatrix)" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" -msgstr "Elegir un esquema" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Estrechar la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Color de fondo de la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Color superior del gradiente de la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Color inferior del gradiente de la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Color superior del gradiente del botón activo de navegación" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Color inferior del gradiente del botón activo de navegación" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Color del borde de la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Color del icono de la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Color del icono activo de la barra de navegación" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Color del enlace" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Ajustar el color del tipo de letra para el \"banner\"" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Ajustar el color de fondo" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Ajustar la imagen de fondo" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Ajustar el color de los elementos de fondo" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Ajustar el color de fondo de los comentarios" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Ajustar el color del borde de los comentarios" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Ajustar la indentación de los comentarios" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Ajustar el color básico para los iconos de los elementos" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Ajustar el color flotante para los iconos de los elementos" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Ajustar el tamaño de letra para toda la aplicación" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" -msgstr "Ejemplo: 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Establecer el color de la letra para publicaciones y comentarios" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Establecer el radio de curvatura de las esquinas" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Ajustar la profundidad de sombras de las fotos" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of content region in pixel" -msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" -msgstr "Dejar en blanco para la anchura predeterminada" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "Contenido del centro de la página" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Ajustar la opacidad mínima de la barra de navegación - para ocultarla" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Ajustar el tamaño de la foto del autor de la conversación" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Ajustar el tamaño de foto de los seguidores del autor" - -#: ../../boot.php:1355 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "La actualización %s ha fallado. Mire el informe de errores." - -#: ../../boot.php:1358 -#, php-format -msgid "Update Error at %s" -msgstr "Error de Actualización en %s" - -#: ../../boot.php:1525 -msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de la red" - -#: ../../boot.php:1553 -msgid "Password" -msgstr "Contraseña" - -#: ../../boot.php:1554 -msgid "Remember me" -msgstr "Recordarme" - -#: ../../boot.php:1557 -msgid "Forgot your password?" -msgstr "¿Olvidó su contraseña?" - -#: ../../boot.php:2177 -msgid "toggle mobile" -msgstr "cambiar a modo móvil" - -#: ../../boot.php:2312 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "El certificado SSL del sitio web no es válido. Por favor, corríjalo." - -#: ../../boot.php:2315 -#, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Error SSL del sitio web en %s" - -#: ../../boot.php:2352 -msgid "Cron/Scheduled tasks not running." -msgstr "Las tareas del Planificador/Cron no están funcionando." - -#: ../../boot.php:2356 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/strings.php b/view/es-es/strings.php index 0f5587c56..6f07ece43 100644 --- a/view/es-es/strings.php +++ b/view/es-es/strings.php @@ -1,136 +1,2777 @@ "%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["Submit"] = "Enviar"; +App::$strings["Articles"] = "Artículos"; +App::$strings["Add Article"] = "Añadir un artículo"; +App::$strings["Item not found"] = "Elemento no encontrado"; +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["Permission denied"] = "Permiso denegado"; +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["All Connections"] = "Todas las conexiones"; +App::$strings["INVALID EVENT DISMISSED!"] = "¡EVENTO NO VÁLIDO RECHAZADO!"; +App::$strings["Summary: "] = "Resumen: "; +App::$strings["Unknown"] = "Desconocido"; +App::$strings["Date: "] = "Fecha: "; +App::$strings["Reason: "] = "Razón: "; +App::$strings["INVALID CARD DISMISSED!"] = "¡TARJETA NO VÁLIDA RECHAZADA!"; +App::$strings["Name: "] = "Nombre: "; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Ejemplo: YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "Fecha y hora de finalización"; +App::$strings["Description"] = "Descripción"; +App::$strings["Location"] = "Ubicación"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Today"] = "Hoy"; +App::$strings["Month"] = "Mes"; +App::$strings["Week"] = "Semana"; +App::$strings["Day"] = "Día"; +App::$strings["List month"] = "Lista mensual"; +App::$strings["List week"] = "Lista semanal"; +App::$strings["List day"] = "Lista diaria"; +App::$strings["More"] = "Más"; +App::$strings["Less"] = "Menos"; +App::$strings["Select calendar"] = "Seleccionar un calendario"; +App::$strings["Delete all"] = "Eliminar todos"; +App::$strings["Cancel"] = "Cancelar"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "¡Disculpas! La edición de eventos recurrentes aún no se ha implementado."; +App::$strings["Name"] = "Nombre"; +App::$strings["Organisation"] = "Organización"; +App::$strings["Title"] = "Título"; +App::$strings["Phone"] = "Teléfono"; +App::$strings["Email"] = "Correo electrónico"; +App::$strings["Instant messenger"] = "Mensajería instantánea"; +App::$strings["Website"] = "Sitio web"; +App::$strings["Address"] = "Dirección"; +App::$strings["Note"] = "Nota"; +App::$strings["Mobile"] = "Móvil"; +App::$strings["Home"] = "Inicio"; +App::$strings["Work"] = "Trabajo"; +App::$strings["Add Contact"] = "Añadir un contacto"; +App::$strings["Add Field"] = "Añadir un campo"; +App::$strings["Update"] = "Actualizar"; +App::$strings["P.O. Box"] = "Buzón de correos"; +App::$strings["Additional"] = "Adicional"; +App::$strings["Street"] = "Calle"; +App::$strings["Locality"] = "Localidad"; +App::$strings["Region"] = "Provincia, región o estado"; +App::$strings["ZIP Code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Default Calendar"] = "Calendario por defecto"; +App::$strings["Default Addressbook"] = "Agenda de direcciones por defecto"; +App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +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["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["Welcome to Hubzilla!"] = "¡Bienvenido a Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "No tiene ningún mensaje sin leer..."; +App::$strings["Public access denied."] = "Acceso público denegado."; +App::$strings["Search"] = "Buscar"; +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["Public Stream"] = "\"Stream\" público"; +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"] = "Sincronizando 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["Change Order of Pinned Navbar Apps"] = "Cambiar el orden de las aplicaciones fijas en la barra de navegación"; +App::$strings["Change Order of App Tray Apps"] = "Cambiar el orden de las aplicaciones de la bandeja de aplicaciones"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Use las flechas para mover la aplicación correspondiente a la izquierda (arriba) o derecha (abajo) en la barra de navegación."; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Use las flechas para mover la aplicación correspondiente hacia arriba o hacia abajo en la bandeja de aplicaciones."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Unable to create element."] = "No se puede 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["Not found."] = "No encontrado."; +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["No"] = "No"; +App::$strings["Yes"] = "Sí"; +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["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"] = "el/su evento"; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Required"] = "Obligatorio"; +App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; +App::$strings["Edit Category"] = "Modificar el tema"; +App::$strings["Category"] = "Tema"; +App::$strings["Edit start date and time"] = "Modificar la 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["Edit Location"] = "Modificar la dirección"; +App::$strings["Preview"] = "Previsualizar"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Timezone:"] = "Zona horaria: "; +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["Export"] = "Exportar"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +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)"] = "Temas (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["Please login."] = "Por favor, inicie sesión."; +App::$strings["Hub not found."] = "Servidor no encontrado"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado "; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; +App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Insert web link"] = "Insertar enlace web"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Article"] = "Editar el artículo"; +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"; +App::$strings["Imported file is empty."] = "El fichero importado está vacío."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +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["File to Upload"] = "Fichero para subir"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +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 a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas. Los canales pueden conectarse con otros canales para compartir información unos con otros."; +App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "El tipo de canal que cree afecta a la configuración básica de privacidad, a los permisos que se conceden a las conexiones/amigos y también a la visibilidad del canal en la red."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["Validate"] = "Validar"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; +App::$strings["Remove This Channel"] = "Eliminar este canal"; +App::$strings["WARNING: "] = "ATENCIÓN:"; +App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red. "; +App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; +App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; +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["Files: shared with me"] = "Ficheros: compartidos conmigo"; +App::$strings["NEW"] = "NUEVO"; +App::$strings["Size"] = "Tamaño"; +App::$strings["Last Modified"] = "Última modificación"; +App::$strings["Remove all files"] = "Eliminar todos los ficheros"; +App::$strings["Remove this file"] = "Eliminar este fichero"; +App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; +App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; +App::$strings["Could not create table."] = "No se puede crear la tabla."; +App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Verificación del sistema"; +App::$strings["Check again"] = "Verificar de nuevo"; +App::$strings["Database connection"] = "Conexión a la base de datos"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; +App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; +App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; +App::$strings["Database Port"] = "Puerto de la base de datos"; +App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; +App::$strings["Database Login Name"] = "Usuario de la base de datos"; +App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; +App::$strings["Database Name"] = "Nombre de la base de datos"; +App::$strings["Database Type"] = "Tipo de base de datos"; +App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; +App::$strings["Website URL"] = "Dirección del sitio web"; +App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; +App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; +App::$strings["Site settings"] = "Ajustes del sitio"; +App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; +App::$strings["PHP version"] = "Versión de PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor 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."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron."; +App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; +App::$strings["Command line PHP"] = "PHP en línea de comandos"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "No se puede comprobar la línea de comandos PHP, ya que shell_exec() está deshabilitado. Es necesario que esté activado."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; +App::$strings["PHP upload limits"] = "Límites PHP de subida"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; +App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; +App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; +App::$strings["PDO database PHP module"] = "Módulo PHP de la base de datos PDO "; +App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; +App::$strings["xml PHP module"] = "módulo PHP xml"; +App::$strings["zip PHP module"] = "Módulo zip PHP"; +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."; +App::$strings["exec"] = "ejecutable"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita un ejecutable pero o no se instaló o está deshabilitado en php.ini"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita shell_exec pero o no se instaló o está deshabilitado en php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; +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: PDO database PHP module required but not installed."] = "Error: se necesita el módulo PHP de la base de datos PDO, pero no 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: 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["Error: zip PHP module required but not installed."] = "Error: se requiere el módulo zip PHP pero no está instalado."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; +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."; +App::$strings["Please see install/INSTALL.txt for additional information."] = "Por favor, consulte install/INSTALL.txt para más información."; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Este software hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 compila las plantillas a PHP para acelerar la renderización."; +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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; +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 top level web folder"] = "Este software utiliza el directorio de almacenamiento para guardar los ficheros subidos. El servidor web debe tener acceso de escritura a este directorio en la carpeta de nivel superior"; +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."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus entradas públicas hagan referencia a imágenes en su propio servidor."; +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."] = "Si se tiene la certeza de que el certificado es válido y está firmado por una autoridad de confianza, comprobar para ver si hubo un error al instalar un certificado intermedio. Estos no son normalmente requeridos por los navegadores, pero son necesarios para las comunicaciones de servidor a servidor."; +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"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; +App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; +App::$strings["

What next?

"] = "

¿Qué sigue?

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; +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["Queue Statistics"] = "Estadísticas de la cola"; +App::$strings["Total Entries"] = "Total de entradas"; +App::$strings["Priority"] = "Prioridad"; +App::$strings["Destination URL"] = "Dirección de destino"; +App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; +App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; +App::$strings["Last known contact"] = "Último contacto conocido"; +App::$strings["Off"] = "Desactivado"; +App::$strings["On"] = "Activado"; +App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; +App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; +App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; +App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; +App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; +App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; +App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; +App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; +App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; +App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; +App::$strings["Item not found."] = "Elemento no encontrado."; +App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; +App::$strings["Plugin %s enabled."] = "Extensión %s activada."; +App::$strings["Disable"] = "Desactivar"; +App::$strings["Enable"] = "Activar"; +App::$strings["Administration"] = "Administración"; +App::$strings["Plugins"] = "Extensiones (plugins)"; +App::$strings["Toggle"] = "Cambiar"; +App::$strings["Settings"] = "Ajustes"; +App::$strings["Author: "] = "Autor:"; +App::$strings["Maintainer: "] = "Mantenedor:"; +App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; +App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; +App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; +App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; +App::$strings["Requires: "] = "Se requiere:"; +App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; +App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin"; +App::$strings["Custom repo name"] = "Nombre personalizado del repositorio"; +App::$strings["(optional)"] = "(opcional)"; +App::$strings["Download Plugin Repo"] = "Descargar el repositorio"; +App::$strings["Install new repo"] = "Instalar un nuevo repositorio"; +App::$strings["Install"] = "Instalar"; +App::$strings["Manage Repos"] = "Gestionar los repositorios"; +App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; +App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; +App::$strings["Switch branch"] = "Cambiar la rama"; +App::$strings["Remove"] = "Eliminar"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s cuenta bloqueada/desbloqueada", + 1 => "%s cuenta bloqueada/desbloqueada", +); +App::$strings["%s account deleted"] = array( + 0 => "%s cuentas eliminadas", + 1 => "%s cuentas eliminadas", +); +App::$strings["Account not found"] = "Cuenta no encontrada"; +App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; +App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; +App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; +App::$strings["Accounts"] = "Cuentas"; +App::$strings["select all"] = "seleccionar todo"; +App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; +App::$strings["Request date"] = "Fecha de solicitud"; +App::$strings["No registrations."] = "Sin registros."; +App::$strings["Approve"] = "Aprobar"; +App::$strings["Deny"] = "Rechazar"; +App::$strings["Block"] = "Bloquear"; +App::$strings["Unblock"] = "Desbloquear"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "Todos los canales"; +App::$strings["Register date"] = "Fecha de registro"; +App::$strings["Last login"] = "Último acceso"; +App::$strings["Expires"] = "Caduca"; +App::$strings["Service Class"] = "Clase de servicio"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; +App::$strings["Logs"] = "Informes"; +App::$strings["Clear"] = "Vaciar"; +App::$strings["Debugging"] = "Depuración"; +App::$strings["Log file"] = "Fichero de informe"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal."; +App::$strings["Log level"] = "Nivel de depuración"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s canales censurados/no censurados", + 1 => "%s canales censurados/no censurados", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s código permitido/no permitido al canal", + 1 => "%s código permitido/no permitido al canal", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canales eliminados", + 1 => "%s canales eliminados", +); +App::$strings["Channel not found"] = "Canal no encontrado"; +App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; +App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; +App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; +App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; +App::$strings["Channels"] = "Canales"; +App::$strings["Censor"] = "Censurar"; +App::$strings["Uncensor"] = "No censurar"; +App::$strings["Allow Code"] = "Permitir código"; +App::$strings["Disallow Code"] = "No permitir código"; +App::$strings["Channel"] = "Canal"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; +App::$strings["No themes found."] = "No se han encontrado temas."; +App::$strings["Screenshot"] = "Instantánea de pantalla"; +App::$strings["Themes"] = "Temas"; +App::$strings["[Experimental]"] = "[Experimental]"; +App::$strings["[Unsupported]"] = "[No soportado]"; +App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; +App::$strings["Default"] = "Predeterminado"; +App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; +App::$strings["mobile"] = "móvil"; +App::$strings["experimental"] = "experimental"; +App::$strings["unsupported"] = "no soportado"; +App::$strings["Yes - with approval"] = "Sí - con aprobación"; +App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; +App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; +App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; +App::$strings["Beginner/Basic"] = "Principiante / Básico"; +App::$strings["Novice - not skilled but willing to learn"] = "Novato: no cualificado, pero dispuesto a aprender"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio: bastante cómodo"; +App::$strings["Advanced - very comfortable"] = "Avanzado: muy cómodo"; +App::$strings["Expert - I can write computer code"] = "Experto: puedo escribir código informático"; +App::$strings["Wizard - I probably know more than you do"] = "Colaborador: probablemente sé más que tú"; +App::$strings["Site"] = "Sitio"; +App::$strings["Registration"] = "Registro"; +App::$strings["File upload"] = "Subir fichero"; +App::$strings["Policies"] = "Políticas"; +App::$strings["Advanced"] = "Avanzado"; +App::$strings["Site name"] = "Nombre del sitio"; +App::$strings["Site default technical skill level"] = "Nivel de habilidad técnica predeterminado del sitio"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica"; +App::$strings["Lock the technical skill level setting"] = "Bloquear el ajuste del nivel de habilidad técnica"; +App::$strings["Members can set their own technical comfort level by default"] = "Los miembros pueden configurar su nivel de comodidad técnica por defecto"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Se permite HTML/CSS/JS sin filtrar"; +App::$strings["Administrator Information"] = "Información del Administrador"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; +App::$strings["Site Information"] = "Información sobre el sitio"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; +App::$strings["System language"] = "Idioma del sistema"; +App::$strings["System theme"] = "Tema gráfico del sistema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema"; +App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como conexiones"; +App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; +App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; +App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; +App::$strings["Invitation only"] = "Solo con una invitación"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; +App::$strings["Minimum age"] = "Edad mínima"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; +App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; +App::$strings["Register text"] = "Texto del registro"; +App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; +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."] = "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; +App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; +App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; +App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; +App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; +App::$strings["Force publish"] = "Forzar la publicación"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; +App::$strings["Import Public Streams"] = "Importar contenido público"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas."; +App::$strings["Site only Public Streams"] = "Solo contenido público en este sitio"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado."; +App::$strings["Login on Homepage"] = "Iniciar sesión en la página personal"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; +App::$strings["Enable context help"] = "Habilitar la ayuda contextual"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda."; +App::$strings["Reply-to email address for system generated email."] = "Dirección de respuesta para el correo electrónico generado por el sistema."; +App::$strings["Sender (From) email address for system generated email."] = "Dirección del remitente (From) para el correo electrónico generado por el sistema."; +App::$strings["Name of email sender for system generated email."] = "Nombre del remitente del correo electrónico generado por el sistema."; +App::$strings["Directory Server URL"] = "URL del servidor de directorio"; +App::$strings["Default directory server"] = "Servidor de directorio predeterminado"; +App::$strings["Proxy user"] = "Usuario del proxy"; +App::$strings["Proxy URL"] = "Dirección del proxy"; +App::$strings["Network timeout"] = "Tiempo de espera de la red"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; +App::$strings["Delivery interval"] = "Intervalo de entrega"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; +App::$strings["Deliveries per process"] = "Intentos de envío por proceso"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5."; +App::$strings["Queue Threshold"] = "Umbral de la cola de espera"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas."; +App::$strings["Poll interval"] = "Intervalo máximo de tiempo entre dos mensajes sucesivos"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega."; +App::$strings["Path to ImageMagick convert program"] = "Ruta al programa de conversión de ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Permitir miniaturas SVG en el navegador de archivos"; +App::$strings["WARNING: SVG images may contain malicious code."] = "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso."; +App::$strings["Maximum Load Average"] = "Carga media máxima"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; +App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "No caduque ningún mensaje que tenga menos comentarios que este hace muchos días"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros"; +App::$strings["Create this page first. Default is %s/register"] = "Crear esta página primero. Por defecto es %s/register"; +App::$strings["Page to display after creating a new channel"] = "Página a mostrar después de la creación de un nuevo canal"; +App::$strings["Recommend: profiles, go, or settings"] = "Recomendar: perfiles, ir, o ajustes"; +App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; +App::$strings["Region or country"] = "Región o país"; +App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; +App::$strings["Field nickname"] = "Alias del campo"; +App::$strings["System name of field"] = "Nombre del campo en el sistema"; +App::$strings["Input type"] = "Tipo de entrada"; +App::$strings["Field Name"] = "Nombre del campo"; +App::$strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; +App::$strings["Help text"] = "Texto de ayuda"; +App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; +App::$strings["Save"] = "Guardar"; +App::$strings["Field definition not found"] = "Definición del campo no encontrada"; +App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; +App::$strings["Profile Fields"] = "Campos del perfil"; +App::$strings["Basic Profile Fields"] = "Campos básicos del perfil"; +App::$strings["Advanced Profile Fields"] = "Campos avanzados del perfil"; +App::$strings["(In addition to basic fields)"] = "(Además de los campos básicos)"; +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["Password changed for account %d."] = "Ha cambiado la contraseña para la cuenta %d."; +App::$strings["Account settings updated."] = "Se han actualizado los ajustes de la cuenta."; +App::$strings["Account not found."] = "No se ha encontrado la cuenta."; +App::$strings["Account Edit"] = "Editar la cuenta"; +App::$strings["New Password"] = "Nueva contraseña"; +App::$strings["New Password again"] = "Nueva contraseña otra vez"; +App::$strings["Technical skill level"] = "Nivel de habilidad técnica"; +App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los correos electrónicos)"; +App::$strings["Service class"] = "Clase de servicio"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: "; +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."] = "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita."; +App::$strings["Security"] = "Seguridad"; +App::$strings["Block public"] = "Bloquear páginas públicas"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP"; +App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; +App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; +App::$strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; +App::$strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios"; +App::$strings["Allow communications only from these channels"] = "Permitir la comunicación solo desde estos canales"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; +App::$strings["Block communications from these channels"] = "Bloquear la comunicación desde estos canales"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Permitir contenido HTML sin filtrar sólo desde estos dominios "; +App::$strings["One site per line. By default embedded content is filtered."] = "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada."; +App::$strings["Block embedded HTML from these domains"] = "Bloquear contenido con HTML incorporado desde estos dominios"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; +App::$strings["__ctx:acl__ Profile"] = "Perfil"; +App::$strings["Comment approved"] = "El comentario ha sido aprobado"; +App::$strings["Comment deleted"] = "Se ha eliminado el comentario"; +App::$strings["Permission Name is required."] = "Se requiere el nombre de la autorización"; +App::$strings["Permission category saved."] = "Se ha guardado la categoría del permiso."; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilice este formulario para crear reglas de permiso para varias clases de personas o conexiones."; +App::$strings["Permission Categories"] = "Tipos de permisos"; +App::$strings["Permission Name"] = "Nombre de la autorización"; +App::$strings["My Settings"] = "Mis ajustes"; +App::$strings["inherited"] = "heredado"; +App::$strings["Individual Permissions"] = "Permisos individuales"; +App::$strings["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."] = "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í."; +App::$strings["Friends"] = "Amigos/as"; +App::$strings["Settings updated."] = "Ajustes actualizados."; +App::$strings["Nobody except yourself"] = "Nadie excepto usted"; +App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; +App::$strings["Approved connections"] = "Conexiones aprobadas"; +App::$strings["Any connections"] = "Cualquier conexión"; +App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; +App::$strings["Anybody in this network"] = "Cualquiera en esta red"; +App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; +App::$strings["Anybody on the internet"] = "Cualquiera en internet"; +App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; +App::$strings["or"] = "o"; +App::$strings["Your channel address is"] = "Su dirección de canal es"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "Sus archivos y fotos son accesibles a través de WebDAV en "; +App::$strings["Channel Settings"] = "Ajustes del canal"; +App::$strings["Basic Settings"] = "Configuración básica"; +App::$strings["Full Name:"] = "Nombre completo:"; +App::$strings["Email Address:"] = "Dirección de correo electrónico:"; +App::$strings["Your Timezone:"] = "Su huso horario:"; +App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; +App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; +App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; +App::$strings["Adult Content"] = "Contenido solo para adultos"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; +App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; +App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; +App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; +App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; +App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; +App::$strings["Channel Permission Limits"] = "Límites de los permisos del canal"; +App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; +App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; +App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; +App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; +App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; +App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; +App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; +App::$strings["Default Privacy Group"] = "Grupo de canales predeterminado"; +App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; +App::$strings["Profile to assign new connections"] = "Perfil para asignar a las nuevas conexiones"; +App::$strings["Default Permissions Group"] = "Grupo de permisos predeterminados"; +App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; +App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; +App::$strings["Notification Settings"] = "Configuración de las notificaciones"; +App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; +App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; +App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; +App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; +App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; +App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; +App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; +App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; +App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; +App::$strings["You receive a private message"] = "Reciba un mensaje privado"; +App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; +App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; +App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; +App::$strings["Someone likes your post/comment"] = "Alguien muestre agrado por su entrada o comentario"; +App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; +App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; +App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; +App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; +App::$strings["Recommended"] = "Recomendado"; +App::$strings["Upcoming events"] = "Próximos eventos"; +App::$strings["Events today"] = "Eventos de hoy"; +App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; +App::$strings["Not available in all themes"] = "No disponible en todos los temas"; +App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; +App::$strings["System info messages"] = "Mensajes de información del sistema"; +App::$strings["System critical alerts"] = "Alertas críticas del sistema"; +App::$strings["New connections"] = "Nuevas conexiones"; +App::$strings["System Registrations"] = "Registros del sistema"; +App::$strings["Unseen shared files"] = "Ficheros compartidos no vistos"; +App::$strings["Unseen public activity"] = "Actividad pública no vista"; +App::$strings["Unseen likes and dislikes"] = "Los \"me gusta\" y \"no me gusta\" no vistos"; +App::$strings["Email notification hub (hostname)"] = "Email de notificación del hub (nombre del host)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostrar nuevos mensajes en el muro, mensajes privados y conexiones en Avisos"; +App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; +App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; +App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; +App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; +App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; +App::$strings["Default file upload folder"] = "Carpeta por defecto de los ficheros subidos"; +App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; +App::$strings["Remove this channel."] = "Eliminar este canal."; +App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; +App::$strings["Start calendar week on Monday"] = "Comenzar el calendario semanal por el lunes"; +App::$strings["Additional Features"] = "Funcionalidades"; +App::$strings["Your technical skill level"] = "Su nivel de habilidad técnica"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad"; +App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; +App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; +App::$strings["Token saved."] = "Token salvado."; +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 private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; +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:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; +App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; +App::$strings["Login Name"] = "Nombre de inicio de sesión"; +App::$strings["Login Password"] = "Contraseña de inicio de sesión"; +App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; +App::$strings["Their Settings"] = "Sus ajustes"; +App::$strings["Name and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["Add OAuth2 application"] = "Añadir aplicación OAuth2"; +App::$strings["Name of application"] = "Nombre de la aplicación"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; +App::$strings["Redirect"] = "Redirigir"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; +App::$strings["Grant Types"] = "Tipos de permisos"; +App::$strings["leave blank unless your application sepcifically requires this"] = "Dejar en blanco a menos que su aplicación lo requiera específicamente"; +App::$strings["Authorization scope"] = "Alcance de la autorización"; +App::$strings["OAuth2 Application not found."] = "No se ha encontrado la aplicación OAuth2."; +App::$strings["Add application"] = "Añadir aplicación"; +App::$strings["Connected OAuth2 Apps"] = "Aplicaciones OAuth2 conectadas"; +App::$strings["Client key starts with"] = "La \"client key\" empieza por"; +App::$strings["No name"] = "Sin nombre"; +App::$strings["Remove authorization"] = "Eliminar autorización"; +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."; +App::$strings["Technical skill level updated"] = "Se ha actualizado el nivel de habilidad técnica"; +App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; +App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; +App::$strings["Password changed."] = "Contraseña cambiada."; +App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; +App::$strings["Account Settings"] = "Configuración de la cuenta"; +App::$strings["Current Password"] = "Contraseña actual"; +App::$strings["Enter New Password"] = "Escribir una nueva contraseña"; +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["Remove Account"] = "Eliminar cuenta"; +App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +App::$strings["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad."; +App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; +App::$strings["Default maximum affinity level"] = "Nivel máximo de afinidad por defecto"; +App::$strings["0-99 default 99"] = "0-99 por defecto 99"; +App::$strings["Default minimum affinity level"] = "Nivel mínimo de afinidad por defecto"; +App::$strings["0-99 - default 0"] = "0-99 - por defecto 0"; +App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad"; +App::$strings["Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Guarde o envíe los cambios a cualquier panel antes de abrir otro."; +App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; +App::$strings["Display Settings"] = "Ajustes de visualización"; +App::$strings["Theme Settings"] = "Ajustes del tema"; +App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; +App::$strings["Content Settings"] = "Ajustes del contenido"; +App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; +App::$strings["Select scheme"] = "Elegir un esquema"; +App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; +App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; +App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; +App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; +App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; +App::$strings["Provide channel menu in navigation bar"] = "Proporcionar un menú de canales en la barra de navegación"; +App::$strings["Default: channel menu located in app menu"] = "Predeterminado: menú de canales ubicado en el menú de aplicaciones"; +App::$strings["Manual conversation updates"] = "Actualizaciones manuales de la conversación"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla"; +App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; +App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; +App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; +App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; +App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; +App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; +App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; +App::$strings["Name is required"] = "El nombre es obligatorio"; +App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Icon url"] = "Dirección del icono"; +App::$strings["Optional"] = "Opcional"; +App::$strings["Application not found."] = "Aplicación no encontrada."; +App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["View Photo"] = "Ver foto"; +App::$strings["Edit Album"] = "Editar álbum"; +App::$strings["Upload"] = "Subir"; +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["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["Permissions"] = "Permisos"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Connection added."] = "Se ha incorporado una conexión."; +App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +App::$strings["Import completed."] = "Importación completada."; +App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +App::$strings["Import Channel"] = "Importar canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; +App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; +App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +App::$strings["Move this channel (disable all previous locations)"] = "Mover este canal (desactivar todas las ubicaciones anteriores)"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importar unos meses de mensajes si es posible (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["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["Permissions denied."] = "Permisos denegados."; +App::$strings["Import"] = "Importar"; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Security Code:"] = "Vuelva a su aplicación e introduzca 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["Item not available."] = "Elemento no disponible"; +App::$strings["Edit Block"] = "Modificar este bloque"; +App::$strings["vcard"] = "vcard"; +App::$strings["Apps"] = "Aplicaciones (apps)"; +App::$strings["Manage apps"] = "Gestionar las aplicaciones"; +App::$strings["Create new app"] = "Crear una nueva aplicación"; +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["Active"] = "Activo/a"; +App::$strings["Blocked"] = "Bloqueadas"; +App::$strings["Ignored"] = "Ignoradas"; +App::$strings["Hidden"] = "Ocultas"; +App::$strings["Archived/Unreachable"] = "Archivadas o inaccesibles"; +App::$strings["New"] = "Nuevas"; +App::$strings["All"] = "Todos/as"; +App::$strings["Active Connections"] = "Conexiones activas"; +App::$strings["Show active connections"] = "Mostrar las conexiones activas"; +App::$strings["New Connections"] = "Nuevas conexiones"; +App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; +App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; +App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; +App::$strings["Only show archived/unreachable connections"] = "Mostrar solo las conexiones archivadas o no localizables"; +App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; +App::$strings["Show all connections"] = "Mostrar todas las conexiones"; +App::$strings["Pending approval"] = "Pendiente de aprobación"; +App::$strings["Archived"] = "Archivadas"; +App::$strings["Not connected at this location"] = "No está conectado/a en esta ubicación"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Editar conexión"; +App::$strings["Delete connection"] = "Eliminar conexión"; +App::$strings["Channel address"] = "Dirección del canal"; +App::$strings["Network"] = "Red"; +App::$strings["Call"] = "Llamar"; +App::$strings["Status"] = "Estado"; +App::$strings["Connected"] = "Conectado/a"; +App::$strings["Approve connection"] = "Aprobar esta conexión"; +App::$strings["Ignore connection"] = "Ignorar esta conexión"; +App::$strings["Ignore"] = "Ignorar"; +App::$strings["Recent activity"] = "Actividad reciente"; +App::$strings["Connections"] = "Conexiones"; +App::$strings["Search your connections"] = "Buscar sus conexiones"; +App::$strings["Connections search"] = "Buscar conexiones"; +App::$strings["Find"] = "Encontrar"; +App::$strings["item"] = "elemento"; +App::$strings["Source of Item"] = "Origen del elemento"; +App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["My Bookmarks"] = "Mis marcadores"; +App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +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"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; +App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; +App::$strings["Album not found."] = "Álbum no encontrado."; +App::$strings["Delete Album"] = "Borrar álbum"; +App::$strings["Delete Photo"] = "Borrar foto"; +App::$strings["No photos selected"] = "No hay fotos seleccionadas"; +App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; +App::$strings["Upload Photos"] = "Subir fotos"; +App::$strings["Enter an album name"] = "Introducir un nombre de álbum"; +App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; +App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida"; +App::$strings["Description (optional)"] = "Descripción (opcional)"; +App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; +App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; +App::$strings["Add Photos"] = "Añadir fotos"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +App::$strings["Photo not available"] = "Foto no disponible"; +App::$strings["Use as profile photo"] = "Usar como foto del perfil"; +App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; +App::$strings["Private Photo"] = "Foto privada"; +App::$strings["View Full Size"] = "Ver tamaño completo"; +App::$strings["Edit photo"] = "Editar foto"; +App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; +App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; +App::$strings["Move photo to album"] = "Mover la foto a un álbum"; +App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; +App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; +App::$strings["Add a Tag"] = "Añadir una etiqueta"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; +App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; +App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; +App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +App::$strings["Please wait"] = "Espere por favor"; +App::$strings["This is you"] = "Este es usted"; +App::$strings["Comment"] = "Comentar"; +App::$strings["__ctx:title__ Likes"] = "Me gusta"; +App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; +App::$strings["__ctx:title__ Agree"] = "De acuerdo"; +App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; +App::$strings["__ctx:title__ Abstain"] = "Abstención"; +App::$strings["__ctx:title__ Attending"] = "Participaré"; +App::$strings["__ctx:title__ Not attending"] = "No participaré"; +App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; +App::$strings["View all"] = "Ver todo"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Me gusta", + 1 => "Me gusta", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "No me gusta", + 1 => "No me gusta", +); +App::$strings["Photo Tools"] = "Gestión de las fotos"; +App::$strings["In This Photo:"] = "En esta foto:"; +App::$strings["Map"] = "Mapa"; +App::$strings["__ctx:noun__ Likes"] = "Me gusta"; +App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; +App::$strings["Close"] = "Cerrar"; +App::$strings["Recent Photos"] = "Fotos recientes"; +App::$strings["Profile Unavailable."] = "Perfil no disponible"; +App::$strings["Not found"] = "No encontrado"; +App::$strings["Invalid channel"] = "Canal no válido"; +App::$strings["Error retrieving wiki"] = "Error al recuperar el wiki"; +App::$strings["Error creating zip file export folder"] = "Error al crear el fichero comprimido zip de la carpeta a exportar"; +App::$strings["Error downloading wiki: "] = "Error al descargar el wiki: "; +App::$strings["Wikis"] = "Wikis"; +App::$strings["Download"] = "Descargar"; +App::$strings["Create New"] = "Crear"; +App::$strings["Wiki name"] = "Nombre del wiki"; +App::$strings["Content type"] = "Tipo de contenido"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Texto"; +App::$strings["Type"] = "Tipo"; +App::$strings["Any type"] = "Cualquier tipo"; +App::$strings["Lock content type"] = "Tipo de contenido bloqueado"; +App::$strings["Create a status post for this wiki"] = "Crear un mensaje de estado para este wiki"; +App::$strings["Edit Wiki Name"] = "Editar el nombre del wiki"; +App::$strings["Wiki not found"] = "Wiki no encontrado"; +App::$strings["Rename page"] = "Renombrar la página"; +App::$strings["Error retrieving page content"] = "Error al recuperar el contenido de la página"; +App::$strings["New page"] = "Nueva página"; +App::$strings["Revision Comparison"] = "Comparación de revisiones"; +App::$strings["Revert"] = "Revertir"; +App::$strings["Short description of your changes (optional)"] = "Breve descripción de sus cambios (opcional)"; +App::$strings["Source"] = "Fuente"; +App::$strings["New page name"] = "Nombre de la nueva página"; +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["Error creating wiki. Invalid name."] = "Error al crear el wiki: el nombre no es válido."; +App::$strings["A wiki with this name already exists."] = "Ya hay un wiki con este nombre."; +App::$strings["Wiki created, but error creating Home page."] = "Se ha creado el wiki, pero se ha producido un error al crear la página de inicio."; +App::$strings["Error creating wiki"] = "Error al crear el wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Error al actualizar el wiki. Nombre no válido."; +App::$strings["Error updating wiki"] = "Error al actualizar el wiki"; +App::$strings["Wiki delete permission denied."] = "Se ha denegado el permiso para eliminar el wiki."; +App::$strings["Error deleting wiki"] = "Se ha producido un error al eliminar el wiki"; +App::$strings["New page created"] = "Se ha creado la nueva página"; +App::$strings["Cannot delete Home"] = "No se puede eliminar la página principal"; +App::$strings["Current Revision"] = "Revisión actual"; +App::$strings["Selected Revision"] = "Revisión seleccionada"; +App::$strings["You must be authenticated."] = "Debe estar autenticado."; +App::$strings["toggle full screen mode"] = "cambiar al modo de pantalla completa"; +App::$strings["Layout updated."] = "Plantilla actualizada."; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +App::$strings["(modified)"] = "(modificado)"; +App::$strings["Reset"] = "Reiniciar"; +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["Edit another layout"] = "Editar otro diseño"; +App::$strings["System layout"] = "Diseño del sistema"; +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["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; +App::$strings["Profile Photos"] = "Fotos del perfil"; +App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; +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["Unable to process image"] = "No ha sido posible procesar la imagen"; +App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; +App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; +App::$strings["Photo not available."] = "Foto no disponible."; +App::$strings["Upload File:"] = "Subir fichero:"; +App::$strings["Select a profile:"] = "Seleccionar un perfil:"; +App::$strings["Use Photo for Profile"] = "Usar la fotografía para el perfil"; +App::$strings["Change Profile Photo"] = "Cambiar la foto del perfil"; +App::$strings["Use"] = "Usar"; +App::$strings["Use a photo from your albums"] = "Usar una foto de sus álbumes"; +App::$strings["Select existing photo"] = "Seleccionar una foto existente"; +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["Away"] = "Ausente"; +App::$strings["Online"] = "Conectado/a"; +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["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; +App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; +App::$strings["Your comment is awaiting approval."] = "Su comentario está pendiente de aprobación."; +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["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["requires approval"] = "requiere aprobación"; +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["shared a file with you"] = "compartió un archivo con usted"; +App::$strings["Invalid item."] = "Elemento no válido."; +App::$strings["Page not found."] = "Página no encontrada."; +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["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."; +App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +App::$strings["is now connected to"] = "ahora está conectado/a"; +App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; +App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; +App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; +App::$strings["View Profile"] = "Ver el perfil"; +App::$strings["View %s's profile"] = "Ver el perfil de %s"; +App::$strings["Refresh Permissions"] = "Recargar los permisos"; +App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; +App::$strings["Refresh Photo"] = "Actualizar la foto"; +App::$strings["Fetch updated photo"] = "Obtener una foto actualizada"; +App::$strings["Recent Activity"] = "Actividad reciente"; +App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; +App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; +App::$strings["Unignore"] = "Dejar de ignorar"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; +App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; +App::$strings["Unarchive"] = "Desarchivar"; +App::$strings["Archive"] = "Archivar"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; +App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; +App::$strings["Unhide"] = "Mostrar"; +App::$strings["Hide"] = "Ocultar"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; +App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; +App::$strings["Delete this connection"] = "Eliminar esta conexión"; +App::$strings["Fetch Vcard"] = "Obtener una vcard"; +App::$strings["Fetch electronic calling card for this connection"] = "Obtener una tarjeta de llamada electrónica para esta conexión"; +App::$strings["Open Individual Permissions section by default"] = "Abrir la sección de permisos individuales por defecto"; +App::$strings["Affinity"] = "Afinidad"; +App::$strings["Open Set Affinity section by default"] = "Abrir por defecto la sección para definir la afinidad"; +App::$strings["Me"] = "Yo"; +App::$strings["Family"] = "Familia"; +App::$strings["Acquaintances"] = "Conocidos/as"; +App::$strings["Filter"] = "Filtrar"; +App::$strings["Open Custom Filter section by default"] = "Abrir por defecto la sección de personalización de filtros"; +App::$strings["Approve this connection"] = "Aprobar esta conexión"; +App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; +App::$strings["Set Affinity"] = "Ajustar la afinidad"; +App::$strings["Set Profile"] = "Ajustar el perfil"; +App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; +App::$strings["This connection is unreachable from this location."] = "No se puede acceder a la conexión desde este sitio."; +App::$strings["This connection may be unreachable from other channel locations."] = "Esta conexión puede ser inaccesible desde otras ubicaciones del canal."; +App::$strings["Location independence is not supported by their network."] = "La independencia de ubicación no es compatible con su red."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red."; +App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; +App::$strings["Connection: %s"] = "Conexión: %s"; +App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; +App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; +App::$strings["Permission role"] = "Rol de acceso"; +App::$strings["Loading"] = "Cargando"; +App::$strings["Add permission role"] = "Añadir un rol de acceso"; +App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; +App::$strings["Available locations:"] = "Ubicaciones disponibles:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; +App::$strings["Connection Tools"] = "Gestión de las conexiones"; +App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +App::$strings["Rating"] = "Valoración"; +App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; +App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; +App::$strings["Custom Filter"] = "Filtro personalizado"; +App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; +App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; +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["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["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["Details"] = "Detalles"; +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["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["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Files"] = "Ficheros"; +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["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["Layouts"] = "Plantillas"; +App::$strings["Help"] = "Ayuda"; +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["Please refresh page"] = "Por favor, recargue la página"; +App::$strings["Unknown error"] = "Error desconocido"; +App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; +App::$strings["Email Verification Required"] = "Verificación obligatoria del correo electrónico"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje."; +App::$strings["Resend Email"] = "Reenvío de correo electrónico"; +App::$strings["Validation token"] = "Token de validación"; +App::$strings["Post not found."] = "Mensaje no encontrado."; +App::$strings["post"] = "la entrada"; +App::$strings["comment"] = "el comentario"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; +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["If enabled, connection requests will be approved without your interaction"] = "Si está habilitado, las solicitudes de conexión serán aprobadas sin su intervención."; +App::$strings["Automatic approval settings"] = "Opciones de autorización automática"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Es posible que se hayan preestablecido o bloqueado algunos permisos individuales según el tipo de canal y la configuración de privacidad."; +App::$strings["Unknown App"] = "Aplicación desconocida"; +App::$strings["Authorize"] = "Autorizar"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "¿Autoriza a la aplicación %s a acceder a los datos de su canal?"; +App::$strings["Allow"] = "Permitir"; +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."; +App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; +App::$strings["Create a group of channels."] = "Crear un grupo de canales."; +App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; +App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; +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["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["Gender"] = "Género"; +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["Relationship"] = "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["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["Homepage URL"] = "Dirección de la página personal"; +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["Communications"] = "Comunicaciones"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["This page is available only to site members"] = "Esta página está disponible sólo para los miembros del sitio"; +App::$strings["Welcome"] = "Bienvenido/a"; +App::$strings["What would you like to do?"] = "¿Qué le gustaría hacer?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro."; +App::$strings["Upload a profile photo"] = "Subir una foto de perfil"; +App::$strings["Upload a cover photo"] = "Subir una foto de portada del perfil"; +App::$strings["Edit your default profile"] = "Editar su perfil por defecto"; +App::$strings["View friend suggestions"] = "Ver sugerencias de amistad"; +App::$strings["View the channel directory"] = "Ver el directorio de canales"; +App::$strings["View/edit your channel settings"] = "Ver o modificar los ajustes de su canal"; +App::$strings["View the site or project documentation"] = "Ver el sitio o la documentación del proyecto"; +App::$strings["Visit your channel homepage"] = "Visitar la página principal de su canal"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Ver el \"stream\" público. Advertencia: este contenido no está moderado"; +App::$strings["Page link"] = "Enlace de la página"; +App::$strings["Edit Webpage"] = "Editar la página web"; +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 solicitudes de conexión"; +App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Cards"] = "Fichas"; +App::$strings["Add Card"] = "Añadir una ficha"; +App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +App::$strings["About this site"] = "Acerca de este sitio"; +App::$strings["Site Name"] = "Nombre del sitio"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["Terms of Service"] = "Términos del servicio"; +App::$strings["Software and Project information"] = "Información sobre el software y el proyecto"; +App::$strings["This site is powered by \$Projectname"] = "Este sitio funciona con \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Servicios federados y descentralizados de identidad y redes proporcionados por Zot"; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Project homepage"] = "Página principal del proyecto"; +App::$strings["Developer homepage"] = "Página principal del desarrollador"; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; +App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; +App::$strings["Import selected"] = "Importar elementos seleccionados"; +App::$strings["Export Webpage Elements"] = "Exportar elementos de una página web"; +App::$strings["Export selected"] = "Exportar los elementos seleccionados"; +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["Invalid file type."] = "Tipo de fichero no válido."; +App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido zip"; +App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; +App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; +App::$strings["Import complete."] = "Importación completada."; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Los cambios en el nombre de un canal no está permitida hasta pasadas 48 horas desde el cambio de contraseña de la cuenta."; +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["Change channel nickname/address"] = "Cambiar el alias o la dirección del canal"; +App::$strings["Any/all connections on other networks will be lost!"] = "¡Cualquier/todas las conexiones en otras redes se perderán!"; +App::$strings["New channel address"] = "Nueva dirección del canal"; +App::$strings["Rename Channel"] = "Renombrar el canal"; +App::$strings["Item is not editable"] = "El elemento no es editable"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Invalid message"] = "Mensaje no válido"; +App::$strings["no results"] = "sin resultados"; +App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; +App::$strings["queued"] = "encolado"; +App::$strings["posted"] = "enviado"; +App::$strings["accepted for delivery"] = "aceptado para el envío"; +App::$strings["updated"] = "actualizado"; +App::$strings["update ignored"] = "actualización ignorada"; +App::$strings["permission denied"] = "permiso denegado"; +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"] = "Opciones"; +App::$strings["Redeliver"] = "Volver a enviar"; +App::$strings["Failed to create source. No channel selected."] = "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal."; +App::$strings["Source created."] = "Fuente creada."; +App::$strings["Source updated."] = "Fuente actualizada."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; +App::$strings["New Source"] = "Nueva fuente"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; +App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; +App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; +App::$strings["Channel Name"] = "Nombre del canal"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)"; +App::$strings["Source not found."] = "Fuente no encontrada"; +App::$strings["Edit Source"] = "Editar fuente"; +App::$strings["Delete Source"] = "Eliminar fuente"; +App::$strings["Source removed"] = "Fuente eliminada"; +App::$strings["Unable to remove source."] = "No se puede eliminar la fuente."; +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["%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["No default suggestions were found."] = "No se encontraron sugerencias por defecto."; +App::$strings["%d rating"] = array( + 0 => "%d valoración", + 1 => "%d valoraciones", +); +App::$strings["Gender: "] = "Género:"; +App::$strings["Status: "] = "Estado:"; +App::$strings["Homepage: "] = "Página personal:"; +App::$strings["Age:"] = "Edad:"; +App::$strings["Location:"] = "Ubicación:"; +App::$strings["Description:"] = "Descripción:"; +App::$strings["Hometown:"] = "Lugar de nacimiento:"; +App::$strings["About:"] = "Sobre mí:"; +App::$strings["Connect"] = "Conectar"; +App::$strings["Public Forum:"] = "Foro público:"; +App::$strings["Keywords: "] = "Palabras clave:"; +App::$strings["Don't suggest"] = "No sugerir:"; +App::$strings["Common connections (estimated):"] = "Conexiones comunes (estimadas): "; +App::$strings["Global Directory"] = "Directorio global:"; +App::$strings["Local Directory"] = "Directorio local:"; +App::$strings["Finding:"] = "Encontrar:"; +App::$strings["Channel Suggestions"] = "Sugerencias de canales"; +App::$strings["next page"] = "siguiente página"; +App::$strings["previous page"] = "página anterior"; +App::$strings["Sort options"] = "Ordenar opciones"; +App::$strings["Alphabetic"] = "Alfabético"; +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["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["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; +App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["Unable to lookup recipient."] = "No se puede asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "No se puede establecer la comunicación 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"] = "mensaje"; +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["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["Rate"] = "Valorar"; +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["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; +App::$strings["Save Bookmark"] = "Guardar marcador"; +App::$strings["URL of bookmark"] = "Dirección del marcador"; +App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; +App::$strings["Enter a folder name"] = "Escriba un nombre de carpeta"; +App::$strings["or select an existing folder (doubleclick)"] = "o seleccione una (con un doble click)"; +App::$strings["Save to Folder"] = "Guardar en carpeta"; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; +App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; +App::$strings["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; +App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; +App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; +App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; +App::$strings["Registration on this hub is by approval only."] = "El registro en este hub está sometido a aprobación previa."; +App::$strings["Register at another affiliated hub."] = "Registrarse en otro hub afiliado."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; +App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "Tengo más de %s años de edad y acepto los %s de este sitio web"; +App::$strings["Your email address"] = "Su dirección de correo electrónico"; +App::$strings["Choose a password"] = "Elija una contraseña"; +App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; +App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; +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 requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; +App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; +App::$strings["female"] = "mujer"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["male"] = "hombre"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["cover photo"] = "Imagen de portada del perfil"; +App::$strings["Change Cover Photo"] = "Cambiar la foto de portada del perfil"; +App::$strings["Documentation Search"] = "Búsqueda de Documentación"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Administrators"] = "Administradores"; +App::$strings["Developers"] = "Desarrolladores"; +App::$strings["Tutorials"] = "Tutoriales"; +App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; +App::$strings["Contents"] = "Contenidos"; +App::$strings["Article"] = "Artículo"; +App::$strings["Item has been removed."] = "Se ha eliminado el elemento."; +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["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["Invalid channel."] = "El canal no es válido."; +App::$strings["network"] = "red"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["Permission Denied."] = "Permiso denegado"; +App::$strings["File not found."] = "Fichero no encontrado."; +App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; +App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; +App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; +App::$strings["Return to file list"] = "Volver a la lista de ficheros"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; +App::$strings["Share this file"] = "Compartir este fichero"; +App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; +App::$strings["Show in your contacts shared folder"] = "Mostrar en la carpeta compartida con sus contactos"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["View Common Connections"] = "Ver las conexiones comunes"; +App::$strings["Email verification resent"] = "Reenvío del email de verificación"; +App::$strings["Unable to resend email verification message."] = "No se puede reenviar el mensaje de verificación por correo electrónico."; +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["Blocked accounts"] = "Cuentas bloqueadas"; +App::$strings["Expired accounts"] = "Cuentas caducadas"; +App::$strings["Expiring accounts"] = "Cuentas que caducan"; +App::$strings["Clones"] = "Clones"; +App::$strings["Message queues"] = "Mensajes en cola"; +App::$strings["Your software should be updated"] = "Debe actualizar su software"; +App::$strings["Summary"] = "Sumario"; +App::$strings["Registered accounts"] = "Cuentas registradas"; +App::$strings["Pending registrations"] = "Registros pendientes"; +App::$strings["Registered channels"] = "Canales registrados"; +App::$strings["Active plugins"] = "Extensiones (plugins) activas"; +App::$strings["Version"] = "Versión"; +App::$strings["Repository version (master)"] = "Versión del repositorio (master)"; +App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; +App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; +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["Edit Card"] = "Editar la ficha"; +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["Mark all seen"] = "Marcar todo como visto"; +App::$strings["0. Beginner/Basic"] = "0. Principiante/Básico"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novato: no cualificado, pero dispuesto a aprender"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermedio - algo cómodo"; +App::$strings["3. Advanced - very comfortable"] = "3. Avanzado - muy cómodo"; +App::$strings["4. Expert - I can write computer code"] = "4. Experto - Puedo escribir código informático"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Colaborador - probablemente sé más que tú"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Report Bug"] = "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["Activity"] = "Actividad"; +App::$strings["Wiki"] = "Wiki"; +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["Language"] = "Idioma"; +App::$strings["Post"] = "Publicación"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Purchase"] = "Comprar"; +App::$strings["Undelete"] = "Recuperar"; +App::$strings["Add to app-tray"] = "Añadir a la bandeja de aplicaciones"; +App::$strings["Remove from app-tray"] = "Quitar de la bandeja de aplicaciones"; +App::$strings["Pin to navbar"] = "Fijar en la barra de navegación"; +App::$strings["Unpin from navbar"] = "Quitar de la barra de navegación"; +App::$strings["__ctx:permcat__ default"] = "por defecto"; +App::$strings["__ctx:permcat__ follower"] = "seguidor"; +App::$strings["__ctx:permcat__ contributor"] = "contribuidor"; +App::$strings["__ctx:permcat__ publisher"] = "editor"; +App::$strings["(No Title)"] = "(Sin título)"; +App::$strings["Wiki page create failed."] = "Se ha producido un error en la creación de la página wiki."; +App::$strings["Wiki not found."] = "No se ha encontrado el wiki."; +App::$strings["Destination name already exists"] = "El nombre de destino ya existe"; +App::$strings["Page not found"] = "No se ha encontrado la página"; +App::$strings["Error reading page content"] = "Se ha producido un error al leer el contenido de la página"; +App::$strings["Error reading wiki"] = "Se ha producido un error al leer el wiki"; +App::$strings["Page update failed."] = "Se ha producido un error al actualizar la página."; +App::$strings["Nothing deleted"] = "No se ha eliminado nada"; +App::$strings["Compare: object not found."] = "No se ha encontrado un objeto para comparar."; +App::$strings["Page updated"] = "Se ha actualizado la página"; +App::$strings["Untitled"] = "Sin título"; +App::$strings["Wiki resource_id required for git commit"] = "Se necesita Wiki resource_id para el git commit"; +App::$strings["__ctx:wiki_history__ Message"] = "Mensaje"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +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["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."; +App::$strings["Room not found."] = "Sala no encontrada."; +App::$strings["Room is full"] = "La sala está llena."; +App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Gracias,"; +App::$strings["%s Administrator"] = "%s Administrador"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Este email ha sido enviado por %1\$s a %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Para dejar de recibir estos mensajes, por favor, ajuste su %s"; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Aviso] Nuevo correo recibido en %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s le ha enviado un nuevo mensaje privado en %2\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; +App::$strings["a private message"] = "un mensaje privado"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; +App::$strings["commented on"] = "ha comentado sobre "; +App::$strings["liked"] = "ha gustado de "; +App::$strings["disliked"] = "no ha gustado de "; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s%2\$s [zrl=%3\$s ]un %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s[zrl=%3\$s]%5\$s de %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]su %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Comentario moderado en la conversación #%1\$d por %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sha comentado un elemento/conversación que ha estado siguiendo."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; +App::$strings["Please visit %s to approve or reject this comment."] = "Por favor, visite %s para aprobar o rechazar este comentario."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "A %1\$sle ha gustado [zrl=%2\$s]su %3\$s [/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] \"Me gusta\" de %2\$s en la conversación #%1\$d"; +App::$strings["%1\$s liked an item/conversation you created."] = "A %1\$s le ha gustado un elemento o conversación que ha creado usted."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha publicado en su muro en %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$sha publicado en [zrl=%2\$s]su muro[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Aviso] %s le ha etiquetado"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sle ha etiquetado en %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]le ha etiquetado[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Aviso] %1\$s le ha dado un toque"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$sle ha dado un toque en %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s] le ha dado un toque[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Aviso] %s ha etiquetado su entrada"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$sha etiquetado su entrada en %2\$s"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s ha etiquetado [zrl=%2\$s]su entrada[/zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Aviso] Ha recibido una solicitud de conexión"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Ha recibido una nueva solicitud de conexión de '%1\$s' en %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Ha recibido [zrl=%1\$s]una nueva solicitud de conexión[/zrl] de %2\$s."; +App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Aviso] Ha recibido una sugerencia de conexión"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Ha recibido una sugerencia de amistad de '%1\$s' en %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Ha recibido [zrl=%1\$s]una sugerencia de amistad[/zrl] para %2\$s de %3\$s."; +App::$strings["Name:"] = "Nombre:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname: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["edited a post dated %s"] = "ha editado una entrada fechada el %s"; +App::$strings["edited a comment dated %s"] = "ha editado un comentario fechado el %s"; +App::$strings["Wiki updated successfully"] = "El wiki se ha actualizado con éxito"; +App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito los ficheros del wiki"; +App::$strings["Update Error at %s"] = "Error de actualización en %s"; +App::$strings["Update %s failed. See error logs."] = "La actualización %s ha fallado. Mire el informe de errores."; +App::$strings["Private Message"] = "Mensaje Privado"; +App::$strings["Select"] = "Seleccionar"; +App::$strings["I will attend"] = "Participaré"; +App::$strings["I will not attend"] = "No participaré"; +App::$strings["I might attend"] = "Quizá participe"; +App::$strings["I agree"] = "Estoy de acuerdo"; +App::$strings["I disagree"] = "No estoy de acuerdo"; +App::$strings["I abstain"] = "Me abstengo"; +App::$strings["Add Star"] = "Destacar añadiendo una estrella"; +App::$strings["Remove Star"] = "Eliminar estrella"; +App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; +App::$strings["starred"] = "preferidas"; +App::$strings["Message signature validated"] = "Firma de mensaje validada"; +App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; +App::$strings["Add Tag"] = "Añadir etiqueta"; +App::$strings["like"] = "me gusta"; +App::$strings["dislike"] = "no me gusta"; +App::$strings["Share This"] = "Compartir esto"; +App::$strings["share"] = "compartir"; +App::$strings["Delivery Report"] = "Informe de transmisión"; +App::$strings["%d comment"] = array( + 0 => "%d comentario", + 1 => "%d comentarios", +); +App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "mediante"; +App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["from %s"] = "desde %s"; +App::$strings["last edited: %s"] = "último cambio: %s"; +App::$strings["Expires: %s"] = "Caduca: %s"; +App::$strings["Attend"] = "Participar o asistir"; +App::$strings["Attendance Options"] = "Opciones de participación o asistencia"; +App::$strings["Vote"] = "Votar"; +App::$strings["Voting Options"] = "Opciones de votación"; +App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; +App::$strings["Add to Calendar"] = "Añadir al calendario"; +App::$strings["This is an unsaved preview"] = "Esta es una previsualización sin guardar"; +App::$strings["%s show all"] = "%s mostrar todo"; +App::$strings["Bold"] = "Negrita"; +App::$strings["Italic"] = "Itálico "; +App::$strings["Underline"] = "Subrayar"; +App::$strings["Quote"] = "Citar"; +App::$strings["Code"] = "Código"; +App::$strings["Image"] = "Imagen"; +App::$strings["Attach File"] = "Fichero adjunto"; +App::$strings["Insert Link"] = "Insertar enlace"; +App::$strings["Video"] = "Vídeo"; +App::$strings["Your full name (required)"] = "Su nombre completo (requerido)"; +App::$strings["Your email address (required)"] = "Su dirección de correo electrónico (requerido)"; +App::$strings["Your website URL (optional)"] = "La URL de su sitio web (opcional)"; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; +App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; +App::$strings["parent"] = "padre"; +App::$strings["Collection"] = "Colección"; +App::$strings["Principal"] = "Principal"; +App::$strings["Addressbook"] = "Libreta de direcciones"; +App::$strings["Calendar"] = "Calendario"; +App::$strings["Schedule Inbox"] = "Programar bandeja de entrada"; +App::$strings["Schedule Outbox"] = "Programar bandeja de salida"; +App::$strings["Total"] = "Total"; +App::$strings["Shared"] = "Compartido"; +App::$strings["Add Files"] = "Añadir ficheros"; +App::$strings["You are using %1\$s of your available file storage."] = "Está usando %1\$s de su espacio disponible para ficheros."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Está usando %1\$s de %2\$s que tiene a su disposición para ficheros. (%3\$s%)"; +App::$strings["WARNING:"] = "ATENCIÓN: "; +App::$strings["Create new folder"] = "Crear nueva carpeta"; +App::$strings["Upload file"] = "Subir fichero"; +App::$strings["Drop files here to immediately upload"] = "Arrastre los ficheros aquí para subirlos de forma inmediata"; +App::$strings["Forums"] = "Foros"; +App::$strings["Select Channel"] = "Seleccionar un canal"; +App::$strings["Read-write"] = "Lectura y escritura"; +App::$strings["Read-only"] = "Sólo lectura"; +App::$strings["My Calendars"] = "Mis calendarios"; +App::$strings["Shared Calendars"] = "Calendarios compartidos"; +App::$strings["Share this calendar"] = "Compartir este calendario"; +App::$strings["Calendar name and color"] = "Nombre y color del calendario"; +App::$strings["Create new calendar"] = "Crear un nuevo calendario"; +App::$strings["Calendar Name"] = "Nombre del calendario"; +App::$strings["Calendar Tools"] = "Gestión de calendarios"; +App::$strings["Import calendar"] = "Importar un calendario"; +App::$strings["Select a calendar to import to"] = "Seleccionar un calendario para importarlo"; +App::$strings["Addressbooks"] = "Agenda de direcciones"; +App::$strings["Addressbook name"] = "Nombre de la agenda"; +App::$strings["Create new addressbook"] = "Crear una nueva agenda de direcciones"; +App::$strings["Addressbook Name"] = "Nombre de la agenda"; +App::$strings["Addressbook Tools"] = "Gestión de agendas de direcciones"; +App::$strings["Import addressbook"] = "Importar una agenda de direcciones"; +App::$strings["Select an addressbook to import to"] = "Seleccionar una agenda para importarla"; +App::$strings["Categories"] = "Temas"; +App::$strings["Everything"] = "Todo"; +App::$strings["Events Tools"] = "Gestión de eventos"; +App::$strings["Export Calendar"] = "Exportar el calendario"; +App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +App::$strings["HQ Control Panel"] = "Panel de control de HQ"; +App::$strings["Create a new post"] = "Crear una nueva entrada"; +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["Chatrooms"] = "Salas de chat"; +App::$strings["Overview"] = "Resumen"; +App::$strings["Rating Tools"] = "Valoraciones"; +App::$strings["Rate Me"] = "Valorar este canal"; +App::$strings["View Ratings"] = "Mostrar las valoraciones"; +App::$strings["__ctx:widget__ Activity"] = "Actividad"; +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["Wiki List"] = "Lista de wikis"; +App::$strings["Archives"] = "Hemeroteca"; +App::$strings["Received Messages"] = "Mensajes recibidos"; +App::$strings["Sent Messages"] = "Enviar mensajes"; +App::$strings["Conversations"] = "Conversaciones"; +App::$strings["No messages."] = "Sin mensajes."; +App::$strings["Delete conversation"] = "Eliminar conversación"; +App::$strings["Chat Members"] = "Miembros del chat"; +App::$strings["photo/image"] = "foto/imagen"; +App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["add"] = "añadir"; +App::$strings["Notes"] = "Notas"; +App::$strings["Add new page"] = "Añadir una nueva página"; +App::$strings["Wiki Pages"] = "Páginas del wiki"; +App::$strings["Page name"] = "Nombre de la página"; +App::$strings["Refresh"] = "Recargar"; +App::$strings["Tasks"] = "Tareas"; +App::$strings["Suggestions"] = "Sugerencias"; +App::$strings["See more..."] = "Ver más..."; +App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Tags"] = "Etiquetas"; +App::$strings["Profile Creation"] = "Creación de perfiles"; +App::$strings["Upload profile photo"] = "Cargar la foto del perfil"; +App::$strings["Upload cover photo"] = "Cargar la foto de portada del perfil"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Find and Connect with others"] = "Encontrar y conectarse con otros"; +App::$strings["View the directory"] = "Ver el directorio"; +App::$strings["Manage your connections"] = "Gestionar sus conexiones"; +App::$strings["Communicate"] = "Comunicarse"; +App::$strings["View your channel homepage"] = "Ver la página principal de su canal"; +App::$strings["View your network stream"] = "Ver el \"stream\" de su red"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["View public stream"] = "Ver el \"stream\" público"; +App::$strings["New Member Links"] = "Enlaces para nuevos miembros"; +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["Account settings"] = "Configuración de la cuenta"; +App::$strings["Channel settings"] = "Configuración del canal"; +App::$strings["Additional features"] = "Funcionalidades"; +App::$strings["Addon settings"] = "Ajustes de los 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["OAuth1 apps"] = "Aplicaciones OAuth1"; +App::$strings["OAuth2 apps"] = "Aplicaciones OAuth2"; +App::$strings["Permission Groups"] = "Grupos de permisos"; +App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; +App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["New Network Activity"] = "Nueva actividad en la red"; +App::$strings["New Network Activity Notifications"] = "Avisos de nueva actividad en la red"; +App::$strings["View your network activity"] = "Ver su actividad en la red"; +App::$strings["Mark all notifications read"] = "Marcar todas las notificaciones como leídas"; +App::$strings["Show new posts only"] = "Mostrar solo las entradas nuevas"; +App::$strings["Filter by name"] = "Filtrar por nombre"; +App::$strings["New Home Activity"] = "Nueva actividad en su página principal"; +App::$strings["New Home Activity Notifications"] = "Avisos de nueva actividad en su página principal"; +App::$strings["View your home activity"] = "Ver su actividad en su página principal"; +App::$strings["Mark all notifications seen"] = "Marcar todas las notificaciones como vistas"; +App::$strings["New Mails"] = "Nuevos mensajes de correo"; +App::$strings["New Mails Notifications"] = "Avisos de nuevos mensajes de correo"; +App::$strings["View your private mails"] = "Ver sus correos privados"; +App::$strings["Mark all messages seen"] = "Marcar todos los mensajes como vistos"; +App::$strings["New Events"] = "Eventos nuevos"; +App::$strings["New Events Notifications"] = "Avisos de nuevos eventos"; +App::$strings["View events"] = "Ver los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["New Connections Notifications"] = "Avisos de nuevas conexiones"; +App::$strings["View all connections"] = "Ver todas las conexiones"; +App::$strings["New Files"] = "Ficheros nuevos"; +App::$strings["New Files Notifications"] = "Avisos de nuevos ficheros"; +App::$strings["Notices"] = "Avisos"; +App::$strings["View all notices"] = "Ver todos los avisos"; +App::$strings["Mark all notices seen"] = "Marcar como leídos todos los avisos"; +App::$strings["New Registrations"] = "Registros nuevos"; +App::$strings["New Registrations Notifications"] = "Notificaciones de nuevos registros"; +App::$strings["Public Stream Notifications"] = "Avisos del \"stream\" público"; +App::$strings["View the public stream"] = "Ver el \"stream\" público"; +App::$strings["Sorry, you have got no notifications at the moment"] = "Lo sentimos, por el momento no ha recibido ninguna notificación"; +App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; +App::$strings["Create an account to access services and applications"] = "Crear una cuenta para acceder a los servicios y aplicaciones"; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["Login/Email"] = "Inicio de sesión / Correo electrónico"; +App::$strings["Password"] = "Contraseña"; +App::$strings["Remember me"] = "Recordarme"; +App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Error SSL del sitio web en %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Las tareas de Cron no están funcionando en %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando."; +App::$strings["never"] = "nunca"; +App::$strings["Cover Photo"] = "Imagen de portada del perfil"; +App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; +App::$strings["Theme settings"] = "Ajustes del tema"; +App::$strings["Narrow navbar"] = "Estrechar la barra de navegación"; +App::$strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; +App::$strings["Navigation bar icon color "] = "Color del icono de la barra de navegación"; +App::$strings["Navigation bar active icon color "] = "Color del icono activo de la barra de navegación"; +App::$strings["Link color"] = "Color del enlace"; +App::$strings["Set font-color for banner"] = "Ajustar el color del tipo de letra para el \"banner\""; +App::$strings["Set the background color"] = "Ajustar el color de fondo"; +App::$strings["Set the background image"] = "Ajustar la imagen de fondo"; +App::$strings["Set the background color of items"] = "Ajustar el color de los elementos de fondo"; +App::$strings["Set the background color of comments"] = "Ajustar el color de fondo de los comentarios"; +App::$strings["Set font-size for the entire application"] = "Ajustar el tamaño de letra para toda la aplicación"; +App::$strings["Examples: 1rem, 100%, 16px"] = "Ejemplos: 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Establecer el color de la letra para publicaciones y comentarios"; +App::$strings["Set radius of corners"] = "Establecer el radio de curvatura de las esquinas"; +App::$strings["Example: 4px"] = "Ejemplo: 4px"; +App::$strings["Set shadow depth of photos"] = "Ajustar la profundidad de sombras de las fotos"; +App::$strings["Set maximum width of content region in pixel"] = "Ajustar la anchura máxima de la región de contenido, en pixels"; +App::$strings["Leave empty for default width"] = "Dejar en blanco para la anchura predeterminada"; +App::$strings["Left align page content"] = "Alinear a la izquierda el contenido de la página"; +App::$strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación"; +App::$strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor"; +App::$strings["Errors encountered deleting database table "] = "Errores encontrados al eliminar la tabla de la base de datos"; +App::$strings["Submit Settings"] = "Enviar los ajustes"; +App::$strings["Drop tables when uninstalling?"] = "¿Eliminar tablas al desinstalar?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Si se selecciona, las tablas de la base de datos Rendezvous se eliminarán cuando se desinstale el plugin."; +App::$strings["Mapbox Access Token"] = "Token de acceso de Mapbox"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Si introduce un token de acceso a Mapbox, se utilizará para recuperar los mapas de mosaicos de imágenes de Mapbox en lugar del servidor de mosaico de imágenes OpenStreetMap predeterminado."; +App::$strings["Rendezvous"] = "Rendezvous"; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Esta identidad ha sido eliminada por otro miembro debido a su inactividad. Pulse el botón \"Nueva identidad\" o actualice la página para registrar una nueva identidad. Puede usar el mismo nombre."; +App::$strings["Welcome to Rendezvous!"] = "¡Bienvenido/a a Rendevous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Introduzca tu nombre para unirse a esta cita. Para comenzar a compartir su ubicación con los demás miembros, pulse en el control GPS. Cuando se descubra su ubicación, aparecerá un punto rojo y otros podrán verlo en el mapa."; +App::$strings["Let's meet here"] = "Reunámonos aquí"; +App::$strings["New marker"] = "Nuevo marcador"; +App::$strings["Edit marker"] = "Editar un marcador"; +App::$strings["New identity"] = "Nueva identidad"; +App::$strings["Delete marker"] = "Eliminar un marcador"; +App::$strings["Delete member"] = "Eliminar un miembro"; +App::$strings["Edit proximity alert"] = "Editar alerta de proximidad"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Se emitirá una alerta de proximidad cuando este miembro esté dentro de un radio determinado respecto a usted.

Ingrese el radio en metros (0 para deshabilitar):"; +App::$strings["distance"] = "distancia"; +App::$strings["Proximity alert distance (meters)"] = "Distancia (en metros) para la alerta de proximidad"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Se emitirá una alerta de proximidad cuando usted esté dentro de un radio determinado respecto al marcador de localización.

Ingrese el radio en metros (0 para deshabilitar):"; +App::$strings["Marker proximity alert"] = "Marcador de alerta de proximidad"; +App::$strings["Reminder note"] = "Recordatorio"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Introduzca una nota que se mostrará cuando esté dentro de la proximidad especificada..."; +App::$strings["Add new rendezvous"] = "Añadir una nueva cita"; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Cree una nueva cita y comparta los enlaces de acceso con los que desea invitar al grupo. Aquellos que abran el enlace se convertirán en miembros de la cita. Pueden ver otras ubicaciones de miembros, añadir marcadores al mapa o compartir sus propias ubicaciones con el grupo."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "No tiene ninguna cita. ¡Presione el botón de arriba para crear una!"; +App::$strings["Some setting"] = "Algunos ajustes"; +App::$strings["A setting"] = "Un ajuste"; +App::$strings["Skeleton Settings"] = "Ajustes de Skeleton"; +App::$strings["GNU-Social Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo de GNU-Social."; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de GNU-Social no admite la independencia de la ubicación. Las\n conexiones que realice dentro de esa red pueden ser inaccesibles desde \nubicaciones de canales alternativos."; +App::$strings["Enable the GNU-Social protocol for this channel"] = "Activar el protocolo de GNU-Social para este canal"; +App::$strings["GNU-Social Protocol Settings"] = "Ajustes del protocolo de GNU-Social"; +App::$strings["Follow"] = "Seguir"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s está siguiendo ahora a %2\$s"; +App::$strings["Planets Settings updated."] = "Se han guardado los ajustes de Planets."; +App::$strings["Enable Planets Plugin"] = "Habilitar el plugin Planets"; +App::$strings["Planets Settings"] = "Ajustes de Planets"; +App::$strings["System defaults:"] = "Valores predeterminados del sistema: "; +App::$strings["Preferred Clipart IDs"] = "IDs de las imágenes clipart preferidas"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Lista de ids de imágenes de clipart preferidas. Se verán en primer lugar."; +App::$strings["Default Search Term"] = "Términos de búsqueda predeterminados"; +App::$strings["The default search term. These will be shown second."] = "Los términos de búsqueda predeterminados. Estos se mostrarán en segundo lugar."; +App::$strings["Return After"] = "Regresar después"; +App::$strings["Page to load after image selection."] = "Página para cargar después de la selección de imágenes."; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Profile List"] = "Lista de perfiles"; +App::$strings["Order of Preferred"] = "Orden de preferencia"; +App::$strings["Sort order of preferred clipart ids."] = "Orden de clasificación de los identificadores de imágenes clipart preferidas."; +App::$strings["Newest first"] = "Las más nuevas en primer lugar"; +App::$strings["As entered"] = "Tal como se ingresaron"; +App::$strings["Order of other"] = "Orden de los demás"; +App::$strings["Sort order of other clipart ids."] = "Orden de clasificación de otros ids de imágenes clipart."; +App::$strings["Most downloaded first"] = "Las más descargadas en primer lugar"; +App::$strings["Most liked first"] = "Las más apreciadas en primer lugar"; +App::$strings["Preferred IDs Message"] = "Mensaje de IDs preferido"; +App::$strings["Message to display above preferred results."] = "Mensaje para mostrar sobre los resultados preferidos."; +App::$strings["Uploaded by: "] = "Subida por: "; +App::$strings["Drawn by: "] = "Creada por: "; +App::$strings["Use this image"] = "Usar esta imagen"; +App::$strings["Or select from a free OpenClipart.org image:"] = "O seleccionar una imagen gratuita de OpenClipart.org: "; +App::$strings["Search Term"] = "Término de búsqueda"; +App::$strings["Unknown error. Please try again later."] = "Error desconocido. Por favor, inténtelo otra vez."; +App::$strings["Profile photo updated successfully."] = "Se ha actualizado con éxito la foto de perfil."; +App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada"; +App::$strings["Post to WordPress"] = "Publicar en WordPress"; +App::$strings["Enable WordPress Post Plugin"] = "Habilitar el plugin de publicación en WordPress"; +App::$strings["WordPress username"] = "Nombre de usuario de WordPress"; +App::$strings["WordPress password"] = "Contraseña de WordPress"; +App::$strings["WordPress API URL"] = "URL de la API de WordPress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Habitualmente https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = "Blog de WordPress"; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Para sitios multiusuario como wordpress.com, de lo contrario, dejar en blanco"; +App::$strings["Post to WordPress by default"] = "Publicar en WordPress por defecto"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Reenviar comentarios (requerido por el plugin hubzilla_wp)"; +App::$strings["WordPress Post Settings"] = "Ajustes de publicación en WordPress"; +App::$strings["Wordpress Settings saved."] = "Se han guardado los ajustes de WordPress."; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Este complemento busca en los mensajes las palabras o texto que se especifican a continuación y contrae cualquier contenido que contenga esas palabras clave para que no se muestre en momentos inapropiados, como insinuaciones sexuales que pueden ser impropias en un entorno de trabajo. Es una muestra de educación y se recomienda marcar cualquier contenido que contenga desnudos con #NSFW. Este filtro también puede coincidir con cualquier otra palabra o texto que especifique y, por lo tanto, puede utilizarse como un filtro de contenido de propósito general."; +App::$strings["Enable Content filter"] = "Habilitar filtro de contenido"; +App::$strings["Comma separated list of keywords to hide"] = "Lista separada por comas de palabras clave para ocultar"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Palabra, /expresión regular/, lang=xx, lang!=xx"; +App::$strings["Not Safe For Work Settings"] = "No es seguro para ajustes de trabajo"; +App::$strings["General Purpose Content Filter"] = "Filtro de contenido de propósito general"; +App::$strings["NSFW Settings saved."] = "Se han guardado los ajustes de NSFW."; +App::$strings["Possible adult content"] = "Posible contenido para adultos"; +App::$strings["%s - view"] = "ver - %s"; +App::$strings["Post to Insanejournal"] = "Publicar en Insanejournal"; +App::$strings["Enable InsaneJournal Post Plugin"] = "Habilitar el plugin de publicación en InsaneJournal"; +App::$strings["InsaneJournal username"] = "Nombre de usuario en InsaneJournal"; +App::$strings["InsaneJournal password"] = "Contraseña en InsaneJournal"; +App::$strings["Post to InsaneJournal by default"] = "Publicar por defecto en InsaneJournal"; +App::$strings["InsaneJournal Post Settings"] = "Ajustes de publicación en InsaneJournal"; +App::$strings["Insane Journal Settings saved."] = "Se han guardado los ajustes de InsaneJournal."; +App::$strings["Post to Dreamwidth"] = "Publicar en Dreamwidth"; +App::$strings["Enable Dreamwidth Post Plugin"] = "Activar el plugin de publicación en Dreamwidth"; +App::$strings["Dreamwidth username"] = "Nombre de usuario en Dreamwidth"; +App::$strings["Dreamwidth password"] = "Contraseña en Dreamwidth"; +App::$strings["Post to Dreamwidth by default"] = "Publicar en Dreamwidth de forma predeterminada"; +App::$strings["Dreamwidth Post Settings"] = "Ajustes de publicación en Dreamwidth"; +App::$strings["New registration"] = "Nuevo registro"; +App::$strings["Message sent to %s. New account registration: %s"] = "Mensaje enviado a %s. Registro de una nueva cuenta: %s"; +App::$strings["Hubzilla Directory Stats"] = "Estadísticas de directorio de Hubzilla"; +App::$strings["Total Hubs"] = "Número total de servidores"; +App::$strings["Hubzilla Hubs"] = "Servidores (hubs) de Hubzilla"; +App::$strings["Friendica Hubs"] = "Servidores (hubs) de Friendica"; +App::$strings["Diaspora Pods"] = "Servidores (pods) de Diaspora"; +App::$strings["Hubzilla Channels"] = "Canales de Hubzilla"; +App::$strings["Friendica Channels"] = "Canales de Friendica"; +App::$strings["Diaspora Channels"] = "Canales de Diaspora"; +App::$strings["Aged 35 and above"] = "De 35 años de edad en adelante"; +App::$strings["Aged 34 and under"] = "De 34 o menos años de edad"; +App::$strings["Average Age"] = "Promedio de edad"; +App::$strings["Known Chatrooms"] = "Salas de chat conocidas"; +App::$strings["Known Tags"] = "Etiquetas conocidas"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Tenga en cuenta que las estadísticas de Diaspora y Friendica se refieren únicamente a aquellas de las que **este directorio** es consciente, y no a todos los conocidos en la red. Esto también es aplicable a las salas de chat,"; +App::$strings["Your Webbie:"] = "Su webbie: "; +App::$strings["Fontsize (px):"] = "Tamaño de fuente (px): "; +App::$strings["Link:"] = "Enlace: "; +App::$strings["Like us on Hubzilla"] = "Múestrenos su agrado en Hubzilla"; +App::$strings["Embed:"] = "Incorporado: "; +App::$strings["Photos imported"] = "Se han importado las fotos"; +App::$strings["Redmatrix Photo Album Import"] = "Importar un álbum de fotos de Redmatrix"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Esto importará todos sus álbumes de fotos de Redmatrix a este canal."; +App::$strings["Redmatrix Server base URL"] = "URL base del servidor Redmatrix"; +App::$strings["Redmatrix Login Username"] = "Nombre de inicio de sesión en Redmatrix"; +App::$strings["Redmatrix Login Password"] = "Contraseña de inicio de sesión en Redmatrix"; +App::$strings["Import just this album"] = "Importar solo este álbum"; +App::$strings["Leave blank to import all albums"] = "Dejar en blanco para importar todos los álbumes"; +App::$strings["Maximum count to import"] = "Límite máximo de importación"; +App::$strings["0 or blank to import all available"] = "0 o en blanco para importar todos los disponibles"; +App::$strings["Channels to auto connect"] = "Canales para conexión automática"; +App::$strings["Comma separated list"] = "Lista separada por comas"; +App::$strings["Popular Channels"] = "Canales populares"; +App::$strings["IRC Settings"] = "Ajustes de IRC"; +App::$strings["IRC settings saved."] = "Se han guardado los ajustes de IRC."; +App::$strings["IRC Chatroom"] = "Sala de chat IRC"; +App::$strings["Post to LiveJournal"] = "Publicar en LiveJournal"; +App::$strings["Enable LiveJournal Post Plugin"] = "Habilitar el plugin de publicación en LiveJournal"; +App::$strings["LiveJournal username"] = "Nombre de usuario en LiveJournal"; +App::$strings["LiveJournal password"] = "Contraseña en LiveJournal"; +App::$strings["Post to LiveJournal by default"] = "Publicar en LiveJournal por defecto"; +App::$strings["LiveJournal Post Settings"] = "Ajustes de publicación en LiveJournal"; +App::$strings["LiveJournal Settings saved."] = "Se han guardado los ajustes de LiveJournal."; +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 al iniciar sesión con el OpenID que proporcionó. Compruebe si el ID está correctamente escrito."; +App::$strings["The error message was:"] = "El mensaje de error ha sido: "; +App::$strings["First Name"] = "Nombre"; +App::$strings["Last Name"] = "Apellido"; +App::$strings["Nickname"] = "Alias"; +App::$strings["Full Name"] = "Nombre completo"; +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 horaria"; +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["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. No se recuperó ninguna ID."; +App::$strings["Login failed."] = "El acceso ha fallado."; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["You're welcome."] = "Bienvenido."; +App::$strings["Ah shucks..."] = "Ah, joder..."; +App::$strings["Don't mention it."] = "No lo menciones."; +App::$strings["<blush>"] = "<sonrojo>"; +App::$strings["Page to load after login"] = "Página para cargar tras el inicio de sesión"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Ejemplos: "aplicaciones", "mi red?f=&gid=37" (grupo de canales), "mi canal" or "notificaciones del sistema" (dejar en blanco para la página de mi red por defecto (grid)."; +App::$strings["Startpage Settings"] = "Ajustes de startpage"; +App::$strings["bitchslap"] = "una bofetada humillante"; +App::$strings["bitchslapped"] = "ha abofeteado de forma humillante a"; +App::$strings["shag"] = "un polvo"; +App::$strings["shagged"] = "ha dejado exhausto/a a"; +App::$strings["patent"] = "una patente"; +App::$strings["patented"] = "ha patentado a"; +App::$strings["hug"] = "un abrazo"; +App::$strings["hugged"] = "ha abrazado a"; +App::$strings["murder"] = "un asesinato"; +App::$strings["murdered"] = "ha asesinado a"; +App::$strings["worship"] = "una alabanza"; +App::$strings["worshipped"] = "ha elogiado a"; +App::$strings["kiss"] = "un beso"; +App::$strings["kissed"] = "ha besado a"; +App::$strings["tempt"] = "una tentación"; +App::$strings["tempted"] = "ha tentado a"; +App::$strings["raise eyebrows at"] = "un levantamiento de cejas"; +App::$strings["raised their eyebrows at"] = "ha levantado las cejas a"; +App::$strings["insult"] = "un insulto"; +App::$strings["insulted"] = "ha insultado a"; +App::$strings["praise"] = "un elogio"; +App::$strings["praised"] = "ha elogiado a"; +App::$strings["be dubious of"] = "una indecisión"; +App::$strings["was dubious of"] = "estaba dudoso de"; +App::$strings["eat"] = "una comida"; +App::$strings["ate"] = "ha comido"; +App::$strings["giggle and fawn at"] = "una sonrisa aduladora"; +App::$strings["giggled and fawned at"] = "ha sonreído y adulado a"; +App::$strings["doubt"] = "una duda"; +App::$strings["doubted"] = "ha dudado de"; +App::$strings["glare"] = "una mirada furiosa"; +App::$strings["glared at"] = "ha mirado con furia"; +App::$strings["fuck"] = "una mierda"; +App::$strings["fucked"] = "ha mandado a la mierda a"; +App::$strings["bonk"] = "un golpe"; +App::$strings["bonked"] = "ha golpeado a"; +App::$strings["declare undying love for"] = "una declaración de amor eterno"; +App::$strings["declared undying love for"] = "ha declarado amor eterno a"; +App::$strings["Diaspora Protocol Settings updated."] = "Los ajustes del protocolo de Diaspora se han actualizado."; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos."; +App::$strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Firmar y enviar entradas y comentarios sin firma de Diaspora"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "\"Hashtags\" seguidos (separados por comas, sin incluir #)"; +App::$strings["Diaspora Protocol Settings"] = "Ajustes del protocolo de Diaspora"; +App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero de importación."; +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["Your account on %s will expire in a few days."] = "Su cuenta en %s caducará en unos pocos días."; +App::$strings["Your $Productname test account is about to expire."] = "Su cuenta de prueba de $Productname está a punto de caducar."; +App::$strings["Enable Rainbowtag"] = "Habilitar Rainbowtag"; +App::$strings["Rainbowtag Settings"] = "Ajustes de Rainbowtag"; +App::$strings["Rainbowtag Settings saved."] = "Se han guardado los ajustes de Rainbowtag."; +App::$strings["Show Upload Limits"] = "Mostrar los límites de subida"; +App::$strings["Hubzilla configured maximum size: "] = "Tamaño máximo configurado por Hubzilla: "; +App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (debe ser mayor que upload_max_filesize): "; +App::$strings["generic profile image"] = "imagen del perfil general"; +App::$strings["random geometric pattern"] = "patrón geométrico aleatorio"; +App::$strings["monster face"] = "cara de monstruo"; +App::$strings["computer generated face"] = "cara generada por ordenador"; +App::$strings["retro arcade style face"] = "cara de estilo retro arcade"; +App::$strings["Hub default profile photo"] = "Foto del perfil por defecto del hub"; +App::$strings["Information"] = "Información"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "El addon Libravatar también está instalado. Por favor deshabilite el addon de Libravatar o este addon de Gravatar.
El addon de Libravatar volverá a Gravatar si no se encuentra nada en Libravatar."; +App::$strings["Save Settings"] = "Guardar ajustes"; +App::$strings["Default avatar image"] = "Imagen del avatar por defecto"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Selecciona la imagen de avatar predeterminada si no se encontró ninguna en Gravatar. Ver README"; +App::$strings["Rating of images"] = "Valoración de las imágenes"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Seleccione la valoración adecuada del avatar para su sitio. Ver README"; +App::$strings["Gravatar settings updated."] = "Se han actualizado los ajustes de Gravatar."; +App::$strings["Hubzilla File Storage Import"] = "Importar del depósito de ficheros de Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Esto importará todos sus ficheros en la nube desde otro servidor."; +App::$strings["Hubzilla Server base URL"] = "URL base del servidor Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Modificado desde la fecha yyyy-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Modificado hasta la fecha yyyy-mm-dd"; +App::$strings["Recent Channel/Profile Viewers"] = "Visitantes recientes del canal o perfil"; +App::$strings["This plugin/addon has not been configured."] = "El plugin o complemento no se ha configurado."; +App::$strings["Please visit the Visage settings on %s"] = "Por favor, revise los ajustes de Visage en %s"; +App::$strings["your feature settings page"] = "su página de ajustes de las funcionalidades"; +App::$strings["No entries."] = "No hay entradas."; +App::$strings["Enable Visage Visitor Logging"] = "Habilitar el registro de visitantes de Visage"; +App::$strings["Visage Settings"] = "Ajustes de Visage"; +App::$strings["Nsabait Settings updated."] = "Se han actualizado los ajustes de Nsabait"; +App::$strings["Enable NSAbait Plugin"] = "Habilitar el plugin NSAbait"; +App::$strings["NSAbait Settings"] = "Ajustes de NSAbait"; +App::$strings["Send test email"] = "Enviar un correo electrónico de prueba"; +App::$strings["No recipients found."] = "No se han encontrado destinatarios."; +App::$strings["Mail sent."] = "El correo electrónico ha sido enviado."; +App::$strings["Sending of mail failed."] = "No se pudo enviar el correo."; +App::$strings["Mail Test"] = "Prueba de correo"; +App::$strings["Message subject"] = "Asunto del mensaje"; +App::$strings["Use markdown for editing posts"] = "Usar markdown para editar las entradas"; +App::$strings["View Larger"] = "Ver más grande"; +App::$strings["Tile Server URL"] = "URL del servidor de mosaicos de imágenes "; +App::$strings["A list of public tile servers"] = "Una lista de servidores públicos de mosaicos de imágenes"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL del servidor nominatim (geocodificación inversa)"; +App::$strings["A list of Nominatim servers"] = "Una lista de servidores nominatim"; +App::$strings["Default zoom"] = "Zoom predeterminado"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "El nivel de zoom predeterminado. (1: mundo, 18: el más alto, también depende del servidor del mosaico de imágenes)"; +App::$strings["Include marker on map"] = "Incluir un marcador en el mapa"; +App::$strings["Include a marker on the map."] = "Incluir un marcador en el mapa."; +App::$strings["text to include in all outgoing posts from this site"] = "texto a incluir en todos los mensajes salientes de este sitio"; +App::$strings["Fuzzloc Settings updated."] = "Los ajustes de Fuzzloc se han actualizado."; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc le permite desdibujar su ubicación precisa si su canal utiliza la asignación de ubicación del navegador."; +App::$strings["Enable Fuzzloc Plugin"] = "Habilitar el plugin Fuzzloc"; +App::$strings["Minimum offset in meters"] = "Offset mínimo en metros"; +App::$strings["Maximum offset in meters"] = "Offset máximo en metros"; +App::$strings["Fuzzloc Settings"] = "Ajustes de Fuzzloc"; +App::$strings["Post to Friendica"] = "Publicar en Friendica"; +App::$strings["rtof Settings saved."] = "Se han guardado los ajustes de rtof"; +App::$strings["Allow posting to Friendica"] = "Permitir publicar en Friendica"; +App::$strings["Send public postings to Friendica by default"] = "Enviar entradas públicas a Friendica por defecto"; +App::$strings["Friendica API Path"] = "Ruta a la API de Friendica"; +App::$strings["https://{sitename}/api"] = "https://{sitename}/api"; +App::$strings["Friendica login name"] = "Nombre de inicio de sesión en Friendica"; +App::$strings["Friendica password"] = "Contraseña de Friendica"; +App::$strings["Hubzilla to Friendica Post Settings"] = "Ajustes de publicación de Hubzilla a Friendica"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Activate addon"] = "Habilitar complemento"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Ocultar el widget de chat Jappixmini en la interfaz web"; +App::$strings["Jabber username"] = "Nombre de usuario en Jabber"; +App::$strings["Jabber server"] = "Servidor de Jabber"; +App::$strings["Jabber BOSH host URL"] = "URL del host BOSH de Jabber"; +App::$strings["Jabber password"] = "Contraseña en Jabber"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = "Cifrar la contraseña de Jabber con la contraseña de Hubzilla"; +App::$strings["Hubzilla password"] = "Contraseña de Hubzilla"; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Aprobar automáticamente las solicitudes de suscripción de los contactos de Hubzilla"; +App::$strings["Purge internal list of jabber addresses of contacts"] = "Purgar la lista interna de las direcciones de contactos de jabber"; +App::$strings["Configuration Help"] = "Ayuda para los ajustes"; +App::$strings["Jappix Mini Settings"] = "Ajustes de Jappix Mini"; +App::$strings["Currently blocked"] = "Actualmente bloqueado"; +App::$strings["No channels currently blocked"] = "No hay canales bloqueados actualmente"; +App::$strings["Superblock Settings"] = "Ajustes de Superblock"; +App::$strings["Block Completely"] = "Bloquear completamente"; +App::$strings["superblock settings updated"] = "se han actualizado los ajustes de superblock"; +App::$strings["Federate"] = "Federar"; +App::$strings["nofed Settings saved."] = "Se han guardado los ajustes de nofed."; +App::$strings["Allow Federation Toggle"] = "Permitir alternancia de federación"; +App::$strings["Federate posts by default"] = "Federar las publicaciones por defecto"; +App::$strings["NoFed Settings"] = "Ajustes de NoFed"; +App::$strings["Post to Red"] = "Enviar a Red"; +App::$strings["Channel is required."] = "Se requiere un canal."; +App::$strings["redred Settings saved."] = "Se han salvado los ajustes de redred."; +App::$strings["Allow posting to another Hubzilla Channel"] = "Permitir la publicación en otro canal de Hubzilla"; +App::$strings["Send public postings to Hubzilla channel by default"] = "Enviar entradas públicas al canal Hubzilla por defecto"; +App::$strings["Hubzilla API Path"] = "Ruta de la API de Hubzilla"; +App::$strings["Hubzilla login name"] = "Nombre de inicio de sesión en Hubzilla"; +App::$strings["Hubzilla channel name"] = "Nombre del canal de Hubzilla"; +App::$strings["Hubzilla Crosspost Settings"] = "Ajustes de Hubzilla Crosspost"; +App::$strings["Logfile archive directory"] = "Directorio de los ficheros de informe"; +App::$strings["Directory to store rotated logs"] = "Directorio para almacenar los informes rotados"; +App::$strings["Logfile size in bytes before rotating"] = "Tamaño del fichero de informe en bytes antes de rotarlo"; +App::$strings["Number of logfiles to retain"] = "Número de ficheros de informe que se deben retener"; +App::$strings["Friendica Photo Album Import"] = "Importar un álbum de fotos de Friendica"; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Esto importará todos sus álbumes de fotos de Friendica a este canal de Hubzilla."; +App::$strings["Friendica Server base URL"] = "URL base del servidor de Friendica"; +App::$strings["Friendica Login Username"] = "Nombre de inicio de sesión en Friendica"; +App::$strings["Friendica Login Password"] = "Contraseña de inicio de sesión en Friendica"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["ActivityPub Protocol Settings updated."] = "Se han actualizado los ajustes del protocolo ActivityPub."; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos."; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Activar el protocolo ActivityPub para este canal"; +App::$strings["Send multi-media HTML articles"] = "Enviar artículos multimedia en HTML"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "No soportado por algunos servicios de microblog como Mastodon"; +App::$strings["ActivityPub Protocol Settings"] = "Ajustes del protocolo ActivityPub"; +App::$strings["Project Servers and Resources"] = "Servidores y recursos del proyecto"; +App::$strings["Project Creator and Tech Lead"] = "Creador del proyecto y director técnico"; +App::$strings["Admin, developer, directorymin, support bloke"] = "Administrador, desarrollador, administrador del directorio, trabajador de apoyo"; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Y los cientos de personas y organizaciones más que ayudaron a hacer posible Hubzilla."; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Los proyectos Redmatrix / Hubzilla están proporcionados principalmente por voluntarios que les prestan su tiempo y experiencia, pagando a menudo de su bolsillo por los servicios que comparten con otros."; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "No hay financiación corporativa ni publicidad y no recogemos ni vendemos su información personal. (De hecho, no tenemos control sobre sus datos privados. Usted lo tiene.)"; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Ayude apoyando nuestro trabajo pionero en la descentralización, la identidad web, y la privacidad."; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Sus donaciones mantienen servidores y servicios en ejecución y también nos ayudan a proporcionar nuevas características innovadoras y a mantener el desarrollo de forma continuada."; +App::$strings["Donate"] = "Donar"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Elija un proyecto, desarrollador, o \"hub\" público para apoyar con una donación de una sola vez"; +App::$strings["Donate Now"] = "Donar ahora"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "O convertirse en un patrocinador del proyecto (sólo del proyecto Hubzilla)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Por favor, indique si desea que su nombre de pila o el nombre completo (o nada) aparezca en nuestra lista de patrocinadores"; +App::$strings["Sponsor"] = "Patrocinador"; +App::$strings["Special thanks to: "] = "Agradecimiento especial a: "; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Se trata de un diccionario bastante amplio y completo de acordes de guitarra que enumerará la mayor parte de las formas disponibles para tocar un acorde determinado, partiendo de la base del diapasón hasta unos pocos trastes más allá del traste doce (más allá del cual todo se repite). Se proporcionan un par de afinaciones no convencionales para provecho de los guitarristas con \"slides\" ( barras de acero), etc."; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "Los nombres de acordes comienzan con una nota fundamental (La-Sol) y pueden incluir sostenidos (#) y bemoles (b). Este software analizará la mayor parte de las convenciones de nomenclatura estándar como maj, min, tenue, SUS (2 ó 4), aug, con la repetición de elementos opcionales."; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Ejemplos válidos son A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "Acordes de guitarra"; +App::$strings["The complete online chord dictionary"] = "El diccionario completo de acordes en línea"; +App::$strings["Tuning"] = "Afinación"; +App::$strings["Chord name: example: Em7"] = "Nombre del acorde, por ejemplo: Em7"; +App::$strings["Show for left handed stringing"] = "Mostrar para tocadores zurdos"; +App::$strings["Quick Reference"] = "Referencia rápida"; +App::$strings["Post to Libertree"] = "Publicar en Libertree"; +App::$strings["Enable Libertree Post Plugin"] = "Habilitar el plugin de publicación en Libertree"; +App::$strings["Libertree API token"] = "Token de la API de Libertree"; +App::$strings["Libertree site URL"] = "URL del servidor de Libertree"; +App::$strings["Post to Libertree by default"] = "Publicar en Libertree por defecto"; +App::$strings["Libertree Post Settings"] = "Ajustes de publicación en Libertree"; +App::$strings["Libertree Settings saved."] = "Se han guardado los ajustes de Libertree."; +App::$strings["Flattr this!"] = "¡Apoyar esto en Flattr!"; +App::$strings["Flattr widget settings updated."] = "Los ajustes del widget Flattr han sido actualizados."; +App::$strings["Flattr user"] = "Usuario en Flattr"; +App::$strings["URL of the Thing to flattr"] = "URL de la Cosa para apoyar en flattr"; +App::$strings["If empty channel URL is used"] = "Si está vacío, se usa la URL del canal"; +App::$strings["Title of the Thing to flattr"] = "Título de la Cosa para apoyar en flattr"; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Si está vacío, se usará \"nombre del canal en Hubzilla\""; +App::$strings["Static or dynamic flattr button"] = "Botón de flattr estático o dinámico"; +App::$strings["static"] = "estático"; +App::$strings["dynamic"] = "dinámico"; +App::$strings["Alignment of the widget"] = "Alineamiento del widget"; +App::$strings["left"] = "izquierda"; +App::$strings["right"] = "derecha"; +App::$strings["Enable Flattr widget"] = "Habilitar el widget Flattr"; +App::$strings["Flattr Widget Settings"] = "Ajustes del widget Flattr"; +App::$strings["Post to GNU social"] = "Publicar en GNU social"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Por favor, contacte con el administrador de su sitio.
La URL de la API proporcionada no es válida."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "No podemos conectar con la API de GNU social con la ruta que ha proporcionado."; +App::$strings["GNU social settings updated."] = "Se han guardado los ajustes de GNU social."; +App::$strings["Globally Available GNU social OAuthKeys"] = "OAuthKeys globales de GNU social disponibles"; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Existen pares de claves OAuth preconfiguradas disponibles para algunos servidores libres de GNU social. Si está usando uno de ellos, utilice estas credenciales.
Si no se siente libre de conectarse a cualquier otra instancia de GNU social (vea a continuación)."; +App::$strings["Provide your own OAuth Credentials"] = "Proporcione sus propias credenciales de OAuth"; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "No se ha encontrado un par de claves de consumidor para GNU social. Registre su cuenta de Hubzilla como un cliente de escritorio en su cuenta social GNU, copie el par de claves de consumidor aquí y escriba la dirección raíz de la API.
Antes de registrar su propio par de claves OAuth, pregunte al administrador si ya hay un par de claves para esta instalación de Hubzilla en su instalación GNU social favorita."; +App::$strings["OAuth Consumer Key"] = "OAuth Consumer Key"; +App::$strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; +App::$strings["Base API Path"] = "Ruta base de la API"; +App::$strings["Remember the trailing /"] = "Recuerde la barra /"; +App::$strings["GNU social application name"] = "Nombre de la aplicación de GNU social"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Para conectarse a su cuenta de GNU social, haga clic en el botón de abajo para obtener un código de seguridad de GNU social que tiene que copiar en el cuadro de entrada a continuación y envíe el formulario. Solo sus entradas públicas aparecerán en GNU social."; +App::$strings["Log in with GNU social"] = "Inicio de sesión en GNU social"; +App::$strings["Copy the security code from GNU social here"] = "Copiar aquí el código de seguridad de GNU social"; +App::$strings["Cancel Connection Process"] = "Cancelar el proceso de conexión"; +App::$strings["Current GNU social API is"] = "La API actual de GNU social es "; +App::$strings["Cancel GNU social Connection"] = "Cancelar la conexión de GNU social"; +App::$strings["Currently connected to: "] = "Actualmente está conectado a: "; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?) el vínculo potencialmente incluido en las entradas públicas retransmitidas a GNU social llevará al visitante a una página en blanco que le informará de que el acceso a su perfil ha sido restringido."; +App::$strings["Allow posting to GNU social"] = "Habilitar la publicación en GNU social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si está habilitado, sus entradas públicas se pueden publicar en la cuenta GNU-social asociada"; +App::$strings["Post to GNU social by default"] = "Publicar en GNU social por defecto"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada"; +App::$strings["Clear OAuth configuration"] = "Limpiar la configuración de OAuth"; +App::$strings["GNU social Post Settings"] = "Ajustes de publicación en GNU social"; +App::$strings["API URL"] = "URL de la API"; +App::$strings["Application name"] = "Nombre de la aplicación"; +App::$strings["QR code"] = "Código QR"; +App::$strings["QR Generator"] = "Generador QR"; +App::$strings["Enter some text"] = "Escribir algún texto"; +App::$strings["Invalid game."] = "Juego no válido."; +App::$strings["You are not a player in this game."] = "Usted no participa en este juego."; +App::$strings["You must be a local channel to create a game."] = "Debe ser un canal local para crear un juego"; +App::$strings["You must select one opponent that is not yourself."] = "Debe seleccionar un oponente que no sea usted mismo."; +App::$strings["Random color chosen."] = "Elegido un color aleatorio."; +App::$strings["Error creating new game."] = "Error al crear un nuevo juego."; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["You must select a local channel /chess/channelname"] = "Debe seleccionar un canal local /chess/nombredelcanal"; +App::$strings["Enable notifications"] = "Habilitar notificaciones"; +App::$strings["Post to Twitter"] = "Publicar en Twitter"; +App::$strings["Twitter settings updated."] = "Se han actualizado los ajustes de Twitter."; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio."; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter."; +App::$strings["Log in with Twitter"] = "Iniciar sesión en Twitter"; +App::$strings["Copy the PIN from Twitter here"] = "Copiar aquí el PIN de Twitter"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido."; +App::$strings["Allow posting to Twitter"] = "Permitir la publicación en Twitter"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada"; +App::$strings["Twitter post length"] = "Longitud del mensaje en Twitter"; +App::$strings["Maximum tweet length"] = "Longitud máxima del tweet"; +App::$strings["Send public postings to Twitter by default"] = "Enviar mensajes públicos a Twitter de forma predeterminada"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada."; +App::$strings["Twitter Post Settings"] = "Ajustes de publicación en Twitter"; +App::$strings["Deactivate the feature"] = "Desactivar la funcionalidad"; +App::$strings["Hide the button and show the smilies directly."] = "Ocultar el botón y mostrar los smilies directamente."; +App::$strings["Smileybutton Settings"] = "Ajustes de Smileybutton"; +App::$strings["Order Not Found"] = "No se ha encontrado el pedido"; +App::$strings["Order cannot be checked out."] = "No se puede verificar el pedido."; +App::$strings["Enable Shopping Cart"] = "Habilitar el carro de la compra"; +App::$strings["Enable Test Catalog"] = "Habilitar el catálogo de pruebas"; +App::$strings["Enable Manual Payments"] = "Permitir pagos manuales"; +App::$strings["Base Cart Settings"] = "Configuración del carro base"; +App::$strings["Add Item"] = "Agregar un elemento"; +App::$strings["Call cart_post_"] = "Llamar a cart_post_"; +App::$strings["Cart Not Enabled (profile: "] = "El carro no está habilitado (perfil: "; +App::$strings["Order not found."] = "El pedido no se ha encontrado."; +App::$strings["No Order Found"] = "No se ha encontrado ningún pedido"; +App::$strings["call: "] = "llamar: "; +App::$strings["An unknown error has occurred Please start again."] = "Se ha producido un error desconocido Vuelva a empezar."; +App::$strings["Invalid Payment Type. Please start again."] = "Tipo de pago no válido. Por favor, empiece de nuevo."; +App::$strings["Order not found"] = "El pedido no se ha encontrado"; +App::$strings["Error: order mismatch. Please try again."] = "Error: desajuste de pedidos. Por favor, inténtelo de nuevo."; +App::$strings["Manual payments are not enabled."] = "Los pagos manuales no están habilitados."; +App::$strings["Finished"] = "Terminado"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Este sitio es rastreado mediante la herramienta analítica Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si usted no quiere que sus visitas se registren de esta manera puede establecer una cookie para evitar que Piwik rastree otras visitas del sitio (opt-out)."; +App::$strings["Piwik Base URL"] = "URL base de Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Ruta absoluta a la instalación de Piwik. (Sin protocolo (http/s), con barra diagonal)"; +App::$strings["Site ID"] = "ID del sitio"; +App::$strings["Show opt-out cookie link?"] = "Mostrar el enlace de la cookie opt-out?"; +App::$strings["Asynchronous tracking"] = "Rastreo asíncrono"; +App::$strings["Enable frontend JavaScript error tracking"] = "Habilitar la interfaz JavaScript de seguimiento de errores"; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Esta funcionalidad requiere Piwik >= 2.2.0"; +App::$strings["Edit your profile and change settings."] = "Editar su perfil y cambiar los ajustes."; +App::$strings["Click here to see activity from your connections."] = "Pulsar aquí para ver la actividad de sus conexiones."; +App::$strings["Click here to see your channel home."] = "Pulsar aquí para ver la página de inicio de su canal."; +App::$strings["You can access your private messages from here."] = "Puede acceder a sus mensajes privados desde aquí."; +App::$strings["Create new events here."] = "Crear nuevos eventos aquí."; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Puede aceptar nuevas conexiones y cambiar permisos para las existentes aquí. También puede, por ejemplo, crear grupos de contactos."; +App::$strings["System notifications will arrive here"] = "Las notificaciones del sistema llegarán aquí"; +App::$strings["Search for content and users"] = "Buscar contenido y usuarios"; +App::$strings["Browse for new contacts"] = "Buscar nuevos contactos"; +App::$strings["Launch installed apps"] = "Iniciar aplicaciones instaladas"; +App::$strings["Looking for help? Click here."] = "¿Busca ayuda? Pulse aquí."; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Se han producido nuevos eventos en su red. ¡Haga clic aquí para ver lo que ha sucedido!"; +App::$strings["You have received a new private message. Click here to see from who!"] = "Ha recibido un nuevo mensaje privado. Haga clic aquí para ver de quién!"; +App::$strings["There are events this week. Click here too see which!"] = "Hay eventos esta semana. Haga clic aquí para ver cuáles!"; +App::$strings["You have received a new introduction. Click here to see who!"] = "Ha recibido una nueva solicitud de conexión. ¡Pulse aquí para ver de quién!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "Hay una nueva notificación del sistema. ¡Haga clic aquí para ver lo que ha sucedido!"; +App::$strings["Click here to share text, images, videos and sound."] = "Haga clic aquí para compartir texto, imágenes, vídeos y sonido."; +App::$strings["You can write an optional title for your update (good for long posts)."] = "Puede escribir un título opcional para su actualización (bueno para los mensajes largos)."; +App::$strings["Entering some categories here makes it easier to find your post later."] = "Al ingresar algunos temas aquí, es más fácil encontrar su publicación más tarde."; +App::$strings["Share photos, links, location, etc."] = "Compartir fotos, enlaces, ubicación, etc."; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "¿Solo quieres compartir contenido durante un tiempo? Haga que expire en una fecha determinada."; +App::$strings["You can password protect content."] = "Puede proteger contenido con una contraseña."; +App::$strings["Choose who you share with."] = "Elegir con quién compartir."; +App::$strings["Click here when you are done."] = "Haga clic aquí cuando haya terminado."; +App::$strings["Adjust from which channels posts should be displayed."] = "Ajustar de qué canales se deben mostrar las publicaciones."; +App::$strings["Only show posts from channels in the specified privacy group."] = "Mostrar solo las entradas de los canales de un grupo específico de canales."; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Encuentre fácilmente entradas que contengan etiquetas (palabras clave precedidas del símbolo \"#\")."; +App::$strings["Easily find posts in given category."] = "Encuentre fácilmente las publicaciones en una categoría dada."; +App::$strings["Easily find posts by date."] = "Encuentre fácilmente entradas por fechas."; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Se sugiere a los usuarios que se han ofrecido voluntariamente que se muestren como sugerencias, y que creemos que podrían resultar interesantes."; +App::$strings["Here you see channels you have connected to."] = "Aquí puede ver los canales a los que está conectado."; +App::$strings["Save your search so you can repeat it at a later date."] = "Guarde su búsqueda para poder repetirla en una fecha posterior."; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si ve este icono puede estar seguro de que el remitente es quien dice ser. Es normal que no siempre sea posible verificar el remitente, por lo que el icono faltará en ocasiones. Por lo general, no hay necesidad de preocuparse por eso."; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!"; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

También puede avanzar pulsando la tecla de retorno"; +App::$strings["Extended Identity Sharing"] = "Compartir identidad extendida"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de \$Projectname."; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Juego en 3D Tic-Tac-Toe"; +App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; +App::$strings["New game"] = "Nuevo juego"; +App::$strings["New game with handicap"] = "Nuevo juego con hándicap"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "El juego en 3D tic-tac-toe es como el juego tradicional, excepto que se juega en varios niveles simultáneamente."; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "En este caso hay tres niveles. Usted gana al conseguir tres en una fila en cualquier nivel, así como arriba, abajo, y en diagonal a través de los diferentes niveles."; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "El juego con hándicap deshabilita la posición central en el nivel medio porque el jugador que reclama este cuadrado a menudo tiene una ventaja injusta."; +App::$strings["You go first..."] = "Usted va primero..."; +App::$strings["I'm going first this time..."] = "Yo voy primero esta vez..."; +App::$strings["You won!"] = "¡Usted ha ganado!"; +App::$strings["\"Cat\" game!"] = "¡El juego del \"gato\"!"; +App::$strings["I won!"] = "¡He ganado yo!"; +App::$strings["Message to display on every page on this server"] = "Mensaje para mostrar en todas las páginas de este servidor"; +App::$strings["Pageheader Settings"] = "Ajustes del encabezado de página"; +App::$strings["pageheader Settings saved."] = "Se han guardado los ajustes del encabezado de página."; +App::$strings["Only authenticate automatically to sites of your friends"] = "Autenticación automática solo en los sitios de sus amigos"; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "De forma predeterminada, se autenticará automáticamente en cualquier parte de la red"; +App::$strings["Authchoose Settings"] = "Ajustes de Authchoose"; +App::$strings["Atuhchoose Settings updated."] = "Se han actualizado los ajustes de Atuhchoose."; +App::$strings["lonely"] = "Solo/a"; +App::$strings["drunk"] = "ebrio/a"; +App::$strings["horny"] = "caliente"; +App::$strings["stoned"] = "drogado/a"; +App::$strings["fucked up"] = "jodido/a"; +App::$strings["clusterfucked"] = "hecho/a polvo"; +App::$strings["crazy"] = "loco/a"; +App::$strings["hurt"] = "ofendido/a"; +App::$strings["sleepy"] = "soñoliento/a"; +App::$strings["grumpy"] = "gruñón/ona"; +App::$strings["high"] = "superior"; +App::$strings["semi-conscious"] = "semiconsciente"; +App::$strings["in love"] = "enamorado/a"; +App::$strings["in lust"] = "lujurioso/a"; +App::$strings["naked"] = "desnudo/a"; +App::$strings["stinky"] = "apestoso/a"; +App::$strings["sweaty"] = "sudoroso/a"; +App::$strings["bleeding out"] = "exánime"; +App::$strings["victorious"] = "victorioso/a"; +App::$strings["defeated"] = "derrotado/a"; +App::$strings["envious"] = "envidioso/a"; +App::$strings["jealous"] = "celoso/a"; +App::$strings["XMPP settings updated."] = "Se han actualizado los ajustes de XMPP."; +App::$strings["Enable Chat"] = "Habilitar el chat"; +App::$strings["Individual credentials"] = "Credenciales individuales"; +App::$strings["Jabber BOSH server"] = "Servidor BOSH de Jabber"; +App::$strings["XMPP Settings"] = "Ajustes de XMPP"; +App::$strings["Jabber BOSH host"] = "BOSH de Jabber"; +App::$strings["Use central userbase"] = "Usar la base de usuarios central"; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Si está habilitado, los miembros se conectarán automáticamente a un servidor ejabberd que debe instalarse en esta máquina con credenciales sincronizadas a través del script \"auth ejabberd.php\"."; +App::$strings["Who likes me?"] = "¿Quién me ha puesto \"Me gusta\"?"; +App::$strings["You are now authenticated to pumpio."] = "Ahora está autenticado en pump.io."; +App::$strings["return to the featured settings page"] = "Volver a la página de configuración destacada"; +App::$strings["Post to Pump.io"] = "Publicar en Pump.io"; +App::$strings["Pump.io servername"] = "Nombre del servidor de Pump.io"; +App::$strings["Without \"http://\" or \"https://\""] = "Sin \"http://\" or \"https://\""; +App::$strings["Pump.io username"] = "Nombre de usuario en Pump.io"; +App::$strings["Without the servername"] = "Sin el nombre del servidor"; +App::$strings["You are not authenticated to pumpio"] = "No está autenticado en pump.io"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "(Re-)Autenticar su conexión en pump.io"; +App::$strings["Enable pump.io Post Plugin"] = "Habilitar el plugin de publicación en pump.io"; +App::$strings["Post to pump.io by default"] = "Publicar por defecto en pump.io"; +App::$strings["Should posts be public"] = "¿Las entradas deben ser públicas?"; +App::$strings["Mirror all public posts"] = "Reflejar todos los mensajes públicos"; +App::$strings["Pump.io Post Settings"] = "Ajustes de publicación en pump.io"; +App::$strings["PumpIO Settings saved."] = "Se han guardado los ajustes de PumpIO."; +App::$strings["An account has been created for you."] = "Se ha creado una cuenta para usted."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Autenticación correcta pero rechazada: la creación de cuentas está deshabilitada."; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Buscar %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = "Buscar \$Projectname"; +App::$strings["Redmatrix File Storage Import"] = "Importar repositorio de ficheros de Redmatrix"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Esto importará todos sus ficheros de la nube de Redmatrix a este canal."; +App::$strings["file"] = "fichero"; +App::$strings["Send email to all members"] = "Enviar un correo electrónico a todos los miembros"; +App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d de %2\$d mensajes enviados."; +App::$strings["Send email to all hub members."] = "Enviar un correo electrónico a todos los miembros del hub."; +App::$strings["Sender Email address"] = "Dirección de correo electrónico del remitente"; +App::$strings["Test mode (only send to hub administrator)"] = "Modo de prueba (enviar sólo al administrador del hub)"; 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["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "Correo electrónico"; -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["created a new post"] = "ha creado una nueva entrada"; -App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -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["Import completed."] = "Importación completada."; -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["Default privacy group for new contacts"] = "Privacidad de grupo por defecto para nuevos contactos "; -App::$strings["All Channels"] = "Todos los canales"; -App::$strings["edit"] = "editar"; -App::$strings["Collections"] = "Colecciones"; -App::$strings["Edit collection"] = "Editar colección"; -App::$strings["Add new collection"] = "Añadir nueva colección"; -App::$strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección"; -App::$strings["add"] = "añadir"; -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 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["Miscellaneous"] = "Varios"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["year"] = "año"; -App::$strings["years"] = "años"; -App::$strings["month"] = "mes"; -App::$strings["months"] = "meses"; -App::$strings["week"] = "semana"; -App::$strings["weeks"] = "semanas"; -App::$strings["day"] = "día"; -App::$strings["days"] = "días"; -App::$strings["hour"] = "hora"; -App::$strings["hours"] = "horas"; -App::$strings["minute"] = "minuto"; -App::$strings["minutes"] = "minutos"; -App::$strings["second"] = "segundo"; -App::$strings["seconds"] = "segundos"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +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["likes %1\$s's %2\$s"] = "gusta de %2\$s de %1\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "no gusta de %2\$s de %1\$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["poked"] = "ha dado un toque a"; +App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; +App::$strings["Categories:"] = "Temas:"; +App::$strings["Filed under:"] = "Archivado bajo:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Loading..."] = "Cargando..."; +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["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["Choose a different album..."] = "Elegir un álbum diferente..."; +App::$strings["Comments enabled"] = "Comentarios habilitados"; +App::$strings["Comments disabled"] = "Comentarios deshabilitados"; +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["Disable comments"] = "Dehabilitar los comentarios"; +App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; +App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +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["Profile Details"] = "Detalles del perfil"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["View Cards"] = "Ver las fichas"; +App::$strings["articles"] = "artículos"; +App::$strings["View Articles"] = "Ver los artículos"; +App::$strings["View Webpages"] = "Ver 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["Directory Options"] = "Opciones del directorio"; App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Sí"; App::$strings["Public Forums Only"] = "Solo foros públicos"; App::$strings["This Website Only"] = "Solo este sitio web"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["View"] = "Ver"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Title"] = "Título"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Public Timeline"] = "Cronología pública"; -App::$strings["Default"] = "Predeterminado"; -App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["Comment"] = "Comentar"; -App::$strings["[+] show all"] = "[+] mostrar todo:"; -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 cinciden"; -App::$strings["everybody"] = "cualquiera"; -App::$strings["Secret Passphrase"] = "Contraseña secreta"; -App::$strings["Passphrase hint"] = "Pista de contraseña"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; -App::$strings["close all"] = "cerrar todo"; -App::$strings["Nothing new here"] = "Nada nuevo por aquí"; -App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; -App::$strings["Rating"] = "Valoración"; -App::$strings["Describe (optional)"] = "Describir (opcional)"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "de su publicación"; -App::$strings["from now"] = "desde ahora"; -App::$strings["less than a minute"] = "menos de un minuto"; -App::$strings["about a minute"] = "alrededor de un minuto"; -App::$strings["%d minutes"] = "%d minutos"; -App::$strings["about an hour"] = "alrededor de una hora"; -App::$strings["about %d hours"] = "alrededor de %d horas"; -App::$strings["a day"] = "un día"; -App::$strings["%d days"] = "%d días"; -App::$strings["about a month"] = "alrededor de un mes"; -App::$strings["%d months"] = "%d meses"; -App::$strings["about a year"] = "alrededor de un año"; -App::$strings["%d years"] = "%d años"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["Unable to import a removed channel."] = "No se puede importar un canal eliminado."; +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["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -138,37 +2779,30 @@ App::$strings["next"] = "próxima"; App::$strings["older"] = "más antiguas"; App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; -App::$strings["%d Connection"] = array( - 0 => "%d Conexión", - 1 => "%d Conexiones", -); -App::$strings["View Connections"] = "Ver conexiones"; -App::$strings["Search"] = "Buscar"; -App::$strings["Save"] = "Guardar"; +App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; App::$strings["poke"] = "un toque"; -App::$strings["poked"] = "ha recibido un toque"; App::$strings["ping"] = "un \"ping\""; -App::$strings["pinged"] = "avisado/a"; -App::$strings["prod"] = "incitar"; -App::$strings["prodded"] = "incitado/a"; -App::$strings["slap"] = "abofetear"; -App::$strings["slapped"] = "abofeteado/a"; -App::$strings["finger"] = "un \"finger\""; -App::$strings["fingered"] = "ha recibido un \"finger\""; -App::$strings["rebuff"] = "un rechazo"; -App::$strings["rebuffed"] = "ha sido rechazado/a"; -App::$strings["happy"] = "feliz"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "amable"; -App::$strings["tired"] = "cansado/a"; -App::$strings["perky"] = "fesco/a"; +App::$strings["pinged"] = "ha enviado un \"ping\" a"; +App::$strings["prod"] = "una incitación "; +App::$strings["prodded"] = "ha incitado a "; +App::$strings["slap"] = "una bofetada "; +App::$strings["slapped"] = "ha abofeteado a "; +App::$strings["finger"] = "un \"finger\" "; +App::$strings["fingered"] = "envió un \"finger\" a"; +App::$strings["rebuff"] = "un reproche"; +App::$strings["rebuffed"] = "ha hecho un reproche a "; +App::$strings["happy"] = "feliz "; +App::$strings["sad"] = "triste "; +App::$strings["mellow"] = "tranquilo/a"; +App::$strings["tired"] = "cansado/a "; +App::$strings["perky"] = "vivaz"; App::$strings["angry"] = "enfadado/a"; -App::$strings["stupified"] = "estupefacto/a"; +App::$strings["stupefied"] = "asombrado/a"; App::$strings["puzzled"] = "perplejo/a"; App::$strings["interested"] = "interesado/a"; App::$strings["bitter"] = "amargado/a"; App::$strings["cheerful"] = "alegre"; -App::$strings["alive"] = "vivo/a"; +App::$strings["alive"] = "animado/a"; App::$strings["annoyed"] = "molesto/a"; App::$strings["anxious"] = "ansioso/a"; App::$strings["cranky"] = "de mal humor"; @@ -197,111 +2831,323 @@ App::$strings["September"] = "septiembre"; App::$strings["October"] = "octubre"; App::$strings["November"] = "noviembre"; App::$strings["December"] = "diciembre"; -App::$strings["unknown.???"] = "desconocido???"; -App::$strings["bytes"] = "bytes"; -App::$strings["remove category"] = "eliminar categoría"; +App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; +App::$strings["unknown"] = "desconocido"; +App::$strings["remove category"] = "eliminar el tema"; App::$strings["remove from file"] = "eliminar del fichero"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["Download binary/encrypted content"] = "Descargar contenido binario o cifrado"; App::$strings["default"] = "por defecto"; -App::$strings["Page layout"] = "Formato de la página"; -App::$strings["You can create your own with the layouts tool"] = "Puede crear su propio formato gráfico con las herramientas de diseño"; -App::$strings["Page content type"] = "Tipo de contenido de página"; -App::$strings["Select an alternate language"] = "Selecciona un idioma alternativo"; -App::$strings["photo"] = "foto"; -App::$strings["event"] = "evento"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["comment"] = "comentario"; -App::$strings["activity"] = "actividad"; -App::$strings["Design Tools"] = "Herramientas de diseño"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Menus"] = "Menús"; -App::$strings["Layouts"] = "Formato gráfico"; +App::$strings["Page layout"] = "Plantilla de la página"; +App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; +App::$strings["HTML"] = "HTML"; +App::$strings["Comanche Layout"] = "Plantilla de Comanche"; +App::$strings["PHP"] = "PHP"; +App::$strings["Page content type"] = "Tipo de contenido de la página"; +App::$strings["activity"] = "la/su actividad"; +App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, and _ only"; +App::$strings["Design Tools"] = "Herramientas de diseño web"; App::$strings["Pages"] = "Páginas"; -App::$strings["Collection"] = "Colección"; -App::$strings["parent"] = "padre"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Libreta de direcciones"; -App::$strings["Calendar"] = "Calendario"; -App::$strings["Schedule Inbox"] = "Programar bandeja de entrada"; -App::$strings["Schedule Outbox"] = "Programar bandeja de salida"; -App::$strings["Unknown"] = "Desconocido"; -App::$strings["%1\$s used"] = "%1\$s usado"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s usado de %2\$s (%3\$s%)"; -App::$strings["Files"] = "Ficheros"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Compartido"; -App::$strings["Create"] = "Crear"; -App::$strings["Upload"] = "Subir"; -App::$strings["Name"] = "Nombre"; -App::$strings["Type"] = "Tipo"; -App::$strings["Size"] = "Tamaño"; -App::$strings["Last Modified"] = "Última modificación"; -App::$strings["Delete"] = "Borrar"; -App::$strings["Create new folder"] = "Crear nueva carpeta"; -App::$strings["Upload file"] = "Subir fichero"; -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["Import website..."] = "Importar un sitio web..."; +App::$strings["Select folder to import"] = "Seleccionar la carpeta que se va a importar"; +App::$strings["Import from a zipped folder:"] = "Importar desde una carpeta comprimida: "; +App::$strings["Import from cloud files:"] = "Importar desde los ficheros en la nube: "; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/canal/ruta/a la/carpeta"; +App::$strings["Enter path to website files"] = "Ruta a los ficheros del sitio web"; +App::$strings["Select folder"] = "Seleccionar la carpeta"; +App::$strings["Export website..."] = "Exportar un sitio web..."; +App::$strings["Export to a zip file"] = "Exportar a un fichero comprimido .zip"; +App::$strings["website.zip"] = "sitio_web.zip"; +App::$strings["Enter a name for the zip file."] = "Escriba un nombre para el fichero zip."; +App::$strings["Export to cloud files"] = "Exportar a la nube de ficheros"; +App::$strings["/path/to/export/folder"] = "/ruta/para/exportar/carpeta"; +App::$strings["Enter a path to a cloud files destination."] = "Escriba una ruta de destino a la nube de ficheros."; +App::$strings["Specify folder"] = "Especificar una carpeta"; +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["Common Connections"] = "Conexiones comunes"; +App::$strings["View all %d common connections"] = "Ver todas las %d conexiones comunes"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +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["Premium channel - please visit:"] = "Canal Premium - por favor visite:"; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Remote channel or protocol unavailable."] = "Canal remoto o protocolo no disponible."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["Delete this item?"] = "¿Borrar este elemento?"; +App::$strings["%s show less"] = "%s mostrar menos"; +App::$strings["%s expand"] = "%s expandir"; +App::$strings["%s collapse"] = "%s 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"; +App::$strings["Secret Passphrase"] = "Contraseña secreta"; +App::$strings["Passphrase hint"] = "Pista de contraseña"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; +App::$strings["close all"] = "cerrar todo"; +App::$strings["Nothing new here"] = "Nada nuevo por aquí"; +App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; +App::$strings["Describe (optional)"] = "Describir (opcional)"; +App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; +App::$strings["timeago.prefixAgo"] = "hace "; +App::$strings["timeago.prefixFromNow"] = "en "; +App::$strings["timeago.suffixAgo"] = "NONE"; +App::$strings["timeago.suffixFromNow"] = "NONE"; +App::$strings["less than a minute"] = "menos de un minuto"; +App::$strings["about a minute"] = "alrededor de un minuto"; +App::$strings["%d minutes"] = "%d minutos"; +App::$strings["about an hour"] = "alrededor de una hora"; +App::$strings["about %d hours"] = "alrededor de %d horas"; +App::$strings["a day"] = "un día"; +App::$strings["%d days"] = "%d días"; +App::$strings["about a month"] = "alrededor de un mes"; +App::$strings["%d months"] = "%d meses"; +App::$strings["about a year"] = "alrededor de un año"; +App::$strings["%d years"] = "%d años"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "mayo"; +App::$strings["Jan"] = "ene"; +App::$strings["Feb"] = "feb"; +App::$strings["Mar"] = "mar"; +App::$strings["Apr"] = "abr"; +App::$strings["__ctx:short__ May"] = "may"; +App::$strings["Jun"] = "jun"; +App::$strings["Jul"] = "jul"; +App::$strings["Aug"] = "ago"; +App::$strings["Sep"] = "sep"; +App::$strings["Oct"] = "oct"; +App::$strings["Nov"] = "nov"; +App::$strings["Dec"] = "dic"; +App::$strings["Sun"] = "dom"; +App::$strings["Mon"] = "lun"; +App::$strings["Tue"] = "mar"; +App::$strings["Wed"] = "mié"; +App::$strings["Thu"] = "jue"; +App::$strings["Fri"] = "vie"; +App::$strings["Sat"] = "sáb"; +App::$strings["__ctx:calendar__ today"] = "hoy"; +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["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; +App::$strings["[no subject]"] = "[sin asunto]"; +App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; +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["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["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["[Edited %s]"] = "[se ha editado %s]"; +App::$strings["__ctx:edit_activity__ Post"] = "Publicar"; +App::$strings["__ctx:edit_activity__ Comment"] = "Comentar"; +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["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Unable to retrieve modified identity"] = "No se puede recuperar la identidad modficada"; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Change your profile photo"] = "Cambiar su foto del perfil"; +App::$strings["Trans"] = "Trans"; +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["Tags:"] = "Etiquetas:"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +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["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["Home, Voice"] = "Llamadas particulares"; +App::$strings["Home, Fax"] = "Fax particular"; +App::$strings["Work, Voice"] = "Llamadas de trabajo"; +App::$strings["Work, Fax"] = "Fax de trabajo"; App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gracias,"; -App::$strings["%s Administrator"] = "Administrador de %s"; -App::$strings["No Subject"] = "Sin asunto"; -App::$strings["General Features"] = "Características generales"; -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"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +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["Select an alternate language"] = "Seleccionar un idioma alternativo"; +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["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["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/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %1\$s element %2\$s"] = "Instalar el elemento de%1\$s%2\$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["card"] = "ficha"; +App::$strings["article"] = "el artículo"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["View article"] = "Ver el artículo"; +App::$strings["View summary"] = "Ver sumario"; +App::$strings["$1 wrote:"] = "$1 escribió:"; +App::$strings[" by "] = "por"; +App::$strings[" on "] = "en"; +App::$strings["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s da la bienvenida a %2\$s"; +App::$strings["General Features"] = "Funcionalidades básicas"; +App::$strings["Display new member quick links menu"] = "Mostrar el menú de enlaces rápidos para nuevos miembros"; App::$strings["Advanced Profiles"] = "Perfiles avanzados"; App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; 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"] = "Proporcionar un wiki para su canal"; App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders"] = "Activar una herramienta para almacenar notas y recordatorios"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; +App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; +App::$strings["Create interactive articles"] = "Crear artículos interactivos"; App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar canales directamente desde el menú de navegación desplegable"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlaza estas a un mapa."; -App::$strings["Expert Mode"] = "Modo de experto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; +App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; +App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; +App::$strings["Event Timezone Selection"] = "Selección del huso horario del evento"; +App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo."; App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Les permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -App::$strings["Post Composition Features"] = "Características de composición de entradas"; -App::$strings["Use Markdown"] = "Usar Markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio"; +App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio"; +App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas"; +App::$strings["Access Control and Permissions"] = "Control de acceso y permisos"; +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["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; +App::$strings["OAuth1 Clients"] = "Clientes OAuth1"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth1 para aplicaciones móviles y remotas."; +App::$strings["OAuth2 Clients"] = "Clientes OAuth2"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación OAuth2 para aplicaciones móviles y remotas."; +App::$strings["Access Tokens"] = "Tokens de acceso"; +App::$strings["Create access tokens so that non-members can access private content."] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado."; +App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; App::$strings["Large Photos"] = "Fotos de gran tamaño"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (640px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (320px)"; -App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; App::$strings["Even More Encryption"] = "Más cifrado todavía"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido punto-a-punto con una clave secreta compartida."; -App::$strings["Enable voting tools"] = "Activar herramientas de votación"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +App::$strings["Disable Comments"] = "Deshabilitar comentarios"; +App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios para una entrada"; +App::$strings["Delayed Posting"] = "Publicación aplazada"; +App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; +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"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; +App::$strings["Auto-save drafts of posts and comments"] = "Guardar automáticamente borradores de entradas y comentarios"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Guarda automáticamente los borradores de comentarios y publicaciones en el almacenamiento del navegador local para ayudar a evitar la pérdida accidental de composiciones."; App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; 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["Collections Filter"] = "Filtrado de colecciones"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Habilitar la muestra de entradas eligiendo colecciones"; -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"] = "Pestaña de red personal"; +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."; -App::$strings["Network New Tab"] = "Nueva pestaña de red"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre toda la actividad de la red"; +App::$strings["Network New Tab"] = "Contenido nuevo"; +App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; App::$strings["Affinity Tool"] = "Herramienta de afinidad"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrar la actividad del flujo por profundidad de relaciones"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; +App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias de amigos y conexiones"; App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones basadas en palabras clave / contenido"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -App::$strings["Post/Comment Tools"] = "Herramientas de entradas/comentarios"; -App::$strings["Tagging"] = "Etiquetado"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Categorías de entradas"; -App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Post Categories"] = "Temas de las entradas"; +App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; +App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; +App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; @@ -309,1860 +3155,105 @@ 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["Categories"] = "Categorías"; -App::$strings["Apps"] = "Aplicaciones"; -App::$strings["System"] = "Sistema"; -App::$strings["Personal"] = "Personales"; -App::$strings["Create Personal App"] = "Crear una aplicación personal"; -App::$strings["Edit Personal App"] = "Editar una aplicación personal"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -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 the channel address"] = "Introducir la dirección del canal"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Everything"] = "Todo"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Me"] = "Yo"; -App::$strings["Family"] = "Familia"; -App::$strings["Friends"] = "Amigos"; -App::$strings["Acquaintances"] = "Conocidos/as"; -App::$strings["All"] = "Todas"; -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"] = "Características adicionales"; -App::$strings["Feature/Addon settings"] = "Configuración de características o complementos"; -App::$strings["Display settings"] = "Ajustes de visualización"; -App::$strings["Connected apps"] = "Aplicaciones conectadas"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Settings"] = "Ajustes"; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Check Mail"] = "Comprobar correo"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Chat Rooms"] = "Salas de 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["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["Public Hubs"] = "Servidores públicos"; -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["Location:"] = "Ubicación:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Aviso] Nuevo correo recibido en %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s."; -App::$strings["a private message"] = "un mensaje privado"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado sobre [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentó un elemento/conversación que ha estado siguiendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Aviso] %s escribió en su página de perfil"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página de perfil en %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página de perfil[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Aviso] %s le etiquetó"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Aviso] %1\$s le ha dado un toque"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Aviso] %s etiquetó su entrada"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Aviso] Solicitud de conexión recibida"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; -App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Aviso] recibió una sugerencia de conexión"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; -App::$strings["Name:"] = "Nombre:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -App::$strings["[Red:Notify]"] = "[Red:Aviso]"; -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 entradas guardadas."; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s le gusta el %3\$s de %2\$s"; -App::$strings["Please choose"] = "Por favor, elija"; -App::$strings["Agree"] = "De acuerdo"; -App::$strings["Disagree"] = "En desacuerdo"; -App::$strings["Abstain"] = "Abstención"; -App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la ubicació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["Protocol blocked for this channel."] = "Protocolo bloqueado para este canal."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["local account not found."] = "No se ha encontrado la cuenta local."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Private Message"] = "Mensaje Privado"; -App::$strings["Select"] = "Seleccionar"; -App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["I will attend"] = "Participaré"; -App::$strings["I will not attend"] = "No participaré"; -App::$strings["I might attend"] = "Quizá participe"; -App::$strings["I agree"] = "Estoy de acuerdo"; -App::$strings["I disagree"] = "No estoy de acuerdo"; -App::$strings["I abstain"] = "Me abstengo"; -App::$strings["View all"] = "Ver todo"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Me gusta", - 1 => "Me gusta", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "No me gusta", - 1 => "No me gusta", -); -App::$strings["Add Star"] = "Destacar añadiendo una estrella"; -App::$strings["Remove Star"] = "Eliminar estrella"; -App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; -App::$strings["starred"] = "preferidas"; -App::$strings["Message signature validated"] = "Firma de mensaje validada"; -App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; -App::$strings["Add Tag"] = "Añadir etiqueta"; -App::$strings["I like this (toggle)"] = "me gusta (cambiar)"; -App::$strings["like"] = "me gusta"; -App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -App::$strings["dislike"] = "no me gusta"; -App::$strings["Share This"] = "Compartir esto"; -App::$strings["share"] = "compartir"; -App::$strings["%d comment"] = array( - 0 => "%d comentario", - 1 => "%d comentarios", -); -App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "mediante"; -App::$strings["Wall-to-Wall"] = "De página de perfil a página de perfil (de Muro a Muro)"; -App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página de perfil a página de perfil (de Muro a Muro)"; -App::$strings["from %s"] = "desde %s"; -App::$strings["last edited: %s"] = "último cambio: %s"; -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["__ctx:noun__ Likes"] = "Me gusta"; -App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; -App::$strings["Close"] = "Cerrar"; -App::$strings["Please wait"] = "Espera por favor"; -App::$strings["This is you"] = "Este es usted"; -App::$strings["Bold"] = "Negrita"; -App::$strings["Italic"] = "Itálico "; -App::$strings["Underline"] = "Subrayar"; -App::$strings["Quote"] = "Citar"; -App::$strings["Code"] = "Código"; -App::$strings["Image"] = "Imagen"; -App::$strings["Insert Link"] = "Insertar enlace"; -App::$strings["Video"] = "Vídeo"; -App::$strings["Encrypt text"] = "Cifrar texto"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la ubicación seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["Attachments:"] = "Ficheros adjuntos:"; -App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; -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 entradas y conversaciones"; -App::$strings["View Profile"] = "Ver el perfil"; -App::$strings["Your profile page"] = "Su página de perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit Profile"] = "Editar perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Chat"] = "Chat"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Login"] = "Iniciar sesión"; -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["Register"] = "Registrarse"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help"] = "Ayuda"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site content"] = "Buscar contenido del sitio"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Matrix"] = "RedMatrix"; -App::$strings["Your matrix"] = "Su red"; -App::$strings["Mark all matrix notifications seen"] = "Marcar todas las notificaciones de la red como leídas"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Connections"] = "Conexiones"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Mail"] = "Correo"; -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["Events"] = "Eventos"; -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["Channel Manager"] = "Administración de canales"; -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, content"] = "@nombre, #etiqueta, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["Tags"] = "Etiquetas"; +App::$strings["Trending"] = "Trending"; App::$strings["Keywords"] = "Palabras clave"; App::$strings["have"] = "tener"; App::$strings["has"] = "tiene"; App::$strings["want"] = "quiero"; App::$strings["wants"] = "quiere"; -App::$strings["likes"] = "le gusta"; -App::$strings["dislikes"] = "no le gusta"; -App::$strings[" and "] = "y"; -App::$strings["public profile"] = "perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió %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 actualizó %2\$s, %3\$s cambió."; -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["Can view my normal stream and posts"] = "Pueden verse mi flujo de actividad y publicaciones normales"; -App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; -App::$strings["Can view my photo albums"] = "Pueden verse mis álbumes de fotos"; -App::$strings["Can view my connections"] = "Pueden verse mis conexiones"; -App::$strings["Can view my file storage"] = "Puede verse mi repositorio de ficheros"; -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 flujo de actividad su canal"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crear 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 post photos to my photo albums"] = "Pueden publicarse fotos en mis álbumes"; -App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gustar/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 foro 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"] = "Puede escribirse en mi repositorio de ficheros"; -App::$strings["Can edit my webpages"] = "Puede editar 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["Mostly Public"] = "Público en su mayor parte"; -App::$strings["Restricted"] = "Restringido"; -App::$strings["Private"] = "Privado"; -App::$strings["Community Forum"] = "Foro de discusión"; -App::$strings["Feed Republish"] = "Republicar un \"feed\""; -App::$strings["Special Purpose"] = "Propósito especial"; -App::$strings["Celebrity/Soapbox"] = "Página para fans"; -App::$strings["Group Repository"] = "Repositorio de grupo"; -App::$strings["Other"] = "Otro"; -App::$strings["Custom/Expert Mode"] = "Modo personalizado/experto"; -App::$strings["channel"] = "canal"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no le gusta el %3\$s de %2\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s dio un toque a %2\$s"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["__ctx:title__ Likes"] = "Me gusta"; -App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; -App::$strings["__ctx:title__ Agree"] = "De acuerdo"; -App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; -App::$strings["__ctx:title__ Abstain"] = "Abstención"; -App::$strings["__ctx:title__ Attending"] = "Participaré"; -App::$strings["__ctx:title__ Not attending"] = "No participaré"; -App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; -App::$strings["View %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 la fuente original de la entrada"; -App::$strings["Follow Thread"] = "Seguir el hilo"; -App::$strings["View Status"] = "Estado actual"; -App::$strings["View Photos"] = "Ver fotos"; -App::$strings["Matrix Activity"] = "Actividad en la red de esta conexión"; -App::$strings["Edit Contact"] = "Editar contacto"; -App::$strings["Send PM"] = "Enviar Mensaje Privado"; -App::$strings["Poke"] = "Toques y otras cosas"; -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["Visible to everybody"] = "Visible para cualquiera"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Please enter a video link/URL:"] = "Por favor, introduzca un enlace de vídeo:"; -App::$strings["Please enter an audio link/URL:"] = "Por favor, introduzca un enlace de audio:"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Save to Folder:"] = "Guardar en carpeta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Compartir"; -App::$strings["Page link name"] = "Nombre de enlace de página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Upload photo"] = "Subir foto"; -App::$strings["upload photo"] = "subir foto"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["attach file"] = "adjuntar fichero"; -App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["web link"] = "enlace web"; -App::$strings["Insert video link"] = "Insertar enlace de vídeo"; -App::$strings["video link"] = "enlace de vídeo"; -App::$strings["Insert audio link"] = "Insertar enlace de audio"; -App::$strings["audio link"] = "enlace de audio"; -App::$strings["Set your location"] = "Configure su localización"; -App::$strings["set location"] = "configure localización"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Clear browser location"] = "Eliminar localización del navegador"; -App::$strings["clear location"] = "eliminar localización"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["permissions"] = "permisos"; -App::$strings["Public post"] = "Entrada pública"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Flujos 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["New"] = "Nuevas"; -App::$strings["Activity Stream - by date"] = "Flujo de actividad - 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["Channel"] = "Canal"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Sobre mí"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Files and Storage"] = "Repositorio de ficheros"; -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 => "Asistir", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No asistir", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Está de acuerdo", - 1 => "Están de acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "No está de acuerdo", - 1 => "No están de acuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); -App::$strings["Permission denied"] = "Permiso denegado"; -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 haya sido 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["Item not found."] = "Elemento no encontrado."; -App::$strings["Permission denied."] = "Acceso denegado."; -App::$strings["Collection not found."] = "Colección no encontrada."; -App::$strings["Collection is empty."] = "La colección está vacía."; -App::$strings["Collection: %s"] = "Colección: %s"; -App::$strings["Connection: %s"] = "Conexión: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -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 signatura del canal"; -App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la signatura del sitio para %s"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -App::$strings["Logged out."] = "Desconectado."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["%d invitation available"] = array( - 0 => "%d invitación pendiente", - 1 => "%d invitaciones disponibles", -); -App::$strings["Advanced"] = "Avanzado"; -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["Find"] = "Encontrar"; -App::$strings["Channel Suggestions"] = "Sugerencias de canales"; -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["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Permissions"] = "Permisos"; -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 de 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 de ruta o fichero duplicados"; -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["Unable to obtain identity information from database"] = "No ha sido posible obtener los datos de 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 usuarios 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["Requested profile is not available."] = "El perfil solicitado no está disponible."; -App::$strings["Change profile photo"] = "Cambiar foto de perfil"; -App::$strings["Profiles"] = "Perfiles"; -App::$strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Create New Profile"] = "Crear nuevo perfil"; -App::$strings["Profile Image"] = "Imagen de perfil"; -App::$strings["visible to everybody"] = "visible para cualquiera"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -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["g A l F d"] = "g A l d F"; -App::$strings["F d"] = "d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -App::$strings["Birthdays this week:"] = "Cumpleaños esta semana:"; -App::$strings["[No description]"] = "[Sin descripción]"; -App::$strings["Event Reminders"] = "Recordatorios de eventos"; -App::$strings["Events this week:"] = "Eventos de esta semana:"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Full Name:"] = "Nombre completo:"; -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["Age:"] = "Edad:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Hometown:"] = "Ciudad de origen:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["About:"] = "Sobre mí:"; -App::$strings["Hobbies/Interests:"] = "Aficciones/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:"] = "Intereses 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/amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -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"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto"; -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"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amistad beneficiosa"; -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"] = "Infiel"; -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["Site Admin"] = "Adminstrador del sitio"; -App::$strings["Address Book"] = "Libreta de direcciones"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Características"; -App::$strings["Language"] = "Idioma"; -App::$strings["Post"] = "Publicación"; -App::$strings["Profile Photo"] = "Foto de perfil"; -App::$strings["Update"] = "Actualizar"; -App::$strings["Install"] = "Instalar"; -App::$strings["Purchase"] = "Comprar"; -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["webpage"] = "página web"; -App::$strings["layout"] = "disposición"; -App::$strings["block"] = "bloque"; -App::$strings["menu"] = "menú"; -App::$strings["QR code"] = "Código QR"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió la siguiente %2\$s %3\$s"; -App::$strings["post"] = "entrada"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma diferente"; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 escribió"; -App::$strings["Missing room name"] = "Nombre de sala desaparecido."; -App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; -App::$strings["Room not found."] = "Sala no encontrada."; -App::$strings["Room is full"] = "La sala está llena."; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen es demasiado grande (%lu demás)"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Unable to process image"] = "No ha sido posible procesar la imagen"; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -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["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["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 Channels"] = "Canales delegados"; -App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["%d rating"] = array( - 0 => "%d valoración", - 1 => "%d valoraciones", -); -App::$strings["Gender: "] = "Género:"; -App::$strings["Status: "] = "Estado:"; -App::$strings["Homepage: "] = "Página personal:"; -App::$strings["Description:"] = "Descripción:"; -App::$strings["Public Forum:"] = "Foro público:"; -App::$strings["Keywords: "] = "Palabras clave:"; -App::$strings["Don't suggest"] = "No sugerir:"; -App::$strings["Common connections:"] = "Conexiones comunes:"; -App::$strings["Global Directory"] = "Directorio global:"; -App::$strings["Local Directory"] = "Directorio local:"; -App::$strings["Finding:"] = "Encontrar:"; -App::$strings["next page"] = "siguiente página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["Sort options"] = "Ordenar opciones"; -App::$strings["Alphabetic"] = "Alfabético"; -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["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["Not found."] = "No encontrado."; -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 inicia 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["Page Title"] = "Título de página"; -App::$strings["Channel added."] = "Canal añadido."; -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["Remove"] = "Eliminar"; -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 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 intrucciones 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["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 envíos 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 elemento a su perfil"; -App::$strings["Item not available."] = "Elemento no disponible"; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; -App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; -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["Image exceeds size limit of %d"] = "La imagen supera el tamaño límite de %d"; -App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; -App::$strings["Photo not available."] = "Foto no disponible."; -App::$strings["Upload File:"] = "Subir fichero:"; -App::$strings["Select a profile:"] = "Seleccionar un perfil:"; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "Omitir este paso"; -App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes"; -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["Image uploaded successfully."] = "Imagen subida correctamente."; -App::$strings["Image upload failed."] = "Subida de imagen fallida."; -App::$strings["Image size reduction [%s] failed."] = "La reducción de la imagen [%s] ha fallado."; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Channel not found."] = "Canal no encontrado."; -App::$strings["Page not found."] = "Página no encontrada."; -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["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s está de acuerdo con %3\$s de %2\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s no está de acuerdo con %3\$s de %2\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s se abstiene en %3\$s de %2\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participará en el %3\$s de %2\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s no participará en el %3\$s de %2\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s tal vez participe en el %3\$s de %2\$s"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No encontradas 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["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["calendar"] = "calendario"; -App::$strings["Create New Event"] = "Crear Nuevo Evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Export"] = "Exportar"; -App::$strings["Import"] = "Importar"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al borrar el evento"; -App::$strings["Event details"] = "Detalles del evento"; -App::$strings["Starting date and Title are required."] = "Se requieren fecha y título."; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Event Starts:"] = "Inicio del evento:"; -App::$strings["Finish date/time is not known or not relevant"] = "La fecha / hora de finalización no se conocen o no son relevantes"; -App::$strings["Event Finishes:"] = "Finalización del evento:"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de zona horaria"; -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["Title:"] = "Título:"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %2\$s de %3\$s"; -App::$strings["Public Sites"] = "Sitios públicos"; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Los sitios listados permiten el registro público de la red \$Projectname. Todos los sitios de la red están vinculados entre sí por lo que sus miembros, en ninguna 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 enlaces de los proveedores pueden proporcionar detalles adicionales."; -App::$strings["Rate this hub"] = "Valorar este sitio"; -App::$strings["Site URL"] = "Dirección del sitio"; -App::$strings["Access Type"] = "Tipo de Acceso"; -App::$strings["Registration Policy"] = "Normas de Registro"; -App::$strings["Location"] = "Localización"; -App::$strings["Project"] = "Proyecto"; -App::$strings["View hub ratings"] = "Ver las valoraciones del sitio"; -App::$strings["Rate"] = "Valorar"; -App::$strings["View ratings"] = "Ver valoraciones"; -App::$strings["Edit post"] = "Editar entrada"; -App::$strings["\$Projectname channel"] = "canal \$Projectname"; -App::$strings["Collection created."] = "Colección creada."; -App::$strings["Could not create collection."] = "No se puede crear colección."; -App::$strings["Collection updated."] = "Colección actualizada."; -App::$strings["Create a collection of channels."] = "Crear una colección de canales."; -App::$strings["Collection Name: "] = "Nombre de la colección:"; -App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -App::$strings["Collection removed."] = "Colección eliminada."; -App::$strings["Unable to remove collection."] = "No ha sido posible de eliminar la colección."; -App::$strings["Collection Editor"] = "Editor de colecciones"; -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["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones/Aplicaciones instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "Extensiones/Aplicaciones no instaladas:"; -App::$strings["\$Projectname"] = "\$Projectname"; -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["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Por favor, visite redmatrix.me para aprender más 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["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; -App::$strings["Empty post discarded."] = "Desechada entrada vacía."; -App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; -App::$strings["System error. Post not saved."] = "Error del sistema. Entrada no salvada."; -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 tope máximo de entradas"; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; -App::$strings["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Collection is empty"] = "La colección está vacía"; -App::$strings["Collection: "] = "Colección:"; -App::$strings["Connection: "] = "Conexión:"; -App::$strings["Invalid connection."] = "Conexión no válida."; -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["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -App::$strings["Blocked"] = "Bloqueadas"; -App::$strings["Ignored"] = "Ignoradas"; -App::$strings["Hidden"] = "Ocultas"; -App::$strings["Archived"] = "Archivadas"; -App::$strings["Suggest new connections"] = "Sugerir nuevas conexiones"; -App::$strings["New Connections"] = "Nuevas conexiones"; -App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; -App::$strings["All Connections"] = "Todas las conexiones"; -App::$strings["Show all connections"] = "Mostrar todas las conexiones"; -App::$strings["Unblocked"] = "Desbloqueadas"; -App::$strings["Only show unblocked connections"] = "Mostrar solo las conexiones desbloqueadas"; -App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; -App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; -App::$strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; -App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Editar conexión"; -App::$strings["Search your connections"] = "Buscar sus conexiones"; -App::$strings["Finding: "] = "Búsqueda:"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Delete item?"] = "¿Borrar el elemento?"; -App::$strings["Insert YouTube video"] = "Insertar vídeo de YouTube"; -App::$strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - Invitados: Nombre de usuario: {su dirección de correo electrónico}, Contraseña: +++"; -App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; -App::$strings["Album not found."] = "Álbum no encontrado."; -App::$strings["Delete Album"] = "Borrar álbum"; -App::$strings["Delete Photo"] = "Borrar foto"; -App::$strings["No photos selected"] = "No hay fotos seleccionadas"; -App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB usados de la capacidad de almacenamiento de fotos."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB utilizados de la capacidad de almacenamiento de fotos."; -App::$strings["Upload Photos"] = "Subir fotos"; -App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; -App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; -App::$strings["Create a status post for this upload"] = "Crear una entrada de estado para esta subida"; -App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; -App::$strings["Contact Photos"] = "Fotos de contacto"; -App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; -App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; -App::$strings["View Photo"] = "Ver foto"; -App::$strings["Edit Album"] = "Editar álbum"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -App::$strings["Photo not available"] = "Foto no disponible"; -App::$strings["Use as profile photo"] = "Usar como foto de perfil"; -App::$strings["Private Photo"] = "Foto privada"; -App::$strings["View Full Size"] = "Ver tamaño completo"; -App::$strings["Edit photo"] = "Editar foto"; -App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; -App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; -App::$strings["Caption"] = "Título"; -App::$strings["Add a Tag"] = "Añadir una etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplo: @bob, @Barbara_Gómez, @juan@ejemplo.com"; -App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; -App::$strings["In This Photo:"] = "En esta foto:"; -App::$strings["Map"] = "Mapa"; -App::$strings["View Album"] = "Ver álbum"; -App::$strings["Recent Photos"] = "Fotos recientes"; -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["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["Away"] = "Ausente"; -App::$strings["Online"] = "Conectado"; -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"; -App::$strings["Description"] = "Descripción"; -App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones de sistema"; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; -App::$strings["Layout updated."] = "Formato actualizado"; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -App::$strings["Layout not found."] = "Formato no encontrado"; -App::$strings["Module Name:"] = "Nombre del módulo:"; -App::$strings["Layout Help"] = "Ayuda para el diseño de la página"; -App::$strings["- select -"] = "- seleccionar -"; -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"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["The data provided is not compatible with this project."] = "Los datos proporcionados no son compatibles con este proyecto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear el canal porque el identificador del canal no se ha podido duplicar en este servidor."; -App::$strings["Channel clone failed. Import failed."] = "No se ha podido importar el canal porque el canal no se ha podido clonar."; -App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; -App::$strings["File to Upload"] = "Fichero para subir"; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua ubicación debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; -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["Delete layout?"] = "¿Borrar formato?"; -App::$strings["Layout Description (Optional)"] = "Descripción del formato gráfico (opcional)"; -App::$strings["Layout Name"] = "Nombre del formato"; -App::$strings["Edit Layout"] = "Modificar formato"; -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 sala"; -App::$strings["Delete This Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom Name"] = "Nombre de sala de chat"; -App::$strings["%1\$s's Chatrooms"] = "Sala de chat de %1\$s"; -App::$strings["Menu not found."] = "Menú no encontrado"; -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)"] = "(pulse para abrir/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"] = "Introduzca la dirección del enlace o seleccione 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 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["Delete webpage?"] = "¿Eliminar página web?"; -App::$strings["Page link title"] = "Título del enlace de la página"; -App::$strings["Edit Webpage"] = "Editar página web"; -App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -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["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["Delete block?"] = "¿Borrar este bloque?"; -App::$strings["Edit Block"] = "Modificar este bloque"; -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 Red"] = "Únase a nosotros en RedMatrix"; -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ó la entrega 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ónica, 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: "] = "Debe proporcionar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier lugar del \$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 visite"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; -App::$strings["Location not found."] = "Localización no encontrada."; -App::$strings["Primary location cannot be removed."] = "La localización primaria no puede ser eliminada."; -App::$strings["No locations found."] = "Ninguna localización encontrada."; -App::$strings["Manage Channel Locations"] = "Gestionar localizaciones del canal"; -App::$strings["Location (address)"] = "Localización (dirección)"; -App::$strings["Primary Location"] = "Localización primaria"; -App::$strings["Drop location"] = "Eliminar localización"; -App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los clontenidos. Ningún canal ha sido seleccionado."; -App::$strings["Source created."] = "Fuente creada."; -App::$strings["Source updated."] = "Fuente actualizada."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; -App::$strings["New Source"] = "Nueva fuente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal, y distribuirlo de acuerdo con sus ajustes."; -App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; -App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; -App::$strings["Channel Name"] = "Nombre del canal"; -App::$strings["Source not found."] = "Fuente no encontrada"; -App::$strings["Edit Source"] = "Editar fuente"; -App::$strings["Delete Source"] = "Eliminar fuente"; -App::$strings["Source removed"] = "Fuente eliminada"; -App::$strings["Unable to remove source."] = "Imposible eliminar la fuente."; -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["Drop"] = "Eliminar"; -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["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["Permission Denied."] = "Permiso denegado"; -App::$strings["File not found."] = "Fichero no encontrado."; -App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; -App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; -App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; -App::$strings["Return to file list"] = "Volver a la lista de ficheros"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; -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["Contact not found."] = "Contacto no encontrado"; -App::$strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo."; -App::$strings["Suggest Friends"] = "Sugerir amigos"; -App::$strings["Suggest a friend for %s"] = "Sugerir un amigo a %s"; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["poke, prod or do other things to somebody"] = "dar un toque, incitar u 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["Invalid profile identifier."] = "Identificador de perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadir o eliminar."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "Creado el nuevo perfil."; -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["Gender"] = "Género"; -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 contact/friend list from viewers of this profile?"] = "¿Ocultar su lista de contactos a los visitantes de este perfil?"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este 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["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Profile Name:"] = "Nombre del perfil:"; -App::$strings["Your Full Name:"] = "Su nombre completo:"; -App::$strings["Title/Description:"] = "Título/Descripción:"; -App::$strings["Your Gender:"] = "Su género:"; -App::$strings["Birthday :"] = "Cumpleaños:"; -App::$strings["Street Address:"] = "Calle:"; -App::$strings["Locality/City:"] = "Ciudad:"; -App::$strings["Postal/Zip Code:"] = "Código postal:"; -App::$strings["Country:"] = "País:"; -App::$strings["Region/State:"] = "Región/Estado:"; -App::$strings[" Marital Status:"] = " Estado sentimental:"; -App::$strings["Who: (if applicable)"] = "Quién: (si es aplicable)"; -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["Homepage URL:"] = "Dirección de la página personal:"; -App::$strings["Religious Views:"] = "Creencias religiosas:"; -App::$strings["Keywords:"] = "Palabras clave:"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Used in directory listings"] = "Visible en el directorio público del canal"; -App::$strings["Tell us about yourself..."] = "Háblenos de usted..."; -App::$strings["Hobbies/Interests"] = "Aficiones/Intereses"; -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/amorosa"; -App::$strings["Work/employment"] = "Trabajo"; -App::$strings["School/education"] = "Estudios"; -App::$strings["This is your default profile."] = "Este es su perfil principal."; +App::$strings["likes"] = "gusta de"; +App::$strings["dislikes"] = "no gusta de"; +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["Birthday"] = "Cumpleaños"; App::$strings["Age: "] = "Edad:"; -App::$strings["Edit/Manage Profiles"] = "Modificar/gestionar perfiles"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Include desirable objects in your profile"] = "Añadir objetos interesantes en su perfil"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; -App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; -App::$strings["Could not create table."] = "No se puede crear la tabla."; -App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Verificación del sistema"; -App::$strings["Check again"] = "Verificar de nuevo"; -App::$strings["Database connection"] = "Conexión a la base de datos"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; -App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; -App::$strings["Default is localhost"] = "Por defecto es localhost"; -App::$strings["Database Port"] = "Puerto de la base de datos"; -App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - usar 0 como valor por defecto"; -App::$strings["Database Login Name"] = "Nombre de acceso a la base de datos"; -App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; -App::$strings["Database Name"] = "Nombre de la base de datos"; -App::$strings["Database Type"] = "Tipo de base de datos"; -App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; -App::$strings["Website URL"] = "Dirección del sitio web"; -App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; -App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones la zona horaria por defecto de su sitio web"; -App::$strings["Site settings"] = "Ajustes del sitio"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor 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."] = "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá ejecutar votaciones en segundo plano vía cron."; -App::$strings["PHP executable path"] = "ruta del ejecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; -App::$strings["Command line PHP"] = "PHP en línea de comandos"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; -App::$strings["PHP upload limits"] = "Límites PHP de subida"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; -App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; -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."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; -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 no 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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "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 Red."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red 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."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Red."; -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 al fichero de plantilla (.tpl) que contiene."; -App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -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 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."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; -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["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 la direcciones funciona correctamente"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; -App::$strings["

What next

"] = "

Siguiente paso

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para las actualizaciones."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado la %3\$s de %2\$s con %4\$s"; -App::$strings["No connections."] = "Sin conexiones."; -App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +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["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["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["Take me home"] = "Volver a la página principal"; +App::$strings["Log me out of this site"] = "Salir de este sitio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Buscar en el sitio @nombre, !foro, #tag, ?docs, contenido"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@nombre, !foro, #tag, ?docs, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; +App::$strings["Add Apps"] = "Añadir aplicaciones"; +App::$strings["Arrange Apps"] = "Organizar aplicaciones"; +App::$strings["Toggle System Apps"] = "Alternar aplicaciones de sistema"; +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["Theme settings updated."] = "Ajustes del tema actualizados."; -App::$strings["Site"] = "Sitio"; -App::$strings["Accounts"] = "Cuentas"; -App::$strings["Channels"] = "Canales"; -App::$strings["Plugins"] = "Extensiones"; -App::$strings["Themes"] = "Temas"; -App::$strings["Inspect queue"] = "Examinar la cola"; -App::$strings["Profile Config"] = "Ajustes del perfil"; -App::$strings["DB updates"] = "Actualizaciones de la base de datos"; -App::$strings["Logs"] = "Informes"; -App::$strings["Plugin Features"] = "Ajustes de la extensión"; -App::$strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación"; -App::$strings["# Accounts"] = "# Cuentas"; -App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; -App::$strings["# expired accounts"] = "# cuentas caducadas"; -App::$strings["# expiring accounts"] = "# cuentas que caducan"; -App::$strings["# Channels"] = "# Canales"; -App::$strings["# primary"] = "# primario"; -App::$strings["# clones"] = "# clones"; -App::$strings["Message queues"] = "Mensajes en cola"; -App::$strings["Administration"] = "Administración"; -App::$strings["Summary"] = "Sumario"; -App::$strings["Registered accounts"] = "Cuentas registradas"; -App::$strings["Pending registrations"] = "Registros pendientes"; -App::$strings["Registered channels"] = "Canales registrados"; -App::$strings["Active plugins"] = "Extensiones activas"; -App::$strings["Version"] = "Versión"; -App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; -App::$strings["mobile"] = "móvil"; -App::$strings["experimental"] = "experimental"; -App::$strings["unsupported"] = "no soportado"; -App::$strings["Yes - with approval"] = "Sí - con aprobación"; -App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; -App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; -App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; -App::$strings["Registration"] = "Registro"; -App::$strings["File upload"] = "Fichero subido"; -App::$strings["Policies"] = "Políticas"; -App::$strings["Site name"] = "Nombre del sitio"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Información del Administrador"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; -App::$strings["System language"] = "Idioma del sistema"; -App::$strings["System theme"] = "Tema gráfico del sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar ajustes del tema"; -App::$strings["Mobile system theme"] = "Tema del sistema para móviles"; -App::$strings["Theme for mobile devices"] = "Tema para aparatos móviles"; -App::$strings["Enable Diaspora Protocol"] = "Activar el protocolo de la red social Diaspora"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Comunicar con Diaspora y Friendica - experimental"; -App::$strings["Allow Feeds as Connections"] = "Permitir flujos RSS como conexiones"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; -App::$strings["Maximum image size"] = "Tamaño máximo de imagen"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; -App::$strings["Register text"] = "Texto del registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; -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."] = "ejemplo: 'public' para mostrar contenido público de los usuarios, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; -App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -App::$strings["Accounts abandoned after x days"] = "Cuentas abandonados después de x días"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; -App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; -App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; -App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; -App::$strings["Block public"] = "Bloquear página pública"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Activar para bloquear el acceso público a todas las páginas públicas personales en este sitio salvo que estén identificadas en el sistema."; -App::$strings["Verify Email Addresses"] = "Verificar direcciones de correo electrónico"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; -App::$strings["Force publish"] = "Forzar la publicación"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; -App::$strings["Disable discovery tab"] = "Desactivar la pestaña \"Descubrir\""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio."; -App::$strings["login on Homepage"] = "acceso a la página personal"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; -App::$strings["Proxy user"] = "Usuario del proxy"; -App::$strings["Proxy URL"] = "Dirección del proxy"; -App::$strings["Network timeout"] = "Tiempo de espera de la red"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; -App::$strings["Delivery interval"] = "Intervalo de entrega"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar los procesos de entrega en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para hosts compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; -App::$strings["Poll interval"] = "Intervalo de sondeo"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el sondeo en segundo plano en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega."; -App::$strings["Maximum Load Average"] = "Carga media máxima"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y sondeo se hayan retardado - por defecto, 50."; -App::$strings["Expiration period in days for imported (matrix/network) content"] = "Periodo de caducidad en días para el contenido importado (red)"; -App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -App::$strings["No server found"] = "Servidor no encontrado"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "por canal"; -App::$strings["on server"] = "en el servidor"; -App::$strings["Status"] = "Estado"; -App::$strings["Server"] = "Servidor"; -App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; -App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; -App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; -App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; -App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; -App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; -App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; -App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; -App::$strings["Queue Statistics"] = "Estadísticas de la cola"; -App::$strings["Total Entries"] = "Total de entradas"; -App::$strings["Priority"] = "Prioridad"; -App::$strings["Destination URL"] = "Dirección de destino"; -App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; -App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; -App::$strings["Last known contact"] = "Último contacto conocido"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s cuenta bloqueada/desbloqueada", - 1 => "%s cuenta bloqueada/desbloqueada", -); -App::$strings["%s account deleted"] = array( - 0 => "%s cuentas eliminadas", - 1 => "%s cuentas eliminadas", -); -App::$strings["Account not found"] = "Cuenta no encontrada"; -App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; -App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; -App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["Users"] = "Usuarios"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["User registrations waiting for confirm"] = "Registros de usuario en espera de aprobación"; -App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["No registrations."] = "Sin registros."; -App::$strings["Approve"] = "Aprobar"; -App::$strings["Deny"] = "Rechazar"; -App::$strings["Block"] = "Bloquear"; -App::$strings["Unblock"] = "Desbloquear"; -App::$strings["Register date"] = "Fecha de registro"; -App::$strings["Last login"] = "Último acceso"; -App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Clase de servicio"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canales censurados/no censurados", - 1 => "%s canales censurados/no censurados", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s código permitido/no permitido al canal", - 1 => "%s código permitido/no permitido al canal", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canales eliminados", - 1 => "%s canales eliminados", -); -App::$strings["Channel not found"] = "Canal no encontrado"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; -App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; -App::$strings["Censor"] = "Censurar"; -App::$strings["Uncensor"] = "No censurar"; -App::$strings["Allow Code"] = "Permitir código"; -App::$strings["Disallow Code"] = "No permitir código"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; -App::$strings["Plugin %s enabled."] = "Extensión %s activada."; -App::$strings["Disable"] = "Desactivar"; -App::$strings["Enable"] = "Activar"; -App::$strings["Toggle"] = "Cambiar"; -App::$strings["Author: "] = "Autor:"; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["No themes found."] = "No se han encontrado temas."; -App::$strings["Screenshot"] = "Instantánea de pantalla"; -App::$strings["[Experimental]"] = "[Experimental]"; -App::$strings["[Unsupported]"] = "[No soportado]"; -App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; -App::$strings["Clear"] = "Vaciar"; -App::$strings["Debugging"] = "Depuración"; -App::$strings["Log file"] = "Fichero de informe"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Debe tener permisos de escritura para el servidor web. Ruta relativa al directorio raíz de Red."; -App::$strings["Log level"] = "Nivel de depuración"; -App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; -App::$strings["Field nickname"] = "Alias del campo"; -App::$strings["System name of field"] = "Nombre del campo en el sistema"; -App::$strings["Input type"] = "Tipo de entrada"; -App::$strings["Field Name"] = "Nombre del campo"; -App::$strings["Label on profile pages"] = "Etiqueta a mostrar en las páginas del perfil"; -App::$strings["Help text"] = "Texto de ayuda"; -App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; -App::$strings["Field definition not found"] = "Definición del campo no encontrada"; -App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; -App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; -App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; -App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; -App::$strings["Registration on this site/hub is by approval only."] = "El registro en este servidor/hub está sometido a aprobación previa."; -App::$strings["Register at another affiliated site/hub"] = "Inscribirse en un servidor/hub afiliado"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana."; -App::$strings["Terms of Service"] = "Términos del servicio"; -App::$strings["I accept the %s for this website"] = "Acepto los %s de este sitio"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; -App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; -App::$strings["Please enter your invitation code"] = "Por favor, introduzca el código de su invitación"; -App::$strings["Your email address"] = "Su dirección de correo electrónico"; -App::$strings["Choose a password"] = "Elija una contraseña"; -App::$strings["Please re-enter your password"] = "Por favor, vuelva a escribir su contraseña"; -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"; -App::$strings["WARNING: "] = "ATENCIÓN:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; -App::$strings["This action is permanent and can not be undone!"] = "¡Esta acción tiene carácter definitivo y no se puede deshacer!"; -App::$strings["Please enter your password for verification:"] = "Por favor, introduzca su contraseña para su verificación:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; -App::$strings["Remove Account"] = "Eliminar cuenta"; +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["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["Delegation session ended."] = "Finalizó la sesión de la delegación."; +App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Email validation is incomplete. Please check your email."] = "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico."; +App::$strings["Failed authentication"] = "Autenticación fallida."; App::$strings["Help:"] = "Ayuda:"; App::$strings["Not Found"] = "No encontrado"; -App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -App::$strings["[Embedded content - reload page to view]"] = "[Contenido incorporado - recargue la página para poder verlo]"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Name is required"] = "El nombre es obligatorio"; -App::$strings["Key and Secret are required"] = "Clave y Secreto son obligatorios"; -App::$strings["Diaspora Policy Settings updated."] = "Configuración de directivas de Diaspora actualizada."; -App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; -App::$strings["Password changed."] = "Constraseña cambiada."; -App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; -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."; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Add application"] = "Añadir aplicación"; -App::$strings["Name of application"] = "Nombre de la aplicación"; -App::$strings["Consumer Key"] = "Clave de consumidor"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -App::$strings["Consumer Secret"] = "Clave secreta de consumidor"; -App::$strings["Redirect"] = "Redirigir"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera"; -App::$strings["Icon url"] = "dirección del icono"; -App::$strings["Optional"] = "Opcional"; -App::$strings["You can't edit this application."] = "No puede modificar esta aplicación."; -App::$strings["Connected Apps"] = "Aplicaciones conectadas"; -App::$strings["Client key starts with"] = "La clave de cliente empieza por"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Eliminar autorización"; -App::$strings["No feature settings configured"] = "No se ha establecido la configuración de características"; -App::$strings["Feature/Addon Settings"] = "Ajustes de la característica o el complemento"; -App::$strings["Settings for the built-in Diaspora emulator"] = "Configuración para el emulador de Diaspora incorporado"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permitir a cualquier miembro de Diaspora comentar en sus publicaciones públicas"; -App::$strings["Enable the Diaspora protocol for this channel"] = "Activar el protocolo de Diaspora para este canal"; -App::$strings["Diaspora Policy Settings"] = "Configuración de directivas de Diaspora"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedir que sus \"hashtags\" sean redirigidos a otros sitios "; -App::$strings["Account Settings"] = "Configuración de la cuenta"; -App::$strings["Enter New Password:"] = "Introduzca la nueva contraseña:"; -App::$strings["Confirm New Password:"] = "Confirme la nueva contraseña:"; -App::$strings["Leave password fields blank unless changing"] = "Dejar en blanco los campos de contraseña a menos que cambie"; -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["Off"] = "Desactivado"; -App::$strings["On"] = "Activado"; -App::$strings["Additional Features"] = "Características adicionales"; -App::$strings["Connector Settings"] = "Configuración del conector"; -App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Ajustes de visualización"; -App::$strings["Theme Settings"] = "Ajustes del tema"; -App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; -App::$strings["Content Settings"] = "Ajustes del contenido"; -App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; -App::$strings["Mobile Theme:"] = "Tema para el móvil:"; -App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; -App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; -App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; -App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; -App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de diseño de página del sistema - (avanzado)"; -App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -App::$strings["Use blog/list mode on matrix page"] = "Mostrar la red en modo blog/lista"; -App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -App::$strings["click to expand content exceeding this height"] = "Pulsa para expandir el contenido que excede esta altura"; -App::$strings["Matrix page max height of content (in pixels)"] = "Altura máxima del contenido de la página de la red (en píxeles)"; -App::$strings["Nobody except yourself"] = "Nadie excepto tú"; -App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; -App::$strings["Approved connections"] = "Conexiones aprobadas"; -App::$strings["Any connections"] = "Cualquier conexión"; -App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; -App::$strings["Anybody in this network"] = "Cualquiera en esta red"; -App::$strings["Anybody authenticated"] = "Cualquiera que esté autenticado"; -App::$strings["Anybody on the internet"] = "Cualquiera en internet"; -App::$strings["Publish your default profile in the network directory"] = "Publicar su perfil principal en el directorio de la red"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?"; -App::$strings["Your channel address is"] = "Su dirección de canal es"; -App::$strings["Channel Settings"] = "Ajustes del canal"; -App::$strings["Basic Settings"] = "Configuración básica"; -App::$strings["Your Timezone:"] = "Su zona horaria:"; -App::$strings["Default Post Location:"] = "Ubicación de publicación predeterminada:"; -App::$strings["Geographical location to display on your posts"] = "Ubicación geográfica que debe mostrarse en sus publicaciones"; -App::$strings["Use Browser Location:"] = "Usar la localización del navegador:"; -App::$strings["Adult Content"] = "Contenido solo para adultos"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; -App::$strings["Hide my online presence"] = "Ocultra mi presencia en línea"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; -App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; -App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; -App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; -App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; -App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otro canal después de este número de días"; -App::$strings["0 or blank prevents expiration"] = "0 o en claro evitan la caducidad"; -App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; -App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Post Permissions"] = "Permidos de publicación predeterminados"; -App::$strings["Channel permissions category:"] = "Categoría de permisos del canal:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; -App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; -App::$strings["Notification Settings"] = "Configuración de notificaciones"; -App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; -App::$strings["accepting a friend request"] = "acepte una solicitud de amistad"; -App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; -App::$strings["making an interesting profile change"] = "realice un cambio interesante en su perfil"; -App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; -App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; -App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; -App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (muro)"; -App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; -App::$strings["You receive a private message"] = "Reciba un mensaje privado"; -App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; -App::$strings["You are tagged in a post"] = "Usted ha sido etiquetado en una publicación"; -App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una entrada"; -App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -App::$strings["Unseen matrix activity"] = "Actividad no vista en la red"; -App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; -App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; -App::$strings["Recommended"] = "Recomendado"; -App::$strings["Upcoming events"] = "Próximos eventos"; -App::$strings["Events today"] = "Eventos de hoy"; -App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; -App::$strings["Not available in all themes"] = "No disponible en todos los temas"; -App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; -App::$strings["System info messages"] = "Mensajes de información del sistema"; -App::$strings["System critical alerts"] = "Alertas críticas del sistema"; -App::$strings["New connections"] = "Nuevas conexiones"; -App::$strings["System Registrations"] = "Registros del sistema"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; -App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; -App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Activar modo experto (en Ajustes > Características Adicionales) para ajustar."; -App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; -App::$strings["Remove Channel"] = "Eliminar canal"; -App::$strings["Remove this channel."] = "Eliminar este canal."; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Profile Photo 16px"] = "Foto de perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto de perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto de perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto de perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto de perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto de perfil 128px"; -App::$strings["Timezone"] = "Zona horaria"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -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["Conversation removed."] = "Conversación eliminada."; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -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 or month:"] = "Exporta sus entradas de un año o mes determinados."; -App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "También puede exportar sus entradas y conversaciones de un año o mes en particular. Hágalo en primer lugar con uno de los años o meses más recientes."; -App::$strings["Jan"] = "Ene"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Abr"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Ago"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Oct"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dic"; -App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, inténtelo de nuevo seleccionando un rango de fechas más pequeño."; -App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; %1\$s/2013 or the month September 2013; %1\$s/2013/9"] = "Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Por ejemlo, el año 2013: %1\$s/2013 o el mes de septiembre de 2013: %1\$s/2013/9"; -App::$strings["Please visit"] = "Por favor, visite"; -App::$strings["on another hub to import the backup files(s)."] = "en otro servidor hub para importar el fichero (s) de copia de seguridad."; -App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "Aviso: al clonar el canal en un nuevo servidor hub, en primer lugar tiene que importar el fichero (s) con las copias de seguridad (desde el mismo canal) en orden cronológico. Importar los ficheros de copia de seguridad en otro canal le dará, con toda seguridad, problemas de permisos."; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["Total votes"] = "Total de votos"; -App::$strings["Average Rating"] = "Valoración media"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Channel"] = "Eliminar este canal"; -App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; -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["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."; -App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -App::$strings["is now connected to"] = "ahora está conectado a"; -App::$strings["Could not access address book record."] = "No se pudo acceder a la entrada en su libreta de direcciones."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar actualmente el canal"; -App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; -App::$strings["View %s's profile"] = "Ver el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recargar los permisos"; -App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -App::$strings["Recent Activity"] = "Actividad reciente"; -App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -App::$strings["Unignore"] = "Dejar de ignorar"; -App::$strings["Ignore"] = "Ignorar"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -App::$strings["Unarchive"] = "Desarchivar"; -App::$strings["Archive"] = "Archivar"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -App::$strings["This connection is archived!"] = "¡Esta conexión está archivada!"; -App::$strings["Unhide"] = "Mostrar"; -App::$strings["Hide"] = "Ocultar"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -App::$strings["Delete this connection"] = "Eliminar esta conexión"; -App::$strings["Approve this connection"] = "Aprobar esta conexión"; -App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -App::$strings["Set Affinity"] = "Ajustar Afinidad"; -App::$strings["Set Profile"] = "Ajustar Perfil"; -App::$strings["Set Affinity & Profile"] = "Ajustar Afinidad y Perfil"; -App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -App::$strings["This connection's address is"] = "La dirección de esta conexión es"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; -App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; -App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -App::$strings["Custom Filter"] = "Filtro Personalizado"; -App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "Palabras, una por línea o #etiquetas o /patrones/, dejar en blanco para importar todas las entradas"; -App::$strings["Do not import posts with this text"] = "No importar entradas que contienen este texto"; -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["Connection Request"] = "Solicitud de conexión"; -App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) desearía conectar con usted. por favor, apruebe esta conexión para permitir la comunicación."; -App::$strings["Approve Later"] = "Aprobar más tarde"; -App::$strings["inherited"] = "heredado"; -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"; -App::$strings["Individual Permissions"] = "Permisos individuales"; -App::$strings["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."] = "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í."; -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 impacto hasta que cambie los ajustes heredados."; -App::$strings["Last update:"] = "Última actualización:"; -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["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["Message deleted."] = "Mensaje eliminado."; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Send"] = "Enviar"; -App::$strings["Message not found."] = "No se encuentra el mensaje."; -App::$strings["Delete message"] = "Mensaje eliminado"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Private Conversation"] = "Conversación privada"; -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 de perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Please login."] = "Por favor, inicie sesión."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; -App::$strings["Add a Channel"] = "Añadir un canal"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal está formado por su propia colección de páginas web relacionadas. Se puede utilizar para almacenar los perfiles sociales de la red, blogs, grupos de conversación y foros, páginas de famosos y mucho más. Puede crear tantos canales como su proveedor de servicio permita."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Ejemplos: \"Juan García\", \"Isabel y sus caballos\", \"Fútbol\", \"Grupo de parapente\" "; -App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Su alias podrá usarse para crear una dirección de canal fácilmente memorizable (como una dirección de correo electrónico) que puede ser compartido con otros."; -App::$strings["Or import an existing channel from another location"] = "O importar un canal existente de otro lugar"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Elija el tipo de canal (como red social o foro de discusión) y la privacidad que requiera, así podremos seleccionar el mejor conjunto de permisos para usted"; -App::$strings["Channel Type"] = "Tipo de canal"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -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"] = "Ubicación (URL) de la aplicación"; -App::$strings["Photo icon URL"] = "Dirección del icono que se va a utilizar para esta foto"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Version ID"] = "Versión"; -App::$strings["Price of app"] = "Precio de la aplicación"; -App::$strings["Location (URL) to purchase app"] = "Ubicación (URL) donde adquirir la aplicación"; -App::$strings["sent you a private message"] = "enviarle un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["posted an event"] = "publicó un evento"; -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 del formato"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; -App::$strings["Lorem Ipsum"] = "Lorem Ipsum"; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis Marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -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 inoperante su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; -App::$strings["Poll"] = "Sondear"; -App::$strings["View Results"] = "Mostrar resultados"; -App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; -App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; -App::$strings["NEW"] = "NUEVO"; -App::$strings["Remove all files"] = "Borrar todos los ficheros"; -App::$strings["Remove this file"] = "Borrar este fichero"; -App::$strings["Schema Default"] = "Esquema predeterminado"; -App::$strings["Sans-Serif"] = "Sans-Serif"; -App::$strings["Monospace"] = "Monospace"; -App::$strings["Theme settings"] = "Ajustes del tema"; -App::$strings["Set scheme"] = "Ajustar esquema"; -App::$strings["Set font-size for posts and comments"] = "Ajustar el tamaño del tipo de letra para entradas y comentarios"; -App::$strings["Set font face"] = "Ajustar el tipo de letra"; -App::$strings["Set iconset"] = "Ajustar el conjunto de iconos"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Ajustar el sombreado grande, por defecto 15px 15px 15px"; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Ajustar el sombreado pequeño, por defecto 5px 5px 5px"; -App::$strings["Set shadow color, default #000"] = "Ajustar el color del sombreado, predeterminado a #000"; -App::$strings["Set radius size, default 5px"] = "Ajusta el tamaño del radio, predeterminado a 5px"; -App::$strings["Set line-height for posts and comments"] = "Ajustar la altura de linea para entradas y comentarios"; -App::$strings["Set background image"] = "Ajustar la imagen de fondo"; -App::$strings["Set background attachment"] = "Ajustar el fondo adjuntado"; -App::$strings["Set background color"] = "Ajustar el color de fondo"; -App::$strings["Set section background image"] = "Ajustar la imagen de la sección del fondo"; -App::$strings["Set section background color"] = "Ajustar el color de la sección del fondo"; -App::$strings["Set color of items - use hex"] = "Ajustar el color de los elementos - utilizar código hexadecimal"; -App::$strings["Set color of links - use hex"] = "Ajusta el color de los enlaces - utilizar código hexadecimal"; -App::$strings["Set max-width for items. Default 400px"] = "Ajustar la anchura máxima para los elementos. Predeterminado a 400px"; -App::$strings["Set min-width for items. Default 240px"] = "Ajustar la anchura mínima para los elementos. Predeterminado a 240px"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Ajustar el ancho de la envoltura del contenido genérico. Predeterminado 48%"; -App::$strings["Set color of fonts - use hex"] = "Ajustar el color del tipo de letra - utiliza código hexadecimal"; -App::$strings["Set background-size element"] = "Ajustar el tamaño de fondo del elemento"; -App::$strings["Item opacity"] = "Opacidad del elemento"; -App::$strings["Display post previews only"] = "Mostrar solo las previsualizaciones de las entradas"; -App::$strings["Display side bar on channel page"] = "Muestra la barra lateral en la página del canal"; -App::$strings["Colour of the navigation bar"] = "Color de la barra de navegación"; -App::$strings["Item float"] = "Elemento flotante"; -App::$strings["Left offset of the section element"] = "Desplazamiento izquierdo del elemento de la sección"; -App::$strings["Right offset of the section element"] = "Desplazamiento derecho del elemento de la sección"; -App::$strings["Section width"] = "Ancho de la sección"; -App::$strings["Left offset of the aside"] = "Desplazamiento izquierdo del panel lateral"; -App::$strings["Right offset of the aside element"] = "Desplazamiento derecho del elemento del panel lateral"; -App::$strings["Light (Red Matrix default)"] = "Ligero (predeterminado de RedMatrix)"; -App::$strings["Select scheme"] = "Elegir un esquema"; -App::$strings["Narrow navbar"] = "Estrechar la barra de navegación"; -App::$strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; -App::$strings["Navigation bar gradient top color"] = "Color superior del gradiente de la barra de navegación"; -App::$strings["Navigation bar gradient bottom color"] = "Color inferior del gradiente de la barra de navegación"; -App::$strings["Navigation active button gradient top color"] = "Color superior del gradiente del botón activo de navegación"; -App::$strings["Navigation active button gradient bottom color"] = "Color inferior del gradiente del botón activo de navegación"; -App::$strings["Navigation bar border color "] = "Color del borde de la barra de navegación"; -App::$strings["Navigation bar icon color "] = "Color del icono de la barra de navegación"; -App::$strings["Navigation bar active icon color "] = "Color del icono activo de la barra de navegación"; -App::$strings["link color"] = "Color del enlace"; -App::$strings["Set font-color for banner"] = "Ajustar el color del tipo de letra para el \"banner\""; -App::$strings["Set the background color"] = "Ajustar el color de fondo"; -App::$strings["Set the background image"] = "Ajustar la imagen de fondo"; -App::$strings["Set the background color of items"] = "Ajustar el color de los elementos de fondo"; -App::$strings["Set the background color of comments"] = "Ajustar el color de fondo de los comentarios"; -App::$strings["Set the border color of comments"] = "Ajustar el color del borde de los comentarios"; -App::$strings["Set the indent for comments"] = "Ajustar la indentación de los comentarios"; -App::$strings["Set the basic color for item icons"] = "Ajustar el color básico para los iconos de los elementos"; -App::$strings["Set the hover color for item icons"] = "Ajustar el color flotante para los iconos de los elementos"; -App::$strings["Set font-size for the entire application"] = "Ajustar el tamaño de letra para toda la aplicación"; -App::$strings["Example: 14px"] = "Ejemplo: 14px"; -App::$strings["Set font-color for posts and comments"] = "Establecer el color de la letra para publicaciones y comentarios"; -App::$strings["Set radius of corners"] = "Establecer el radio de curvatura de las esquinas"; -App::$strings["Set shadow depth of photos"] = "Ajustar la profundidad de sombras de las fotos"; -App::$strings["Set maximum width of content region in pixel"] = "Ajustar la anchura máxima de la región de contenido, en pixels"; -App::$strings["Leave empty for default width"] = "Dejar en blanco para la anchura predeterminada"; -App::$strings["Center page content"] = "Contenido del centro de la página"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Ajustar la opacidad mínima de la barra de navegación - para ocultarla"; -App::$strings["Set size of conversation author photo"] = "Ajustar el tamaño de la foto del autor de la conversación"; -App::$strings["Set size of followup author photos"] = "Ajustar el tamaño de foto de los seguidores del autor"; -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 Red Matrix"] = "Crear una cuenta para acceder a los servicios y aplicaciones dentro de la red"; -App::$strings["Password"] = "Contraseña"; -App::$strings["Remember me"] = "Recordarme"; -App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; -App::$strings["toggle mobile"] = "cambiar a modo móvil"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, corríjalo."; -App::$strings["[red] Website SSL error for %s"] = "[red] Error SSL del sitio web en %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Las tareas del Planificador/Cron no están funcionando."; -App::$strings["[red] Cron tasks not running on %s"] = "[red] Las tareas de Cron no están funcionando en %s"; diff --git a/view/fr/hmessages.po b/view/fr/hmessages.po deleted file mode 100644 index c5263c2df..000000000 --- a/view/fr/hmessages.po +++ /dev/null @@ -1,14315 +0,0 @@ -# hubzilla -# Copyright (C) 2012-2016 hubzilla -# This file is distributed under the same license as the hubzilla package. -# -# Translators: -# kris1373 , 2015-2016 -# marlo , 2018 -# Philip Wittamore , 2018 -# Pierre Boudes , 2018 -# rmonret , 2016 -# rmonret , 2017-2018 -# Seraph Ino, 2016 -msgid "" -msgstr "" -"Project-Id-Version: Redmatrix\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-23 11:34+0200\n" -"PO-Revision-Date: 2018-05-26 07:06+0000\n" -"Last-Translator: Philip Wittamore \n" -"Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Peut voir mon canal et mes publications" - -#: ../../Zotlabs/Access/Permissions.php:57 -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:58 -msgid "Can view my default channel profile" -msgstr "Peut voir le profil par défaut du canal" - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "Peut voir mes contacts" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "Peut voir mes fichiers et photos" - -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" -msgstr "Peut télécharger/modifier mes fichiers et mes photos" - -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can view my channel webpages" -msgstr "Peut voir les pages web de mon canal" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" -msgstr "Peut voir les pages de mon wiki" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" -msgstr "Peut créer ou modifier les pages web de mon canal" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" -msgstr "Peut écrire sur mon wiki" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" -msgstr "Peut poster sur mon canal (\"mur\")" - -#: ../../Zotlabs/Access/Permissions.php:67 -msgid "Can comment on or like my posts" -msgstr "Peuvent commenter et/ou aimer mes publications" - -#: ../../Zotlabs/Access/Permissions.php:68 -msgid "Can send me private mail messages" -msgstr "Peuvent m'envoyer des messages privés" - -#: ../../Zotlabs/Access/Permissions.php:69 -msgid "Can like/dislike profiles and profile things" -msgstr "Peut aimer ou détester des profils" - -#: ../../Zotlabs/Access/Permissions.php:70 -msgid "Can forward to all my channel connections via @+ mentions in posts" -msgstr "Peut faire suivre à tous mes contacts avec la mention @+ dans une publication" - -#: ../../Zotlabs/Access/Permissions.php:71 -msgid "Can chat with me" -msgstr "Peut discuter avec moi" - -#: ../../Zotlabs/Access/Permissions.php:72 -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:73 -msgid "Can administer my channel" -msgstr "Peut administrer mon canal" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "Réseau social" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "Sociale - Fédération" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "Social - principalement public" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "Social - restreint" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "Social - privé" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "Forum communautaire" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "Forum - principalement public" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "Forum - restreint" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "Forum - privé" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "Republication de flux" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "Flux - principalement public" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "Flux - restreint" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "Utilisation spécifique" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "Spécial - célébrité/vitrine" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "Spécial - dépôt partagé" - -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 -#: ../../Zotlabs/Module/Settings/Channel.php:479 -#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:697 -#: ../../include/connections.php:704 -msgid "Other" -msgstr "Autre" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "Mode expert/spécifique" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 -msgid "Requested profile is not available." -msgstr "Profil demandé non disponible." - -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 -#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:91 -#: ../../Zotlabs/Module/New_channel.php:116 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Settings/Features.php:38 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:281 -#: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 -#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 -#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 -#: ../../include/attach.php:197 ../../include/attach.php:270 -#: ../../include/attach.php:284 ../../include/attach.php:293 -#: ../../include/attach.php:366 ../../include/attach.php:380 -#: ../../include/attach.php:387 ../../include/attach.php:469 -#: ../../include/attach.php:1029 ../../include/attach.php:1103 -#: ../../include/attach.php:1268 ../../include/items.php:3706 -#: ../../include/photos.php:27 -msgid "Permission denied." -msgstr "Accès refusé." - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "Nom du Bloc" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 -msgid "Blocks" -msgstr "Blocs" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titre du bloc" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 -msgid "Created" -msgstr "Créé(e)" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 -msgid "Edited" -msgstr "Modifié(e)" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "Créer" - -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 -#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../include/menu.php:113 -msgid "Edit" -msgstr "Modifier" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 -#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../include/conversation.php:1366 -msgid "Share" -msgstr "Partager" - -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 -#: ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 -#: ../../include/conversation.php:690 ../../include/conversation.php:733 -msgid "Delete" -msgstr "Supprimer" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 -msgid "View" -msgstr "Voir" - -#: ../../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:67 -msgid "Please join us on $Projectname" -msgstr "Rejoignez-nous sur $Projectname" - -#: ../../Zotlabs/Module/Invite.php:77 -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:82 -#: ../../addon/notifyadmin/notifyadmin.php:40 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Échec de distribution du message." - -#: ../../Zotlabs/Module/Invite.php:86 -#, 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:107 -msgid "You have no more invitations available" -msgstr "Vous ne disposez plus d'aucune invitation" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses de courriel, une par ligne :" - -#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 -msgid "Your message:" -msgstr "Votre message :" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "Please join my community on $Projectname." -msgstr "Rejoignez ma communauté sur $Projectname." - -#: ../../Zotlabs/Module/Invite.php:143 -msgid "You will need to supply this invitation code:" -msgstr "Vous devrez fournir le code suivant :" - -#: ../../Zotlabs/Module/Invite.php:144 -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:146 -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:147 -msgid "or visit" -msgstr "ou rendez-vous sur" - -#: ../../Zotlabs/Module/Invite.php:149 -msgid "3. Click [Connect]" -msgstr "3. Cliquez sur [Ajouter]" - -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Appman.php:153 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 -#: ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:296 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 -#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:97 -#: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 -#: ../../addon/planets/planets.php:153 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 -#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:825 -#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 -#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 -#: ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:168 -#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 -#: ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 -#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 -#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 -#: ../../addon/flattrwidget/flattrwidget.php:124 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:380 -#: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 -#: ../../addon/twitter/twitter.php:265 -#: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 -#: ../../addon/pageheader/pageheader.php:48 -#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 -#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 -#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 -msgid "Submit" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 -#: ../../include/nav.php:469 -msgid "Articles" -msgstr "Articles" - -#: ../../Zotlabs/Module/Articles.php:95 -msgid "Add Article" -msgstr "Ajouter article" - -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 -#: ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "Élément introuvable" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "Nom de la mise en page" - -#: ../../Zotlabs/Module/Editlayout.php:129 -#: ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "Description de la mise en page (facultatif)" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "Modifier la mise en page" - -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 -#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 -#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:358 -msgid "Permission denied" -msgstr "Accès refusé" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Éditeur de visibilité de profil" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "Visible par" - -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:200 -msgid "All Connections" -msgstr "Tous les contacts" - -#: ../../Zotlabs/Module/Cdav.php:785 -msgid "INVALID EVENT DISMISSED!" -msgstr "ÉVÉNEMENT INVALIDE REJETÉ!" - -#: ../../Zotlabs/Module/Cdav.php:786 -msgid "Summary: " -msgstr "Sommaire :" - -#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 -#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 -#: ../../include/conversation.php:1160 -msgid "Unknown" -msgstr "Inconnu" - -#: ../../Zotlabs/Module/Cdav.php:787 -msgid "Date: " -msgstr "Date :" - -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 -msgid "Reason: " -msgstr "Raison :" - -#: ../../Zotlabs/Module/Cdav.php:793 -msgid "INVALID CARD DISMISSED!" -msgstr "ÉVÉNEMENT INVALIDE REJETÉ!" - -#: ../../Zotlabs/Module/Cdav.php:794 -msgid "Name: " -msgstr "Nom :" - -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 -msgid "Event title" -msgstr "Titre de l'événement" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 -msgid "Start date and time" -msgstr "Date et heure de début" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "Exemple : YYYY-MM-DD HH:mm" - -#: ../../Zotlabs/Module/Cdav.php:870 -msgid "End date and time" -msgstr "Date et heure de fin" - -#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../addon/rendezvous/rendezvous.php:173 -msgid "Description" -msgstr "Description" - -#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "Emplacement" - -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 -msgid "Previous" -msgstr "Précédent" - -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Photos.php:980 -msgid "Next" -msgstr "Suivant" - -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 -msgid "Today" -msgstr "Aujourd'hui" - -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 -msgid "Month" -msgstr "Mois" - -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 -msgid "Week" -msgstr "Semaine" - -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 -msgid "Day" -msgstr "Jour" - -#: ../../Zotlabs/Module/Cdav.php:885 -msgid "List month" -msgstr "Liste mois" - -#: ../../Zotlabs/Module/Cdav.php:886 -msgid "List week" -msgstr "Liste semaine" - -#: ../../Zotlabs/Module/Cdav.php:887 -msgid "List day" -msgstr "Liste jour" - -#: ../../Zotlabs/Module/Cdav.php:894 -msgid "More" -msgstr "Plus" - -#: ../../Zotlabs/Module/Cdav.php:895 -msgid "Less" -msgstr "Moins" - -#: ../../Zotlabs/Module/Cdav.php:896 -msgid "Select calendar" -msgstr "Sélectionner un calendrier" - -#: ../../Zotlabs/Module/Cdav.php:898 -msgid "Delete all" -msgstr "Tout supprimer" - -#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Admin/Plugins.php:423 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 -msgid "Cancel" -msgstr "Annuler" - -#: ../../Zotlabs/Module/Cdav.php:900 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "Désolé ! L'édition d'événements récurrents n'est pas encore implémenté." - -#: ../../Zotlabs/Module/Cdav.php:1170 -#: ../../Zotlabs/Module/Sharedwithme.php:105 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:283 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../addon/rendezvous/rendezvous.php:172 -msgid "Name" -msgstr "Nom" - -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 -msgid "Organisation" -msgstr "Organisation" - -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 -msgid "Title" -msgstr "Titre" - -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "Téléphone" - -#: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 -msgid "Email" -msgstr "Courriel" - -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "Instant messenger" - -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "Site web" - -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "Adresse" - -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "Note" - -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 -#: ../../include/connections.php:690 -msgid "Mobile" -msgstr "Mobile" - -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 -#: ../../include/connections.php:691 -msgid "Home" -msgstr "Mon canal" - -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 -#: ../../include/connections.php:694 -msgid "Work" -msgstr "Travail" - -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/jappixmini.php:368 -msgid "Add Contact" -msgstr "Ajouter un contact" - -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "Ajouter un champ" - -#: ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Admin/Plugins.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:39 -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Lib/Apps.php:393 -msgid "Update" -msgstr "Mise à jour" - -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 -msgid "P.O. Box" -msgstr "P.O. Box" - -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 -msgid "Additional" -msgstr "Information complémentaires" - -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 -msgid "Street" -msgstr "Rue" - -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 -msgid "Locality" -msgstr "Localité" - -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 -msgid "Region" -msgstr "Région" - -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 -msgid "ZIP Code" -msgstr "ZIP code" - -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "Pays" - -#: ../../Zotlabs/Module/Cdav.php:1242 -msgid "Default Calendar" -msgstr "Agenda par défaut" - -#: ../../Zotlabs/Module/Cdav.php:1252 -msgid "Default Addressbook" -msgstr "Carnet d'adresses par défaut" - -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Ce site n'est pas un serveur d'annuaire" - -#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 -msgid "You must be logged in to see this page." -msgstr "Vous devez vous connecter pour voir cette page." - -#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "Publications et commentaires" - -#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "Seulement les publications" - -#: ../../Zotlabs/Module/Channel.php:107 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Droits d'accès insuffisants. Demande redirigée vers la page du profil." - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "Exporter le canal" - -#: ../../Zotlabs/Module/Uexport.php:59 -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, droits d'accès, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "Exporter le contenu" - -#: ../../Zotlabs/Module/Uexport.php:61 -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 tous vos contacts, droits d'accès, 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/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "Exporter vos publications d'une année en particulier" - -#: ../../Zotlabs/Module/Uexport.php:65 -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/Uexport.php:66 -#, 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:67 -#, 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:68 -#, 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/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "Bienvenue sur Hubzilla !" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "Vous n'avez aucune publication non-vue..." - -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1051 ../../include/text.php:1063 -#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 -msgid "Search" -msgstr "Recherche" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "Eléments étiquetés avec : %s" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "Résultats de recherche pour : %s" - -#: ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:131 -msgid "Public Stream" -msgstr "Flux public" - -#: ../../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 ../../Zotlabs/Module/Admin.php:111 -msgid "Primary" -msgstr "Primaire" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Supprimer" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Synchronisez maintenant" - -#: ../../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/Apporder.php:44 -msgid "Change Order of Pinned Navbar Apps" -msgstr "Changer l'ordre des applications épinglées" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of App Tray Apps" -msgstr "Changer l'ordre des applications du menu" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the" -" navbar" -msgstr "Utilisez les flèches pour déplacer l'application correspondante à gauche (en haut) ou à droite (en bas) dans la barre de navigation." - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "Utilisez les flèches pour déplacer l'application correspondante vers le haut ou vers le bas dans le panneau d'applications." - -#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 -msgid "Menu not found." -msgstr "Menu introuvable." - -#: ../../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:120 ../../Zotlabs/Module/Menu.php:166 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Introuvable." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Droits d'accès de l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nom du lien" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Lien ou sous-menu cible" - -#: ../../Zotlabs/Module/Mitem.php:161 -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:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Utiliser l'authentification distante, quand disponible" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:259 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "No" -msgstr "Non" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:261 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 -#: ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 -#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "Yes" -msgstr "Oui" - -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Ouvrir le lien dans une nouvelle fenêtre" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordre dans la liste" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -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:165 -msgid "Submit and finish" -msgstr "Vadiler et terminer" - -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Valider et continuer" - -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu :" - -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Cible du lien" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifier le menu" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifier l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Supprimer l'entrée" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nouvelle entrée" - -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Éditer ce bloc de menu" - -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Ajouter une entrée au menu" - -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Supprimer cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifier cette entrée du menu" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "Entrée de menu introuvable." - -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "Entrée de menu supprimée." - -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "Impossible de supprimer l'entrée de menu." - -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifier l'entrée de menu" - -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Texte du lien" - -#: ../../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:110 -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:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "Impossible de générer l'aperçu." - -#: ../../Zotlabs/Module/Events.php:119 -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:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "Événement introuvable." - -#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 -#: ../../include/text.php:2008 ../../include/event.php:1153 -msgid "event" -msgstr "événement" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "Modifier le titre de l'événement" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 -#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "Requis" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "Modifier la catégorie" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "Catégorie" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "Modifier la date et l'heure de début" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -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:469 -msgid "Edit finish date and time" -msgstr "Modifier la date et l'heure de fin" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "Date et heure de fin" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "Ajuster au fuseau horaire du visiteur" - -#: ../../Zotlabs/Module/Events.php:471 -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:473 -msgid "Edit Description" -msgstr "Modifier la description" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Modifier l'emplacement" - -#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 -#: ../../include/conversation.php:1333 -msgid "Preview" -msgstr "Aperçu" - -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 -msgid "Permission settings" -msgstr "Gérer les droits d'accès" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "Fuseau horaire :" - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "Options avancées" - -#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 -msgid "l, F j" -msgstr "l, F j" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "Supprimer l'événement" - -#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1827 -msgid "Link to Source" -msgstr "Lien vers la Source" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "calendrier" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Edit Event" -msgstr "Modifier l'événement" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Create Event" -msgstr "Créer un événement" - -#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1647 -msgid "Export" -msgstr "Export" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "Événement supprimé" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "Impossible de supprimer l'événement" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "Application installée." - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "Application mal formée." - -#: ../../Zotlabs/Module/Appman.php:130 -msgid "Embed code" -msgstr "Imbriquer le code" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Edit App" -msgstr "Modifier l'application" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Create App" -msgstr "Créer une application" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Name of app" -msgstr "Nom de l'application" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Location (URL) of app" -msgstr "Emplacement (URL) de l'application" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Photo icon URL" -msgstr "URL de l'icône à utiliser pour cette photo" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - facultatif" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Categories (optional, comma separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Version ID" -msgstr "Identifiant de version" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Price of app" -msgstr "Prix de l'application" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Location (URL) to purchase app" -msgstr "Emplacement (URL) pour l'achat de l'application" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Merci de vous connecter." - -#: ../../Zotlabs/Module/Magic.php:72 -msgid "Hub not found." -msgstr "Hub introuvable." - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 -#: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 -#: ../../include/conversation.php:116 ../../include/text.php:2005 -msgid "photo" -msgstr "photo" - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 -#: ../../include/conversation.php:144 ../../include/text.php:2011 -msgid "status" -msgstr "état" - -#: ../../Zotlabs/Module/Subthread.php:142 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s suit %3$s de %2$s" - -#: ../../Zotlabs/Module/Subthread.php:144 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ne suit plus %3$s de %2$s" - -#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Card_edit.php:44 -msgid "Channel not found." -msgstr "Canal introuvable." - -#: ../../Zotlabs/Module/Article_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../include/conversation.php:1278 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../include/conversation.php:1401 -msgid "Title (optional)" -msgstr "Titre (facultatif)" - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "Éditer l'article" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 -msgid "Nothing to import." -msgstr "Rien à importer." - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 -#: ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Impossible de récupérer les données de l'ancien serveur" - -#: ../../Zotlabs/Module/Import_items.php:77 -#: ../../Zotlabs/Module/Import.php:102 -msgid "Imported file is empty." -msgstr "Le fichier importé est vide." - -#: ../../Zotlabs/Module/Import_items.php:93 -#, 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_items.php:108 -msgid "Import completed" -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "Importer" - -#: ../../Zotlabs/Module/Import_items.php:126 -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/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:517 -msgid "File to Upload" -msgstr "Fichier à envoyer" - -#: ../../Zotlabs/Module/New_channel.php:133 -#: ../../Zotlabs/Module/Manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -msgid "Name or caption" -msgstr "Nom ou libellé" - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -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:148 -#: ../../Zotlabs/Module/Register.php:256 -msgid "Choose a short nickname" -msgstr "Choisissez un alias" - -#: ../../Zotlabs/Module/New_channel.php:148 -#: ../../Zotlabs/Module/Register.php:256 -#, 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:149 -#: ../../Zotlabs/Module/Settings/Channel.php:539 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Channel role and privacy" -msgstr "Rôle et confidentialité du canal" - -#: ../../Zotlabs/Module/New_channel.php:149 -#: ../../Zotlabs/Module/Register.php:257 -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:149 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Read more about roles" -msgstr "En savoir plus sur les rôles" - -#: ../../Zotlabs/Module/New_channel.php:152 -msgid "Create Channel" -msgstr "Créer le canal" - -#: ../../Zotlabs/Module/New_channel.php:153 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed," -" and many other things. Channels can make connections with other channels to" -" share information with each other." -msgstr "Un canal est une identité réseau unique. Il peut représenter une personne (profil de réseau social), un forum (groupe), une page commerciale ou de célébrités, un flux d'informations et bien d'autres choses. Les canaux peuvent établir des connexions avec d'autres canaux pour partager l'information entre eux." - -#: ../../Zotlabs/Module/New_channel.php:153 -msgid "" -"The type of channel you create affects the basic privacy settings, the " -"permissions that are granted to connections/friends, and also the channel's " -"visibility across the network." -msgstr "Le type de canal que vous créez affecte les paramètres de confidentialité de base, les permissions accordées aux connexions/amis, ainsi que la visibilité du canal sur le réseau." - -#: ../../Zotlabs/Module/New_channel.php:154 -msgid "" -"or import an existing channel from another location." -msgstr "ou importer un canal existant d'un autre serveur." - -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Validate" -msgstr "Valider" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte." - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Supprimer ce canal" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "AVERTISSEMENT :" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Ce canal sera complètement supprimé du réseau." - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Cette action est permanente et irréversible !" - -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification :" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Supprimer ce canal ainsi que tous ses clones sur le réseau" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:600 -msgid "Remove Channel" -msgstr "Supprimer le canal" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Files: shared with me" -msgstr "Fichiers : partagés avec moi" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -msgid "NEW" -msgstr "NOUVEAU" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 -msgid "Size" -msgstr "Taille" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:286 -msgid "Last Modified" -msgstr "Modifié le" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove all files" -msgstr "Supprimer tous les fichiers" - -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove this file" -msgstr "Supprimer ce fichier" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "Serveur $Projectname - configuration" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "Impossible de se connecter à la base de données." - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS." - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "Impossible de créer la table." - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "La base de données de votre site a été installée." - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)." - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "Vérification du système" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "Re-vérifier" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "Connexion à la base de données" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Pour installer $Projectname, nous avons besoin de savoir comment se connecter à votre base de données." - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres." - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "Nom du serveur de base de données" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "Par défaut 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "Port de la base de données" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "Identifiant de connexion à la Base de Données" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "Mot de passe de connexion à la Base de Données" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "Nom de la Base de Données" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "Type de base de données" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "Adresse de courriel de l'administrateur du site" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web." - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "URL du site web" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "Veuillez utiliser SSL/TLS (https) si disponible." - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "Veuillez choisir un fuseau horaire par défaut pour votre site" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "Paramètres du site" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP version 5.5 ou supérieur est requis" - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "Version de PHP" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web." - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron." - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "Chemin vers l'éxecutable PHP" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans." - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "PHP en ligne de commande (CLI)" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "Impossible de vérifier la ligne de commande PHP, car shell_exec () est désactivé. Ceci est nécessaire." - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "Elle est nécessaire pour la distribution des messages." - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../Zotlabs/Module/Setup.php:446 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois." - -#: ../../Zotlabs/Module/Setup.php:451 -msgid "You can adjust these settings in the server php.ini file." -msgstr "Vous pouvez ajuster ces paramètres dans le fichier php.ini du serveur." - -#: ../../Zotlabs/Module/Setup.php:453 -msgid "PHP upload limits" -msgstr "Limites de téléversement de PHP" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement" - -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"." - -#: ../../Zotlabs/Module/Setup.php:480 -msgid "Generate encryption keys" -msgstr "Générer les clefs de chiffrement" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "libCurl PHP module" -msgstr "module PHP libCurl" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "GD graphics PHP module" -msgstr "module PHP GD graphics" - -#: ../../Zotlabs/Module/Setup.php:499 -msgid "OpenSSL PHP module" -msgstr "module PHP OpenSSL" - -#: ../../Zotlabs/Module/Setup.php:500 -msgid "PDO database PHP module" -msgstr "module PDO de la base de données PHP" - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "mb_string PHP module" -msgstr "module PHP mb_string" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "xml PHP module" -msgstr "module PHP xml" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "zip PHP module" -msgstr "module zip PHP" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" -msgstr "module Apache mod_rewrite" - -#: ../../Zotlabs/Module/Setup.php:507 -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:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" -msgstr "exécuter" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "Erreur: exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" -msgstr "shell_exec" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Erreur: shell_exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini" - -#: ../../Zotlabs/Module/Setup.php:527 -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:531 -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:535 -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:539 -msgid "Error: PDO database PHP module required but not installed." -msgstr "Erreur: le module PDO de base de données PHP est requis mais n'est pas installé." - -#: ../../Zotlabs/Module/Setup.php:543 -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:547 -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:551 -msgid "Error: zip PHP module required but not installed." -msgstr "Erreur : le module zip de PHP est requis, mais pas installé." - -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 -msgid ".htconfig.php is writable" -msgstr "Le fichier .htconfig.php est accessible en écriture" - -#: ../../Zotlabs/Module/Setup.php:575 -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:576 -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 d'accès, à 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:577 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "Merci de vous reporter à install/INSTALL.txt pour des informations supplémentaires." - -#: ../../Zotlabs/Module/Setup.php:593 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "Ce logiciel utilise Smarty3 comme moteur de modèles pour afficher ses vues Web. Smarty3 compile ses modèles en PHP pour accélérer le rendu." - -#: ../../Zotlabs/Module/Setup.php:594 -#, 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 "Afin de stocker ces modèles compilés, le serveur Web doit disposer d'un accès en écriture au répertoire %s selon le dossier Web racine." - -#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 -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:596 -#, 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:599 -#, php-format -msgid "%s is writable" -msgstr "Permission d'écriture sur %s activée" - -#: ../../Zotlabs/Module/Setup.php:615 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level" -" web folder" -msgstr "Ce logiciel utilise le répertoire de stockage pour enregistrer les fichiers téléversés. Le serveur Web doit disposer d'un accès en écriture au répertoire de stockage selon le dossier web racine." - -#: ../../Zotlabs/Module/Setup.php:619 -msgid "store is writable" -msgstr "'store' est accessible en écriture" - -#: ../../Zotlabs/Module/Setup.php:651 -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:652 -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:653 -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:654 -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:655 -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:656 -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:658 -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 "Si vous êtes certain que le certificat est valide et signé par une autorité de confiance, vérifiez si l'installation d'un certificat intermédiaire aurait échoué. Ceux-ci ne sont normalement pas requis par les navigateurs, mais ils sont requis pour les communications entre serveurs." - -#: ../../Zotlabs/Module/Setup.php:660 -msgid "SSL certificate validation" -msgstr "Validation du certificat SSL/TLS" - -#: ../../Zotlabs/Module/Setup.php:666 -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:669 -msgid "Url rewrite is working" -msgstr "La réécriture d'URL fonctionne" - -#: ../../Zotlabs/Module/Setup.php:683 -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:707 -#: ../../addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "Erreurs rencontrées pendant la création de tables de BDD." - -#: ../../Zotlabs/Module/Setup.php:747 -msgid "

What next?

" -msgstr "

Et maintenant ?

" - -#: ../../Zotlabs/Module/Setup.php:748 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau." - -#: ../../Zotlabs/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/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "Statistiques de file d'attente" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "Nombre d'entrées total" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "Priorité" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "URL de destination" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "Marquer le hub comme étant hors ligne de manière permanente" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "Vider la file d'attente pour ce hub" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "Dernier contact connu" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "Off" -msgstr "Inactif" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "On" -msgstr "Actif" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Verrouiller fonctionnalité %s" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Gérer les fonctionnalités additionnelles" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "La mise à jour a été marquée comme réussie" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La mise à jour %s a été appliquée avec succès." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "La fonction de mise à jour %s est introuvable." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Mises à jour défaillantes" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "Tenter de réaliser cette étape de mise à jour automatiquement" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "Aucune mise à jour défaillante." - -#: ../../Zotlabs/Module/Admin/Plugins.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:453 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3619 -msgid "Item not found." -msgstr "Élément introuvable" - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "Greffon %s désactivé." - -#: ../../Zotlabs/Module/Admin/Plugins.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "Greffon %s activé." - -#: ../../Zotlabs/Module/Admin/Plugins.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "Désactiver" - -#: ../../Zotlabs/Module/Admin/Plugins.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "Activer" - -#: ../../Zotlabs/Module/Admin/Plugins.php:341 -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Administration" -msgstr "Administration" - -#: ../../Zotlabs/Module/Admin/Plugins.php:342 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -#: ../../Zotlabs/Widget/Admin.php:27 -msgid "Plugins" -msgstr "Greffons" - -#: ../../Zotlabs/Module/Admin/Plugins.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "(Dés)activer" - -#: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 -#: ../../include/nav.php:192 -msgid "Settings" -msgstr "Paramètres" - -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "Auteur :" - -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "Maintenu par :" - -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -msgid "Minimum project version: " -msgstr "Version minimum du projet :" - -#: ../../Zotlabs/Module/Admin/Plugins.php:354 -msgid "Maximum project version: " -msgstr "Version maximum du projet :" - -#: ../../Zotlabs/Module/Admin/Plugins.php:355 -msgid "Minimum PHP version: " -msgstr "Version minimum de PHP :" - -#: ../../Zotlabs/Module/Admin/Plugins.php:356 -msgid "Compatible Server Roles: " -msgstr "Rôles du serveur " - -#: ../../Zotlabs/Module/Admin/Plugins.php:357 -msgid "Requires: " -msgstr "Requiert :" - -#: ../../Zotlabs/Module/Admin/Plugins.php:358 -#: ../../Zotlabs/Module/Admin/Plugins.php:442 -msgid "Disabled - version incompatibility" -msgstr "Désactivé - version incompatible" - -#: ../../Zotlabs/Module/Admin/Plugins.php:411 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Entrer l'URL du dépôt git public pour les greffons" - -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Plugin repo git URL" -msgstr "URL du git pour les plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "Custom repo name" -msgstr "Nom du dépôt" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "(optional)" -msgstr "(en option)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -msgid "Download Plugin Repo" -msgstr "Télécharger l'extension" - -#: ../../Zotlabs/Module/Admin/Plugins.php:421 -msgid "Install new repo" -msgstr "Installer un nouveau dépôt" - -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 -msgid "Install" -msgstr "Installer" - -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -msgid "Manage Repos" -msgstr "Gérer les dépôts" - -#: ../../Zotlabs/Module/Admin/Plugins.php:446 -msgid "Installed Plugin Repositories" -msgstr "Dépôt des extensions installées" - -#: ../../Zotlabs/Module/Admin/Plugins.php:447 -msgid "Install a New Plugin Repository" -msgstr "Installer un nouveau dépôt pour extensions" - -#: ../../Zotlabs/Module/Admin/Plugins.php:454 -msgid "Switch branch" -msgstr "Changer de branche" - -#: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/superblock.php:116 -msgid "Remove" -msgstr "Retirer" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s compte bloqué/débloqué" -msgstr[1] "%s comptes bloqués/débloqués" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s compte supprimé" -msgstr[1] "%s comptes supprimés" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "Compte introuvable" - -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 -#, php-format -msgid "Account '%s' deleted" -msgstr "Compte '%s' supprimé" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "Compte '%s' bloqué" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Compte '%s' débloqué" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "Comptes" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "tout sélectionner" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Inscriptions en attente d'approbation" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "Date de la demande" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 -msgid "Approve" -msgstr "Approuver" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:26 -msgid "Deny" -msgstr "Refuser" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Block" -msgstr "Bloquer" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Unblock" -msgstr "Débloquer" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "Identifiant" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 -msgid "All Channels" -msgstr "Tous les canaux" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "Date d'inscription" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "Dernière connexion" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "Expire le" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "Classe de service" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "Paramètres du journal mis à jour." - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "Journaux" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Vider" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Débogage" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "Fichier du journal" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Doit être permettre d'écrire par le serveur web. En relation avec le répertoire de votre site." - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Niveau de journalisation" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canal censuré/dé-censuré" -msgstr[1] "%s canaux censurés/dé-censurés" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "code autorisé/interdit pour %s canal" -msgstr[1] "code autorisé/interdit pour %s canaux" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal supprimé" -msgstr[1] "%s canaux supprimés" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "Canal introuvable" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' supprimé" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censuré" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' non censuré" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code autorisé pour le canal '%s'" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code interdit pour le canal '%s'" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "Canaux" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "Censurer" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "Ne plus censurer" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "Autoriser le code" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "Interdire le code" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1811 ../../include/nav.php:378 -msgid "Channel" -msgstr "Canal" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "UID" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les canaux sélectionnés seront supprimés !\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé !\\n\\nÊtes-vous sûr ?" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Le canal {0} sera supprimé !\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé !\\n\\nÊtes-vous sûr(e) ?" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "Paramètres du thème mis à jour." - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "Aucun thème trouvé." - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "Capture d'écran" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "Thèmes" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "[Expérimental]" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "[Non maintenu]" - -#: ../../Zotlabs/Module/Admin/Site.php:165 -msgid "Site settings updated." -msgstr "Paramètres du site sauvegardés." - -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 -msgid "Default" -msgstr "Défaut" - -#: ../../Zotlabs/Module/Admin/Site.php:202 -#: ../../Zotlabs/Module/Settings/Display.php:130 -#, php-format -msgid "%s - (Incompatible)" -msgstr "%s - (Incompatible)" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "mobile" -msgstr "mobile" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "experimental" -msgstr "expérimental" - -#: ../../Zotlabs/Module/Admin/Site.php:213 -msgid "unsupported" -msgstr "non maintenu" - -#: ../../Zotlabs/Module/Admin/Site.php:260 -msgid "Yes - with approval" -msgstr "Oui - avec approbation" - -#: ../../Zotlabs/Module/Admin/Site.php:266 -msgid "My site is not a public server" -msgstr "Mon site n'est pas un serveur public" - -#: ../../Zotlabs/Module/Admin/Site.php:267 -msgid "My site has paid access only" -msgstr "Mon site est à accès payant uniquement" - -#: ../../Zotlabs/Module/Admin/Site.php:268 -msgid "My site has free access only" -msgstr "Mon site est gratuit uniquement" - -#: ../../Zotlabs/Module/Admin/Site.php:269 -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/Site.php:281 -msgid "Beginner/Basic" -msgstr "Pour débutant/ de base" - -#: ../../Zotlabs/Module/Admin/Site.php:282 -msgid "Novice - not skilled but willing to learn" -msgstr "Novice - pas qualifiés, mais prêt à apprendre" - -#: ../../Zotlabs/Module/Admin/Site.php:283 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermédiaire - assez confortable" - -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Advanced - very comfortable" -msgstr "Niveau avancé - trés confortable" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Expert - I can write computer code" -msgstr "Niveau expert - Je peux programmer" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Wizard - I probably know more than you do" -msgstr "Crack - J'en sais probablement plus que beaucoup" - -#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "Site" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../Zotlabs/Module/Register.php:269 -msgid "Registration" -msgstr "Inscription" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "File upload" -msgstr "Envoi de fichier" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Policies" -msgstr "Stratégies" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avancé" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -#: ../../addon/statusnet/statusnet.php:891 -msgid "Site name" -msgstr "Nom du site" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Site default technical skill level" -msgstr "Niveau technique par défaut pour le site" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Utilisé pour fournir une expérience utilisateur correspondant au niveau de confort technique" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Lock the technical skill level setting" -msgstr "Bloque le niveau technique du paramétrage" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Members can set their own technical comfort level by default" -msgstr "Les utilisateurs peuvent paramétrer leur propre niveau technique." - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Banner/Logo" -msgstr "Bannière/logo" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "Autoriser le HTML/CSS/JS non filtré" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Administrator Information" -msgstr "Informations de l'administrateur" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Information" -msgstr "Site information" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Description du site visible publiquement. Affiché sur la page d'information du site. BBCode peut être utilisé ici." - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "System language" -msgstr "Langue du système" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "System theme" -msgstr "Thème du système" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Allow Feeds as Connections" -msgstr "Autoriser les Flux (RSS) comme contacts" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "(Heavy system resource usage)" -msgstr "(Impact important sur les ressources)" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Maximum image size" -msgstr "Taille maximale des images" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite." - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Does this site allow new member registration?" -msgstr "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site ?" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Invitation only" -msgstr "Sur invitation seulement" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"." - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age" -msgstr "Âge minimum" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age (in years) for who may register on this site." -msgstr "Âge minimum (en années) pour les personnes pouvant s'inscrire sur ce site." - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Quelle est la meilleure description des types de comptes proposés sur ce hub ?" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Register text" -msgstr "Texte d'inscription" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Will be displayed prominently on the registration page." -msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription." - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Page d'accueil du site à montrer aux visiteurs (par défaut : boîte de dialogue de connexion)" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "exemple :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier." - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Preserve site homepage URL" -msgstr "Préserver l'adresse d'accueil du site" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps." - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Allowed friend domains" -msgstr "Domaines amicaux autorisés" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Verify Email Addresses" -msgstr "Demander vérification des adresses de courriel" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)." - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Force publish" -msgstr "Publicité forcée" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire." - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Import Public Streams" -msgstr "Flux publics importés" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention : ce contenu n'est pas modéré." - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Site only Public Streams" -msgstr "Flux publics du site seulement" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "Autoriser l'accès au contenu public provenant uniquement de ce site si les flux publics importés sont désactivés." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "Permettre à n'importe qui sur Internet d'accéder aux flux publics." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "Désactiver l'authentification avant l'affichage. Attention : ce contenu n'est pas modéré." - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Login on Homepage" -msgstr "Connexion sur la page d'accueil" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré." - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Enable context help" -msgstr "Permettre l'aide contextuelle" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Afficher l'aide contextuel en cliquant sur le bouton aide." - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Reply-to email address for system generated email." -msgstr "Adresse courriel de retour pour les courriels générés par l'application." - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "Sender (From) email address for system generated email." -msgstr "Adresse courriel de l'expéditeur (champ \"De\") pour les courriels générés par l'application." - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Name of email sender for system generated email." -msgstr "Nom ou courriel de l'expéditeur pour les courriels générés par l'application." - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Directory Server URL" -msgstr "URL du serveur d'annuaire" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Default directory server" -msgstr "Serveur d'annuaire par défaut" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Proxy user" -msgstr "Utilisateur du proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Proxy URL" -msgstr "URL du proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Network timeout" -msgstr "Délai maximal du réseau" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)." - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Delivery interval" -msgstr "Intervalle de distribution" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés." - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Deliveries per process" -msgstr "Distributions par processus" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé:1-5." - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Queue Threshold" -msgstr "Seuil de file d'attente" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "Reportez toujours la livraison immédiate si la file d'attente contient plus que ce nombre d'entrées." - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "Poll interval" -msgstr "Intervalle de scrutation" - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution." - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "Path to ImageMagick convert program" -msgstr "Chemin d'accès au programme \"convert\" de ImageMagick" - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "Si cette option est activée, utilisez ce programme pour générer des vignettes de photos pour des images géantes ( > 4000 pixels dans l'une ou l'autre dimension), sinon la mémoire risque de s'épuiser. Exemple : /usr/bin/convert" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "Allow SVG thumbnails in file browser" -msgstr "Autoriser les vignettes SVG dans le navigateur de fichiers" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "WARNING: SVG images may contain malicious code." -msgstr "ATTENTION : les images SVG peuvent contenir du code malveillant." - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Maximum Load Average" -msgstr "Charge maximale moyenne" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50." - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Délai d'expiration en jours pour le contenu importé (grille/réseau)" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "0 for no expiration of imported content" -msgstr "0 pour ne pas expirer le contenu importé" - -#: ../../Zotlabs/Module/Admin/Site.php:353 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "Ne pas considérer comme expirés les messages qui ont reçu des commentaires depuis moins de ce nombre de jours" - -#: ../../Zotlabs/Module/Admin/Site.php:355 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "Serveurs publics : page Web facultative d'atterrissage (marketing) pour les nouveaux inscrits." - -#: ../../Zotlabs/Module/Admin/Site.php:355 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "Créez d'abord cette page. La valeur par défaut est %s /register" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Page to display after creating a new channel" -msgstr "Page à afficher après la création d'un nouveau canal" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Recommend: profiles, go, or settings" -msgstr "Recommander : profils, go, ou paramètres" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Optional: site location" -msgstr "Option : emplacement du site" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Region or country" -msgstr "Région ou pays" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "Nouveau champ de profil" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "Nom court du champ" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "Nom système du champ" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "Type de champ" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "Nom du champ" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "Étiquette sur les pages de profil" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "Aide à la saisie" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "Informations additionnelles (facultatif)" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 -#: ../../include/text.php:1064 -msgid "Save" -msgstr "Enregistrer" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "Définition du champ introuvable" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "Modifier le champ de profil" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "Champs de profil" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "Champs de profil de base" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "Champs de profil avancés" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "(en plus des champs de base)" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "Tous les champs disponibles" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "Champs personnalisés" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "Créer un champ personnalisé" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "Le mot de passe a été modifié pour le compte %d." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "Paramétrage du compte mis à jour" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "Compte introuvable" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "Modifier votre compte" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "Nouveau mot de passe" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "Nouveau mot de passe (encore)" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Niveau technique" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "Langue de votre compte (pour email)" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "Classe de service" - -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Par défaut le code HTML est autorisé pour les média par exemple les vidéos embarquées. Cependant cela peut poser un faille de sécurité." - -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Ce paramétrage autorisant le HTML pour les sites suivants." - -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Les contenus html seront filtrés sauf ceux des sites explicitement bloqués." - -#: ../../Zotlabs/Module/Admin/Security.php:87 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "Sécurité" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "Bloquer \"public\"" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Sélectionner pour ne permettre l'accès aux pages personnelles \"publiques\" du site qu'aux personnes authentifiées, pas aux personnes anonymes du web." - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Paramétrer \"Transport Security\" pour l'entête HTTP" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Paramétrer \"Content Security Policy\" pour l'entête HTTP" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "Domaines de courriels autorisés" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "Domaines de courriel non autorisés" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis." - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "N'autorisez que les communications venant de ces sites" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un site par ligne. Laisser vide pour autoriser les communications de tous les sites, par défaut." - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "Bloquer les communications de ces sites" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "N'autoriser que les communications de ces canaux" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (adresse) par ligne. Laisser vide pour autoriser les communications de tous les canaux, par défaut" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "Bloquer les communications de ces canaux" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Seuls les sites et liens sécurisés sont autorisé pour intégrer du code HTML" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Autoriser le contenu HTML embarqué uniquement à partir de ces domaines" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un site par ligne. Par défaut le contenu embarqué est filtré." - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "Bloquer le HTML embarqué à partir de ces domaines" - -#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "Profil" - -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" -msgstr "Commentaire validé" - -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" -msgstr "Commentaire supprimé" - -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "Le nom de permission est requis." - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "Profil d'accès enregistré." - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Utilisez ce formulaire pour créer des règles d'accès pour différentes catégories de personnes ou de contacts." - -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -msgid "Permission Categories" -msgstr "Profils d'accès" - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Nom du droit d'accès" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -msgid "My Settings" -msgstr "Mes paramètres" - -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -msgid "inherited" -msgstr "héritée" - -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -msgid "Individual Permissions" -msgstr "Droits d'accès individuels" - -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:894 -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 "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous ne pouvez pas modifier ces droits d'accès-ci ici." - -#: ../../Zotlabs/Module/Settings/Channel.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:83 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:437 -#: ../../include/channel.php:438 ../../include/channel.php:445 -msgid "Friends" -msgstr "Amis" - -#: ../../Zotlabs/Module/Settings/Channel.php:264 -#: ../../Zotlabs/Module/Defperms.php:103 -#: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:184 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:102 -msgid "Settings updated." -msgstr "Paramètres mis à jour." - -#: ../../Zotlabs/Module/Settings/Channel.php:325 -msgid "Nobody except yourself" -msgstr "Personne sauf vous" - -#: ../../Zotlabs/Module/Settings/Channel.php:326 -msgid "Only those you specifically allow" -msgstr "Seulement ceux que vous autorisez spécifiquement" - -#: ../../Zotlabs/Module/Settings/Channel.php:327 -msgid "Approved connections" -msgstr "Contacts validés" - -#: ../../Zotlabs/Module/Settings/Channel.php:328 -msgid "Any connections" -msgstr "Tous les contacts" - -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Anybody on this website" -msgstr "Tous les utilisateurs du hub" - -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Anybody in this network" -msgstr "Tous les utilisateurs sur ce réseau" - -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Anybody authenticated" -msgstr "Tous les utilisateurs authentifiés" - -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Anybody on the internet" -msgstr "Tous les utilisateurs d'Internet" - -#: ../../Zotlabs/Module/Settings/Channel.php:407 -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/Channel.php:412 -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/Channel.php:416 -msgid "or" -msgstr "ou" - -#: ../../Zotlabs/Module/Settings/Channel.php:425 -msgid "Your channel address is" -msgstr "L'adresse de votre canal est" - -#: ../../Zotlabs/Module/Settings/Channel.php:428 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "Vos fichiers/photos sont accessibles via WebDAV à" - -#: ../../Zotlabs/Module/Settings/Channel.php:493 -msgid "Channel Settings" -msgstr "Paramètres du canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Basic Settings" -msgstr "Paramètres standard" - -#: ../../Zotlabs/Module/Settings/Channel.php:501 -#: ../../include/channel.php:1521 -msgid "Full Name:" -msgstr "Nom complet :" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:119 -msgid "Email Address:" -msgstr "Adresse de courriel :" - -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Your Timezone:" -msgstr "Votre fureau horaire :" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Default Post Location:" -msgstr "Emplacement de publication par défaut :" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Geographical location to display on your posts" -msgstr "Emplacement géographique à afficher sur vos publications" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Use Browser Location:" -msgstr "Utiliser la géolocalisation du navigateur :" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Adult Content" -msgstr "Contenu \"adulte\"" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -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/Channel.php:509 -msgid "Security and Privacy Settings" -msgstr "Paramètres de sécurité et de confidentialité" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Vous droits d'accès sont déjà paramétrés. Cliquer pour voir/modifier" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Hide my online presence" -msgstr "Cacher ma présence en ligne" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Prevents displaying in your profile that you are online" -msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil" - -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "Simple Privacy Settings:" -msgstr "Paramètres de confidentialité simplifiés :" - -#: ../../Zotlabs/Module/Settings/Channel.php:516 -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/Channel.php:517 -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 droits d'accès type réseau social, avec une confidentialité améliorée)" - -#: ../../Zotlabs/Module/Settings/Channel.php:518 -msgid "Private - default private, never open or public" -msgstr "Privé - privé par défaut, jamais ouvert ni public" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Allow others to tag your posts" -msgstr "Autoriser les autres à \"étiqueter\" vos publications" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -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/Channel.php:523 -msgid "Channel Permission Limits" -msgstr "Limites des droits d'accès du canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Expire other channel content after this many days" -msgstr "Faire expirer le contenu des autres canaux après n jours" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "0 or blank to use the website limit." -msgstr "0 ou vide pour utiliser la limite du site web" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -#, php-format -msgid "This website expires after %d days." -msgstr "Ce site web expirera après %d jours." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "This website does not expire imported content." -msgstr "Ce site web ne périme pas le contenu importé." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "The website limit takes precedence if lower than your limit." -msgstr "La limite du site Web a priorité si elle est inférieure à votre limite." - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximum de demandes de contact par jour :" - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "May reduce spam activity" -msgstr "Contribue à réduire l'impact des indésirables" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Default Privacy Group" -msgstr "Groupe de contacts par défaut :" - -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "Use my default audience setting for the type of object published" -msgstr "Utiliser mon paramètre de publication par défaut pour le type d'objet publié" - -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "Profile to assign new connections" -msgstr "Profil pour assigner de nouvelles connexions" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default Permissions Group" -msgstr "Groupe d'accès par défaut" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Maximum private messages per day from unknown people:" -msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Useful to reduce spamming" -msgstr "Utile pour réduire les indésirables" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" -msgstr "Paramètres de notification" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "By default post a status message when:" -msgstr "Par défaut, publier un statut quand :" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "accepting a friend request" -msgstr "vous acceptez une demande de contact" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "joining a forum/community" -msgstr "vous rejoignez un forum ou une communauté" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "making an interesting profile change" -msgstr "vous faîtes une modification intéressante de votre profil" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand :" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "You receive a connection request" -msgstr "Vous recevez une demande de contact" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Your connections are confirmed" -msgstr "Vos contacts sont confirmés" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un a écrit sur votre mur" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un a commenté vos publications" - -#: ../../Zotlabs/Module/Settings/Channel.php:559 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "You receive a friend suggestion" -msgstr "Vous recevez une suggestion d'amitié/contact" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "You are tagged in a post" -msgstr "Vous êtes étiqueté dans une publication" - -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous êtes tapoté/encouragé/etc. dans une publication" - -#: ../../Zotlabs/Module/Settings/Channel.php:564 -msgid "Someone likes your post/comment" -msgstr "Quelqu'un aime votre publication/commentaire" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Show visual notifications including:" -msgstr "Afficher des notifications visuelles y compris :" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Unseen grid activity" -msgstr "Activité du réseau pas encore consultée" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Unseen channel activity" -msgstr "Activité non vue sur le canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Unseen private messages" -msgstr "Messages privés non lus" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:576 -#: ../../Zotlabs/Module/Settings/Channel.php:577 -#: ../../Zotlabs/Module/Settings/Channel.php:578 -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Recommended" -msgstr "Recommandé" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Upcoming events" -msgstr "Événements à venir" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "Events today" -msgstr "Événements aujourd'hui" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Upcoming birthdays" -msgstr "Anniversaires à venir" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Not available in all themes" -msgstr "Pas disponible dans tous les thèmes" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System (personal) notifications" -msgstr "Notifications système (personnelles)" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "System info messages" -msgstr "Messages d'info système" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "System critical alerts" -msgstr "Alertes critiques système" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "New connections" -msgstr "Nouveaux contacts" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "System Registrations" -msgstr "Inscriptions système" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Unseen shared files" -msgstr "Fichiers partagés non vus" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Unseen public activity" -msgstr "Activité publique non vue" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Unseen likes and dislikes" -msgstr "Aime et n'aime pas non consultés" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Email notification hub (hostname)" -msgstr "Concentrateur de notification par courriel (nom d'hôte)" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "Si votre canal est dupliqué sur plusieurs hubs, définissez cet emplacement comme votre emplacement préféré. Cela empêchera les notifications par courriel en double. Exemple : %s" - -#: ../../Zotlabs/Module/Settings/Channel.php:584 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "Montrer les nouveaux envois, messages privés et les nouvelles connexions dans Notifications" - -#: ../../Zotlabs/Module/Settings/Channel.php:586 -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/Channel.php:586 -msgid "Must be greater than 0" -msgstr "Doit être supérieur à 0" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Advanced Account/Page Type Settings" -msgstr "Paramètres avancés de compte/type de page" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -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/Channel.php:595 -msgid "Miscellaneous Settings" -msgstr "Paramètres divers" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Default photo upload folder" -msgstr "Répertoire par défaut pour les photos téléversées" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "%Y - current year, %m - current month" -msgstr "%Y - année en cours, %m - mois en cours" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "Default file upload folder" -msgstr "Répertoire par défaut pour les fichiers téléversés" - -#: ../../Zotlabs/Module/Settings/Channel.php:599 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personnel à afficher sur les pages de votre canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:601 -msgid "Remove this channel." -msgstr "Supprimer ce canal" - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Firefox Share $Projectname provider" -msgstr "Connecteur $Projectname pour Firefox Share" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Start calendar week on Monday" -msgstr "Commencer la semaine du calendrier le lundi" - -#: ../../Zotlabs/Module/Settings/Features.php:73 -msgid "Additional Features" -msgstr "Fonctionnalités additionnelles" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "Votre niveau technique" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Utilisé pour offrir une expérience de membre et des fonctions supplémentaires compatibles avec votre niveau de confort." - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Ce canal est limité à %d jetons" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Le nom et le mot de passe sont requis" - -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Jeton sauvegardé" - -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -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 private content." -msgstr "Utilisez ce formulaire pour créer des identifiants d'accès temporaires pour partager des informations avec des non-membres. Ces identités peuvent être utilisées dans les listes de contrôle d'accès et les visiteurs peuvent se connecter en utilisant ces certificats d'identification pour accéder au contenu privé." - -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -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 "Vous pouvez également fournir des liens d'accès, style dropbox, aux amis et aux associés en ajoutant le mot de passe de connexion à l'URL d'un site spécifique, comme indiqué. Exemples:" - -#: ../../Zotlabs/Module/Settings/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:100 -msgid "Guest Access Tokens" -msgstr "Jeton d'accès pour un invité" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Nom d'utilisateur" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Mot de passe" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Date d'expiration sous la forme année mois jour (AAAA-MM-JJ)" - -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "Their Settings" -msgstr "Leurs paramètres" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:35 -msgid "Name and Secret are required" -msgstr "Un nom et un secret sont requis" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:83 -msgid "Add OAuth2 application" -msgstr "Ajouter une application OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Nom de l'application" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 -msgid "Consumer Secret" -msgstr "Secret client" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -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/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Redirection" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -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/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -msgid "Grant Types" -msgstr "Types de bourses" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "leave blank unless your application sepcifically requires this" -msgstr "Laisser vide, sauf si votre application le requiert spécifiquement" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Authorization scope" -msgstr "Portée de l'autorisation" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:102 -msgid "OAuth2 Application not found." -msgstr "Application OAuth2 introuvable" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Ajouter une application" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:147 -msgid "Connected OAuth2 Apps" -msgstr "Applications OAuth2 connectées" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "La clef partagée commence par" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Sans nom" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "Adresse de courriel non valide." - -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." -msgstr "Adresse de courriel protégée. Impossible de l'utiliser." - -#: ../../Zotlabs/Module/Settings/Account.php:32 -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/Account.php:40 -msgid "Technical skill level updated" -msgstr "Niveau technique mis à jour" - -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "La vérification du mot de passe a échoué." - -#: ../../Zotlabs/Module/Settings/Account.php:63 -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/Account.php:67 -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/Account.php:81 -msgid "Password changed." -msgstr "Le mot de passe a été changé." - -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." -msgstr "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau." - -#: ../../Zotlabs/Module/Settings/Account.php:112 -msgid "Account Settings" -msgstr "Paramètres du compte" - -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" -msgstr "Mot de passe actuel" - -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" -msgstr "Entrez votre nouveau mot de passe" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" -msgstr "Confirmez le nouveau mot de passe" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" -msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier" - -#: ../../Zotlabs/Module/Settings/Account.php:120 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Supprimer le compte" - -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" -msgstr "Supprimer ce compte et tous ses canaux" - -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "Paramètres de la réglette d'affinité mis à jour." - -#: ../../Zotlabs/Module/Settings/Featured.php:38 -msgid "No feature settings configured" -msgstr "Aucun paramètre de fonctionnalité configuré" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "Niveau d'affinité maximum par défaut" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "0-99 par défaut 99" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "Niveau d'affinité minimum par défaut" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "0-99 par défaut 0" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "Paramètres de la réglette d'affinité" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 -msgid "Addon Settings" -msgstr "Paramètres du greffon" - -#: ../../Zotlabs/Module/Settings/Featured.php:68 -msgid "Please save/submit changes to any panel before opening another." -msgstr "Veuillez enregistrer/soumettre les changements à n'importe quel panneau avant d'en ouvrir un autre." - -#: ../../Zotlabs/Module/Settings/Display.php:139 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Expérimental)" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Display Settings" -msgstr "Afficher les paramètres" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Theme Settings" -msgstr "Paramètres du thème" - -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Custom Theme Settings" -msgstr "Paramètres personnels du thème" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Content Settings" -msgstr "Paramètres liés au contenu" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Afficher le thème :" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Select scheme" -msgstr "Définir la palette de couleurs" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Preload images before rendering the page" -msgstr "Pré-charger les images avant d'afficher la page" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -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/Display.php:200 -msgid "Enable user zoom on mobile devices" -msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Update browser every xx seconds" -msgstr "Mettre à jour le navigateur toutes les xx secondes" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 secondes, pas de maximum" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -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/Display.php:202 -msgid "Maximum of 100 items" -msgstr "100 éléments au maximum" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Show emoticons (smilies) as images" -msgstr "Remplacer les émoticônes (smileys) par des images" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Provide channel menu in navigation bar" -msgstr "Fournir le menu du canal dans la barre de navigation" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Default: channel menu located in app menu" -msgstr "Par défaut : menu du canal situé dans le menu de l'application." - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Manual conversation updates" -msgstr "Manuel de mises à jour des conversations" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "Activé par défaut, le désactiver peut accroître les sauts d'écran" - -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Link post titles to source" -msgstr "Lier les titres des publications à leur source" - -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editeur de mise en page des pages systèmes - (avancé)" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Utiliser le mode blog/liste sur la page du canal" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(commentaires affichés séparément)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on grid page" -msgstr "Utiliser le mode blog/liste sur la page du réseau" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Channel page max height of content (in pixels)" -msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "click to expand content exceeding this height" -msgstr "cliquer pour dérouler le contenu dépassant cette limite" - -#: ../../Zotlabs/Module/Settings/Display.php:213 -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/Oauth.php:35 -msgid "Name is required" -msgstr "Le nom est requis" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "Clef et secret sont requis" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 -msgid "Consumer Key" -msgstr "Clef client" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "URL de l'icône" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facultatif" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Application introuvable." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../Zotlabs/Module/Embedphotos.php:140 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 -#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../Zotlabs/Module/Embedphotos.php:156 -#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "Modifier l'album" - -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:712 -#: ../../Zotlabs/Module/Profile_photo.php:458 -#: ../../Zotlabs/Module/Cover_photo.php:362 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 -#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 -msgid "Upload" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Achievements.php:38 -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/Thing.php:120 -msgid "Thing updated" -msgstr "Elément mis à jour" - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "Stockage de l'objet : échec" - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "Elément ajouté" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "Montrer élément" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "élément introuvable." - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "Modifier élément" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "Choisissez un profil" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "Publier une activité" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envoie exclusivement aux visiteurs du profil concerné" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "Nom de l'élément, p.ex. quelque-chose" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "URL de l'élément (facultatif)" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "URL d'une photo de l'élément (facultatif)" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "Droits d'accès" - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "Ajouter l'élément à votre profil" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:57 -msgid "No more system notifications." -msgstr "Pas d'autre notification du système." - -#: ../../Zotlabs/Module/Notify.php:65 -#: ../../Zotlabs/Module/Notifications.php:61 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "Connexion ajoutée." - -#: ../../Zotlabs/Module/Import.php:144 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Votre forfait n'autorise que %d canaux." - -#: ../../Zotlabs/Module/Import.php:158 -msgid "No channel. Import failed." -msgstr "Pas de canal. Echec de l'import." - -#: ../../Zotlabs/Module/Import.php:482 -#: ../../addon/diaspora/import_diaspora.php:139 -msgid "Import completed." -msgstr "L'import est terminé." - -#: ../../Zotlabs/Module/Import.php:510 -msgid "You must be logged in to use this feature." -msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." - -#: ../../Zotlabs/Module/Import.php:515 -msgid "Import Channel" -msgstr "Importation de canal" - -#: ../../Zotlabs/Module/Import.php:516 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import." - -#: ../../Zotlabs/Module/Import.php:518 -msgid "Or provide the old server/hub details" -msgstr "Ou fournissez les détails de l'ancien serveur/hub" - -#: ../../Zotlabs/Module/Import.php:519 -msgid "Your old identity address (xyz@example.com)" -msgstr "Votre ancienne identité (zyx@exemple.com)" - -#: ../../Zotlabs/Module/Import.php:520 -msgid "Your old login email address" -msgstr "Votre ancienne adresse de courriel" - -#: ../../Zotlabs/Module/Import.php:521 -msgid "Your old login password" -msgstr "Votre ancien mot de passe" - -#: ../../Zotlabs/Module/Import.php:522 -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/Import.php:523 -msgid "Make this hub my primary location" -msgstr "Faire de ce hub mon emplacement primaire" - -#: ../../Zotlabs/Module/Import.php:524 -msgid "Move this channel (disable all previous locations)" -msgstr "Déplacer ce canal (désactiver tous les emplacements précédents)" - -#: ../../Zotlabs/Module/Import.php:525 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Importer plusieurs mois de messages si possible (limité par la mémoire disponible)" - -#: ../../Zotlabs/Module/Import.php:526 -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/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Échec de l'authentification." - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 -#: ../../include/channel.php:2318 -msgid "Remote Authentication" -msgstr "Authentification distante" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 -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:77 ../../include/channel.php:2320 -msgid "Authenticate" -msgstr "Authentifier" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Accès refusés." - -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 -msgid "Import" -msgstr "Import" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "Revenez dans votre application et mettez le code de sécurité" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "Merci de vous identifier pour continuer." - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Élément indisponible." - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "Modifier le bloc" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "vcard" - -#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 -msgid "Apps" -msgstr "Applications" - -#: ../../Zotlabs/Module/Apps.php:51 -msgid "Manage apps" -msgstr "Gérer les applications" - -#: ../../Zotlabs/Module/Apps.php:52 -msgid "Create new app" -msgstr "Créer une application" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 -#, 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:253 -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/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Active" -msgstr "Active" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Blocked" -msgstr "Bloqué(e)" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Ignored" -msgstr "Ignoré(e)" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Hidden" -msgstr "Caché" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Archived/Unreachable" -msgstr "Archivé/Injoignable" - -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 -#: ../../Zotlabs/Module/Notifications.php:52 -#: ../../include/conversation.php:1717 -msgid "New" -msgstr "Nouveautés" - -#: ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 -msgid "All" -msgstr "Tous" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "Connexions actives" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "Voir les connexions actives" - -#: ../../Zotlabs/Module/Connections.php:147 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "Nouveaux contacts" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "Voir les (nouveaux) contacts en attente" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show blocked connections" -msgstr "Ne montrer que les contacts bloqués" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show ignored connections" -msgstr "Ne montrer que les contacts ignorés" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show archived/unreachable connections" -msgstr "Ne montrer que les contacts archivés/injoignables" - -#: ../../Zotlabs/Module/Connections.php:188 -msgid "Only show hidden connections" -msgstr "Ne montrer que les contacts cachés" - -#: ../../Zotlabs/Module/Connections.php:203 -msgid "Show all connections" -msgstr "Voir tous les contacts" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Pending approval" -msgstr "En attente de validation" - -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Archived" -msgstr "Archivé" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Not connected at this location" -msgstr "Contact introuvable à cette adresse" - -#: ../../Zotlabs/Module/Connections.php:279 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Edit connection" -msgstr "Modifier le contact" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Delete connection" -msgstr "Supprimer le contact" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Channel address" -msgstr "Adresse du canal" - -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Network" -msgstr "Réseau" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Call" -msgstr "Appeler" - -#: ../../Zotlabs/Module/Connections.php:298 -msgid "Status" -msgstr "État" - -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Connected" -msgstr "Ami depuis" - -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Approve connection" -msgstr "Valider le contact" - -#: ../../Zotlabs/Module/Connections.php:304 -msgid "Ignore connection" -msgstr "Ignorer le contact" - -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Recent activity" -msgstr "Activité récente" - -#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/text.php:973 -msgid "Connections" -msgstr "Contacts" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "Chercher parmi vos contacts" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "Chercher des contacts" - -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Trouver" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "item" - -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "Source of Item" -msgstr "Source de l'élément" - -#: ../../Zotlabs/Module/Bookmarks.php:56 -msgid "Bookmark added" -msgstr "Favori ajouté" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "My Bookmarks" -msgstr "Mes Favoris" - -#: ../../Zotlabs/Module/Bookmarks.php:90 -msgid "My Connections Bookmarks" -msgstr "Favoris de mes contacts" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Supprimer ce compte" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau" - -#: ../../Zotlabs/Module/Photos.php:78 -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:94 ../../Zotlabs/Module/Photos.php:120 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "Supprimer l'album" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 -msgid "Delete Photo" -msgstr "Supprimer la photo" - -#: ../../Zotlabs/Module/Photos.php:551 -msgid "No photos selected" -msgstr "Aucune photo selectionnée" - -#: ../../Zotlabs/Module/Photos.php:600 -msgid "Access to this item is restricted." -msgstr "L'accès à l'élément est restreint." - -#: ../../Zotlabs/Module/Photos.php:646 -#, 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:649 -#, 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:691 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Enter an album name" -msgstr "Entrer un nom d'album" - -#: ../../Zotlabs/Module/Photos.php:696 -msgid "or select an existing album (doubleclick)" -msgstr "ou sélectionner un album existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Create a status post for this upload" -msgstr "Créer une publication de statut pour cet envoi" - -#: ../../Zotlabs/Module/Photos.php:699 -msgid "Description (optional)" -msgstr "Description (facultative)" - -#: ../../Zotlabs/Module/Photos.php:785 -msgid "Show Newest First" -msgstr "Les plus récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:787 -msgid "Show Oldest First" -msgstr "Les moins récent(e)s en premier" - -#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 -msgid "Add Photos" -msgstr "Ajouter des photos" - -#: ../../Zotlabs/Module/Photos.php:892 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Accès refusé. L'accès à cet élément peut avoir été restreint." - -#: ../../Zotlabs/Module/Photos.php:894 -msgid "Photo not available" -msgstr "Photo non disponible" - -#: ../../Zotlabs/Module/Photos.php:952 -msgid "Use as profile photo" -msgstr "Utiliser comme photo du profil" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "Use as cover photo" -msgstr "Utilisez comme bannière" - -#: ../../Zotlabs/Module/Photos.php:960 -msgid "Private Photo" -msgstr "Photo privée" - -#: ../../Zotlabs/Module/Photos.php:975 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Edit photo" -msgstr "Modifier la photo" - -#: ../../Zotlabs/Module/Photos.php:1059 -msgid "Rotate CW (right)" -msgstr "Rotation horaire (droite)" - -#: ../../Zotlabs/Module/Photos.php:1060 -msgid "Rotate CCW (left)" -msgstr "Rotation anti-horaire (gauche)" - -#: ../../Zotlabs/Module/Photos.php:1063 -msgid "Move photo to album" -msgstr "Déplacer la photo dans l'album" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Enter a new album name" -msgstr "Entrer un nouveau nom d'album" - -#: ../../Zotlabs/Module/Photos.php:1065 -msgid "or select an existing one (doubleclick)" -msgstr "ou en sélectionner un existant (double-clic)" - -#: ../../Zotlabs/Module/Photos.php:1070 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../Zotlabs/Module/Photos.php:1078 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" - -#: ../../Zotlabs/Module/Photos.php:1081 -msgid "Flag as adult in album view" -msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" - -#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 -msgid "I like this (toggle)" -msgstr "J'aime (oui/non)" - -#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 -msgid "I don't like this (toggle)" -msgstr "Je n'aime pas (oui/non)" - -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 -#: ../../include/conversation.php:785 -msgid "Please wait" -msgstr "Merci de patienter" - -#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:749 -msgid "This is you" -msgstr "C'est vous" - -#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commenter" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Agree" -msgstr "D'accord" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Disagree" -msgstr "Pas d'accord" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Abstain" -msgstr "Abstention" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Attending" -msgstr "Participations" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Not attending" -msgstr "Non-participations" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Might attend" -msgstr "Participation possible" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 -#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 -msgid "View all" -msgstr "Voir tout" - -#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1981 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:661 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Aime" -msgstr[1] "Aime" - -#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 -#: ../../include/conversation.php:1984 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "N'aime pas" -msgstr[1] "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1265 -msgid "Photo Tools" -msgstr "Outils pour photos" - -#: ../../Zotlabs/Module/Photos.php:1274 -msgid "In This Photo:" -msgstr "Dans cette photo :" - -#: ../../Zotlabs/Module/Photos.php:1279 -msgid "Map" -msgstr "Carte" - -#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 -msgctxt "noun" -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 -msgctxt "noun" -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "Fermer" - -#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 -#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 -msgid "Profile Unavailable." -msgstr "Profil non disponible." - -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 -msgid "Not found" -msgstr "Non trouvé" - -#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 -#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 -msgid "Invalid channel" -msgstr "Canal invalide." - -#: ../../Zotlabs/Module/Wiki.php:124 -msgid "Error retrieving wiki" -msgstr "Erreur lors de la récupération du wiki" - -#: ../../Zotlabs/Module/Wiki.php:131 -msgid "Error creating zip file export folder" -msgstr "Erreur lors de la création du dossier d'exportation du fichier zip" - -#: ../../Zotlabs/Module/Wiki.php:182 -msgid "Error downloading wiki: " -msgstr "Erreur lors du téléchargement du wiki:" - -#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 -#: ../../include/nav.php:494 -msgid "Wikis" -msgstr "Wikis" - -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Download" -msgstr "Téléchargement" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 -msgid "Create New" -msgstr "Nouveau" - -#: ../../Zotlabs/Module/Wiki.php:207 -msgid "Wiki name" -msgstr "Nom du wiki" - -#: ../../Zotlabs/Module/Wiki.php:208 -msgid "Content type" -msgstr "Type de contenu" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 -#: ../../include/text.php:1869 -msgid "Markdown" -msgstr "Markdown" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 -msgid "BBcode" -msgstr "BBcode" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 -msgid "Text" -msgstr "Texte" - -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 -msgid "Type" -msgstr "Type" - -#: ../../Zotlabs/Module/Wiki.php:211 -msgid "Any type" -msgstr "N'importe quel type" - -#: ../../Zotlabs/Module/Wiki.php:218 -msgid "Lock content type" -msgstr "Verrouiller le type de contenu" - -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Create a status post for this wiki" -msgstr "Créer un statut de publication pour ce wiki" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Edit Wiki Name" -msgstr "Modifier le nom du wiki" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "Wiki not found" -msgstr "Wiki introuvable" - -#: ../../Zotlabs/Module/Wiki.php:286 -msgid "Rename page" -msgstr "Renommer la page" - -#: ../../Zotlabs/Module/Wiki.php:307 -msgid "Error retrieving page content" -msgstr "Erreur lors de la récupération du contenu de la page" - -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 -msgid "New page" -msgstr "Nouvelle page" - -#: ../../Zotlabs/Module/Wiki.php:345 -msgid "Revision Comparison" -msgstr "Comparaison des révisions" - -#: ../../Zotlabs/Module/Wiki.php:346 -msgid "Revert" -msgstr "Revenir" - -#: ../../Zotlabs/Module/Wiki.php:353 -msgid "Short description of your changes (optional)" -msgstr "Description courte de vos modifications (optionnel)" - -#: ../../Zotlabs/Module/Wiki.php:362 -msgid "Source" -msgstr "Source" - -#: ../../Zotlabs/Module/Wiki.php:372 -msgid "New page name" -msgstr "Nouveau nom de la page" - -#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 -msgid "Embed image from photo albums" -msgstr "Intégrer une image d'un album photo" - -#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 -msgid "Embed an image from your albums" -msgstr "Intégrer une image de votre album photo" - -#: ../../Zotlabs/Module/Wiki.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:368 -#: ../../include/conversation.php:1320 -msgid "Choose images to embed" -msgstr "Choisissez des images à intégrer" - -#: ../../Zotlabs/Module/Wiki.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:369 -#: ../../include/conversation.php:1321 -msgid "Choose an album" -msgstr "Choisir un album" - -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:370 -msgid "Choose a different album" -msgstr "Choisissez un autre album" - -#: ../../Zotlabs/Module/Wiki.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:371 -#: ../../include/conversation.php:1323 -msgid "Error getting album list" -msgstr "Erreur venant de la liste de l'album" - -#: ../../Zotlabs/Module/Wiki.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:372 -#: ../../include/conversation.php:1324 -msgid "Error getting photo link" -msgstr "Erreur provenant du lien de la photo" - -#: ../../Zotlabs/Module/Wiki.php:386 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:373 -#: ../../include/conversation.php:1325 -msgid "Error getting album" -msgstr "Erreur venant de l'album" - -#: ../../Zotlabs/Module/Wiki.php:462 -msgid "Error creating wiki. Invalid name." -msgstr "Erreur lors de la création du wiki. Nom invalide." - -#: ../../Zotlabs/Module/Wiki.php:469 -msgid "A wiki with this name already exists." -msgstr "Ce nom de wiki est déjà pris" - -#: ../../Zotlabs/Module/Wiki.php:482 -msgid "Wiki created, but error creating Home page." -msgstr "Le wiki a été créé, mais une erreur est survenue lors de la création de sa page d'accueil." - -#: ../../Zotlabs/Module/Wiki.php:489 -msgid "Error creating wiki" -msgstr "Erreur lors de la création du wiki." - -#: ../../Zotlabs/Module/Wiki.php:512 -msgid "Error updating wiki. Invalid name." -msgstr "Erreur de mise à jour du wiki. Nom invalide." - -#: ../../Zotlabs/Module/Wiki.php:532 -msgid "Error updating wiki" -msgstr "Erreur de mise à jour du wiki" - -#: ../../Zotlabs/Module/Wiki.php:547 -msgid "Wiki delete permission denied." -msgstr "Droit de supprimer le wiki refusé." - -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error deleting wiki" -msgstr "Erreur durant la suppression du wiki" - -#: ../../Zotlabs/Module/Wiki.php:590 -msgid "New page created" -msgstr "Nouvelle page créée" - -#: ../../Zotlabs/Module/Wiki.php:711 -msgid "Cannot delete Home" -msgstr "Impossible de supprimer la racine" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Current Revision" -msgstr "Version actuelle" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Selected Revision" -msgstr "Version sélectionnée" - -#: ../../Zotlabs/Module/Wiki.php:825 -msgid "You must be authenticated." -msgstr "Vous devez être connecté." - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "Basculer en mode plein écran." - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Mise en page mise à jour." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Fonctionnalité désactivée" - -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 -msgid "Edit System Page Description" -msgstr "Modifier la description de la page du système" - -#: ../../Zotlabs/Module/Pdledit.php:68 -msgid "(modified)" -msgstr "modifié)" - -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../Zotlabs/Module/Pdledit.php:85 -msgid "Layout not found." -msgstr "Mise en page introuvable." - -#: ../../Zotlabs/Module/Pdledit.php:91 -msgid "Module Name:" -msgstr "Nom du module :" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout Help" -msgstr "Aide à la mise en page" - -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Edit another layout" -msgstr "Modifier une autre mise en page" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "System layout" -msgstr "mise en page du système" - -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 -#: ../../include/conversation.php:1092 -msgid "Poke" -msgstr "Tapoter" - -#: ../../Zotlabs/Module/Poke.php:183 -msgid "Poke somebody" -msgstr "Taquiner quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:186 -msgid "Poke/Prod" -msgstr "Tapoter/Encourager" - -#: ../../Zotlabs/Module/Poke.php:187 -msgid "Poke, prod or do other things to somebody" -msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" - -#: ../../Zotlabs/Module/Poke.php:194 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../Zotlabs/Module/Poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Choisir ce que vous voulez faire au destinataire" - -#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 -msgid "Make this post private" -msgstr "Rendre cette publication privée" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:56 -msgid "Image uploaded but image cropping failed." -msgstr "L'image a été téléversée, mais le recadrage a échoué." - -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:741 -msgid "Profile Photos" -msgstr "Photos du profil" - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:159 -msgid "Image resize failed." -msgstr "Le redimensionnement de l'image a échoué." - -#: ../../Zotlabs/Module/Profile_photo.php:218 -#: ../../addon/openclipatar/openclipatar.php:298 -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:225 -#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:197 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:214 -msgid "Unable to process image." -msgstr "Impossible de traîter l'image." - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:307 -#: ../../Zotlabs/Module/Cover_photo.php:322 -msgid "Photo not available." -msgstr "Photo inaccessible." - -#: ../../Zotlabs/Module/Profile_photo.php:455 -#: ../../Zotlabs/Module/Cover_photo.php:359 -msgid "Upload File:" -msgstr "Téléverser fichier :" - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Select a profile:" -msgstr "Choisir un profil :" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Use Photo for Profile" -msgstr "Utiliser la photo pour le profil" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Change Profile Photo" -msgstr "Changer la photo du profil" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use" -msgstr "Utiliser" - -#: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:364 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "Use a photo from your albums" -msgstr "Utiliser une photo de vos albums" - -#: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../Zotlabs/Module/Cover_photo.php:376 -msgid "Select existing photo" -msgstr "Sélectionner une photo existante" - -#: ../../Zotlabs/Module/Profile_photo.php:492 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Crop Image" -msgstr "Recadrer l'image" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:394 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Merci d'ajuster le cadre pour une visualisation optimale." - -#: ../../Zotlabs/Module/Profile_photo.php:495 -#: ../../Zotlabs/Module/Cover_photo.php:396 -msgid "Done Editing" -msgstr "J'ai terminé" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "Absent" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "En ligne" - -#: ../../Zotlabs/Module/Item.php:194 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication initiale." - -#: ../../Zotlabs/Module/Item.php:477 -msgid "Empty post discarded." -msgstr "Publication vide annulée." - -#: ../../Zotlabs/Module/Item.php:874 -msgid "Duplicate post suppressed." -msgstr "Publication en doublon supprimée." - -#: ../../Zotlabs/Module/Item.php:1019 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvegardée." - -#: ../../Zotlabs/Module/Item.php:1055 -msgid "Your comment is awaiting approval." -msgstr "Votre commentaire est en attente de validation." - -#: ../../Zotlabs/Module/Item.php:1160 -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:1189 -#, 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:1196 -#, 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/Ping.php:330 -msgid "sent you a private message" -msgstr "vous a envoyé un message privé" - -#: ../../Zotlabs/Module/Ping.php:383 -msgid "added your channel" -msgstr "a ajouté votre canal" - -#: ../../Zotlabs/Module/Ping.php:407 -msgid "requires approval" -msgstr "nécessite une approbation" - -#: ../../Zotlabs/Module/Ping.php:417 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:435 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../Zotlabs/Module/Ping.php:444 -msgid "posted an event" -msgstr "a publié un événement" - -#: ../../Zotlabs/Module/Ping.php:477 -msgid "shared a file with you" -msgstr "a partagé un fichier avec vous" - -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." -msgstr "Élément invalide." - -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 -#: ../../Zotlabs/Module/Display.php:175 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 -#: ../../include/help.php:81 -msgid "Page not found." -msgstr "Page introuvable." - -#: ../../Zotlabs/Module/Page.php:173 -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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 -msgid "Could not access contact record." -msgstr "Impossible d'accéder aux détails du contact." - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil sélectionné." - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "Contact mis à jour." - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "Impossible de mettre à jour les détails du contact." - -#: ../../Zotlabs/Module/Connedit.php:302 -msgid "is now connected to" -msgstr "est maintenant connecté avec" - -#: ../../Zotlabs/Module/Connedit.php:427 -msgid "Could not access address book record." -msgstr "Impossible d'accéder aux détails du carnet d'adresses." - -#: ../../Zotlabs/Module/Connedit.php:475 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Actualisation impossible - le canal est indisponible." - -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 -msgid "Unable to set address book parameters." -msgstr "Impossible de régler les paramètres du carnet d'adresses." - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Connection has been removed." -msgstr "Le contact a été supprimé." - -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 -#: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:114 -msgid "View Profile" -msgstr "Voir mon profil" - -#: ../../Zotlabs/Module/Connedit.php:597 -#, php-format -msgid "View %s's profile" -msgstr "Voir le profil de %s" - -#: ../../Zotlabs/Module/Connedit.php:601 -msgid "Refresh Permissions" -msgstr "Actualiser les droits d'accès" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Fetch updated permissions" -msgstr "Récupérer les autorisations les plus récentes" - -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Photo" -msgstr "Actualiser la photo" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated photo" -msgstr "Récupérer la photo mise à jour" - -#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 -msgid "Recent Activity" -msgstr "Activité récente" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "View recent posts and comments" -msgstr "Voir les publications et commentaires récents" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquer ou débloquer toute communication avec ce contact" - -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "This connection is blocked!" -msgstr "Ce contact est bloqué !" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Unignore" -msgstr "Ne plus ignorer" - -#: ../../Zotlabs/Module/Connedit.php:633 -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:634 -msgid "This connection is ignored!" -msgstr "Ce contact est ignoré !" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Unarchive" -msgstr "Désarchiver" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Archive" -msgstr "Archiver" - -#: ../../Zotlabs/Module/Connedit.php:641 -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:642 -msgid "This connection is archived!" -msgstr "Ce contact est archivé !" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Unhide" -msgstr "Ne plus cacher" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Hide" -msgstr "Cacher" - -#: ../../Zotlabs/Module/Connedit.php:649 -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:650 -msgid "This connection is hidden!" -msgstr "Ce contact est caché !" - -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "Delete this connection" -msgstr "Supprimer ce contact" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Fetch Vcard" -msgstr "Récupérer la Vcard" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Fetch electronic calling card for this connection" -msgstr "Récupérer la carte de visite électronique de ce contact" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Open Individual Permissions section by default" -msgstr "Ouvrir par défaut la section des droits d'accès individuels" - -#: ../../Zotlabs/Module/Connedit.php:702 -msgid "Affinity" -msgstr "Affinité" - -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Open Set Affinity section by default" -msgstr "Ouvrir par défaut la section Définir le degré d'affinité" - -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 -msgid "Me" -msgstr "Moi" - -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 -msgid "Family" -msgstr "Famille" - -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 -msgid "Acquaintances" -msgstr "Connaissances" - -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "Filter" -msgstr "Filtrer" - -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Open Custom Filter section by default" -msgstr "Ouvrir par défaut la section Filtre personnalisé" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Approve this connection" -msgstr "Valider ce contact" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Accept connection to allow communication" -msgstr "Accepter le contact pour permettre la communication" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Set Affinity" -msgstr "Définir le degré d'affinité" - -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Set Profile" -msgstr "Définir le profil" - -#: ../../Zotlabs/Module/Connedit.php:790 -msgid "Set Affinity & Profile" -msgstr "Définir le degré d'affinité et le profil" - -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This connection is unreachable from this location." -msgstr "Ce contact est injoignable à partir de ce serveur." - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "This connection may be unreachable from other channel locations." -msgstr "Ce contact peut être injoignable à partir d'autres serveurs hébergeant ce canal." - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Location independence is not supported by their network." -msgstr "Leur plate-forme ne gère pas la localisation multiple des canaux/contacts." - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "Ce contact est injoignable à partir de cette adresse. Sa plate-forme ne gère pas la localisation multiple des canaux/contacts." - -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -#: ../../Zotlabs/Widget/Settings_menu.php:117 -msgid "Connection Default Permissions" -msgstr "Droits d'accès par défaut des contacts" - -#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 -#, php-format -msgid "Connection: %s" -msgstr "Contact : %s" - -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 -msgid "Apply these permissions automatically" -msgstr "Appliquer ces droits d'accès automatiquement" - -#: ../../Zotlabs/Module/Connedit.php:851 -msgid "Connection requests will be approved without your interaction" -msgstr "Les demandes de contact seront validées automatiquement" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -msgid "Permission role" -msgstr "Rôle d'accès" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 -msgid "Loading" -msgstr "Chargement" - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 -msgid "Add permission role" -msgstr "Ajouter un rôle d'accès" - -#: ../../Zotlabs/Module/Connedit.php:860 -msgid "This connection's primary address is" -msgstr "L'adresse principale de ce contact est" - -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Available locations:" -msgstr "Emplacements disponibles :" - -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Les droits d'accès indiqués sur cette page seront appliqués à tous vos nouveaux contacts." - -#: ../../Zotlabs/Module/Connedit.php:867 -msgid "Connection Tools" -msgstr "Actions du contact" - -#: ../../Zotlabs/Module/Connedit.php:869 -msgid "Slide to adjust your degree of friendship" -msgstr "Faites glisser pour ajuster votre proximité avec le contact" - -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Evaluation" - -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Slide to adjust your rating" -msgstr "Faîtes glisser pour ajuster votre note" - -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 -msgid "Optionally explain your rating" -msgstr "Explication facultative de votre évaluation" - -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Custom Filter" -msgstr "Filtre personnalisé" - -#: ../../Zotlabs/Module/Connedit.php:875 -msgid "Only import posts with this text" -msgstr "N'importer que les publications comprenant ce texte" - -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -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:876 -msgid "Do not import posts with this text" -msgstr "Ne pas importer les publications comprenant ce texte" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "This information is public!" -msgstr "Cette information est publique !" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Connection Pending Approval" -msgstr "Contact en attente d'approbation" - -#: ../../Zotlabs/Module/Connedit.php:888 -#, 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:895 -msgid "" -"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." -msgstr "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces droits d'accès ici mais cela n'aura aucun effet à moins de changer les paramètres hérités." - -#: ../../Zotlabs/Module/Connedit.php:896 -msgid "Last update:" -msgstr "Dernière mise à jour :" - -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "Details" -msgstr "Détails" - -#: ../../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 "Supprimer le salon" - -#: ../../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:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 -msgid "Please enter a link URL:" -msgstr "Merci d'entrer l'URL d'un lien :" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 -#: ../../include/conversation.php:1435 -msgid "Encrypt text" -msgstr "Chiffrer le texte" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nouveau salon de discussion" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nom du salon de conversation" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Expiration des discussions (en minutes)" - -#: ../../Zotlabs/Module/Chat.php:250 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salons de %1$s" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "No chatrooms available" -msgstr "Aucun salon de conversation disponible" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "Expiration" -msgstr "Expiration" - -#: ../../Zotlabs/Module/Chat.php:260 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 -#: ../../include/conversation.php:1834 ../../include/nav.php:401 -msgid "Photos" -msgstr "Photos" - -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 -#: ../../include/nav.php:409 -msgid "Files" -msgstr "Fichiers" - -#: ../../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:2423 -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: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/Layouts.php:184 ../../include/text.php:2424 -msgid "Layouts" -msgstr "Mises-en-page" - -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 -#: ../../include/nav.php:176 ../../include/nav.php:280 -#: ../../include/help.php:68 ../../include/help.php:74 -msgid "Help" -msgstr "Aide" - -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" -msgstr "Aide sur le langage de description de page Comanche" - -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" -msgstr "Description de la mise en page" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "Télécharger le fichier PDL" - -#: ../../Zotlabs/Module/Cloud.php:120 -msgid "Please refresh page" -msgstr "Veuillez rafraîchir la page" - -#: ../../Zotlabs/Module/Cloud.php:123 -msgid "Unknown error" -msgstr "Erreur inconnue" - -#: ../../Zotlabs/Module/Email_validation.php:24 -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "La vérification du jeton a échoué." - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "Vérification de courriel requise" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "Un jeton de vérification a été envoyé à votre courriel [%s]. Entrez ce jeton ici pour compléter l'étape de vérification des comptes. Veuillez allouer quelques minutes pour la réception et vérifier votre dossier spam si vous ne voyez pas le message." - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "Renvoyer le courriel" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "Jeton de validation" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "Publication introuvable." - -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:352 -msgid "post" -msgstr "publication" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2013 -msgid "comment" -msgstr "commentaire" - -#: ../../Zotlabs/Module/Tagger.php:119 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a étiqueté le %3$s de %2$s avec %4$s" - -#: ../../Zotlabs/Module/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/Defperms.php:239 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Si cette option est activée, les demandes de connexion seront approuvées sans votre intervention." - -#: ../../Zotlabs/Module/Defperms.php:246 -msgid "Automatic approval settings" -msgstr "Paramètres d'approbation automatique" - -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "Certaines permissions individuelles peuvent avoir été prédéfinies ou verrouillées en fonction de votre type de canal et de vos paramètres de confidentialité." - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "App inconnue" - -#: ../../Zotlabs/Module/Authorize.php:22 -msgid "Authorize" -msgstr "Autoriser" - -#: ../../Zotlabs/Module/Authorize.php:23 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "Autorisez vous l'app %s à accéder aux données de votre canal ?" - -#: ../../Zotlabs/Module/Authorize.php:25 -msgid "Allow" -msgstr "Permettre" - -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Groupe de contacts créé." - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossible de créer le groupe de contacts." - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4181 -msgid "Privacy group not found." -msgstr "Groupe de contacts introuvable." - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Groupe de contacts mis à jour." - -#: ../../Zotlabs/Module/Group.php:92 -msgid "Create a group of channels." -msgstr "Créer un groupe de contacts." - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 -msgid "Privacy group name: " -msgstr "Nom du groupe de contacts :" - -#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 -msgid "Members are visible to other channels" -msgstr "Les membres sont visibles par les autres canaux" - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Privacy group removed." -msgstr "Groupe de contacts supprimé." - -#: ../../Zotlabs/Module/Group.php:115 -msgid "Unable to remove privacy group." -msgstr "Impossible de supprimer le groupe de canaux." - -#: ../../Zotlabs/Module/Group.php:185 -msgid "Privacy group editor" -msgstr "Editeur de groupe de contacts." - -#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "Membres" - -#: ../../Zotlabs/Module/Group.php:201 -msgid "All Connected Channels" -msgstr "Tous les canaux connectés" - -#: ../../Zotlabs/Module/Group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer" - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "Profil-" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "Profil impossible à cloner." - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Impossible d'exporter le profil." - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "Le nom du profil est obligatoire." - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "Statut marital" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "Partenaire amoureux" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "Aime" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "N'aime pas" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "Travail/Occupation" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "Religion/Croyance" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "Opinions politiques" - -#: ../../Zotlabs/Module/Profiles.php:486 -#: ../../addon/openid/MysqlProvider.php:74 -msgid "Gender" -msgstr "Sexe" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "Préférences sexuelle" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "Site Internet" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "Centres d'intérêt" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Cacher la liste de vos contacts pour les visiteurs de votre profile" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "Modifier les détails du profil" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "Voir ce profil" - -#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1319 -msgid "Edit visibility" -msgstr "Changer la visibilité" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "Outils pour votre profil" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "Modifier votre bannière" - -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 -msgid "Change profile photo" -msgstr "Changer la photo du profil" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil avec ces paramètres" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "Cloner ce profil" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "Supprimer ce profil" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "Ajouter des éléments de profil" - -#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 -msgid "Personal" -msgstr "Me concernant" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "Relation" - -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "Importer le profil à partir d'un fichier" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "Exporter le profil vers un fichier." - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "Votre genre" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "Etat civil" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "préférence sexuelle" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "Nom du profil" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "Ceci est votre profil par défaut." - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "Votre nom complet" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "Titre/description" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "Rue" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "Ville" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "Région" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "Code postal" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "Qui (si applicable)" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples : marie123, Marie Deschamps, marie@exemple.com" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "Depuis (date)" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "Parlez nous de vous..." - -#: ../../Zotlabs/Module/Profiles.php:767 -#: ../../addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" -msgstr "URL de mon site Internet :" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "Ville de naissance" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "Opinions politiques" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "Convictions religieuses" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "Mots clés pour l'annuaire" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "Exemple : escrime photographie modélisme" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "Livres, littérature" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "Télévision" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "Loisirs/Centres d'intêret" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "Amour/Relation amoureuse" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "Niveau d'étude" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "Coordonnées et autres réseaux sociaux" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "Mes autres canaux" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "Communications" - -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 -msgid "Profile Image" -msgstr "Image du profil" - -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 -#: ../../include/nav.php:117 -msgid "Edit Profiles" -msgstr "Modifier mes profils" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "Cette page n'est disponible que pour les membres du site." - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "Bienvenue" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "Qu'est-ce que vous aimeriez faire ?" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "Veuillez ajouter cette page à vos favoris si vous souhaitez y revenir à l'avenir." - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "Téléverser une photo de profil" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "Téléverser une photo de couverture" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "Modifier votre profil par défaut" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 -msgid "View friend suggestions" -msgstr "Voir les suggestions d'amis" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "Voir l'annuaire des canaux" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "Afficher/modifier les paramètres de votre canal" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "Consulter la documentation du site ou du projet" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "Visitez la page d'accueil de votre canal" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "Affichez vos connexions et/ou ajoutez quelqu'un dont vous connaissez déjà l'adresse." - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "Visualiser votre flux personnel (ce qui peut être vide jusqu'à ce que vous ajoutiez des connexions)" - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "Voir le flux public. Attention : ce contenu n'est pas modéré." - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "Lien" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "Modifier la page web" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "Créer un nouveau canal" - -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Channel Manager" -msgstr "Gérer mes canaux" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "Canal actif" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "Pour changer de canal, sélectionnez-en un" - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "Canal par défaut" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "Définir comme défaut" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "%d nouveaux messages" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "%d nouvelles relations" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "Canaux délégués" - -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 -#: ../../include/features.php:123 ../../include/nav.php:458 -msgid "Cards" -msgstr "Cartes" - -#: ../../Zotlabs/Module/Cards.php:99 -msgid "Add Card" -msgstr "Ajouter carte" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Ce serveur d'annuaire requiert un jeton d'accès" - -#: ../../Zotlabs/Module/Siteinfo.php:18 -msgid "About this site" -msgstr "À propos de ce site" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -msgid "Site Name" -msgstr "Nom du site" - -#: ../../Zotlabs/Module/Siteinfo.php:23 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 -msgid "Terms of Service" -msgstr "Conditions de service" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Software and Project information" -msgstr "Informations sur le logiciel et le projet" - -#: ../../Zotlabs/Module/Siteinfo.php:27 -msgid "This site is powered by $Projectname" -msgstr "Ce site est propulsé par " - -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "Réseau fédéré et décentralisé, et services d'identification fournies par Zot" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Project homepage" -msgstr "Page d'accueil du projet" - -#: ../../Zotlabs/Module/Siteinfo.php:32 -msgid "Developer homepage" -msgstr "Page d'accueil des développeurs" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Pas de note" - -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1082 -msgid "Ratings" -msgstr "Evaluations" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Evaluation :" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Site web :" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Description :" - -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import Webpage Elements" -msgstr "Importer éléments de page web" - -#: ../../Zotlabs/Module/Webpages.php:55 -msgid "Import selected" -msgstr "Importation sélectionnée" - -#: ../../Zotlabs/Module/Webpages.php:78 -msgid "Export Webpage Elements" -msgstr "Exporter éléments de pages web" - -#: ../../Zotlabs/Module/Webpages.php:79 -msgid "Export selected" -msgstr "Export sélectionné" - -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 -#: ../../include/conversation.php:1915 ../../include/nav.php:481 -msgid "Webpages" -msgstr "Pages web" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Actions" -msgstr "Actions" - -#: ../../Zotlabs/Module/Webpages.php:249 -msgid "Page Link" -msgstr "Lien vers la page" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Titre de la page" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Type de fichier invalide" - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Erreur lors de l'ouverture du fichier zip" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "Chemin du dossier invalide" - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "Aucun élément de page Web détecté." - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Importation terminée" - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account" -" password." -msgstr "Les changements de nom de canal ne sont pas autorisés dans les 48 heures suivant la modification du mot de passe du compte." - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 -#: ../../include/channel.php:599 -msgid "Reserved nickname. Please choose another." -msgstr "Surnom réservé. Merci d'en choisir un autre." - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 -#: ../../include/channel.php:604 -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." - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "Changer le pseudo/adresse du canal" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "Toutes les connexions sur d'autres réseaux seront perdues !" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "Nouvelle adresse de canal" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "Renommer canal" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "Elément non modifiable" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "Modifier la publication" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "Message non valide" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "aucun résultat" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "Synchro de canal effectuée" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "mis dans la file d'attente" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "publié" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "accepté pour la distribution" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "mis à jour" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "mise à jour ignorée" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "accès refusé" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "destinataire introuvable" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "courriel rappelé" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "courriel reçu en double" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "courriel distribué" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapport de distribution pour %1$s" - -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Options" -msgstr "Options" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "Transférer à nouveau" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossible de créer la source. Aucun canal selectionné." - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Source créée." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Source mise à jour." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 -msgid "Channel Sources" -msgstr "Sources du canal" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gérer les sources distantes de contenu pour votre canal." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nouvelle source" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal." - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "N'importer le contenu que s'il contient ces mots (un par ligne)" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Laissez vide pour importer tout le contenu public" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nom du canal" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Ajouter les catégories suivantes aux publications importées à partir de cette source (séparer par des virgules)" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Source introuvable." - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifier la source" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Supprimer la source" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Source supprimée" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossible de supprimer la source." - -#: ../../Zotlabs/Module/Like.php:54 -msgid "Like/Dislike" -msgstr "Aime/n'aime pas" - -#: ../../Zotlabs/Module/Like.php:59 -msgid "This action is restricted to members." -msgstr "Cette action est réservée aux membres." - -#: ../../Zotlabs/Module/Like.php:60 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "S'il vous plait, identifiez vous avec votre identifant de $Projectname ou inscrivez vous comme nouveau membre de $Projectname pour continuer." - -#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 -msgid "Invalid request." -msgstr "Requête invalide." - -#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 -msgid "channel" -msgstr "canal" - -#: ../../Zotlabs/Module/Like.php:150 -msgid "thing" -msgstr "chose" - -#: ../../Zotlabs/Module/Like.php:196 -msgid "Channel unavailable." -msgstr "Canal indisponible." - -#: ../../Zotlabs/Module/Like.php:244 -msgid "Previous action reversed." -msgstr "Action précédente annulée." - -#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 -#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" - -#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1442 -#: ../../include/conversation.php:163 -#, 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:442 -#, 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:444 -#, 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:446 -#, 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:448 ../../addon/diaspora/Receiver.php:2072 -#, 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:450 ../../addon/diaspora/Receiver.php:2074 -#, 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:452 ../../addon/diaspora/Receiver.php:2076 -#, 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:564 -msgid "Action completed." -msgstr "Action terminée." - -#: ../../Zotlabs/Module/Like.php:565 -msgid "Thank you." -msgstr "Merci." - -#: ../../Zotlabs/Module/Directory.php:106 -msgid "No default suggestions were found." -msgstr "Aucune suggestion par défaut n'a été trouvée." - -#: ../../Zotlabs/Module/Directory.php:255 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d évaluation" -msgstr[1] "%d évaluations" - -#: ../../Zotlabs/Module/Directory.php:266 -msgid "Gender: " -msgstr "Sexe/genre :" - -#: ../../Zotlabs/Module/Directory.php:268 -msgid "Status: " -msgstr "État :" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Homepage: " -msgstr "Site web :" - -#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 -msgid "Age:" -msgstr "Age :" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 -#: ../../include/event.php:54 ../../include/event.php:86 -msgid "Location:" -msgstr "Emplacement :" - -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Description:" -msgstr "Description :" - -#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 -msgid "Hometown:" -msgstr "Ville natale :" - -#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 -msgid "About:" -msgstr "À propos :" - -#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1052 ../../include/channel.php:1376 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "Lier" - -#: ../../Zotlabs/Module/Directory.php:339 -msgid "Public Forum:" -msgstr "Forum public :" - -#: ../../Zotlabs/Module/Directory.php:342 -msgid "Keywords: " -msgstr "Mots-clefs :" - -#: ../../Zotlabs/Module/Directory.php:345 -msgid "Don't suggest" -msgstr "Ne pas suggérer" - -#: ../../Zotlabs/Module/Directory.php:347 -msgid "Common connections (estimated):" -msgstr "Connexions communes (estimation) :" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Global Directory" -msgstr "Annuaire global" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Local Directory" -msgstr "Annuaire local" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Finding:" -msgstr "Recherche :" - -#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canaux suggérés" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "next page" -msgstr "page suivante" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "previous page" -msgstr "page précédente" - -#: ../../Zotlabs/Module/Directory.php:408 -msgid "Sort options" -msgstr "Options de tri" - -#: ../../Zotlabs/Module/Directory.php:409 -msgid "Alphabetic" -msgstr "Alphabétique" - -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Reverse Alphabetic" -msgstr "Alphabétique inversé" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "Newest to Oldest" -msgstr "Du plus récent au moins récent" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Oldest to Newest" -msgstr "Du moins récent du plus récent" - -#: ../../Zotlabs/Module/Directory.php:429 -msgid "No entries (some entries may be hidden)." -msgstr "Pas d'entrées (certaines peuvent être cachées)." - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Recherche xchan" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "Ignorer/Cacher" - -#: ../../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/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "Impossible de localiser le destinataire." - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "Impossible de communiquer avec le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "Impossible de vérifier le canal demandé." - -#: ../../Zotlabs/Module/Mail.php:105 -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:160 -msgid "Messages" -msgstr "Messages" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "message" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "Message rappelé." - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expire le YYYY-MM-DD à HH:MM" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "Le canal demandé n'est pas sur ce réseau" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "À :" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "Objet :" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1385 -msgid "Attach file" -msgstr "Joindre un fichier" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "Envoyer" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1430 -msgid "Set expiration date" -msgstr "Définir la date d'expiration" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "Supprimer le message" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "Rapport de distribution" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "Rappeler le message" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "Le message a été rappelé." - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "Supprimer la conversation" - -#: ../../Zotlabs/Module/Mail.php:416 -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:420 -msgid "Send Reply" -msgstr "Envoyer la réponse" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Votre message pour %s (%s) :" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "Instances publiques" - -#: ../../Zotlabs/Module/Pubsites.php:27 -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:33 -msgid "Hub URL" -msgstr "URL du site" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Type d'accès" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politique d'inscription" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiques" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Logiciel" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "Evaluer" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 -msgid "webpage" -msgstr "pages web" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 -msgid "block" -msgstr "bloquer" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 -msgid "layout" -msgstr "mise en page" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 -msgid "menu" -msgstr "menu" - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "Elément %s installé" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "L'installation de l'élément %s a échoué" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Choisir un dossier de favoris" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Enregistrer le favori" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL du favori" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Ou entrez un nouveau nom de dossier de favoris" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "Saisissez un nom de dossier" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "ou sélectionnez un dossier existant (double-clic)" - -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 -msgid "Save to Folder" -msgstr "Enregistrer dans le dossier" - -#: ../../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/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Les mots de passe ne concordent pas." - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Enregistrement réussi. Continuez à créer votre premier canal ..." - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte." - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription est en attente d'approbation par l'administrateur." - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traîtée." - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "La création de nouveaux comptes est désactivée pour ce site." - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "La création de compte sur ce site est soumise à approbation." - -#: ../../Zotlabs/Module/Register.php:202 -msgid "Register at another affiliated hub." -msgstr "S'enregistrer sur un autre site du réseau." - -#: ../../Zotlabs/Module/Register.php:212 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain." - -#: ../../Zotlabs/Module/Register.php:238 -#, php-format -msgid "I accept the %s for this website" -msgstr "J'accepte les %s de ce site" - -#: ../../Zotlabs/Module/Register.php:245 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "J'ai plus de %s ans et j'accepte les %s de ce site." - -#: ../../Zotlabs/Module/Register.php:250 -msgid "Your email address" -msgstr "Votre adresse de courriel" - -#: ../../Zotlabs/Module/Register.php:251 -msgid "Choose a password" -msgstr "Choisissez un mot de passe" - -#: ../../Zotlabs/Module/Register.php:252 -msgid "Please re-enter your password" -msgstr "Merci de saisir à nouveau votre mot de passe" - -#: ../../Zotlabs/Module/Register.php:253 -msgid "Please enter your invitation code" -msgstr "Merci de saisir votre code d'invitation" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "no" -msgstr "non" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "yes" -msgstr "oui" - -#: ../../Zotlabs/Module/Register.php:274 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." - -#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 -#: ../../include/nav.php:164 -msgid "Register" -msgstr "S'inscrire" - -#: ../../Zotlabs/Module/Register.php:287 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Ce site nécessite une vérification par courriel. Après avoir rempli ce formulaire, veuillez consulter votre courriel pour obtenir des instructions supplémentaires." - -#: ../../Zotlabs/Module/Cover_photo.php:136 -#: ../../Zotlabs/Module/Cover_photo.php:186 -msgid "Cover Photos" -msgstr "Photos de couverture" - -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 -msgid "female" -msgstr "femme" - -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s a mis à jour son %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 -msgid "male" -msgstr "homme" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s a mis à jour son %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s a mis a jour sa %2$s" - -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 -msgid "cover photo" -msgstr "Photo principale" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -msgid "Change Cover Photo" -msgstr "Changer la photo de couverture" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "Chercher dans la documentation" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 -#: ../../include/nav.php:391 -msgid "About" -msgstr "À propos" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "Administrateurs" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "Développeurs" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "Tutoriels" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "Documentation $Projectname" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "Contenus" - -#: ../../Zotlabs/Module/Display.php:394 -msgid "Article" -msgstr "Article" - -#: ../../Zotlabs/Module/Display.php:446 -msgid "Item has been removed." -msgstr "L'élément a été supprimé." - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Étiquette retirée" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Retirer une étiquette à l'élément" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Étiquette à retirer :" - -#: ../../Zotlabs/Module/Network.php:100 -msgid "No such group" -msgstr "Groupe introuvable" - -#: ../../Zotlabs/Module/Network.php:142 -msgid "No such channel" -msgstr "Canal introuvable" - -#: ../../Zotlabs/Module/Network.php:147 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:159 -msgid "Search Results For:" -msgstr "Résultats de recherche pour :" - -#: ../../Zotlabs/Module/Network.php:229 -msgid "Privacy group is empty" -msgstr "Groupe de contacts vide" - -#: ../../Zotlabs/Module/Network.php:238 -msgid "Privacy group: " -msgstr "Groupe de contacts :" - -#: ../../Zotlabs/Module/Network.php:265 -msgid "Invalid connection." -msgstr "Contact non valide." - -#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 -msgid "Invalid channel." -msgstr "Canal invalide." - -#: ../../Zotlabs/Module/Acl.php:361 -msgid "network" -msgstr "réseau" - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." -msgstr "Accès refusé." - -#: ../../Zotlabs/Module/Filestorage.php:95 -msgid "File not found." -msgstr "Fichier introuvable." - -#: ../../Zotlabs/Module/Filestorage.php:142 -msgid "Edit file permissions" -msgstr "Modifier les droits d'accès au fichier" - -#: ../../Zotlabs/Module/Filestorage.php:154 -msgid "Set/edit permissions" -msgstr "Définir/modifier les droits d'accès" - -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Include all files and sub folders" -msgstr "Inclure tous fichiers et sous-répertoires" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Return to file list" -msgstr "Retourner à la liste des fichiers" - -#: ../../Zotlabs/Module/Filestorage.php:158 -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:159 -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:161 -msgid "Share this file" -msgstr "Partager ce fichier" - -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Show URL to this file" -msgstr "Montrer l'URL de ce fichier" - -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 -msgid "Show in your contacts shared folder" -msgstr "Faire apparaître dans le dossier partagé de vos contacts" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Pas de canal." - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "Pas de contact en commun." - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "Voir les connexions communes" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "Vérification de courriel renvoyé" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "Impossible de renvoyer le courriel de vérification." - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Aucun contact." - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "Voir les contacts" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "Comptes bloqués" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "Comptes expirés" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "Comptes arrivant à expiration" - -#: ../../Zotlabs/Module/Admin.php:112 -msgid "Clones" -msgstr "Clones" - -#: ../../Zotlabs/Module/Admin.php:118 -msgid "Message queues" -msgstr "File des messages" - -#: ../../Zotlabs/Module/Admin.php:132 -msgid "Your software should be updated" -msgstr "Votre logiciel doit d'être mis à jour" - -#: ../../Zotlabs/Module/Admin.php:137 -msgid "Summary" -msgstr "Résumé" - -#: ../../Zotlabs/Module/Admin.php:140 -msgid "Registered accounts" -msgstr "Comptes enregistrés" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Pending registrations" -msgstr "Inscriptions en attente" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Registered channels" -msgstr "Canaux enregistrés" - -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Active plugins" -msgstr "Greffons actifs" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Version" -msgstr "Version" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Repository version (master)" -msgstr "Version du dépôt (maître)" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Repository version (dev)" -msgstr "Version du dépôt (développeur)" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Aucune restriction de classe de service trouvée." - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Site web :" - -#: ../../Zotlabs/Module/Rate.php:159 -#, 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:160 -msgid "Rating (this information is public)" -msgstr "Evaluation (cette information est publique)" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Explication facultative de votre évaluation (cette information est publique)" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "Modifier la carte" - -#: ../../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:108 -#, php-format -msgid "Site Member (%s)" -msgstr "Membre du site (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "Demande de réinitialisation du mot de passe sur %s" - -#: ../../Zotlabs/Module/Lostpass.php:68 -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:91 ../../boot.php:1598 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../Zotlabs/Module/Lostpass.php:96 -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:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "Votre mot de passe de %s a été changé" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié ?" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "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:132 -msgid "Email Address" -msgstr "Adresse de courriel" - -#: ../../Zotlabs/Module/Notifications.php:62 -#: ../../Zotlabs/Lib/ThreadItem.php:408 -msgid "Mark all seen" -msgstr "Tout marquer comme vu" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "0. Débutant/Simple" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "1. Novice - pas expérimenté, mais prêt à apprendre" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "2. Intermédiaire - assez à l'aise" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "3. Avancé - très à l'aise" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "4. Expert - Je sais programmer" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "5. Crack - J'en sais probablement plus que vous" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Site Admin" -msgstr "Administrateur" - -#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "Reporter des bogues" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "View Bookmarks" -msgstr "Voir les marques-pages" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "My Chatrooms" -msgstr "Mes salons de discussions" - -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Firefox Share" -msgstr "Partager via Firefox" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Remote Diagnostics" -msgstr "Diagnostiques à distance" - -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 -msgid "Suggest Channels" -msgstr "Suggérer des canaux" - -#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Login" -msgstr "Connexion" - -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Activity" -msgstr "Activité" - -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 -#: ../../include/features.php:96 ../../include/nav.php:497 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Lib/Apps.php:246 -msgid "Channel Home" -msgstr "Mon canal" - -#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 -msgid "Events" -msgstr "Événements" - -#: ../../Zotlabs/Lib/Apps.php:250 -msgid "Directory" -msgstr "Annuaire" - -#: ../../Zotlabs/Lib/Apps.php:252 -msgid "Mail" -msgstr "Messages" - -#: ../../Zotlabs/Lib/Apps.php:255 -msgid "Chat" -msgstr "Clavardage" - -#: ../../Zotlabs/Lib/Apps.php:257 -msgid "Probe" -msgstr "Sonder" - -#: ../../Zotlabs/Lib/Apps.php:258 -msgid "Suggest" -msgstr "Suggérer" - -#: ../../Zotlabs/Lib/Apps.php:259 -msgid "Random Channel" -msgstr "Un canal au hasard" - -#: ../../Zotlabs/Lib/Apps.php:260 -msgid "Invite" -msgstr "Invitation" - -#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "Fonctionalités" - -#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 -msgid "Language" -msgstr "Langue" - -#: ../../Zotlabs/Lib/Apps.php:263 -msgid "Post" -msgstr "Envoyer" - -#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 -#: ../../addon/openid/MysqlProvider.php:59 -#: ../../addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" -msgstr "Photo du Profil" - -#: ../../Zotlabs/Lib/Apps.php:407 -msgid "Purchase" -msgstr "Acheter" - -#: ../../Zotlabs/Lib/Apps.php:411 -msgid "Undelete" -msgstr "Restaurer" - -#: ../../Zotlabs/Lib/Apps.php:419 -msgid "Add to app-tray" -msgstr "Ajouter au menu des applications" - -#: ../../Zotlabs/Lib/Apps.php:420 -msgid "Remove from app-tray" -msgstr "Enlever du menu des applications" - -#: ../../Zotlabs/Lib/Apps.php:421 -msgid "Pin to navbar" -msgstr "Épingler à la barre de navigation" - -#: ../../Zotlabs/Lib/Apps.php:422 -msgid "Unpin from navbar" -msgstr "Détacher de la barre de navigation" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "défaut" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "abonné" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "contributeur" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "rédacteur" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:93 -msgid "(No Title)" -msgstr "(Pas de titre)" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:107 -msgid "Wiki page create failed." -msgstr "Échec de création de la page wiki." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:120 -msgid "Wiki not found." -msgstr "Wiki introuvable." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:131 -msgid "Destination name already exists" -msgstr "Ce nom de destination est déjà pris" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:163 -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -msgid "Page not found" -msgstr "Page introuvable" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:194 -msgid "Error reading page content" -msgstr "Erreur de lecture du contenu de la page" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:350 -#: ../../Zotlabs/Lib/NativeWikiPage.php:400 -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 -msgid "Error reading wiki" -msgstr "Erreur de lecture du wiki" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:388 -msgid "Page update failed." -msgstr "Echec de modification de la page." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:422 -msgid "Nothing deleted" -msgstr "Rien n'a été supprimé" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:488 -msgid "Compare: object not found." -msgstr "Comparaison : objet introuvable." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:494 -msgid "Page updated" -msgstr "Page modifiée" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:497 -msgid "Untitled" -msgstr "Sans titre" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:503 -msgid "Wiki resource_id required for git commit" -msgstr "\"resource_id\" du wiki nécessaire pour l'enregistrement dans git." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:559 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "Message" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 -#: ../../include/bbcode.php:914 -msgid "Different viewers will see this text differently" -msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" - -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:33 -msgid "Visible to your default audience" -msgstr "Visible pour vos contacts seulement" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:106 -msgid "Only me" -msgstr "Seulement moi" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "Public" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "N'importe qui dans le réseau de $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "N'importe quel compte sur %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "N'importe lequel de mes contacts" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "Uniquement les contacts que j'ai expressément autorisés" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "N'importe qui d'authentifié (cela peut inclure des visiteurs d'autres réseaux)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "N'importe quel contact, y compris ceux qui n'ont pas encore été validés" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Ceci est votre réglage par défaut de l'audience de vos publications sur votre canal normal." - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Ceci est votre réglage par défaut à propos de qui peut voir votre canal de profil par défaut." - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "Ceci est votre réglage par défaut à propos de qui peut voir vos contacts." - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Ceci est votre réglage par défaut à propos de qui peut voir vos fichiers ou photos stocké(e)s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "Ceci est votre réglage par défaut de l'audience de vos pages web." - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "Il manque le nom du salon" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "Un salon avec ce nom existe déjà" - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "Identifiant de salon invalide." - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "Salon introuvable." - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "Le salon est plein" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "Notification $Projectname" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 -#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "Merci," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 -#, php-format -msgid "%s Administrator" -msgstr "l'administrateur de %s" - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "Cet courriel a été envoyé par %1$s à %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "Pour ne plus recevoir ces messages, veuillez ajuster vos paramètres de notification à %s" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "Pour ne plus recevoir ces messages, veuillez ajuster votre %s." - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Notify] Nouveau mail reçu sur %s" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s vous a envoyé un nouveau message privé à %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vous a envoyé %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "un message privé" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés." - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "commenté" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "aimé" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "pas aimé" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]%4$s de %5$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]votre %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notification] Commentaire modéré pour la conversation n°%1$d par %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Commentaire effectué sur la conversation #%1$d par %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "%1$sa commenté un élément ou une conversation que vous suivez." - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation." - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "Merci de visiter %spour valider ou rejeter ce commentaire." - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "%1$s aime [zrl=%2$s]votre %3$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Aime reçu à la convesation #%1$d par %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "%1$sa commenté un élément ou une conversation que vous avez créée " - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Notify] %s a publié sur le mur de votre profil" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s a posté sur le mur de votre profil à %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "%1$s envoyé à [zrl=%2$s]votre mur[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Notify] %s vous a étiquetté" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s vous a étiqueté à %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "%1$s [zrl=%2$s]vous a étiqueté[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Notify] %1$s vous a poké" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s vous a tapoté à %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s [zrl=%2$s]vous a tapoté[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Notify] %s a étiquetté votre publication" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s a étiqueté votre message à %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "%1$s a étiqueté [zrl=%2$s]votre message[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Notify] Demande de relation reçue" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "Vous avez reçu une nouvelle demande de connexion de la part de '%1$s' à %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "Vous avez reçu [zrl=%1$s]une nouvelle demande de connexion[/zrl] de la part de %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter leur profil sur %s" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Merci de visiter %s pour valider (ou non) cette demande de contact." - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Notify] Suggestion d'amitié reçue" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Vous avez reçu une suggestion d'ami de la part de '%1$s' à %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "" -"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "Vous avez reçu [zrl=%1$s]une suggestion d'ami[/zrl] pour %2$s de %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "Nom :" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "Photo :" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour valider ou rejeter cette suggestion." - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Notify]" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "a publié un nouveau message" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "a commenté la publication de %s" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "a édité un post daté du %s" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "a édité un commentaire daté du %s" - -#: ../../Zotlabs/Lib/NativeWiki.php:151 -msgid "Wiki updated successfully" -msgstr "Wiki mis à jour avec succès" - -#: ../../Zotlabs/Lib/NativeWiki.php:205 -msgid "Wiki files deleted successfully" -msgstr "Fichiers du wiki supprimés avec succès" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "Erreur de mise à jour sur %s" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur." - -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 -msgid "Private Message" -msgstr "Message Privé" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 -msgid "Select" -msgstr "Sélectionner" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will attend" -msgstr "Je participerai" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will not attend" -msgstr "Je ne participerai pas" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I might attend" -msgstr "Je participerai peut-être" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I agree" -msgstr "Je suis d'accord" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I disagree" -msgstr "Je ne suis pas d'accord" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I abstain" -msgstr "Je m'abstiens" - -#: ../../Zotlabs/Lib/ThreadItem.php:238 -msgid "Add Star" -msgstr "Mettre de côté (étoile)" - -#: ../../Zotlabs/Lib/ThreadItem.php:239 -msgid "Remove Star" -msgstr "Ne plus mettre de côté" - -#: ../../Zotlabs/Lib/ThreadItem.php:240 -msgid "Toggle Star Status" -msgstr "(Dés)activer l'étoile" - -#: ../../Zotlabs/Lib/ThreadItem.php:244 -msgid "starred" -msgstr "mis de côté" - -#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 -msgid "Message signature validated" -msgstr "Signature du message validée" - -#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 -msgid "Message signature incorrect" -msgstr "Signature du message incorrecte" - -#: ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "Add Tag" -msgstr "Ajouter une étiquette" - -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 -msgid "like" -msgstr "aiment" - -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 -msgid "dislike" -msgstr "n'aiment pas" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Share This" -msgstr "Partager" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "share" -msgstr "partager" - -#: ../../Zotlabs/Lib/ThreadItem.php:295 -msgid "Delivery Report" -msgstr "Rapport de distribution" - -#: ../../Zotlabs/Lib/ThreadItem.php:313 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commentaire" -msgstr[1] "%d commentaires" - -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 -#, php-format -msgid "View %s's profile - %s" -msgstr "Voir le profil de %s - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 -msgid "to" -msgstr "à" - -#: ../../Zotlabs/Lib/ThreadItem.php:348 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:349 -msgid "Wall-to-Wall" -msgstr "Mur-à-mur" - -#: ../../Zotlabs/Lib/ThreadItem.php:350 -msgid "via Wall-To-Wall:" -msgstr "par Mur-à-mur :" - -#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 -#, php-format -msgid "from %s" -msgstr "de %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 -#, php-format -msgid "last edited: %s" -msgstr "dernière modification : %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 -#, php-format -msgid "Expires: %s" -msgstr "Expire : %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:374 -msgid "Attend" -msgstr "En attente" - -#: ../../Zotlabs/Lib/ThreadItem.php:375 -msgid "Attendance Options" -msgstr "Options d'attente" - -#: ../../Zotlabs/Lib/ThreadItem.php:376 -msgid "Vote" -msgstr "Vote" - -#: ../../Zotlabs/Lib/ThreadItem.php:377 -msgid "Voting Options" -msgstr "Options de vote" - -#: ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "Enregistrer les favoris" - -#: ../../Zotlabs/Lib/ThreadItem.php:399 -msgid "Add to Calendar" -msgstr "Ajouter au Calendrier" - -#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 -msgid "This is an unsaved preview" -msgstr "Il s'agit d'une prévisualisation non sauvegardée." - -#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s montre tout" - -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 -msgid "Bold" -msgstr "Gras" - -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 -msgid "Italic" -msgstr "Italique" - -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 -msgid "Underline" -msgstr "Souligné" - -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 -msgid "Quote" -msgstr "Citation" - -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 -msgid "Code" -msgstr "Code" - -#: ../../Zotlabs/Lib/ThreadItem.php:758 -msgid "Image" -msgstr "Image" - -#: ../../Zotlabs/Lib/ThreadItem.php:759 -msgid "Attach File" -msgstr "Joindre fichier" - -#: ../../Zotlabs/Lib/ThreadItem.php:760 -msgid "Insert Link" -msgstr "Insérer un lien" - -#: ../../Zotlabs/Lib/ThreadItem.php:761 -msgid "Video" -msgstr "Vidéo" - -#: ../../Zotlabs/Lib/ThreadItem.php:771 -msgid "Your full name (required)" -msgstr "Votre nom complet (obligatoire)" - -#: ../../Zotlabs/Lib/ThreadItem.php:772 -msgid "Your email address (required)" -msgstr "Votre adresse de courriel (obligatoire)" - -#: ../../Zotlabs/Lib/ThreadItem.php:773 -msgid "Your website URL (optional)" -msgstr "L'adresse de votre site web (optionelle)" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer." - -#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 -#: ../../addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bienvenue %s. L'authentification distante a fonctionné." - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 -msgid "parent" -msgstr "retour" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 -msgid "Collection" -msgstr "Groupe de contacts" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Principal" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Carnet d'adresse" - -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 -#: ../../include/nav.php:423 -msgid "Calendar" -msgstr "Calendrier" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Calendrier - Messages entrants" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Calendrier - Messages sortants" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "Total" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "Partagé" - -#: ../../Zotlabs/Storage/Browser.php:277 -msgid "Add Files" -msgstr "Ajouter des fichiers" - -#: ../../Zotlabs/Storage/Browser.php:353 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Vous utilisez %1$s de votre espace de stockage." - -#: ../../Zotlabs/Storage/Browser.php:358 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Vous utilisez %1$s sur %2$s d'espace disponible. (%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:369 -msgid "WARNING:" -msgstr "AVERTISSEMENT :" - -#: ../../Zotlabs/Storage/Browser.php:381 -msgid "Create new folder" -msgstr "Nouveau dossier" - -#: ../../Zotlabs/Storage/Browser.php:383 -msgid "Upload file" -msgstr "Téléverser un fichier" - -#: ../../Zotlabs/Storage/Browser.php:396 -msgid "Drop files here to immediately upload" -msgstr "Mettez un fichier ici pour le télécharger immédiatement" - -#: ../../Zotlabs/Widget/Forums.php:100 -msgid "Forums" -msgstr "Forums" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "Sélectionner un canal" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "Lire et écrire" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "Lire uniquement" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "Mes agendas" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "Agendas partagés" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "Partager cet agenda" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "Nom et couleur de l'agenda" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "Créer un nouvel agenda" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "Nom de l'agenda" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "Outils pour les agendas" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "Importer un agenda" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "Sélectionner un agenda à importer dans" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "Carnet d'adresses" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "Nom du carnet d'adresses" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "Créer un nouveau carnet d'adresses" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "Nom du carnet d'adresses" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "Outils pour les carnets d'adresses" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "Importer un carnet d'adresses" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "Sélectionner un carnet d'adresses à importer dans" - -#: ../../Zotlabs/Widget/Appcategories.php:40 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 -#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 -#: ../../include/taxonomy.php:532 -msgid "Categories" -msgstr "Catégories" - -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 -msgid "Everything" -msgstr "Tout" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "Outils Evènements" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "Exporter le calendrier" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "Importer un calendrier" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "Salons suggérés" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "Panneau de contrôle du QG" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "Créer un nouveau post" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "Menu des messages privés" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "Vue combinée" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "Boîte de réception" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "Boîte d'envoi" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 -#: ../../include/nav.php:434 ../../include/nav.php:437 -msgid "Chatrooms" -msgstr "Salons de clavardage" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "Aperçu" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "Outils d'évaluation" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "M'évaluer" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "Voir mes évaluations" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "Activité" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "Ajouter un nouveau contact" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "Saisissez l'adresse du canal" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" - -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wiki List" -msgstr "Liste de wikis" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "Archives" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "Messages reçus" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "Messages envoyés" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "Conversations" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "Pas de message." - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "Supprimer la conversation" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "Membres du salon de discussion" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "photo/image" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 -msgid "Saved Searches" -msgstr "Recherches sauvegardées" - -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 -msgid "add" -msgstr "ajouter" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Notes" - -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:89 -msgid "Add new page" -msgstr "Ajouter une nouvelle page" - -#: ../../Zotlabs/Widget/Wiki_pages.php:83 -msgid "Wiki Pages" -msgstr "Pages wiki" - -#: ../../Zotlabs/Widget/Wiki_pages.php:94 -msgid "Page name" -msgstr "Nom de la page" - -#: ../../Zotlabs/Widget/Affinity.php:45 -msgid "Refresh" -msgstr "Actualiser" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "Tâches" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "Suggestions" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "Voir plus..." - -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:470 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "Cliquer pour voir plus" - -#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 -#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 -msgid "Tags" -msgstr "Étiquettes" - -#: ../../Zotlabs/Widget/Newmember.php:24 -msgid "Profile Creation" -msgstr "Création de profil" - -#: ../../Zotlabs/Widget/Newmember.php:26 -msgid "Upload profile photo" -msgstr "Téléverser la photo du profil" - -#: ../../Zotlabs/Widget/Newmember.php:27 -msgid "Upload cover photo" -msgstr "Téléverser la photo de couverture" - -#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 -msgid "Edit your profile" -msgstr "Modifier votre profil" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Find and Connect with others" -msgstr "Trouver et connecter avec des autres personnes" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "View the directory" -msgstr "Voir l'annuaire" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Manage your connections" -msgstr "Gérez vos connexions" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Communicate" -msgstr "Communiquer" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View your channel homepage" -msgstr "Voir la page d'accueil de votre canal" - -#: ../../Zotlabs/Widget/Newmember.php:41 -msgid "View your network stream" -msgstr "Visualisez votre flux réseau" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Documentation" -msgstr "Documentation" - -#: ../../Zotlabs/Widget/Newmember.php:58 -msgid "View public stream" -msgstr "Voir le flux public" - -#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 -msgid "New Member Links" -msgstr "Liens pour les nouveaux membres" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "Inscriptions en attente d'approbation" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "Analyser la file d'attente" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "Mises à jour BDD" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 -msgid "Admin" -msgstr "Administrateur" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "Fonctionnalités des greffons" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "Paramètres du compte" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "Paramètres du canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Fonctionnalités supplémentaires" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "Paramètres de greffon" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Display settings" -msgstr "Paramètres d'affichage" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "Manage locations" -msgstr "Gérer les emplacements" - -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Exporter le canal" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "OAuth1 apps" -msgstr "OAuth1 applications" - -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "OAuth2 apps" -msgstr "OAuth2 applications" - -#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 -msgid "Permission Groups" -msgstr "Groupes d'accès" - -#: ../../Zotlabs/Widget/Settings_menu.php:125 -msgid "Premium Channel Settings" -msgstr "Paramètres de canal VIP" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "Salons favoris" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "Nouvelle activité de réseau" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "Nouvelles notifications d'activité de réseau" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "Visualiser l'activité de votre réseau" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "Marquer tous les notifications lus" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:141 -msgid "Show new posts only" -msgstr "Afficher uniquement les nouveaux posts" - -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Filter by name" -msgstr "Filtrer par nom" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "Nouvelle activité principale" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "Notifications de nouvelles activités principales" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "Voir votre activité principale" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:138 -msgid "Mark all notifications seen" -msgstr "Marquer les notifications vues" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "Nouveaux courriels" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "Notifications de nouveaux courriels" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "Consulter vos courriels privés" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "Marquer tous les messages vus" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "Nouveaux événements" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "Notifications de nouveaux événements" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "Voir les événements" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "Marquer tous les événements comme vus" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "Notifications de nouvelles connexions" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "Voir toutes les connexions" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "Nouveaux fichiers" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "Notifications de nouveaux fichiers" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "Notifications" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "Voir tous les avis" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "Marquer tous les avis vus" - -#: ../../Zotlabs/Widget/Notifications.php:121 -msgid "New Registrations" -msgstr "Nouvelles inscriptions" - -#: ../../Zotlabs/Widget/Notifications.php:122 -msgid "New Registrations Notifications" -msgstr "Notifications de nouveaux inscriptions" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "Public Stream Notifications" -msgstr "Notifications de flux publics" - -#: ../../Zotlabs/Widget/Notifications.php:135 -msgid "View the public stream" -msgstr "Voir le flux public" - -#: ../../Zotlabs/Widget/Notifications.php:150 -msgid "Sorry, you have got no notifications at the moment" -msgstr "Désolé, vous n'avez pas de notifications pour le moment." - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "Source du canal introuvable." - -#: ../../boot.php:1569 -msgid "Create an account to access services and applications" -msgstr "Créer un compte pour accéder aux services et applications" - -#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 -#: ../../include/nav.php:159 -msgid "Logout" -msgstr "Déconnexion" - -#: ../../boot.php:1592 -msgid "Login/Email" -msgstr "pseudo / email" - -#: ../../boot.php:1593 -msgid "Password" -msgstr "Mot de passe" - -#: ../../boot.php:1594 -msgid "Remember me" -msgstr "Se souvenir de moi" - -#: ../../boot.php:1597 -msgid "Forgot your password?" -msgstr "Mot de passe oublié ?" - -#: ../../boot.php:2354 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "[$Projectname] erreur SSL du site web pour %s" - -#: ../../boot.php:2359 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Le certificat SSL n'est pas valide. Corrigez le." - -#: ../../boot.php:2475 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "[$Projectname] Tâches Cron inactives sur %s" - -#: ../../boot.php:2480 -msgid "Cron/Scheduled tasks not running." -msgstr "Les taches planifiées ne tournent pas." - -#: ../../boot.php:2481 ../../include/datetime.php:238 -msgid "never" -msgstr "jamais" - -#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 -msgid "Cover Photo" -msgstr "Photo de couverture" - -#: ../../view/theme/redbasic_c/php/config.php:16 -#: ../../view/theme/redbasic_c/php/config.php:19 -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "Focus (par défaut pour Hubzilla)" - -#: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "Paramètres du thème" - -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "Barre de navigation fine" - -#: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "Couleur de fond de la barre de navigation" - -#: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "Couleur des icônes de la barre de navigation" - -#: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "Couleur de l'icône active de la barre de navigation" - -#: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "Couleur des liens" - -#: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "Définir la couleur du texte de la bannière" - -#: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "Définir la couleur d'arrière-plan" - -#: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "Définir l'image d'arrière-plan" - -#: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "Définir la couleur de fond des contributions" - -#: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "Couleur de fond des commentaires" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "Définir la taille de police pour l'application entière" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "Exemples : 1rem, 100%, 16px" - -#: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "Définir la couleur de police pour les contributions et commentaires" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "Définir le rayon des arrondis" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "Exemple : 4px" - -#: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "Définir la profondeur de l'ombre des photos" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "Définir la largeur maximale de la zone des contenus" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "Laissez vide pour avoir la largeur par défaut" - -#: ../../view/theme/redbasic_c/php/config.php:115 -msgid "Left align page content" -msgstr "Aligner à gauche le contenu de la page" - -#: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "Définir la taille de la photo de l'auteur d'une conversation" - -#: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "Définir la taille de la photo de l'auteur d'une réponse" - -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "Des erreurs ont eu lieu lors de la suppression de la table de la base de données." - -#: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:779 -msgid "Submit Settings" -msgstr "Emvoyer les paramètres" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "Lors de la désinstallation, purger les tables?" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "Si cette case est cochée, les tables de la base Rendezvous seront supprimées lorsque le plugin sera désinstallé." - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "Jeton d'accès à la mapbox." - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "Si vous entrez un jeton d'accès Mapbox, il doit être utilisé pour récupérer les cartes à partir de Mapbox au lieu du serveur par défaut OpenStreetMap." - -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "Rendezvous" - -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "Cette identité a été supprimée par un autre membre en raison de l'inactivité. Appuyez sur le bouton \"Nouvelle identité\" ou actualisez la page pour enregistrer une nouvelle identité. Vous pouvez utiliser le même nom." - -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "Bienvenue dans Rendevzvous!" - -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with" -" the other members, tap the GPS control. When your location is discovered, a" -" red dot will appear and others will be able to see you on the map." -msgstr "Entrez votre nom pour rejoindre ce rendez-vous. Pour commencer à partager votre emplacement avec les autres membres, appuyez sur le contrôle GPS. Lorsque votre emplacement est découvert, un point rouge apparaîtra et les autres seront en mesure de vous voir sur la carte." - -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "Rencontrez-vous ici" - -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "Nouveau marqueur" - -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "Éditer le marqueur" - -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "Nouvelle identité" - -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "Supprimer le marqueur" - -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "Supprimer le membre" - -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "Éditer l'alerte de proximité" - -#: ../../addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius" -" of you.

Enter a radius in meters (0 to disable):" -msgstr "Une alerte de proximité sera émise lorsque ce membre se trouve dans un certain périmètre autour de vous. Entrer un rayon en mètres (0 pour désactiver):" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "distance" - -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "Distance d'alerte de proximité (mètres)" - -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the" -" marker location.

Enter a radius in meters (0 to disable):" -msgstr "Une alerte de proximité sera déclenchée quand vous serez à une certaine distance du marqueur d'emplacement.

Indiquez une distance en mètres (0 pour désactiver) :" - -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "Alerte de proximité de marqueur" - -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "Note de rappel" - -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "Saisissez une note à afficher quand vous serez à la distance indiquée..." - -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "Ajouter un nouveau rendezvous" - -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or" -" share their own locations with the group." -msgstr "Créez un nouveau rendez-vous et partagez le lien d'accès avec les gens que vous souhaitez inviter au groupe. Ceux qui ouvrent le lien deviennent membres du rendez-vous. Ils peuvent afficher les emplacements des autres membres, ajouter des marqueurs à la carte ou partager leurs propres emplacements avec le groupe." - -#: ../../addon/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" -msgstr "Vous n'avez pas de rendez-vous. Appuyez sur le bouton ci-dessus pour créer un rendez-vous !" - -#: ../../addon/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "Un certain paramètre" - -#: ../../addon/skeleton/skeleton.php:61 -msgid "A setting" -msgstr "Un paramètre" - -#: ../../addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" -msgstr "Paramètres du squelette" - -#: ../../addon/gnusoc/gnusoc.php:249 -msgid "GNU-Social Protocol Settings updated." -msgstr "Paramètres du protocol GNU-Social mis à jour." - -#: ../../addon/gnusoc/gnusoc.php:268 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Le protocole GNU-Social ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal." - -#: ../../addon/gnusoc/gnusoc.php:271 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "Activer le protocole GNU-Social pour ce canal" - -#: ../../addon/gnusoc/gnusoc.php:275 -msgid "GNU-Social Protocol Settings" -msgstr "Paramètres du protocol GNU-Social" - -#: ../../addon/gnusoc/gnusoc.php:471 -msgid "Follow" -msgstr "S'abonner" - -#: ../../addon/gnusoc/gnusoc.php:474 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "%1$s est maintenant abonné à %2$s" - -#: ../../addon/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "Paramètres Planets mis à jour." - -#: ../../addon/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "Activer le plugin Planets" - -#: ../../addon/planets/planets.php:153 -msgid "Planets Settings" -msgstr "Paramètres Planets" - -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "Paramètres par défaut du système :" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "ID Clipart préférées" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "Liste des ids clipart préférése. Celles-ci seront montrées en premier." - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "Terme de recherche par défaut" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "Le terme de recherche par défaut. Ceci sera affiché en second." - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "Retourner ensuite" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "Page à afficher après la sélection de l'image." - -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 -#: ../../include/nav.php:119 -msgid "Edit Profile" -msgstr "Éditeur de profil" - -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "Liste de profil" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "Tri selon les préférences" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "Ordre de tri des ids de clipart préférés." - -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "Les plus récents en premier" - -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "Comme entrés" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "Tri selon autre" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "Ordre de tri des autres clipart ids." - -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "Les plus téléchargés en premier" - -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "Les plus aimés en premier" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "IDs des messages préférés" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "Message à afficher au-dessus de la liste des résultats préférés." - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "Téléversé par :" - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "Dessiné par :" - -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "Utiliser cette image" - -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "ou sélectionner une image libre d'OpenClipart.org :" - -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "Terme de recherche" - -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "Erreur inconnue. Veuillez essayer à nouveau plus tard." - -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "Photo de profil actualisée avec succès." - -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "Photo pour adulte" - -#: ../../addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "Fourni l'option d'édition d'une photo afin de cacher des photos inappropriées de la vue d''album par défaut" - -#: ../../addon/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "Publier sur Wordpress" - -#: ../../addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "Activer l'extension de publication WordPress" - -#: ../../addon/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "Identifiant de connexion WordPress" - -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "Mot de passe de connexion WordPress" - -#: ../../addon/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "URL de l'API WordPress" - -#: ../../addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "Typiquement https://your-blog.tld/xmlrpc.php" - -#: ../../addon/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "ID de votre blog WordPress" - -#: ../../addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "Pour les sites multi-utilisateurs comme wordpress.com, sinon laisser vide" - -#: ../../addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "Par défaut, publier sur WordPress" - -#: ../../addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "Transférer les commentaires (nécessite le plugin hubzila_wp)" - -#: ../../addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "Paramètres de publications WordPress" - -#: ../../addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." -msgstr "Les paramètres WordPress ont été sauvegardés." - -#: ../../addon/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "Ce plugin cherche dans les publications les mots/textes que vous spécifiez ci-dessous, et réduit tout contenu contenant ces mots-clés afin qu'ils ne s'affichent pas à des moments inappropriés, tels que les insinuations sexuelles qui peuvent être inappropriées dans un contexte de travail. Il est poli et recommandé de marquer tout contenu contenant de la nudité avec #NSFW. Ce filtre peut également correspondre à tout autre mot/texte que vous spécifiez et peut ainsi être utilisé comme un filtre de contenu à usage général." - -#: ../../addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "Activer le filtrage des contenus" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" -msgstr "Liste séparée par des virgules des mots-clés à cacher" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "Mot, /expression-régulière/, lang=xx, lang!=xx" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "Paramètres NSFW (Not Safe For Work)" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "Filtre de contenu sujet général" - -#: ../../addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "Paramètres NSFW sauvegardés." - -#: ../../addon/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "Contenu pour adulte probable" - -#: ../../addon/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "%s - vue" - -#: ../../addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "Publier sur InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "Activer le plugin de publication InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "Identifiant InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "Mot de passe InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "Par défaut, publier dans InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "Paramètres de publication de InsaneJournal" - -#: ../../addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "Les paramètres d'InsaneJournal ont été sauvegardés" - -#: ../../addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "Publier sur Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "Activer le plugin de publication Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "Nom d'utilisateur Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "Mot de passe Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "Publication avec Dreamwidth par défaut" - -#: ../../addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "Paramètres de publication Dreamwidth" - -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "Nouvelle inscription" - -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "Message envoyé à %s. %sEnregistrement d'un nouveau compte : " - -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "Statistiques de l'annuaire Hubzilla" - -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "Total de Hubs" - -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "Hubs Hubzilla" - -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "Hubs Friendica" - -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "Pods Diaspora" - -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "Canaux Hubzilla" - -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "Canaux Friendica" - -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "Canaux Diaspora" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "Âgé de 35 ans et plus" - -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "Âgé de 34 et moins" - -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "Âge moyen" - -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "Salons de discussion connus" - -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "Étiquettes connues" - -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "Veuillez noter que les statistiques de Diaspora et Friendica sont simplement celles dont **ce répertoire** est au courant, et pas toutes celles connues dans le réseau. Cela s'applique également aux salles de discussion," - -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "Vous êtes Webbie :" - -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "Taille de la police (px) :" - -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "Lien :" - -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "Aimez-nous sur Hubzilla" - -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "Embarqué :" - -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "Photos importées" - -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "Import de l'album photo Redmatrix" - -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "Ceci va importer l'intégralité de vos albums photos Redmatrix dans ce canal." - -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" -msgstr "URL de base du serveur Redmatrix" - -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" -msgstr "Identifiant de connexion Redmatrix" - -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" -msgstr "Mot de passe de connexion Redmatrix" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "Importer uniquement cet album" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "Laisser vide pour importer tous les albums" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "Nombre maximum de comptes à importer" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "0 ou vide pour importer tout ce qui est disponible" - -#: ../../addon/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "Canaux à connecter automatiqument" - -#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 -msgid "Comma separated list" -msgstr "Liste séparée par des virgules" - -#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Canaux populaires" - -#: ../../addon/irc/irc.php:53 -msgid "IRC Settings" -msgstr "Paramètres IRC" - -#: ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Paramètres IRC sauvegardés" - -#: ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Salon de discussion IRC" - -#: ../../addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "Publier sur LiveJournal" - -#: ../../addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "Activer le plugin de publication LiveJournal" - -#: ../../addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "Identifiant LiveJournal" - -#: ../../addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "Mot de passe LiveJournal" - -#: ../../addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "Par défaut, publier sur LiveJournal" - -#: ../../addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "Paramètres de publication LiveJournal" - -#: ../../addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "Paramètres LiveJournal sauvegardés." - -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Nous avons rencontrons un problème lors de l'identification avec l'OpenID que vous avez fournie. Veuillez vérifier que vous avez correctement écrit votre ID." - -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "Prénom" - -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "Nom" - -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 -msgid "Nickname" -msgstr "Surnom" - -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "Nom complet" - -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "Photo de profil 16px" - -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "Photo de profil 32px" - -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "Photo de profil 48px" - -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "Photo de profil 64px" - -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "Photo de profil 80px" - -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "Photo de profil 128px" - -#: ../../addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "Années de naissance" - -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "Mois de naissance" - -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "Jour de naissance" - -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "Date de naissance" - -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur du protocole OpenID. Aucune ID trouvée." - -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 -msgid "Login failed." -msgstr "Échec de la connexion." - -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 -msgid "Male" -msgstr "Homme" - -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 -msgid "Female" -msgstr "Femme" - -#: ../../addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "Bienvenue." - -#: ../../addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "Ah m…" - -#: ../../addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "De rien." - -#: ../../addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "<rougit>" - -#: ../../addon/startpage/startpage.php:109 -msgid "Page to load after login" -msgstr "Page à charger après l'identification" - -#: ../../addon/startpage/startpage.php:109 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "Exemples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (laisser vide pour la page par défaut du réseau (grille)." - -#: ../../addon/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "Paramètres de la page de démarrage" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "giffler" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "gifflé(e)" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "baiser" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "baisé" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "breveté" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "être breveté" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "étreindre" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "être étreint" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "assassiner" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "être assassiné" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "vénérer" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "être vénéré" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "embrasser" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "embrassé" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "tenter" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "tenté" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "soulever les sourcils à la vue de" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "sourcils soulevés à la vue de" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "insulter" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "insulté" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "louer" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "loué" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "douter de" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "avoir douté de" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "manger" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "a mangé" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "séduire, charmer" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "séduit(e), charmé(e)" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "doute" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "a douté" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "jeter un regard" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "a jeté un regard à " - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "baiser" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "être baisé" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "baiser" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "baisé(e)" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "Déclarer un amour éternel pour" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "A déclaré l'amour éternel pour" - -#: ../../addon/diaspora/diaspora.php:781 -msgid "Diaspora Protocol Settings updated." -msgstr "Paramètres du protocole Diaspora mis à jour." - -#: ../../addon/diaspora/diaspora.php:800 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Le protocole Diaspora ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal." - -#: ../../addon/diaspora/diaspora.php:803 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Activer le protocole Diaspora pour ce canal" - -#: ../../addon/diaspora/diaspora.php:807 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permettre à tous les membres de Diaspora de commenter vos publications publiques" - -#: ../../addon/diaspora/diaspora.php:811 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Empêcher la redirection de vos mots-clés (hashtags) vers d'autres sites" - -#: ../../addon/diaspora/diaspora.php:815 -msgid "" -"Sign and forward posts and comments with no existing Diaspora signature" -msgstr "Signer et faire suivre les publications et commentaires n'ayant aucune signature Diaspora" - -#: ../../addon/diaspora/diaspora.php:820 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "Mots-clés suivis (séparer par une virgule, ne pas mettre le #)" - -#: ../../addon/diaspora/diaspora.php:825 -msgid "Diaspora Protocol Settings" -msgstr "Paramètres du protocole Diaspora" - -#: ../../addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Pas de nom d'utilisateur dans le fichier d'import." - -#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." - -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "Votre compte sur %s expirera dans quelques jours." - -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "Votre compte de test $NomDeProduit est sur le point d'expirer." - -#: ../../addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "Activer Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "Paramètres Rainbowtag" - -#: ../../addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "Paramètres Rainbowtag sauvegardés." - -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "Afficher les limites de débit ascendant (upload)" - -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "Taille maximale configurée par Hubzilla:" - -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "PHP upload_max_filesize: " - -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "PHP post_max_size (must be larger than upload_max_filesize): " - -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "image de profil générique" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "motif géométrique aléatoire" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "visage de monstre" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "visage généré par ordinateur" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "visage de style arcade rétro" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "Photo du profil par défaut du concentrateur" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "Information" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "Libravatar greffon est également installé. Veuillez désactiver le greffon Libravatar ou cet greffon Gravatar.
Le greffon Libravatar reviendra à Gravatar si rien n'a été trouvé à Libravatar." - -#: ../../addon/gravatar/gravatar.php:150 -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "Sauvegarder les paramètres" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "Image avatar par défaut" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "Sélectionnez l'image d'avatar par défaut si aucune n'a été trouvée sur Gravatar. Voir README" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "Evaluation des images" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "Sélectionnez l'évaluation d'avatar appropriée pour votre site. Voir README" - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "Paramètres Gravatar mis à jour." - -#: ../../addon/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "Importation de fichiers de stockage Hubzilla" - -#: ../../addon/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "Ceci importera tous vos fichiers cloud à partir d'un autre serveur." - -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "URL de base du serveur Hubzilla" - -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "Depuis la date modifiée aaaaa-mm-jjj" - -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "Jusqu'à la date modifiée aaaaa-mm-jjj" - -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Visiteurs récents du canal/profil" - -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "Cette extension n'a pas été configurée." - -#: ../../addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "Veuillez visiter les paramètres de Visage sur %s" - -#: ../../addon/visage/visage.php:99 -msgid "your feature settings page" -msgstr "La page des paramètres de vos fonctionnalités" - -#: ../../addon/visage/visage.php:112 -msgid "No entries." -msgstr "Aucune entrée." - -#: ../../addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "Activer la connexion Visage Visitor" - -#: ../../addon/visage/visage.php:170 -msgid "Visage Settings" -msgstr "Paramètres Visage" - -#: ../../addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "Les paramètres Nsabait ont été enregistrés." - -#: ../../addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "Activer le plugin NSAbait" - -#: ../../addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "Paramètres NSAbait" - -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "Envoyer un mail de test" - -#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "Aucun destinataire trouvé." - -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "Mail envoyé." - -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "L'envoi du mail a échoué." - -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "Test du mail" - -#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "Objet du message" - -#: ../../addon/mdpost/mdpost.php:41 -msgid "Use markdown for editing posts" -msgstr "Utiliser Markdown pour l'édition des posts" - -#: ../../addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "Afficher en plus grand" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" -msgstr "URL de la tuile du serveur" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of public tile servers" -msgstr "Une liste de serveurs de cartes publics" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "URL du serveur Nominatim (géocodage inversé)" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" -msgstr "Une liste de serveurs Nominatim" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" -msgstr "Zoom par défaut" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "Le niveau de zoom par défaut. (1: monde, 18: plus élevé, dépend également du serveur de tuiles)" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" -msgstr "Inclure le marqueur sur la carte" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." -msgstr "Inclure un marqueur sur la carte." - -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "Texte à inclure dans tous les messages sortants de ce site" - -#: ../../addon/fuzzloc/fuzzloc.php:148 -msgid "Fuzzloc Settings updated." -msgstr "Paramètres Fuzzloc mis à jour." - -#: ../../addon/fuzzloc/fuzzloc.php:175 -msgid "" -"Fuzzloc allows you to blur your precise location if your channel uses " -"browser location mapping." -msgstr "Fuzzloc vous permet de brouiller votre position précise si votre canal utilise la cartographie de position du navigateur." - -#: ../../addon/fuzzloc/fuzzloc.php:178 -msgid "Enable Fuzzloc Plugin" -msgstr "Activer le greffon Fuzzloc" - -#: ../../addon/fuzzloc/fuzzloc.php:182 -msgid "Minimum offset in meters" -msgstr "Décalage minimum en mètres" - -#: ../../addon/fuzzloc/fuzzloc.php:186 -msgid "Maximum offset in meters" -msgstr "Décalage maximum en mètres" - -#: ../../addon/fuzzloc/fuzzloc.php:191 -msgid "Fuzzloc Settings" -msgstr "Paramètres de Fuzzloc" - -#: ../../addon/rtof/rtof.php:45 -msgid "Post to Friendica" -msgstr "Publier sur Friendica" - -#: ../../addon/rtof/rtof.php:62 -msgid "rtof Settings saved." -msgstr "Paramètres rtof sauvegardés." - -#: ../../addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" -msgstr "Autoriser la publication sur Friendica" - -#: ../../addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" -msgstr "Par défaut, envoyer les publications publiques sur Friendica" - -#: ../../addon/rtof/rtof.php:89 -msgid "Friendica API Path" -msgstr "Chemin de l'API Friendica" - -#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 -msgid "https://{sitename}/api" -msgstr "https://{nomdusite}/api" - -#: ../../addon/rtof/rtof.php:93 -msgid "Friendica login name" -msgstr "Identifiant de connexion Friendica" - -#: ../../addon/rtof/rtof.php:97 -msgid "Friendica password" -msgstr "Mot de passe de connexion Friendica" - -#: ../../addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" -msgstr "Paramètres de publication de Hubzilla vers Friendica" - -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 -#: ../../include/channel.php:1567 -msgid "Status:" -msgstr "État :" - -#: ../../addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "Activer l'extension" - -#: ../../addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "Cacher le widget de chat Jappixmini de l'interface web" - -#: ../../addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "Identifiant Jabber" - -#: ../../addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "Serveur Jabber" - -#: ../../addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "Adresse hôte pour Jabber BOSH" - -#: ../../addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "Mot de passe Jabber" - -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "Chiffrer le mot de passe Jabber avec le mot de passe Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "Mot de passe Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "Valider automatiquement les demandes de souscription des contacts Hubzilla" - -#: ../../addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "Purger la liste interne des adresses jabber des contacts" - -#: ../../addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "Aide pour la configuration" - -#: ../../addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "Paramètres de Jappix mini" - -#: ../../addon/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "Actuellement bloqué" - -#: ../../addon/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "Aucun canal n'est actuellement bloqué" - -#: ../../addon/superblock/superblock.php:120 -msgid "Superblock Settings" -msgstr "Paramètres de Superblock" - -#: ../../addon/superblock/superblock.php:345 -msgid "Block Completely" -msgstr "Bloquer complètement" - -#: ../../addon/superblock/superblock.php:394 -msgid "superblock settings updated" -msgstr "Les paramètres du superblock ont été mis à jour" - -#: ../../addon/nofed/nofed.php:42 -msgid "Federate" -msgstr "Fédérer" - -#: ../../addon/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "Les paramètres nfed ont été enregistrés." - -#: ../../addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "Autoriser la fédération avec Toggle" - -#: ../../addon/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "Par défaut, fédérer les publications." - -#: ../../addon/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "Paramètres NoFed" - -#: ../../addon/redred/redred.php:45 -msgid "Post to Red" -msgstr "Publier sur Red" - -#: ../../addon/redred/redred.php:60 -msgid "Channel is required." -msgstr "Un canal est requis." - -#: ../../addon/redred/redred.php:76 -msgid "redred Settings saved." -msgstr "Paramètres redred sauvegardés." - -#: ../../addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" -msgstr "Autoriser la publication sur un autre canal Hubzilla" - -#: ../../addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" -msgstr "Par défaut, envoyer les publications publiques sur le canal Hubzilla" - -#: ../../addon/redred/redred.php:103 -msgid "Hubzilla API Path" -msgstr "Chemin de l'API Hubzilla" - -#: ../../addon/redred/redred.php:107 -msgid "Hubzilla login name" -msgstr "Identifiant de connexion Hubzilla" - -#: ../../addon/redred/redred.php:111 -msgid "Hubzilla channel name" -msgstr "Nom du canal Hubzilla" - -#: ../../addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" -msgstr "Paramètres Crosspost Hubzilla" - -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "Répertoire d'archivage du fichier journal" - -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "Répertoire où stocker les journaux de rotation" - -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "Taille du fichier journal en octets avant la rotation" - -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "Nombre de fichiers de journal à conserver" - -#: ../../addon/frphotos/frphotos.php:92 -msgid "Friendica Photo Album Import" -msgstr "Importation de l'album photo Friendica " - -#: ../../addon/frphotos/frphotos.php:93 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "Ceci importera toutes vos albums photos Friendica dans ce canal Hubzilla." - -#: ../../addon/frphotos/frphotos.php:94 -msgid "Friendica Server base URL" -msgstr "URL de base du serveur Friendica" - -#: ../../addon/frphotos/frphotos.php:95 -msgid "Friendica Login Username" -msgstr "Identifiant de connexion Friendica" - -#: ../../addon/frphotos/frphotos.php:96 -msgid "Friendica Login Password" -msgstr "Mot de passe de connexion Friendica" - -#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 -#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: ../../addon/pubcrawl/pubcrawl.php:1053 -msgid "ActivityPub Protocol Settings updated." -msgstr "Paramètres du protocole ActivityPub Protocol mise à jour." - -#: ../../addon/pubcrawl/pubcrawl.php:1062 -msgid "" -"The ActivityPub protocol does not support location independence. Connections" -" you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Le protocole ActivityPub ne prend pas en charge l'indépendance de localisation. Les connexions que vous établissez au sein de ce réseau peuvent être inaccessibles à partir d'autres emplacements de canaux." - -#: ../../addon/pubcrawl/pubcrawl.php:1065 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "Activer le protocole ActivityPub pour ce canal." - -#: ../../addon/pubcrawl/pubcrawl.php:1068 -msgid "Send multi-media HTML articles" -msgstr "Envoyer des articles HTML multimédia" - -#: ../../addon/pubcrawl/pubcrawl.php:1068 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "Non pris en charge par certains services de microblog tels que Mastodon." - -#: ../../addon/pubcrawl/pubcrawl.php:1072 -msgid "ActivityPub Protocol Settings" -msgstr "Paramètres du protocole ActivityPub " - -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "Serveurs et ressources du projet" - -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "Créateur et Responsable Technique du projet" - -#: ../../addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "Administrateur, développeur, responsable d'annuaire, équipe support" - -#: ../../addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "Et les centaines d'autres personnes et organisations qui ont contribué à rendre le Hubzilla possible." - -#: ../../addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "Les projets Redmatrix / Hubzilla sont fournis principalement par des bénévoles qui donnent de leur temps et de leur expertise - et paient souvent de leur poche pour des services qu'ils partagent avec d'autres." - -#: ../../addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "Il n'y a ni financement d'entreprise ni publicités, et nous ne recueillons ni ne vendons vos données personnelles. (Nous ne contrôlons pas vos informations personnelles - vous le faites !)" - -#: ../../addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and" -" privacy." -msgstr "Aider à soutenir notre travail novateur en matière de décentralisation, d'identité Web et de confidentialité." - -#: ../../addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "Vos dons maintiennent les serveurs et les services en marche et nous aident également à fournir de nouvelles fonctionnalités innovantes et un développement continu." - -#: ../../addon/donate/donate.php:60 -msgid "Donate" -msgstr "Donner" - -#: ../../addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "Choisissez un projet, un développeur ou un hub public à soutenir à l'aide d'un don unique" - -#: ../../addon/donate/donate.php:63 -msgid "Donate Now" -msgstr "Donner maintenant" - -#: ../../addon/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project " -"only)" -msgstr "Or devenez un sponsor du projet (projet Hubzilla uniquement)" - -#: ../../addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "Veuillez indiquer si vous souhaitez que votre nom ou prénom (ou rien) apparaisse dans la liste de nos sponsors." - -#: ../../addon/donate/donate.php:66 -msgid "Sponsor" -msgstr "Sponsors" - -#: ../../addon/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "Remerciements particuliers à :" - -#: ../../addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "Ceci est un dictionnaire d'accords de guitare assez complet et facile qui énumère la plupart des manières possibles de jouer un certain accord, à partir de la base de la touche jusqu'à quelques frettes au-delà de la douzième frette (au-delà de laquelle tout se répète). Un couple d'accordages non standard sont fournis au profit des joueurs de diapositives, etc." - -#: ../../addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "Les noms des accords commencent par une note racine (A-G) et peuvent inclure des dièses (#) et des bémols (b). Ce logiciel analysera la plupart des conventions de dénomination standard telles que maj, min, dim, sus (2 ou 4), aug, avec des éléments répétitifs facultatifs." - -#: ../../addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "Exemples valides comprennent A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." - -#: ../../addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "Acords de guitar" - -#: ../../addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "Le dictionnaire en ligne complet des accords" - -#: ../../addon/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "Réglage" - -#: ../../addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "Nom d'accord. Exemple : Em7." - -#: ../../addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "Montrer pour les gauchers" - -#: ../../addon/chords/chords.php:33 -msgid "Quick Reference" -msgstr "Référence rapide" - -#: ../../addon/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "Publier sur Libertree" - -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "Activer le plugin de publication Libertree" - -#: ../../addon/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "Jeton de l'API Libertree" - -#: ../../addon/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "Adresse du site Libertree" - -#: ../../addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "Par défaut, publier sur Libertree" - -#: ../../addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "Paramètres de publication pour Libertree" - -#: ../../addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "Paramètres de Libertree sauvegardés." - -#: ../../addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "Flattr this!" - -#: ../../addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "Les paramètres du widget Flattr ont été mis à jour" - -#: ../../addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "Utilisateur de Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "URL de ce que vous voulez flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "Si une url vide est utilisée" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "Titre de ce que vous voulez flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "Si vide, \"nom du canal sur Hubzilla\" sera utilisé" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "Statique ou dynamique bouton Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "statique" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "dynamique" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "Alignement du widget" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "gauche" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "droite" - -#: ../../addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "Activer le widget Flattr" - -#: ../../addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "Paramètres du widget Flattr" - -#: ../../addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" -msgstr "Publier sur GNU-social" - -#: ../../addon/statusnet/statusnet.php:195 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide." - -#: ../../addon/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "Nous ne pouvons pas contacter l'API de GNU-social avec le chemin que vous avez entré." - -#: ../../addon/statusnet/statusnet.php:266 -msgid "GNU social settings updated." -msgstr "Les paramètres GNU-social ont été mis à jour." - -#: ../../addon/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" -msgstr "Les OAuthKeys GNU-social sont globalement disponibles." - -#: ../../addon/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." -msgstr "Il existe des paires de clés OAuth préconfigurées pour certains serveurs GNU-social disponibles. Si vous utilisez l'un d'eux, utilisez ces informations d'identification.\nSi vous ne voulez pas vous connecter à une autre instance GNU social (voir ci-dessous)." - -#: ../../addon/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" -msgstr "Fournissez vos propres informations d'identification OAuth" - -#: ../../addon/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as" -" an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." -msgstr "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée." - -#: ../../addon/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" -msgstr "Clé d'utilisateur OAuth" - -#: ../../addon/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" -msgstr "Secret d'utilisateur OAuth" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Base API Path" -msgstr "Chemin de l'API de base" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Remember the trailing /" -msgstr "N'oubliez pas le / final" - -#: ../../addon/statusnet/statusnet.php:345 -msgid "GNU social application name" -msgstr "Nom de l'application GNU-social" - -#: ../../addon/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." -msgstr "Pour vous connecter à votre compte GNU-social, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de GNU-social. Vous devez le copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront visibles sur GNU-social." - -#: ../../addon/statusnet/statusnet.php:370 -msgid "Log in with GNU social" -msgstr "Vous connecter avec GNU-social" - -#: ../../addon/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" -msgstr "Copier ici le code de sécurité de GNU-social." - -#: ../../addon/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" -msgstr "Annuler le processus de prise de contact" - -#: ../../addon/statusnet/statusnet.php:385 -msgid "Current GNU social API is" -msgstr "L'API GNU-social courante est" - -#: ../../addon/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" -msgstr "Annuler la connexion GNU-social" - -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 -msgid "Currently connected to: " -msgstr "Actuellement connecté à :" - -#: ../../addon/statusnet/statusnet.php:406 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "Remarque : en raison de vos paramètres de confidentialité (masquer les détails de votre profil aux visiteurs inconnus ?), le lien potentiellement inclus dans les annonces publiques relayées sur GNU-social amènera le visiteur à une page vierge informant le visiteur que l'accès à votre profil a été restreint." - -#: ../../addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "Autoriser la publication sur GNU-social" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte GNU-social associé." - -#: ../../addon/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" -msgstr "Par défaut, publier sur GNU-social" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte GNU-social associé" - -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 -msgid "Clear OAuth configuration" -msgstr "Effacer la configuration OAuth" - -#: ../../addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" -msgstr "Paramètres de publication GNU-social" - -#: ../../addon/statusnet/statusnet.php:892 -msgid "API URL" -msgstr "URL de l'API" - -#: ../../addon/statusnet/statusnet.php:895 -msgid "Application name" -msgstr "Nom de l'application" - -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "QR code" - -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "Générateur de QRcode" - -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "Entrer du texte" - -#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 -msgid "Invalid game." -msgstr "Jeu invalide" - -#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 -msgid "You are not a player in this game." -msgstr "Vous n'êtes pas un joueur de ce jeu." - -#: ../../addon/chess/chess.php:415 -msgid "You must be a local channel to create a game." -msgstr "Vous devez être un canal local pour créer un jeu." - -#: ../../addon/chess/chess.php:433 -msgid "You must select one opponent that is not yourself." -msgstr "Vous devez sélectionner un adversaire qui ne soit pas vous-même." - -#: ../../addon/chess/chess.php:444 -msgid "Random color chosen." -msgstr "Couleur aléatoire choisie." - -#: ../../addon/chess/chess.php:452 -msgid "Error creating new game." -msgstr "Erreur lors de la création du nouveau jeu." - -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 -msgid "Requested channel is not available." -msgstr "Canal demandé non disponible." - -#: ../../addon/chess/chess.php:500 -msgid "You must select a local channel /chess/channelname" -msgstr "Vous devez sélectionner un canal local /échecs/nomducanal" - -#: ../../addon/chess/chess.php:1066 -msgid "Enable notifications" -msgstr "Activer les notifications" - -#: ../../addon/twitter/twitter.php:99 -msgid "Post to Twitter" -msgstr "Publier sur Twitter" - -#: ../../addon/twitter/twitter.php:155 -msgid "Twitter settings updated." -msgstr "Les paramètres de Twitter ont été mis à jour." - -#: ../../addon/twitter/twitter.php:184 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "Aucune paire de clés d'utilisateur pour Twitter n'a été trouvée. Veuillez contacter l'administrateur de votre site." - -#: ../../addon/twitter/twitter.php:206 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input" -" box below and submit the form. Only your public posts will" -" be posted to Twitter." -msgstr "Dans cette instance de Hubzilla, le plugin Twitter a été activé, mais vous n'avez pas encore connecté votre compte à votre compte Twitter. Pour ce faire, cliquez sur le bouton ci-dessous pour obtenir un code PIN de Twitter que vous devez copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront publiés sur Twitter." - -#: ../../addon/twitter/twitter.php:208 -msgid "Log in with Twitter" -msgstr "Connectez-vous avec votre compte Twitter" - -#: ../../addon/twitter/twitter.php:211 -msgid "Copy the PIN from Twitter here" -msgstr "Copier ici le PIN fourni par Twitter" - -#: ../../addon/twitter/twitter.php:238 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "Note : En raison de vos paramètres de confidentialité (Masquer les détails de votre profil aux visiteurs inconnus?), le lien potentiellement inclus dans les annonces publiques relayées vers Twitter amènera le visiteur à une page vierge l'informant que l'accès à votre profil a été restreint." - -#: ../../addon/twitter/twitter.php:243 -msgid "Allow posting to Twitter" -msgstr "Autoriser la publication sur Twitter" - -#: ../../addon/twitter/twitter.php:243 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte Twitter associé." - -#: ../../addon/twitter/twitter.php:247 -msgid "Twitter post length" -msgstr "Longueur des messages Twitter" - -#: ../../addon/twitter/twitter.php:247 -msgid "Maximum tweet length" -msgstr "Longueur maximale du tweet" - -#: ../../addon/twitter/twitter.php:252 -msgid "Send public postings to Twitter by default" -msgstr "Par défaut, envoyer vos publications publiques sur Twitter." - -#: ../../addon/twitter/twitter.php:252 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte Twitter associé." - -#: ../../addon/twitter/twitter.php:270 -msgid "Twitter Post Settings" -msgstr "Paramètres des publications Twitter" - -#: ../../addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" -msgstr "Désactiver la fonctionnalité" - -#: ../../addon/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." -msgstr "Cacher le bouton et afficher les émoticônes directement." - -#: ../../addon/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" -msgstr "Paramètres du bouton des émoticônes" - -#: ../../addon/cart/myshop.php:138 -msgid "Order Not Found" -msgstr "Commande introuvable" - -#: ../../addon/cart/cart.php:810 -msgid "Order cannot be checked out." -msgstr "La commande ne peut pas être finalisée." - -#: ../../addon/cart/cart.php:1073 -msgid "Enable Shopping Cart" -msgstr "Activer le panier d'achats" - -#: ../../addon/cart/cart.php:1080 -msgid "Enable Test Catalog" -msgstr "Activer le catalogue de test" - -#: ../../addon/cart/cart.php:1088 -msgid "Enable Manual Payments" -msgstr "Activer les paiements manuels" - -#: ../../addon/cart/cart.php:1103 -msgid "Base Cart Settings" -msgstr "Paramètres de base du panier" - -#: ../../addon/cart/cart.php:1151 -msgid "Add Item" -msgstr "Ajouter un article" - -#: ../../addon/cart/cart.php:1165 -msgid "Call cart_post_" -msgstr "Appeler cart_post_" - -#: ../../addon/cart/cart.php:1195 -msgid "Cart Not Enabled (profile: " -msgstr "Panier non activé (profile:" - -#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 -msgid "Order not found." -msgstr "Commande introuvable." - -#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 -msgid "No Order Found" -msgstr "Aucune commande trouvée" - -#: ../../addon/cart/cart.php:1270 -msgid "call: " -msgstr "appel:" - -#: ../../addon/cart/cart.php:1273 -msgid "An unknown error has occurred Please start again." -msgstr "Une erreur inconnue s'est produite. Veuillez recommencer." - -#: ../../addon/cart/cart.php:1414 -msgid "Invalid Payment Type. Please start again." -msgstr "Type de paiement non valable. Recommencez, s'il vous plaît." - -#: ../../addon/cart/cart.php:1421 -msgid "Order not found" -msgstr "Commande non trouvée" - -#: ../../addon/cart/manual_payments.php:9 -msgid "Error: order mismatch. Please try again." -msgstr "Erreur : non-appariement de commande. Veuillez réessayer." - -#: ../../addon/cart/manual_payments.php:29 -msgid "Manual payments are not enabled." -msgstr "Les paiements manuels ne sont pas activés." - -#: ../../addon/cart/manual_payments.php:44 -msgid "Finished" -msgstr "Terminé." - -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Ce site web est surveillé grâce à l'outil d'analyse Piwik." - -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Si vous ne souhaitez pas que vos visites soient enregistrées de cette façon, vous pouvez\ndéfinir un cookie pour empêcher Piwik de suivre davantage de visites du site (opt-out)." - -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "URL de base Piwik" - -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "Chemin absolu vers votre installation Piwik. (sans le http/s, avec antislash)" - -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "ID du site" - -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "Afficher le lien opt-out du cookie ?" - -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "Traqueur asynchrone" - -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "Activer le traqueur d'erreur du frontend JavaScript" - -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "Cette fonctionnalité requiert une version de Piwik >=2.2.0" - -#: ../../addon/tour/tour.php:76 -msgid "Edit your profile and change settings." -msgstr "Éditer votre profil et changer les paramètres." - -#: ../../addon/tour/tour.php:77 -msgid "Click here to see activity from your connections." -msgstr "Cliquer ici pour voir l'activité de vos contacts." - -#: ../../addon/tour/tour.php:78 -msgid "Click here to see your channel home." -msgstr "Cliquer ici pour voir votre canal principal." - -#: ../../addon/tour/tour.php:79 -msgid "You can access your private messages from here." -msgstr "Vous pouvez accéder à vos messages privés à partir d'ici." - -#: ../../addon/tour/tour.php:80 -msgid "Create new events here." -msgstr "Créer de nouveaux événements ici." - -#: ../../addon/tour/tour.php:81 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "Vous pouvez accepter de nouveaux contacts et changer les droits d'accès des contacts existants. Vous pouvez également créer des groupes de contacts." - -#: ../../addon/tour/tour.php:82 -msgid "System notifications will arrive here" -msgstr "Les notifications du système arriveront ici." - -#: ../../addon/tour/tour.php:83 -msgid "Search for content and users" -msgstr "Rechercher du contenu ou des utilisateurs" - -#: ../../addon/tour/tour.php:84 -msgid "Browse for new contacts" -msgstr "Rechercher de nouveaux contacts" - -#: ../../addon/tour/tour.php:85 -msgid "Launch installed apps" -msgstr "Démarrer des applications installées" - -#: ../../addon/tour/tour.php:86 -msgid "Looking for help? Click here." -msgstr "Un peu d'aide ? Cliquer ici." - -#: ../../addon/tour/tour.php:87 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "De nouveaux événement se sont produits dans votre réseau. Cliquer ici pour voir ce qui s'est passé !" - -#: ../../addon/tour/tour.php:88 -msgid "You have received a new private message. Click here to see from who!" -msgstr "Vous avez reçu un nouveau message privé. Cliquer ici pour voir qui vous écrit !" - -#: ../../addon/tour/tour.php:89 -msgid "There are events this week. Click here too see which!" -msgstr "Il y a des événements cette semaine. Cliquer ici pour voir lesquels !" - -#: ../../addon/tour/tour.php:90 -msgid "You have received a new introduction. Click here to see who!" -msgstr "Vous avez reçu une nouvelle demande de relation. Cliquer ici pour voir de qui !" - -#: ../../addon/tour/tour.php:91 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "Vous avez reçu une notification du système. Cliquer ici pour voir ce qui se passe !" - -#: ../../addon/tour/tour.php:94 -msgid "Click here to share text, images, videos and sound." -msgstr "Cliquer ici pour partager du texte, des images, des vidéos ou du son." - -#: ../../addon/tour/tour.php:95 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "Vous pouvez ajouter à votre mise à jour un titre facultatif (pratique pour de longues publications)." - -#: ../../addon/tour/tour.php:96 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "Renseigner certaines catégories ici permet de retrouver plus facilement votre message plus tard." - -#: ../../addon/tour/tour.php:97 -msgid "Share photos, links, location, etc." -msgstr "Partager des photos, des liens, des localisations, etc." - -#: ../../addon/tour/tour.php:98 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "Envie de partager un contenu pour une durée limitée ? Faites-le expirer à une certaine date." - -#: ../../addon/tour/tour.php:99 -msgid "You can password protect content." -msgstr "Vous pouvez protéger un contenu avec un mot de passe." - -#: ../../addon/tour/tour.php:100 -msgid "Choose who you share with." -msgstr "Choisir avec qui vous partagez." - -#: ../../addon/tour/tour.php:102 -msgid "Click here when you are done." -msgstr "Cliquer ici quand vous avez fini." - -#: ../../addon/tour/tour.php:105 -msgid "Adjust from which channels posts should be displayed." -msgstr "Préciser de quels canaux les publications seront affichées." - -#: ../../addon/tour/tour.php:106 -msgid "Only show posts from channels in the specified privacy group." -msgstr "Afficher uniquement les messages des canaux appartenant au groupe de contacts spécifié." - -#: ../../addon/tour/tour.php:110 -msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "Trouvez facilement des publications contenant des tags (mots-clés précédés du symbole \"#\")." - -#: ../../addon/tour/tour.php:111 -msgid "Easily find posts in given category." -msgstr "Trouvez facilement des publications dans une catégorie donnée." - -#: ../../addon/tour/tour.php:112 -msgid "Easily find posts by date." -msgstr "Trouvez facilement des publications en fonction de leur date." - -#: ../../addon/tour/tour.php:113 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we" -" think you might find interesting." -msgstr "Voici des utilisateurs que vous pourriez trouver intéressants. Ces utilisateurs se sont portés volontaires pour être affichés comme exemples." - -#: ../../addon/tour/tour.php:114 -msgid "Here you see channels you have connected to." -msgstr "Retrouvez ici les canaux auxquels vous vous êtes connectés." - -#: ../../addon/tour/tour.php:115 -msgid "Save your search so you can repeat it at a later date." -msgstr "Enregistrer votre recherche de façon à pouvoir la répéter plus tard." - -#: ../../addon/tour/tour.php:118 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It" -" is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "Si vous voyez cette icône, vous pouvez être sûr que l'expéditeur est qui il dit qu'il est. Il est normal qu'il ne soit pas toujours possible de vérifier l'expéditeur, donc l'icône manquera parfois. Il n'est généralement pas nécessaire de s'inquiéter à ce sujet." - -#: ../../addon/tour/tour.php:119 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "Attention ! Il semble que quelqu'un a essayé de contrefaire un message ! Ce message n'a pas nécessairement été envoyé par la personne annoncée !" - -#: ../../addon/tour/tour.php:126 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "Bienvenue sur Hubzilla! Voulez-vous faire un tour de l'interface utilisateur? Vous pouvez le mettre en pause à tout moment et continuer où vous l'avez laissé en rechargeant la page ou en naviguant vers une autre page. Vous pouvez également avancer en appuyant sur la touche de retour." - -#: ../../addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "Partage d'identification étendu" - -#: ../../addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "Partagez votre identité avec tous les sites Internet. Lorsqu'elle est désactivée, l'identité n'est partagée qu'avec les sites $Projectname." - -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tic-tac-toe en 3 dimensions" - -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game" -msgstr "Nouveau jeu" - -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "Nouveau jeu avec handicap" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "Trois dimensions tic-tac-toe est juste comme le jeu traditionnel, sauf qu'il est joué sur plusieurs niveaux simultanément." - -#: ../../addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "Dans ce cas, il y a trois niveaux. Vous gagnez en obtenant trois dans une rangée à n'importe quel niveau, que ce soit vers le haut, le bas, ou en diagonale à travers les différents niveaux." - -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "Le jeu handicap désactive la position centrale au niveau intermédiaire, car le joueur qui revendique ce carré a souvent un avantage indu." - -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "Vous commencez…" - -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "Cette fois, je commence…" - -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "Vous avez gagné !" - -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "Jeu de \"Chat\" !" - -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "J'ai gagné !" - -#: ../../addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "Message à afficher sur chaque page de ce serveur" - -#: ../../addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" -msgstr "Paramètres du haut de page" - -#: ../../addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." -msgstr "Paramètres du haut de page sauvegardés." - -#: ../../addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "Ne vous authentifier automatiquement que sur les sites de vos contacts" - -#: ../../addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "Par défaut vous êtres authentifiés automatiquement partout sur le réseau" - -#: ../../addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "Paramètres Authchoose" - -#: ../../addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "Paramètres Authchoose mis à jour." - -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "isolé" - -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "saoul" - -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "libidineux" - -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "défoncé" - -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "cramé" - -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "énervé" - -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "cinglé" - -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "dommage" - -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "somnolent" - -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "grognon" - -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "allumé" - -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "à demi-conscient" - -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "amoureux" - -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "convoitise" - -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "nu" - -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "puant" - -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "en sueur" - -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "en sang" - -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "victorieux" - -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "vaincu" - -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "envieux" - -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "jaloux" - -#: ../../addon/xmpp/xmpp.php:31 -msgid "XMPP settings updated." -msgstr "Les paramètres XMPP ont été mis à jour." - -#: ../../addon/xmpp/xmpp.php:53 -msgid "Enable Chat" -msgstr "Activer le Chat" - -#: ../../addon/xmpp/xmpp.php:58 -msgid "Individual credentials" -msgstr "Informations d'identifications individuelles" - -#: ../../addon/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" -msgstr "serveur Jabber BOSH" - -#: ../../addon/xmpp/xmpp.php:69 -msgid "XMPP Settings" -msgstr "Paramètres XMPP" - -#: ../../addon/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" -msgstr "Hôte Jabber BOSH" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "Use central userbase" -msgstr "Utiliser la base d'utilisateurs centrale" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "Si cette option est activée, les membres se connecteront automatiquement à un serveur ejabberd qui doit être installé sur cette machine avec des informations d'identification synchronisées via le script \"auth_ejabberd.php\"." - -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "Qui m'aime?" - -#: ../../addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "Vous êtes maintenant connecté à pumpio." - -#: ../../addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "retourner à la page des paramètres des fonctionnalités" - -#: ../../addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "Publier sur Pump.io" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "Nom du serveur Pump.io" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "Sans \"http://\" ou \"https://\"" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "Identifiant Pump.io" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "Sans le nom de serveur" - -#: ../../addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "Vous n'êtes pas connecté à Pump.io" - -#: ../../addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "Authentifiez-vous à nouveau auprès de Pump.io" - -#: ../../addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "Activer le plugin de publication Pump.io" - -#: ../../addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "Par défaut, publier sur Pump.io" - -#: ../../addon/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "Les publications doivent-elles être publiques ?" - -#: ../../addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "Créer une copie miroir de toutes les publications publiques" - -#: ../../addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "Paramètres de publication Pump.io" - -#: ../../addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "Paramètres Pump.io sauvegardés." - -#: ../../addon/ldapauth/ldapauth.php:61 -msgid "An account has been created for you." -msgstr "Un compte a été créé pour vous." - -#: ../../addon/ldapauth/ldapauth.php:68 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "L'authentification a réussi mais a été rejetée : la création de comptes est désactivée." - -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Recherche %1$s (%2$s)" - -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "Chercher dans $Projectname" - -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "Importation du fichier de stockage Redmatrix" - -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "Ceci importera tous vos fichiers Redmatrix dans ce canal." - -#: ../../addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "fichier" - -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "Envoyer un mail à tous les membres" - -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "%1$d message(s) envoyés sur %2$d." - -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "Envoyer un e-mail à tous les membres du hub." - -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "Adresse mail de l'expéditeur" - -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "Mode test (uniquement envoyé à l'administrateur du hub)" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Fréquemment" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Toutes les heures" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Deux fois par jour" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Chaque jour" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Chaque semaine" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Chaque mois" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actuellement homme" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actuellement femme" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Surtout homme" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Surtout femme" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgenre" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexuel" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexuel" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermaphrodite" - -#: ../../include/selectors.php:49 ../../include/channel.php:1484 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/selectors.php:49 ../../include/channel.php:1486 -msgid "Non-specific" -msgstr "Non spécifique" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indécis" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hommes" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmes" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbienne" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sans préférence" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexuel" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexuel" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vierge" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Déviant" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fétichiste" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Une floppée" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Non-sexuel" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Célibataire" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solitaire" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Indisponible" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "A un béguin" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Amoureux transi" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Sort avec quelqu'un" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infidèle" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Accro au sexe" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amis avec bénéfices" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Sans engagement" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Fiancé(e)" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Marié(e)" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Marié(e) dans ses rêves" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partenaires" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "En cohabitation" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Conjoints de fait" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Heureux" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Pas en recherche" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Echangiste" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Trahi(e)" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Séparé(e)" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instable" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorcé(e)" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorcé(e) dans ses rêves" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Veuf/veuve" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incertain" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "C'est compliqué" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "S'en fiche" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Me demander" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "aime le %2$s de %1$s" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "n'aime pas le %2$s de%1$s " - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ajoute %2$s à ses contacts" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s a tapoté %2$s" - -#: ../../include/conversation.php:251 ../../include/text.php:1129 -#: ../../include/text.php:1133 -msgid "poked" -msgstr "a tapoté" - -#: ../../include/conversation.php:736 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" - -#: ../../include/conversation.php:756 -msgid "Categories:" -msgstr "Catégories :" - -#: ../../include/conversation.php:757 -msgid "Filed under:" -msgstr "Classé sous :" - -#: ../../include/conversation.php:783 -msgid "View in context" -msgstr "Voir en contexte" - -#: ../../include/conversation.php:884 -msgid "remove" -msgstr "supprimer" - -#: ../../include/conversation.php:888 -msgid "Loading..." -msgstr "Chargement..." - -#: ../../include/conversation.php:889 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments selectionnés" - -#: ../../include/conversation.php:932 -msgid "View Source" -msgstr "Voir source" - -#: ../../include/conversation.php:942 -msgid "Follow Thread" -msgstr "Suivre la discussion" - -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Ne plus suivre la discussion" - -#: ../../include/conversation.php:1062 -msgid "Edit Connection" -msgstr "Modifier le contact" - -#: ../../include/conversation.php:1072 -msgid "Message" -msgstr "Message" - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." - -#: ../../include/conversation.php:1210 -#, 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:1212 -#, 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:1218 -msgid "and" -msgstr "et" - -#: ../../include/conversation.php:1221 -#, 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:1222 -#, php-format -msgid "%s like this." -msgstr "%s aime ça." - -#: ../../include/conversation.php:1222 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aime pas ça." - -#: ../../include/conversation.php:1265 -msgid "Set your location" -msgstr "Spécifier votre emplacement géographique" - -#: ../../include/conversation.php:1266 -msgid "Clear browser location" -msgstr "Supprimer l'emplacement géographique du navigateur" - -#: ../../include/conversation.php:1316 -msgid "Tag term:" -msgstr "Étiquette :" - -#: ../../include/conversation.php:1317 -msgid "Where are you right now?" -msgstr "Où êtes-vous en ce moment ?" - -#: ../../include/conversation.php:1322 -msgid "Choose a different album..." -msgstr "Choisissez un autre album" - -#: ../../include/conversation.php:1326 -msgid "Comments enabled" -msgstr "Commentaires activés" - -#: ../../include/conversation.php:1327 -msgid "Comments disabled" -msgstr "Commentaires désactivés" - -#: ../../include/conversation.php:1375 -msgid "Page link name" -msgstr "Nom du lien vers la page" - -#: ../../include/conversation.php:1378 -msgid "Post as" -msgstr "Publier en tant que" - -#: ../../include/conversation.php:1392 -msgid "Toggle voting" -msgstr "(Dés)activer le vote" - -#: ../../include/conversation.php:1395 -msgid "Disable comments" -msgstr "Désactiver les commentaires" - -#: ../../include/conversation.php:1396 -msgid "Toggle comments" -msgstr "Basculer les commentaires" - -#: ../../include/conversation.php:1404 -msgid "Categories (optional, comma-separated list)" -msgstr "Catégories (facultatives, séparées par des virgules)" - -#: ../../include/conversation.php:1427 -msgid "Other networks and post services" -msgstr "Autres réseaux et services de messagerie" - -#: ../../include/conversation.php:1433 -msgid "Set publish date" -msgstr "Définir la date de publication" - -#: ../../include/conversation.php:1693 -msgid "Commented Order" -msgstr "Par date de commentaire" - -#: ../../include/conversation.php:1696 -msgid "Sort by Comment Date" -msgstr "Trier par date de dernier commentaire" - -#: ../../include/conversation.php:1700 -msgid "Posted Order" -msgstr "Par date de publication" - -#: ../../include/conversation.php:1703 -msgid "Sort by Post Date" -msgstr "Trier par date de publication" - -#: ../../include/conversation.php:1711 -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:1720 -msgid "Activity Stream - by date" -msgstr "Flux d'activité - par date" - -#: ../../include/conversation.php:1726 -msgid "Starred" -msgstr "Avec étoile" - -#: ../../include/conversation.php:1729 -msgid "Favourite Posts" -msgstr "Publications préférées" - -#: ../../include/conversation.php:1736 -msgid "Spam" -msgstr "Indésirable" - -#: ../../include/conversation.php:1739 -msgid "Posts flagged as SPAM" -msgstr "Publications marquées comme indésirables" - -#: ../../include/conversation.php:1814 ../../include/nav.php:381 -msgid "Status Messages and Posts" -msgstr "Messages d'état et contributions" - -#: ../../include/conversation.php:1827 ../../include/nav.php:394 -msgid "Profile Details" -msgstr "Détails du profil" - -#: ../../include/conversation.php:1837 ../../include/nav.php:404 -#: ../../include/photos.php:666 -msgid "Photo Albums" -msgstr "Albums photo" - -#: ../../include/conversation.php:1845 ../../include/nav.php:412 -msgid "Files and Storage" -msgstr "Fichiers et Stockage" - -#: ../../include/conversation.php:1882 ../../include/nav.php:447 -msgid "Bookmarks" -msgstr "Favoris" - -#: ../../include/conversation.php:1885 ../../include/nav.php:450 -msgid "Saved Bookmarks" -msgstr "Favoris sauvegardés" - -#: ../../include/conversation.php:1896 ../../include/nav.php:461 -msgid "View Cards" -msgstr "Voir cartes" - -#: ../../include/conversation.php:1904 -msgid "articles" -msgstr "articles" - -#: ../../include/conversation.php:1907 ../../include/nav.php:472 -msgid "View Articles" -msgstr "Voir articles" - -#: ../../include/conversation.php:1918 ../../include/nav.php:484 -msgid "View Webpages" -msgstr "Voir les pages web" - -#: ../../include/conversation.php:1987 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participe" -msgstr[1] "Participent" - -#: ../../include/conversation.php:1990 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Ne participe pas" -msgstr[1] "Ne participent pas" - -#: ../../include/conversation.php:1993 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indécis(e)" -msgstr[1] "Indécis(es)" - -#: ../../include/conversation.php:1996 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accord" -msgstr[1] "D'accord" - -#: ../../include/conversation.php:1999 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Pas d'accord" -msgstr[1] "Pas d'accord" - -#: ../../include/conversation.php:2002 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "S'abstient" -msgstr[1] "S'abstiennent" - -#: ../../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/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Favoris de %1$s" - -#: ../../include/import.php:25 -msgid "Unable to import a removed channel." -msgstr "Impossible d'importer un canal supprimé." - -#: ../../include/import.php:46 -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:111 -msgid "Cloned channel not found. Import failed." -msgstr "Canal cloné non trouvé. Echec de l'import." - -#: ../../include/text.php:492 -msgid "prev" -msgstr "préc." - -#: ../../include/text.php:494 -msgid "first" -msgstr "premier" - -#: ../../include/text.php:523 -msgid "last" -msgstr "dernier" - -#: ../../include/text.php:526 -msgid "next" -msgstr "Suivant" - -#: ../../include/text.php:537 -msgid "older" -msgstr "plus ancien" - -#: ../../include/text.php:539 -msgid "newer" -msgstr "plus récent" - -#: ../../include/text.php:961 -msgid "No connections" -msgstr "Pas de contact." - -#: ../../include/text.php:993 -#, php-format -msgid "View all %s connections" -msgstr "Voir les %s contacts" - -#: ../../include/text.php:1129 ../../include/text.php:1133 -msgid "poke" -msgstr "tapoter" - -#: ../../include/text.php:1134 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1134 -msgid "pinged" -msgstr "pingé" - -#: ../../include/text.php:1135 -msgid "prod" -msgstr "encourager" - -#: ../../include/text.php:1135 -msgid "prodded" -msgstr "à encouragé" - -#: ../../include/text.php:1136 -msgid "slap" -msgstr "giffler" - -#: ../../include/text.php:1136 -msgid "slapped" -msgstr "gifflé(e)" - -#: ../../include/text.php:1137 -msgid "finger" -msgstr "pointer" - -#: ../../include/text.php:1137 -msgid "fingered" -msgstr "pointé" - -#: ../../include/text.php:1138 -msgid "rebuff" -msgstr "rejetter" - -#: ../../include/text.php:1138 -msgid "rebuffed" -msgstr "rejeté" - -#: ../../include/text.php:1161 -msgid "happy" -msgstr "heureux" - -#: ../../include/text.php:1162 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1163 -msgid "mellow" -msgstr "mélancolique" - -#: ../../include/text.php:1164 -msgid "tired" -msgstr "fatigué" - -#: ../../include/text.php:1165 -msgid "perky" -msgstr "impertinent" - -#: ../../include/text.php:1166 -msgid "angry" -msgstr "en colère" - -#: ../../include/text.php:1167 -msgid "stupefied" -msgstr "stupéfait" - -#: ../../include/text.php:1168 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1169 -msgid "interested" -msgstr "intéressé" - -#: ../../include/text.php:1170 -msgid "bitter" -msgstr "amer" - -#: ../../include/text.php:1171 -msgid "cheerful" -msgstr "plein d'entrain" - -#: ../../include/text.php:1172 -msgid "alive" -msgstr "vivant" - -#: ../../include/text.php:1173 -msgid "annoyed" -msgstr "agaçé" - -#: ../../include/text.php:1174 -msgid "anxious" -msgstr "anxieux" - -#: ../../include/text.php:1175 -msgid "cranky" -msgstr "énervé" - -#: ../../include/text.php:1176 -msgid "disturbed" -msgstr "perturbé" - -#: ../../include/text.php:1177 -msgid "frustrated" -msgstr "frustré" - -#: ../../include/text.php:1178 -msgid "depressed" -msgstr "déprimé" - -#: ../../include/text.php:1179 -msgid "motivated" -msgstr "motivé" - -#: ../../include/text.php:1180 -msgid "relaxed" -msgstr "détendu" - -#: ../../include/text.php:1181 -msgid "surprised" -msgstr "surpris" - -#: ../../include/text.php:1360 ../../include/js_strings.php:76 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1360 ../../include/js_strings.php:77 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1360 ../../include/js_strings.php:78 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1360 ../../include/js_strings.php:79 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1360 ../../include/js_strings.php:80 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1360 ../../include/js_strings.php:81 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1360 ../../include/js_strings.php:75 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1364 ../../include/js_strings.php:51 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1364 ../../include/js_strings.php:52 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1364 ../../include/js_strings.php:53 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1364 ../../include/js_strings.php:54 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1364 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1364 ../../include/js_strings.php:56 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1364 ../../include/js_strings.php:57 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1364 ../../include/js_strings.php:58 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1364 ../../include/js_strings.php:59 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:60 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:61 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:62 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1428 ../../include/text.php:1432 -msgid "Unknown Attachment" -msgstr "Pièce jointe inconnue" - -#: ../../include/text.php:1434 ../../include/feedutils.php:860 -msgid "unknown" -msgstr "Inconnu" - -#: ../../include/text.php:1470 -msgid "remove category" -msgstr "supprimer la catégorie" - -#: ../../include/text.php:1544 -msgid "remove from file" -msgstr "retirer du fichier" - -#: ../../include/text.php:1686 ../../include/message.php:12 -msgid "Download binary/encrypted content" -msgstr "Télécharger le contenu binaire/chiffré" - -#: ../../include/text.php:1849 ../../include/language.php:397 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1857 -msgid "Page layout" -msgstr "Mise en page" - -#: ../../include/text.php:1857 -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:1868 -msgid "HTML" -msgstr "HTML" - -#: ../../include/text.php:1871 -msgid "Comanche Layout" -msgstr "mise en page Comanche" - -#: ../../include/text.php:1876 -msgid "PHP" -msgstr "PHP" - -#: ../../include/text.php:1885 -msgid "Page content type" -msgstr "Type de contenu de la page" - -#: ../../include/text.php:2018 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:2100 -msgid "a-z, 0-9, -, and _ only" -msgstr "a-z, 0-9, -, -, et _ seulement" - -#: ../../include/text.php:2419 -msgid "Design Tools" -msgstr "Outils de conception" - -#: ../../include/text.php:2425 -msgid "Pages" -msgstr "Pages" - -#: ../../include/text.php:2447 -msgid "Import website..." -msgstr "Importer le site web…" - -#: ../../include/text.php:2448 -msgid "Select folder to import" -msgstr "Sélectionner le dossier à importer" - -#: ../../include/text.php:2449 -msgid "Import from a zipped folder:" -msgstr "Importer à partir d'un dossier zippé :" - -#: ../../include/text.php:2450 -msgid "Import from cloud files:" -msgstr "Importer à partir de fichiers dans le cloud :" - -#: ../../include/text.php:2451 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/chemain/du/repertoire" - -#: ../../include/text.php:2452 -msgid "Enter path to website files" -msgstr "Entrer le chemin vers les fichiers du site web" - -#: ../../include/text.php:2453 -msgid "Select folder" -msgstr "Sélectionner un répertoire" - -#: ../../include/text.php:2454 -msgid "Export website..." -msgstr "Exporter le site web…" - -#: ../../include/text.php:2455 -msgid "Export to a zip file" -msgstr "Exporter dans un fichier zip" - -#: ../../include/text.php:2456 -msgid "website.zip" -msgstr "website.zip" - -#: ../../include/text.php:2457 -msgid "Enter a name for the zip file." -msgstr "Entrer un nom pour le fichier zip." - -#: ../../include/text.php:2458 -msgid "Export to cloud files" -msgstr "Exporter dans des fichiers sur le cloud" - -#: ../../include/text.php:2459 -msgid "/path/to/export/folder" -msgstr "/chemin/vers/le/dossier/d'export" - -#: ../../include/text.php:2460 -msgid "Enter a path to a cloud files destination." -msgstr "Entrer le chemin vers le cloud de fichiers" - -#: ../../include/text.php:2461 -msgid "Specify folder" -msgstr "Spécifier un répertoire" - -#: ../../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 "Lier et 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:223 -msgid "Common Connections" -msgstr "Connexions communes" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "Voir toutes les connexions communes %d" - -#: ../../include/markdown.php:158 ../../include/bbcode.php:356 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s a écrit %2$s qui suit %3$s" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "Ce canal est bloqué sur ce site." - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "Emplacement du canal introuvable." - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "La réponse du canal distant était incomplète." - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "Canal Premium - s'il vous plaît visitez :" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "Le canal a été supprimé et n'existe plus." - -#: ../../include/follow.php:165 -msgid "Remote channel or protocol unavailable." -msgstr "Canal distant ou protocole indisponible." - -#: ../../include/follow.php:188 -msgid "Channel discovery failed." -msgstr "La tentative d'accéder au canal a échoué." - -#: ../../include/follow.php:200 -msgid "Protocol disabled." -msgstr "Protocole désactivé." - -#: ../../include/follow.php:211 -msgid "Cannot connect to yourself." -msgstr "Ne peut pas se connecter à vous." - -#: ../../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 "%s afficher moins" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s dérouler" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s enrouler" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Mot de passe trop court" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Les mots de passe ne correspondent pas" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "tout le monde" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Phrase de passe secrète" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Indice pour la phrase de passe" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Note : Les droits d'accès ont changé, mais n'ont pas encore été enregistrés." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "fermer tout" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Aucun nouveau contenu trouvé" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Evaluer ce canal (publiquement)" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Description (facultative)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Merci d'insérer une URL" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Changements en attente. Voulez-vous vraiment quitter cette page?" - -#: ../../include/js_strings.php:31 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:32 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:33 -msgid "timeago.suffixAgo" -msgstr "timeago.suffixAgo" - -#: ../../include/js_strings.php:34 -msgid "timeago.suffixFromNow" -msgstr "timeago.suffixFromNow" - -#: ../../include/js_strings.php:37 -msgid "less than a minute" -msgstr "moins d'une minute" - -#: ../../include/js_strings.php:38 -msgid "about a minute" -msgstr "environ une minute" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d minutes" -msgstr "%d minutes" - -#: ../../include/js_strings.php:40 -msgid "about an hour" -msgstr "environ une heure" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "about %d hours" -msgstr "environ %d heures" - -#: ../../include/js_strings.php:42 -msgid "a day" -msgstr "un jour" - -#: ../../include/js_strings.php:43 -#, php-format -msgid "%d days" -msgstr "%d jours" - -#: ../../include/js_strings.php:44 -msgid "about a month" -msgstr "environ un mois" - -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d months" -msgstr "%d mois" - -#: ../../include/js_strings.php:46 -msgid "about a year" -msgstr "environ un an" - -#: ../../include/js_strings.php:47 -#, php-format -msgid "%d years" -msgstr "%d années" - -#: ../../include/js_strings.php:48 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:49 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:55 -msgctxt "long" -msgid "May" -msgstr "Mai" - -#: ../../include/js_strings.php:63 -msgid "Jan" -msgstr "Jan" - -#: ../../include/js_strings.php:64 -msgid "Feb" -msgstr "Fev" - -#: ../../include/js_strings.php:65 -msgid "Mar" -msgstr "Mar" - -#: ../../include/js_strings.php:66 -msgid "Apr" -msgstr "Avr" - -#: ../../include/js_strings.php:67 -msgctxt "short" -msgid "May" -msgstr "Mai" - -#: ../../include/js_strings.php:68 -msgid "Jun" -msgstr "Jun" - -#: ../../include/js_strings.php:69 -msgid "Jul" -msgstr "Jul" - -#: ../../include/js_strings.php:70 -msgid "Aug" -msgstr "Aou" - -#: ../../include/js_strings.php:71 -msgid "Sep" -msgstr "Sep" - -#: ../../include/js_strings.php:72 -msgid "Oct" -msgstr "Oct" - -#: ../../include/js_strings.php:73 -msgid "Nov" -msgstr "Nov" - -#: ../../include/js_strings.php:74 -msgid "Dec" -msgstr "Dec" - -#: ../../include/js_strings.php:82 -msgid "Sun" -msgstr "Dim" - -#: ../../include/js_strings.php:83 -msgid "Mon" -msgstr "Lun" - -#: ../../include/js_strings.php:84 -msgid "Tue" -msgstr "Mar" - -#: ../../include/js_strings.php:85 -msgid "Wed" -msgstr "Mer" - -#: ../../include/js_strings.php:86 -msgid "Thu" -msgstr "Jeu" - -#: ../../include/js_strings.php:87 -msgid "Fri" -msgstr "Ven" - -#: ../../include/js_strings.php:88 -msgid "Sat" -msgstr "Sam" - -#: ../../include/js_strings.php:89 -msgctxt "calendar" -msgid "today" -msgstr "aujourd'hui" - -#: ../../include/js_strings.php:90 -msgctxt "calendar" -msgid "month" -msgstr "mois" - -#: ../../include/js_strings.php:91 -msgctxt "calendar" -msgid "week" -msgstr "semaine" - -#: ../../include/js_strings.php:92 -msgctxt "calendar" -msgid "day" -msgstr "jour" - -#: ../../include/js_strings.php:93 -msgctxt "calendar" -msgid "All day" -msgstr "Toute la journée" - -#: ../../include/message.php:40 -msgid "Unable to determine sender." -msgstr "Impossible de déterminer l'émetteur." - -#: ../../include/message.php:79 -msgid "No recipient provided." -msgstr "Pas de destinataire." - -#: ../../include/message.php:84 -msgid "[no subject]" -msgstr "[sans objet]" - -#: ../../include/message.php:214 -msgid "Stored post could not be verified." -msgstr "Le message stocké n'a pas pu être vérifié." - -#: ../../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/attach.php:265 ../../include/attach.php:361 -msgid "Item was not found." -msgstr "Élément introuvable." - -#: ../../include/attach.php:554 -msgid "No source file." -msgstr "Pas de fichier source." - -#: ../../include/attach.php:576 -msgid "Cannot locate file to replace" -msgstr "Impossible de trouver le fichier à remplacer." - -#: ../../include/attach.php:595 -msgid "Cannot locate file to revise/update" -msgstr "Impossible de trouver le fichier à corriger/mettre à jour" - -#: ../../include/attach.php:737 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Le fichier dépasse la taille limite de %d" - -#: ../../include/attach.php:758 -#, 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:940 -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:969 -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:1043 ../../include/attach.php:1059 -msgid "Path not available." -msgstr "Chemin non disponible." - -#: ../../include/attach.php:1108 ../../include/attach.php:1273 -msgid "Empty pathname" -msgstr "Chemin vide" - -#: ../../include/attach.php:1134 -msgid "duplicate filename or path" -msgstr "doublon de chemin ou de fichier" - -#: ../../include/attach.php:1159 -msgid "Path not found." -msgstr "Chemin introuvable." - -#: ../../include/attach.php:1227 -msgid "mkdir failed." -msgstr "mkdir a échoué." - -#: ../../include/attach.php:1231 -msgid "database storage failed." -msgstr "l'écriture dans la base de données a échoué." - -#: ../../include/attach.php:1279 -msgid "Empty path" -msgstr "Chemin vide" - -#: ../../include/security.php:541 -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/items.php:885 ../../include/items.php:945 -msgid "(Unknown)" -msgstr "(Inconnu)" - -#: ../../include/items.php:1133 -msgid "Visible to anybody on the internet." -msgstr "Visible pour tout le monde sur internet." - -#: ../../include/items.php:1135 -msgid "Visible to you only." -msgstr "Visible pour vous seulement." - -#: ../../include/items.php:1137 -msgid "Visible to anybody in this network." -msgstr "Visible pour tout le monde sur ce réseau." - -#: ../../include/items.php:1139 -msgid "Visible to anybody authenticated." -msgstr "Visible aux utilisateurs authentifiés." - -#: ../../include/items.php:1141 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible pour tous sur %s." - -#: ../../include/items.php:1143 -msgid "Visible to all connections." -msgstr "Visible par tous les contacts." - -#: ../../include/items.php:1145 -msgid "Visible to approved connections." -msgstr "Visible par les contacts validés." - -#: ../../include/items.php:1147 -msgid "Visible to specific connections." -msgstr "Visible par certains contacts." - -#: ../../include/items.php:4197 -msgid "Privacy group is empty." -msgstr "Groupe de contacts vide." - -#: ../../include/items.php:4204 -#, php-format -msgid "Privacy group: %s" -msgstr "Groupe de contacts : %s" - -#: ../../include/items.php:4216 -msgid "Connection not found." -msgstr "Contact non trouvé." - -#: ../../include/items.php:4565 -msgid "profile photo" -msgstr "photo de profil" - -#: ../../include/items.php:4756 -#, php-format -msgid "[Edited %s]" -msgstr "[%s édité]" - -#: ../../include/items.php:4756 -msgctxt "edit_activity" -msgid "Post" -msgstr "Publier" - -#: ../../include/items.php:4756 -msgctxt "edit_activity" -msgid "Comment" -msgstr "Commenter" - -#: ../../include/channel.php:35 -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:68 -msgid "Empty name" -msgstr "Nom vide" - -#: ../../include/channel.php:71 -msgid "Name too long" -msgstr "Nom trop long" - -#: ../../include/channel.php:188 -msgid "No account identifier" -msgstr "Pas d'identifiant de compte" - -#: ../../include/channel.php:200 -msgid "Nickname is required." -msgstr "Un surnom est requis." - -#: ../../include/channel.php:277 -msgid "Unable to retrieve created identity" -msgstr "Impossible de récupérer l'identité créée" - -#: ../../include/channel.php:373 -msgid "Default Profile" -msgstr "Profil par défaut" - -#: ../../include/channel.php:532 ../../include/channel.php:621 -msgid "Unable to retrieve modified identity" -msgstr "Impossible de récupérer l'identité modifiée" - -#: ../../include/channel.php:1297 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../include/channel.php:1318 -msgid "Visible to everybody" -msgstr "Visible de tous" - -#: ../../include/channel.php:1395 ../../include/channel.php:1523 -msgid "Gender:" -msgstr "Sexe :" - -#: ../../include/channel.php:1397 ../../include/channel.php:1591 -msgid "Homepage:" -msgstr "Site Internet :" - -#: ../../include/channel.php:1398 -msgid "Online Now" -msgstr "Connecté" - -#: ../../include/channel.php:1451 -msgid "Change your profile photo" -msgstr "Modifier votre photo de profil" - -#: ../../include/channel.php:1482 -msgid "Trans" -msgstr "Trans" - -#: ../../include/channel.php:1528 -msgid "Like this channel" -msgstr "J'aime ce canal" - -#: ../../include/channel.php:1552 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1553 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1560 -msgid "Birthday:" -msgstr "Date de naissance :" - -#: ../../include/channel.php:1573 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" - -#: ../../include/channel.php:1585 -msgid "Tags:" -msgstr "Étiquettes :" - -#: ../../include/channel.php:1589 -msgid "Sexual Preference:" -msgstr "Orientation sexuelle :" - -#: ../../include/channel.php:1595 -msgid "Political Views:" -msgstr "Opinions politiques :" - -#: ../../include/channel.php:1597 -msgid "Religion:" -msgstr "Religion :" - -#: ../../include/channel.php:1601 -msgid "Hobbies/Interests:" -msgstr "Occupations/Centres d'intérêt :" - -#: ../../include/channel.php:1603 -msgid "Likes:" -msgstr "Aime :" - -#: ../../include/channel.php:1605 -msgid "Dislikes:" -msgstr "N'aime pas :" - -#: ../../include/channel.php:1607 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées et réseaux sociaux :" - -#: ../../include/channel.php:1609 -msgid "My other channels:" -msgstr "Mes autres canaux :" - -#: ../../include/channel.php:1611 -msgid "Musical interests:" -msgstr "Goûts musicaux :" - -#: ../../include/channel.php:1613 -msgid "Books, literature:" -msgstr "Lectures, goûts littéraires :" - -#: ../../include/channel.php:1615 -msgid "Television:" -msgstr "Télévision :" - -#: ../../include/channel.php:1617 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" - -#: ../../include/channel.php:1619 -msgid "Love/Romance:" -msgstr "Vie sentimentale/amoureuse :" - -#: ../../include/channel.php:1621 -msgid "Work/employment:" -msgstr "Travail/Occupation " - -#: ../../include/channel.php:1623 -msgid "School/education:" -msgstr "Études " - -#: ../../include/channel.php:1646 -msgid "Like this thing" -msgstr "J'aime ceci" - -#: ../../include/event.php:24 ../../include/event.php:71 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\à G\\hi" - -#: ../../include/event.php:32 ../../include/event.php:75 -msgid "Starts:" -msgstr "Début :" - -#: ../../include/event.php:42 ../../include/event.php:79 -msgid "Finishes:" -msgstr "Fin :" - -#: ../../include/event.php:1011 -msgid "This event has been added to your calendar." -msgstr "Cet évènement a été ajouté dans votre calendrier." - -#: ../../include/event.php:1227 -msgid "Not specified" -msgstr "Non spécifié" - -#: ../../include/event.php:1228 -msgid "Needs Action" -msgstr "Besoin d'une action" - -#: ../../include/event.php:1229 -msgid "Completed" -msgstr "Terminé" - -#: ../../include/event.php:1230 -msgid "In Process" -msgstr "En cours" - -#: ../../include/event.php:1231 -msgid "Cancelled" -msgstr "Annulé" - -#: ../../include/event.php:1310 ../../include/connections.php:692 -msgid "Home, Voice" -msgstr "Domicile, Voix" - -#: ../../include/event.php:1311 ../../include/connections.php:693 -msgid "Home, Fax" -msgstr "Domicile, Fax" - -#: ../../include/event.php:1313 ../../include/connections.php:695 -msgid "Work, Voice" -msgstr "Travail, Voix" - -#: ../../include/event.php:1314 ../../include/connections.php:696 -msgid "Work, Fax" -msgstr "Travail, Fax" - -#: ../../include/network.php:762 -msgid "view full size" -msgstr "voir en taille réelle" - -#: ../../include/network.php:1764 ../../include/network.php:1765 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:1766 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:1767 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:1768 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:1771 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:1772 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:1773 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:1774 -msgid "LinkedIn" -msgstr "Linkedin" - -#: ../../include/network.php:1775 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:1776 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "Qui peut voir cela" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "Sélection personnalisée" - -#: ../../include/acl_selectors.php:115 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Sélectionnez \"Afficher\" pour permettre l'affichage. \"Ne pas afficher\" vous permet de remplacer et de limiter la portée de \"Afficher\"." - -#: ../../include/acl_selectors.php:116 -msgid "Show" -msgstr "Montrer" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "Cacher" - -#: ../../include/acl_selectors.php:150 -#, 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 "Les droits d'accès d'un message %s ne peuvent pas être modifiés %s une fois le message envoyé.
Ces droits d'accès définissent qui est autorisé à afficher le message." - -#: ../../include/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'" - -#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 -#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 -#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 -#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 -#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 -#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 -#: ../../include/bbcode.php:1239 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 -msgid "Encrypted content" -msgstr "Contenu chiffré" - -#: ../../include/bbcode.php:253 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "Installer %1$s element %2$s" - -#: ../../include/bbcode.php:257 -#, 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 le droit de l'installer sur ce site." - -#: ../../include/bbcode.php:348 -msgid "card" -msgstr "carte" - -#: ../../include/bbcode.php:350 -msgid "article" -msgstr "article" - -#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/bbcode.php:441 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:454 -msgid "View article" -msgstr "Voir l'article" - -#: ../../include/bbcode.php:454 -msgid "View summary" -msgstr "Voir le résumé" - -#: ../../include/bbcode.php:1188 -msgid "$1 wrote:" -msgstr "$1 a écrit :" - -#: ../../include/oembed.php:329 -msgid " by " -msgstr "par" - -#: ../../include/oembed.php:330 -msgid " on " -msgstr "sur" - -#: ../../include/oembed.php:359 -msgid "Embedded content" -msgstr "Contenu imbriqué" - -#: ../../include/oembed.php:368 -msgid "Embedding disabled" -msgstr "Imbrication désactivée" - -#: ../../include/zid.php:347 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s accueille favorablement %2$s" - -#: ../../include/features.php:56 -msgid "General Features" -msgstr "Fonctionnalités générales" - -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "Afficher le menu des liens rapides pour les nouveaux membres" - -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "Profils avancés" - -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "Sections et sélections supplémentaires du profil" - -#: ../../include/features.php:78 -msgid "Profile Import/Export" -msgstr "Importer/exporter le profil" - -#: ../../include/features.php:79 -msgid "Save and load profile details across sites/channels" -msgstr "Sauvegarder et charger les détails d'un profil entre sites/canaux" - -#: ../../include/features.php:87 -msgid "Web Pages" -msgstr "Pages web" - -#: ../../include/features.php:88 -msgid "Provide managed web pages on your channel" -msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" - -#: ../../include/features.php:97 -msgid "Provide a wiki for your channel" -msgstr "Fournir un wiki pour votre canal." - -#: ../../include/features.php:114 -msgid "Private Notes" -msgstr "Notes privées" - -#: ../../include/features.php:115 -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:124 -msgid "Create personal planning cards" -msgstr "Créer des cartes de planification personnelle" - -#: ../../include/features.php:134 -msgid "Create interactive articles" -msgstr "Créer des articles interactifs" - -#: ../../include/features.php:142 -msgid "Navigation Channel Select" -msgstr "Sélection du canal par la navigation" - -#: ../../include/features.php:143 -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:151 -msgid "Photo Location" -msgstr "Site de prise de vue" - -#: ../../include/features.php:152 -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:160 -msgid "Access Controlled Chatrooms" -msgstr "Accéder au salons de discussions contrôlés." - -#: ../../include/features.php:161 -msgid "Provide chatrooms and chat services with access control." -msgstr "Fournir des salons de discussions et des services de discussions avec contrôle d'accès." - -#: ../../include/features.php:170 -msgid "Smart Birthdays" -msgstr "Anniversaires intelligents" - -#: ../../include/features.php:171 -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:179 -msgid "Event Timezone Selection" -msgstr "Sélection du fuseau horaire de l'événement" - -#: ../../include/features.php:180 -msgid "Allow event creation in timezones other than your own." -msgstr "Autorise la création d’événements sur d'autres fuseaux horaires que le vôtre." - -#: ../../include/features.php:189 -msgid "Premium Channel" -msgstr "Canal VIP" - -#: ../../include/features.php:190 -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:198 -msgid "Advanced Directory Search" -msgstr "Recherche avancée dans les répertoires" - -#: ../../include/features.php:199 -msgid "Allows creation of complex directory search queries" -msgstr "Autoriser la création d'entrées complexes de recherche de répertoire" - -#: ../../include/features.php:207 -msgid "Advanced Theme and Layout Settings" -msgstr "Paramètres avancés du thème et de l'agencement." - -#: ../../include/features.php:208 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Autoriser la personnalisation fine des thèmes et des agencements." - -#: ../../include/features.php:217 -msgid "Access Control and Permissions" -msgstr "Contrôle d'accès et autorisations" - -#: ../../include/features.php:221 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Groupes confidentiels" - -#: ../../include/features.php:222 -msgid "Enable management and selection of privacy groups" -msgstr "Active la gestion et la sélection des groupes confidentiels" - -#: ../../include/features.php:230 -msgid "Multiple Profiles" -msgstr "Profils multiples" - -#: ../../include/features.php:231 -msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" - -#: ../../include/features.php:241 -msgid "Provide alternate connection permission roles." -msgstr "Fournir des rôles d'accès différents pour ce contact." - -#: ../../include/features.php:249 -msgid "OAuth1 Clients" -msgstr "Clients OAuth1" - -#: ../../include/features.php:250 -msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." -msgstr "Gérer les jetons d'authentification OAuth1 pour les applications mobiles et distantes." - -#: ../../include/features.php:258 -msgid "OAuth2 Clients" -msgstr "Clients OAuth2" - -#: ../../include/features.php:259 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "Gérer les jetons d'authentification OAuth2 pour les applications mobiles et distantes." - -#: ../../include/features.php:267 -msgid "Access Tokens" -msgstr "Jetons d'accès." - -#: ../../include/features.php:268 -msgid "Create access tokens so that non-members can access private content." -msgstr "Créez des jetons d'accès pour que les non-membres puissent accéder au contenu privé." - -#: ../../include/features.php:279 -msgid "Post Composition Features" -msgstr "Fonctionnalités de composition" - -#: ../../include/features.php:283 -msgid "Large Photos" -msgstr "Grandes photos" - -#: ../../include/features.php:284 -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:293 -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:301 -msgid "Even More Encryption" -msgstr "Encore plus de chiffrement" - -#: ../../include/features.php:302 -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:310 -msgid "Enable Voting Tools" -msgstr "Activer les outils de vote" - -#: ../../include/features.php:311 -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:319 -msgid "Disable Comments" -msgstr "Désactiver les commentaires" - -#: ../../include/features.php:320 -msgid "Provide the option to disable comments for a post" -msgstr "Fournir la possibilité de désactiver les commentaires pour une publication." - -#: ../../include/features.php:328 -msgid "Delayed Posting" -msgstr "Publication plus tard" - -#: ../../include/features.php:329 -msgid "Allow posts to be published at a later date" -msgstr "Permettre de publier des messages à une date programmée" - -#: ../../include/features.php:337 -msgid "Content Expiration" -msgstr "Expiration du contenu" - -#: ../../include/features.php:338 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard" - -#: ../../include/features.php:346 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Supprimer les publications/commentaires en doublon" - -#: ../../include/features.php:347 -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:355 -msgid "Auto-save drafts of posts and comments" -msgstr "Sauvegarde automatique des brouillons de messages et commentaires" - -#: ../../include/features.php:356 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help" -" prevent accidental loss of compositions" -msgstr "Enregistre automatiquement les brouillons de messages et de commentaires dans le stockage local du navigateur pour aider à prévenir la perte accidentelle de compositions." - -#: ../../include/features.php:367 -msgid "Network and Stream Filtering" -msgstr "Filtrage du réseau et des flux" - -#: ../../include/features.php:371 -msgid "Search by Date" -msgstr "Chercher par date" - -#: ../../include/features.php:372 -msgid "Ability to select posts by date ranges" -msgstr "Pouvoir choisir des publications par date" - -#: ../../include/features.php:382 -msgid "Save search terms for re-use" -msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" - -#: ../../include/features.php:390 -msgid "Network Personal Tab" -msgstr "Onglet \"Me concernant\"" - -#: ../../include/features.php:391 -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:399 -msgid "Network New Tab" -msgstr "Onglet \"nouveautés réseau\"" - -#: ../../include/features.php:400 -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:408 -msgid "Affinity Tool" -msgstr "Gérer l'affinité" - -#: ../../include/features.php:409 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations" - -#: ../../include/features.php:418 -msgid "Show friend and connection suggestions" -msgstr "Afficher les suggestions de mise en contact" - -#: ../../include/features.php:426 -msgid "Connection Filtering" -msgstr "Filtrage des contacts" - -#: ../../include/features.php:427 -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:439 -msgid "Post/Comment Tools" -msgstr "Gérer les publications/commentaires" - -#: ../../include/features.php:443 -msgid "Community Tagging" -msgstr "Etiquetage communautaire" - -#: ../../include/features.php:444 -msgid "Ability to tag existing posts" -msgstr "Permettre de marquer les publications existantes" - -#: ../../include/features.php:452 -msgid "Post Categories" -msgstr "Catégoriser les publications" - -#: ../../include/features.php:453 -msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" - -#: ../../include/features.php:461 -msgid "Emoji Reactions" -msgstr "Réactions par émoticônes" - -#: ../../include/features.php:462 -msgid "Add emoji reaction ability to posts" -msgstr "Ajouter la possibilité de réagir aux publications par émoticônes" - -#: ../../include/features.php:471 -msgid "Ability to file posts under folders" -msgstr "Permettre de classer les publications dans des dossiers" - -#: ../../include/features.php:479 -msgid "Dislike Posts" -msgstr "\"Ne pas aimer\" les publications" - -#: ../../include/features.php:480 -msgid "Ability to dislike posts/comments" -msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" - -#: ../../include/features.php:488 -msgid "Star Posts" -msgstr "Pouvoir mettre en avant les publications" - -#: ../../include/features.php:489 -msgid "Ability to mark special posts with a star indicator" -msgstr "Pouvoir marquer certaines publications d'une étoile" - -#: ../../include/features.php:497 -msgid "Tag Cloud" -msgstr "Nuage de tags" - -#: ../../include/features.php:498 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Afficher un nuage de vos tags sur votre canal" - -#: ../../include/taxonomy.php:320 -msgid "Trending" -msgstr "Tendance" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "Mots-clefs" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "ont" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "a" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "veulent" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "veut" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "aime" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "n'aime pas" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "Ce n'est pas une adresse de courriel valide" - -#: ../../include/account.php:38 -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:44 -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:76 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "Votre invitation n'a pas pu être vérifiée." - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "Merci d'entrer les informations requises." - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "Impossible de stocker les informations liées au compte." - -#: ../../include/account.php:314 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmation de l'inscription pour %s" - -#: ../../include/account.php:383 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription sur %s" - -#: ../../include/account.php:405 -msgid "your registration password" -msgstr "votre mot de passe d'inscription" - -#: ../../include/account.php:411 ../../include/account.php:473 -#, php-format -msgid "Registration details for %s" -msgstr "Détails de l'inscription pour %s" - -#: ../../include/account.php:484 -msgid "Account approved." -msgstr "Compte validé." - -#: ../../include/account.php:524 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../include/account.php:803 ../../include/account.php:805 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../include/account.php:811 -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:816 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas disponible avec votre forfait." - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "Anniversaire" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "Age :" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "à l'instant" - -#: ../../include/datetime.php:262 -#, 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:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ans" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mois" -msgstr[1] "mois" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semaine" -msgstr[1] "semaines" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "jour" -msgstr[1] "jours" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "heure" -msgstr[1] "heures" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "secondes" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "Anniversaire de %1$s" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Joyeux Anniversaire %1$s" - -#: ../../include/nav.php:96 -msgid "Remote authentication" -msgstr "Authentification distante" - -#: ../../include/nav.php:96 -msgid "Click to authenticate to your home hub" -msgstr "S'authentifier auprès de votre hub principal" - -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Manage Your Channels" -msgstr "Gérer vos canaux" - -#: ../../include/nav.php:105 ../../include/nav.php:192 -msgid "Account/Channel Settings" -msgstr "Paramètres du Compte/Canal" - -#: ../../include/nav.php:111 ../../include/nav.php:140 -msgid "End this session" -msgstr "Mettre fin à la session" - -#: ../../include/nav.php:114 -msgid "Your profile page" -msgstr "Votre profil" - -#: ../../include/nav.php:117 -msgid "Manage/Edit profiles" -msgstr "Gérer/modifier vos profils" - -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Sign in" -msgstr "Connexion" - -#: ../../include/nav.php:157 -msgid "Take me home" -msgstr "Retourner sur mon serveur" - -#: ../../include/nav.php:159 -msgid "Log me out of this site" -msgstr "Déconnectez-moi de ce site" - -#: ../../include/nav.php:164 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:176 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:179 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "Rechercher un site @nom, !forum, #etiquette, ?document, contenu" - -#: ../../include/nav.php:199 -msgid "Site Setup and Configuration" -msgstr "Configuration du site" - -#: ../../include/nav.php:290 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "@nom, !forum, #etiquette, ?document, contenu" - -#: ../../include/nav.php:291 -msgid "Please wait..." -msgstr "Merci de patienter..." - -#: ../../include/nav.php:297 -msgid "Add Apps" -msgstr "Ajouter des applications" - -#: ../../include/nav.php:298 -msgid "Arrange Apps" -msgstr "Réarranger les applications" - -#: ../../include/nav.php:299 -msgid "Toggle System Apps" -msgstr "(Dés)activer les applications système" - -#: ../../include/photos.php:150 -#, 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:161 -msgid "Image file is empty." -msgstr "L'image est vide." - -#: ../../include/photos.php:326 -msgid "Photo storage failed." -msgstr "Le stockage de l'image a échoué." - -#: ../../include/photos.php:375 -msgid "a new photo" -msgstr "une nouvelle photo" - -#: ../../include/photos.php:379 -#, 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:671 -msgid "Upload New Photos" -msgstr "Ajouter des photos" - -#: ../../include/zot.php:772 -msgid "Invalid data packet" -msgstr "Paquet de données invalide" - -#: ../../include/zot.php:799 -msgid "Unable to verify channel signature" -msgstr "Impossible de vérifier la signature du canal" - -#: ../../include/zot.php:2552 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossible de vérifier la signature de site pour %s" - -#: ../../include/zot.php:4219 -msgid "invalid target signature" -msgstr "signature de la cible invalide" - -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un groupe supprimé portant ce nom a été ressuscité. Les droits d'accès liés aux éléments existants peuvent s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Ajouter de nouveaux contacts à ce groupe de contacts" - -#: ../../include/group.php:306 -msgid "edit" -msgstr "modifier" - -#: ../../include/group.php:329 -msgid "Edit group" -msgstr "Modifier le groupe" - -#: ../../include/group.php:330 -msgid "Add privacy group" -msgstr "Créer un groupe de contacts" - -#: ../../include/group.php:331 -msgid "Channels not in any privacy group" -msgstr "Contacts n'étant dans aucun groupe de contacts" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "Nouvelle fenêtre" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent" - -#: ../../include/auth.php:152 -msgid "Delegation session ended." -msgstr "La séance de délégation a pris fin." - -#: ../../include/auth.php:156 -msgid "Logged out." -msgstr "Deconnecté." - -#: ../../include/auth.php:273 -msgid "Email validation is incomplete. Please check your email." -msgstr "La validation du courriel est incomplète. Veuillez vérifier l'adresse courriel." - -#: ../../include/auth.php:289 -msgid "Failed authentication" -msgstr "Échec de l'authentification" - -#: ../../include/help.php:34 -msgid "Help:" -msgstr "Aide :" - -#: ../../include/help.php:78 -msgid "Not Found" -msgstr "Introuvable" diff --git a/view/fr/hstrings.php b/view/fr/hstrings.php deleted file mode 100644 index cdf233584..000000000 --- a/view/fr/hstrings.php +++ /dev/null @@ -1,3259 +0,0 @@ - 1);; -}} -App::$rtl = 0; -App::$strings["Can view my channel stream and posts"] = "Peut voir mon canal et mes publications"; -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 par défaut du canal"; -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"] = "Peut télécharger/modifier mes fichiers et mes photos"; -App::$strings["Can view my channel webpages"] = "Peut voir les pages web de mon canal"; -App::$strings["Can view my wiki pages"] = "Peut voir les pages de mon wiki"; -App::$strings["Can create/edit my channel webpages"] = "Peut créer ou modifier les pages web de mon canal"; -App::$strings["Can write to my wiki pages"] = "Peut écrire sur mon wiki"; -App::$strings["Can post on my channel (wall) page"] = "Peut poster sur 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 profiles and profile things"] = "Peut aimer ou détester des profils"; -App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Peut faire suivre à tous mes contacts avec la mention @+ dans une publication"; -App::$strings["Can chat with me"] = "Peut discuter avec moi"; -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"] = "Peut administrer mon canal"; -App::$strings["Social Networking"] = "Réseau social"; -App::$strings["Social - Federation"] = "Sociale - Fédération"; -App::$strings["Social - Mostly Public"] = "Social - principalement 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 - principalement 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 - principalement public"; -App::$strings["Feed - Restricted"] = "Flux - restreint"; -App::$strings["Special Purpose"] = "Utilisation spécifique"; -App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/vitrine"; -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["Requested profile is not available."] = "Profil demandé non disponible."; -App::$strings["Permission denied."] = "Accès refusé."; -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["Create"] = "Créer"; -App::$strings["Edit"] = "Modifier"; -App::$strings["Share"] = "Partager"; -App::$strings["Delete"] = "Supprimer"; -App::$strings["View"] = "Voir"; -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["Submit"] = "Envoyer"; -App::$strings["Articles"] = "Articles"; -App::$strings["Add Article"] = "Ajouter article"; -App::$strings["Item not found"] = "Élément introuvable"; -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["Permission denied"] = "Accès refusé"; -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["All Connections"] = "Tous les contacts"; -App::$strings["INVALID EVENT DISMISSED!"] = "ÉVÉNEMENT INVALIDE REJETÉ!"; -App::$strings["Summary: "] = "Sommaire :"; -App::$strings["Unknown"] = "Inconnu"; -App::$strings["Date: "] = "Date :"; -App::$strings["Reason: "] = "Raison :"; -App::$strings["INVALID CARD DISMISSED!"] = "ÉVÉNEMENT INVALIDE REJETÉ!"; -App::$strings["Name: "] = "Nom :"; -App::$strings["Event title"] = "Titre de l'événement"; -App::$strings["Start date and time"] = "Date et heure de début"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "Exemple : YYYY-MM-DD HH:mm"; -App::$strings["End date and time"] = "Date et heure de fin"; -App::$strings["Description"] = "Description"; -App::$strings["Location"] = "Emplacement"; -App::$strings["Previous"] = "Précédent"; -App::$strings["Next"] = "Suivant"; -App::$strings["Today"] = "Aujourd'hui"; -App::$strings["Month"] = "Mois"; -App::$strings["Week"] = "Semaine"; -App::$strings["Day"] = "Jour"; -App::$strings["List month"] = "Liste mois"; -App::$strings["List week"] = "Liste semaine"; -App::$strings["List day"] = "Liste jour"; -App::$strings["More"] = "Plus"; -App::$strings["Less"] = "Moins"; -App::$strings["Select calendar"] = "Sélectionner un calendrier"; -App::$strings["Delete all"] = "Tout supprimer"; -App::$strings["Cancel"] = "Annuler"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Désolé ! L'édition d'événements récurrents n'est pas encore implémenté."; -App::$strings["Name"] = "Nom"; -App::$strings["Organisation"] = "Organisation"; -App::$strings["Title"] = "Titre"; -App::$strings["Phone"] = "Téléphone"; -App::$strings["Email"] = "Courriel"; -App::$strings["Instant messenger"] = "Instant messenger"; -App::$strings["Website"] = "Site web"; -App::$strings["Address"] = "Adresse"; -App::$strings["Note"] = "Note"; -App::$strings["Mobile"] = "Mobile"; -App::$strings["Home"] = "Mon canal"; -App::$strings["Work"] = "Travail"; -App::$strings["Add Contact"] = "Ajouter un contact"; -App::$strings["Add Field"] = "Ajouter un champ"; -App::$strings["Update"] = "Mise à jour"; -App::$strings["P.O. Box"] = "P.O. Box"; -App::$strings["Additional"] = "Information complémentaires"; -App::$strings["Street"] = "Rue"; -App::$strings["Locality"] = "Localité"; -App::$strings["Region"] = "Région"; -App::$strings["ZIP Code"] = "ZIP code"; -App::$strings["Country"] = "Pays"; -App::$strings["Default Calendar"] = "Agenda par défaut"; -App::$strings["Default Addressbook"] = "Carnet d'adresses par défaut"; -App::$strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire"; -App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; -App::$strings["Posts and comments"] = "Publications et commentaires"; -App::$strings["Only posts"] = "Seulement les publications"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Droits d'accès insuffisants. Demande redirigée vers la page du 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, droits d'accès, 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 tous vos contacts, droits d'accès, 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["Welcome to Hubzilla!"] = "Bienvenue sur Hubzilla !"; -App::$strings["You have got no unseen posts..."] = "Vous n'avez aucune publication non-vue..."; -App::$strings["Public access denied."] = "Accès public refusé."; -App::$strings["Search"] = "Recherche"; -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["Public Stream"] = "Flux public"; -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"] = "Primaire"; -App::$strings["Drop"] = "Supprimer"; -App::$strings["Sync Now"] = "Synchronisez maintenant"; -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["Change Order of Pinned Navbar Apps"] = "Changer l'ordre des applications épinglées"; -App::$strings["Change Order of App Tray Apps"] = "Changer l'ordre des applications du menu"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Utilisez les flèches pour déplacer l'application correspondante à gauche (en haut) ou à droite (en bas) dans la barre de navigation."; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Utilisez les flèches pour déplacer l'application correspondante vers le haut ou vers le bas dans le panneau d'applications."; -App::$strings["Menu not found."] = "Menu introuvable."; -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["Not found."] = "Introuvable."; -App::$strings["Menu Item Permissions"] = "Droits d'accès 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["No"] = "Non"; -App::$strings["Yes"] = "Oui"; -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["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["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["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["Edit Location"] = "Modifier l'emplacement"; -App::$strings["Preview"] = "Aperçu"; -App::$strings["Permission settings"] = "Gérer les droits d'accès"; -App::$strings["Timezone:"] = "Fuseau horaire :"; -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["Export"] = "Export"; -App::$strings["Event removed"] = "Événement supprimé"; -App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; -App::$strings["App installed."] = "Application installée."; -App::$strings["Malformed app."] = "Application mal formé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)"] = "Catégories (séparées par des virgules)"; -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["Please login."] = "Merci de vous connecter."; -App::$strings["Hub not found."] = "Hub introuvable."; -App::$strings["photo"] = "photo"; -App::$strings["status"] = "état"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ne suit plus %3\$s de %2\$s"; -App::$strings["Channel not found."] = "Canal introuvable."; -App::$strings["Insert web link"] = "Insérer lien web"; -App::$strings["Title (optional)"] = "Titre (facultatif)"; -App::$strings["Edit Article"] = "Éditer l'article"; -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"; -App::$strings["Imported file is empty."] = "Le fichier importé est vide."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attention : les versions de bases de données diffèrent de %1\$d mises à jour."; -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["File to Upload"] = "Fichier à envoyer"; -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["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 a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Un canal est une identité réseau unique. Il peut représenter une personne (profil de réseau social), un forum (groupe), une page commerciale ou de célébrités, un flux d'informations et bien d'autres choses. Les canaux peuvent établir des connexions avec d'autres canaux pour partager l'information entre eux."; -App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "Le type de canal que vous créez affecte les paramètres de confidentialité de base, les permissions accordées aux connexions/amis, ainsi que la visibilité du canal sur le réseau."; -App::$strings["or import an existing channel from another location."] = "ou importer un canal existant d'un autre serveur."; -App::$strings["Validate"] = "Valider"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte."; -App::$strings["Remove This Channel"] = "Supprimer ce canal"; -App::$strings["WARNING: "] = "AVERTISSEMENT :"; -App::$strings["This channel will be completely removed from the network. "] = "Ce canal sera complètement supprimé du réseau."; -App::$strings["This action is permanent and can not be undone!"] = "Cette action est permanente et irréversible !"; -App::$strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :"; -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["Files: shared with me"] = "Fichiers : partagés avec moi"; -App::$strings["NEW"] = "NOUVEAU"; -App::$strings["Size"] = "Taille"; -App::$strings["Last Modified"] = "Modifié le"; -App::$strings["Remove all files"] = "Supprimer tous les fichiers"; -App::$strings["Remove this file"] = "Supprimer ce fichier"; -App::$strings["\$Projectname Server - Setup"] = "Serveur \$Projectname - configuration"; -App::$strings["Could not connect to database."] = "Impossible de se connecter à la base de données."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."; -App::$strings["Could not create table."] = "Impossible de créer la table."; -App::$strings["Your site database has been installed."] = "La base de données de votre site a été installée."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Merci de consulter le fichier \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Vérification du système"; -App::$strings["Check again"] = "Re-vérifier"; -App::$strings["Database connection"] = "Connexion à la base de données"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Pour installer \$Projectname, nous avons besoin de savoir comment se connecter à votre base de données."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."; -App::$strings["Database Server Name"] = "Nom du serveur de base de données"; -App::$strings["Default is 127.0.0.1"] = "Par défaut 127.0.0.1"; -App::$strings["Database Port"] = "Port de la base de données"; -App::$strings["Communication port number - use 0 for default"] = "Numéro TCP du port - utilisez 0 pour la valeur par défaut"; -App::$strings["Database Login Name"] = "Identifiant de connexion à la Base de Données"; -App::$strings["Database Login Password"] = "Mot de passe de connexion à la Base de Données"; -App::$strings["Database Name"] = "Nom de la Base de Données"; -App::$strings["Database Type"] = "Type de base de données"; -App::$strings["Site administrator email address"] = "Adresse de courriel de l'administrateur du site"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."; -App::$strings["Website URL"] = "URL du site web"; -App::$strings["Please use SSL (https) URL if available."] = "Veuillez utiliser SSL/TLS (https) si disponible."; -App::$strings["Please select a default timezone for your website"] = "Veuillez choisir un fuseau horaire par défaut pour votre site"; -App::$strings["Site settings"] = "Paramètres du site"; -App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 ou supérieur est requis"; -App::$strings["PHP version"] = "Version de PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver une version CLI de PHP dans le PATH du serveur 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."] = "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron."; -App::$strings["PHP executable path"] = "Chemin vers l'éxecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."; -App::$strings["Command line PHP"] = "PHP en ligne de commande (CLI)"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Impossible de vérifier la ligne de commande PHP, car shell_exec () est désactivé. Ceci est nécessaire."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."; -App::$strings["This is required for message delivery to work."] = "Elle est nécessaire pour la distribution des messages."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Vous pouvez ajuster ces paramètres dans le fichier php.ini du serveur."; -App::$strings["PHP upload limits"] = "Limites de téléversement de PHP"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Générer les clefs de chiffrement"; -App::$strings["libCurl PHP module"] = "module PHP libCurl"; -App::$strings["GD graphics PHP module"] = "module PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "module PHP OpenSSL"; -App::$strings["PDO database PHP module"] = "module PDO de la base de données PHP"; -App::$strings["mb_string PHP module"] = "module PHP mb_string"; -App::$strings["xml PHP module"] = "module PHP xml"; -App::$strings["zip PHP module"] = "module zip PHP"; -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é."; -App::$strings["exec"] = "exécuter"; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Erreur: exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini"; -App::$strings["shell_exec"] = "shell_exec"; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Erreur: shell_exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Erreur : le module libCURL de PHP est requis, mais pas installé."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : le module GD de PHP avec support JPEG est requis, mais pas installé."; -App::$strings["Error: openssl PHP module required but not installed."] = "Erreur : le module openssl de PHP est requis, mais pas installé."; -App::$strings["Error: PDO database PHP module required but not installed."] = "Erreur: le module PDO de base de données PHP est requis mais n'est pas 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: 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["Error: zip PHP module required but not installed."] = "Erreur : le module zip de PHP est requis, mais pas installé."; -App::$strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture"; -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 d'accès, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."; -App::$strings["Please see install/INSTALL.txt for additional information."] = "Merci de vous reporter à install/INSTALL.txt pour des informations supplémentaires."; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Ce logiciel utilise Smarty3 comme moteur de modèles pour afficher ses vues Web. Smarty3 compile ses modèles en PHP pour accélérer le rendu."; -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."] = "Afin de stocker ces modèles compilés, le serveur Web doit disposer d'un accès en écriture au répertoire %s selon le dossier Web racine."; -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 top level web folder"] = "Ce logiciel utilise le répertoire de stockage pour enregistrer les fichiers téléversés. Le serveur Web doit disposer d'un accès en écriture au répertoire de stockage selon le dossier web racine."; -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é !"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub."; -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."] = "Si vous êtes certain que le certificat est valide et signé par une autorité de confiance, vérifiez si l'installation d'un certificat intermédiaire aurait échoué. Ceux-ci ne sont normalement pas requis par les navigateurs, mais ils sont requis pour les communications entre serveurs."; -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"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BDD."; -App::$strings["

What next?

"] = "

Et maintenant ?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau."; -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["Queue Statistics"] = "Statistiques de file d'attente"; -App::$strings["Total Entries"] = "Nombre d'entrées total"; -App::$strings["Priority"] = "Priorité"; -App::$strings["Destination URL"] = "URL de destination"; -App::$strings["Mark hub permanently offline"] = "Marquer le hub comme étant hors ligne de manière permanente"; -App::$strings["Empty queue for this hub"] = "Vider la file d'attente pour ce hub"; -App::$strings["Last known contact"] = "Dernier contact connu"; -App::$strings["Off"] = "Inactif"; -App::$strings["On"] = "Actif"; -App::$strings["Lock feature %s"] = "Verrouiller fonctionnalité %s"; -App::$strings["Manage Additional Features"] = "Gérer les fonctionnalités additionnelles"; -App::$strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie"; -App::$strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."; -App::$strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."; -App::$strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable."; -App::$strings["Failed Updates"] = "Mises à jour défaillantes"; -App::$strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"; -App::$strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement"; -App::$strings["No failed updates."] = "Aucune mise à jour défaillante."; -App::$strings["Item not found."] = "Élément introuvable"; -App::$strings["Plugin %s disabled."] = "Greffon %s désactivé."; -App::$strings["Plugin %s enabled."] = "Greffon %s activé."; -App::$strings["Disable"] = "Désactiver"; -App::$strings["Enable"] = "Activer"; -App::$strings["Administration"] = "Administration"; -App::$strings["Plugins"] = "Greffons"; -App::$strings["Toggle"] = "(Dés)activer"; -App::$strings["Settings"] = "Paramètres"; -App::$strings["Author: "] = "Auteur :"; -App::$strings["Maintainer: "] = "Maintenu par :"; -App::$strings["Minimum project version: "] = "Version minimum du projet :"; -App::$strings["Maximum project version: "] = "Version maximum du projet :"; -App::$strings["Minimum PHP version: "] = "Version minimum de PHP :"; -App::$strings["Compatible Server Roles: "] = "Rôles du serveur "; -App::$strings["Requires: "] = "Requiert :"; -App::$strings["Disabled - version incompatibility"] = "Désactivé - version incompatible"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Entrer l'URL du dépôt git public pour les greffons"; -App::$strings["Plugin repo git URL"] = "URL du git pour les plugin"; -App::$strings["Custom repo name"] = "Nom du dépôt"; -App::$strings["(optional)"] = "(en option)"; -App::$strings["Download Plugin Repo"] = "Télécharger l'extension"; -App::$strings["Install new repo"] = "Installer un nouveau dépôt"; -App::$strings["Install"] = "Installer"; -App::$strings["Manage Repos"] = "Gérer les dépôts"; -App::$strings["Installed Plugin Repositories"] = "Dépôt des extensions installées"; -App::$strings["Install a New Plugin Repository"] = "Installer un nouveau dépôt pour extensions"; -App::$strings["Switch branch"] = "Changer de branche"; -App::$strings["Remove"] = "Retirer"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s compte bloqué/débloqué", - 1 => "%s comptes bloqués/débloqués", -); -App::$strings["%s account deleted"] = array( - 0 => "%s compte supprimé", - 1 => "%s comptes supprimés", -); -App::$strings["Account not found"] = "Compte introuvable"; -App::$strings["Account '%s' deleted"] = "Compte '%s' supprimé"; -App::$strings["Account '%s' blocked"] = "Compte '%s' bloqué"; -App::$strings["Account '%s' unblocked"] = "Compte '%s' débloqué"; -App::$strings["Accounts"] = "Comptes"; -App::$strings["select all"] = "tout sélectionner"; -App::$strings["Registrations waiting for confirm"] = "Inscriptions en attente d'approbation"; -App::$strings["Request date"] = "Date de la demande"; -App::$strings["No registrations."] = "Pas d'inscriptions."; -App::$strings["Approve"] = "Approuver"; -App::$strings["Deny"] = "Refuser"; -App::$strings["Block"] = "Bloquer"; -App::$strings["Unblock"] = "Débloquer"; -App::$strings["ID"] = "Identifiant"; -App::$strings["All Channels"] = "Tous les canaux"; -App::$strings["Register date"] = "Date d'inscription"; -App::$strings["Last login"] = "Dernière connexion"; -App::$strings["Expires"] = "Expire le"; -App::$strings["Service Class"] = "Classe de service"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?"; -App::$strings["Log settings updated."] = "Paramètres du journal mis à jour."; -App::$strings["Logs"] = "Journaux"; -App::$strings["Clear"] = "Vider"; -App::$strings["Debugging"] = "Débogage"; -App::$strings["Log file"] = "Fichier du journal"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Doit être permettre d'écrire par le serveur web. En relation avec le répertoire de votre site."; -App::$strings["Log level"] = "Niveau de journalisation"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canal censuré/dé-censuré", - 1 => "%s canaux censurés/dé-censurés", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "code autorisé/interdit pour %s canal", - 1 => "code autorisé/interdit pour %s canaux", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canal supprimé", - 1 => "%s canaux supprimés", -); -App::$strings["Channel not found"] = "Canal introuvable"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' supprimé"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censuré"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' non censuré"; -App::$strings["Channel '%s' code allowed"] = "Code autorisé pour le canal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Code interdit pour le canal '%s'"; -App::$strings["Channels"] = "Canaux"; -App::$strings["Censor"] = "Censurer"; -App::$strings["Uncensor"] = "Ne plus censurer"; -App::$strings["Allow Code"] = "Autoriser le code"; -App::$strings["Disallow Code"] = "Interdire le code"; -App::$strings["Channel"] = "Canal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les canaux sélectionnés seront supprimés !\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé !\\n\\nÊtes-vous sûr ?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le canal {0} sera supprimé !\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé !\\n\\nÊtes-vous sûr(e) ?"; -App::$strings["Theme settings updated."] = "Paramètres du thème mis à jour."; -App::$strings["No themes found."] = "Aucun thème trouvé."; -App::$strings["Screenshot"] = "Capture d'écran"; -App::$strings["Themes"] = "Thèmes"; -App::$strings["[Experimental]"] = "[Expérimental]"; -App::$strings["[Unsupported]"] = "[Non maintenu]"; -App::$strings["Site settings updated."] = "Paramètres du site sauvegardés."; -App::$strings["Default"] = "Défaut"; -App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; -App::$strings["mobile"] = "mobile"; -App::$strings["experimental"] = "expérimental"; -App::$strings["unsupported"] = "non maintenu"; -App::$strings["Yes - with approval"] = "Oui - avec approbation"; -App::$strings["My site is not a public server"] = "Mon site n'est pas un serveur public"; -App::$strings["My site has paid access only"] = "Mon site est à accès payant uniquement"; -App::$strings["My site has free access only"] = "Mon site est gratuit uniquement"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mon site offre des comptes gratuits avec des améliorations payantes facultatives"; -App::$strings["Beginner/Basic"] = "Pour débutant/ de base"; -App::$strings["Novice - not skilled but willing to learn"] = "Novice - pas qualifiés, mais prêt à apprendre"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermédiaire - assez confortable"; -App::$strings["Advanced - very comfortable"] = "Niveau avancé - trés confortable"; -App::$strings["Expert - I can write computer code"] = "Niveau expert - Je peux programmer"; -App::$strings["Wizard - I probably know more than you do"] = "Crack - J'en sais probablement plus que beaucoup"; -App::$strings["Site"] = "Site"; -App::$strings["Registration"] = "Inscription"; -App::$strings["File upload"] = "Envoi de fichier"; -App::$strings["Policies"] = "Stratégies"; -App::$strings["Advanced"] = "Avancé"; -App::$strings["Site name"] = "Nom du site"; -App::$strings["Site default technical skill level"] = "Niveau technique par défaut pour le site"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utilisé pour fournir une expérience utilisateur correspondant au niveau de confort technique"; -App::$strings["Lock the technical skill level setting"] = "Bloque le niveau technique du paramétrage"; -App::$strings["Members can set their own technical comfort level by default"] = "Les utilisateurs peuvent paramétrer leur propre niveau technique."; -App::$strings["Banner/Logo"] = "Bannière/logo"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Autoriser le HTML/CSS/JS non filtré"; -App::$strings["Administrator Information"] = "Informations de l'administrateur"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"; -App::$strings["Site Information"] = "Site information"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Description du site visible publiquement. Affiché sur la page d'information du site. BBCode peut être utilisé ici."; -App::$strings["System language"] = "Langue du système"; -App::$strings["System theme"] = "Thème du système"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème"; -App::$strings["Allow Feeds as Connections"] = "Autoriser les Flux (RSS) comme contacts"; -App::$strings["(Heavy system resource usage)"] = "(Impact important sur les ressources)"; -App::$strings["Maximum image size"] = "Taille maximale des images"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."; -App::$strings["Does this site allow new member registration?"] = "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site ?"; -App::$strings["Invitation only"] = "Sur invitation seulement"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"."; -App::$strings["Minimum age"] = "Âge minimum"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Âge minimum (en années) pour les personnes pouvant s'inscrire sur ce site."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Quelle est la meilleure description des types de comptes proposés sur ce hub ?"; -App::$strings["Register text"] = "Texte d'inscription"; -App::$strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur le formulaire d'inscription."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Page d'accueil du site à montrer aux visiteurs (par défaut : boîte de dialogue de connexion)"; -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 :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier."; -App::$strings["Preserve site homepage URL"] = "Préserver l'adresse d'accueil du site"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger"; -App::$strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps."; -App::$strings["Allowed friend domains"] = "Domaines amicaux autorisés"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."; -App::$strings["Verify Email Addresses"] = "Demander vérification des adresses de courriel"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)."; -App::$strings["Force publish"] = "Publicité forcée"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."; -App::$strings["Import Public Streams"] = "Flux publics importés"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention : ce contenu n'est pas modéré."; -App::$strings["Site only Public Streams"] = "Flux publics du site seulement"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Autoriser l'accès au contenu public provenant uniquement de ce site si les flux publics importés sont désactivés."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Permettre à n'importe qui sur Internet d'accéder aux flux publics."; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Désactiver l'authentification avant l'affichage. Attention : ce contenu n'est pas modéré."; -App::$strings["Login on Homepage"] = "Connexion sur la page d'accueil"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré."; -App::$strings["Enable context help"] = "Permettre l'aide contextuelle"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Afficher l'aide contextuel en cliquant sur le bouton aide."; -App::$strings["Reply-to email address for system generated email."] = "Adresse courriel de retour pour les courriels générés par l'application."; -App::$strings["Sender (From) email address for system generated email."] = "Adresse courriel de l'expéditeur (champ \"De\") pour les courriels générés par l'application."; -App::$strings["Name of email sender for system generated email."] = "Nom ou courriel de l'expéditeur pour les courriels générés par l'application."; -App::$strings["Directory Server URL"] = "URL du serveur d'annuaire"; -App::$strings["Default directory server"] = "Serveur d'annuaire par défaut"; -App::$strings["Proxy user"] = "Utilisateur du proxy"; -App::$strings["Proxy URL"] = "URL du proxy"; -App::$strings["Network timeout"] = "Délai maximal du réseau"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)."; -App::$strings["Delivery interval"] = "Intervalle de distribution"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."; -App::$strings["Deliveries per process"] = "Distributions par processus"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé:1-5."; -App::$strings["Queue Threshold"] = "Seuil de file d'attente"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Reportez toujours la livraison immédiate si la file d'attente contient plus que ce nombre d'entrées."; -App::$strings["Poll interval"] = "Intervalle de scrutation"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."; -App::$strings["Path to ImageMagick convert program"] = "Chemin d'accès au programme \"convert\" de ImageMagick"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si cette option est activée, utilisez ce programme pour générer des vignettes de photos pour des images géantes ( > 4000 pixels dans l'une ou l'autre dimension), sinon la mémoire risque de s'épuiser. Exemple : /usr/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Autoriser les vignettes SVG dans le navigateur de fichiers"; -App::$strings["WARNING: SVG images may contain malicious code."] = "ATTENTION : les images SVG peuvent contenir du code malveillant."; -App::$strings["Maximum Load Average"] = "Charge maximale moyenne"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Délai d'expiration en jours pour le contenu importé (grille/réseau)"; -App::$strings["0 for no expiration of imported content"] = "0 pour ne pas expirer le contenu importé"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Ne pas considérer comme expirés les messages qui ont reçu des commentaires depuis moins de ce nombre de jours"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Serveurs publics : page Web facultative d'atterrissage (marketing) pour les nouveaux inscrits."; -App::$strings["Create this page first. Default is %s/register"] = "Créez d'abord cette page. La valeur par défaut est %s /register"; -App::$strings["Page to display after creating a new channel"] = "Page à afficher après la création d'un nouveau canal"; -App::$strings["Recommend: profiles, go, or settings"] = "Recommander : profils, go, ou paramètres"; -App::$strings["Optional: site location"] = "Option : emplacement du site"; -App::$strings["Region or country"] = "Région ou pays"; -App::$strings["New Profile Field"] = "Nouveau champ de profil"; -App::$strings["Field nickname"] = "Nom court du champ"; -App::$strings["System name of field"] = "Nom système du champ"; -App::$strings["Input type"] = "Type de champ"; -App::$strings["Field Name"] = "Nom du champ"; -App::$strings["Label on profile pages"] = "Étiquette sur les pages de profil"; -App::$strings["Help text"] = "Aide à la saisie"; -App::$strings["Additional info (optional)"] = "Informations additionnelles (facultatif)"; -App::$strings["Save"] = "Enregistrer"; -App::$strings["Field definition not found"] = "Définition du champ introuvable"; -App::$strings["Edit Profile Field"] = "Modifier le champ de profil"; -App::$strings["Profile Fields"] = "Champs de profil"; -App::$strings["Basic Profile Fields"] = "Champs de profil de base"; -App::$strings["Advanced Profile Fields"] = "Champs de profil avancés"; -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["Password changed for account %d."] = "Le mot de passe a été modifié pour le compte %d."; -App::$strings["Account settings updated."] = "Paramétrage du compte mis à jour"; -App::$strings["Account not found."] = "Compte introuvable"; -App::$strings["Account Edit"] = "Modifier votre compte"; -App::$strings["New Password"] = "Nouveau mot de passe"; -App::$strings["New Password again"] = "Nouveau mot de passe (encore)"; -App::$strings["Technical skill level"] = "Niveau technique"; -App::$strings["Account language (for emails)"] = "Langue de votre compte (pour email)"; -App::$strings["Service class"] = "Classe de service"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Par défaut le code HTML est autorisé pour les média par exemple les vidéos embarquées. Cependant cela peut poser un faille de sécurité."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Ce paramétrage autorisant le HTML pour les sites suivants."; -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."] = "Les contenus html seront filtrés sauf ceux des sites explicitement bloqués."; -App::$strings["Security"] = "Sécurité"; -App::$strings["Block public"] = "Bloquer \"public\""; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Sélectionner pour ne permettre l'accès aux pages personnelles \"publiques\" du site qu'aux personnes authentifiées, pas aux personnes anonymes du web."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Paramétrer \"Transport Security\" pour l'entête HTTP"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Paramétrer \"Content Security Policy\" pour l'entête HTTP"; -App::$strings["Allowed email domains"] = "Domaines de courriels autorisés"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."; -App::$strings["Not allowed email domains"] = "Domaines de courriel non autorisés"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis."; -App::$strings["Allow communications only from these sites"] = "N'autorisez que les communications venant de ces sites"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un site par ligne. Laisser vide pour autoriser les communications de tous les sites, par défaut."; -App::$strings["Block communications from these sites"] = "Bloquer les communications de ces sites"; -App::$strings["Allow communications only from these channels"] = "N'autoriser que les communications de ces canaux"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (adresse) par ligne. Laisser vide pour autoriser les communications de tous les canaux, par défaut"; -App::$strings["Block communications from these channels"] = "Bloquer les communications de ces canaux"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Seuls les sites et liens sécurisés sont autorisé pour intégrer du code HTML"; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Autoriser le contenu HTML embarqué uniquement à partir de ces domaines"; -App::$strings["One site per line. By default embedded content is filtered."] = "Un site par ligne. Par défaut le contenu embarqué est filtré."; -App::$strings["Block embedded HTML from these domains"] = "Bloquer le HTML embarqué à partir de ces domaines"; -App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles."; -App::$strings["Visible to:"] = "Visible par :"; -App::$strings["__ctx:acl__ Profile"] = "Profil"; -App::$strings["Comment approved"] = "Commentaire validé"; -App::$strings["Comment deleted"] = "Commentaire supprimé"; -App::$strings["Permission Name is required."] = "Le nom de permission est requis."; -App::$strings["Permission category saved."] = "Profil d'accès enregistré."; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilisez ce formulaire pour créer des règles d'accès pour différentes catégories de personnes ou de contacts."; -App::$strings["Permission Categories"] = "Profils d'accès"; -App::$strings["Permission Name"] = "Nom du droit d'accès"; -App::$strings["My Settings"] = "Mes paramètres"; -App::$strings["inherited"] = "héritée"; -App::$strings["Individual Permissions"] = "Droits d'accès individuels"; -App::$strings["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."] = "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous ne pouvez pas modifier ces droits d'accès-ci ici."; -App::$strings["Friends"] = "Amis"; -App::$strings["Settings updated."] = "Paramètres mis à jour."; -App::$strings["Nobody except yourself"] = "Personne sauf vous"; -App::$strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement"; -App::$strings["Approved connections"] = "Contacts validés"; -App::$strings["Any connections"] = "Tous les contacts"; -App::$strings["Anybody on this website"] = "Tous les utilisateurs du hub"; -App::$strings["Anybody in this network"] = "Tous les utilisateurs sur ce réseau"; -App::$strings["Anybody authenticated"] = "Tous les utilisateurs authentifiés"; -App::$strings["Anybody on the internet"] = "Tous les utilisateurs d'Internet"; -App::$strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?"; -App::$strings["or"] = "ou"; -App::$strings["Your channel address is"] = "L'adresse de votre canal est"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "Vos fichiers/photos sont accessibles via WebDAV à"; -App::$strings["Channel Settings"] = "Paramètres du canal"; -App::$strings["Basic Settings"] = "Paramètres standard"; -App::$strings["Full Name:"] = "Nom complet :"; -App::$strings["Email Address:"] = "Adresse de courriel :"; -App::$strings["Your Timezone:"] = "Votre fureau horaire :"; -App::$strings["Default Post Location:"] = "Emplacement de publication par défaut :"; -App::$strings["Geographical location to display on your posts"] = "Emplacement géographique à afficher sur vos publications"; -App::$strings["Use Browser Location:"] = "Utiliser la géolocalisation du navigateur :"; -App::$strings["Adult Content"] = "Contenu \"adulte\""; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "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)"; -App::$strings["Security and Privacy Settings"] = "Paramètres de sécurité et de confidentialité"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Vous droits d'accès sont déjà paramétrés. Cliquer pour voir/modifier"; -App::$strings["Hide my online presence"] = "Cacher ma présence en ligne"; -App::$strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil"; -App::$strings["Simple Privacy Settings:"] = "Paramètres de confidentialité simplifiés :"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Classique - public par défaut, privé en cas de besoin (comparable aux droits d'accès type réseau social, avec une confidentialité améliorée)"; -App::$strings["Private - default private, never open or public"] = "Privé - privé par défaut, jamais ouvert ni public"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqué - par défaut, bloqué de/vers tout le monde"; -App::$strings["Allow others to tag your posts"] = "Autoriser les autres à \"étiqueter\" vos publications"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori "; -App::$strings["Channel Permission Limits"] = "Limites des droits d'accès du canal"; -App::$strings["Expire other channel content after this many days"] = "Faire expirer le contenu des autres canaux après n jours"; -App::$strings["0 or blank to use the website limit."] = "0 ou vide pour utiliser la limite du site web"; -App::$strings["This website expires after %d days."] = "Ce site web expirera après %d jours."; -App::$strings["This website does not expire imported content."] = "Ce site web ne périme pas le contenu importé."; -App::$strings["The website limit takes precedence if lower than your limit."] = "La limite du site Web a priorité si elle est inférieure à votre limite."; -App::$strings["Maximum Friend Requests/Day:"] = "Nombre maximum de demandes de contact par jour :"; -App::$strings["May reduce spam activity"] = "Contribue à réduire l'impact des indésirables"; -App::$strings["Default Privacy Group"] = "Groupe de contacts par défaut :"; -App::$strings["Use my default audience setting for the type of object published"] = "Utiliser mon paramètre de publication par défaut pour le type d'objet publié"; -App::$strings["Profile to assign new connections"] = "Profil pour assigner de nouvelles connexions"; -App::$strings["Default Permissions Group"] = "Groupe d'accès par défaut"; -App::$strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour :"; -App::$strings["Useful to reduce spamming"] = "Utile pour réduire les indésirables"; -App::$strings["Notification Settings"] = "Paramètres de notification"; -App::$strings["By default post a status message when:"] = "Par défaut, publier un statut quand :"; -App::$strings["accepting a friend request"] = "vous acceptez une demande de contact"; -App::$strings["joining a forum/community"] = "vous rejoignez un forum ou une communauté"; -App::$strings["making an interesting profile change"] = "vous faîtes une modification intéressante de votre profil"; -App::$strings["Send a notification email when:"] = "Envoyer un courriel de notification quand :"; -App::$strings["You receive a connection request"] = "Vous recevez une demande de contact"; -App::$strings["Your connections are confirmed"] = "Vos contacts sont confirmés"; -App::$strings["Someone writes on your profile wall"] = "Quelqu'un a écrit sur votre mur"; -App::$strings["Someone writes a followup comment"] = "Quelqu'un a commenté vos publications"; -App::$strings["You receive a private message"] = "Vous recevez un message privé"; -App::$strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/contact"; -App::$strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication"; -App::$strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/encouragé/etc. dans une publication"; -App::$strings["Someone likes your post/comment"] = "Quelqu'un aime votre publication/commentaire"; -App::$strings["Show visual notifications including:"] = "Afficher des notifications visuelles y compris :"; -App::$strings["Unseen grid activity"] = "Activité du réseau pas encore consultée"; -App::$strings["Unseen channel activity"] = "Activité non vue sur le canal"; -App::$strings["Unseen private messages"] = "Messages privés non lus"; -App::$strings["Recommended"] = "Recommandé"; -App::$strings["Upcoming events"] = "Événements à venir"; -App::$strings["Events today"] = "Événements aujourd'hui"; -App::$strings["Upcoming birthdays"] = "Anniversaires à venir"; -App::$strings["Not available in all themes"] = "Pas disponible dans tous les thèmes"; -App::$strings["System (personal) notifications"] = "Notifications système (personnelles)"; -App::$strings["System info messages"] = "Messages d'info système"; -App::$strings["System critical alerts"] = "Alertes critiques système"; -App::$strings["New connections"] = "Nouveaux contacts"; -App::$strings["System Registrations"] = "Inscriptions système"; -App::$strings["Unseen shared files"] = "Fichiers partagés non vus"; -App::$strings["Unseen public activity"] = "Activité publique non vue"; -App::$strings["Unseen likes and dislikes"] = "Aime et n'aime pas non consultés"; -App::$strings["Email notification hub (hostname)"] = "Concentrateur de notification par courriel (nom d'hôte)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si votre canal est dupliqué sur plusieurs hubs, définissez cet emplacement comme votre emplacement préféré. Cela empêchera les notifications par courriel en double. Exemple : %s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Montrer les nouveaux envois, messages privés et les nouvelles connexions dans Notifications"; -App::$strings["Notify me of events this many days in advance"] = "Me prévenir d’événements à venir tant de jours en avance"; -App::$strings["Must be greater than 0"] = "Doit être supérieur à 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/type de page"; -App::$strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour des situations particulières"; -App::$strings["Miscellaneous Settings"] = "Paramètres divers"; -App::$strings["Default photo upload folder"] = "Répertoire par défaut pour les photos téléversées"; -App::$strings["%Y - current year, %m - current month"] = "%Y - année en cours, %m - mois en cours"; -App::$strings["Default file upload folder"] = "Répertoire par défaut pour les fichiers téléversés"; -App::$strings["Personal menu to display in your channel pages"] = "Menu personnel à afficher sur les pages de votre canal"; -App::$strings["Remove this channel."] = "Supprimer ce canal"; -App::$strings["Firefox Share \$Projectname provider"] = "Connecteur \$Projectname pour Firefox Share"; -App::$strings["Start calendar week on Monday"] = "Commencer la semaine du calendrier le lundi"; -App::$strings["Additional Features"] = "Fonctionnalités additionnelles"; -App::$strings["Your technical skill level"] = "Votre niveau technique"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilisé pour offrir une expérience de membre et des fonctions supplémentaires compatibles avec votre niveau de confort."; -App::$strings["This channel is limited to %d tokens"] = "Ce canal est limité à %d jetons"; -App::$strings["Name and Password are required."] = "Le nom et le mot de passe sont requis"; -App::$strings["Token saved."] = "Jeton sauvegardé"; -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 private content."] = "Utilisez ce formulaire pour créer des identifiants d'accès temporaires pour partager des informations avec des non-membres. Ces identités peuvent être utilisées dans les listes de contrôle d'accès et les visiteurs peuvent se connecter en utilisant ces certificats d'identification pour accéder au contenu privé."; -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:"] = "Vous pouvez également fournir des liens d'accès, style dropbox, aux amis et aux associés en ajoutant le mot de passe de connexion à l'URL d'un site spécifique, comme indiqué. Exemples:"; -App::$strings["Guest Access Tokens"] = "Jeton d'accès pour un invité"; -App::$strings["Login Name"] = "Nom d'utilisateur"; -App::$strings["Login Password"] = "Mot de passe"; -App::$strings["Expires (yyyy-mm-dd)"] = "Date d'expiration sous la forme année mois jour (AAAA-MM-JJ)"; -App::$strings["Their Settings"] = "Leurs paramètres"; -App::$strings["Name and Secret are required"] = "Un nom et un secret sont requis"; -App::$strings["Add OAuth2 application"] = "Ajouter une application OAuth2"; -App::$strings["Name of application"] = "Nom de l'application"; -App::$strings["Consumer Secret"] = "Secret client"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."; -App::$strings["Redirect"] = "Redirection"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement"; -App::$strings["Grant Types"] = "Types de bourses"; -App::$strings["leave blank unless your application sepcifically requires this"] = "Laisser vide, sauf si votre application le requiert spécifiquement"; -App::$strings["Authorization scope"] = "Portée de l'autorisation"; -App::$strings["OAuth2 Application not found."] = "Application OAuth2 introuvable"; -App::$strings["Add application"] = "Ajouter une application"; -App::$strings["Connected OAuth2 Apps"] = "Applications OAuth2 connectées"; -App::$strings["Client key starts with"] = "La clef partagée commence par"; -App::$strings["No name"] = "Sans nom"; -App::$strings["Remove authorization"] = "Révoquer l'autorisation"; -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."; -App::$strings["Technical skill level updated"] = "Niveau technique mis à jour"; -App::$strings["Password verification failed."] = "La vérification du mot de passe a échoué."; -App::$strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."; -App::$strings["Password changed."] = "Le mot de passe a été changé."; -App::$strings["Password update failed. Please try again."] = "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau."; -App::$strings["Account Settings"] = "Paramètres du compte"; -App::$strings["Current Password"] = "Mot de passe actuel"; -App::$strings["Enter New Password"] = "Entrez votre nouveau mot de passe"; -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["Remove Account"] = "Supprimer le compte"; -App::$strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux"; -App::$strings["Affinity Slider settings updated."] = "Paramètres de la réglette d'affinité mis à jour."; -App::$strings["No feature settings configured"] = "Aucun paramètre de fonctionnalité configuré"; -App::$strings["Default maximum affinity level"] = "Niveau d'affinité maximum par défaut"; -App::$strings["0-99 default 99"] = "0-99 par défaut 99"; -App::$strings["Default minimum affinity level"] = "Niveau d'affinité minimum par défaut"; -App::$strings["0-99 - default 0"] = "0-99 par défaut 0"; -App::$strings["Affinity Slider Settings"] = "Paramètres de la réglette d'affinité"; -App::$strings["Addon Settings"] = "Paramètres du greffon"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Veuillez enregistrer/soumettre les changements à n'importe quel panneau avant d'en ouvrir un autre."; -App::$strings["%s - (Experimental)"] = "%s - (Expérimental)"; -App::$strings["Display Settings"] = "Afficher les paramètres"; -App::$strings["Theme Settings"] = "Paramètres du thème"; -App::$strings["Custom Theme Settings"] = "Paramètres personnels du thème"; -App::$strings["Content Settings"] = "Paramètres liés au contenu"; -App::$strings["Display Theme:"] = "Afficher le thème :"; -App::$strings["Select scheme"] = "Définir la palette de couleurs"; -App::$strings["Preload images before rendering the page"] = "Pré-charger les images avant d'afficher la page"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Le temps de charge perçu de la page sera plus long mais la page sera complète quand elle s'affichera"; -App::$strings["Enable user zoom on mobile devices"] = "Permettre à l'utilisateur d'un mobile d'agrandir le contenu"; -App::$strings["Update browser every xx seconds"] = "Mettre à jour le navigateur toutes les xx secondes"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps :"; -App::$strings["Maximum of 100 items"] = "100 éléments au maximum"; -App::$strings["Show emoticons (smilies) as images"] = "Remplacer les émoticônes (smileys) par des images"; -App::$strings["Provide channel menu in navigation bar"] = "Fournir le menu du canal dans la barre de navigation"; -App::$strings["Default: channel menu located in app menu"] = "Par défaut : menu du canal situé dans le menu de l'application."; -App::$strings["Manual conversation updates"] = "Manuel de mises à jour des conversations"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "Activé par défaut, le désactiver peut accroître les sauts d'écran"; -App::$strings["Link post titles to source"] = "Lier les titres des publications à leur source"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editeur de mise en page des pages systèmes - (avancé)"; -App::$strings["Use blog/list mode on channel page"] = "Utiliser le mode blog/liste sur la page du canal"; -App::$strings["(comments displayed separately)"] = "(commentaires affichés séparément)"; -App::$strings["Use blog/list mode on grid page"] = "Utiliser le mode blog/liste sur la page du réseau"; -App::$strings["Channel page max height of content (in pixels)"] = "Hauteur maximale du contenu pour la page du canal (en pixels)"; -App::$strings["click to expand content exceeding this height"] = "cliquer pour dérouler le contenu dépassant cette limite"; -App::$strings["Grid page max height of content (in pixels)"] = "Hauteur maximale du contenu sur la page du réseau (en pixels)"; -App::$strings["Name is required"] = "Le nom est requis"; -App::$strings["Key and Secret are required"] = "Clef et secret sont requis"; -App::$strings["Consumer Key"] = "Clef client"; -App::$strings["Icon url"] = "URL de l'icône"; -App::$strings["Optional"] = "Facultatif"; -App::$strings["Application not found."] = "Application introuvable."; -App::$strings["Connected Apps"] = "Applications connectées"; -App::$strings["View Photo"] = "Voir la photo"; -App::$strings["Edit Album"] = "Modifier l'album"; -App::$strings["Upload"] = "Envoyer"; -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["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["Permissions"] = "Droits d'accès"; -App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil"; -App::$strings["No more system notifications."] = "Pas d'autre notification du système."; -App::$strings["System Notifications"] = "Notifications du système"; -App::$strings["Connection added."] = "Connexion ajoutée."; -App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux."; -App::$strings["No channel. Import failed."] = "Pas de canal. Echec de l'import."; -App::$strings["Import completed."] = "L'import est terminé."; -App::$strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité."; -App::$strings["Import Channel"] = "Importation de canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; -App::$strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)"; -App::$strings["Your old login email address"] = "Votre ancienne adresse de courriel"; -App::$strings["Your old login password"] = "Votre ancien mot de passe"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; -App::$strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire"; -App::$strings["Move this channel (disable all previous locations)"] = "Déplacer ce canal (désactiver tous les emplacements précédents)"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importer plusieurs mois de messages si possible (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["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["Permissions denied."] = "Accès refusés."; -App::$strings["Import"] = "Import"; -App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter"; -App::$strings["Return to your app and insert this Security Code:"] = "Revenez dans votre application et mettez le 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["Item not available."] = "Élément indisponible."; -App::$strings["Edit Block"] = "Modifier le bloc"; -App::$strings["vcard"] = "vcard"; -App::$strings["Apps"] = "Applications"; -App::$strings["Manage apps"] = "Gérer les applications"; -App::$strings["Create new app"] = "Créer une application"; -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["Active"] = "Active"; -App::$strings["Blocked"] = "Bloqué(e)"; -App::$strings["Ignored"] = "Ignoré(e)"; -App::$strings["Hidden"] = "Caché"; -App::$strings["Archived/Unreachable"] = "Archivé/Injoignable"; -App::$strings["New"] = "Nouveautés"; -App::$strings["All"] = "Tous"; -App::$strings["Active Connections"] = "Connexions actives"; -App::$strings["Show active connections"] = "Voir les connexions actives"; -App::$strings["New Connections"] = "Nouveaux contacts"; -App::$strings["Show pending (new) connections"] = "Voir les (nouveaux) contacts en attente"; -App::$strings["Only show blocked connections"] = "Ne montrer que les contacts bloqués"; -App::$strings["Only show ignored connections"] = "Ne montrer que les contacts ignorés"; -App::$strings["Only show archived/unreachable connections"] = "Ne montrer que les contacts archivés/injoignables"; -App::$strings["Only show hidden connections"] = "Ne montrer que les contacts cachés"; -App::$strings["Show all connections"] = "Voir tous les contacts"; -App::$strings["Pending approval"] = "En attente de validation"; -App::$strings["Archived"] = "Archivé"; -App::$strings["Not connected at this location"] = "Contact introuvable à cette adresse"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifier le contact"; -App::$strings["Delete connection"] = "Supprimer le contact"; -App::$strings["Channel address"] = "Adresse du canal"; -App::$strings["Network"] = "Réseau"; -App::$strings["Call"] = "Appeler"; -App::$strings["Status"] = "État"; -App::$strings["Connected"] = "Ami depuis"; -App::$strings["Approve connection"] = "Valider le contact"; -App::$strings["Ignore connection"] = "Ignorer le contact"; -App::$strings["Ignore"] = "Ignorer"; -App::$strings["Recent activity"] = "Activité récente"; -App::$strings["Connections"] = "Contacts"; -App::$strings["Search your connections"] = "Chercher parmi vos contacts"; -App::$strings["Connections search"] = "Chercher des contacts"; -App::$strings["Find"] = "Trouver"; -App::$strings["item"] = "item"; -App::$strings["Source of Item"] = "Source de l'élément"; -App::$strings["Bookmark added"] = "Favori ajouté"; -App::$strings["My Bookmarks"] = "Mes Favoris"; -App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts"; -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"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Ce compte et tous ses canaux seront entièrement supprimés du réseau."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau"; -App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page."; -App::$strings["Album not found."] = "Album introuvable."; -App::$strings["Delete Album"] = "Supprimer l'album"; -App::$strings["Delete Photo"] = "Supprimer la photo"; -App::$strings["No photos selected"] = "Aucune photo selectionnée"; -App::$strings["Access to this item is restricted."] = "L'accès à l'élément est restreint."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos."; -App::$strings["Upload Photos"] = "Téléverser des photos"; -App::$strings["Enter an album name"] = "Entrer un nom d'album"; -App::$strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)"; -App::$strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi"; -App::$strings["Description (optional)"] = "Description (facultative)"; -App::$strings["Show Newest First"] = "Les plus récent(e)s en premier"; -App::$strings["Show Oldest First"] = "Les moins récent(e)s en premier"; -App::$strings["Add Photos"] = "Ajouter des photos"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Accès refusé. L'accès à cet élément peut avoir été restreint."; -App::$strings["Photo not available"] = "Photo non disponible"; -App::$strings["Use as profile photo"] = "Utiliser comme photo du profil"; -App::$strings["Use as cover photo"] = "Utilisez comme bannière"; -App::$strings["Private Photo"] = "Photo privée"; -App::$strings["View Full Size"] = "Voir en taille réelle"; -App::$strings["Edit photo"] = "Modifier la photo"; -App::$strings["Rotate CW (right)"] = "Rotation horaire (droite)"; -App::$strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)"; -App::$strings["Move photo to album"] = "Déplacer la photo dans l'album"; -App::$strings["Enter a new album name"] = "Entrer un nouveau nom d'album"; -App::$strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)"; -App::$strings["Add a Tag"] = "Ajouter une étiquette"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon"; -App::$strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album"; -App::$strings["I like this (toggle)"] = "J'aime (oui/non)"; -App::$strings["I don't like this (toggle)"] = "Je n'aime pas (oui/non)"; -App::$strings["Please wait"] = "Merci de patienter"; -App::$strings["This is you"] = "C'est vous"; -App::$strings["Comment"] = "Commenter"; -App::$strings["__ctx:title__ Likes"] = "Aime"; -App::$strings["__ctx:title__ Dislikes"] = "N'aime pas"; -App::$strings["__ctx:title__ Agree"] = "D'accord"; -App::$strings["__ctx:title__ Disagree"] = "Pas d'accord"; -App::$strings["__ctx:title__ Abstain"] = "Abstention"; -App::$strings["__ctx:title__ Attending"] = "Participations"; -App::$strings["__ctx:title__ Not attending"] = "Non-participations"; -App::$strings["__ctx:title__ Might attend"] = "Participation possible"; -App::$strings["View all"] = "Voir tout"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Aime", - 1 => "Aime", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "N'aime pas", - 1 => "N'aime pas", -); -App::$strings["Photo Tools"] = "Outils pour photos"; -App::$strings["In This Photo:"] = "Dans cette photo :"; -App::$strings["Map"] = "Carte"; -App::$strings["__ctx:noun__ Likes"] = "Aime"; -App::$strings["__ctx:noun__ Dislikes"] = "N'aime pas"; -App::$strings["Close"] = "Fermer"; -App::$strings["Recent Photos"] = "Photos récentes"; -App::$strings["Profile Unavailable."] = "Profil non disponible."; -App::$strings["Not found"] = "Non trouvé"; -App::$strings["Invalid channel"] = "Canal invalide."; -App::$strings["Error retrieving wiki"] = "Erreur lors de la récupération du wiki"; -App::$strings["Error creating zip file export folder"] = "Erreur lors de la création du dossier d'exportation du fichier zip"; -App::$strings["Error downloading wiki: "] = "Erreur lors du téléchargement du wiki:"; -App::$strings["Wikis"] = "Wikis"; -App::$strings["Download"] = "Téléchargement"; -App::$strings["Create New"] = "Nouveau"; -App::$strings["Wiki name"] = "Nom du wiki"; -App::$strings["Content type"] = "Type de contenu"; -App::$strings["Markdown"] = "Markdown"; -App::$strings["BBcode"] = "BBcode"; -App::$strings["Text"] = "Texte"; -App::$strings["Type"] = "Type"; -App::$strings["Any type"] = "N'importe quel type"; -App::$strings["Lock content type"] = "Verrouiller le type de contenu"; -App::$strings["Create a status post for this wiki"] = "Créer un statut de publication pour ce wiki"; -App::$strings["Edit Wiki Name"] = "Modifier le nom du wiki"; -App::$strings["Wiki not found"] = "Wiki introuvable"; -App::$strings["Rename page"] = "Renommer la page"; -App::$strings["Error retrieving page content"] = "Erreur lors de la récupération du contenu de la page"; -App::$strings["New page"] = "Nouvelle page"; -App::$strings["Revision Comparison"] = "Comparaison des révisions"; -App::$strings["Revert"] = "Revenir"; -App::$strings["Short description of your changes (optional)"] = "Description courte de vos modifications (optionnel)"; -App::$strings["Source"] = "Source"; -App::$strings["New page name"] = "Nouveau nom de la page"; -App::$strings["Embed image from photo albums"] = "Intégrer une image d'un album photo"; -App::$strings["Embed an image from your albums"] = "Intégrer une image de votre album photo"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Choisissez des images à intégrer"; -App::$strings["Choose an album"] = "Choisir un album"; -App::$strings["Choose a different album"] = "Choisissez un autre album"; -App::$strings["Error getting album list"] = "Erreur venant de la liste de l'album"; -App::$strings["Error getting photo link"] = "Erreur provenant du lien de la photo"; -App::$strings["Error getting album"] = "Erreur venant de l'album"; -App::$strings["Error creating wiki. Invalid name."] = "Erreur lors de la création du wiki. Nom invalide."; -App::$strings["A wiki with this name already exists."] = "Ce nom de wiki est déjà pris"; -App::$strings["Wiki created, but error creating Home page."] = "Le wiki a été créé, mais une erreur est survenue lors de la création de sa page d'accueil."; -App::$strings["Error creating wiki"] = "Erreur lors de la création du wiki."; -App::$strings["Error updating wiki. Invalid name."] = "Erreur de mise à jour du wiki. Nom invalide."; -App::$strings["Error updating wiki"] = "Erreur de mise à jour du wiki"; -App::$strings["Wiki delete permission denied."] = "Droit de supprimer le wiki refusé."; -App::$strings["Error deleting wiki"] = "Erreur durant la suppression du wiki"; -App::$strings["New page created"] = "Nouvelle page créée"; -App::$strings["Cannot delete Home"] = "Impossible de supprimer la racine"; -App::$strings["Current Revision"] = "Version actuelle"; -App::$strings["Selected Revision"] = "Version sélectionnée"; -App::$strings["You must be authenticated."] = "Vous devez être connecté."; -App::$strings["toggle full screen mode"] = "Basculer en mode plein écran."; -App::$strings["Layout updated."] = "Mise en page mise à jour."; -App::$strings["Feature disabled."] = "Fonctionnalité désactivée"; -App::$strings["Edit System Page Description"] = "Modifier la description de la page du système"; -App::$strings["(modified)"] = "modifié)"; -App::$strings["Reset"] = "Réinitialiser"; -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["Edit another layout"] = "Modifier une autre mise en page"; -App::$strings["System layout"] = "mise en page du système"; -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["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué."; -App::$strings["Profile Photos"] = "Photos du profil"; -App::$strings["Image resize failed."] = "Le redimensionnement de l'image a échoué."; -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["Unable to process image"] = "Impossible de traiter l'image"; -App::$strings["Image upload failed."] = "Le téléversement de l'image a échoué."; -App::$strings["Unable to process image."] = "Impossible de traîter l'image."; -App::$strings["Photo not available."] = "Photo inaccessible."; -App::$strings["Upload File:"] = "Téléverser fichier :"; -App::$strings["Select a profile:"] = "Choisir un profil :"; -App::$strings["Use Photo for Profile"] = "Utiliser la photo pour le profil"; -App::$strings["Change Profile Photo"] = "Changer la photo du profil"; -App::$strings["Use"] = "Utiliser"; -App::$strings["Use a photo from your albums"] = "Utiliser une photo de vos albums"; -App::$strings["Select existing photo"] = "Sélectionner une photo existante"; -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["Away"] = "Absent"; -App::$strings["Online"] = "En ligne"; -App::$strings["Unable to locate original post."] = "Impossible de localiser la publication initiale."; -App::$strings["Empty post discarded."] = "Publication vide annulée."; -App::$strings["Duplicate post suppressed."] = "Publication en doublon supprimée."; -App::$strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée."; -App::$strings["Your comment is awaiting approval."] = "Votre commentaire est en attente de validation."; -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["sent you a private message"] = "vous a envoyé un message privé"; -App::$strings["added your channel"] = "a ajouté votre canal"; -App::$strings["requires approval"] = "nécessite une approbation"; -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["shared a file with you"] = "a partagé un fichier avec vous"; -App::$strings["Invalid item."] = "Élément invalide."; -App::$strings["Page not found."] = "Page 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["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."; -App::$strings["Failed to update connection record."] = "Impossible de mettre à jour les détails du contact."; -App::$strings["is now connected to"] = "est maintenant connecté avec"; -App::$strings["Could not access address book record."] = "Impossible d'accéder aux détails du carnet d'adresses."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Actualisation impossible - le canal est indisponible."; -App::$strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses."; -App::$strings["Connection has been removed."] = "Le contact a été supprimé."; -App::$strings["View Profile"] = "Voir mon profil"; -App::$strings["View %s's profile"] = "Voir le profil de %s"; -App::$strings["Refresh Permissions"] = "Actualiser les droits d'accès"; -App::$strings["Fetch updated permissions"] = "Récupérer les autorisations les plus récentes"; -App::$strings["Refresh Photo"] = "Actualiser la photo"; -App::$strings["Fetch updated photo"] = "Récupérer la photo mise à jour"; -App::$strings["Recent Activity"] = "Activité récente"; -App::$strings["View recent posts and comments"] = "Voir les publications et commentaires récents"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquer ou débloquer toute communication avec ce contact"; -App::$strings["This connection is blocked!"] = "Ce contact est bloqué !"; -App::$strings["Unignore"] = "Ne plus ignorer"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer ou ne plus ignorer toute communication venant de ce contact"; -App::$strings["This connection is ignored!"] = "Ce contact est ignoré !"; -App::$strings["Unarchive"] = "Désarchiver"; -App::$strings["Archive"] = "Archiver"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu"; -App::$strings["This connection is archived!"] = "Ce contact est archivé !"; -App::$strings["Unhide"] = "Ne plus cacher"; -App::$strings["Hide"] = "Cacher"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts"; -App::$strings["This connection is hidden!"] = "Ce contact est caché !"; -App::$strings["Delete this connection"] = "Supprimer ce contact"; -App::$strings["Fetch Vcard"] = "Récupérer la Vcard"; -App::$strings["Fetch electronic calling card for this connection"] = "Récupérer la carte de visite électronique de ce contact"; -App::$strings["Open Individual Permissions section by default"] = "Ouvrir par défaut la section des droits d'accès individuels"; -App::$strings["Affinity"] = "Affinité"; -App::$strings["Open Set Affinity section by default"] = "Ouvrir par défaut la section Définir le degré d'affinité"; -App::$strings["Me"] = "Moi"; -App::$strings["Family"] = "Famille"; -App::$strings["Acquaintances"] = "Connaissances"; -App::$strings["Filter"] = "Filtrer"; -App::$strings["Open Custom Filter section by default"] = "Ouvrir par défaut la section Filtre personnalisé"; -App::$strings["Approve this connection"] = "Valider ce contact"; -App::$strings["Accept connection to allow communication"] = "Accepter le contact pour permettre la communication"; -App::$strings["Set Affinity"] = "Définir le degré d'affinité"; -App::$strings["Set Profile"] = "Définir le profil"; -App::$strings["Set Affinity & Profile"] = "Définir le degré d'affinité et le profil"; -App::$strings["This connection is unreachable from this location."] = "Ce contact est injoignable à partir de ce serveur."; -App::$strings["This connection may be unreachable from other channel locations."] = "Ce contact peut être injoignable à partir d'autres serveurs hébergeant ce canal."; -App::$strings["Location independence is not supported by their network."] = "Leur plate-forme ne gère pas la localisation multiple des canaux/contacts."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Ce contact est injoignable à partir de cette adresse. Sa plate-forme ne gère pas la localisation multiple des canaux/contacts."; -App::$strings["Connection Default Permissions"] = "Droits d'accès par défaut des contacts"; -App::$strings["Connection: %s"] = "Contact : %s"; -App::$strings["Apply these permissions automatically"] = "Appliquer ces droits d'accès automatiquement"; -App::$strings["Connection requests will be approved without your interaction"] = "Les demandes de contact seront validées automatiquement"; -App::$strings["Permission role"] = "Rôle d'accès"; -App::$strings["Loading"] = "Chargement"; -App::$strings["Add permission role"] = "Ajouter un rôle d'accès"; -App::$strings["This connection's primary address is"] = "L'adresse principale de ce contact est"; -App::$strings["Available locations:"] = "Emplacements disponibles :"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Les droits d'accès indiqués sur cette page seront appliqués à tous vos nouveaux contacts."; -App::$strings["Connection Tools"] = "Actions du contact"; -App::$strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster votre proximité avec le contact"; -App::$strings["Rating"] = "Evaluation"; -App::$strings["Slide to adjust your rating"] = "Faîtes glisser pour ajuster votre note"; -App::$strings["Optionally explain your rating"] = "Explication facultative de votre évaluation"; -App::$strings["Custom Filter"] = "Filtre personnalisé"; -App::$strings["Only import posts with this text"] = "N'importer que les publications comprenant ce texte"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications"; -App::$strings["Do not import posts with this text"] = "Ne pas importer les publications comprenant ce texte"; -App::$strings["This information is public!"] = "Cette information est publique !"; -App::$strings["Connection Pending Approval"] = "Contact en attente d'approbation"; -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["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."] = "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces droits d'accès 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["Details"] = "Détails"; -App::$strings["Room not found"] = "Salon introuvable"; -App::$strings["Leave Room"] = "Quitter le salon"; -App::$strings["Delete Room"] = "Supprimer le salon"; -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["New Chatroom"] = "Nouveau salon de discussion"; -App::$strings["Chatroom name"] = "Nom du salon de conversation"; -App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)"; -App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; -App::$strings["No chatrooms available"] = "Aucun salon de conversation disponible"; -App::$strings["Expiration"] = "Expiration"; -App::$strings["min"] = "min"; -App::$strings["Photos"] = "Photos"; -App::$strings["Files"] = "Fichiers"; -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["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["Layouts"] = "Mises-en-page"; -App::$strings["Help"] = "Aide"; -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["Please refresh page"] = "Veuillez rafraîchir la page"; -App::$strings["Unknown error"] = "Erreur inconnue"; -App::$strings["Token verification failed."] = "La vérification du jeton a échoué."; -App::$strings["Email Verification Required"] = "Vérification de courriel requise"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Un jeton de vérification a été envoyé à votre courriel [%s]. Entrez ce jeton ici pour compléter l'étape de vérification des comptes. Veuillez allouer quelques minutes pour la réception et vérifier votre dossier spam si vous ne voyez pas le message."; -App::$strings["Resend Email"] = "Renvoyer le courriel"; -App::$strings["Validation token"] = "Jeton de validation"; -App::$strings["Post not found."] = "Publication introuvable."; -App::$strings["post"] = "publication"; -App::$strings["comment"] = "commentaire"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s avec %4\$s"; -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["If enabled, connection requests will be approved without your interaction"] = "Si cette option est activée, les demandes de connexion seront approuvées sans votre intervention."; -App::$strings["Automatic approval settings"] = "Paramètres d'approbation automatique"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Certaines permissions individuelles peuvent avoir été prédéfinies ou verrouillées en fonction de votre type de canal et de vos paramètres de confidentialité."; -App::$strings["Unknown App"] = "App inconnue"; -App::$strings["Authorize"] = "Autoriser"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorisez vous l'app %s à accéder aux données de votre canal ?"; -App::$strings["Allow"] = "Permettre"; -App::$strings["Privacy group created."] = "Groupe de contacts créé."; -App::$strings["Could not create privacy group."] = "Impossible de créer le groupe de contacts."; -App::$strings["Privacy group not found."] = "Groupe de contacts introuvable."; -App::$strings["Privacy group updated."] = "Groupe de contacts mis à jour."; -App::$strings["Create a group of channels."] = "Créer un groupe de contacts."; -App::$strings["Privacy group name: "] = "Nom du groupe de contacts :"; -App::$strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux"; -App::$strings["Privacy group removed."] = "Groupe de contacts supprimé."; -App::$strings["Unable to remove privacy group."] = "Impossible de supprimer le groupe de canaux."; -App::$strings["Privacy group editor"] = "Editeur de groupe de contacts."; -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["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["Gender"] = "Sexe"; -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"] = "Cacher la liste de vos contacts pour les visiteurs de votre 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"] = "Outils pour votre profil"; -App::$strings["Change cover photo"] = "Modifier votre bannière"; -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["Relationship"] = "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"] = "Votre genre"; -App::$strings["Marital status"] = "Etat civil"; -App::$strings["Sexual preference"] = "préférence sexuelle"; -App::$strings["Profile name"] = "Nom du profil"; -App::$strings["This is your default profile."] = "Ceci est votre profil par défaut."; -App::$strings["Your full name"] = "Votre nom complet"; -App::$strings["Title/Description"] = "Titre/description"; -App::$strings["Street address"] = "Rue"; -App::$strings["Locality/City"] = "Ville"; -App::$strings["Region/State"] = "Région"; -App::$strings["Postal/Zip code"] = "Code postal"; -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)"] = "Depuis (date)"; -App::$strings["Tell us about yourself"] = "Parlez nous de vous..."; -App::$strings["Homepage URL"] = "URL de mon site Internet :"; -App::$strings["Hometown"] = "Ville de naissance"; -App::$strings["Political views"] = "Opinions politiques"; -App::$strings["Religious views"] = "Convictions religieuses"; -App::$strings["Keywords used in directory listings"] = "Mots clés pour l'annuaire"; -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"] = "Cinéma/Danse/Culture/Divertissement"; -App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; -App::$strings["Love/Romance"] = "Amour/Relation amoureuse"; -App::$strings["School/Education"] = "Niveau d'étude"; -App::$strings["Contact information and social networks"] = "Coordonnées et autres réseaux sociaux"; -App::$strings["My other channels"] = "Mes autres canaux"; -App::$strings["Communications"] = "Communications"; -App::$strings["Profile Image"] = "Image du profil"; -App::$strings["Edit Profiles"] = "Modifier mes profils"; -App::$strings["This page is available only to site members"] = "Cette page n'est disponible que pour les membres du site."; -App::$strings["Welcome"] = "Bienvenue"; -App::$strings["What would you like to do?"] = "Qu'est-ce que vous aimeriez faire ?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Veuillez ajouter cette page à vos favoris si vous souhaitez y revenir à l'avenir."; -App::$strings["Upload a profile photo"] = "Téléverser une photo de profil"; -App::$strings["Upload a cover photo"] = "Téléverser une photo de couverture"; -App::$strings["Edit your default profile"] = "Modifier votre profil par défaut"; -App::$strings["View friend suggestions"] = "Voir les suggestions d'amis"; -App::$strings["View the channel directory"] = "Voir l'annuaire des canaux"; -App::$strings["View/edit your channel settings"] = "Afficher/modifier les paramètres de votre canal"; -App::$strings["View the site or project documentation"] = "Consulter la documentation du site ou du projet"; -App::$strings["Visit your channel homepage"] = "Visitez la page d'accueil de votre canal"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Affichez vos connexions et/ou ajoutez quelqu'un dont vous connaissez déjà l'adresse."; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Visualiser votre flux personnel (ce qui peut être vide jusqu'à ce que vous ajoutiez des connexions)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Voir le flux public. Attention : ce contenu n'est pas modéré."; -App::$strings["Page link"] = "Lien"; -App::$strings["Edit Webpage"] = "Modifier la page web"; -App::$strings["Create a new channel"] = "Créer un nouveau canal"; -App::$strings["Channel Manager"] = "Gérer mes 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 relations"; -App::$strings["Delegated Channel"] = "Canaux délégués"; -App::$strings["Cards"] = "Cartes"; -App::$strings["Add Card"] = "Ajouter carte"; -App::$strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès"; -App::$strings["About this site"] = "À propos de ce site"; -App::$strings["Site Name"] = "Nom du site"; -App::$strings["Administrator"] = "Administrateur"; -App::$strings["Terms of Service"] = "Conditions de service"; -App::$strings["Software and Project information"] = "Informations sur le logiciel et le projet"; -App::$strings["This site is powered by \$Projectname"] = "Ce site est propulsé par "; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Réseau fédéré et décentralisé, et services d'identification fournies par Zot"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Project homepage"] = "Page d'accueil du projet"; -App::$strings["Developer homepage"] = "Page d'accueil des développeurs"; -App::$strings["No ratings"] = "Pas de note"; -App::$strings["Ratings"] = "Evaluations"; -App::$strings["Rating: "] = "Evaluation :"; -App::$strings["Website: "] = "Site web :"; -App::$strings["Description: "] = "Description :"; -App::$strings["Import Webpage Elements"] = "Importer éléments de page web"; -App::$strings["Import selected"] = "Importation sélectionnée"; -App::$strings["Export Webpage Elements"] = "Exporter éléments de pages web"; -App::$strings["Export selected"] = "Export sélectionné"; -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["Invalid file type."] = "Type de fichier invalide"; -App::$strings["Error opening zip file"] = "Erreur lors de l'ouverture du fichier zip"; -App::$strings["Invalid folder path."] = "Chemin du dossier invalide"; -App::$strings["No webpage elements detected."] = "Aucun élément de page Web détecté."; -App::$strings["Import complete."] = "Importation terminée"; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Les changements de nom de canal ne sont pas autorisés dans les 48 heures suivant la modification du mot de passe du compte."; -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["Change channel nickname/address"] = "Changer le pseudo/adresse du canal"; -App::$strings["Any/all connections on other networks will be lost!"] = "Toutes les connexions sur d'autres réseaux seront perdues !"; -App::$strings["New channel address"] = "Nouvelle adresse de canal"; -App::$strings["Rename Channel"] = "Renommer canal"; -App::$strings["Item is not editable"] = "Elément non modifiable"; -App::$strings["Edit post"] = "Modifier la publication"; -App::$strings["Invalid message"] = "Message non valide"; -App::$strings["no results"] = "aucun résultat"; -App::$strings["channel sync processed"] = "Synchro de canal effectuée"; -App::$strings["queued"] = "mis dans la file d'attente"; -App::$strings["posted"] = "publié"; -App::$strings["accepted for delivery"] = "accepté pour la distribution"; -App::$strings["updated"] = "mis à jour"; -App::$strings["update ignored"] = "mise à jour ignorée"; -App::$strings["permission denied"] = "accès refusé"; -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"] = "Options"; -App::$strings["Redeliver"] = "Transférer à nouveau"; -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."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Sources du canal"; -App::$strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes de contenu pour votre canal."; -App::$strings["New Source"] = "Nouvelle source"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal."; -App::$strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'il contient ces mots (un par ligne)"; -App::$strings["Leave blank to import all public content"] = "Laissez vide pour importer tout le contenu public"; -App::$strings["Channel Name"] = "Nom du canal"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Ajouter les catégories suivantes aux publications importées à partir de cette source (séparer par des virgules)"; -App::$strings["Source not found."] = "Source introuvable."; -App::$strings["Edit Source"] = "Modifier la source"; -App::$strings["Delete Source"] = "Supprimer la source"; -App::$strings["Source removed"] = "Source supprimée"; -App::$strings["Unable to remove source."] = "Impossible de supprimer la source."; -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["%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["No default suggestions were found."] = "Aucune suggestion par défaut n'a été trouvée."; -App::$strings["%d rating"] = array( - 0 => "%d évaluation", - 1 => "%d évaluations", -); -App::$strings["Gender: "] = "Sexe/genre :"; -App::$strings["Status: "] = "État :"; -App::$strings["Homepage: "] = "Site web :"; -App::$strings["Age:"] = "Age :"; -App::$strings["Location:"] = "Emplacement :"; -App::$strings["Description:"] = "Description :"; -App::$strings["Hometown:"] = "Ville natale :"; -App::$strings["About:"] = "À propos :"; -App::$strings["Connect"] = "Lier"; -App::$strings["Public Forum:"] = "Forum public :"; -App::$strings["Keywords: "] = "Mots-clefs :"; -App::$strings["Don't suggest"] = "Ne pas suggérer"; -App::$strings["Common connections (estimated):"] = "Connexions communes (estimation) :"; -App::$strings["Global Directory"] = "Annuaire global"; -App::$strings["Local Directory"] = "Annuaire local"; -App::$strings["Finding:"] = "Recherche :"; -App::$strings["Channel Suggestions"] = "Canaux suggérés"; -App::$strings["next page"] = "page suivante"; -App::$strings["previous page"] = "page précédente"; -App::$strings["Sort options"] = "Options de tri"; -App::$strings["Alphabetic"] = "Alphabétique"; -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["Xchan Lookup"] = "Recherche xchan"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\") :"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures."; -App::$strings["Ignore/Hide"] = "Ignorer/Cacher"; -App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; -App::$strings["Post successful."] = "Publication réussie."; -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"] = "message"; -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["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"] = "Statistiques"; -App::$strings["Software"] = "Logiciel"; -App::$strings["Rate"] = "Evaluer"; -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["Select a bookmark folder"] = "Choisir un dossier de favoris"; -App::$strings["Save Bookmark"] = "Enregistrer le favori"; -App::$strings["URL of bookmark"] = "URL du favori"; -App::$strings["Or enter new bookmark folder name"] = "Ou entrez un nouveau nom de dossier de favoris"; -App::$strings["Enter a folder name"] = "Saisissez un nom de dossier"; -App::$strings["or select an existing folder (doubleclick)"] = "ou sélectionnez un dossier existant (double-clic)"; -App::$strings["Save to Folder"] = "Enregistrer dans le dossier"; -App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué."; -App::$strings["Passwords do not match."] = "Les mots de passe ne concordent pas."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Enregistrement réussi. Continuez à créer votre premier canal ..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."; -App::$strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente d'approbation par l'administrateur."; -App::$strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée."; -App::$strings["Registration on this hub is disabled."] = "La création de nouveaux comptes est désactivée pour ce site."; -App::$strings["Registration on this hub is by approval only."] = "La création de compte sur ce site est soumise à approbation."; -App::$strings["Register at another affiliated hub."] = "S'enregistrer sur un autre site du réseau."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain."; -App::$strings["I accept the %s for this website"] = "J'accepte les %s de ce site"; -App::$strings["I am over %s years of age and accept the %s for this website"] = "J'ai plus de %s ans et j'accepte les %s de ce site."; -App::$strings["Your email address"] = "Votre adresse de courriel"; -App::$strings["Choose a password"] = "Choisissez un mot de passe"; -App::$strings["Please re-enter your password"] = "Merci de saisir à nouveau votre mot de passe"; -App::$strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation"; -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 requires email verification. After completing this form, please check your email for further instructions."] = "Ce site nécessite une vérification par courriel. Après avoir rempli ce formulaire, veuillez consulter votre courriel pour obtenir des instructions supplémentaires."; -App::$strings["Cover Photos"] = "Photos de couverture"; -App::$strings["female"] = "femme"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s a mis à jour son %2\$s"; -App::$strings["male"] = "homme"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s a mis à jour son %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s a mis a jour sa %2\$s"; -App::$strings["cover photo"] = "Photo principale"; -App::$strings["Change Cover Photo"] = "Changer la photo de couverture"; -App::$strings["Documentation Search"] = "Chercher dans la documentation"; -App::$strings["About"] = "À propos"; -App::$strings["Administrators"] = "Administrateurs"; -App::$strings["Developers"] = "Développeurs"; -App::$strings["Tutorials"] = "Tutoriels"; -App::$strings["\$Projectname Documentation"] = "Documentation \$Projectname"; -App::$strings["Contents"] = "Contenus"; -App::$strings["Article"] = "Article"; -App::$strings["Item has been removed."] = "L'élément a été supprimé."; -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["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 de contacts vide"; -App::$strings["Privacy group: "] = "Groupe de contacts :"; -App::$strings["Invalid connection."] = "Contact non valide."; -App::$strings["Invalid channel."] = "Canal invalide."; -App::$strings["network"] = "réseau"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenue sur %s"; -App::$strings["Permission Denied."] = "Accès refusé."; -App::$strings["File not found."] = "Fichier introuvable."; -App::$strings["Edit file permissions"] = "Modifier les droits d'accès au fichier"; -App::$strings["Set/edit permissions"] = "Définir/modifier les droits d'accès"; -App::$strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires"; -App::$strings["Return to file list"] = "Retourner à la liste des fichiers"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web"; -App::$strings["Share this file"] = "Partager ce fichier"; -App::$strings["Show URL to this file"] = "Montrer l'URL de ce fichier"; -App::$strings["Show in your contacts shared folder"] = "Faire apparaître dans le dossier partagé de vos contacts"; -App::$strings["No channel."] = "Pas de canal."; -App::$strings["No connections in common."] = "Pas de contact en commun."; -App::$strings["View Common Connections"] = "Voir les connexions communes"; -App::$strings["Email verification resent"] = "Vérification de courriel renvoyé"; -App::$strings["Unable to resend email verification message."] = "Impossible de renvoyer le courriel de vérification."; -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["Blocked accounts"] = "Comptes bloqués"; -App::$strings["Expired accounts"] = "Comptes expirés"; -App::$strings["Expiring accounts"] = "Comptes arrivant à expiration"; -App::$strings["Clones"] = "Clones"; -App::$strings["Message queues"] = "File des messages"; -App::$strings["Your software should be updated"] = "Votre logiciel doit d'être mis à jour"; -App::$strings["Summary"] = "Résumé"; -App::$strings["Registered accounts"] = "Comptes enregistrés"; -App::$strings["Pending registrations"] = "Inscriptions en attente"; -App::$strings["Registered channels"] = "Canaux enregistrés"; -App::$strings["Active plugins"] = "Greffons actifs"; -App::$strings["Version"] = "Version"; -App::$strings["Repository version (master)"] = "Version du dépôt (maître)"; -App::$strings["Repository version (dev)"] = "Version du dépôt (développeur)"; -App::$strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée."; -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["Edit Card"] = "Modifier la carte"; -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["Mark all seen"] = "Tout marquer comme vu"; -App::$strings["0. Beginner/Basic"] = "0. Débutant/Simple"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novice - pas expérimenté, mais prêt à apprendre"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermédiaire - assez à l'aise"; -App::$strings["3. Advanced - very comfortable"] = "3. Avancé - très à l'aise"; -App::$strings["4. Expert - I can write computer code"] = "4. Expert - Je sais programmer"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Crack - J'en sais probablement plus que vous"; -App::$strings["Site Admin"] = "Administrateur"; -App::$strings["Report Bug"] = "Reporter des bogues"; -App::$strings["View Bookmarks"] = "Voir les marques-pages"; -App::$strings["My Chatrooms"] = "Mes salons de discussions"; -App::$strings["Firefox Share"] = "Partager via Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnostiques à distance"; -App::$strings["Suggest Channels"] = "Suggérer des canaux"; -App::$strings["Login"] = "Connexion"; -App::$strings["Activity"] = "Activité"; -App::$strings["Wiki"] = "Wiki"; -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["Language"] = "Langue"; -App::$strings["Post"] = "Envoyer"; -App::$strings["Profile Photo"] = "Photo du Profil"; -App::$strings["Purchase"] = "Acheter"; -App::$strings["Undelete"] = "Restaurer"; -App::$strings["Add to app-tray"] = "Ajouter au menu des applications"; -App::$strings["Remove from app-tray"] = "Enlever du menu des applications"; -App::$strings["Pin to navbar"] = "Épingler à la barre de navigation"; -App::$strings["Unpin from navbar"] = "Détacher de la barre de navigation"; -App::$strings["__ctx:permcat__ default"] = "défaut"; -App::$strings["__ctx:permcat__ follower"] = "abonné"; -App::$strings["__ctx:permcat__ contributor"] = "contributeur"; -App::$strings["__ctx:permcat__ publisher"] = "rédacteur"; -App::$strings["(No Title)"] = "(Pas de titre)"; -App::$strings["Wiki page create failed."] = "Échec de création de la page wiki."; -App::$strings["Wiki not found."] = "Wiki introuvable."; -App::$strings["Destination name already exists"] = "Ce nom de destination est déjà pris"; -App::$strings["Page not found"] = "Page introuvable"; -App::$strings["Error reading page content"] = "Erreur de lecture du contenu de la page"; -App::$strings["Error reading wiki"] = "Erreur de lecture du wiki"; -App::$strings["Page update failed."] = "Echec de modification de la page."; -App::$strings["Nothing deleted"] = "Rien n'a été supprimé"; -App::$strings["Compare: object not found."] = "Comparaison : objet introuvable."; -App::$strings["Page updated"] = "Page modifiée"; -App::$strings["Untitled"] = "Sans titre"; -App::$strings["Wiki resource_id required for git commit"] = "\"resource_id\" du wiki nécessaire pour l'enregistrement dans git."; -App::$strings["__ctx:wiki_history__ Message"] = "Message"; -App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs"; -App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement"; -App::$strings["Only me"] = "Seulement moi"; -App::$strings["Public"] = "Public"; -App::$strings["Anybody in the \$Projectname network"] = "N'importe qui dans le réseau de \$Projectname"; -App::$strings["Any account on %s"] = "N'importe quel compte sur %s"; -App::$strings["Any of my connections"] = "N'importe lequel de mes contacts"; -App::$strings["Only connections I specifically allow"] = "Uniquement les contacts que j'ai expressément autorisés"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "N'importe qui d'authentifié (cela peut inclure des visiteurs d'autres réseaux)"; -App::$strings["Any connections including those who haven't yet been approved"] = "N'importe quel contact, y compris ceux qui n'ont pas encore été validés"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Ceci est votre réglage par défaut de l'audience de vos publications sur votre canal normal."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Ceci est votre réglage par défaut à propos de qui peut voir votre canal de profil par défaut."; -App::$strings["This is your default setting for who can view your connections"] = "Ceci est votre réglage par défaut à propos de qui peut voir vos contacts."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Ceci est votre réglage par défaut à propos de qui peut voir vos fichiers ou photos stocké(e)s"; -App::$strings["This is your default setting for the audience of your webpages"] = "Ceci est votre réglage par défaut de l'audience de vos pages web."; -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."; -App::$strings["Room not found."] = "Salon introuvable."; -App::$strings["Room is full"] = "Le salon est plein"; -App::$strings["\$Projectname Notification"] = "Notification \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Merci,"; -App::$strings["%s Administrator"] = "l'administrateur de %s"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "Cet courriel a été envoyé par %1\$s à %2\$s."; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Pour ne plus recevoir ces messages, veuillez ajuster vos paramètres de notification à %s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "Pour ne plus recevoir ces messages, veuillez ajuster votre %s."; -App::$strings["%s "] = "%s "; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Nouveau mail reçu sur %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé à %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; -App::$strings["a private message"] = "un message privé"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés."; -App::$strings["commented on"] = "commenté"; -App::$strings["liked"] = "aimé"; -App::$strings["disliked"] = "pas aimé"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s de %5\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]votre %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notification] Commentaire modéré pour la conversation n°%1\$d par %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Commentaire effectué sur la conversation #%1\$d par %2\$s"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sa commenté un élément ou une conversation que vous suivez."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation."; -App::$strings["Please visit %s to approve or reject this comment."] = "Merci de visiter %spour valider ou rejeter ce commentaire."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s aime [zrl=%2\$s]votre %3\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Aime reçu à la convesation #%1\$d par %2\$s"; -App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sa commenté un élément ou une conversation que vous avez créée "; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s a publié sur le mur de votre profil"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a posté sur le mur de votre profil à %2\$s"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s envoyé à [zrl=%2\$s]votre mur[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %s vous a étiquetté"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté à %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]vous a étiqueté[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s vous a poké"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$s vous a tapoté à %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]vous a tapoté[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s a étiquetté votre publication"; -App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre message à %2\$s"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s a étiqueté [zrl=%2\$s]votre message[/zrl]"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Demande de relation reçue"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Vous avez reçu une nouvelle demande de connexion de la part de '%1\$s' à %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Vous avez reçu [zrl=%1\$s]une nouvelle demande de connexion[/zrl] de la part de %2\$s."; -App::$strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Merci de visiter %s pour valider (ou non) cette demande de contact."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Suggestion d'amitié reçue"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion d'ami de la part de '%1\$s' à %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Vous avez reçu [zrl=%1\$s]une suggestion d'ami[/zrl] pour %2\$s de %3\$s."; -App::$strings["Name:"] = "Nom :"; -App::$strings["Photo:"] = "Photo :"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour valider ou rejeter cette suggestion."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname: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["edited a post dated %s"] = "a édité un post daté du %s"; -App::$strings["edited a comment dated %s"] = "a édité un commentaire daté du %s"; -App::$strings["Wiki updated successfully"] = "Wiki mis à jour avec succès"; -App::$strings["Wiki files deleted successfully"] = "Fichiers du wiki supprimés avec succès"; -App::$strings["Update Error at %s"] = "Erreur de mise à jour sur %s"; -App::$strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."; -App::$strings["Private Message"] = "Message Privé"; -App::$strings["Select"] = "Sélectionner"; -App::$strings["I will attend"] = "Je participerai"; -App::$strings["I will not attend"] = "Je ne participerai pas"; -App::$strings["I might attend"] = "Je participerai peut-être"; -App::$strings["I agree"] = "Je suis d'accord"; -App::$strings["I disagree"] = "Je ne suis pas d'accord"; -App::$strings["I abstain"] = "Je m'abstiens"; -App::$strings["Add Star"] = "Mettre de côté (étoile)"; -App::$strings["Remove Star"] = "Ne plus mettre de côté"; -App::$strings["Toggle Star Status"] = "(Dés)activer l'étoile"; -App::$strings["starred"] = "mis de côté"; -App::$strings["Message signature validated"] = "Signature du message validée"; -App::$strings["Message signature incorrect"] = "Signature du message incorrecte"; -App::$strings["Add Tag"] = "Ajouter une étiquette"; -App::$strings["like"] = "aiment"; -App::$strings["dislike"] = "n'aiment pas"; -App::$strings["Share This"] = "Partager"; -App::$strings["share"] = "partager"; -App::$strings["Delivery Report"] = "Rapport de distribution"; -App::$strings["%d comment"] = array( - 0 => "%d commentaire", - 1 => "%d commentaires", -); -App::$strings["View %s's profile - %s"] = "Voir le profil de %s - %s"; -App::$strings["to"] = "à"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Mur-à-mur"; -App::$strings["via Wall-To-Wall:"] = "par Mur-à-mur :"; -App::$strings["from %s"] = "de %s"; -App::$strings["last edited: %s"] = "dernière modification : %s"; -App::$strings["Expires: %s"] = "Expire : %s"; -App::$strings["Attend"] = "En attente"; -App::$strings["Attendance Options"] = "Options d'attente"; -App::$strings["Vote"] = "Vote"; -App::$strings["Voting Options"] = "Options de vote"; -App::$strings["Save Bookmarks"] = "Enregistrer les favoris"; -App::$strings["Add to Calendar"] = "Ajouter au Calendrier"; -App::$strings["This is an unsaved preview"] = "Il s'agit d'une prévisualisation non sauvegardée."; -App::$strings["%s show all"] = "%s montre tout"; -App::$strings["Bold"] = "Gras"; -App::$strings["Italic"] = "Italique"; -App::$strings["Underline"] = "Souligné"; -App::$strings["Quote"] = "Citation"; -App::$strings["Code"] = "Code"; -App::$strings["Image"] = "Image"; -App::$strings["Attach File"] = "Joindre fichier"; -App::$strings["Insert Link"] = "Insérer un lien"; -App::$strings["Video"] = "Vidéo"; -App::$strings["Your full name (required)"] = "Votre nom complet (obligatoire)"; -App::$strings["Your email address (required)"] = "Votre adresse de courriel (obligatoire)"; -App::$strings["Your website URL (optional)"] = "L'adresse de votre site web (optionelle)"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer."; -App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné."; -App::$strings["parent"] = "retour"; -App::$strings["Collection"] = "Groupe de contacts"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Carnet d'adresse"; -App::$strings["Calendar"] = "Calendrier"; -App::$strings["Schedule Inbox"] = "Calendrier - Messages entrants"; -App::$strings["Schedule Outbox"] = "Calendrier - Messages sortants"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Partagé"; -App::$strings["Add Files"] = "Ajouter des fichiers"; -App::$strings["You are using %1\$s of your available file storage."] = "Vous utilisez %1\$s de votre espace de stockage."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Vous utilisez %1\$s sur %2\$s d'espace disponible. (%3\$s%)"; -App::$strings["WARNING:"] = "AVERTISSEMENT :"; -App::$strings["Create new folder"] = "Nouveau dossier"; -App::$strings["Upload file"] = "Téléverser un fichier"; -App::$strings["Drop files here to immediately upload"] = "Mettez un fichier ici pour le télécharger immédiatement"; -App::$strings["Forums"] = "Forums"; -App::$strings["Select Channel"] = "Sélectionner un canal"; -App::$strings["Read-write"] = "Lire et écrire"; -App::$strings["Read-only"] = "Lire uniquement"; -App::$strings["My Calendars"] = "Mes agendas"; -App::$strings["Shared Calendars"] = "Agendas partagés"; -App::$strings["Share this calendar"] = "Partager cet agenda"; -App::$strings["Calendar name and color"] = "Nom et couleur de l'agenda"; -App::$strings["Create new calendar"] = "Créer un nouvel agenda"; -App::$strings["Calendar Name"] = "Nom de l'agenda"; -App::$strings["Calendar Tools"] = "Outils pour les agendas"; -App::$strings["Import calendar"] = "Importer un agenda"; -App::$strings["Select a calendar to import to"] = "Sélectionner un agenda à importer dans"; -App::$strings["Addressbooks"] = "Carnet d'adresses"; -App::$strings["Addressbook name"] = "Nom du carnet d'adresses"; -App::$strings["Create new addressbook"] = "Créer un nouveau carnet d'adresses"; -App::$strings["Addressbook Name"] = "Nom du carnet d'adresses"; -App::$strings["Addressbook Tools"] = "Outils pour les carnets d'adresses"; -App::$strings["Import addressbook"] = "Importer un carnet d'adresses"; -App::$strings["Select an addressbook to import to"] = "Sélectionner un carnet d'adresses à importer dans"; -App::$strings["Categories"] = "Catégories"; -App::$strings["Everything"] = "Tout"; -App::$strings["Events Tools"] = "Outils Evènements"; -App::$strings["Export Calendar"] = "Exporter le calendrier"; -App::$strings["Import Calendar"] = "Importer un calendrier"; -App::$strings["Suggested Chatrooms"] = "Salons suggérés"; -App::$strings["HQ Control Panel"] = "Panneau de contrôle du QG"; -App::$strings["Create a new post"] = "Créer un nouveau post"; -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["Chatrooms"] = "Salons de clavardage"; -App::$strings["Overview"] = "Aperçu"; -App::$strings["Rating Tools"] = "Outils d'évaluation"; -App::$strings["Rate Me"] = "M'évaluer"; -App::$strings["View Ratings"] = "Voir mes évaluations"; -App::$strings["__ctx:widget__ Activity"] = "Activité"; -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["Wiki List"] = "Liste de wikis"; -App::$strings["Archives"] = "Archives"; -App::$strings["Received Messages"] = "Messages reçus"; -App::$strings["Sent Messages"] = "Messages envoyés"; -App::$strings["Conversations"] = "Conversations"; -App::$strings["No messages."] = "Pas de message."; -App::$strings["Delete conversation"] = "Supprimer la conversation"; -App::$strings["Chat Members"] = "Membres du salon de discussion"; -App::$strings["photo/image"] = "photo/image"; -App::$strings["Remove term"] = "Retirer le terme"; -App::$strings["Saved Searches"] = "Recherches sauvegardées"; -App::$strings["add"] = "ajouter"; -App::$strings["Notes"] = "Notes"; -App::$strings["Add new page"] = "Ajouter une nouvelle page"; -App::$strings["Wiki Pages"] = "Pages wiki"; -App::$strings["Page name"] = "Nom de la page"; -App::$strings["Refresh"] = "Actualiser"; -App::$strings["Tasks"] = "Tâches"; -App::$strings["Suggestions"] = "Suggestions"; -App::$strings["See more..."] = "Voir plus..."; -App::$strings["Saved Folders"] = "Dossiers sauvegardés"; -App::$strings["Click to show more"] = "Cliquer pour voir plus"; -App::$strings["Tags"] = "Étiquettes"; -App::$strings["Profile Creation"] = "Création de profil"; -App::$strings["Upload profile photo"] = "Téléverser la photo du profil"; -App::$strings["Upload cover photo"] = "Téléverser la photo de couverture"; -App::$strings["Edit your profile"] = "Modifier votre profil"; -App::$strings["Find and Connect with others"] = "Trouver et connecter avec des autres personnes"; -App::$strings["View the directory"] = "Voir l'annuaire"; -App::$strings["Manage your connections"] = "Gérez vos connexions"; -App::$strings["Communicate"] = "Communiquer"; -App::$strings["View your channel homepage"] = "Voir la page d'accueil de votre canal"; -App::$strings["View your network stream"] = "Visualisez votre flux réseau"; -App::$strings["Documentation"] = "Documentation"; -App::$strings["View public stream"] = "Voir le flux public"; -App::$strings["New Member Links"] = "Liens pour les nouveaux membres"; -App::$strings["Member registrations waiting for confirmation"] = "Inscriptions en attente d'approbation"; -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["Account settings"] = "Paramètres du compte"; -App::$strings["Channel settings"] = "Paramètres du canal"; -App::$strings["Additional features"] = "Fonctionnalités supplémentaires"; -App::$strings["Addon settings"] = "Paramètres de greffon"; -App::$strings["Display settings"] = "Paramètres d'affichage"; -App::$strings["Manage locations"] = "Gérer les emplacements"; -App::$strings["Export channel"] = "Exporter le canal"; -App::$strings["OAuth1 apps"] = "OAuth1 applications"; -App::$strings["OAuth2 apps"] = "OAuth2 applications"; -App::$strings["Permission Groups"] = "Groupes d'accès"; -App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP"; -App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; -App::$strings["New Network Activity"] = "Nouvelle activité de réseau"; -App::$strings["New Network Activity Notifications"] = "Nouvelles notifications d'activité de réseau"; -App::$strings["View your network activity"] = "Visualiser l'activité de votre réseau"; -App::$strings["Mark all notifications read"] = "Marquer tous les notifications lus"; -App::$strings["Show new posts only"] = "Afficher uniquement les nouveaux posts"; -App::$strings["Filter by name"] = "Filtrer par nom"; -App::$strings["New Home Activity"] = "Nouvelle activité principale"; -App::$strings["New Home Activity Notifications"] = "Notifications de nouvelles activités principales"; -App::$strings["View your home activity"] = "Voir votre activité principale"; -App::$strings["Mark all notifications seen"] = "Marquer les notifications vues"; -App::$strings["New Mails"] = "Nouveaux courriels"; -App::$strings["New Mails Notifications"] = "Notifications de nouveaux courriels"; -App::$strings["View your private mails"] = "Consulter vos courriels privés"; -App::$strings["Mark all messages seen"] = "Marquer tous les messages vus"; -App::$strings["New Events"] = "Nouveaux événements"; -App::$strings["New Events Notifications"] = "Notifications de nouveaux événements"; -App::$strings["View events"] = "Voir les événements"; -App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus"; -App::$strings["New Connections Notifications"] = "Notifications de nouvelles connexions"; -App::$strings["View all connections"] = "Voir toutes les connexions"; -App::$strings["New Files"] = "Nouveaux fichiers"; -App::$strings["New Files Notifications"] = "Notifications de nouveaux fichiers"; -App::$strings["Notices"] = "Notifications"; -App::$strings["View all notices"] = "Voir tous les avis"; -App::$strings["Mark all notices seen"] = "Marquer tous les avis vus"; -App::$strings["New Registrations"] = "Nouvelles inscriptions"; -App::$strings["New Registrations Notifications"] = "Notifications de nouveaux inscriptions"; -App::$strings["Public Stream Notifications"] = "Notifications de flux publics"; -App::$strings["View the public stream"] = "Voir le flux public"; -App::$strings["Sorry, you have got no notifications at the moment"] = "Désolé, vous n'avez pas de notifications pour le moment."; -App::$strings["Source channel not found."] = "Source du canal introuvable."; -App::$strings["Create an account to access services and applications"] = "Créer un compte pour accéder aux services et applications"; -App::$strings["Logout"] = "Déconnexion"; -App::$strings["Login/Email"] = "pseudo / email"; -App::$strings["Password"] = "Mot de passe"; -App::$strings["Remember me"] = "Se souvenir de moi"; -App::$strings["Forgot your password?"] = "Mot de passe oublié ?"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] erreur SSL du site web pour %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Le certificat SSL n'est pas valide. Corrigez le."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Tâches Cron inactives sur %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Les taches planifiées ne tournent pas."; -App::$strings["never"] = "jamais"; -App::$strings["Cover Photo"] = "Photo de couverture"; -App::$strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)"; -App::$strings["Theme settings"] = "Paramètres du thème"; -App::$strings["Narrow navbar"] = "Barre de navigation fine"; -App::$strings["Navigation bar background color"] = "Couleur de fond de la barre de navigation"; -App::$strings["Navigation bar icon color "] = "Couleur des icônes de la barre de navigation"; -App::$strings["Navigation bar active icon color "] = "Couleur de l'icône active de la barre de navigation"; -App::$strings["Link color"] = "Couleur des liens"; -App::$strings["Set font-color for banner"] = "Définir la couleur du texte de la bannière"; -App::$strings["Set the background color"] = "Définir la couleur d'arrière-plan"; -App::$strings["Set the background image"] = "Définir l'image d'arrière-plan"; -App::$strings["Set the background color of items"] = "Définir la couleur de fond des contributions"; -App::$strings["Set the background color of comments"] = "Couleur de fond des commentaires"; -App::$strings["Set font-size for the entire application"] = "Définir la taille de police pour l'application entière"; -App::$strings["Examples: 1rem, 100%, 16px"] = "Exemples : 1rem, 100%, 16px"; -App::$strings["Set font-color for posts and comments"] = "Définir la couleur de police pour les contributions et commentaires"; -App::$strings["Set radius of corners"] = "Définir le rayon des arrondis"; -App::$strings["Example: 4px"] = "Exemple : 4px"; -App::$strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos"; -App::$strings["Set maximum width of content region in pixel"] = "Définir la largeur maximale de la zone des contenus"; -App::$strings["Leave empty for default width"] = "Laissez vide pour avoir la largeur par défaut"; -App::$strings["Left align page content"] = "Aligner à gauche le contenu de la page"; -App::$strings["Set size of conversation author photo"] = "Définir la taille de la photo de l'auteur d'une conversation"; -App::$strings["Set size of followup author photos"] = "Définir la taille de la photo de l'auteur d'une réponse"; -App::$strings["Errors encountered deleting database table "] = "Des erreurs ont eu lieu lors de la suppression de la table de la base de données."; -App::$strings["Submit Settings"] = "Emvoyer les paramètres"; -App::$strings["Drop tables when uninstalling?"] = "Lors de la désinstallation, purger les tables?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Si cette case est cochée, les tables de la base Rendezvous seront supprimées lorsque le plugin sera désinstallé."; -App::$strings["Mapbox Access Token"] = "Jeton d'accès à la mapbox."; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Si vous entrez un jeton d'accès Mapbox, il doit être utilisé pour récupérer les cartes à partir de Mapbox au lieu du serveur par défaut OpenStreetMap."; -App::$strings["Rendezvous"] = "Rendezvous"; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Cette identité a été supprimée par un autre membre en raison de l'inactivité. Appuyez sur le bouton \"Nouvelle identité\" ou actualisez la page pour enregistrer une nouvelle identité. Vous pouvez utiliser le même nom."; -App::$strings["Welcome to Rendezvous!"] = "Bienvenue dans Rendevzvous!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Entrez votre nom pour rejoindre ce rendez-vous. Pour commencer à partager votre emplacement avec les autres membres, appuyez sur le contrôle GPS. Lorsque votre emplacement est découvert, un point rouge apparaîtra et les autres seront en mesure de vous voir sur la carte."; -App::$strings["Let's meet here"] = "Rencontrez-vous ici"; -App::$strings["New marker"] = "Nouveau marqueur"; -App::$strings["Edit marker"] = "Éditer le marqueur"; -App::$strings["New identity"] = "Nouvelle identité"; -App::$strings["Delete marker"] = "Supprimer le marqueur"; -App::$strings["Delete member"] = "Supprimer le membre"; -App::$strings["Edit proximity alert"] = "Éditer l'alerte de proximité"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Une alerte de proximité sera émise lorsque ce membre se trouve dans un certain périmètre autour de vous. Entrer un rayon en mètres (0 pour désactiver):"; -App::$strings["distance"] = "distance"; -App::$strings["Proximity alert distance (meters)"] = "Distance d'alerte de proximité (mètres)"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Une alerte de proximité sera déclenchée quand vous serez à une certaine distance du marqueur d'emplacement.

Indiquez une distance en mètres (0 pour désactiver) :"; -App::$strings["Marker proximity alert"] = "Alerte de proximité de marqueur"; -App::$strings["Reminder note"] = "Note de rappel"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Saisissez une note à afficher quand vous serez à la distance indiquée..."; -App::$strings["Add new rendezvous"] = "Ajouter un nouveau rendezvous"; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Créez un nouveau rendez-vous et partagez le lien d'accès avec les gens que vous souhaitez inviter au groupe. Ceux qui ouvrent le lien deviennent membres du rendez-vous. Ils peuvent afficher les emplacements des autres membres, ajouter des marqueurs à la carte ou partager leurs propres emplacements avec le groupe."; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Vous n'avez pas de rendez-vous. Appuyez sur le bouton ci-dessus pour créer un rendez-vous !"; -App::$strings["Some setting"] = "Un certain paramètre"; -App::$strings["A setting"] = "Un paramètre"; -App::$strings["Skeleton Settings"] = "Paramètres du squelette"; -App::$strings["GNU-Social Protocol Settings updated."] = "Paramètres du protocol GNU-Social mis à jour."; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Le protocole GNU-Social ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal."; -App::$strings["Enable the GNU-Social protocol for this channel"] = "Activer le protocole GNU-Social pour ce canal"; -App::$strings["GNU-Social Protocol Settings"] = "Paramètres du protocol GNU-Social"; -App::$strings["Follow"] = "S'abonner"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s est maintenant abonné à %2\$s"; -App::$strings["Planets Settings updated."] = "Paramètres Planets mis à jour."; -App::$strings["Enable Planets Plugin"] = "Activer le plugin Planets"; -App::$strings["Planets Settings"] = "Paramètres Planets"; -App::$strings["System defaults:"] = "Paramètres par défaut du système :"; -App::$strings["Preferred Clipart IDs"] = "ID Clipart préférées"; -App::$strings["List of preferred clipart ids. These will be shown first."] = "Liste des ids clipart préférése. Celles-ci seront montrées en premier."; -App::$strings["Default Search Term"] = "Terme de recherche par défaut"; -App::$strings["The default search term. These will be shown second."] = "Le terme de recherche par défaut. Ceci sera affiché en second."; -App::$strings["Return After"] = "Retourner ensuite"; -App::$strings["Page to load after image selection."] = "Page à afficher après la sélection de l'image."; -App::$strings["Edit Profile"] = "Éditeur de profil"; -App::$strings["Profile List"] = "Liste de profil"; -App::$strings["Order of Preferred"] = "Tri selon les préférences"; -App::$strings["Sort order of preferred clipart ids."] = "Ordre de tri des ids de clipart préférés."; -App::$strings["Newest first"] = "Les plus récents en premier"; -App::$strings["As entered"] = "Comme entrés"; -App::$strings["Order of other"] = "Tri selon autre"; -App::$strings["Sort order of other clipart ids."] = "Ordre de tri des autres clipart ids."; -App::$strings["Most downloaded first"] = "Les plus téléchargés en premier"; -App::$strings["Most liked first"] = "Les plus aimés en premier"; -App::$strings["Preferred IDs Message"] = "IDs des messages préférés"; -App::$strings["Message to display above preferred results."] = "Message à afficher au-dessus de la liste des résultats préférés."; -App::$strings["Uploaded by: "] = "Téléversé par :"; -App::$strings["Drawn by: "] = "Dessiné par :"; -App::$strings["Use this image"] = "Utiliser cette image"; -App::$strings["Or select from a free OpenClipart.org image:"] = "ou sélectionner une image libre d'OpenClipart.org :"; -App::$strings["Search Term"] = "Terme de recherche"; -App::$strings["Unknown error. Please try again later."] = "Erreur inconnue. Veuillez essayer à nouveau plus tard."; -App::$strings["Profile photo updated successfully."] = "Photo de profil actualisée avec succès."; -App::$strings["Flag Adult Photos"] = "Photo pour adulte"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Fourni l'option d'édition d'une photo afin de cacher des photos inappropriées de la vue d''album par défaut"; -App::$strings["Post to WordPress"] = "Publier sur Wordpress"; -App::$strings["Enable WordPress Post Plugin"] = "Activer l'extension de publication WordPress"; -App::$strings["WordPress username"] = "Identifiant de connexion WordPress"; -App::$strings["WordPress password"] = "Mot de passe de connexion WordPress"; -App::$strings["WordPress API URL"] = "URL de l'API WordPress"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Typiquement https://your-blog.tld/xmlrpc.php"; -App::$strings["WordPress blogid"] = "ID de votre blog WordPress"; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Pour les sites multi-utilisateurs comme wordpress.com, sinon laisser vide"; -App::$strings["Post to WordPress by default"] = "Par défaut, publier sur WordPress"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Transférer les commentaires (nécessite le plugin hubzila_wp)"; -App::$strings["WordPress Post Settings"] = "Paramètres de publications WordPress"; -App::$strings["Wordpress Settings saved."] = "Les paramètres WordPress ont été sauvegardés."; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Ce plugin cherche dans les publications les mots/textes que vous spécifiez ci-dessous, et réduit tout contenu contenant ces mots-clés afin qu'ils ne s'affichent pas à des moments inappropriés, tels que les insinuations sexuelles qui peuvent être inappropriées dans un contexte de travail. Il est poli et recommandé de marquer tout contenu contenant de la nudité avec #NSFW. Ce filtre peut également correspondre à tout autre mot/texte que vous spécifiez et peut ainsi être utilisé comme un filtre de contenu à usage général."; -App::$strings["Enable Content filter"] = "Activer le filtrage des contenus"; -App::$strings["Comma separated list of keywords to hide"] = "Liste séparée par des virgules des mots-clés à cacher"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Mot, /expression-régulière/, lang=xx, lang!=xx"; -App::$strings["Not Safe For Work Settings"] = "Paramètres NSFW (Not Safe For Work)"; -App::$strings["General Purpose Content Filter"] = "Filtre de contenu sujet général"; -App::$strings["NSFW Settings saved."] = "Paramètres NSFW sauvegardés."; -App::$strings["Possible adult content"] = "Contenu pour adulte probable"; -App::$strings["%s - view"] = "%s - vue"; -App::$strings["Post to Insanejournal"] = "Publier sur InsaneJournal"; -App::$strings["Enable InsaneJournal Post Plugin"] = "Activer le plugin de publication InsaneJournal"; -App::$strings["InsaneJournal username"] = "Identifiant InsaneJournal"; -App::$strings["InsaneJournal password"] = "Mot de passe InsaneJournal"; -App::$strings["Post to InsaneJournal by default"] = "Par défaut, publier dans InsaneJournal"; -App::$strings["InsaneJournal Post Settings"] = "Paramètres de publication de InsaneJournal"; -App::$strings["Insane Journal Settings saved."] = "Les paramètres d'InsaneJournal ont été sauvegardés"; -App::$strings["Post to Dreamwidth"] = "Publier sur Dreamwidth"; -App::$strings["Enable Dreamwidth Post Plugin"] = "Activer le plugin de publication Dreamwidth"; -App::$strings["Dreamwidth username"] = "Nom d'utilisateur Dreamwidth"; -App::$strings["Dreamwidth password"] = "Mot de passe Dreamwidth"; -App::$strings["Post to Dreamwidth by default"] = "Publication avec Dreamwidth par défaut"; -App::$strings["Dreamwidth Post Settings"] = "Paramètres de publication Dreamwidth"; -App::$strings["New registration"] = "Nouvelle inscription"; -App::$strings["Message sent to %s. New account registration: %s"] = "Message envoyé à %s. %sEnregistrement d'un nouveau compte : "; -App::$strings["Hubzilla Directory Stats"] = "Statistiques de l'annuaire Hubzilla"; -App::$strings["Total Hubs"] = "Total de Hubs"; -App::$strings["Hubzilla Hubs"] = "Hubs Hubzilla"; -App::$strings["Friendica Hubs"] = "Hubs Friendica"; -App::$strings["Diaspora Pods"] = "Pods Diaspora"; -App::$strings["Hubzilla Channels"] = "Canaux Hubzilla"; -App::$strings["Friendica Channels"] = "Canaux Friendica"; -App::$strings["Diaspora Channels"] = "Canaux Diaspora"; -App::$strings["Aged 35 and above"] = "Âgé de 35 ans et plus"; -App::$strings["Aged 34 and under"] = "Âgé de 34 et moins"; -App::$strings["Average Age"] = "Âge moyen"; -App::$strings["Known Chatrooms"] = "Salons de discussion connus"; -App::$strings["Known Tags"] = "Étiquettes connues"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Veuillez noter que les statistiques de Diaspora et Friendica sont simplement celles dont **ce répertoire** est au courant, et pas toutes celles connues dans le réseau. Cela s'applique également aux salles de discussion,"; -App::$strings["Your Webbie:"] = "Vous êtes Webbie :"; -App::$strings["Fontsize (px):"] = "Taille de la police (px) :"; -App::$strings["Link:"] = "Lien :"; -App::$strings["Like us on Hubzilla"] = "Aimez-nous sur Hubzilla"; -App::$strings["Embed:"] = "Embarqué :"; -App::$strings["Photos imported"] = "Photos importées"; -App::$strings["Redmatrix Photo Album Import"] = "Import de l'album photo Redmatrix"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Ceci va importer l'intégralité de vos albums photos Redmatrix dans ce canal."; -App::$strings["Redmatrix Server base URL"] = "URL de base du serveur Redmatrix"; -App::$strings["Redmatrix Login Username"] = "Identifiant de connexion Redmatrix"; -App::$strings["Redmatrix Login Password"] = "Mot de passe de connexion Redmatrix"; -App::$strings["Import just this album"] = "Importer uniquement cet album"; -App::$strings["Leave blank to import all albums"] = "Laisser vide pour importer tous les albums"; -App::$strings["Maximum count to import"] = "Nombre maximum de comptes à importer"; -App::$strings["0 or blank to import all available"] = "0 ou vide pour importer tout ce qui est disponible"; -App::$strings["Channels to auto connect"] = "Canaux à connecter automatiqument"; -App::$strings["Comma separated list"] = "Liste séparée par des virgules"; -App::$strings["Popular Channels"] = "Canaux populaires"; -App::$strings["IRC Settings"] = "Paramètres IRC"; -App::$strings["IRC settings saved."] = "Paramètres IRC sauvegardés"; -App::$strings["IRC Chatroom"] = "Salon de discussion IRC"; -App::$strings["Post to LiveJournal"] = "Publier sur LiveJournal"; -App::$strings["Enable LiveJournal Post Plugin"] = "Activer le plugin de publication LiveJournal"; -App::$strings["LiveJournal username"] = "Identifiant LiveJournal"; -App::$strings["LiveJournal password"] = "Mot de passe LiveJournal"; -App::$strings["Post to LiveJournal by default"] = "Par défaut, publier sur LiveJournal"; -App::$strings["LiveJournal Post Settings"] = "Paramètres de publication LiveJournal"; -App::$strings["LiveJournal Settings saved."] = "Paramètres LiveJournal sauvegardés."; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontrons un problème lors de l'identification avec l'OpenID que vous avez fournie. Veuillez vérifier que vous avez correctement écrit votre ID."; -App::$strings["The error message was:"] = "Le message d'erreur était :"; -App::$strings["First Name"] = "Prénom"; -App::$strings["Last Name"] = "Nom"; -App::$strings["Nickname"] = "Surnom"; -App::$strings["Full Name"] = "Nom complet"; -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["Birth Year"] = "Années de naissance"; -App::$strings["Birth Month"] = "Mois de naissance"; -App::$strings["Birth Day"] = "Jour de naissance"; -App::$strings["Birthdate"] = "Date de naissance"; -App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Aucune ID trouvée."; -App::$strings["Login failed."] = "Échec de la connexion."; -App::$strings["Male"] = "Homme"; -App::$strings["Female"] = "Femme"; -App::$strings["You're welcome."] = "Bienvenue."; -App::$strings["Ah shucks..."] = "Ah m…"; -App::$strings["Don't mention it."] = "De rien."; -App::$strings["<blush>"] = "<rougit>"; -App::$strings["Page to load after login"] = "Page à charger après l'identification"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Exemples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (laisser vide pour la page par défaut du réseau (grille)."; -App::$strings["Startpage Settings"] = "Paramètres de la page de démarrage"; -App::$strings["bitchslap"] = "giffler"; -App::$strings["bitchslapped"] = "gifflé(e)"; -App::$strings["shag"] = "baiser"; -App::$strings["shagged"] = "baisé"; -App::$strings["patent"] = "breveté"; -App::$strings["patented"] = "être breveté"; -App::$strings["hug"] = "étreindre"; -App::$strings["hugged"] = "être étreint"; -App::$strings["murder"] = "assassiner"; -App::$strings["murdered"] = "être assassiné"; -App::$strings["worship"] = "vénérer"; -App::$strings["worshipped"] = "être vénéré"; -App::$strings["kiss"] = "embrasser"; -App::$strings["kissed"] = "embrassé"; -App::$strings["tempt"] = "tenter"; -App::$strings["tempted"] = "tenté"; -App::$strings["raise eyebrows at"] = "soulever les sourcils à la vue de"; -App::$strings["raised their eyebrows at"] = "sourcils soulevés à la vue de"; -App::$strings["insult"] = "insulter"; -App::$strings["insulted"] = "insulté"; -App::$strings["praise"] = "louer"; -App::$strings["praised"] = "loué"; -App::$strings["be dubious of"] = "douter de"; -App::$strings["was dubious of"] = "avoir douté de"; -App::$strings["eat"] = "manger"; -App::$strings["ate"] = "a mangé"; -App::$strings["giggle and fawn at"] = "séduire, charmer"; -App::$strings["giggled and fawned at"] = "séduit(e), charmé(e)"; -App::$strings["doubt"] = "doute"; -App::$strings["doubted"] = "a douté"; -App::$strings["glare"] = "jeter un regard"; -App::$strings["glared at"] = "a jeté un regard à "; -App::$strings["fuck"] = "baiser"; -App::$strings["fucked"] = "être baisé"; -App::$strings["bonk"] = "baiser"; -App::$strings["bonked"] = "baisé(e)"; -App::$strings["declare undying love for"] = "Déclarer un amour éternel pour"; -App::$strings["declared undying love for"] = "A déclaré l'amour éternel pour"; -App::$strings["Diaspora Protocol Settings updated."] = "Paramètres du protocole Diaspora mis à jour."; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Le protocole Diaspora ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal."; -App::$strings["Enable the Diaspora protocol for this channel"] = "Activer le protocole Diaspora pour ce canal"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permettre à tous les membres de Diaspora de commenter vos publications publiques"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Empêcher la redirection de vos mots-clés (hashtags) vers d'autres sites"; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signer et faire suivre les publications et commentaires n'ayant aucune signature Diaspora"; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Mots-clés suivis (séparer par une virgule, ne pas mettre le #)"; -App::$strings["Diaspora Protocol Settings"] = "Paramètres du protocole Diaspora"; -App::$strings["No username found in import file."] = "Pas de 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["Your account on %s will expire in a few days."] = "Votre compte sur %s expirera dans quelques jours."; -App::$strings["Your $Productname test account is about to expire."] = "Votre compte de test $NomDeProduit est sur le point d'expirer."; -App::$strings["Enable Rainbowtag"] = "Activer Rainbowtag"; -App::$strings["Rainbowtag Settings"] = "Paramètres Rainbowtag"; -App::$strings["Rainbowtag Settings saved."] = "Paramètres Rainbowtag sauvegardés."; -App::$strings["Show Upload Limits"] = "Afficher les limites de débit ascendant (upload)"; -App::$strings["Hubzilla configured maximum size: "] = "Taille maximale configurée par Hubzilla:"; -App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (must be larger than upload_max_filesize): "; -App::$strings["generic profile image"] = "image de profil générique"; -App::$strings["random geometric pattern"] = "motif géométrique aléatoire"; -App::$strings["monster face"] = "visage de monstre"; -App::$strings["computer generated face"] = "visage généré par ordinateur"; -App::$strings["retro arcade style face"] = "visage de style arcade rétro"; -App::$strings["Hub default profile photo"] = "Photo du profil par défaut du concentrateur"; -App::$strings["Information"] = "Information"; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Libravatar greffon est également installé. Veuillez désactiver le greffon Libravatar ou cet greffon Gravatar.
Le greffon Libravatar reviendra à Gravatar si rien n'a été trouvé à Libravatar."; -App::$strings["Save Settings"] = "Sauvegarder les paramètres"; -App::$strings["Default avatar image"] = "Image avatar par défaut"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Sélectionnez l'image d'avatar par défaut si aucune n'a été trouvée sur Gravatar. Voir README"; -App::$strings["Rating of images"] = "Evaluation des images"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Sélectionnez l'évaluation d'avatar appropriée pour votre site. Voir README"; -App::$strings["Gravatar settings updated."] = "Paramètres Gravatar mis à jour."; -App::$strings["Hubzilla File Storage Import"] = "Importation de fichiers de stockage Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Ceci importera tous vos fichiers cloud à partir d'un autre serveur."; -App::$strings["Hubzilla Server base URL"] = "URL de base du serveur Hubzilla"; -App::$strings["Since modified date yyyy-mm-dd"] = "Depuis la date modifiée aaaaa-mm-jjj"; -App::$strings["Until modified date yyyy-mm-dd"] = "Jusqu'à la date modifiée aaaaa-mm-jjj"; -App::$strings["Recent Channel/Profile Viewers"] = "Visiteurs récents du canal/profil"; -App::$strings["This plugin/addon has not been configured."] = "Cette extension n'a pas été configurée."; -App::$strings["Please visit the Visage settings on %s"] = "Veuillez visiter les paramètres de Visage sur %s"; -App::$strings["your feature settings page"] = "La page des paramètres de vos fonctionnalités"; -App::$strings["No entries."] = "Aucune entrée."; -App::$strings["Enable Visage Visitor Logging"] = "Activer la connexion Visage Visitor"; -App::$strings["Visage Settings"] = "Paramètres Visage"; -App::$strings["Nsabait Settings updated."] = "Les paramètres Nsabait ont été enregistrés."; -App::$strings["Enable NSAbait Plugin"] = "Activer le plugin NSAbait"; -App::$strings["NSAbait Settings"] = "Paramètres NSAbait"; -App::$strings["Send test email"] = "Envoyer un mail de test"; -App::$strings["No recipients found."] = "Aucun destinataire trouvé."; -App::$strings["Mail sent."] = "Mail envoyé."; -App::$strings["Sending of mail failed."] = "L'envoi du mail a échoué."; -App::$strings["Mail Test"] = "Test du mail"; -App::$strings["Message subject"] = "Objet du message"; -App::$strings["Use markdown for editing posts"] = "Utiliser Markdown pour l'édition des posts"; -App::$strings["View Larger"] = "Afficher en plus grand"; -App::$strings["Tile Server URL"] = "URL de la tuile du serveur"; -App::$strings["A list of public tile servers"] = "Une liste de serveurs de cartes publics"; -App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL du serveur Nominatim (géocodage inversé)"; -App::$strings["A list of Nominatim servers"] = "Une liste de serveurs Nominatim"; -App::$strings["Default zoom"] = "Zoom par défaut"; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Le niveau de zoom par défaut. (1: monde, 18: plus élevé, dépend également du serveur de tuiles)"; -App::$strings["Include marker on map"] = "Inclure le marqueur sur la carte"; -App::$strings["Include a marker on the map."] = "Inclure un marqueur sur la carte."; -App::$strings["text to include in all outgoing posts from this site"] = "Texte à inclure dans tous les messages sortants de ce site"; -App::$strings["Fuzzloc Settings updated."] = "Paramètres Fuzzloc mis à jour."; -App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc vous permet de brouiller votre position précise si votre canal utilise la cartographie de position du navigateur."; -App::$strings["Enable Fuzzloc Plugin"] = "Activer le greffon Fuzzloc"; -App::$strings["Minimum offset in meters"] = "Décalage minimum en mètres"; -App::$strings["Maximum offset in meters"] = "Décalage maximum en mètres"; -App::$strings["Fuzzloc Settings"] = "Paramètres de Fuzzloc"; -App::$strings["Post to Friendica"] = "Publier sur Friendica"; -App::$strings["rtof Settings saved."] = "Paramètres rtof sauvegardés."; -App::$strings["Allow posting to Friendica"] = "Autoriser la publication sur Friendica"; -App::$strings["Send public postings to Friendica by default"] = "Par défaut, envoyer les publications publiques sur Friendica"; -App::$strings["Friendica API Path"] = "Chemin de l'API Friendica"; -App::$strings["https://{sitename}/api"] = "https://{nomdusite}/api"; -App::$strings["Friendica login name"] = "Identifiant de connexion Friendica"; -App::$strings["Friendica password"] = "Mot de passe de connexion Friendica"; -App::$strings["Hubzilla to Friendica Post Settings"] = "Paramètres de publication de Hubzilla vers Friendica"; -App::$strings["Status:"] = "État :"; -App::$strings["Activate addon"] = "Activer l'extension"; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Cacher le widget de chat Jappixmini de l'interface web"; -App::$strings["Jabber username"] = "Identifiant Jabber"; -App::$strings["Jabber server"] = "Serveur Jabber"; -App::$strings["Jabber BOSH host URL"] = "Adresse hôte pour Jabber BOSH"; -App::$strings["Jabber password"] = "Mot de passe Jabber"; -App::$strings["Encrypt Jabber password with Hubzilla password"] = "Chiffrer le mot de passe Jabber avec le mot de passe Hubzilla"; -App::$strings["Hubzilla password"] = "Mot de passe Hubzilla"; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Valider automatiquement les demandes de souscription des contacts Hubzilla"; -App::$strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne des adresses jabber des contacts"; -App::$strings["Configuration Help"] = "Aide pour la configuration"; -App::$strings["Jappix Mini Settings"] = "Paramètres de Jappix mini"; -App::$strings["Currently blocked"] = "Actuellement bloqué"; -App::$strings["No channels currently blocked"] = "Aucun canal n'est actuellement bloqué"; -App::$strings["Superblock Settings"] = "Paramètres de Superblock"; -App::$strings["Block Completely"] = "Bloquer complètement"; -App::$strings["superblock settings updated"] = "Les paramètres du superblock ont été mis à jour"; -App::$strings["Federate"] = "Fédérer"; -App::$strings["nofed Settings saved."] = "Les paramètres nfed ont été enregistrés."; -App::$strings["Allow Federation Toggle"] = "Autoriser la fédération avec Toggle"; -App::$strings["Federate posts by default"] = "Par défaut, fédérer les publications."; -App::$strings["NoFed Settings"] = "Paramètres NoFed"; -App::$strings["Post to Red"] = "Publier sur Red"; -App::$strings["Channel is required."] = "Un canal est requis."; -App::$strings["redred Settings saved."] = "Paramètres redred sauvegardés."; -App::$strings["Allow posting to another Hubzilla Channel"] = "Autoriser la publication sur un autre canal Hubzilla"; -App::$strings["Send public postings to Hubzilla channel by default"] = "Par défaut, envoyer les publications publiques sur le canal Hubzilla"; -App::$strings["Hubzilla API Path"] = "Chemin de l'API Hubzilla"; -App::$strings["Hubzilla login name"] = "Identifiant de connexion Hubzilla"; -App::$strings["Hubzilla channel name"] = "Nom du canal Hubzilla"; -App::$strings["Hubzilla Crosspost Settings"] = "Paramètres Crosspost Hubzilla"; -App::$strings["Logfile archive directory"] = "Répertoire d'archivage du fichier journal"; -App::$strings["Directory to store rotated logs"] = "Répertoire où stocker les journaux de rotation"; -App::$strings["Logfile size in bytes before rotating"] = "Taille du fichier journal en octets avant la rotation"; -App::$strings["Number of logfiles to retain"] = "Nombre de fichiers de journal à conserver"; -App::$strings["Friendica Photo Album Import"] = "Importation de l'album photo Friendica "; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Ceci importera toutes vos albums photos Friendica dans ce canal Hubzilla."; -App::$strings["Friendica Server base URL"] = "URL de base du serveur Friendica"; -App::$strings["Friendica Login Username"] = "Identifiant de connexion Friendica"; -App::$strings["Friendica Login Password"] = "Mot de passe de connexion Friendica"; -App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["ActivityPub Protocol Settings updated."] = "Paramètres du protocole ActivityPub Protocol mise à jour."; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Le protocole ActivityPub ne prend pas en charge l'indépendance de localisation. Les connexions que vous établissez au sein de ce réseau peuvent être inaccessibles à partir d'autres emplacements de canaux."; -App::$strings["Enable the ActivityPub protocol for this channel"] = "Activer le protocole ActivityPub pour ce canal."; -App::$strings["Send multi-media HTML articles"] = "Envoyer des articles HTML multimédia"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "Non pris en charge par certains services de microblog tels que Mastodon."; -App::$strings["ActivityPub Protocol Settings"] = "Paramètres du protocole ActivityPub "; -App::$strings["Project Servers and Resources"] = "Serveurs et ressources du projet"; -App::$strings["Project Creator and Tech Lead"] = "Créateur et Responsable Technique du projet"; -App::$strings["Admin, developer, directorymin, support bloke"] = "Administrateur, développeur, responsable d'annuaire, équipe support"; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Et les centaines d'autres personnes et organisations qui ont contribué à rendre le Hubzilla possible."; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Les projets Redmatrix / Hubzilla sont fournis principalement par des bénévoles qui donnent de leur temps et de leur expertise - et paient souvent de leur poche pour des services qu'ils partagent avec d'autres."; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Il n'y a ni financement d'entreprise ni publicités, et nous ne recueillons ni ne vendons vos données personnelles. (Nous ne contrôlons pas vos informations personnelles - vous le faites !)"; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Aider à soutenir notre travail novateur en matière de décentralisation, d'identité Web et de confidentialité."; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Vos dons maintiennent les serveurs et les services en marche et nous aident également à fournir de nouvelles fonctionnalités innovantes et un développement continu."; -App::$strings["Donate"] = "Donner"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Choisissez un projet, un développeur ou un hub public à soutenir à l'aide d'un don unique"; -App::$strings["Donate Now"] = "Donner maintenant"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "Or devenez un sponsor du projet (projet Hubzilla uniquement)"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Veuillez indiquer si vous souhaitez que votre nom ou prénom (ou rien) apparaisse dans la liste de nos sponsors."; -App::$strings["Sponsor"] = "Sponsors"; -App::$strings["Special thanks to: "] = "Remerciements particuliers à :"; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Ceci est un dictionnaire d'accords de guitare assez complet et facile qui énumère la plupart des manières possibles de jouer un certain accord, à partir de la base de la touche jusqu'à quelques frettes au-delà de la douzième frette (au-delà de laquelle tout se répète). Un couple d'accordages non standard sont fournis au profit des joueurs de diapositives, etc."; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "Les noms des accords commencent par une note racine (A-G) et peuvent inclure des dièses (#) et des bémols (b). Ce logiciel analysera la plupart des conventions de dénomination standard telles que maj, min, dim, sus (2 ou 4), aug, avec des éléments répétitifs facultatifs."; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Exemples valides comprennent A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; -App::$strings["Guitar Chords"] = "Acords de guitar"; -App::$strings["The complete online chord dictionary"] = "Le dictionnaire en ligne complet des accords"; -App::$strings["Tuning"] = "Réglage"; -App::$strings["Chord name: example: Em7"] = "Nom d'accord. Exemple : Em7."; -App::$strings["Show for left handed stringing"] = "Montrer pour les gauchers"; -App::$strings["Quick Reference"] = "Référence rapide"; -App::$strings["Post to Libertree"] = "Publier sur Libertree"; -App::$strings["Enable Libertree Post Plugin"] = "Activer le plugin de publication Libertree"; -App::$strings["Libertree API token"] = "Jeton de l'API Libertree"; -App::$strings["Libertree site URL"] = "Adresse du site Libertree"; -App::$strings["Post to Libertree by default"] = "Par défaut, publier sur Libertree"; -App::$strings["Libertree Post Settings"] = "Paramètres de publication pour Libertree"; -App::$strings["Libertree Settings saved."] = "Paramètres de Libertree sauvegardés."; -App::$strings["Flattr this!"] = "Flattr this!"; -App::$strings["Flattr widget settings updated."] = "Les paramètres du widget Flattr ont été mis à jour"; -App::$strings["Flattr user"] = "Utilisateur de Flattr"; -App::$strings["URL of the Thing to flattr"] = "URL de ce que vous voulez flattr"; -App::$strings["If empty channel URL is used"] = "Si une url vide est utilisée"; -App::$strings["Title of the Thing to flattr"] = "Titre de ce que vous voulez flattr"; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Si vide, \"nom du canal sur Hubzilla\" sera utilisé"; -App::$strings["Static or dynamic flattr button"] = "Statique ou dynamique bouton Flattr"; -App::$strings["static"] = "statique"; -App::$strings["dynamic"] = "dynamique"; -App::$strings["Alignment of the widget"] = "Alignement du widget"; -App::$strings["left"] = "gauche"; -App::$strings["right"] = "droite"; -App::$strings["Enable Flattr widget"] = "Activer le widget Flattr"; -App::$strings["Flattr Widget Settings"] = "Paramètres du widget Flattr"; -App::$strings["Post to GNU social"] = "Publier sur GNU-social"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide."; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "Nous ne pouvons pas contacter l'API de GNU-social avec le chemin que vous avez entré."; -App::$strings["GNU social settings updated."] = "Les paramètres GNU-social ont été mis à jour."; -App::$strings["Globally Available GNU social OAuthKeys"] = "Les OAuthKeys GNU-social sont globalement disponibles."; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Il existe des paires de clés OAuth préconfigurées pour certains serveurs GNU-social disponibles. Si vous utilisez l'un d'eux, utilisez ces informations d'identification.\nSi vous ne voulez pas vous connecter à une autre instance GNU social (voir ci-dessous)."; -App::$strings["Provide your own OAuth Credentials"] = "Fournissez vos propres informations d'identification OAuth"; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée."; -App::$strings["OAuth Consumer Key"] = "Clé d'utilisateur OAuth"; -App::$strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth"; -App::$strings["Base API Path"] = "Chemin de l'API de base"; -App::$strings["Remember the trailing /"] = "N'oubliez pas le / final"; -App::$strings["GNU social application name"] = "Nom de l'application GNU-social"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Pour vous connecter à votre compte GNU-social, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de GNU-social. Vous devez le copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront visibles sur GNU-social."; -App::$strings["Log in with GNU social"] = "Vous connecter avec GNU-social"; -App::$strings["Copy the security code from GNU social here"] = "Copier ici le code de sécurité de GNU-social."; -App::$strings["Cancel Connection Process"] = "Annuler le processus de prise de contact"; -App::$strings["Current GNU social API is"] = "L'API GNU-social courante est"; -App::$strings["Cancel GNU social Connection"] = "Annuler la connexion GNU-social"; -App::$strings["Currently connected to: "] = "Actuellement connecté à :"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Remarque : en raison de vos paramètres de confidentialité (masquer les détails de votre profil aux visiteurs inconnus ?), le lien potentiellement inclus dans les annonces publiques relayées sur GNU-social amènera le visiteur à une page vierge informant le visiteur que l'accès à votre profil a été restreint."; -App::$strings["Allow posting to GNU social"] = "Autoriser la publication sur GNU-social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte GNU-social associé."; -App::$strings["Post to GNU social by default"] = "Par défaut, publier sur GNU-social"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte GNU-social associé"; -App::$strings["Clear OAuth configuration"] = "Effacer la configuration OAuth"; -App::$strings["GNU social Post Settings"] = "Paramètres de publication GNU-social"; -App::$strings["API URL"] = "URL de l'API"; -App::$strings["Application name"] = "Nom de l'application"; -App::$strings["QR code"] = "QR code"; -App::$strings["QR Generator"] = "Générateur de QRcode"; -App::$strings["Enter some text"] = "Entrer du texte"; -App::$strings["Invalid game."] = "Jeu invalide"; -App::$strings["You are not a player in this game."] = "Vous n'êtes pas un joueur de ce jeu."; -App::$strings["You must be a local channel to create a game."] = "Vous devez être un canal local pour créer un jeu."; -App::$strings["You must select one opponent that is not yourself."] = "Vous devez sélectionner un adversaire qui ne soit pas vous-même."; -App::$strings["Random color chosen."] = "Couleur aléatoire choisie."; -App::$strings["Error creating new game."] = "Erreur lors de la création du nouveau jeu."; -App::$strings["Requested channel is not available."] = "Canal demandé non disponible."; -App::$strings["You must select a local channel /chess/channelname"] = "Vous devez sélectionner un canal local /échecs/nomducanal"; -App::$strings["Enable notifications"] = "Activer les notifications"; -App::$strings["Post to Twitter"] = "Publier sur Twitter"; -App::$strings["Twitter settings updated."] = "Les paramètres de Twitter ont été mis à jour."; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Aucune paire de clés d'utilisateur pour Twitter n'a été trouvée. Veuillez contacter l'administrateur de votre site."; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "Dans cette instance de Hubzilla, le plugin Twitter a été activé, mais vous n'avez pas encore connecté votre compte à votre compte Twitter. Pour ce faire, cliquez sur le bouton ci-dessous pour obtenir un code PIN de Twitter que vous devez copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront publiés sur Twitter."; -App::$strings["Log in with Twitter"] = "Connectez-vous avec votre compte Twitter"; -App::$strings["Copy the PIN from Twitter here"] = "Copier ici le PIN fourni par Twitter"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Note : En raison de vos paramètres de confidentialité (Masquer les détails de votre profil aux visiteurs inconnus?), le lien potentiellement inclus dans les annonces publiques relayées vers Twitter amènera le visiteur à une page vierge l'informant que l'accès à votre profil a été restreint."; -App::$strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte Twitter associé."; -App::$strings["Twitter post length"] = "Longueur des messages Twitter"; -App::$strings["Maximum tweet length"] = "Longueur maximale du tweet"; -App::$strings["Send public postings to Twitter by default"] = "Par défaut, envoyer vos publications publiques sur Twitter."; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte Twitter associé."; -App::$strings["Twitter Post Settings"] = "Paramètres des publications Twitter"; -App::$strings["Deactivate the feature"] = "Désactiver la fonctionnalité"; -App::$strings["Hide the button and show the smilies directly."] = "Cacher le bouton et afficher les émoticônes directement."; -App::$strings["Smileybutton Settings"] = "Paramètres du bouton des émoticônes"; -App::$strings["Order Not Found"] = "Commande introuvable"; -App::$strings["Order cannot be checked out."] = "La commande ne peut pas être finalisée."; -App::$strings["Enable Shopping Cart"] = "Activer le panier d'achats"; -App::$strings["Enable Test Catalog"] = "Activer le catalogue de test"; -App::$strings["Enable Manual Payments"] = "Activer les paiements manuels"; -App::$strings["Base Cart Settings"] = "Paramètres de base du panier"; -App::$strings["Add Item"] = "Ajouter un article"; -App::$strings["Call cart_post_"] = "Appeler cart_post_"; -App::$strings["Cart Not Enabled (profile: "] = "Panier non activé (profile:"; -App::$strings["Order not found."] = "Commande introuvable."; -App::$strings["No Order Found"] = "Aucune commande trouvée"; -App::$strings["call: "] = "appel:"; -App::$strings["An unknown error has occurred Please start again."] = "Une erreur inconnue s'est produite. Veuillez recommencer."; -App::$strings["Invalid Payment Type. Please start again."] = "Type de paiement non valable. Recommencez, s'il vous plaît."; -App::$strings["Order not found"] = "Commande non trouvée"; -App::$strings["Error: order mismatch. Please try again."] = "Erreur : non-appariement de commande. Veuillez réessayer."; -App::$strings["Manual payments are not enabled."] = "Les paiements manuels ne sont pas activés."; -App::$strings["Finished"] = "Terminé."; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Ce site web est surveillé grâce à l'outil d'analyse Piwik."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si vous ne souhaitez pas que vos visites soient enregistrées de cette façon, vous pouvez\ndéfinir un cookie pour empêcher Piwik de suivre davantage de visites du site (opt-out)."; -App::$strings["Piwik Base URL"] = "URL de base Piwik"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Chemin absolu vers votre installation Piwik. (sans le http/s, avec antislash)"; -App::$strings["Site ID"] = "ID du site"; -App::$strings["Show opt-out cookie link?"] = "Afficher le lien opt-out du cookie ?"; -App::$strings["Asynchronous tracking"] = "Traqueur asynchrone"; -App::$strings["Enable frontend JavaScript error tracking"] = "Activer le traqueur d'erreur du frontend JavaScript"; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Cette fonctionnalité requiert une version de Piwik >=2.2.0"; -App::$strings["Edit your profile and change settings."] = "Éditer votre profil et changer les paramètres."; -App::$strings["Click here to see activity from your connections."] = "Cliquer ici pour voir l'activité de vos contacts."; -App::$strings["Click here to see your channel home."] = "Cliquer ici pour voir votre canal principal."; -App::$strings["You can access your private messages from here."] = "Vous pouvez accéder à vos messages privés à partir d'ici."; -App::$strings["Create new events here."] = "Créer de nouveaux événements ici."; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Vous pouvez accepter de nouveaux contacts et changer les droits d'accès des contacts existants. Vous pouvez également créer des groupes de contacts."; -App::$strings["System notifications will arrive here"] = "Les notifications du système arriveront ici."; -App::$strings["Search for content and users"] = "Rechercher du contenu ou des utilisateurs"; -App::$strings["Browse for new contacts"] = "Rechercher de nouveaux contacts"; -App::$strings["Launch installed apps"] = "Démarrer des applications installées"; -App::$strings["Looking for help? Click here."] = "Un peu d'aide ? Cliquer ici."; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "De nouveaux événement se sont produits dans votre réseau. Cliquer ici pour voir ce qui s'est passé !"; -App::$strings["You have received a new private message. Click here to see from who!"] = "Vous avez reçu un nouveau message privé. Cliquer ici pour voir qui vous écrit !"; -App::$strings["There are events this week. Click here too see which!"] = "Il y a des événements cette semaine. Cliquer ici pour voir lesquels !"; -App::$strings["You have received a new introduction. Click here to see who!"] = "Vous avez reçu une nouvelle demande de relation. Cliquer ici pour voir de qui !"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = "Vous avez reçu une notification du système. Cliquer ici pour voir ce qui se passe !"; -App::$strings["Click here to share text, images, videos and sound."] = "Cliquer ici pour partager du texte, des images, des vidéos ou du son."; -App::$strings["You can write an optional title for your update (good for long posts)."] = "Vous pouvez ajouter à votre mise à jour un titre facultatif (pratique pour de longues publications)."; -App::$strings["Entering some categories here makes it easier to find your post later."] = "Renseigner certaines catégories ici permet de retrouver plus facilement votre message plus tard."; -App::$strings["Share photos, links, location, etc."] = "Partager des photos, des liens, des localisations, etc."; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Envie de partager un contenu pour une durée limitée ? Faites-le expirer à une certaine date."; -App::$strings["You can password protect content."] = "Vous pouvez protéger un contenu avec un mot de passe."; -App::$strings["Choose who you share with."] = "Choisir avec qui vous partagez."; -App::$strings["Click here when you are done."] = "Cliquer ici quand vous avez fini."; -App::$strings["Adjust from which channels posts should be displayed."] = "Préciser de quels canaux les publications seront affichées."; -App::$strings["Only show posts from channels in the specified privacy group."] = "Afficher uniquement les messages des canaux appartenant au groupe de contacts spécifié."; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Trouvez facilement des publications contenant des tags (mots-clés précédés du symbole \"#\")."; -App::$strings["Easily find posts in given category."] = "Trouvez facilement des publications dans une catégorie donnée."; -App::$strings["Easily find posts by date."] = "Trouvez facilement des publications en fonction de leur date."; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Voici des utilisateurs que vous pourriez trouver intéressants. Ces utilisateurs se sont portés volontaires pour être affichés comme exemples."; -App::$strings["Here you see channels you have connected to."] = "Retrouvez ici les canaux auxquels vous vous êtes connectés."; -App::$strings["Save your search so you can repeat it at a later date."] = "Enregistrer votre recherche de façon à pouvoir la répéter plus tard."; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si vous voyez cette icône, vous pouvez être sûr que l'expéditeur est qui il dit qu'il est. Il est normal qu'il ne soit pas toujours possible de vérifier l'expéditeur, donc l'icône manquera parfois. Il n'est généralement pas nécessaire de s'inquiéter à ce sujet."; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Attention ! Il semble que quelqu'un a essayé de contrefaire un message ! Ce message n'a pas nécessairement été envoyé par la personne annoncée !"; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Bienvenue sur Hubzilla! Voulez-vous faire un tour de l'interface utilisateur? Vous pouvez le mettre en pause à tout moment et continuer où vous l'avez laissé en rechargeant la page ou en naviguant vers une autre page. Vous pouvez également avancer en appuyant sur la touche de retour."; -App::$strings["Extended Identity Sharing"] = "Partage d'identification étendu"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Partagez votre identité avec tous les sites Internet. Lorsqu'elle est désactivée, l'identité n'est partagée qu'avec les sites \$Projectname."; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tic-tac-toe en 3 dimensions"; -App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; -App::$strings["New game"] = "Nouveau jeu"; -App::$strings["New game with handicap"] = "Nouveau jeu avec handicap"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trois dimensions tic-tac-toe est juste comme le jeu traditionnel, sauf qu'il est joué sur plusieurs niveaux simultanément."; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Dans ce cas, il y a trois niveaux. Vous gagnez en obtenant trois dans une rangée à n'importe quel niveau, que ce soit vers le haut, le bas, ou en diagonale à travers les différents niveaux."; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Le jeu handicap désactive la position centrale au niveau intermédiaire, car le joueur qui revendique ce carré a souvent un avantage indu."; -App::$strings["You go first..."] = "Vous commencez…"; -App::$strings["I'm going first this time..."] = "Cette fois, je commence…"; -App::$strings["You won!"] = "Vous avez gagné !"; -App::$strings["\"Cat\" game!"] = "Jeu de \"Chat\" !"; -App::$strings["I won!"] = "J'ai gagné !"; -App::$strings["Message to display on every page on this server"] = "Message à afficher sur chaque page de ce serveur"; -App::$strings["Pageheader Settings"] = "Paramètres du haut de page"; -App::$strings["pageheader Settings saved."] = "Paramètres du haut de page sauvegardés."; -App::$strings["Only authenticate automatically to sites of your friends"] = "Ne vous authentifier automatiquement que sur les sites de vos contacts"; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "Par défaut vous êtres authentifiés automatiquement partout sur le réseau"; -App::$strings["Authchoose Settings"] = "Paramètres Authchoose"; -App::$strings["Atuhchoose Settings updated."] = "Paramètres Authchoose mis à jour."; -App::$strings["lonely"] = "isolé"; -App::$strings["drunk"] = "saoul"; -App::$strings["horny"] = "libidineux"; -App::$strings["stoned"] = "défoncé"; -App::$strings["fucked up"] = "cramé"; -App::$strings["clusterfucked"] = "énervé"; -App::$strings["crazy"] = "cinglé"; -App::$strings["hurt"] = "dommage"; -App::$strings["sleepy"] = "somnolent"; -App::$strings["grumpy"] = "grognon"; -App::$strings["high"] = "allumé"; -App::$strings["semi-conscious"] = "à demi-conscient"; -App::$strings["in love"] = "amoureux"; -App::$strings["in lust"] = "convoitise"; -App::$strings["naked"] = "nu"; -App::$strings["stinky"] = "puant"; -App::$strings["sweaty"] = "en sueur"; -App::$strings["bleeding out"] = "en sang"; -App::$strings["victorious"] = "victorieux"; -App::$strings["defeated"] = "vaincu"; -App::$strings["envious"] = "envieux"; -App::$strings["jealous"] = "jaloux"; -App::$strings["XMPP settings updated."] = "Les paramètres XMPP ont été mis à jour."; -App::$strings["Enable Chat"] = "Activer le Chat"; -App::$strings["Individual credentials"] = "Informations d'identifications individuelles"; -App::$strings["Jabber BOSH server"] = "serveur Jabber BOSH"; -App::$strings["XMPP Settings"] = "Paramètres XMPP"; -App::$strings["Jabber BOSH host"] = "Hôte Jabber BOSH"; -App::$strings["Use central userbase"] = "Utiliser la base d'utilisateurs centrale"; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Si cette option est activée, les membres se connecteront automatiquement à un serveur ejabberd qui doit être installé sur cette machine avec des informations d'identification synchronisées via le script \"auth_ejabberd.php\"."; -App::$strings["Who likes me?"] = "Qui m'aime?"; -App::$strings["You are now authenticated to pumpio."] = "Vous êtes maintenant connecté à pumpio."; -App::$strings["return to the featured settings page"] = "retourner à la page des paramètres des fonctionnalités"; -App::$strings["Post to Pump.io"] = "Publier sur Pump.io"; -App::$strings["Pump.io servername"] = "Nom du serveur Pump.io"; -App::$strings["Without \"http://\" or \"https://\""] = "Sans \"http://\" ou \"https://\""; -App::$strings["Pump.io username"] = "Identifiant Pump.io"; -App::$strings["Without the servername"] = "Sans le nom de serveur"; -App::$strings["You are not authenticated to pumpio"] = "Vous n'êtes pas connecté à Pump.io"; -App::$strings["(Re-)Authenticate your pump.io connection"] = "Authentifiez-vous à nouveau auprès de Pump.io"; -App::$strings["Enable pump.io Post Plugin"] = "Activer le plugin de publication Pump.io"; -App::$strings["Post to pump.io by default"] = "Par défaut, publier sur Pump.io"; -App::$strings["Should posts be public"] = "Les publications doivent-elles être publiques ?"; -App::$strings["Mirror all public posts"] = "Créer une copie miroir de toutes les publications publiques"; -App::$strings["Pump.io Post Settings"] = "Paramètres de publication Pump.io"; -App::$strings["PumpIO Settings saved."] = "Paramètres Pump.io sauvegardés."; -App::$strings["An account has been created for you."] = "Un compte a été créé pour vous."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "L'authentification a réussi mais a été rejetée : la création de comptes est désactivée."; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Recherche %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Search \$Projectname"] = "Chercher dans \$Projectname"; -App::$strings["Redmatrix File Storage Import"] = "Importation du fichier de stockage Redmatrix"; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Ceci importera tous vos fichiers Redmatrix dans ce canal."; -App::$strings["file"] = "fichier"; -App::$strings["Send email to all members"] = "Envoyer un mail à tous les membres"; -App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d message(s) envoyés sur %2\$d."; -App::$strings["Send email to all hub members."] = "Envoyer un e-mail à tous les membres du hub."; -App::$strings["Sender Email address"] = "Adresse mail de l'expéditeur"; -App::$strings["Test mode (only send to hub administrator)"] = "Mode test (uniquement envoyé à l'administrateur du hub)"; -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["likes %1\$s's %2\$s"] = "aime le %2\$s de %1\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "n'aime pas le %2\$s de%1\$s "; -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["Loading..."] = "Chargement..."; -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["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["Choose a different album..."] = "Choisissez un autre album"; -App::$strings["Comments enabled"] = "Commentaires activés"; -App::$strings["Comments disabled"] = "Commentaires désactivés"; -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["Disable comments"] = "Désactiver les commentaires"; -App::$strings["Toggle comments"] = "Basculer les commentaires"; -App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; -App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; -App::$strings["Set publish date"] = "Définir la date de publication"; -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"] = "Avec étoile"; -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["Profile Details"] = "Détails du profil"; -App::$strings["Photo Albums"] = "Albums photo"; -App::$strings["Files and Storage"] = "Fichiers et Stockage"; -App::$strings["Bookmarks"] = "Favoris"; -App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; -App::$strings["View Cards"] = "Voir cartes"; -App::$strings["articles"] = "articles"; -App::$strings["View Articles"] = "Voir articles"; -App::$strings["View Webpages"] = "Voir 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["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["%1\$s's bookmarks"] = "Favoris de %1\$s"; -App::$strings["Unable to import a removed channel."] = "Impossible d'importer un canal supprimé."; -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["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import."; -App::$strings["prev"] = "préc."; -App::$strings["first"] = "premier"; -App::$strings["last"] = "dernier"; -App::$strings["next"] = "Suivant"; -App::$strings["older"] = "plus ancien"; -App::$strings["newer"] = "plus récent"; -App::$strings["No connections"] = "Pas de contact."; -App::$strings["View all %s connections"] = "Voir les %s contacts"; -App::$strings["poke"] = "tapoter"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "pingé"; -App::$strings["prod"] = "encourager"; -App::$strings["prodded"] = "à encouragé"; -App::$strings["slap"] = "giffler"; -App::$strings["slapped"] = "gifflé(e)"; -App::$strings["finger"] = "pointer"; -App::$strings["fingered"] = "pointé"; -App::$strings["rebuff"] = "rejetter"; -App::$strings["rebuffed"] = "rejeté"; -App::$strings["happy"] = "heureux"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "mélancolique"; -App::$strings["tired"] = "fatigué"; -App::$strings["perky"] = "impertinent"; -App::$strings["angry"] = "en colère"; -App::$strings["stupefied"] = "stupéfait"; -App::$strings["puzzled"] = "perplexe"; -App::$strings["interested"] = "intéressé"; -App::$strings["bitter"] = "amer"; -App::$strings["cheerful"] = "plein d'entrain"; -App::$strings["alive"] = "vivant"; -App::$strings["annoyed"] = "agaçé"; -App::$strings["anxious"] = "anxieux"; -App::$strings["cranky"] = "énervé"; -App::$strings["disturbed"] = "perturbé"; -App::$strings["frustrated"] = "frustré"; -App::$strings["depressed"] = "déprimé"; -App::$strings["motivated"] = "motivé"; -App::$strings["relaxed"] = "détendu"; -App::$strings["surprised"] = "surpris"; -App::$strings["Monday"] = "Lundi"; -App::$strings["Tuesday"] = "Mardi"; -App::$strings["Wednesday"] = "Mercredi"; -App::$strings["Thursday"] = "Jeudi"; -App::$strings["Friday"] = "Vendredi"; -App::$strings["Saturday"] = "Samedi"; -App::$strings["Sunday"] = "Dimanche"; -App::$strings["January"] = "Janvier"; -App::$strings["February"] = "Février"; -App::$strings["March"] = "Mars"; -App::$strings["April"] = "Avril"; -App::$strings["May"] = "Mai"; -App::$strings["June"] = "Juin"; -App::$strings["July"] = "Juillet"; -App::$strings["August"] = "Août"; -App::$strings["September"] = "Septembre"; -App::$strings["October"] = "Octobre"; -App::$strings["November"] = "Novembre"; -App::$strings["December"] = "Décembre"; -App::$strings["Unknown Attachment"] = "Pièce jointe inconnue"; -App::$strings["unknown"] = "Inconnu"; -App::$strings["remove category"] = "supprimer la catégorie"; -App::$strings["remove from file"] = "retirer du fichier"; -App::$strings["Download binary/encrypted content"] = "Télécharger le contenu binaire/chiffré"; -App::$strings["default"] = "défaut"; -App::$strings["Page layout"] = "Mise en page"; -App::$strings["You can create your own with the layouts tool"] = "Créez les vôtres avec les outils de mise en page"; -App::$strings["HTML"] = "HTML"; -App::$strings["Comanche Layout"] = "mise en page Comanche"; -App::$strings["PHP"] = "PHP"; -App::$strings["Page content type"] = "Type de contenu de la page"; -App::$strings["activity"] = "activité"; -App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, -, et _ seulement"; -App::$strings["Design Tools"] = "Outils de conception"; -App::$strings["Pages"] = "Pages"; -App::$strings["Import website..."] = "Importer le site web…"; -App::$strings["Select folder to import"] = "Sélectionner le dossier à importer"; -App::$strings["Import from a zipped folder:"] = "Importer à partir d'un dossier zippé :"; -App::$strings["Import from cloud files:"] = "Importer à partir de fichiers dans le cloud :"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/chemain/du/repertoire"; -App::$strings["Enter path to website files"] = "Entrer le chemin vers les fichiers du site web"; -App::$strings["Select folder"] = "Sélectionner un répertoire"; -App::$strings["Export website..."] = "Exporter le site web…"; -App::$strings["Export to a zip file"] = "Exporter dans un fichier zip"; -App::$strings["website.zip"] = "website.zip"; -App::$strings["Enter a name for the zip file."] = "Entrer un nom pour le fichier zip."; -App::$strings["Export to cloud files"] = "Exporter dans des fichiers sur le cloud"; -App::$strings["/path/to/export/folder"] = "/chemin/vers/le/dossier/d'export"; -App::$strings["Enter a path to a cloud files destination."] = "Entrer le chemin vers le cloud de fichiers"; -App::$strings["Specify folder"] = "Spécifier un répertoire"; -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"] = "Lier et 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["Common Connections"] = "Connexions communes"; -App::$strings["View all %d common connections"] = "Voir toutes les connexions communes %d"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; -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["Premium channel - please visit:"] = "Canal Premium - s'il vous plaît visitez :"; -App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus."; -App::$strings["Remote channel or protocol unavailable."] = "Canal distant ou protocole indisponible."; -App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué."; -App::$strings["Protocol disabled."] = "Protocole désactivé."; -App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous."; -App::$strings["Delete this item?"] = "Supprimer cet élément?"; -App::$strings["%s show less"] = "%s afficher moins"; -App::$strings["%s expand"] = "%s dérouler"; -App::$strings["%s collapse"] = "%s enrouler"; -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"; -App::$strings["Secret Passphrase"] = "Phrase de passe secrète"; -App::$strings["Passphrase hint"] = "Indice pour la phrase de passe"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Note : Les droits d'accès ont changé, mais n'ont pas encore été enregistrés."; -App::$strings["close all"] = "fermer tout"; -App::$strings["Nothing new here"] = "Aucun nouveau contenu trouvé"; -App::$strings["Rate This Channel (this is public)"] = "Evaluer ce canal (publiquement)"; -App::$strings["Describe (optional)"] = "Description (facultative)"; -App::$strings["Please enter a link URL"] = "Merci d'insérer une URL"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Changements en attente. Voulez-vous vraiment quitter cette page?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["timeago.suffixAgo"] = "timeago.suffixAgo"; -App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow"; -App::$strings["less than a minute"] = "moins d'une minute"; -App::$strings["about a minute"] = "environ une minute"; -App::$strings["%d minutes"] = "%d minutes"; -App::$strings["about an hour"] = "environ une heure"; -App::$strings["about %d hours"] = "environ %d heures"; -App::$strings["a day"] = "un jour"; -App::$strings["%d days"] = "%d jours"; -App::$strings["about a month"] = "environ un mois"; -App::$strings["%d months"] = "%d mois"; -App::$strings["about a year"] = "environ un an"; -App::$strings["%d years"] = "%d années"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "Mai"; -App::$strings["Jan"] = "Jan"; -App::$strings["Feb"] = "Fev"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Avr"; -App::$strings["__ctx:short__ May"] = "Mai"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Aou"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Oct"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dec"; -App::$strings["Sun"] = "Dim"; -App::$strings["Mon"] = "Lun"; -App::$strings["Tue"] = "Mar"; -App::$strings["Wed"] = "Mer"; -App::$strings["Thu"] = "Jeu"; -App::$strings["Fri"] = "Ven"; -App::$strings["Sat"] = "Sam"; -App::$strings["__ctx:calendar__ today"] = "aujourd'hui"; -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["Unable to determine sender."] = "Impossible de déterminer l'émetteur."; -App::$strings["No recipient provided."] = "Pas de destinataire."; -App::$strings["[no subject]"] = "[sans objet]"; -App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié."; -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["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["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 par tous les contacts."; -App::$strings["Visible to approved connections."] = "Visible par les contacts validés."; -App::$strings["Visible to specific connections."] = "Visible par certains contacts."; -App::$strings["Privacy group is empty."] = "Groupe de contacts vide."; -App::$strings["Privacy group: %s"] = "Groupe de contacts : %s"; -App::$strings["Connection not found."] = "Contact non trouvé."; -App::$strings["profile photo"] = "photo de profil"; -App::$strings["[Edited %s]"] = "[%s édité]"; -App::$strings["__ctx:edit_activity__ Post"] = "Publier"; -App::$strings["__ctx:edit_activity__ Comment"] = "Commenter"; -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["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée"; -App::$strings["Default Profile"] = "Profil par défaut"; -App::$strings["Unable to retrieve modified identity"] = "Impossible de récupérer l'identité modifiée"; -App::$strings["Create New Profile"] = "Créer un nouveau profil"; -App::$strings["Visible to everybody"] = "Visible de tous"; -App::$strings["Gender:"] = "Sexe :"; -App::$strings["Homepage:"] = "Site Internet :"; -App::$strings["Online Now"] = "Connecté"; -App::$strings["Change your profile photo"] = "Modifier votre photo de profil"; -App::$strings["Trans"] = "Trans"; -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["Tags:"] = "Étiquettes :"; -App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; -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["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["Home, Voice"] = "Domicile, Voix"; -App::$strings["Home, Fax"] = "Domicile, Fax"; -App::$strings["Work, Voice"] = "Travail, Voix"; -App::$strings["Work, Fax"] = "Travail, Fax"; -App::$strings["view full size"] = "voir en taille réelle"; -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["Select an alternate language"] = "Choisir une langue alternative"; -App::$strings["Who can see this?"] = "Qui peut voir cela"; -App::$strings["Custom selection"] = "Sélection personnalisée"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Sélectionnez \"Afficher\" pour permettre l'affichage. \"Ne pas afficher\" vous permet de remplacer et de limiter la portée de \"Afficher\"."; -App::$strings["Show"] = "Montrer"; -App::$strings["Don't show"] = "Cacher"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Les droits d'accès d'un message %s ne peuvent pas être modifiés %s une fois le message envoyé.
Ces droits d'accès définissent qui est autorisé à afficher le message."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'"; -App::$strings["Image/photo"] = "Image/photo"; -App::$strings["Encrypted content"] = "Contenu chiffré"; -App::$strings["Install %1\$s element %2\$s"] = "Installer %1\$s element %2\$s"; -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 le droit de l'installer sur ce site."; -App::$strings["card"] = "carte"; -App::$strings["article"] = "article"; -App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["View article"] = "Voir l'article"; -App::$strings["View summary"] = "Voir le résumé"; -App::$strings["$1 wrote:"] = "$1 a écrit :"; -App::$strings[" by "] = "par"; -App::$strings[" on "] = "sur"; -App::$strings["Embedded content"] = "Contenu imbriqué"; -App::$strings["Embedding disabled"] = "Imbrication désactivée"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s accueille favorablement %2\$s"; -App::$strings["General Features"] = "Fonctionnalités générales"; -App::$strings["Display new member quick links menu"] = "Afficher le menu des liens rapides pour les nouveaux membres"; -App::$strings["Advanced Profiles"] = "Profils avancés"; -App::$strings["Additional profile sections and selections"] = "Sections et sélections supplémentaires du profil"; -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"] = "Fournir un wiki pour votre canal."; -App::$strings["Private Notes"] = "Notes privées"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Active un outil pour stocker des notes et des rappels (note:non chiffré)"; -App::$strings["Create personal planning cards"] = "Créer des cartes de planification personnelle"; -App::$strings["Create interactive articles"] = "Créer des articles interactifs"; -App::$strings["Navigation Channel Select"] = "Sélection du canal par la navigation"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Changez de canal directement depuis le menu de navigation déroulant"; -App::$strings["Photo Location"] = "Site de prise de vue"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte."; -App::$strings["Access Controlled Chatrooms"] = "Accéder au salons de discussions contrôlés."; -App::$strings["Provide chatrooms and chat services with access control."] = "Fournir des salons de discussions et des services de discussions avec contrôle d'accès."; -App::$strings["Smart Birthdays"] = "Anniversaires intelligents"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Adapter les anniversaires aux fuseaux horaires, utile pour vos amis sur d'autres continents."; -App::$strings["Event Timezone Selection"] = "Sélection du fuseau horaire de l'événement"; -App::$strings["Allow event creation in timezones other than your own."] = "Autorise la création d’événements sur d'autres fuseaux horaires que le vôtre."; -App::$strings["Premium Channel"] = "Canal VIP"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux contacts de votre canal"; -App::$strings["Advanced Directory Search"] = "Recherche avancée dans les répertoires"; -App::$strings["Allows creation of complex directory search queries"] = "Autoriser la création d'entrées complexes de recherche de répertoire"; -App::$strings["Advanced Theme and Layout Settings"] = "Paramètres avancés du thème et de l'agencement."; -App::$strings["Allows fine tuning of themes and page layouts"] = "Autoriser la personnalisation fine des thèmes et des agencements."; -App::$strings["Access Control and Permissions"] = "Contrôle d'accès et autorisations"; -App::$strings["Privacy Groups"] = "Groupes confidentiels"; -App::$strings["Enable management and selection of privacy groups"] = "Active la gestion et la sélection des groupes confidentiels"; -App::$strings["Multiple Profiles"] = "Profils multiples"; -App::$strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -App::$strings["Provide alternate connection permission roles."] = "Fournir des rôles d'accès différents pour ce contact."; -App::$strings["OAuth1 Clients"] = "Clients OAuth1"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification OAuth1 pour les applications mobiles et distantes."; -App::$strings["OAuth2 Clients"] = "Clients OAuth2"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification OAuth2 pour les applications mobiles et distantes."; -App::$strings["Access Tokens"] = "Jetons d'accès."; -App::$strings["Create access tokens so that non-members can access private content."] = "Créez des jetons d'accès pour que les non-membres puissent accéder au contenu privé."; -App::$strings["Post Composition Features"] = "Fonctionnalités de composition"; -App::$strings["Large Photos"] = "Grandes photos"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif"; -App::$strings["Even More Encryption"] = "Encore plus de chiffrement"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement optionnel du contenu de bout en bout au moyen d'un secret partagé"; -App::$strings["Enable Voting Tools"] = "Activer les outils de vote"; -App::$strings["Provide a class of post which others can vote on"] = "Fournit un type de publication sur lequel les utilisateurs peuvent voter"; -App::$strings["Disable Comments"] = "Désactiver les commentaires"; -App::$strings["Provide the option to disable comments for a post"] = "Fournir la possibilité de désactiver les commentaires pour une publication."; -App::$strings["Delayed Posting"] = "Publication plus tard"; -App::$strings["Allow posts to be published at a later date"] = "Permettre de publier des messages à une date programmée"; -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"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Supprimer les publications/commentaires en doublon"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle"; -App::$strings["Auto-save drafts of posts and comments"] = "Sauvegarde automatique des brouillons de messages et commentaires"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Enregistre automatiquement les brouillons de messages et de commentaires dans le stockage local du navigateur pour aider à prévenir la perte accidentelle de compositions."; -App::$strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux"; -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["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"; -App::$strings["Network New Tab"] = "Onglet \"nouveautés réseau\""; -App::$strings["Enable tab to display all new Network activity"] = "Activer un onglet présentant toute l'activité récente sur le réseau"; -App::$strings["Affinity Tool"] = "Gérer l'affinité"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations"; -App::$strings["Show friend and connection suggestions"] = "Afficher les suggestions de mise en contact"; -App::$strings["Connection Filtering"] = "Filtrage des contacts"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs"; -App::$strings["Post/Comment Tools"] = "Gérer les publications/commentaires"; -App::$strings["Community Tagging"] = "Etiquetage communautaire"; -App::$strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes"; -App::$strings["Post Categories"] = "Catégoriser les publications"; -App::$strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; -App::$strings["Emoji Reactions"] = "Réactions par émoticônes"; -App::$strings["Add emoji reaction ability to posts"] = "Ajouter la possibilité de réagir aux publications par émoticônes"; -App::$strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers"; -App::$strings["Dislike Posts"] = "\"Ne pas aimer\" les publications"; -App::$strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires"; -App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications"; -App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile"; -App::$strings["Tag Cloud"] = "Nuage de tags"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal"; -App::$strings["Trending"] = "Tendance"; -App::$strings["Keywords"] = "Mots-clefs"; -App::$strings["have"] = "ont"; -App::$strings["has"] = "a"; -App::$strings["want"] = "veulent"; -App::$strings["wants"] = "veut"; -App::$strings["likes"] = "aime"; -App::$strings["dislikes"] = "n'aime pas"; -App::$strings["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 validé."; -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["Birthday"] = "Anniversaire"; -App::$strings["Age: "] = "Age :"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; -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["Remote authentication"] = "Authentification distante"; -App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; -App::$strings["Manage Your Channels"] = "Gérer vos canaux"; -App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal"; -App::$strings["End this session"] = "Mettre fin à la session"; -App::$strings["Your profile page"] = "Votre profil"; -App::$strings["Manage/Edit profiles"] = "Gérer/modifier vos profils"; -App::$strings["Sign in"] = "Connexion"; -App::$strings["Take me home"] = "Retourner sur mon serveur"; -App::$strings["Log me out of this site"] = "Déconnectez-moi de ce site"; -App::$strings["Create an account"] = "Créer un compte"; -App::$strings["Help and documentation"] = "Aide et documentation"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Rechercher un site @nom, !forum, #etiquette, ?document, contenu"; -App::$strings["Site Setup and Configuration"] = "Configuration du site"; -App::$strings["@name, !forum, #tag, ?doc, content"] = "@nom, !forum, #etiquette, ?document, contenu"; -App::$strings["Please wait..."] = "Merci de patienter..."; -App::$strings["Add Apps"] = "Ajouter des applications"; -App::$strings["Arrange Apps"] = "Réarranger les applications"; -App::$strings["Toggle System Apps"] = "(Dés)activer les applications système"; -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["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 droits d'accès liés 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 de contacts"; -App::$strings["edit"] = "modifier"; -App::$strings["Edit group"] = "Modifier le groupe"; -App::$strings["Add privacy group"] = "Créer un groupe de contacts"; -App::$strings["Channels not in any privacy group"] = "Contacts n'étant dans aucun groupe de contacts"; -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["Delegation session ended."] = "La séance de délégation a pris fin."; -App::$strings["Logged out."] = "Deconnecté."; -App::$strings["Email validation is incomplete. Please check your email."] = "La validation du courriel est incomplète. Veuillez vérifier l'adresse courriel."; -App::$strings["Failed authentication"] = "Échec de l'authentification"; -App::$strings["Help:"] = "Aide :"; -App::$strings["Not Found"] = "Introuvable"; diff --git a/view/fr/messages.po b/view/fr/messages.po index 62c6a80d4..c5263c2df 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -1,21 +1,22 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project -# This file is distributed under the same license as the Red package. +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. # # Translators: -# kris1373 , 2015 -# Chez Zot , 2015 -# Laurent Pelecq , 2016 -# Olivier , 2013-2016 -# Webmaster_Redmatrix.ca , 2014 -# Webmaster_Redmatrix.ca , 2014 +# kris1373 , 2015-2016 +# marlo , 2018 +# Philip Wittamore , 2018 +# Pierre Boudes , 2018 +# rmonret , 2016 +# rmonret , 2017-2018 +# Seraph Ino, 2016 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-20 00:01-0700\n" -"PO-Revision-Date: 2016-04-22 19:16+0000\n" -"Last-Translator: Laurent Pelecq \n" +"POT-Creation-Date: 2018-04-23 11:34+0200\n" +"PO-Revision-Date: 2018-05-26 07:06+0000\n" +"Last-Translator: Philip Wittamore \n" "Language-Team: French (http://www.transifex.com/Friendica/red-matrix/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,3330 +24,12818 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "Aucun nom d'utilisateur dans le fichier d'import." +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "Peut voir mon canal et mes publications" -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossible de créer une adresse de canal unique. Échec de l'import." +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "Peuvent m'envoyer leur flux et les publications de leur canal" -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "L'import est terminé." +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Peut voir le profil par défaut du canal" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "retour" +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Peut voir mes contacts" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2561 -msgid "Collection" -msgstr "Collection" +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Peut voir mes fichiers et photos" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principal" +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "Peut télécharger/modifier mes fichiers et mes photos" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Carnet d'adresse" +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "Peut voir les pages web de mon canal" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendrier" +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Peut voir les pages de mon wiki" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Calendrier - Message entrants" +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "Peut créer ou modifier les pages web de mon canal" -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Calendrier - Message sortants" +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Peut écrire sur mon wiki" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1030 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" -msgstr "Inconnu" +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "Peut poster sur mon canal (\"mur\")" -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "%1$s utilisé" +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "Peuvent commenter et/ou aimer mes publications" -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s utilisé de %2$s (%3$s%)" +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" +msgstr "Peuvent m'envoyer des messages privés" -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1620 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Fichiers" +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "Peut aimer ou détester des profils" -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Total" +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Peut faire suivre à tous mes contacts avec la mention @+ dans une publication" -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Partagé" +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can chat with me" +msgstr "Peut discuter avec moi" -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152 -#: ../../mod/layouts.php:175 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/webpages.php:180 +#: ../../Zotlabs/Access/Permissions.php:72 +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:73 +msgid "Can administer my channel" +msgstr "Peut administrer mon canal" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "Réseau social" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "Sociale - Fédération" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "Social - principalement public" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "Social - restreint" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "Social - privé" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "Forum communautaire" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "Forum - principalement public" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "Forum - restreint" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "Forum - privé" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "Republication de flux" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "Flux - principalement public" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "Flux - restreint" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "Utilisation spécifique" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "Spécial - célébrité/vitrine" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "Spécial - dépôt partagé" + +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 +#: ../../Zotlabs/Module/Settings/Channel.php:479 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:697 +#: ../../include/connections.php:704 +msgid "Other" +msgstr "Autre" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "Mode expert/spécifique" + +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 +msgid "Requested profile is not available." +msgstr "Profil demandé non disponible." + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:91 +#: ../../Zotlabs/Module/New_channel.php:116 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Settings/Features.php:38 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 +#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:85 +#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 +#: ../../include/attach.php:197 ../../include/attach.php:270 +#: ../../include/attach.php:284 ../../include/attach.php:293 +#: ../../include/attach.php:366 ../../include/attach.php:380 +#: ../../include/attach.php:387 ../../include/attach.php:469 +#: ../../include/attach.php:1029 ../../include/attach.php:1103 +#: ../../include/attach.php:1268 ../../include/items.php:3706 +#: ../../include/photos.php:27 +msgid "Permission denied." +msgstr "Accès refusé." + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Nom du Bloc" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 +msgid "Blocks" +msgstr "Blocs" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titre du bloc" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "Créé(e)" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "Modifié(e)" + +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "Créer" -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:718 -#: ../../mod/photos.php:1248 ../../mod/profile_photo.php:362 -msgid "Upload" -msgstr "Envoyer" - -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nom" - -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "Type" - -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Taille" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Modifié le" - -#: ../../include/RedDAV/RedBrowser.php:266 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:108 -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:242 -#: ../../mod/connections.php:255 ../../mod/connections.php:274 -#: ../../mod/editblock.php:134 ../../mod/editlayout.php:133 -#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:178 -#: ../../mod/settings.php:650 ../../mod/layouts.php:183 ../../mod/menu.php:106 -#: ../../mod/thing.php:255 ../../mod/webpages.php:181 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Settings/Oauth2.php:149 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 +#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 +#: ../../include/channel.php:1300 ../../include/menu.php:113 msgid "Edit" -msgstr "Éditer" +msgstr "Modifier" -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:671 -#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/photos.php:1062 -#: ../../mod/blocks.php:155 ../../mod/connedit.php:563 -#: ../../mod/editblock.php:180 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:225 ../../mod/group.php:176 -#: ../../mod/settings.php:651 ../../mod/thing.php:256 -#: ../../mod/webpages.php:183 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 +#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../include/conversation.php:1366 +msgid "Share" +msgstr "Partager" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Settings/Oauth2.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:289 +#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 +#: ../../include/conversation.php:690 ../../include/conversation.php:733 msgid "Delete" msgstr "Supprimer" -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Nouveau dossier" +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +msgid "View" +msgstr "Voir" -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Téléverser un fichier" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limite du nombre total d'invitation dépassée." -#: ../../include/dba/dba_driver.php:141 +#: ../../Zotlabs/Module/Invite.php:53 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Impossible de trouver les infos DNS du serveur de BD '%s'" +msgid "%s : Not a valid email address." +msgstr "%s : adresse courriel invalide." -#: ../../include/photo/photo_driver.php:703 ../../mod/photos.php:92 -#: ../../mod/photos.php:637 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -msgid "Profile Photos" -msgstr "Photos du profil" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Rejoignez-nous sur $Projectname" -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1550 -msgid "Logout" -msgstr "Déconnexion" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Mettre fin à la session" +#: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Échec de distribution du message." -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Canal" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d message envoyé." +msgstr[1] "%d messages envoyés." -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Vos publications et conversations" +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "Vous ne disposez plus d'aucune invitation" -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses de courriel, une par ligne :" + +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "Votre message :" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Rejoignez ma communauté sur $Projectname." + +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Vous devrez fournir le code suivant :" + +#: ../../Zotlabs/Module/Invite.php:144 +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:146 +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:147 +msgid "or visit" +msgstr "ou rendez-vous sur" + +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "3. Cliquez sur [Ajouter]" + +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 +#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Channel.php:495 +#: ../../Zotlabs/Module/Settings/Features.php:79 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Oauth2.php:84 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 +#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 +#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:825 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 +#: ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 +#: ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1072 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 +#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 +#: ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Articles" + +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Ajouter article" + +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "Élément introuvable" + +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Nom de la mise en page" + +#: ../../Zotlabs/Module/Editlayout.php:129 +#: ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Description de la mise en page (facultatif)" + +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Modifier la mise en page" + +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:358 +msgid "Permission denied" +msgstr "Accès refusé" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Éditeur de visibilité de profil" + +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 +msgid "Profile" msgstr "Profil" -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Votre profil" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Cliquer sur un contact pour l'ajouter ou le retirer." -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Éditer les profils" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Visible par" -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Gérer/éditer les profils" +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:200 +msgid "All Connections" +msgstr "Tous les contacts" -#: ../../include/nav.php:95 ../../include/identity.php:979 -msgid "Edit Profile" -msgstr "Éditeur de profil" +#: ../../Zotlabs/Module/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "ÉVÉNEMENT INVALIDE REJETÉ!" -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Éditer votre profil" +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Sommaire :" -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1611 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Photos" +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:891 +#: ../../include/conversation.php:1160 +msgid "Unknown" +msgstr "Inconnu" -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Vos photos" +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Date :" -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Vos fichiers" +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Raison :" -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Clavardage" +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "ÉVÉNEMENT INVALIDE REJETÉ!" -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Vos salons" +#: ../../Zotlabs/Module/Cdav.php:794 +msgid "Name: " +msgstr "Nom :" -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1646 -msgid "Bookmarks" -msgstr "Favoris" +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Titre de l'événement" -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Vos favoris" +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Date et heure de début" -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1656 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Pages web" +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Exemple : YYYY-MM-DD HH:mm" -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Vos pages web" +#: ../../Zotlabs/Module/Cdav.php:870 +msgid "End date and time" +msgstr "Date et heure de fin" -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1551 -msgid "Login" -msgstr "Connexion" +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +msgid "Description" +msgstr "Description" -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Connexion" +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "Emplacement" -#: ../../include/nav.php:134 +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 +msgid "Previous" +msgstr "Précédent" + +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Photos.php:980 +msgid "Next" +msgstr "Suivant" + +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Aujourd'hui" + +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "Mois" + +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "Semaine" + +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "Jour" + +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Liste mois" + +#: ../../Zotlabs/Module/Cdav.php:886 +msgid "List week" +msgstr "Liste semaine" + +#: ../../Zotlabs/Module/Cdav.php:887 +msgid "List day" +msgstr "Liste jour" + +#: ../../Zotlabs/Module/Cdav.php:894 +msgid "More" +msgstr "Plus" + +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Moins" + +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Sélectionner un calendrier" + +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Tout supprimer" + +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth2.php:85 +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 +msgid "Cancel" +msgstr "Annuler" + +#: ../../Zotlabs/Module/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "Désolé ! L'édition d'événements récurrents n'est pas encore implémenté." + +#: ../../Zotlabs/Module/Cdav.php:1170 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +msgid "Name" +msgstr "Nom" + +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Organisation" + +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Titre" + +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "Téléphone" + +#: ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1770 +msgid "Email" +msgstr "Courriel" + +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "Instant messenger" + +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "Site web" + +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "Adresse" + +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "Note" + +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 +#: ../../include/connections.php:690 +msgid "Mobile" +msgstr "Mobile" + +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 +#: ../../include/connections.php:691 +msgid "Home" +msgstr "Mon canal" + +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 +#: ../../include/connections.php:694 +msgid "Work" +msgstr "Travail" + +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "Ajouter un contact" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "Ajouter un champ" + +#: ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth2.php:39 +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Lib/Apps.php:393 +msgid "Update" +msgstr "Mise à jour" + +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "P.O. Box" + +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Information complémentaires" + +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Rue" + +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Localité" + +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Région" + +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "ZIP code" + +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "Pays" + +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Agenda par défaut" + +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Carnet d'adresses par défaut" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Ce site n'est pas un serveur d'annuaire" + +#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 +msgid "You must be logged in to see this page." +msgstr "Vous devez vous connecter pour voir cette page." + +#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Publications et commentaires" + +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Seulement les publications" + +#: ../../Zotlabs/Module/Channel.php:107 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Droits d'accès insuffisants. Demande redirigée vers la page du profil." + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Exporter le canal" + +#: ../../Zotlabs/Module/Uexport.php:59 +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, droits d'accès, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Exporter le contenu" + +#: ../../Zotlabs/Module/Uexport.php:61 +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 tous vos contacts, droits d'accès, 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/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Exporter vos publications d'une année en particulier" + +#: ../../Zotlabs/Module/Uexport.php:65 +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/Uexport.php:66 #, php-format -msgid "%s - click to logout" -msgstr "%s - cliquer ici pour déconnecter" +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" -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Authentification distante" +#: ../../Zotlabs/Module/Uexport.php:67 +#, 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" -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "S'authentifier auprès de votre hub" +#: ../../Zotlabs/Module/Uexport.php:68 +#, 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)." -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Page d'accueil" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "Bienvenue sur Hubzilla !" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1527 -msgid "Register" -msgstr "S'inscrire" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "Vous n'avez aucune publication non-vue..." -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Créer un compte" +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accès public refusé." -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Aide" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:163 ../../include/widgets.php:91 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Applications" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Applications, utilitaires, liens, jeux" - -#: ../../include/nav.php:165 ../../include/text.php:914 -#: ../../include/text.php:926 ../../include/apps.php:147 -#: ../../mod/search.php:38 +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 msgid "Search" msgstr "Recherche" -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Rechercher parmi le contenu du site" +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Eléments étiquetés avec : %s" -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "Annuaire" +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "Résultats de recherche pour : %s" -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Annuaire des canaux" +#: ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:131 +msgid "Public Stream" +msgstr "Flux public" -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrice" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Emplacement introuvable." -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Votre matrice" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Echec de la recherche de l'emplacement." -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Marquer toutes les notifications de la matrice comme vues" +#: ../../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." -#: ../../include/nav.php:183 ../../include/apps.php:137 +#: ../../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 ../../Zotlabs/Module/Admin.php:111 +msgid "Primary" +msgstr "Primaire" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Supprimer" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Synchronisez maintenant" + +#: ../../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/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Changer l'ordre des applications épinglées" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Changer l'ordre des applications du menu" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the" +" navbar" +msgstr "Utilisez les flèches pour déplacer l'application correspondante à gauche (en haut) ou à droite (en bas) dans la barre de navigation." + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Utilisez les flèches pour déplacer l'application correspondante vers le haut ou vers le bas dans le panneau d'applications." + +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." +msgstr "Menu introuvable." + +#: ../../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:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Introuvable." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Droits d'accès de l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nom du lien" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Lien ou sous-menu cible" + +#: ../../Zotlabs/Module/Mitem.php:161 +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:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Utiliser l'authentification distante, quand disponible" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:259 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "No" +msgstr "Non" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:261 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/fuzzloc/fuzzloc.php:178 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "Oui" + +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Ouvrir le lien dans une nouvelle fenêtre" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordre dans la liste" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +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:165 +msgid "Submit and finish" +msgstr "Vadiler et terminer" + +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Valider et continuer" + +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu :" + +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Cible du lien" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifier le menu" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifier l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Supprimer l'entrée" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nouvelle entrée" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Éditer ce bloc de menu" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Ajouter une entrée au menu" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Supprimer cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifier cette entrée du menu" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Entrée de menu introuvable." + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Entrée de menu supprimée." + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Impossible de supprimer l'entrée de menu." + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifier l'entrée de menu" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Texte du lien" + +#: ../../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:110 +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:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "Impossible de générer l'aperçu." + +#: ../../Zotlabs/Module/Events.php:119 +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:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "Événement introuvable." + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 +#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 +#: ../../include/text.php:2008 ../../include/event.php:1153 +msgid "event" +msgstr "événement" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Modifier le titre de l'événement" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../include/datetime.php:211 +msgid "Required" +msgstr "Requis" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Modifier la catégorie" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Catégorie" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Modifier la date et l'heure de début" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +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:469 +msgid "Edit finish date and time" +msgstr "Modifier la date et l'heure de fin" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Date et heure de fin" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "Ajuster au fuseau horaire du visiteur" + +#: ../../Zotlabs/Module/Events.php:471 +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:473 +msgid "Edit Description" +msgstr "Modifier la description" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Modifier l'emplacement" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../include/conversation.php:1333 +msgid "Preview" +msgstr "Aperçu" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 +msgid "Permission settings" +msgstr "Gérer les droits d'accès" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Fuseau horaire :" + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Options avancées" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "l, F j" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Supprimer l'événement" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 +#: ../../include/text.php:1827 +msgid "Link to Source" +msgstr "Lien vers la Source" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "calendrier" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Modifier l'événement" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Créer un événement" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 +#: ../../include/channel.php:1647 +msgid "Export" +msgstr "Export" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "Événement supprimé" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "Impossible de supprimer l'événement" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "Application installée." + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "Application mal formée." + +#: ../../Zotlabs/Module/Appman.php:130 +msgid "Embed code" +msgstr "Imbriquer le code" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Edit App" +msgstr "Modifier l'application" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Create App" +msgstr "Créer une application" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Name of app" +msgstr "Nom de l'application" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Location (URL) of app" +msgstr "Emplacement (URL) de l'application" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Photo icon URL" +msgstr "URL de l'icône à utiliser pour cette photo" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - facultatif" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Categories (optional, comma separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Version ID" +msgstr "Identifiant de version" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Price of app" +msgstr "Prix de l'application" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Location (URL) to purchase app" +msgstr "Emplacement (URL) pour l'achat de l'application" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Merci de vous connecter." + +#: ../../Zotlabs/Module/Magic.php:72 +msgid "Hub not found." +msgstr "Hub introuvable." + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:384 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 +#: ../../include/conversation.php:116 ../../include/text.php:2005 +msgid "photo" +msgstr "photo" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1405 +#: ../../include/conversation.php:144 ../../include/text.php:2011 +msgid "status" +msgstr "état" + +#: ../../Zotlabs/Module/Subthread.php:142 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s suit %3$s de %2$s" + +#: ../../Zotlabs/Module/Subthread.php:144 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ne suit plus %3$s de %2$s" + +#: ../../Zotlabs/Module/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "Canal introuvable." + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../include/conversation.php:1278 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../include/conversation.php:1401 +msgid "Title (optional)" +msgstr "Titre (facultatif)" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Éditer l'article" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." +msgstr "Rien à importer." + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Impossible de récupérer les données de l'ancien serveur" + +#: ../../Zotlabs/Module/Import_items.php:77 +#: ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." +msgstr "Le fichier importé est vide." + +#: ../../Zotlabs/Module/Import_items.php:93 +#, 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_items.php:108 +msgid "Import completed" +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Importer" + +#: ../../Zotlabs/Module/Import_items.php:126 +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/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:517 +msgid "File to Upload" +msgstr "Fichier à envoyer" + +#: ../../Zotlabs/Module/New_channel.php:133 +#: ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Vous avez créé %1$.0f des %2$.0f canaux autorisés." + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +msgid "Name or caption" +msgstr "Nom ou libellé" + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +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:148 +#: ../../Zotlabs/Module/Register.php:256 +msgid "Choose a short nickname" +msgstr "Choisissez un alias" + +#: ../../Zotlabs/Module/New_channel.php:148 +#: ../../Zotlabs/Module/Register.php:256 +#, 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:149 +#: ../../Zotlabs/Module/Settings/Channel.php:539 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Channel role and privacy" +msgstr "Rôle et confidentialité du canal" + +#: ../../Zotlabs/Module/New_channel.php:149 +#: ../../Zotlabs/Module/Register.php:257 +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:149 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Read more about roles" +msgstr "En savoir plus sur les rôles" + +#: ../../Zotlabs/Module/New_channel.php:152 +msgid "Create Channel" +msgstr "Créer le canal" + +#: ../../Zotlabs/Module/New_channel.php:153 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed," +" and many other things. Channels can make connections with other channels to" +" share information with each other." +msgstr "Un canal est une identité réseau unique. Il peut représenter une personne (profil de réseau social), un forum (groupe), une page commerciale ou de célébrités, un flux d'informations et bien d'autres choses. Les canaux peuvent établir des connexions avec d'autres canaux pour partager l'information entre eux." + +#: ../../Zotlabs/Module/New_channel.php:153 +msgid "" +"The type of channel you create affects the basic privacy settings, the " +"permissions that are granted to connections/friends, and also the channel's " +"visibility across the network." +msgstr "Le type de canal que vous créez affecte les paramètres de confidentialité de base, les permissions accordées aux connexions/amis, ainsi que la visibilité du canal sur le réseau." + +#: ../../Zotlabs/Module/New_channel.php:154 +msgid "" +"or import an existing channel from another location." +msgstr "ou importer un canal existant d'un autre serveur." + +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Validate" +msgstr "Valider" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte." + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Supprimer ce canal" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "AVERTISSEMENT :" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Ce canal sera complètement supprimé du réseau." + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Cette action est permanente et irréversible !" + +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification :" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Supprimer ce canal ainsi que tous ses clones sur le réseau" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau" + +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:600 +msgid "Remove Channel" +msgstr "Supprimer le canal" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "Fichiers : partagés avec moi" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "NOUVEAU" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 +msgid "Size" +msgstr "Taille" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:286 +msgid "Last Modified" +msgstr "Modifié le" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Supprimer tous les fichiers" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Supprimer ce fichier" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "Serveur $Projectname - configuration" + +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." +msgstr "Impossible de se connecter à la base de données." + +#: ../../Zotlabs/Module/Setup.php:178 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS." + +#: ../../Zotlabs/Module/Setup.php:185 +msgid "Could not create table." +msgstr "Impossible de créer la table." + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." +msgstr "La base de données de votre site a été installée." + +#: ../../Zotlabs/Module/Setup.php:197 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)." + +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:749 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" +msgstr "Vérification du système" + +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" +msgstr "Re-vérifier" + +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" +msgstr "Connexion à la base de données" + +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Pour installer $Projectname, nous avons besoin de savoir comment se connecter à votre base de données." + +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres." + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer." + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Server Name" +msgstr "Nom du serveur de base de données" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "Par défaut 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" +msgstr "Port de la base de données" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" +msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" +msgstr "Identifiant de connexion à la Base de Données" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" +msgstr "Mot de passe de connexion à la Base de Données" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" +msgstr "Nom de la Base de Données" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Type de base de données" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" +msgstr "Adresse de courriel de l'administrateur du site" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web." + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" +msgstr "URL du site web" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." +msgstr "Veuillez utiliser SSL/TLS (https) si disponible." + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" +msgstr "Veuillez choisir un fuseau horaire par défaut pour votre site" + +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" +msgstr "Paramètres du site" + +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP version 5.5 ou supérieur est requis" + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "Version de PHP" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web." + +#: ../../Zotlabs/Module/Setup.php:402 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron." + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "PHP executable path" +msgstr "Chemin vers l'éxecutable PHP" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans." + +#: ../../Zotlabs/Module/Setup.php:411 +msgid "Command line PHP" +msgstr "PHP en ligne de commande (CLI)" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "Impossible de vérifier la ligne de commande PHP, car shell_exec () est désactivé. Ceci est nécessaire." + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée." + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "Elle est nécessaire pour la distribution des messages." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois." + +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Vous pouvez ajuster ces paramètres dans le fichier php.ini du serveur." + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "Limites de téléversement de PHP" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"." + +#: ../../Zotlabs/Module/Setup.php:480 +msgid "Generate encryption keys" +msgstr "Générer les clefs de chiffrement" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "module PHP libCurl" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "module PHP GD graphics" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "module PHP OpenSSL" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "module PDO de la base de données PHP" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "module PHP mb_string" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "module PHP xml" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "module zip PHP" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "module Apache mod_rewrite" + +#: ../../Zotlabs/Module/Setup.php:507 +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:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "exécuter" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "Erreur: exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "shell_exec" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Erreur: shell_exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini" + +#: ../../Zotlabs/Module/Setup.php:527 +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:531 +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:535 +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:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "Erreur: le module PDO de base de données PHP est requis mais n'est pas installé." + +#: ../../Zotlabs/Module/Setup.php:543 +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:547 +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:551 +msgid "Error: zip PHP module required but not installed." +msgstr "Erreur : le module zip de PHP est requis, mais pas installé." + +#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +msgid ".htconfig.php is writable" +msgstr "Le fichier .htconfig.php est accessible en écriture" + +#: ../../Zotlabs/Module/Setup.php:575 +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:576 +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 d'accès, à 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:577 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "Merci de vous reporter à install/INSTALL.txt pour des informations supplémentaires." + +#: ../../Zotlabs/Module/Setup.php:593 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "Ce logiciel utilise Smarty3 comme moteur de modèles pour afficher ses vues Web. Smarty3 compile ses modèles en PHP pour accélérer le rendu." + +#: ../../Zotlabs/Module/Setup.php:594 +#, 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 "Afin de stocker ces modèles compilés, le serveur Web doit disposer d'un accès en écriture au répertoire %s selon le dossier Web racine." + +#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 +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:596 +#, 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:599 +#, php-format +msgid "%s is writable" +msgstr "Permission d'écriture sur %s activée" + +#: ../../Zotlabs/Module/Setup.php:615 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level" +" web folder" +msgstr "Ce logiciel utilise le répertoire de stockage pour enregistrer les fichiers téléversés. Le serveur Web doit disposer d'un accès en écriture au répertoire de stockage selon le dossier web racine." + +#: ../../Zotlabs/Module/Setup.php:619 +msgid "store is writable" +msgstr "'store' est accessible en écriture" + +#: ../../Zotlabs/Module/Setup.php:651 +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:652 +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:653 +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:654 +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:655 +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:656 +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:658 +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 "Si vous êtes certain que le certificat est valide et signé par une autorité de confiance, vérifiez si l'installation d'un certificat intermédiaire aurait échoué. Ceux-ci ne sont normalement pas requis par les navigateurs, mais ils sont requis pour les communications entre serveurs." + +#: ../../Zotlabs/Module/Setup.php:660 +msgid "SSL certificate validation" +msgstr "Validation du certificat SSL/TLS" + +#: ../../Zotlabs/Module/Setup.php:666 +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:669 +msgid "Url rewrite is working" +msgstr "La réécriture d'URL fonctionne" + +#: ../../Zotlabs/Module/Setup.php:683 +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:707 +#: ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "Erreurs rencontrées pendant la création de tables de BDD." + +#: ../../Zotlabs/Module/Setup.php:747 +msgid "

What next?

" +msgstr "

Et maintenant ?

" + +#: ../../Zotlabs/Module/Setup.php:748 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau." + +#: ../../Zotlabs/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/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Statistiques de file d'attente" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Nombre d'entrées total" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Priorité" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "URL de destination" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Marquer le hub comme étant hors ligne de manière permanente" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Vider la file d'attente pour ce hub" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Dernier contact connu" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "Off" +msgstr "Inactif" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "On" +msgstr "Actif" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Verrouiller fonctionnalité %s" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Gérer les fonctionnalités additionnelles" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "La mise à jour a été marquée comme réussie" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La mise à jour %s a été appliquée avec succès." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "La fonction de mise à jour %s est introuvable." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Mises à jour défaillantes" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Tenter de réaliser cette étape de mise à jour automatiquement" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Aucune mise à jour défaillante." + +#: ../../Zotlabs/Module/Admin/Plugins.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 +#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3619 +msgid "Item not found." +msgstr "Élément introuvable" + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "Greffon %s désactivé." + +#: ../../Zotlabs/Module/Admin/Plugins.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "Greffon %s activé." + +#: ../../Zotlabs/Module/Admin/Plugins.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "Désactiver" + +#: ../../Zotlabs/Module/Admin/Plugins.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "Activer" + +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Administration" +msgstr "Administration" + +#: ../../Zotlabs/Module/Admin/Plugins.php:342 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +#: ../../Zotlabs/Widget/Admin.php:27 +msgid "Plugins" +msgstr "Greffons" + +#: ../../Zotlabs/Module/Admin/Plugins.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "(Dés)activer" + +#: ../../Zotlabs/Module/Admin/Plugins.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 +#: ../../include/nav.php:192 +msgid "Settings" +msgstr "Paramètres" + +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "Auteur :" + +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "Maintenu par :" + +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +msgid "Minimum project version: " +msgstr "Version minimum du projet :" + +#: ../../Zotlabs/Module/Admin/Plugins.php:354 +msgid "Maximum project version: " +msgstr "Version maximum du projet :" + +#: ../../Zotlabs/Module/Admin/Plugins.php:355 +msgid "Minimum PHP version: " +msgstr "Version minimum de PHP :" + +#: ../../Zotlabs/Module/Admin/Plugins.php:356 +msgid "Compatible Server Roles: " +msgstr "Rôles du serveur " + +#: ../../Zotlabs/Module/Admin/Plugins.php:357 +msgid "Requires: " +msgstr "Requiert :" + +#: ../../Zotlabs/Module/Admin/Plugins.php:358 +#: ../../Zotlabs/Module/Admin/Plugins.php:442 +msgid "Disabled - version incompatibility" +msgstr "Désactivé - version incompatible" + +#: ../../Zotlabs/Module/Admin/Plugins.php:411 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Entrer l'URL du dépôt git public pour les greffons" + +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Plugin repo git URL" +msgstr "URL du git pour les plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "Custom repo name" +msgstr "Nom du dépôt" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "(optional)" +msgstr "(en option)" + +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +msgid "Download Plugin Repo" +msgstr "Télécharger l'extension" + +#: ../../Zotlabs/Module/Admin/Plugins.php:421 +msgid "Install new repo" +msgstr "Installer un nouveau dépôt" + +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 +msgid "Install" +msgstr "Installer" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +msgid "Manage Repos" +msgstr "Gérer les dépôts" + +#: ../../Zotlabs/Module/Admin/Plugins.php:446 +msgid "Installed Plugin Repositories" +msgstr "Dépôt des extensions installées" + +#: ../../Zotlabs/Module/Admin/Plugins.php:447 +msgid "Install a New Plugin Repository" +msgstr "Installer un nouveau dépôt pour extensions" + +#: ../../Zotlabs/Module/Admin/Plugins.php:454 +msgid "Switch branch" +msgstr "Changer de branche" + +#: ../../Zotlabs/Module/Admin/Plugins.php:455 +#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" +msgstr "Retirer" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s compte bloqué/débloqué" +msgstr[1] "%s comptes bloqués/débloqués" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s compte supprimé" +msgstr[1] "%s comptes supprimés" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "Compte introuvable" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 +#, php-format +msgid "Account '%s' deleted" +msgstr "Compte '%s' supprimé" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "Compte '%s' bloqué" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Compte '%s' débloqué" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "Comptes" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "tout sélectionner" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "Inscriptions en attente d'approbation" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "Date de la demande" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "Pas d'inscriptions." + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 +msgid "Approve" +msgstr "Approuver" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:26 +msgid "Deny" +msgstr "Refuser" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "Bloquer" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Unblock" +msgstr "Débloquer" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "Identifiant" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 +msgid "All Channels" +msgstr "Tous les canaux" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "Date d'inscription" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "Dernière connexion" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "Expire le" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "Classe de service" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Paramètres du journal mis à jour." + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "Journaux" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Vider" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Débogage" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Fichier du journal" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Doit être permettre d'écrire par le serveur web. En relation avec le répertoire de votre site." + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Niveau de journalisation" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canal censuré/dé-censuré" +msgstr[1] "%s canaux censurés/dé-censurés" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "code autorisé/interdit pour %s canal" +msgstr[1] "code autorisé/interdit pour %s canaux" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canal supprimé" +msgstr[1] "%s canaux supprimés" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Canal introuvable" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' supprimé" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censuré" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' non censuré" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code autorisé pour le canal '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code interdit pour le canal '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "Canaux" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Censurer" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "Ne plus censurer" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Autoriser le code" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Interdire le code" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1811 ../../include/nav.php:378 +msgid "Channel" +msgstr "Canal" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les canaux sélectionnés seront supprimés !\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé !\\n\\nÊtes-vous sûr ?" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Le canal {0} sera supprimé !\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé !\\n\\nÊtes-vous sûr(e) ?" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "Paramètres du thème mis à jour." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Capture d'écran" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "Thèmes" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Expérimental]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[Non maintenu]" + +#: ../../Zotlabs/Module/Admin/Site.php:165 +msgid "Site settings updated." +msgstr "Paramètres du site sauvegardés." + +#: ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 +msgid "Default" +msgstr "Défaut" + +#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (Incompatible)" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "mobile" +msgstr "mobile" + +#: ../../Zotlabs/Module/Admin/Site.php:211 +msgid "experimental" +msgstr "expérimental" + +#: ../../Zotlabs/Module/Admin/Site.php:213 +msgid "unsupported" +msgstr "non maintenu" + +#: ../../Zotlabs/Module/Admin/Site.php:260 +msgid "Yes - with approval" +msgstr "Oui - avec approbation" + +#: ../../Zotlabs/Module/Admin/Site.php:266 +msgid "My site is not a public server" +msgstr "Mon site n'est pas un serveur public" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "My site has paid access only" +msgstr "Mon site est à accès payant uniquement" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "My site has free access only" +msgstr "Mon site est gratuit uniquement" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +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/Site.php:281 +msgid "Beginner/Basic" +msgstr "Pour débutant/ de base" + +#: ../../Zotlabs/Module/Admin/Site.php:282 +msgid "Novice - not skilled but willing to learn" +msgstr "Novice - pas qualifiés, mais prêt à apprendre" + +#: ../../Zotlabs/Module/Admin/Site.php:283 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermédiaire - assez confortable" + +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Advanced - very comfortable" +msgstr "Niveau avancé - trés confortable" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Expert - I can write computer code" +msgstr "Niveau expert - Je peux programmer" + +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "Wizard - I probably know more than you do" +msgstr "Crack - J'en sais probablement plus que beaucoup" + +#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "Site" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Register.php:269 +msgid "Registration" +msgstr "Inscription" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "File upload" +msgstr "Envoi de fichier" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Policies" +msgstr "Stratégies" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avancé" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../addon/statusnet/statusnet.php:891 +msgid "Site name" +msgstr "Nom du site" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Site default technical skill level" +msgstr "Niveau technique par défaut pour le site" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Utilisé pour fournir une expérience utilisateur correspondant au niveau de confort technique" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Lock the technical skill level setting" +msgstr "Bloque le niveau technique du paramétrage" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Members can set their own technical comfort level by default" +msgstr "Les utilisateurs peuvent paramétrer leur propre niveau technique." + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Banner/Logo" +msgstr "Bannière/logo" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Autoriser le HTML/CSS/JS non filtré" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Administrator Information" +msgstr "Informations de l'administrateur" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Information" +msgstr "Site information" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Description du site visible publiquement. Affiché sur la page d'information du site. BBCode peut être utilisé ici." + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "System language" +msgstr "Langue du système" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "System theme" +msgstr "Thème du système" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Allow Feeds as Connections" +msgstr "Autoriser les Flux (RSS) comme contacts" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "(Heavy system resource usage)" +msgstr "(Impact important sur les ressources)" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Maximum image size" +msgstr "Taille maximale des images" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite." + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Does this site allow new member registration?" +msgstr "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site ?" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Invitation only" +msgstr "Sur invitation seulement" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"." + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age" +msgstr "Âge minimum" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Âge minimum (en années) pour les personnes pouvant s'inscrire sur ce site." + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Quelle est la meilleure description des types de comptes proposés sur ce hub ?" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Register text" +msgstr "Texte d'inscription" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Will be displayed prominently on the registration page." +msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription." + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Page d'accueil du site à montrer aux visiteurs (par défaut : boîte de dialogue de connexion)" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "exemple :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Preserve site homepage URL" +msgstr "Préserver l'adresse d'accueil du site" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Accounts abandoned after x days" +msgstr "Les comptes sont abandonnés après x jours" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps." + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Allowed friend domains" +msgstr "Domaines amicaux autorisés" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Verify Email Addresses" +msgstr "Demander vérification des adresses de courriel" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)." + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Force publish" +msgstr "Publicité forcée" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire." + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Import Public Streams" +msgstr "Flux publics importés" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention : ce contenu n'est pas modéré." + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Site only Public Streams" +msgstr "Flux publics du site seulement" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Autoriser l'accès au contenu public provenant uniquement de ce site si les flux publics importés sont désactivés." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Permettre à n'importe qui sur Internet d'accéder aux flux publics." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Désactiver l'authentification avant l'affichage. Attention : ce contenu n'est pas modéré." + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Login on Homepage" +msgstr "Connexion sur la page d'accueil" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré." + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Enable context help" +msgstr "Permettre l'aide contextuelle" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Afficher l'aide contextuel en cliquant sur le bouton aide." + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Reply-to email address for system generated email." +msgstr "Adresse courriel de retour pour les courriels générés par l'application." + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Sender (From) email address for system generated email." +msgstr "Adresse courriel de l'expéditeur (champ \"De\") pour les courriels générés par l'application." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Name of email sender for system generated email." +msgstr "Nom ou courriel de l'expéditeur pour les courriels générés par l'application." + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Directory Server URL" +msgstr "URL du serveur d'annuaire" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Default directory server" +msgstr "Serveur d'annuaire par défaut" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Proxy user" +msgstr "Utilisateur du proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Proxy URL" +msgstr "URL du proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Network timeout" +msgstr "Délai maximal du réseau" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)." + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Delivery interval" +msgstr "Intervalle de distribution" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés." + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Deliveries per process" +msgstr "Distributions par processus" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé:1-5." + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Queue Threshold" +msgstr "Seuil de file d'attente" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Reportez toujours la livraison immédiate si la file d'attente contient plus que ce nombre d'entrées." + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Poll interval" +msgstr "Intervalle de scrutation" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution." + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "Path to ImageMagick convert program" +msgstr "Chemin d'accès au programme \"convert\" de ImageMagick" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Si cette option est activée, utilisez ce programme pour générer des vignettes de photos pour des images géantes ( > 4000 pixels dans l'une ou l'autre dimension), sinon la mémoire risque de s'épuiser. Exemple : /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Allow SVG thumbnails in file browser" +msgstr "Autoriser les vignettes SVG dans le navigateur de fichiers" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "WARNING: SVG images may contain malicious code." +msgstr "ATTENTION : les images SVG peuvent contenir du code malveillant." + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "Maximum Load Average" +msgstr "Charge maximale moyenne" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50." + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Délai d'expiration en jours pour le contenu importé (grille/réseau)" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "0 for no expiration of imported content" +msgstr "0 pour ne pas expirer le contenu importé" + +#: ../../Zotlabs/Module/Admin/Site.php:353 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "Ne pas considérer comme expirés les messages qui ont reçu des commentaires depuis moins de ce nombre de jours" + +#: ../../Zotlabs/Module/Admin/Site.php:355 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Serveurs publics : page Web facultative d'atterrissage (marketing) pour les nouveaux inscrits." + +#: ../../Zotlabs/Module/Admin/Site.php:355 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Créez d'abord cette page. La valeur par défaut est %s /register" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Page to display after creating a new channel" +msgstr "Page à afficher après la création d'un nouveau canal" + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Recommend: profiles, go, or settings" +msgstr "Recommander : profils, go, ou paramètres" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Optional: site location" +msgstr "Option : emplacement du site" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Region or country" +msgstr "Région ou pays" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Nouveau champ de profil" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Nom court du champ" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "Nom système du champ" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Type de champ" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Nom du champ" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Étiquette sur les pages de profil" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Aide à la saisie" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Informations additionnelles (facultatif)" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 +msgid "Save" +msgstr "Enregistrer" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "Définition du champ introuvable" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Modifier le champ de profil" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "Champs de profil" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Champs de profil de base" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Champs de profil avancés" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "(en plus des champs de base)" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Tous les champs disponibles" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "Champs personnalisés" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Créer un champ personnalisé" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "Le mot de passe a été modifié pour le compte %d." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "Paramétrage du compte mis à jour" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "Compte introuvable" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Modifier votre compte" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Nouveau mot de passe (encore)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Niveau technique" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Langue de votre compte (pour email)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Classe de service" + +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Par défaut le code HTML est autorisé pour les média par exemple les vidéos embarquées. Cependant cela peut poser un faille de sécurité." + +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Ce paramétrage autorisant le HTML pour les sites suivants." + +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" + +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Les contenus html seront filtrés sauf ceux des sites explicitement bloqués." + +#: ../../Zotlabs/Module/Admin/Security.php:87 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "Sécurité" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Bloquer \"public\"" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Sélectionner pour ne permettre l'accès aux pages personnelles \"publiques\" du site qu'aux personnes authentifiées, pas aux personnes anonymes du web." + +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Paramétrer \"Transport Security\" pour l'entête HTTP" + +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Paramétrer \"Content Security Policy\" pour l'entête HTTP" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Domaines de courriels autorisés" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Domaines de courriel non autorisés" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis." + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "N'autorisez que les communications venant de ces sites" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un site par ligne. Laisser vide pour autoriser les communications de tous les sites, par défaut." + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Bloquer les communications de ces sites" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "N'autoriser que les communications de ces canaux" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (adresse) par ligne. Laisser vide pour autoriser les communications de tous les canaux, par défaut" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Bloquer les communications de ces canaux" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Seuls les sites et liens sécurisés sont autorisé pour intégrer du code HTML" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Autoriser le contenu HTML embarqué uniquement à partir de ces domaines" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un site par ligne. Par défaut le contenu embarqué est filtré." + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Bloquer le HTML embarqué à partir de ces domaines" + +#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "Profil" + +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "Commentaire validé" + +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "Commentaire supprimé" + +#: ../../Zotlabs/Module/Settings/Permcats.php:23 +msgid "Permission Name is required." +msgstr "Le nom de permission est requis." + +#: ../../Zotlabs/Module/Settings/Permcats.php:42 +msgid "Permission category saved." +msgstr "Profil d'accès enregistré." + +#: ../../Zotlabs/Module/Settings/Permcats.php:66 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Utilisez ce formulaire pour créer des règles d'accès pour différentes catégories de personnes ou de contacts." + +#: ../../Zotlabs/Module/Settings/Permcats.php:99 +msgid "Permission Categories" +msgstr "Profils d'accès" + +#: ../../Zotlabs/Module/Settings/Permcats.php:107 +msgid "Permission Name" +msgstr "Nom du droit d'accès" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +msgid "My Settings" +msgstr "Mes paramètres" + +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +msgid "inherited" +msgstr "héritée" + +#: ../../Zotlabs/Module/Settings/Permcats.php:113 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +msgid "Individual Permissions" +msgstr "Droits d'accès individuels" + +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:894 +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 "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous ne pouvez pas modifier ces droits d'accès-ci ici." + +#: ../../Zotlabs/Module/Settings/Channel.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:83 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:437 +#: ../../include/channel.php:438 ../../include/channel.php:445 +msgid "Friends" +msgstr "Amis" + +#: ../../Zotlabs/Module/Settings/Channel.php:264 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "Paramètres mis à jour." + +#: ../../Zotlabs/Module/Settings/Channel.php:325 +msgid "Nobody except yourself" +msgstr "Personne sauf vous" + +#: ../../Zotlabs/Module/Settings/Channel.php:326 +msgid "Only those you specifically allow" +msgstr "Seulement ceux que vous autorisez spécifiquement" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Approved connections" +msgstr "Contacts validés" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Any connections" +msgstr "Tous les contacts" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Anybody on this website" +msgstr "Tous les utilisateurs du hub" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Anybody in this network" +msgstr "Tous les utilisateurs sur ce réseau" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody authenticated" +msgstr "Tous les utilisateurs authentifiés" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody on the internet" +msgstr "Tous les utilisateurs d'Internet" + +#: ../../Zotlabs/Module/Settings/Channel.php:407 +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/Channel.php:412 +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/Channel.php:416 +msgid "or" +msgstr "ou" + +#: ../../Zotlabs/Module/Settings/Channel.php:425 +msgid "Your channel address is" +msgstr "L'adresse de votre canal est" + +#: ../../Zotlabs/Module/Settings/Channel.php:428 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "Vos fichiers/photos sont accessibles via WebDAV à" + +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Channel Settings" +msgstr "Paramètres du canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Basic Settings" +msgstr "Paramètres standard" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +#: ../../include/channel.php:1521 +msgid "Full Name:" +msgstr "Nom complet :" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Adresse de courriel :" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Your Timezone:" +msgstr "Votre fureau horaire :" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Default Post Location:" +msgstr "Emplacement de publication par défaut :" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Geographical location to display on your posts" +msgstr "Emplacement géographique à afficher sur vos publications" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Use Browser Location:" +msgstr "Utiliser la géolocalisation du navigateur :" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Adult Content" +msgstr "Contenu \"adulte\"" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +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/Channel.php:509 +msgid "Security and Privacy Settings" +msgstr "Paramètres de sécurité et de confidentialité" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Vous droits d'accès sont déjà paramétrés. Cliquer pour voir/modifier" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Hide my online presence" +msgstr "Cacher ma présence en ligne" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Prevents displaying in your profile that you are online" +msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "Simple Privacy Settings:" +msgstr "Paramètres de confidentialité simplifiés :" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +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/Channel.php:517 +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 droits d'accès type réseau social, avec une confidentialité améliorée)" + +#: ../../Zotlabs/Module/Settings/Channel.php:518 +msgid "Private - default private, never open or public" +msgstr "Privé - privé par défaut, jamais ouvert ni public" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Allow others to tag your posts" +msgstr "Autoriser les autres à \"étiqueter\" vos publications" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +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/Channel.php:523 +msgid "Channel Permission Limits" +msgstr "Limites des droits d'accès du canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Expire other channel content after this many days" +msgstr "Faire expirer le contenu des autres canaux après n jours" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "0 or blank to use the website limit." +msgstr "0 ou vide pour utiliser la limite du site web" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +#, php-format +msgid "This website expires after %d days." +msgstr "Ce site web expirera après %d jours." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "This website does not expire imported content." +msgstr "Ce site web ne périme pas le contenu importé." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "The website limit takes precedence if lower than your limit." +msgstr "La limite du site Web a priorité si elle est inférieure à votre limite." + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximum de demandes de contact par jour :" + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "May reduce spam activity" +msgstr "Contribue à réduire l'impact des indésirables" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Default Privacy Group" +msgstr "Groupe de contacts par défaut :" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "Use my default audience setting for the type of object published" +msgstr "Utiliser mon paramètre de publication par défaut pour le type d'objet publié" + +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Profile to assign new connections" +msgstr "Profil pour assigner de nouvelles connexions" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default Permissions Group" +msgstr "Groupe d'accès par défaut" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Maximum private messages per day from unknown people:" +msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Useful to reduce spamming" +msgstr "Utile pour réduire les indésirables" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Paramètres de notification" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "By default post a status message when:" +msgstr "Par défaut, publier un statut quand :" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "accepting a friend request" +msgstr "vous acceptez une demande de contact" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "joining a forum/community" +msgstr "vous rejoignez un forum ou une communauté" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "making an interesting profile change" +msgstr "vous faîtes une modification intéressante de votre profil" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand :" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a connection request" +msgstr "Vous recevez une demande de contact" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Your connections are confirmed" +msgstr "Vos contacts sont confirmés" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un a écrit sur votre mur" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un a commenté vos publications" + +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "You receive a friend suggestion" +msgstr "Vous recevez une suggestion d'amitié/contact" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "You are tagged in a post" +msgstr "Vous êtes étiqueté dans une publication" + +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous êtes tapoté/encouragé/etc. dans une publication" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 +msgid "Someone likes your post/comment" +msgstr "Quelqu'un aime votre publication/commentaire" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Show visual notifications including:" +msgstr "Afficher des notifications visuelles y compris :" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Unseen grid activity" +msgstr "Activité du réseau pas encore consultée" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Unseen channel activity" +msgstr "Activité non vue sur le canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "Unseen private messages" +msgstr "Messages privés non lus" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "Recommandé" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Upcoming events" +msgstr "Événements à venir" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "Events today" +msgstr "Événements aujourd'hui" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Upcoming birthdays" +msgstr "Anniversaires à venir" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Not available in all themes" +msgstr "Pas disponible dans tous les thèmes" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System (personal) notifications" +msgstr "Notifications système (personnelles)" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "System info messages" +msgstr "Messages d'info système" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "System critical alerts" +msgstr "Alertes critiques système" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "New connections" +msgstr "Nouveaux contacts" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "System Registrations" +msgstr "Inscriptions système" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Unseen shared files" +msgstr "Fichiers partagés non vus" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Unseen public activity" +msgstr "Activité publique non vue" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Unseen likes and dislikes" +msgstr "Aime et n'aime pas non consultés" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Email notification hub (hostname)" +msgstr "Concentrateur de notification par courriel (nom d'hôte)" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "Si votre canal est dupliqué sur plusieurs hubs, définissez cet emplacement comme votre emplacement préféré. Cela empêchera les notifications par courriel en double. Exemple : %s" + +#: ../../Zotlabs/Module/Settings/Channel.php:584 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "Montrer les nouveaux envois, messages privés et les nouvelles connexions dans Notifications" + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +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/Channel.php:586 +msgid "Must be greater than 0" +msgstr "Doit être supérieur à 0" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/type de page" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +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/Channel.php:595 +msgid "Miscellaneous Settings" +msgstr "Paramètres divers" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "Default photo upload folder" +msgstr "Répertoire par défaut pour les photos téléversées" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "%Y - current year, %m - current month" +msgstr "%Y - année en cours, %m - mois en cours" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Default file upload folder" +msgstr "Répertoire par défaut pour les fichiers téléversés" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personnel à afficher sur les pages de votre canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Remove this channel." +msgstr "Supprimer ce canal" + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Firefox Share $Projectname provider" +msgstr "Connecteur $Projectname pour Firefox Share" + +#: ../../Zotlabs/Module/Settings/Channel.php:603 +msgid "Start calendar week on Monday" +msgstr "Commencer la semaine du calendrier le lundi" + +#: ../../Zotlabs/Module/Settings/Features.php:73 +msgid "Additional Features" +msgstr "Fonctionnalités additionnelles" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "Votre niveau technique" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Utilisé pour offrir une expérience de membre et des fonctions supplémentaires compatibles avec votre niveau de confort." + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Ce canal est limité à %d jetons" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Le nom et le mot de passe sont requis" + +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Jeton sauvegardé" + +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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 private content." +msgstr "Utilisez ce formulaire pour créer des identifiants d'accès temporaires pour partager des informations avec des non-membres. Ces identités peuvent être utilisées dans les listes de contrôle d'accès et les visiteurs peuvent se connecter en utilisant ces certificats d'identification pour accéder au contenu privé." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +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 "Vous pouvez également fournir des liens d'accès, style dropbox, aux amis et aux associés en ajoutant le mot de passe de connexion à l'URL d'un site spécifique, comme indiqué. Exemples:" + +#: ../../Zotlabs/Module/Settings/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:100 +msgid "Guest Access Tokens" +msgstr "Jeton d'accès pour un invité" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nom d'utilisateur" + +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Mot de passe" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Date d'expiration sous la forme année mois jour (AAAA-MM-JJ)" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "Their Settings" +msgstr "Leurs paramètres" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:35 +msgid "Name and Secret are required" +msgstr "Un nom et un secret sont requis" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:83 +msgid "Add OAuth2 application" +msgstr "Ajouter une application OAuth2" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +msgid "Name of application" +msgstr "Nom de l'application" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 +msgid "Consumer Secret" +msgstr "Secret client" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +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/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Redirect" +msgstr "Redirection" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +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/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +msgid "Grant Types" +msgstr "Types de bourses" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "leave blank unless your application sepcifically requires this" +msgstr "Laisser vide, sauf si votre application le requiert spécifiquement" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "Authorization scope" +msgstr "Portée de l'autorisation" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:102 +msgid "OAuth2 Application not found." +msgstr "Application OAuth2 introuvable" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:111 +#: ../../Zotlabs/Module/Settings/Oauth2.php:148 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +msgid "Add application" +msgstr "Ajouter une application" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:147 +msgid "Connected OAuth2 Apps" +msgstr "Applications OAuth2 connectées" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:151 +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "Client key starts with" +msgstr "La clef partagée commence par" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:152 +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "No name" +msgstr "Sans nom" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:153 +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Adresse de courriel non valide." + +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "Adresse de courriel protégée. Impossible de l'utiliser." + +#: ../../Zotlabs/Module/Settings/Account.php:32 +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/Account.php:40 +msgid "Technical skill level updated" +msgstr "Niveau technique mis à jour" + +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "La vérification du mot de passe a échoué." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +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/Account.php:67 +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/Account.php:81 +msgid "Password changed." +msgstr "Le mot de passe a été changé." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau." + +#: ../../Zotlabs/Module/Settings/Account.php:112 +msgid "Account Settings" +msgstr "Paramètres du compte" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Mot de passe actuel" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Entrez votre nouveau mot de passe" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Confirmez le nouveau mot de passe" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier" + +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Supprimer le compte" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Supprimer ce compte et tous ses canaux" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "Paramètres de la réglette d'affinité mis à jour." + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "Aucun paramètre de fonctionnalité configuré" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "Niveau d'affinité maximum par défaut" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 par défaut 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "Niveau d'affinité minimum par défaut" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 par défaut 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "Paramètres de la réglette d'affinité" + +#: ../../Zotlabs/Module/Settings/Featured.php:67 +msgid "Addon Settings" +msgstr "Paramètres du greffon" + +#: ../../Zotlabs/Module/Settings/Featured.php:68 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Veuillez enregistrer/soumettre les changements à n'importe quel panneau avant d'en ouvrir un autre." + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Expérimental)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Afficher les paramètres" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Paramètres du thème" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Paramètres personnels du thème" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Paramètres liés au contenu" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Afficher le thème :" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Définir la palette de couleurs" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Pré-charger les images avant d'afficher la page" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +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/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Permettre à l'utilisateur d'un mobile d'agrandir le contenu" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Mettre à jour le navigateur toutes les xx secondes" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 secondes, pas de maximum" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +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/Display.php:202 +msgid "Maximum of 100 items" +msgstr "100 éléments au maximum" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Remplacer les émoticônes (smileys) par des images" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "Fournir le menu du canal dans la barre de navigation" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "Par défaut : menu du canal situé dans le menu de l'application." + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "Manuel de mises à jour des conversations" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "Activé par défaut, le désactiver peut accroître les sauts d'écran" + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Lier les titres des publications à leur source" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editeur de mise en page des pages systèmes - (avancé)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Utiliser le mode blog/liste sur la page du canal" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(commentaires affichés séparément)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on grid page" +msgstr "Utiliser le mode blog/liste sur la page du réseau" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Channel page max height of content (in pixels)" +msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "click to expand content exceeding this height" +msgstr "cliquer pour dérouler le contenu dépassant cette limite" + +#: ../../Zotlabs/Module/Settings/Display.php:213 +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/Oauth.php:35 +msgid "Name is required" +msgstr "Le nom est requis" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "Clef et secret sont requis" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 +msgid "Consumer Key" +msgstr "Clef client" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "URL de l'icône" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facultatif" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "Application introuvable." + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "Modifier l'album" + +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Photos.php:712 +#: ../../Zotlabs/Module/Profile_photo.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:362 +#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 +#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Achievements.php:38 +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/Thing.php:120 +msgid "Thing updated" +msgstr "Elément mis à jour" + +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" +msgstr "Stockage de l'objet : échec" + +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" +msgstr "Elément ajouté" + +#: ../../Zotlabs/Module/Thing.php:202 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" +msgstr "Montrer élément" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." +msgstr "élément introuvable." + +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" +msgstr "Modifier élément" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" +msgstr "Choisissez un profil" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" +msgstr "Publier une activité" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" +msgstr "Envoie exclusivement aux visiteurs du profil concerné" + +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" +msgstr "Nom de l'élément, p.ex. quelque-chose" + +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" +msgstr "URL de l'élément (facultatif)" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "URL d'une photo de l'élément (facultatif)" + +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:147 +#: ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "Droits d'accès" + +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" +msgstr "Ajouter l'élément à votre profil" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:57 +msgid "No more system notifications." +msgstr "Pas d'autre notification du système." + +#: ../../Zotlabs/Module/Notify.php:65 +#: ../../Zotlabs/Module/Notifications.php:61 +msgid "System Notifications" +msgstr "Notifications du système" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "Connexion ajoutée." + +#: ../../Zotlabs/Module/Import.php:144 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Votre forfait n'autorise que %d canaux." + +#: ../../Zotlabs/Module/Import.php:158 +msgid "No channel. Import failed." +msgstr "Pas de canal. Echec de l'import." + +#: ../../Zotlabs/Module/Import.php:482 +#: ../../addon/diaspora/import_diaspora.php:139 +msgid "Import completed." +msgstr "L'import est terminé." + +#: ../../Zotlabs/Module/Import.php:510 +msgid "You must be logged in to use this feature." +msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." + +#: ../../Zotlabs/Module/Import.php:515 +msgid "Import Channel" +msgstr "Importation de canal" + +#: ../../Zotlabs/Module/Import.php:516 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import." + +#: ../../Zotlabs/Module/Import.php:518 +msgid "Or provide the old server/hub details" +msgstr "Ou fournissez les détails de l'ancien serveur/hub" + +#: ../../Zotlabs/Module/Import.php:519 +msgid "Your old identity address (xyz@example.com)" +msgstr "Votre ancienne identité (zyx@exemple.com)" + +#: ../../Zotlabs/Module/Import.php:520 +msgid "Your old login email address" +msgstr "Votre ancienne adresse de courriel" + +#: ../../Zotlabs/Module/Import.php:521 +msgid "Your old login password" +msgstr "Votre ancien mot de passe" + +#: ../../Zotlabs/Module/Import.php:522 +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/Import.php:523 +msgid "Make this hub my primary location" +msgstr "Faire de ce hub mon emplacement primaire" + +#: ../../Zotlabs/Module/Import.php:524 +msgid "Move this channel (disable all previous locations)" +msgstr "Déplacer ce canal (désactiver tous les emplacements précédents)" + +#: ../../Zotlabs/Module/Import.php:525 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Importer plusieurs mois de messages si possible (limité par la mémoire disponible)" + +#: ../../Zotlabs/Module/Import.php:526 +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/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Échec de l'authentification." + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 +#: ../../include/channel.php:2318 +msgid "Remote Authentication" +msgstr "Authentification distante" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 +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:77 ../../include/channel.php:2320 +msgid "Authenticate" +msgstr "Authentifier" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Accès refusés." + +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 +msgid "Import" +msgstr "Import" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Revenez dans votre application et mettez le code de sécurité" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Merci de vous identifier pour continuer." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Élément indisponible." + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Modifier le bloc" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "vcard" + +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 +msgid "Apps" +msgstr "Applications" + +#: ../../Zotlabs/Module/Apps.php:51 +msgid "Manage apps" +msgstr "Gérer les applications" + +#: ../../Zotlabs/Module/Apps.php:52 +msgid "Create new app" +msgstr "Créer une application" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 +#, 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:253 +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/Connections.php:55 +#: ../../Zotlabs/Module/Connections.php:112 +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Active" +msgstr "Active" + +#: ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Blocked" +msgstr "Bloqué(e)" + +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Ignored" +msgstr "Ignoré(e)" + +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:185 +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Hidden" +msgstr "Caché" + +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Archived/Unreachable" +msgstr "Archivé/Injoignable" + +#: ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 +#: ../../Zotlabs/Module/Notifications.php:52 +#: ../../include/conversation.php:1717 +msgid "New" +msgstr "Nouveautés" + +#: ../../Zotlabs/Module/Connections.php:94 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 +msgid "All" +msgstr "Tous" + +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" +msgstr "Connexions actives" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" +msgstr "Voir les connexions actives" + +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "Nouveaux contacts" + +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" +msgstr "Voir les (nouveaux) contacts en attente" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Only show blocked connections" +msgstr "Ne montrer que les contacts bloqués" + +#: ../../Zotlabs/Module/Connections.php:174 +msgid "Only show ignored connections" +msgstr "Ne montrer que les contacts ignorés" + +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show archived/unreachable connections" +msgstr "Ne montrer que les contacts archivés/injoignables" + +#: ../../Zotlabs/Module/Connections.php:188 +msgid "Only show hidden connections" +msgstr "Ne montrer que les contacts cachés" + +#: ../../Zotlabs/Module/Connections.php:203 +msgid "Show all connections" +msgstr "Voir tous les contacts" + +#: ../../Zotlabs/Module/Connections.php:257 +msgid "Pending approval" +msgstr "En attente de validation" + +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Archived" +msgstr "Archivé" + +#: ../../Zotlabs/Module/Connections.php:262 +msgid "Not connected at this location" +msgstr "Contact introuvable à cette adresse" + +#: ../../Zotlabs/Module/Connections.php:279 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Edit connection" +msgstr "Modifier le contact" + +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Delete connection" +msgstr "Supprimer le contact" + +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Channel address" +msgstr "Adresse du canal" + +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Network" +msgstr "Réseau" + +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Call" +msgstr "Appeler" + +#: ../../Zotlabs/Module/Connections.php:298 +msgid "Status" +msgstr "État" + +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Connected" +msgstr "Ami depuis" + +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Approve connection" +msgstr "Valider le contact" + +#: ../../Zotlabs/Module/Connections.php:304 +msgid "Ignore connection" +msgstr "Ignorer le contact" + +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../Zotlabs/Module/Connections.php:306 +msgid "Recent activity" +msgstr "Activité récente" + +#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 +msgid "Connections" +msgstr "Contacts" + +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Search your connections" +msgstr "Chercher parmi vos contacts" + +#: ../../Zotlabs/Module/Connections.php:337 +msgid "Connections search" +msgstr "Chercher des contacts" + +#: ../../Zotlabs/Module/Connections.php:338 +#: ../../Zotlabs/Module/Directory.php:401 +#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Trouver" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "item" + +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" +msgstr "Source de l'élément" + +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "Favori ajouté" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "Mes Favoris" + +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "Favoris de mes contacts" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte." + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Supprimer ce compte" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau" + +#: ../../Zotlabs/Module/Photos.php:78 +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:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "Supprimer l'album" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 +msgid "Delete Photo" +msgstr "Supprimer la photo" + +#: ../../Zotlabs/Module/Photos.php:551 +msgid "No photos selected" +msgstr "Aucune photo selectionnée" + +#: ../../Zotlabs/Module/Photos.php:600 +msgid "Access to this item is restricted." +msgstr "L'accès à l'élément est restreint." + +#: ../../Zotlabs/Module/Photos.php:646 +#, 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:649 +#, 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:691 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Enter an album name" +msgstr "Entrer un nom d'album" + +#: ../../Zotlabs/Module/Photos.php:696 +msgid "or select an existing album (doubleclick)" +msgstr "ou sélectionner un album existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Create a status post for this upload" +msgstr "Créer une publication de statut pour cet envoi" + +#: ../../Zotlabs/Module/Photos.php:699 +msgid "Description (optional)" +msgstr "Description (facultative)" + +#: ../../Zotlabs/Module/Photos.php:785 +msgid "Show Newest First" +msgstr "Les plus récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:787 +msgid "Show Oldest First" +msgstr "Les moins récent(e)s en premier" + +#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 +msgid "Add Photos" +msgstr "Ajouter des photos" + +#: ../../Zotlabs/Module/Photos.php:892 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Accès refusé. L'accès à cet élément peut avoir été restreint." + +#: ../../Zotlabs/Module/Photos.php:894 +msgid "Photo not available" +msgstr "Photo non disponible" + +#: ../../Zotlabs/Module/Photos.php:952 +msgid "Use as profile photo" +msgstr "Utiliser comme photo du profil" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Use as cover photo" +msgstr "Utilisez comme bannière" + +#: ../../Zotlabs/Module/Photos.php:960 +msgid "Private Photo" +msgstr "Photo privée" + +#: ../../Zotlabs/Module/Photos.php:975 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Edit photo" +msgstr "Modifier la photo" + +#: ../../Zotlabs/Module/Photos.php:1059 +msgid "Rotate CW (right)" +msgstr "Rotation horaire (droite)" + +#: ../../Zotlabs/Module/Photos.php:1060 +msgid "Rotate CCW (left)" +msgstr "Rotation anti-horaire (gauche)" + +#: ../../Zotlabs/Module/Photos.php:1063 +msgid "Move photo to album" +msgstr "Déplacer la photo dans l'album" + +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Enter a new album name" +msgstr "Entrer un nouveau nom d'album" + +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "or select an existing one (doubleclick)" +msgstr "ou en sélectionner un existant (double-clic)" + +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" + +#: ../../Zotlabs/Module/Photos.php:1081 +msgid "Flag as adult in album view" +msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" + +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "I like this (toggle)" +msgstr "J'aime (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (oui/non)" + +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 +#: ../../include/conversation.php:785 +msgid "Please wait" +msgstr "Merci de patienter" + +#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:749 +msgid "This is you" +msgstr "C'est vous" + +#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commenter" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Agree" +msgstr "D'accord" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Disagree" +msgstr "Pas d'accord" + +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Abstain" +msgstr "Abstention" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Attending" +msgstr "Participations" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Not attending" +msgstr "Non-participations" + +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Might attend" +msgstr "Participation possible" + +#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 +#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "View all" +msgstr "Voir tout" + +#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 +#: ../../include/conversation.php:1981 ../../include/channel.php:1539 +#: ../../include/taxonomy.php:661 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Aime" +msgstr[1] "Aime" + +#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 +#: ../../include/conversation.php:1984 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "N'aime pas" +msgstr[1] "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1265 +msgid "Photo Tools" +msgstr "Outils pour photos" + +#: ../../Zotlabs/Module/Photos.php:1274 +msgid "In This Photo:" +msgstr "Dans cette photo :" + +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "Map" +msgstr "Carte" + +#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 +msgctxt "noun" +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 +msgctxt "noun" +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "Fermer" + +#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 +#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:667 +msgid "Recent Photos" +msgstr "Photos récentes" + +#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 +msgid "Profile Unavailable." +msgstr "Profil non disponible." + +#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 +msgid "Not found" +msgstr "Non trouvé" + +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 +#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 +msgid "Invalid channel" +msgstr "Canal invalide." + +#: ../../Zotlabs/Module/Wiki.php:124 +msgid "Error retrieving wiki" +msgstr "Erreur lors de la récupération du wiki" + +#: ../../Zotlabs/Module/Wiki.php:131 +msgid "Error creating zip file export folder" +msgstr "Erreur lors de la création du dossier d'exportation du fichier zip" + +#: ../../Zotlabs/Module/Wiki.php:182 +msgid "Error downloading wiki: " +msgstr "Erreur lors du téléchargement du wiki:" + +#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 +#: ../../include/nav.php:494 +msgid "Wikis" +msgstr "Wikis" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Download" +msgstr "Téléchargement" + +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 +msgid "Create New" +msgstr "Nouveau" + +#: ../../Zotlabs/Module/Wiki.php:207 +msgid "Wiki name" +msgstr "Nom du wiki" + +#: ../../Zotlabs/Module/Wiki.php:208 +msgid "Content type" +msgstr "Type de contenu" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1869 +msgid "Markdown" +msgstr "Markdown" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 +msgid "BBcode" +msgstr "BBcode" + +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 +msgid "Text" +msgstr "Texte" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 +msgid "Type" +msgstr "Type" + +#: ../../Zotlabs/Module/Wiki.php:211 +msgid "Any type" +msgstr "N'importe quel type" + +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "Verrouiller le type de contenu" + +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Create a status post for this wiki" +msgstr "Créer un statut de publication pour ce wiki" + +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "Modifier le nom du wiki" + +#: ../../Zotlabs/Module/Wiki.php:262 +msgid "Wiki not found" +msgstr "Wiki introuvable" + +#: ../../Zotlabs/Module/Wiki.php:286 +msgid "Rename page" +msgstr "Renommer la page" + +#: ../../Zotlabs/Module/Wiki.php:307 +msgid "Error retrieving page content" +msgstr "Erreur lors de la récupération du contenu de la page" + +#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +msgid "New page" +msgstr "Nouvelle page" + +#: ../../Zotlabs/Module/Wiki.php:345 +msgid "Revision Comparison" +msgstr "Comparaison des révisions" + +#: ../../Zotlabs/Module/Wiki.php:346 +msgid "Revert" +msgstr "Revenir" + +#: ../../Zotlabs/Module/Wiki.php:353 +msgid "Short description of your changes (optional)" +msgstr "Description courte de vos modifications (optionnel)" + +#: ../../Zotlabs/Module/Wiki.php:362 +msgid "Source" +msgstr "Source" + +#: ../../Zotlabs/Module/Wiki.php:372 +msgid "New page name" +msgstr "Nouveau nom de la page" + +#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 +msgid "Embed image from photo albums" +msgstr "Intégrer une image d'un album photo" + +#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 +msgid "Embed an image from your albums" +msgstr "Intégrer une image de votre album photo" + +#: ../../Zotlabs/Module/Wiki.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:368 +#: ../../include/conversation.php:1320 +msgid "Choose images to embed" +msgstr "Choisissez des images à intégrer" + +#: ../../Zotlabs/Module/Wiki.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +#: ../../include/conversation.php:1321 +msgid "Choose an album" +msgstr "Choisir un album" + +#: ../../Zotlabs/Module/Wiki.php:383 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:370 +msgid "Choose a different album" +msgstr "Choisissez un autre album" + +#: ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:371 +#: ../../include/conversation.php:1323 +msgid "Error getting album list" +msgstr "Erreur venant de la liste de l'album" + +#: ../../Zotlabs/Module/Wiki.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:372 +#: ../../include/conversation.php:1324 +msgid "Error getting photo link" +msgstr "Erreur provenant du lien de la photo" + +#: ../../Zotlabs/Module/Wiki.php:386 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:373 +#: ../../include/conversation.php:1325 +msgid "Error getting album" +msgstr "Erreur venant de l'album" + +#: ../../Zotlabs/Module/Wiki.php:462 +msgid "Error creating wiki. Invalid name." +msgstr "Erreur lors de la création du wiki. Nom invalide." + +#: ../../Zotlabs/Module/Wiki.php:469 +msgid "A wiki with this name already exists." +msgstr "Ce nom de wiki est déjà pris" + +#: ../../Zotlabs/Module/Wiki.php:482 +msgid "Wiki created, but error creating Home page." +msgstr "Le wiki a été créé, mais une erreur est survenue lors de la création de sa page d'accueil." + +#: ../../Zotlabs/Module/Wiki.php:489 +msgid "Error creating wiki" +msgstr "Erreur lors de la création du wiki." + +#: ../../Zotlabs/Module/Wiki.php:512 +msgid "Error updating wiki. Invalid name." +msgstr "Erreur de mise à jour du wiki. Nom invalide." + +#: ../../Zotlabs/Module/Wiki.php:532 +msgid "Error updating wiki" +msgstr "Erreur de mise à jour du wiki" + +#: ../../Zotlabs/Module/Wiki.php:547 +msgid "Wiki delete permission denied." +msgstr "Droit de supprimer le wiki refusé." + +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error deleting wiki" +msgstr "Erreur durant la suppression du wiki" + +#: ../../Zotlabs/Module/Wiki.php:590 +msgid "New page created" +msgstr "Nouvelle page créée" + +#: ../../Zotlabs/Module/Wiki.php:711 +msgid "Cannot delete Home" +msgstr "Impossible de supprimer la racine" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Current Revision" +msgstr "Version actuelle" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Selected Revision" +msgstr "Version sélectionnée" + +#: ../../Zotlabs/Module/Wiki.php:825 +msgid "You must be authenticated." +msgstr "Vous devez être connecté." + +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "Basculer en mode plein écran." + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Mise en page mise à jour." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Fonctionnalité désactivée" + +#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Modifier la description de la page du système" + +#: ../../Zotlabs/Module/Pdledit.php:68 +msgid "(modified)" +msgstr "modifié)" + +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../Zotlabs/Module/Pdledit.php:85 +msgid "Layout not found." +msgstr "Mise en page introuvable." + +#: ../../Zotlabs/Module/Pdledit.php:91 +msgid "Module Name:" +msgstr "Nom du module :" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Aide à la mise en page" + +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Edit another layout" +msgstr "Modifier une autre mise en page" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "System layout" +msgstr "mise en page du système" + +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 +#: ../../include/conversation.php:1092 +msgid "Poke" +msgstr "Tapoter" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Taquiner quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "Tapoter/Encourager" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "Taquiner, pousser ou faire autre chose à quelqu'un" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Choisir ce que vous voulez faire au destinataire" + +#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Rendre cette publication privée" + +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." +msgstr "L'image a été téléversée, mais le recadrage a échoué." + +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +#: ../../include/photo/photo_driver.php:741 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." +msgstr "Le redimensionnement de l'image a échoué." + +#: ../../Zotlabs/Module/Profile_photo.php:218 +#: ../../addon/openclipatar/openclipatar.php:298 +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:225 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" + +#: ../../Zotlabs/Module/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." +msgstr "Impossible de traîter l'image." + +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." +msgstr "Photo inaccessible." + +#: ../../Zotlabs/Module/Profile_photo.php:455 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Upload File:" +msgstr "Téléverser fichier :" + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:360 +msgid "Select a profile:" +msgstr "Choisir un profil :" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Use Photo for Profile" +msgstr "Utiliser la photo pour le profil" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Changer la photo du profil" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use" +msgstr "Utiliser" + +#: ../../Zotlabs/Module/Profile_photo.php:462 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:364 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "Use a photo from your albums" +msgstr "Utiliser une photo de vos albums" + +#: ../../Zotlabs/Module/Profile_photo.php:473 +#: ../../Zotlabs/Module/Cover_photo.php:376 +msgid "Select existing photo" +msgstr "Sélectionner une photo existante" + +#: ../../Zotlabs/Module/Profile_photo.php:492 +#: ../../Zotlabs/Module/Cover_photo.php:393 +msgid "Crop Image" +msgstr "Recadrer l'image" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:394 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Merci d'ajuster le cadre pour une visualisation optimale." + +#: ../../Zotlabs/Module/Profile_photo.php:495 +#: ../../Zotlabs/Module/Cover_photo.php:396 +msgid "Done Editing" +msgstr "J'ai terminé" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Absent" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "En ligne" + +#: ../../Zotlabs/Module/Item.php:194 +msgid "Unable to locate original post." +msgstr "Impossible de localiser la publication initiale." + +#: ../../Zotlabs/Module/Item.php:477 +msgid "Empty post discarded." +msgstr "Publication vide annulée." + +#: ../../Zotlabs/Module/Item.php:874 +msgid "Duplicate post suppressed." +msgstr "Publication en doublon supprimée." + +#: ../../Zotlabs/Module/Item.php:1019 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvegardée." + +#: ../../Zotlabs/Module/Item.php:1055 +msgid "Your comment is awaiting approval." +msgstr "Votre commentaire est en attente de validation." + +#: ../../Zotlabs/Module/Item.php:1160 +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:1189 +#, 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:1196 +#, 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/Ping.php:330 +msgid "sent you a private message" +msgstr "vous a envoyé un message privé" + +#: ../../Zotlabs/Module/Ping.php:383 +msgid "added your channel" +msgstr "a ajouté votre canal" + +#: ../../Zotlabs/Module/Ping.php:407 +msgid "requires approval" +msgstr "nécessite une approbation" + +#: ../../Zotlabs/Module/Ping.php:417 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:435 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: ../../Zotlabs/Module/Ping.php:444 +msgid "posted an event" +msgstr "a publié un événement" + +#: ../../Zotlabs/Module/Ping.php:477 +msgid "shared a file with you" +msgstr "a partagé un fichier avec vous" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "Élément invalide." + +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 +#: ../../Zotlabs/Module/Display.php:175 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 +#: ../../include/help.php:81 +msgid "Page not found." +msgstr "Page introuvable." + +#: ../../Zotlabs/Module/Page.php:173 +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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "Impossible d'accéder aux détails du contact." + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "Impossible de localiser le profil sélectionné." + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "Contact mis à jour." + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "Impossible de mettre à jour les détails du contact." + +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "est maintenant connecté avec" + +#: ../../Zotlabs/Module/Connedit.php:427 +msgid "Could not access address book record." +msgstr "Impossible d'accéder aux détails du carnet d'adresses." + +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Actualisation impossible - le canal est indisponible." + +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Unable to set address book parameters." +msgstr "Impossible de régler les paramètres du carnet d'adresses." + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Connection has been removed." +msgstr "Le contact a été supprimé." + +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 +msgid "View Profile" +msgstr "Voir mon profil" + +#: ../../Zotlabs/Module/Connedit.php:597 +#, php-format +msgid "View %s's profile" +msgstr "Voir le profil de %s" + +#: ../../Zotlabs/Module/Connedit.php:601 +msgid "Refresh Permissions" +msgstr "Actualiser les droits d'accès" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Récupérer les autorisations les plus récentes" + +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "Actualiser la photo" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "Récupérer la photo mise à jour" + +#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 +msgid "Recent Activity" +msgstr "Activité récente" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Voir les publications et commentaires récents" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquer ou débloquer toute communication avec ce contact" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "Ce contact est bloqué !" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: ../../Zotlabs/Module/Connedit.php:633 +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:634 +msgid "This connection is ignored!" +msgstr "Ce contact est ignoré !" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Unarchive" +msgstr "Désarchiver" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Archive" +msgstr "Archiver" + +#: ../../Zotlabs/Module/Connedit.php:641 +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:642 +msgid "This connection is archived!" +msgstr "Ce contact est archivé !" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Unhide" +msgstr "Ne plus cacher" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Hide" +msgstr "Cacher" + +#: ../../Zotlabs/Module/Connedit.php:649 +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:650 +msgid "This connection is hidden!" +msgstr "Ce contact est caché !" + +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Delete this connection" +msgstr "Supprimer ce contact" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "Récupérer la Vcard" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "Récupérer la carte de visite électronique de ce contact" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "Ouvrir par défaut la section des droits d'accès individuels" + +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "Affinité" + +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "Ouvrir par défaut la section Définir le degré d'affinité" + +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +msgid "Me" +msgstr "Moi" + +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +msgid "Family" +msgstr "Famille" + +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +msgid "Acquaintances" +msgstr "Connaissances" + +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "Filtrer" + +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "Ouvrir par défaut la section Filtre personnalisé" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Approve this connection" +msgstr "Valider ce contact" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Accept connection to allow communication" +msgstr "Accepter le contact pour permettre la communication" + +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Définir le degré d'affinité" + +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Définir le profil" + +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Définir le degré d'affinité et le profil" + +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "Ce contact est injoignable à partir de ce serveur." + +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "Ce contact peut être injoignable à partir d'autres serveurs hébergeant ce canal." + +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "Leur plate-forme ne gère pas la localisation multiple des canaux/contacts." + +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "Ce contact est injoignable à partir de cette adresse. Sa plate-forme ne gère pas la localisation multiple des canaux/contacts." + +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Connection Default Permissions" +msgstr "Droits d'accès par défaut des contacts" + +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 +#, php-format +msgid "Connection: %s" +msgstr "Contact : %s" + +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Appliquer ces droits d'accès automatiquement" + +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "Connection requests will be approved without your interaction" +msgstr "Les demandes de contact seront validées automatiquement" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "Rôle d'accès" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Chargement" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "Ajouter un rôle d'accès" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "L'adresse principale de ce contact est" + +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Emplacements disponibles :" + +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Les droits d'accès indiqués sur cette page seront appliqués à tous vos nouveaux contacts." + +#: ../../Zotlabs/Module/Connedit.php:867 +msgid "Connection Tools" +msgstr "Actions du contact" + +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Slide to adjust your degree of friendship" +msgstr "Faites glisser pour ajuster votre proximité avec le contact" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Evaluation" + +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Faîtes glisser pour ajuster votre note" + +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Explication facultative de votre évaluation" + +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Filtre personnalisé" + +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "N'importer que les publications comprenant ce texte" + +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +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:876 +msgid "Do not import posts with this text" +msgstr "Ne pas importer les publications comprenant ce texte" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "Cette information est publique !" + +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Contact en attente d'approbation" + +#: ../../Zotlabs/Module/Connedit.php:888 +#, 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:895 +msgid "" +"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." +msgstr "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces droits d'accès ici mais cela n'aura aucun effet à moins de changer les paramètres hérités." + +#: ../../Zotlabs/Module/Connedit.php:896 +msgid "Last update:" +msgstr "Dernière mise à jour :" + +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "Détails" + +#: ../../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 "Supprimer le salon" + +#: ../../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:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 +msgid "Please enter a link URL:" +msgstr "Merci d'entrer l'URL d'un lien :" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 +#: ../../include/conversation.php:1435 +msgid "Encrypt text" +msgstr "Chiffrer le texte" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nouveau salon de discussion" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Nom du salon de conversation" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Expiration des discussions (en minutes)" + +#: ../../Zotlabs/Module/Chat.php:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salons de %1$s" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "Aucun salon de conversation disponible" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Expiration" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1834 ../../include/nav.php:401 +msgid "Photos" +msgstr "Photos" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 +#: ../../include/nav.php:409 +msgid "Files" +msgstr "Fichiers" + +#: ../../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:2423 +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: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/Layouts.php:184 ../../include/text.php:2424 +msgid "Layouts" +msgstr "Mises-en-page" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 +#: ../../include/help.php:68 ../../include/help.php:74 +msgid "Help" +msgstr "Aide" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Aide sur le langage de description de page Comanche" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Description de la mise en page" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Télécharger le fichier PDL" + +#: ../../Zotlabs/Module/Cloud.php:120 +msgid "Please refresh page" +msgstr "Veuillez rafraîchir la page" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Unknown error" +msgstr "Erreur inconnue" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "La vérification du jeton a échoué." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Vérification de courriel requise" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Un jeton de vérification a été envoyé à votre courriel [%s]. Entrez ce jeton ici pour compléter l'étape de vérification des comptes. Veuillez allouer quelques minutes pour la réception et vérifier votre dossier spam si vous ne voyez pas le message." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Renvoyer le courriel" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Jeton de validation" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "Publication introuvable." + +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 +#: ../../include/bbcode.php:352 +msgid "post" +msgstr "publication" + +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2013 +msgid "comment" +msgstr "commentaire" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a étiqueté le %3$s de %2$s avec %4$s" + +#: ../../Zotlabs/Module/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/Defperms.php:239 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Si cette option est activée, les demandes de connexion seront approuvées sans votre intervention." + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "Paramètres d'approbation automatique" + +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "Certaines permissions individuelles peuvent avoir été prédéfinies ou verrouillées en fonction de votre type de canal et de vos paramètres de confidentialité." + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "App inconnue" + +#: ../../Zotlabs/Module/Authorize.php:22 +msgid "Authorize" +msgstr "Autoriser" + +#: ../../Zotlabs/Module/Authorize.php:23 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "Autorisez vous l'app %s à accéder aux données de votre canal ?" + +#: ../../Zotlabs/Module/Authorize.php:25 +msgid "Allow" +msgstr "Permettre" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Groupe de contacts créé." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossible de créer le groupe de contacts." + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 +#: ../../include/items.php:4181 +msgid "Privacy group not found." +msgstr "Groupe de contacts introuvable." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Groupe de contacts mis à jour." + +#: ../../Zotlabs/Module/Group.php:92 +msgid "Create a group of channels." +msgstr "Créer un groupe de contacts." + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 +msgid "Privacy group name: " +msgstr "Nom du groupe de contacts :" + +#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +msgid "Members are visible to other channels" +msgstr "Les membres sont visibles par les autres canaux" + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Privacy group removed." +msgstr "Groupe de contacts supprimé." + +#: ../../Zotlabs/Module/Group.php:115 +msgid "Unable to remove privacy group." +msgstr "Impossible de supprimer le groupe de canaux." + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Privacy group editor" +msgstr "Editeur de groupe de contacts." + +#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "Membres" + +#: ../../Zotlabs/Module/Group.php:201 +msgid "All Connected Channels" +msgstr "Tous les canaux connectés" + +#: ../../Zotlabs/Module/Group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Profil introuvable." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profil supprimé." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Profil-" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "Nouveau profil créé." + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Profil impossible à cloner." + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Impossible d'exporter le profil." + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Le nom du profil est obligatoire." + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "Statut marital" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Partenaire amoureux" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "Aime" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "N'aime pas" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "Travail/Occupation" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Religion/Croyance" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Opinions politiques" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "Sexe" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Préférences sexuelle" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Site Internet" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Centres d'intérêt" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "Cacher la liste de vos contacts pour les visiteurs de votre profile" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "Modifier les détails du profil" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "Voir ce profil" + +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 +#: ../../include/channel.php:1319 +msgid "Edit visibility" +msgstr "Changer la visibilité" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "Outils pour votre profil" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "Modifier votre bannière" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 +msgid "Change profile photo" +msgstr "Changer la photo du profil" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil avec ces paramètres" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "Cloner ce profil" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "Supprimer ce profil" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "Ajouter des éléments de profil" + +#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 +msgid "Personal" +msgstr "Me concernant" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "Relation" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "Divers" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "Importer le profil à partir d'un fichier" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "Exporter le profil vers un fichier." + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "Votre genre" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "Etat civil" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "préférence sexuelle" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "Nom du profil" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "Ceci est votre profil par défaut." + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "Votre nom complet" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "Titre/description" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "Rue" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "Ville" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "Région" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "Code postal" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "Qui (si applicable)" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples : marie123, Marie Deschamps, marie@exemple.com" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "Depuis (date)" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "Parlez nous de vous..." + +#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "URL de mon site Internet :" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "Ville de naissance" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "Opinions politiques" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "Convictions religieuses" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "Mots clés pour l'annuaire" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "Exemple : escrime photographie modélisme" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "Goûts musicaux" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "Livres, littérature" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "Télévision" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cinéma/Danse/Culture/Divertissement" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "Loisirs/Centres d'intêret" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "Amour/Relation amoureuse" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "Niveau d'étude" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "Coordonnées et autres réseaux sociaux" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "Mes autres canaux" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "Communications" + +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 +msgid "Profile Image" +msgstr "Image du profil" + +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 +#: ../../include/nav.php:117 +msgid "Edit Profiles" +msgstr "Modifier mes profils" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Cette page n'est disponible que pour les membres du site." + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Bienvenue" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Qu'est-ce que vous aimeriez faire ?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Veuillez ajouter cette page à vos favoris si vous souhaitez y revenir à l'avenir." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Téléverser une photo de profil" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Téléverser une photo de couverture" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Modifier votre profil par défaut" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 +msgid "View friend suggestions" +msgstr "Voir les suggestions d'amis" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "Voir l'annuaire des canaux" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Afficher/modifier les paramètres de votre canal" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Consulter la documentation du site ou du projet" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Visitez la page d'accueil de votre canal" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Affichez vos connexions et/ou ajoutez quelqu'un dont vous connaissez déjà l'adresse." + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Visualiser votre flux personnel (ce qui peut être vide jusqu'à ce que vous ajoutiez des connexions)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Voir le flux public. Attention : ce contenu n'est pas modéré." + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Lien" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Modifier la page web" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Créer un nouveau canal" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Channel Manager" +msgstr "Gérer mes canaux" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Canal actif" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "Pour changer de canal, sélectionnez-en un" + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "Canal par défaut" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Définir comme défaut" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "%d nouveaux messages" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%d nouvelles relations" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Canaux délégués" + +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 +#: ../../include/features.php:123 ../../include/nav.php:458 +msgid "Cards" +msgstr "Cartes" + +#: ../../Zotlabs/Module/Cards.php:99 +msgid "Add Card" +msgstr "Ajouter carte" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Ce serveur d'annuaire requiert un jeton d'accès" + +#: ../../Zotlabs/Module/Siteinfo.php:18 +msgid "About this site" +msgstr "À propos de ce site" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +msgid "Site Name" +msgstr "Nom du site" + +#: ../../Zotlabs/Module/Siteinfo.php:23 +msgid "Administrator" +msgstr "Administrateur" + +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 +msgid "Terms of Service" +msgstr "Conditions de service" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Software and Project information" +msgstr "Informations sur le logiciel et le projet" + +#: ../../Zotlabs/Module/Siteinfo.php:27 +msgid "This site is powered by $Projectname" +msgstr "Ce site est propulsé par " + +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "Réseau fédéré et décentralisé, et services d'identification fournies par Zot" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "Project homepage" +msgstr "Page d'accueil du projet" + +#: ../../Zotlabs/Module/Siteinfo.php:32 +msgid "Developer homepage" +msgstr "Page d'accueil des développeurs" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Pas de note" + +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1082 +msgid "Ratings" +msgstr "Evaluations" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Evaluation :" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Site web :" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Description :" + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Importer éléments de page web" + +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Importation sélectionnée" + +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Exporter éléments de pages web" + +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "Export sélectionné" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1915 ../../include/nav.php:481 +msgid "Webpages" +msgstr "Pages web" + +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Actions" + +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Lien vers la page" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Titre de la page" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Type de fichier invalide" + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Erreur lors de l'ouverture du fichier zip" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "Chemin du dossier invalide" + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Aucun élément de page Web détecté." + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importation terminée" + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "Les changements de nom de canal ne sont pas autorisés dans les 48 heures suivant la modification du mot de passe du compte." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 +#: ../../include/channel.php:599 +msgid "Reserved nickname. Please choose another." +msgstr "Surnom réservé. Merci d'en choisir un autre." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 +#: ../../include/channel.php:604 +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." + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Changer le pseudo/adresse du canal" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "Toutes les connexions sur d'autres réseaux seront perdues !" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Nouvelle adresse de canal" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Renommer canal" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "Elément non modifiable" + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "Modifier la publication" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "Message non valide" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "aucun résultat" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "Synchro de canal effectuée" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "mis dans la file d'attente" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "publié" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "accepté pour la distribution" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "mis à jour" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "mise à jour ignorée" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "accès refusé" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "destinataire introuvable" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "courriel rappelé" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "courriel reçu en double" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "courriel distribué" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapport de distribution pour %1$s" + +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Options" +msgstr "Options" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "Transférer à nouveau" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossible de créer la source. Aucun canal selectionné." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Source créée." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Source mise à jour." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 +msgid "Channel Sources" +msgstr "Sources du canal" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gérer les sources distantes de contenu pour votre canal." + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nouvelle source" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "N'importer le contenu que s'il contient ces mots (un par ligne)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Laissez vide pour importer tout le contenu public" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nom du canal" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Ajouter les catégories suivantes aux publications importées à partir de cette source (séparer par des virgules)" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Source introuvable." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifier la source" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Supprimer la source" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Source supprimée" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossible de supprimer la source." + +#: ../../Zotlabs/Module/Like.php:54 +msgid "Like/Dislike" +msgstr "Aime/n'aime pas" + +#: ../../Zotlabs/Module/Like.php:59 +msgid "This action is restricted to members." +msgstr "Cette action est réservée aux membres." + +#: ../../Zotlabs/Module/Like.php:60 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "S'il vous plait, identifiez vous avec votre identifant de $Projectname ou inscrivez vous comme nouveau membre de $Projectname pour continuer." + +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 +msgid "Invalid request." +msgstr "Requête invalide." + +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 +msgid "channel" +msgstr "canal" + +#: ../../Zotlabs/Module/Like.php:150 +msgid "thing" +msgstr "chose" + +#: ../../Zotlabs/Module/Like.php:196 +msgid "Channel unavailable." +msgstr "Canal indisponible." + +#: ../../Zotlabs/Module/Like.php:244 +msgid "Previous action reversed." +msgstr "Action précédente annulée." + +#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 +#: ../../addon/pubcrawl/as.php:1440 ../../include/conversation.php:160 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" + +#: ../../Zotlabs/Module/Like.php:440 ../../addon/pubcrawl/as.php:1442 +#: ../../include/conversation.php:163 +#, 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:442 +#, 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:444 +#, 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:446 +#, 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:448 ../../addon/diaspora/Receiver.php:2072 +#, 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:450 ../../addon/diaspora/Receiver.php:2074 +#, 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:452 ../../addon/diaspora/Receiver.php:2076 +#, 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:564 +msgid "Action completed." +msgstr "Action terminée." + +#: ../../Zotlabs/Module/Like.php:565 +msgid "Thank you." +msgstr "Merci." + +#: ../../Zotlabs/Module/Directory.php:106 +msgid "No default suggestions were found." +msgstr "Aucune suggestion par défaut n'a été trouvée." + +#: ../../Zotlabs/Module/Directory.php:255 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d évaluation" +msgstr[1] "%d évaluations" + +#: ../../Zotlabs/Module/Directory.php:266 +msgid "Gender: " +msgstr "Sexe/genre :" + +#: ../../Zotlabs/Module/Directory.php:268 +msgid "Status: " +msgstr "État :" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Homepage: " +msgstr "Site web :" + +#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 +msgid "Age:" +msgstr "Age :" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 +#: ../../include/event.php:54 ../../include/event.php:86 +msgid "Location:" +msgstr "Emplacement :" + +#: ../../Zotlabs/Module/Directory.php:330 +msgid "Description:" +msgstr "Description :" + +#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 +msgid "Hometown:" +msgstr "Ville natale :" + +#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 +msgid "About:" +msgstr "À propos :" + +#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1052 ../../include/channel.php:1376 +#: ../../include/connections.php:110 +msgid "Connect" +msgstr "Lier" + +#: ../../Zotlabs/Module/Directory.php:339 +msgid "Public Forum:" +msgstr "Forum public :" + +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Keywords: " +msgstr "Mots-clefs :" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Don't suggest" +msgstr "Ne pas suggérer" + +#: ../../Zotlabs/Module/Directory.php:347 +msgid "Common connections (estimated):" +msgstr "Connexions communes (estimation) :" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Global Directory" +msgstr "Annuaire global" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Local Directory" +msgstr "Annuaire local" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Finding:" +msgstr "Recherche :" + +#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canaux suggérés" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "next page" +msgstr "page suivante" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "previous page" +msgstr "page précédente" + +#: ../../Zotlabs/Module/Directory.php:408 +msgid "Sort options" +msgstr "Options de tri" + +#: ../../Zotlabs/Module/Directory.php:409 +msgid "Alphabetic" +msgstr "Alphabétique" + +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Reverse Alphabetic" +msgstr "Alphabétique inversé" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Newest to Oldest" +msgstr "Du plus récent au moins récent" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Oldest to Newest" +msgstr "Du moins récent du plus récent" + +#: ../../Zotlabs/Module/Directory.php:429 +msgid "No entries (some entries may be hidden)." +msgstr "Pas d'entrées (certaines peuvent être cachées)." + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Recherche xchan" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "Ignorer/Cacher" + +#: ../../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/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "Impossible de localiser le destinataire." + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "Impossible de communiquer avec le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "Impossible de vérifier le canal demandé." + +#: ../../Zotlabs/Module/Mail.php:105 +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:160 +msgid "Messages" +msgstr "Messages" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "message" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Message rappelé." + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Expire le YYYY-MM-DD à HH:MM" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "Le canal demandé n'est pas sur ce réseau" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "À :" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Objet :" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +#: ../../include/conversation.php:1385 +msgid "Attach file" +msgstr "Joindre un fichier" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Envoyer" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1430 +msgid "Set expiration date" +msgstr "Définir la date d'expiration" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Supprimer le message" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Rapport de distribution" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Rappeler le message" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "Le message a été rappelé." + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Supprimer la conversation" + +#: ../../Zotlabs/Module/Mail.php:416 +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:420 +msgid "Send Reply" +msgstr "Envoyer la réponse" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Votre message pour %s (%s) :" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "Instances publiques" + +#: ../../Zotlabs/Module/Pubsites.php:27 +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:33 +msgid "Hub URL" +msgstr "URL du site" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Type d'accès" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politique d'inscription" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiques" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Logiciel" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Evaluer" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 +msgid "webpage" +msgstr "pages web" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 +msgid "block" +msgstr "bloquer" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 +msgid "layout" +msgstr "mise en page" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "Elément %s installé" + +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "L'installation de l'élément %s a échoué" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Choisir un dossier de favoris" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Enregistrer le favori" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL du favori" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Ou entrez un nouveau nom de dossier de favoris" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "Saisissez un nom de dossier" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "ou sélectionnez un dossier existant (double-clic)" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 +msgid "Save to Folder" +msgstr "Enregistrer dans le dossier" + +#: ../../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/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain." + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Les mots de passe ne concordent pas." + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Enregistrement réussi. Continuez à créer votre premier canal ..." + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte." + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription est en attente d'approbation par l'administrateur." + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traîtée." + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "La création de nouveaux comptes est désactivée pour ce site." + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "La création de compte sur ce site est soumise à approbation." + +#: ../../Zotlabs/Module/Register.php:202 +msgid "Register at another affiliated hub." +msgstr "S'enregistrer sur un autre site du réseau." + +#: ../../Zotlabs/Module/Register.php:212 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain." + +#: ../../Zotlabs/Module/Register.php:238 +#, php-format +msgid "I accept the %s for this website" +msgstr "J'accepte les %s de ce site" + +#: ../../Zotlabs/Module/Register.php:245 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "J'ai plus de %s ans et j'accepte les %s de ce site." + +#: ../../Zotlabs/Module/Register.php:250 +msgid "Your email address" +msgstr "Votre adresse de courriel" + +#: ../../Zotlabs/Module/Register.php:251 +msgid "Choose a password" +msgstr "Choisissez un mot de passe" + +#: ../../Zotlabs/Module/Register.php:252 +msgid "Please re-enter your password" +msgstr "Merci de saisir à nouveau votre mot de passe" + +#: ../../Zotlabs/Module/Register.php:253 +msgid "Please enter your invitation code" +msgstr "Merci de saisir votre code d'invitation" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "no" +msgstr "non" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "yes" +msgstr "oui" + +#: ../../Zotlabs/Module/Register.php:274 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." + +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 +#: ../../include/nav.php:164 +msgid "Register" +msgstr "S'inscrire" + +#: ../../Zotlabs/Module/Register.php:287 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Ce site nécessite une vérification par courriel. Après avoir rempli ce formulaire, veuillez consulter votre courriel pour obtenir des instructions supplémentaires." + +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" +msgstr "Photos de couverture" + +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 +msgid "female" +msgstr "femme" + +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s a mis à jour son %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 +msgid "male" +msgstr "homme" + +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s a mis à jour son %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s a mis a jour sa %2$s" + +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 +msgid "cover photo" +msgstr "Photo principale" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +msgid "Change Cover Photo" +msgstr "Changer la photo de couverture" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Chercher dans la documentation" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 +#: ../../include/nav.php:391 +msgid "About" +msgstr "À propos" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "Administrateurs" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "Développeurs" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "Tutoriels" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "Documentation $Projectname" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "Contenus" + +#: ../../Zotlabs/Module/Display.php:394 +msgid "Article" +msgstr "Article" + +#: ../../Zotlabs/Module/Display.php:446 +msgid "Item has been removed." +msgstr "L'élément a été supprimé." + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Étiquette retirée" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Retirer une étiquette à l'élément" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Étiquette à retirer :" + +#: ../../Zotlabs/Module/Network.php:100 +msgid "No such group" +msgstr "Groupe introuvable" + +#: ../../Zotlabs/Module/Network.php:142 +msgid "No such channel" +msgstr "Canal introuvable" + +#: ../../Zotlabs/Module/Network.php:147 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:159 +msgid "Search Results For:" +msgstr "Résultats de recherche pour :" + +#: ../../Zotlabs/Module/Network.php:229 +msgid "Privacy group is empty" +msgstr "Groupe de contacts vide" + +#: ../../Zotlabs/Module/Network.php:238 +msgid "Privacy group: " +msgstr "Groupe de contacts :" + +#: ../../Zotlabs/Module/Network.php:265 +msgid "Invalid connection." +msgstr "Contact non valide." + +#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "Canal invalide." + +#: ../../Zotlabs/Module/Acl.php:361 +msgid "network" +msgstr "réseau" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Accès refusé." + +#: ../../Zotlabs/Module/Filestorage.php:95 +msgid "File not found." +msgstr "Fichier introuvable." + +#: ../../Zotlabs/Module/Filestorage.php:142 +msgid "Edit file permissions" +msgstr "Modifier les droits d'accès au fichier" + +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Définir/modifier les droits d'accès" + +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Inclure tous fichiers et sous-répertoires" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Return to file list" +msgstr "Retourner à la liste des fichiers" + +#: ../../Zotlabs/Module/Filestorage.php:158 +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:159 +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:161 +msgid "Share this file" +msgstr "Partager ce fichier" + +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "Montrer l'URL de ce fichier" + +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Show in your contacts shared folder" +msgstr "Faire apparaître dans le dossier partagé de vos contacts" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Pas de canal." + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "Pas de contact en commun." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Voir les connexions communes" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Vérification de courriel renvoyé" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "Impossible de renvoyer le courriel de vérification." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Aucun contact." + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visiter le profil de %s [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "Voir les contacts" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "Comptes bloqués" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "Comptes expirés" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "Comptes arrivant à expiration" + +#: ../../Zotlabs/Module/Admin.php:112 +msgid "Clones" +msgstr "Clones" + +#: ../../Zotlabs/Module/Admin.php:118 +msgid "Message queues" +msgstr "File des messages" + +#: ../../Zotlabs/Module/Admin.php:132 +msgid "Your software should be updated" +msgstr "Votre logiciel doit d'être mis à jour" + +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Summary" +msgstr "Résumé" + +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Registered accounts" +msgstr "Comptes enregistrés" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Pending registrations" +msgstr "Inscriptions en attente" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered channels" +msgstr "Canaux enregistrés" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Active plugins" +msgstr "Greffons actifs" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Version" +msgstr "Version" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Repository version (master)" +msgstr "Version du dépôt (maître)" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (dev)" +msgstr "Version du dépôt (développeur)" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Aucune restriction de classe de service trouvée." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Site web :" + +#: ../../Zotlabs/Module/Rate.php:159 +#, 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:160 +msgid "Rating (this information is public)" +msgstr "Evaluation (cette information est publique)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Explication facultative de votre évaluation (cette information est publique)" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Modifier la carte" + +#: ../../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:108 +#, php-format +msgid "Site Member (%s)" +msgstr "Membre du site (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "Demande de réinitialisation du mot de passe sur %s" + +#: ../../Zotlabs/Module/Lostpass.php:68 +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:91 ../../boot.php:1598 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "Enregistrez ou copiez votre nouveau mot de passe, puis" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../Zotlabs/Module/Lostpass.php:96 +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:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "Votre mot de passe de %s a été changé" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié ?" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "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:132 +msgid "Email Address" +msgstr "Adresse de courriel" + +#: ../../Zotlabs/Module/Notifications.php:62 +#: ../../Zotlabs/Lib/ThreadItem.php:408 +msgid "Mark all seen" +msgstr "Tout marquer comme vu" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "0. Débutant/Simple" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "1. Novice - pas expérimenté, mais prêt à apprendre" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "2. Intermédiaire - assez à l'aise" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "3. Avancé - très à l'aise" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "4. Expert - Je sais programmer" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "5. Crack - J'en sais probablement plus que vous" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Site Admin" +msgstr "Administrateur" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Reporter des bogues" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "View Bookmarks" +msgstr "Voir les marques-pages" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "My Chatrooms" +msgstr "Mes salons de discussions" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Firefox Share" +msgstr "Partager via Firefox" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Remote Diagnostics" +msgstr "Diagnostiques à distance" + +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 +msgid "Suggest Channels" +msgstr "Suggérer des canaux" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Login" +msgstr "Connexion" + +#: ../../Zotlabs/Lib/Apps.php:241 +msgid "Activity" +msgstr "Activité" + +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 +#: ../../include/features.php:96 ../../include/nav.php:497 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:246 msgid "Channel Home" msgstr "Mon canal" -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Mon canal" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Marquer toutes les notifications du canal comme vues" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "Relations" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Notifications" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notifications" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Voir toutes les notifications" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marquer toutes les notifications système comme vues" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Messages" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Voir tous les messages privés" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Marquer tous les messages privés comme vus" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Boîte de réception" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Boîte d'envoi" - -#: ../../include/nav.php:199 ../../include/widgets.php:577 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 +#: ../../include/conversation.php:1856 msgid "Events" msgstr "Événements" -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Calendrier des événements" +#: ../../Zotlabs/Lib/Apps.php:250 +msgid "Directory" +msgstr "Annuaire" -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Voir tous les événements" +#: ../../Zotlabs/Lib/Apps.php:252 +msgid "Mail" +msgstr "Messages" -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Marquer tous les événements comme vus" +#: ../../Zotlabs/Lib/Apps.php:255 +msgid "Chat" +msgstr "Clavardage" -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Gérer les canaux" +#: ../../Zotlabs/Lib/Apps.php:257 +msgid "Probe" +msgstr "Sonder" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gérer vos canaux" +#: ../../Zotlabs/Lib/Apps.php:258 +msgid "Suggest" +msgstr "Suggérer" -#: ../../include/nav.php:208 ../../include/widgets.php:556 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "Réglages" +#: ../../Zotlabs/Lib/Apps.php:259 +msgid "Random Channel" +msgstr "Un canal au hasard" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Réglages du Compte/Canal" +#: ../../Zotlabs/Lib/Apps.php:260 +msgid "Invite" +msgstr "Invitation" -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administrateur" +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "Fonctionalités" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Configuration du site" +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Langue" -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "Chargement..." +#: ../../Zotlabs/Lib/Apps.php:263 +msgid "Post" +msgstr "Envoyer" -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@nom, #tag, contenu" +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "Photo du Profil" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Merci de patienter..." +#: ../../Zotlabs/Lib/Apps.php:407 +msgid "Purchase" +msgstr "Acheter" -#: ../../include/network.php:650 -msgid "view full size" -msgstr "pleine taille" +#: ../../Zotlabs/Lib/Apps.php:411 +msgid "Undelete" +msgstr "Restaurer" -#: ../../include/network.php:1600 ../../include/enotify.php:58 +#: ../../Zotlabs/Lib/Apps.php:419 +msgid "Add to app-tray" +msgstr "Ajouter au menu des applications" + +#: ../../Zotlabs/Lib/Apps.php:420 +msgid "Remove from app-tray" +msgstr "Enlever du menu des applications" + +#: ../../Zotlabs/Lib/Apps.php:421 +msgid "Pin to navbar" +msgstr "Épingler à la barre de navigation" + +#: ../../Zotlabs/Lib/Apps.php:422 +msgid "Unpin from navbar" +msgstr "Détacher de la barre de navigation" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "défaut" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "abonné" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "contributeur" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "rédacteur" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +msgid "(No Title)" +msgstr "(Pas de titre)" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +msgid "Wiki page create failed." +msgstr "Échec de création de la page wiki." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +msgid "Wiki not found." +msgstr "Wiki introuvable." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:131 +msgid "Destination name already exists" +msgstr "Ce nom de destination est déjà pris" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:163 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +msgid "Page not found" +msgstr "Page introuvable" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +msgid "Error reading page content" +msgstr "Erreur de lecture du contenu de la page" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:350 +#: ../../Zotlabs/Lib/NativeWikiPage.php:400 +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Error reading wiki" +msgstr "Erreur de lecture du wiki" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +msgid "Page update failed." +msgstr "Echec de modification de la page." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +msgid "Nothing deleted" +msgstr "Rien n'a été supprimé" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +msgid "Compare: object not found." +msgstr "Comparaison : objet introuvable." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +msgid "Page updated" +msgstr "Page modifiée" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +msgid "Untitled" +msgstr "Sans titre" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +msgid "Wiki resource_id required for git commit" +msgstr "\"resource_id\" du wiki nécessaire pour l'enregistrement dans git." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "Message" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:597 ../../include/bbcode.php:744 +#: ../../include/bbcode.php:914 +msgid "Different viewers will see this text differently" +msgstr "Ce texte aura un rendu différent en fonction des utilisateurs" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "Visible pour vos contacts seulement" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "Seulement moi" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "Public" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "N'importe qui dans le réseau de $Projectname" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "N'importe quel compte sur %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "N'importe lequel de mes contacts" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "Uniquement les contacts que j'ai expressément autorisés" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "N'importe qui d'authentifié (cela peut inclure des visiteurs d'autres réseaux)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "N'importe quel contact, y compris ceux qui n'ont pas encore été validés" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Ceci est votre réglage par défaut de l'audience de vos publications sur votre canal normal." + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Ceci est votre réglage par défaut à propos de qui peut voir votre canal de profil par défaut." + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "Ceci est votre réglage par défaut à propos de qui peut voir vos contacts." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Ceci est votre réglage par défaut à propos de qui peut voir vos fichiers ou photos stocké(e)s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "Ceci est votre réglage par défaut de l'audience de vos pages web." + +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "Il manque le nom du salon" + +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "Un salon avec ce nom existe déjà" + +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "Identifiant de salon invalide." + +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "Salon introuvable." + +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "Le salon est plein" + +#: ../../Zotlabs/Lib/Enotify.php:60 msgid "$Projectname Notification" -msgstr "Notification de $Projectname" +msgstr "Notification $Projectname" -#: ../../include/network.php:1601 ../../include/diaspora.php:2526 -#: ../../include/diaspora.php:2537 ../../include/enotify.php:59 -#: ../../mod/p.php:46 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" -#: ../../include/network.php:1603 ../../include/enotify.php:61 +#: ../../Zotlabs/Lib/Enotify.php:63 msgid "Thank You," msgstr "Merci," -#: ../../include/network.php:1605 ../../include/enotify.php:63 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 #, php-format msgid "%s Administrator" msgstr "l'administrateur de %s" -#: ../../include/network.php:1647 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 -msgid "Administrator" -msgstr "Administrateur" - -#: ../../include/network.php:1661 -msgid "No Subject" -msgstr "Pas de sujet" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "préc." - -#: ../../include/text.php:393 -msgid "first" -msgstr "premier" - -#: ../../include/text.php:422 -msgid "last" -msgstr "dernier" - -#: ../../include/text.php:425 -msgid "next" -msgstr "suiv." - -#: ../../include/text.php:435 -msgid "older" -msgstr "plus ancien" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "plus récent" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "Sans relations" - -#: ../../include/text.php:844 +#: ../../Zotlabs/Lib/Enotify.php:66 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d relation" -msgstr[1] "%d relations" +msgid "This email was sent by %1$s at %2$s." +msgstr "Cet courriel a été envoyé par %1$s à %2$s." -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Voir les relations" - -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 -msgid "Save" -msgstr "Sauver" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "cogne" - -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" -msgstr "C'est fait cogner" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "solliciter" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "sollicité" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "aiguillonner" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "aiguillonné" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "giffle" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "gifflé" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "pointer" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "pointé" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "rejetter" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "rejetté" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "heureux" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "mélancolique" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "fatigué" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "impertinent" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "colèrique" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "stupéfié" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "perplexe" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "intéressé" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "amer" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "entrain" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "énergique" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "agaçé" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "anxieux" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "énervé" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "perturbé" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "frustré" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "déprimé" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "motivé" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "détendu" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "surpris" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "Lundi" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "Mardi" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "Mercredi" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "Jeudi" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "Vendredi" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "Samedi" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "Dimanche" - -#: ../../include/text.php:1201 -msgid "January" -msgstr "Janvier" - -#: ../../include/text.php:1201 -msgid "February" -msgstr "Février" - -#: ../../include/text.php:1201 -msgid "March" -msgstr "Mars" - -#: ../../include/text.php:1201 -msgid "April" -msgstr "Avril" - -#: ../../include/text.php:1201 ../../mod/uexport.php:58 -#: ../../mod/uexport.php:59 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1201 -msgid "June" -msgstr "Juin" - -#: ../../include/text.php:1201 -msgid "July" -msgstr "Juillet" - -#: ../../include/text.php:1201 -msgid "August" -msgstr "Août" - -#: ../../include/text.php:1201 -msgid "September" -msgstr "Septembre" - -#: ../../include/text.php:1201 -msgid "October" -msgstr "Octobre" - -#: ../../include/text.php:1201 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:1201 -msgid "December" -msgstr "Décembre" - -#: ../../include/text.php:1306 -msgid "unknown.???" -msgstr "inconnu.???" - -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "octets" - -#: ../../include/text.php:1343 -msgid "remove category" -msgstr "supprimer la catégorie" - -#: ../../include/text.php:1418 -msgid "remove from file" -msgstr "retirer du fichier" - -#: ../../include/text.php:1506 ../../include/text.php:1517 -msgid "Click to open/close" -msgstr "Cliquer pour ouvrir/fermer" - -#: ../../include/text.php:1673 ../../mod/events.php:474 -msgid "Link to Source" -msgstr "Lien vers la Source" - -#: ../../include/text.php:1694 ../../include/text.php:1765 -msgid "default" -msgstr "défaut" - -#: ../../include/text.php:1702 -msgid "Page layout" -msgstr "Mises en page" - -#: ../../include/text.php:1702 -msgid "You can create your own with the layouts tool" -msgstr "Créez les votres avec les outils de mise en page" - -#: ../../include/text.php:1743 -msgid "Page content type" -msgstr "Type de contenu" - -#: ../../include/text.php:1777 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: ../../include/text.php:1896 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "photo" - -#: ../../include/text.php:1899 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "événement" - -#: ../../include/text.php:1902 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "le statut" - -#: ../../include/text.php:1904 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "commentaire" - -#: ../../include/text.php:1909 -msgid "activity" -msgstr "activité" - -#: ../../include/text.php:2204 -msgid "Design Tools" -msgstr "Outils de conception" - -#: ../../include/text.php:2207 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Blocs" - -#: ../../include/text.php:2208 ../../mod/menu.php:101 -msgid "Menus" -msgstr "Menus" - -#: ../../include/text.php:2209 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Mises-en-page" - -#: ../../include/text.php:2210 -msgid "Pages" -msgstr "Pages" - -#: ../../include/widgets.php:35 ../../include/contact_widgets.php:92 -#: ../../include/taxonomy.php:264 -msgid "Categories" -msgstr "Catégories" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Système" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "Personnel" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Créer Votre Application" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Éditer Votre Application" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:956 ../../mod/match.php:64 -#: ../../mod/directory.php:316 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Ajouter" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignorer/Cacher" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "Suggestion" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Voir plus..." - -#: ../../include/widgets.php:166 +#: ../../Zotlabs/Lib/Enotify.php:67 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Vous avez %1$.0f des %2$.0f relations autorisées." +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Pour ne plus recevoir ces messages, veuillez ajuster vos paramètres de notification à %s" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Ajouter une nouvelle relation" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Adresse du canal" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exemple : bob@exemple.com, http://exemple.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notes" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../include/widgets.php:274 ../../include/features.php:70 -msgid "Saved Searches" -msgstr "Recherches sauvées" - -#: ../../include/widgets.php:275 ../../include/group.php:303 -msgid "add" -msgstr "ajouter" - -#: ../../include/widgets.php:304 ../../include/contact_widgets.php:57 -#: ../../include/features.php:83 -msgid "Saved Folders" -msgstr "Dossiers sauvegardés" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Tout" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Archives" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "Moi" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "Famille" - -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:585 -#: ../../mod/settings.php:345 ../../mod/settings.php:349 -#: ../../mod/settings.php:350 ../../mod/settings.php:353 -#: ../../mod/settings.php:364 -msgid "Friends" -msgstr "Amis" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "Mes connaissances" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "Tout" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "Actualiser" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "Réglages du Compte" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "Réglages du Canal" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "Fonctions supplémentaires" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "Extensions" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "Réglages d'affichage" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "Applications connectées" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "Exporter le canal" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "Permissions par défaut des connexions" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "Canal VIP" - -#: ../../include/widgets.php:548 ../../include/features.php:59 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Canaux sources" - -#: ../../include/widgets.php:569 ../../mod/mail.php:128 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Messages" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "Vérifier le courrier" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "Salons de clavardage" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "Salons favoris" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "Salons suggérés" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "photo/image" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "Me noter" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "Voir mes notes" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "Instances publiques" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nouvelle fenêtre" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Ouvrir l'emplacement dans une fenêtre (ou un onglet) différent" - -#: ../../include/Contact.php:212 +#: ../../Zotlabs/Lib/Enotify.php:68 #, php-format -msgid "User '%s' deleted" -msgstr "Utilisateur '%s' supprimé" +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Pour ne plus recevoir ces messages, veuillez ajuster votre %s." -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Pas de destinataire." - -#: ../../include/message.php:23 -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:200 -msgid "Stored post could not be verified." -msgstr "Le message stocké n'a pas pu être vérifié." - -#: ../../include/zot.php:685 -msgid "Invalid data packet" -msgstr "Paquet de données invalide" - -#: ../../include/zot.php:701 -msgid "Unable to verify channel signature" -msgstr "Impossible de vérifier la signature du canal" - -#: ../../include/zot.php:2209 +#: ../../Zotlabs/Lib/Enotify.php:123 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossible de vérifier la signature de site pour %s" +msgid "%s " +msgstr "%s " -#: ../../include/notify.php:23 +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Notify] Nouveau mail reçu sur %s" + +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s vous a envoyé un nouveau message privé à %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "un message privé" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés." + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "commenté" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "aimé" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "pas aimé" + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]%4$s de %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]votre %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notification] Commentaire modéré pour la conversation n°%1$d par %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Commentaire effectué sur la conversation #%1$d par %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "%1$sa commenté un élément ou une conversation que vous suivez." + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation." + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "Merci de visiter %spour valider ou rejeter ce commentaire." + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "%1$s aime [zrl=%2$s]votre %3$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Aime reçu à la convesation #%1$d par %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "%1$sa commenté un élément ou une conversation que vous avez créée " + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Notify] %s a publié sur le mur de votre profil" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a posté sur le mur de votre profil à %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$s envoyé à [zrl=%2$s]votre mur[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Notify] %s vous a étiquetté" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s vous a étiqueté à %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s [zrl=%2$s]vous a étiqueté[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Notify] %1$s vous a poké" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s vous a tapoté à %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl=%2$s]vous a tapoté[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Notify] %s a étiquetté votre publication" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s a étiqueté votre message à %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$s a étiqueté [zrl=%2$s]votre message[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Notify] Demande de relation reçue" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "Vous avez reçu une nouvelle demande de connexion de la part de '%1$s' à %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "Vous avez reçu [zrl=%1$s]une nouvelle demande de connexion[/zrl] de la part de %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter leur profil sur %s" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Merci de visiter %s pour valider (ou non) cette demande de contact." + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Notify] Suggestion d'amitié reçue" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Vous avez reçu une suggestion d'ami de la part de '%1$s' à %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "" +"You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "Vous avez reçu [zrl=%1$s]une suggestion d'ami[/zrl] pour %2$s de %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "Nom :" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "Photo :" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour valider ou rejeter cette suggestion." + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Notify]" + +#: ../../Zotlabs/Lib/Enotify.php:808 msgid "created a new post" -msgstr "a publié" +msgstr "a publié un nouveau message" -#: ../../include/notify.php:24 +#: ../../Zotlabs/Lib/Enotify.php:809 #, php-format msgid "commented on %s's post" msgstr "a commenté la publication de %s" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "a édité un post daté du %s" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "a édité un commentaire daté du %s" + +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "Wiki mis à jour avec succès" + +#: ../../Zotlabs/Lib/NativeWiki.php:205 +msgid "Wiki files deleted successfully" +msgstr "Fichiers du wiki supprimés avec succès" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "Erreur de mise à jour sur %s" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur." + +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 msgid "Private Message" msgstr "Message Privé" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 +#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 msgid "Select" msgstr "Sélectionner" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Sauvegarder dans le dossier" - -#: ../../include/ItemObject.php:151 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I will attend" -msgstr "J'y serais" +msgstr "Je participerai" -#: ../../include/ItemObject.php:151 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I will not attend" -msgstr "Je n'y serais pas" +msgstr "Je ne participerai pas" -#: ../../include/ItemObject.php:151 +#: ../../Zotlabs/Lib/ThreadItem.php:172 msgid "I might attend" -msgstr "J'y serais peut-être" +msgstr "Je participerai peut-être" -#: ../../include/ItemObject.php:161 +#: ../../Zotlabs/Lib/ThreadItem.php:182 msgid "I agree" -msgstr "J'approuve" +msgstr "Je suis d'accord" -#: ../../include/ItemObject.php:161 +#: ../../Zotlabs/Lib/ThreadItem.php:182 msgid "I disagree" -msgstr "Je désapprouve" +msgstr "Je ne suis pas d'accord" -#: ../../include/ItemObject.php:161 +#: ../../Zotlabs/Lib/ThreadItem.php:182 msgid "I abstain" msgstr "Je m'abstiens" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "Voir tout" - -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1712 -#: ../../include/identity.php:1266 ../../include/taxonomy.php:396 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "J'aime" -msgstr[1] "J'aime" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Je déteste" -msgstr[1] "Je déteste" - -#: ../../include/ItemObject.php:212 +#: ../../Zotlabs/Lib/ThreadItem.php:238 msgid "Add Star" -msgstr "Ajouter Étoile" +msgstr "Mettre de côté (étoile)" -#: ../../include/ItemObject.php:213 +#: ../../Zotlabs/Lib/ThreadItem.php:239 msgid "Remove Star" -msgstr "Supprimer Étoile" +msgstr "Ne plus mettre de côté" -#: ../../include/ItemObject.php:214 +#: ../../Zotlabs/Lib/ThreadItem.php:240 msgid "Toggle Star Status" -msgstr "Changer le Statut des Étoiles" +msgstr "(Dés)activer l'étoile" -#: ../../include/ItemObject.php:218 +#: ../../Zotlabs/Lib/ThreadItem.php:244 msgid "starred" -msgstr "mis en avant" +msgstr "mis de côté" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 +#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 msgid "Message signature validated" msgstr "Signature du message validée" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 +#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 msgid "Message signature incorrect" msgstr "Signature du message incorrecte" -#: ../../include/ItemObject.php:236 +#: ../../Zotlabs/Lib/ThreadItem.php:263 msgid "Add Tag" -msgstr "Ajouter une balise" +msgstr "Ajouter une étiquette" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "J'aime (oui/non)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:575 msgid "like" -msgstr "aime" +msgstr "aiment" -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "Je déteste (oui/non)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:576 msgid "dislike" -msgstr "déteste" +msgstr "n'aiment pas" -#: ../../include/ItemObject.php:259 +#: ../../Zotlabs/Lib/ThreadItem.php:286 msgid "Share This" msgstr "Partager" -#: ../../include/ItemObject.php:259 +#: ../../Zotlabs/Lib/ThreadItem.php:286 msgid "share" msgstr "partager" -#: ../../include/ItemObject.php:277 +#: ../../Zotlabs/Lib/ThreadItem.php:295 +msgid "Delivery Report" +msgstr "Rapport de distribution" + +#: ../../Zotlabs/Lib/ThreadItem.php:313 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 #, php-format msgid "View %s's profile - %s" msgstr "Voir le profil de %s - %s" -#: ../../include/ItemObject.php:299 +#: ../../Zotlabs/Lib/ThreadItem.php:347 msgid "to" msgstr "à" -#: ../../include/ItemObject.php:300 +#: ../../Zotlabs/Lib/ThreadItem.php:348 msgid "via" msgstr "via" -#: ../../include/ItemObject.php:301 +#: ../../Zotlabs/Lib/ThreadItem.php:349 msgid "Wall-to-Wall" -msgstr "Mur-mur" +msgstr "Mur-à-mur" -#: ../../include/ItemObject.php:302 +#: ../../Zotlabs/Lib/ThreadItem.php:350 msgid "via Wall-To-Wall:" -msgstr "par Mur-mur :" +msgstr "par Mur-à-mur :" -#: ../../include/ItemObject.php:313 ../../include/conversation.php:727 +#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 #, php-format msgid "from %s" msgstr "de %s" -#: ../../include/ItemObject.php:316 ../../include/conversation.php:730 +#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 #, php-format msgid "last edited: %s" -msgstr "dernière édition : %s" +msgstr "dernière modification : %s" -#: ../../include/ItemObject.php:317 ../../include/conversation.php:731 +#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 #, php-format msgid "Expires: %s" msgstr "Expire : %s" -#: ../../include/ItemObject.php:338 -msgid "Save Bookmarks" -msgstr "Enregistrer un favori" +#: ../../Zotlabs/Lib/ThreadItem.php:374 +msgid "Attend" +msgstr "En attente" -#: ../../include/ItemObject.php:339 +#: ../../Zotlabs/Lib/ThreadItem.php:375 +msgid "Attendance Options" +msgstr "Options d'attente" + +#: ../../Zotlabs/Lib/ThreadItem.php:376 +msgid "Vote" +msgstr "Vote" + +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Voting Options" +msgstr "Options de vote" + +#: ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "Enregistrer les favoris" + +#: ../../Zotlabs/Lib/ThreadItem.php:399 msgid "Add to Calendar" msgstr "Ajouter au Calendrier" -#: ../../include/ItemObject.php:348 -msgid "Mark all seen" -msgstr "Tout marquer comme vu" +#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "Il s'agit d'une prévisualisation non sauvegardée." -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "Aimes" +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s montre tout" -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "Détestes" - -#: ../../include/ItemObject.php:360 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "Fermer" - -#: ../../include/ItemObject.php:365 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/mail.php:241 -#: ../../mod/mail.php:356 ../../mod/photos.php:962 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:123 -#: ../../mod/editwebpage.php:192 -msgid "Please wait" -msgstr "Merci de patienter" - -#: ../../include/ItemObject.php:385 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] voir plus" - -#: ../../include/ItemObject.php:666 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "C'est vous" - -#: ../../include/ItemObject.php:668 ../../include/js_strings.php:6 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Commenter" - -#: ../../include/ItemObject.php:669 ../../include/js_strings.php:22 -#: ../../mod/mail.php:355 ../../mod/admin.php:453 ../../mod/admin.php:819 -#: ../../mod/admin.php:986 ../../mod/admin.php:1118 ../../mod/admin.php:1312 -#: ../../mod/admin.php:1397 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 -#: ../../mod/appman.php:99 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/poke.php:166 ../../mod/bulksetclose.php:24 ../../mod/poll.php:68 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:93 -#: ../../mod/profiles.php:667 ../../mod/connedit.php:704 -#: ../../mod/rate.php:167 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/import.php:592 ../../mod/invite.php:142 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/mitem.php:235 ../../mod/mood.php:134 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/xchan.php:11 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Envoyer" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1192 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:179 +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1380 msgid "Bold" msgstr "Gras" -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1193 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 -#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:180 +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1381 msgid "Italic" msgstr "Italique" -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1194 -#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 -#: ../../mod/editpost.php:109 ../../mod/editwebpage.php:181 +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1382 msgid "Underline" msgstr "Souligné" -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1195 -#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 -#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:182 +#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1383 msgid "Quote" msgstr "Citation" -#: ../../include/ItemObject.php:674 ../../include/conversation.php:1196 -#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 -#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:183 +#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1384 msgid "Code" msgstr "Code" -#: ../../include/ItemObject.php:675 +#: ../../Zotlabs/Lib/ThreadItem.php:758 msgid "Image" msgstr "Image" -#: ../../include/ItemObject.php:676 +#: ../../Zotlabs/Lib/ThreadItem.php:759 +msgid "Attach File" +msgstr "Joindre fichier" + +#: ../../Zotlabs/Lib/ThreadItem.php:760 msgid "Insert Link" msgstr "Insérer un lien" -#: ../../include/ItemObject.php:677 +#: ../../Zotlabs/Lib/ThreadItem.php:761 msgid "Video" msgstr "Vidéo" -#: ../../include/ItemObject.php:678 ../../include/conversation.php:1166 -#: ../../include/page_widgets.php:40 ../../mod/photos.php:982 -#: ../../mod/editblock.php:170 ../../mod/editpost.php:143 -#: ../../mod/editwebpage.php:214 ../../mod/events.php:690 -#: ../../mod/webpages.php:188 -msgid "Preview" -msgstr "Aperçu" +#: ../../Zotlabs/Lib/ThreadItem.php:771 +msgid "Your full name (required)" +msgstr "Votre nom complet (obligatoire)" -#: ../../include/ItemObject.php:681 ../../include/conversation.php:1247 -#: ../../mod/mail.php:247 ../../mod/mail.php:361 ../../mod/editpost.php:151 -msgid "Encrypt text" -msgstr "Chiffrer le texte" +#: ../../Zotlabs/Lib/ThreadItem.php:772 +msgid "Your email address (required)" +msgstr "Votre adresse de courriel (obligatoire)" -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Ce n'est pas une adresse de courriel valide" +#: ../../Zotlabs/Lib/ThreadItem.php:773 +msgid "Your website URL (optional)" +msgstr "L'adresse de votre site web (optionelle)" -#: ../../include/account.php:29 -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" +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer." -#: ../../include/account.php:35 -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:67 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "Votre invitation n'a pas pu être vérifiée." - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Merci d'entrer les informations requises." - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Impossible de stocker les informations liées au compte." - -#: ../../include/account.php:246 +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 #, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmation de l'enregistrement pour %s" +msgid "Welcome %s. Remote authentication successful." +msgstr "Bienvenue %s. L'authentification distante a fonctionné." -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription sur %s" +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 +msgid "parent" +msgstr "retour" -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "votre mot de passe d'inscription" +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2845 +msgid "Collection" +msgstr "Groupe de contacts" -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Détails de l'inscription à %s" +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Principal" -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Compte approuvé." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Compte vérifié. Veuillez vous connecter." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Cliquez ici pour mettre à jour." - -#: ../../include/account.php:713 -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:718 -msgid "This action is not available under your subscription plan." -msgstr "Cette action n'est pas possible avec la formule choisie." - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Contenu imbriqué" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Imbrication désactivée" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Visible pour vos contacts seulement." - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Montrer" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Cacher" - -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:571 -#: ../../mod/photos.php:934 ../../mod/chat.php:209 ../../mod/events.php:691 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "Permissions" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "et" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "profil public" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s a changé %2$s en “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visiter %1$s de %2$s" - -#: ../../include/activities.php:60 -#, 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/api.php:1178 -msgid "Public Timeline" -msgstr "Fil public" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Administrateur" - -#: ../../include/apps.php:130 -msgid "Address Book" +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" msgstr "Carnet d'adresse" -#: ../../include/apps.php:138 ../../include/identity.php:1240 -#: ../../include/identity.php:1357 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 +msgid "Calendar" +msgstr "Calendrier" -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Humeur" +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Calendrier - Messages entrants" -#: ../../include/apps.php:145 ../../include/conversation.php:959 -msgid "Poke" -msgstr "Cogner" +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Calendrier - Messages sortants" -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Sonder" +#: ../../Zotlabs/Storage/Browser.php:273 +msgid "Total" +msgstr "Total" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Suggérer" +#: ../../Zotlabs/Storage/Browser.php:275 +msgid "Shared" +msgstr "Partagé" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Un Canal au Hasard" +#: ../../Zotlabs/Storage/Browser.php:277 +msgid "Add Files" +msgstr "Ajouter des fichiers" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Invitation" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Fonctionalités" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Langue" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Envoyer" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Photo du Profil" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "Mise-à-jour" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installer" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Acheter" - -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:305 ../../include/attach.php:319 -#: ../../include/attach.php:350 ../../include/attach.php:546 -#: ../../include/attach.php:618 ../../include/chat.php:131 -#: ../../include/items.php:4383 ../../include/photos.php:26 -#: ../../mod/mail.php:114 ../../mod/achievements.php:30 ../../mod/page.php:31 -#: ../../mod/page.php:86 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/pdledit.php:21 ../../mod/appman.php:66 ../../mod/photos.php:69 -#: ../../mod/authtest.php:13 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/poke.php:128 -#: ../../mod/bookmarks.php:46 ../../mod/manage.php:6 ../../mod/channel.php:100 -#: ../../mod/channel.php:219 ../../mod/channel.php:262 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/common.php:35 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/notifications.php:66 -#: ../../mod/connections.php:29 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/connedit.php:348 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/events.php:249 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/register.php:72 ../../mod/fsuggest.php:78 ../../mod/regmod.php:17 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/service_limits.php:7 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/settings.php:570 -#: ../../mod/item.php:206 ../../mod/item.php:214 ../../mod/item.php:1005 -#: ../../mod/setup.php:223 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/sharedwithme.php:7 -#: ../../mod/like.php:178 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/message.php:16 ../../mod/mitem.php:111 -#: ../../mod/mood.php:111 ../../mod/suggest.php:26 ../../mod/network.php:12 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/thing.php:269 ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69 ../../index.php:186 -#: ../../index.php:397 -msgid "Permission denied." -msgstr "Permission refusée." - -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "Élément introuvable." - -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "Pas de fichier source." - -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "Impossible de trouver le fichier à remplacer." - -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "Impossible de trouver le fichier à corriger/mettre-à-jour" - -#: ../../include/attach.php:410 +#: ../../Zotlabs/Storage/Browser.php:353 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Le fichier dépasse la taille limite de %d" +msgid "You are using %1$s of your available file storage." +msgstr "Vous utilisez %1$s de votre espace de stockage." -#: ../../include/attach.php:422 +#: ../../Zotlabs/Storage/Browser.php:358 #, 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" +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Vous utilisez %1$s sur %2$s d'espace disponible. (%3$s%)" -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Envoi du fichier impossible. Limite système ou action avortée." +#: ../../Zotlabs/Storage/Browser.php:369 +msgid "WARNING:" +msgstr "AVERTISSEMENT :" -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "Le fichier stocké n'a pu être vérifié. Envoi impossible." +#: ../../Zotlabs/Storage/Browser.php:381 +msgid "Create new folder" +msgstr "Nouveau dossier" -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "Chemin non disponible." +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Upload file" +msgstr "Téléverser un fichier" -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "Chemin vide" +#: ../../Zotlabs/Storage/Browser.php:396 +msgid "Drop files here to immediately upload" +msgstr "Mettez un fichier ici pour le télécharger immédiatement" -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "doublon de chemin ou de fichier" +#: ../../Zotlabs/Widget/Forums.php:100 +msgid "Forums" +msgstr "Forums" -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Chemin introuvable." +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "Sélectionner un canal" -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir a échoué." +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "Lire et écrire" -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "l'écriture dans la BD a échoué" +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "Lire uniquement" -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Deconnecté." +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "Mes agendas" -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Échec de l'authentification" +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "Agendas partagés" -#: ../../include/auth.php:286 ../../mod/openid.php:190 +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "Partager cet agenda" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "Nom et couleur de l'agenda" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "Créer un nouvel agenda" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "Nom de l'agenda" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "Outils pour les agendas" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "Importer un agenda" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "Sélectionner un agenda à importer dans" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "Carnet d'adresses" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "Nom du carnet d'adresses" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "Créer un nouveau carnet d'adresses" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "Nom du carnet d'adresses" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "Outils pour les carnets d'adresses" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "Importer un carnet d'adresses" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "Sélectionner un carnet d'adresses à importer dans" + +#: ../../Zotlabs/Widget/Appcategories.php:40 +#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 +#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 +#: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 +#: ../../include/taxonomy.php:532 +msgid "Categories" +msgstr "Catégories" + +#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +msgid "Everything" +msgstr "Tout" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Outils Evènements" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Exporter le calendrier" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Importer un calendrier" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Salons suggérés" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "Panneau de contrôle du QG" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "Créer un nouveau post" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Menu des messages privés" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Vue combinée" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "Boîte de réception" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Boîte d'envoi" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1867 ../../include/conversation.php:1870 +#: ../../include/nav.php:434 ../../include/nav.php:437 +msgid "Chatrooms" +msgstr "Salons de clavardage" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Aperçu" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Outils d'évaluation" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "M'évaluer" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Voir mes évaluations" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Activité" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Vous avez %1$.0f sur %2$.0f contacts autorisés." + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Ajouter un nouveau contact" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Saisissez l'adresse du canal" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Exemples : pierre@exemple.com, https://exemple.com/sophie" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wiki List" +msgstr "Liste de wikis" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Archives" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Messages reçus" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Messages envoyés" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Conversations" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Pas de message." + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Supprimer la conversation" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Membres du salon de discussion" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "photo/image" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Retirer le terme" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:381 +msgid "Saved Searches" +msgstr "Recherches sauvegardées" + +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 +msgid "add" +msgstr "ajouter" + +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Notes" + +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:89 +msgid "Add new page" +msgstr "Ajouter une nouvelle page" + +#: ../../Zotlabs/Widget/Wiki_pages.php:83 +msgid "Wiki Pages" +msgstr "Pages wiki" + +#: ../../Zotlabs/Widget/Wiki_pages.php:94 +msgid "Page name" +msgstr "Nom de la page" + +#: ../../Zotlabs/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Actualiser" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Tâches" + +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Voir plus..." + +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:470 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" + +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Cliquer pour voir plus" + +#: ../../Zotlabs/Widget/Tagcloud.php:22 ../../include/taxonomy.php:320 +#: ../../include/taxonomy.php:449 ../../include/taxonomy.php:470 +msgid "Tags" +msgstr "Étiquettes" + +#: ../../Zotlabs/Widget/Newmember.php:24 +msgid "Profile Creation" +msgstr "Création de profil" + +#: ../../Zotlabs/Widget/Newmember.php:26 +msgid "Upload profile photo" +msgstr "Téléverser la photo du profil" + +#: ../../Zotlabs/Widget/Newmember.php:27 +msgid "Upload cover photo" +msgstr "Téléverser la photo de couverture" + +#: ../../Zotlabs/Widget/Newmember.php:28 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Modifier votre profil" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Find and Connect with others" +msgstr "Trouver et connecter avec des autres personnes" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "View the directory" +msgstr "Voir l'annuaire" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Manage your connections" +msgstr "Gérez vos connexions" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Communicate" +msgstr "Communiquer" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View your channel homepage" +msgstr "Voir la page d'accueil de votre canal" + +#: ../../Zotlabs/Widget/Newmember.php:41 +msgid "View your network stream" +msgstr "Visualisez votre flux réseau" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Documentation" +msgstr "Documentation" + +#: ../../Zotlabs/Widget/Newmember.php:58 +msgid "View public stream" +msgstr "Voir le flux public" + +#: ../../Zotlabs/Widget/Newmember.php:62 ../../include/features.php:60 +msgid "New Member Links" +msgstr "Liens pour les nouveaux membres" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Inscriptions en attente d'approbation" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Analyser la file d'attente" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "Mises à jour BDD" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 +msgid "Admin" +msgstr "Administrateur" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" +msgstr "Fonctionnalités des greffons" + +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Paramètres du compte" + +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Paramètres du canal" + +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Fonctionnalités supplémentaires" + +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "Paramètres de greffon" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Paramètres d'affichage" + +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Gérer les emplacements" + +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Exporter le canal" + +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "OAuth1 apps" +msgstr "OAuth1 applications" + +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "OAuth2 apps" +msgstr "OAuth2 applications" + +#: ../../Zotlabs/Widget/Settings_menu.php:108 ../../include/features.php:240 +msgid "Permission Groups" +msgstr "Groupes d'accès" + +#: ../../Zotlabs/Widget/Settings_menu.php:125 +msgid "Premium Channel Settings" +msgstr "Paramètres de canal VIP" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Salons favoris" + +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Nouvelle activité de réseau" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Nouvelles notifications d'activité de réseau" + +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "Visualiser l'activité de votre réseau" + +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "Marquer tous les notifications lus" + +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 +msgid "Show new posts only" +msgstr "Afficher uniquement les nouveaux posts" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Filtrer par nom" + +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "Nouvelle activité principale" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "Notifications de nouvelles activités principales" + +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "Voir votre activité principale" + +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 +msgid "Mark all notifications seen" +msgstr "Marquer les notifications vues" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "Nouveaux courriels" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "Notifications de nouveaux courriels" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "Consulter vos courriels privés" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "Marquer tous les messages vus" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "Nouveaux événements" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "Notifications de nouveaux événements" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "Voir les événements" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Marquer tous les événements comme vus" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "Notifications de nouvelles connexions" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "Voir toutes les connexions" + +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "Nouveaux fichiers" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "Notifications de nouveaux fichiers" + +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Notifications" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "Voir tous les avis" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "Marquer tous les avis vus" + +#: ../../Zotlabs/Widget/Notifications.php:121 +msgid "New Registrations" +msgstr "Nouvelles inscriptions" + +#: ../../Zotlabs/Widget/Notifications.php:122 +msgid "New Registrations Notifications" +msgstr "Notifications de nouveaux inscriptions" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "Public Stream Notifications" +msgstr "Notifications de flux publics" + +#: ../../Zotlabs/Widget/Notifications.php:135 +msgid "View the public stream" +msgstr "Voir le flux public" + +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Désolé, vous n'avez pas de notifications pour le moment." + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "Source du canal introuvable." + +#: ../../boot.php:1569 +msgid "Create an account to access services and applications" +msgstr "Créer un compte pour accéder aux services et applications" + +#: ../../boot.php:1588 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 +msgid "Logout" +msgstr "Déconnexion" + +#: ../../boot.php:1592 +msgid "Login/Email" +msgstr "pseudo / email" + +#: ../../boot.php:1593 +msgid "Password" +msgstr "Mot de passe" + +#: ../../boot.php:1594 +msgid "Remember me" +msgstr "Se souvenir de moi" + +#: ../../boot.php:1597 +msgid "Forgot your password?" +msgstr "Mot de passe oublié ?" + +#: ../../boot.php:2354 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "[$Projectname] erreur SSL du site web pour %s" + +#: ../../boot.php:2359 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Le certificat SSL n'est pas valide. Corrigez le." + +#: ../../boot.php:2475 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "[$Projectname] Tâches Cron inactives sur %s" + +#: ../../boot.php:2480 +msgid "Cron/Scheduled tasks not running." +msgstr "Les taches planifiées ne tournent pas." + +#: ../../boot.php:2481 ../../include/datetime.php:238 +msgid "never" +msgstr "jamais" + +#: ../../store/[data]/smarty3/compiled/a0a1289f91f53b2c12e4e0b45ffe8291540ba895_0.file.cover_photo.tpl.php:123 +msgid "Cover Photo" +msgstr "Photo de couverture" + +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (par défaut pour Hubzilla)" + +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Paramètres du thème" + +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Barre de navigation fine" + +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Couleur de fond de la barre de navigation" + +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Couleur des icônes de la barre de navigation" + +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Couleur de l'icône active de la barre de navigation" + +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "Couleur des liens" + +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Définir la couleur du texte de la bannière" + +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Définir la couleur d'arrière-plan" + +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Définir l'image d'arrière-plan" + +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "Définir la couleur de fond des contributions" + +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Couleur de fond des commentaires" + +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Définir la taille de police pour l'application entière" + +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "Exemples : 1rem, 100%, 16px" + +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Définir la couleur de police pour les contributions et commentaires" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Définir le rayon des arrondis" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "Exemple : 4px" + +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Définir la profondeur de l'ombre des photos" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Définir la largeur maximale de la zone des contenus" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Laissez vide pour avoir la largeur par défaut" + +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "Aligner à gauche le contenu de la page" + +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Définir la taille de la photo de l'auteur d'une conversation" + +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Définir la taille de la photo de l'auteur d'une réponse" + +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "Des erreurs ont eu lieu lors de la suppression de la table de la base de données." + +#: ../../addon/rendezvous/rendezvous.php:95 +#: ../../addon/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "Emvoyer les paramètres" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "Lors de la désinstallation, purger les tables?" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "Si cette case est cochée, les tables de la base Rendezvous seront supprimées lorsque le plugin sera désinstallé." + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "Jeton d'accès à la mapbox." + +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "Si vous entrez un jeton d'accès Mapbox, il doit être utilisé pour récupérer les cartes à partir de Mapbox au lieu du serveur par défaut OpenStreetMap." + +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "Rendezvous" + +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "Cette identité a été supprimée par un autre membre en raison de l'inactivité. Appuyez sur le bouton \"Nouvelle identité\" ou actualisez la page pour enregistrer une nouvelle identité. Vous pouvez utiliser le même nom." + +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "Bienvenue dans Rendevzvous!" + +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with" +" the other members, tap the GPS control. When your location is discovered, a" +" red dot will appear and others will be able to see you on the map." +msgstr "Entrez votre nom pour rejoindre ce rendez-vous. Pour commencer à partager votre emplacement avec les autres membres, appuyez sur le contrôle GPS. Lorsque votre emplacement est découvert, un point rouge apparaîtra et les autres seront en mesure de vous voir sur la carte." + +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "Rencontrez-vous ici" + +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "Nouveau marqueur" + +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "Éditer le marqueur" + +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "Nouvelle identité" + +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "Supprimer le marqueur" + +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "Supprimer le membre" + +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "Éditer l'alerte de proximité" + +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius" +" of you.

Enter a radius in meters (0 to disable):" +msgstr "Une alerte de proximité sera émise lorsque ce membre se trouve dans un certain périmètre autour de vous. Entrer un rayon en mètres (0 pour désactiver):" + +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "distance" + +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "Distance d'alerte de proximité (mètres)" + +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the" +" marker location.

Enter a radius in meters (0 to disable):" +msgstr "Une alerte de proximité sera déclenchée quand vous serez à une certaine distance du marqueur d'emplacement.

Indiquez une distance en mètres (0 pour désactiver) :" + +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "Alerte de proximité de marqueur" + +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "Note de rappel" + +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "Saisissez une note à afficher quand vous serez à la distance indiquée..." + +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "Ajouter un nouveau rendezvous" + +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or" +" share their own locations with the group." +msgstr "Créez un nouveau rendez-vous et partagez le lien d'accès avec les gens que vous souhaitez inviter au groupe. Ceux qui ouvrent le lien deviennent membres du rendez-vous. Ils peuvent afficher les emplacements des autres membres, ajouter des marqueurs à la carte ou partager leurs propres emplacements avec le groupe." + +#: ../../addon/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" +msgstr "Vous n'avez pas de rendez-vous. Appuyez sur le bouton ci-dessus pour créer un rendez-vous !" + +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "Un certain paramètre" + +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "Un paramètre" + +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "Paramètres du squelette" + +#: ../../addon/gnusoc/gnusoc.php:249 +msgid "GNU-Social Protocol Settings updated." +msgstr "Paramètres du protocol GNU-Social mis à jour." + +#: ../../addon/gnusoc/gnusoc.php:268 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Le protocole GNU-Social ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal." + +#: ../../addon/gnusoc/gnusoc.php:271 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "Activer le protocole GNU-Social pour ce canal" + +#: ../../addon/gnusoc/gnusoc.php:275 +msgid "GNU-Social Protocol Settings" +msgstr "Paramètres du protocol GNU-Social" + +#: ../../addon/gnusoc/gnusoc.php:471 +msgid "Follow" +msgstr "S'abonner" + +#: ../../addon/gnusoc/gnusoc.php:474 +#, php-format +msgid "%1$s is now following %2$s" +msgstr "%1$s est maintenant abonné à %2$s" + +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "Paramètres Planets mis à jour." + +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "Activer le plugin Planets" + +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "Paramètres Planets" + +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "Paramètres par défaut du système :" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "ID Clipart préférées" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "Liste des ids clipart préférése. Celles-ci seront montrées en premier." + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "Terme de recherche par défaut" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "Le terme de recherche par défaut. Ceci sera affiché en second." + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "Retourner ensuite" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "Page à afficher après la sélection de l'image." + +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1300 +#: ../../include/nav.php:119 +msgid "Edit Profile" +msgstr "Éditeur de profil" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "Liste de profil" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "Tri selon les préférences" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "Ordre de tri des ids de clipart préférés." + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "Les plus récents en premier" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "Comme entrés" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "Tri selon autre" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "Ordre de tri des autres clipart ids." + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "Les plus téléchargés en premier" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "Les plus aimés en premier" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "IDs des messages préférés" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "Message à afficher au-dessus de la liste des résultats préférés." + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "Téléversé par :" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "Dessiné par :" + +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Utiliser cette image" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "ou sélectionner une image libre d'OpenClipart.org :" + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "Terme de recherche" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "Erreur inconnue. Veuillez essayer à nouveau plus tard." + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "Photo de profil actualisée avec succès." + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Photo pour adulte" + +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Fourni l'option d'édition d'une photo afin de cacher des photos inappropriées de la vue d''album par défaut" + +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "Publier sur Wordpress" + +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "Activer l'extension de publication WordPress" + +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "Identifiant de connexion WordPress" + +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "Mot de passe de connexion WordPress" + +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "URL de l'API WordPress" + +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "Typiquement https://your-blog.tld/xmlrpc.php" + +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "ID de votre blog WordPress" + +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "Pour les sites multi-utilisateurs comme wordpress.com, sinon laisser vide" + +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "Par défaut, publier sur WordPress" + +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "Transférer les commentaires (nécessite le plugin hubzila_wp)" + +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "Paramètres de publications WordPress" + +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "Les paramètres WordPress ont été sauvegardés." + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Ce plugin cherche dans les publications les mots/textes que vous spécifiez ci-dessous, et réduit tout contenu contenant ces mots-clés afin qu'ils ne s'affichent pas à des moments inappropriés, tels que les insinuations sexuelles qui peuvent être inappropriées dans un contexte de travail. Il est poli et recommandé de marquer tout contenu contenant de la nudité avec #NSFW. Ce filtre peut également correspondre à tout autre mot/texte que vous spécifiez et peut ainsi être utilisé comme un filtre de contenu à usage général." + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "Activer le filtrage des contenus" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "Liste séparée par des virgules des mots-clés à cacher" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "Mot, /expression-régulière/, lang=xx, lang!=xx" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "Paramètres NSFW (Not Safe For Work)" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "Filtre de contenu sujet général" + +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "Paramètres NSFW sauvegardés." + +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "Contenu pour adulte probable" + +#: ../../addon/nsfw/nsfw.php:222 +#, php-format +msgid "%s - view" +msgstr "%s - vue" + +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "Publier sur InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Activer le plugin de publication InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Identifiant InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "Mot de passe InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "Par défaut, publier dans InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "Paramètres de publication de InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "Les paramètres d'InsaneJournal ont été sauvegardés" + +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "Publier sur Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "Activer le plugin de publication Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "Nom d'utilisateur Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "Mot de passe Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "Publication avec Dreamwidth par défaut" + +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "Paramètres de publication Dreamwidth" + +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "Nouvelle inscription" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "Message envoyé à %s. %sEnregistrement d'un nouveau compte : " + +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "Statistiques de l'annuaire Hubzilla" + +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "Total de Hubs" + +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "Hubs Hubzilla" + +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "Hubs Friendica" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "Pods Diaspora" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "Canaux Hubzilla" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "Canaux Friendica" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "Canaux Diaspora" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "Âgé de 35 ans et plus" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "Âgé de 34 et moins" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "Âge moyen" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "Salons de discussion connus" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "Étiquettes connues" + +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "Veuillez noter que les statistiques de Diaspora et Friendica sont simplement celles dont **ce répertoire** est au courant, et pas toutes celles connues dans le réseau. Cela s'applique également aux salles de discussion," + +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "Vous êtes Webbie :" + +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "Taille de la police (px) :" + +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "Lien :" + +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Aimez-nous sur Hubzilla" + +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "Embarqué :" + +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "Photos importées" + +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "Import de l'album photo Redmatrix" + +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "Ceci va importer l'intégralité de vos albums photos Redmatrix dans ce canal." + +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "URL de base du serveur Redmatrix" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "Identifiant de connexion Redmatrix" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "Mot de passe de connexion Redmatrix" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "Importer uniquement cet album" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "Laisser vide pour importer tous les albums" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "Nombre maximum de comptes à importer" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "0 ou vide pour importer tout ce qui est disponible" + +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "Canaux à connecter automatiqument" + +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" +msgstr "Liste séparée par des virgules" + +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Canaux populaires" + +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" +msgstr "Paramètres IRC" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Paramètres IRC sauvegardés" + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "Salon de discussion IRC" + +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "Publier sur LiveJournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "Activer le plugin de publication LiveJournal" + +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "Identifiant LiveJournal" + +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "Mot de passe LiveJournal" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "Par défaut, publier sur LiveJournal" + +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "Paramètres de publication LiveJournal" + +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "Paramètres LiveJournal sauvegardés." + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Nous avons rencontrons un problème lors de l'identification avec l'OpenID que vous avez fournie. Veuillez vérifier que vous avez correctement écrit votre ID." + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "Le message d'erreur était :" + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "Prénom" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "Nom" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" +msgstr "Surnom" + +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "Nom complet" + +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "Photo de profil 16px" + +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "Photo de profil 32px" + +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "Photo de profil 48px" + +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "Photo de profil 64px" + +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "Photo de profil 80px" + +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "Photo de profil 128px" + +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "Fuseau horaire" + +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "Années de naissance" + +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "Mois de naissance" + +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "Jour de naissance" + +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "Date de naissance" + +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur du protocole OpenID. Aucune ID trouvée." + +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:300 msgid "Login failed." msgstr "Échec de la connexion." -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Pièces jointes:" +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1480 +msgid "Male" +msgstr "Homme" -#: ../../include/bb2diaspora.php:459 ../../include/event.php:22 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\à G\\hi" +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1478 +msgid "Female" +msgstr "Femme" -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "Notification d'événement de $Projectname" +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "Bienvenue." -#: ../../include/bb2diaspora.php:465 ../../include/event.php:30 -msgid "Starts:" -msgstr "Début :" +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "Ah m…" -#: ../../include/bb2diaspora.php:473 ../../include/event.php:40 -msgid "Finishes:" -msgstr "Fin :" +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "De rien." -#: ../../include/bb2diaspora.php:481 ../../include/event.php:50 -#: ../../include/identity.php:1007 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "Emplacement :" +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "<rougit>" -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 -msgid "Image/photo" -msgstr "Image/photo" +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "Page à charger après l'identification" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 -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 +#: ../../addon/startpage/startpage.php:109 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." +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "Exemples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (laisser vide pour la page par défaut du réseau (grille)." -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "Pages web" +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "Paramètres de la page de démarrage" -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "Mises en page" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "giffler" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "Bloquer" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "gifflé(e)" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "Menu" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "baiser" -#: ../../include/bbcode.php:215 +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "baisé" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "breveté" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "être breveté" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "étreindre" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "être étreint" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "assassiner" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "être assassiné" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "vénérer" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "être vénéré" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "embrasser" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "embrassé" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "tenter" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "tenté" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "soulever les sourcils à la vue de" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "sourcils soulevés à la vue de" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "insulter" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "insulté" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "louer" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "loué" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "douter de" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "avoir douté de" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "manger" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "a mangé" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "séduire, charmer" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "séduit(e), charmé(e)" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "doute" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "a douté" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "jeter un regard" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "a jeté un regard à " + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "baiser" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "être baisé" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "baiser" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "baisé(e)" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "Déclarer un amour éternel pour" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "A déclaré l'amour éternel pour" + +#: ../../addon/diaspora/diaspora.php:781 +msgid "Diaspora Protocol Settings updated." +msgstr "Paramètres du protocole Diaspora mis à jour." + +#: ../../addon/diaspora/diaspora.php:800 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Le protocole Diaspora ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal." + +#: ../../addon/diaspora/diaspora.php:803 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Activer le protocole Diaspora pour ce canal" + +#: ../../addon/diaspora/diaspora.php:807 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Permettre à tous les membres de Diaspora de commenter vos publications publiques" + +#: ../../addon/diaspora/diaspora.php:811 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Empêcher la redirection de vos mots-clés (hashtags) vers d'autres sites" + +#: ../../addon/diaspora/diaspora.php:815 +msgid "" +"Sign and forward posts and comments with no existing Diaspora signature" +msgstr "Signer et faire suivre les publications et commentaires n'ayant aucune signature Diaspora" + +#: ../../addon/diaspora/diaspora.php:820 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "Mots-clés suivis (séparer par une virgule, ne pas mettre le #)" + +#: ../../addon/diaspora/diaspora.php:825 +msgid "Diaspora Protocol Settings" +msgstr "Paramètres du protocole Diaspora" + +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Pas de nom d'utilisateur dans le fichier d'import." + +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:67 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossible de créer une adresse de canal unique. Echec de l'import." + +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Votre compte sur %s expirera dans quelques jours." + +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "Votre compte de test $NomDeProduit est sur le point d'expirer." + +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "Activer Rainbowtag" + +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "Paramètres Rainbowtag" + +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "Paramètres Rainbowtag sauvegardés." + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "Afficher les limites de débit ascendant (upload)" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "Taille maximale configurée par Hubzilla:" + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "PHP upload_max_filesize: " + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "PHP post_max_size (must be larger than upload_max_filesize): " + +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "image de profil générique" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "motif géométrique aléatoire" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "visage de monstre" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "visage généré par ordinateur" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "visage de style arcade rétro" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Photo du profil par défaut du concentrateur" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Information" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "Libravatar greffon est également installé. Veuillez désactiver le greffon Libravatar ou cet greffon Gravatar.
Le greffon Libravatar reviendra à Gravatar si rien n'a été trouvé à Libravatar." + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "Sauvegarder les paramètres" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "Image avatar par défaut" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Sélectionnez l'image d'avatar par défaut si aucune n'a été trouvée sur Gravatar. Voir README" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "Evaluation des images" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Sélectionnez l'évaluation d'avatar appropriée pour votre site. Voir README" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "Paramètres Gravatar mis à jour." + +#: ../../addon/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "Importation de fichiers de stockage Hubzilla" + +#: ../../addon/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "Ceci importera tous vos fichiers cloud à partir d'un autre serveur." + +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "URL de base du serveur Hubzilla" + +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "Depuis la date modifiée aaaaa-mm-jjj" + +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "Jusqu'à la date modifiée aaaaa-mm-jjj" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Visiteurs récents du canal/profil" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "Cette extension n'a pas été configurée." + +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "Veuillez visiter les paramètres de Visage sur %s" + +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "La page des paramètres de vos fonctionnalités" + +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "Aucune entrée." + +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "Activer la connexion Visage Visitor" + +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "Paramètres Visage" + +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "Les paramètres Nsabait ont été enregistrés." + +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "Activer le plugin NSAbait" + +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "Paramètres NSAbait" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "Envoyer un mail de test" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "Aucun destinataire trouvé." + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "Mail envoyé." + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "L'envoi du mail a échoué." + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "Test du mail" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "Objet du message" + +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Utiliser Markdown pour l'édition des posts" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "Afficher en plus grand" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "URL de la tuile du serveur" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "Une liste de serveurs de cartes publics" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "URL du serveur Nominatim (géocodage inversé)" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "Une liste de serveurs Nominatim" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "Zoom par défaut" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "Le niveau de zoom par défaut. (1: monde, 18: plus élevé, dépend également du serveur de tuiles)" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "Inclure le marqueur sur la carte" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "Inclure un marqueur sur la carte." + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "Texte à inclure dans tous les messages sortants de ce site" + +#: ../../addon/fuzzloc/fuzzloc.php:148 +msgid "Fuzzloc Settings updated." +msgstr "Paramètres Fuzzloc mis à jour." + +#: ../../addon/fuzzloc/fuzzloc.php:175 +msgid "" +"Fuzzloc allows you to blur your precise location if your channel uses " +"browser location mapping." +msgstr "Fuzzloc vous permet de brouiller votre position précise si votre canal utilise la cartographie de position du navigateur." + +#: ../../addon/fuzzloc/fuzzloc.php:178 +msgid "Enable Fuzzloc Plugin" +msgstr "Activer le greffon Fuzzloc" + +#: ../../addon/fuzzloc/fuzzloc.php:182 +msgid "Minimum offset in meters" +msgstr "Décalage minimum en mètres" + +#: ../../addon/fuzzloc/fuzzloc.php:186 +msgid "Maximum offset in meters" +msgstr "Décalage maximum en mètres" + +#: ../../addon/fuzzloc/fuzzloc.php:191 +msgid "Fuzzloc Settings" +msgstr "Paramètres de Fuzzloc" + +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "Publier sur Friendica" + +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "Paramètres rtof sauvegardés." + +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "Autoriser la publication sur Friendica" + +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "Par défaut, envoyer les publications publiques sur Friendica" + +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "Chemin de l'API Friendica" + +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "https://{nomdusite}/api" + +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "Identifiant de connexion Friendica" + +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "Mot de passe de connexion Friendica" + +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "Paramètres de publication de Hubzilla vers Friendica" + +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1396 +#: ../../include/channel.php:1567 +msgid "Status:" +msgstr "État :" + +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "Activer l'extension" + +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "Cacher le widget de chat Jappixmini de l'interface web" + +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "Identifiant Jabber" + +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "Serveur Jabber" + +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "Adresse hôte pour Jabber BOSH" + +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "Mot de passe Jabber" + +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "Chiffrer le mot de passe Jabber avec le mot de passe Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "Mot de passe Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "Valider automatiquement les demandes de souscription des contacts Hubzilla" + +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Purger la liste interne des adresses jabber des contacts" + +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "Aide pour la configuration" + +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "Paramètres de Jappix mini" + +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "Actuellement bloqué" + +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "Aucun canal n'est actuellement bloqué" + +#: ../../addon/superblock/superblock.php:120 +msgid "Superblock Settings" +msgstr "Paramètres de Superblock" + +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "Bloquer complètement" + +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "Les paramètres du superblock ont été mis à jour" + +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "Fédérer" + +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "Les paramètres nfed ont été enregistrés." + +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "Autoriser la fédération avec Toggle" + +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "Par défaut, fédérer les publications." + +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "Paramètres NoFed" + +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "Publier sur Red" + +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "Un canal est requis." + +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "Paramètres redred sauvegardés." + +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "Autoriser la publication sur un autre canal Hubzilla" + +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "Par défaut, envoyer les publications publiques sur le canal Hubzilla" + +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "Chemin de l'API Hubzilla" + +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "Identifiant de connexion Hubzilla" + +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "Nom du canal Hubzilla" + +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "Paramètres Crosspost Hubzilla" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "Répertoire d'archivage du fichier journal" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "Répertoire où stocker les journaux de rotation" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "Taille du fichier journal en octets avant la rotation" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "Nombre de fichiers de journal à conserver" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "Friendica Photo Album Import" +msgstr "Importation de l'album photo Friendica " + +#: ../../addon/frphotos/frphotos.php:93 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "Ceci importera toutes vos albums photos Friendica dans ce canal Hubzilla." + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Server base URL" +msgstr "URL de base du serveur Friendica" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Username" +msgstr "Identifiant de connexion Friendica" + +#: ../../addon/frphotos/frphotos.php:96 +msgid "Friendica Login Password" +msgstr "Mot de passe de connexion Friendica" + +#: ../../addon/pubcrawl/as.php:1146 ../../addon/pubcrawl/as.php:1273 +#: ../../addon/pubcrawl/as.php:1449 ../../include/network.php:1769 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: ../../addon/pubcrawl/pubcrawl.php:1053 +msgid "ActivityPub Protocol Settings updated." +msgstr "Paramètres du protocole ActivityPub Protocol mise à jour." + +#: ../../addon/pubcrawl/pubcrawl.php:1062 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Le protocole ActivityPub ne prend pas en charge l'indépendance de localisation. Les connexions que vous établissez au sein de ce réseau peuvent être inaccessibles à partir d'autres emplacements de canaux." + +#: ../../addon/pubcrawl/pubcrawl.php:1065 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "Activer le protocole ActivityPub pour ce canal." + +#: ../../addon/pubcrawl/pubcrawl.php:1068 +msgid "Send multi-media HTML articles" +msgstr "Envoyer des articles HTML multimédia" + +#: ../../addon/pubcrawl/pubcrawl.php:1068 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "Non pris en charge par certains services de microblog tels que Mastodon." + +#: ../../addon/pubcrawl/pubcrawl.php:1072 +msgid "ActivityPub Protocol Settings" +msgstr "Paramètres du protocole ActivityPub " + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "Serveurs et ressources du projet" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "Créateur et Responsable Technique du projet" + +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "Administrateur, développeur, responsable d'annuaire, équipe support" + +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "Et les centaines d'autres personnes et organisations qui ont contribué à rendre le Hubzilla possible." + +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "Les projets Redmatrix / Hubzilla sont fournis principalement par des bénévoles qui donnent de leur temps et de leur expertise - et paient souvent de leur poche pour des services qu'ils partagent avec d'autres." + +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "Il n'y a ni financement d'entreprise ni publicités, et nous ne recueillons ni ne vendons vos données personnelles. (Nous ne contrôlons pas vos informations personnelles - vous le faites !)" + +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and" +" privacy." +msgstr "Aider à soutenir notre travail novateur en matière de décentralisation, d'identité Web et de confidentialité." + +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "Vos dons maintiennent les serveurs et les services en marche et nous aident également à fournir de nouvelles fonctionnalités innovantes et un développement continu." + +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "Donner" + +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "Choisissez un projet, un développeur ou un hub public à soutenir à l'aide d'un don unique" + +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "Donner maintenant" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project " +"only)" +msgstr "Or devenez un sponsor du projet (projet Hubzilla uniquement)" + +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "Veuillez indiquer si vous souhaitez que votre nom ou prénom (ou rien) apparaisse dans la liste de nos sponsors." + +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "Sponsors" + +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "Remerciements particuliers à :" + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "Ceci est un dictionnaire d'accords de guitare assez complet et facile qui énumère la plupart des manières possibles de jouer un certain accord, à partir de la base de la touche jusqu'à quelques frettes au-delà de la douzième frette (au-delà de laquelle tout se répète). Un couple d'accordages non standard sont fournis au profit des joueurs de diapositives, etc." + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "Les noms des accords commencent par une note racine (A-G) et peuvent inclure des dièses (#) et des bémols (b). Ce logiciel analysera la plupart des conventions de dénomination standard telles que maj, min, dim, sus (2 ou 4), aug, avec des éléments répétitifs facultatifs." + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Exemples valides comprennent A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Acords de guitar" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "Le dictionnaire en ligne complet des accords" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Réglage" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Nom d'accord. Exemple : Em7." + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Montrer pour les gauchers" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Référence rapide" + +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "Publier sur Libertree" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Activer le plugin de publication Libertree" + +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "Jeton de l'API Libertree" + +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "Adresse du site Libertree" + +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "Par défaut, publier sur Libertree" + +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "Paramètres de publication pour Libertree" + +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "Paramètres de Libertree sauvegardés." + +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "Flattr this!" + +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "Les paramètres du widget Flattr ont été mis à jour" + +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "Utilisateur de Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "URL de ce que vous voulez flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "Si une url vide est utilisée" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "Titre de ce que vous voulez flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "Si vide, \"nom du canal sur Hubzilla\" sera utilisé" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "Statique ou dynamique bouton Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "statique" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "dynamique" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "Alignement du widget" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "gauche" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "droite" + +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "Activer le widget Flattr" + +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "Paramètres du widget Flattr" + +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "Publier sur GNU-social" + +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "Nous ne pouvons pas contacter l'API de GNU-social avec le chemin que vous avez entré." + +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "Les paramètres GNU-social ont été mis à jour." + +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "Les OAuthKeys GNU-social sont globalement disponibles." + +#: ../../addon/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "Il existe des paires de clés OAuth préconfigurées pour certains serveurs GNU-social disponibles. Si vous utilisez l'un d'eux, utilisez ces informations d'identification.\nSi vous ne voulez pas vous connecter à une autre instance GNU social (voir ci-dessous)." + +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "Fournissez vos propres informations d'identification OAuth" + +#: ../../addon/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as" +" an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée." + +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "Clé d'utilisateur OAuth" + +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "Secret d'utilisateur OAuth" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "Chemin de l'API de base" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "N'oubliez pas le / final" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "Nom de l'application GNU-social" + +#: ../../addon/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "Pour vous connecter à votre compte GNU-social, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de GNU-social. Vous devez le copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront visibles sur GNU-social." + +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "Vous connecter avec GNU-social" + +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "Copier ici le code de sécurité de GNU-social." + +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "Annuler le processus de prise de contact" + +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "L'API GNU-social courante est" + +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "Annuler la connexion GNU-social" + +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +msgid "Currently connected to: " +msgstr "Actuellement connecté à :" + +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "Remarque : en raison de vos paramètres de confidentialité (masquer les détails de votre profil aux visiteurs inconnus ?), le lien potentiellement inclus dans les annonces publiques relayées sur GNU-social amènera le visiteur à une page vierge informant le visiteur que l'accès à votre profil a été restreint." + +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "Autoriser la publication sur GNU-social" + +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte GNU-social associé." + +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "Par défaut, publier sur GNU-social" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte GNU-social associé" + +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +msgid "Clear OAuth configuration" +msgstr "Effacer la configuration OAuth" + +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "Paramètres de publication GNU-social" + +#: ../../addon/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "URL de l'API" + +#: ../../addon/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "Nom de l'application" + +#: ../../addon/qrator/qrator.php:48 msgid "QR code" -msgstr "code QR" +msgstr "QR code" -#: ../../include/bbcode.php:266 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s a écrit %2$s qui suit %3$s" +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "Générateur de QRcode" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "l'article" +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "Entrer du texte" -#: ../../include/bbcode.php:518 -msgid "Different viewers will see this text differently" -msgstr "Ce texte aura un rendu différent en fonction des navigateurs" +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +msgid "Invalid game." +msgstr "Jeu invalide" -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "Dévoile : $1" +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "Vous n'êtes pas un joueur de ce jeu." -#: ../../include/bbcode.php:756 -msgid "$1 wrote:" -msgstr "$1 a écrit :" +#: ../../addon/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "Vous devez être un canal local pour créer un jeu." -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Favoris de %1$s" +#: ../../addon/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "Vous devez sélectionner un adversaire qui ne soit pas vous-même." -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Il manque le nom du salon" +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "Couleur aléatoire choisie." -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Un salon de ce nom existe déjà" +#: ../../addon/chess/chess.php:452 +msgid "Error creating new game." +msgstr "Erreur lors de la création du nouveau jeu." -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Identifiant de salon invalide." +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1151 +msgid "Requested channel is not available." +msgstr "Canal demandé non disponible." -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Salon introuvable." +#: ../../addon/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "Vous devez sélectionner un canal local /échecs/nomducanal" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "Le salon est plein" +#: ../../addon/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "Activer les notifications" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Défaut" +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "Publier sur Twitter" -#: ../../include/security.php:349 +#: ../../addon/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "Les paramètres de Twitter ont été mis à jour." + +#: ../../addon/twitter/twitter.php:184 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)." +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "Aucune paire de clés d'utilisateur pour Twitter n'a été trouvée. Veuillez contacter l'administrateur de votre site." -#: ../../include/contact_selectors.php:56 +#: ../../addon/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "Dans cette instance de Hubzilla, le plugin Twitter a été activé, mais vous n'avez pas encore connecté votre compte à votre compte Twitter. Pour ce faire, cliquez sur le bouton ci-dessous pour obtenir un code PIN de Twitter que vous devez copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront publiés sur Twitter." + +#: ../../addon/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "Connectez-vous avec votre compte Twitter" + +#: ../../addon/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "Copier ici le PIN fourni par Twitter" + +#: ../../addon/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "Note : En raison de vos paramètres de confidentialité (Masquer les détails de votre profil aux visiteurs inconnus?), le lien potentiellement inclus dans les annonces publiques relayées vers Twitter amènera le visiteur à une page vierge l'informant que l'accès à votre profil a été restreint." + +#: ../../addon/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "Autoriser la publication sur Twitter" + +#: ../../addon/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte Twitter associé." + +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Longueur des messages Twitter" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Longueur maximale du tweet" + +#: ../../addon/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "Par défaut, envoyer vos publications publiques sur Twitter." + +#: ../../addon/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte Twitter associé." + +#: ../../addon/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "Paramètres des publications Twitter" + +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "Désactiver la fonctionnalité" + +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "Cacher le bouton et afficher les émoticônes directement." + +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "Paramètres du bouton des émoticônes" + +#: ../../addon/cart/myshop.php:138 +msgid "Order Not Found" +msgstr "Commande introuvable" + +#: ../../addon/cart/cart.php:810 +msgid "Order cannot be checked out." +msgstr "La commande ne peut pas être finalisée." + +#: ../../addon/cart/cart.php:1073 +msgid "Enable Shopping Cart" +msgstr "Activer le panier d'achats" + +#: ../../addon/cart/cart.php:1080 +msgid "Enable Test Catalog" +msgstr "Activer le catalogue de test" + +#: ../../addon/cart/cart.php:1088 +msgid "Enable Manual Payments" +msgstr "Activer les paiements manuels" + +#: ../../addon/cart/cart.php:1103 +msgid "Base Cart Settings" +msgstr "Paramètres de base du panier" + +#: ../../addon/cart/cart.php:1151 +msgid "Add Item" +msgstr "Ajouter un article" + +#: ../../addon/cart/cart.php:1165 +msgid "Call cart_post_" +msgstr "Appeler cart_post_" + +#: ../../addon/cart/cart.php:1195 +msgid "Cart Not Enabled (profile: " +msgstr "Panier non activé (profile:" + +#: ../../addon/cart/cart.php:1226 ../../addon/cart/manual_payments.php:36 +msgid "Order not found." +msgstr "Commande introuvable." + +#: ../../addon/cart/cart.php:1262 ../../addon/cart/cart.php:1389 +msgid "No Order Found" +msgstr "Aucune commande trouvée" + +#: ../../addon/cart/cart.php:1270 +msgid "call: " +msgstr "appel:" + +#: ../../addon/cart/cart.php:1273 +msgid "An unknown error has occurred Please start again." +msgstr "Une erreur inconnue s'est produite. Veuillez recommencer." + +#: ../../addon/cart/cart.php:1414 +msgid "Invalid Payment Type. Please start again." +msgstr "Type de paiement non valable. Recommencez, s'il vous plaît." + +#: ../../addon/cart/cart.php:1421 +msgid "Order not found" +msgstr "Commande non trouvée" + +#: ../../addon/cart/manual_payments.php:9 +msgid "Error: order mismatch. Please try again." +msgstr "Erreur : non-appariement de commande. Veuillez réessayer." + +#: ../../addon/cart/manual_payments.php:29 +msgid "Manual payments are not enabled." +msgstr "Les paiements manuels ne sont pas activés." + +#: ../../addon/cart/manual_payments.php:44 +msgid "Finished" +msgstr "Terminé." + +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Ce site web est surveillé grâce à l'outil d'analyse Piwik." + +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "Si vous ne souhaitez pas que vos visites soient enregistrées de cette façon, vous pouvez\ndéfinir un cookie pour empêcher Piwik de suivre davantage de visites du site (opt-out)." + +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "URL de base Piwik" + +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Chemin absolu vers votre installation Piwik. (sans le http/s, avec antislash)" + +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "ID du site" + +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "Afficher le lien opt-out du cookie ?" + +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "Traqueur asynchrone" + +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "Activer le traqueur d'erreur du frontend JavaScript" + +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "Cette fonctionnalité requiert une version de Piwik >=2.2.0" + +#: ../../addon/tour/tour.php:76 +msgid "Edit your profile and change settings." +msgstr "Éditer votre profil et changer les paramètres." + +#: ../../addon/tour/tour.php:77 +msgid "Click here to see activity from your connections." +msgstr "Cliquer ici pour voir l'activité de vos contacts." + +#: ../../addon/tour/tour.php:78 +msgid "Click here to see your channel home." +msgstr "Cliquer ici pour voir votre canal principal." + +#: ../../addon/tour/tour.php:79 +msgid "You can access your private messages from here." +msgstr "Vous pouvez accéder à vos messages privés à partir d'ici." + +#: ../../addon/tour/tour.php:80 +msgid "Create new events here." +msgstr "Créer de nouveaux événements ici." + +#: ../../addon/tour/tour.php:81 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "Vous pouvez accepter de nouveaux contacts et changer les droits d'accès des contacts existants. Vous pouvez également créer des groupes de contacts." + +#: ../../addon/tour/tour.php:82 +msgid "System notifications will arrive here" +msgstr "Les notifications du système arriveront ici." + +#: ../../addon/tour/tour.php:83 +msgid "Search for content and users" +msgstr "Rechercher du contenu ou des utilisateurs" + +#: ../../addon/tour/tour.php:84 +msgid "Browse for new contacts" +msgstr "Rechercher de nouveaux contacts" + +#: ../../addon/tour/tour.php:85 +msgid "Launch installed apps" +msgstr "Démarrer des applications installées" + +#: ../../addon/tour/tour.php:86 +msgid "Looking for help? Click here." +msgstr "Un peu d'aide ? Cliquer ici." + +#: ../../addon/tour/tour.php:87 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "De nouveaux événement se sont produits dans votre réseau. Cliquer ici pour voir ce qui s'est passé !" + +#: ../../addon/tour/tour.php:88 +msgid "You have received a new private message. Click here to see from who!" +msgstr "Vous avez reçu un nouveau message privé. Cliquer ici pour voir qui vous écrit !" + +#: ../../addon/tour/tour.php:89 +msgid "There are events this week. Click here too see which!" +msgstr "Il y a des événements cette semaine. Cliquer ici pour voir lesquels !" + +#: ../../addon/tour/tour.php:90 +msgid "You have received a new introduction. Click here to see who!" +msgstr "Vous avez reçu une nouvelle demande de relation. Cliquer ici pour voir de qui !" + +#: ../../addon/tour/tour.php:91 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "Vous avez reçu une notification du système. Cliquer ici pour voir ce qui se passe !" + +#: ../../addon/tour/tour.php:94 +msgid "Click here to share text, images, videos and sound." +msgstr "Cliquer ici pour partager du texte, des images, des vidéos ou du son." + +#: ../../addon/tour/tour.php:95 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "Vous pouvez ajouter à votre mise à jour un titre facultatif (pratique pour de longues publications)." + +#: ../../addon/tour/tour.php:96 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "Renseigner certaines catégories ici permet de retrouver plus facilement votre message plus tard." + +#: ../../addon/tour/tour.php:97 +msgid "Share photos, links, location, etc." +msgstr "Partager des photos, des liens, des localisations, etc." + +#: ../../addon/tour/tour.php:98 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "Envie de partager un contenu pour une durée limitée ? Faites-le expirer à une certaine date." + +#: ../../addon/tour/tour.php:99 +msgid "You can password protect content." +msgstr "Vous pouvez protéger un contenu avec un mot de passe." + +#: ../../addon/tour/tour.php:100 +msgid "Choose who you share with." +msgstr "Choisir avec qui vous partagez." + +#: ../../addon/tour/tour.php:102 +msgid "Click here when you are done." +msgstr "Cliquer ici quand vous avez fini." + +#: ../../addon/tour/tour.php:105 +msgid "Adjust from which channels posts should be displayed." +msgstr "Préciser de quels canaux les publications seront affichées." + +#: ../../addon/tour/tour.php:106 +msgid "Only show posts from channels in the specified privacy group." +msgstr "Afficher uniquement les messages des canaux appartenant au groupe de contacts spécifié." + +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "Trouvez facilement des publications contenant des tags (mots-clés précédés du symbole \"#\")." + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts in given category." +msgstr "Trouvez facilement des publications dans une catégorie donnée." + +#: ../../addon/tour/tour.php:112 +msgid "Easily find posts by date." +msgstr "Trouvez facilement des publications en fonction de leur date." + +#: ../../addon/tour/tour.php:113 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we" +" think you might find interesting." +msgstr "Voici des utilisateurs que vous pourriez trouver intéressants. Ces utilisateurs se sont portés volontaires pour être affichés comme exemples." + +#: ../../addon/tour/tour.php:114 +msgid "Here you see channels you have connected to." +msgstr "Retrouvez ici les canaux auxquels vous vous êtes connectés." + +#: ../../addon/tour/tour.php:115 +msgid "Save your search so you can repeat it at a later date." +msgstr "Enregistrer votre recherche de façon à pouvoir la répéter plus tard." + +#: ../../addon/tour/tour.php:118 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It" +" is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "Si vous voyez cette icône, vous pouvez être sûr que l'expéditeur est qui il dit qu'il est. Il est normal qu'il ne soit pas toujours possible de vérifier l'expéditeur, donc l'icône manquera parfois. Il n'est généralement pas nécessaire de s'inquiéter à ce sujet." + +#: ../../addon/tour/tour.php:119 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "Attention ! Il semble que quelqu'un a essayé de contrefaire un message ! Ce message n'a pas nécessairement été envoyé par la personne annoncée !" + +#: ../../addon/tour/tour.php:126 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "Bienvenue sur Hubzilla! Voulez-vous faire un tour de l'interface utilisateur? Vous pouvez le mettre en pause à tout moment et continuer où vous l'avez laissé en rechargeant la page ou en naviguant vers une autre page. Vous pouvez également avancer en appuyant sur la touche de retour." + +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "Partage d'identification étendu" + +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "Partagez votre identité avec tous les sites Internet. Lorsqu'elle est désactivée, l'identité n'est partagée qu'avec les sites $Projectname." + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Tic-tac-toe en 3 dimensions" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "3D Tic-Tac-Toe" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "Nouveau jeu" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "Nouveau jeu avec handicap" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "Trois dimensions tic-tac-toe est juste comme le jeu traditionnel, sauf qu'il est joué sur plusieurs niveaux simultanément." + +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "Dans ce cas, il y a trois niveaux. Vous gagnez en obtenant trois dans une rangée à n'importe quel niveau, que ce soit vers le haut, le bas, ou en diagonale à travers les différents niveaux." + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "Le jeu handicap désactive la position centrale au niveau intermédiaire, car le joueur qui revendique ce carré a souvent un avantage indu." + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "Vous commencez…" + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "Cette fois, je commence…" + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "Vous avez gagné !" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "Jeu de \"Chat\" !" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "J'ai gagné !" + +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "Message à afficher sur chaque page de ce serveur" + +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "Paramètres du haut de page" + +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "Paramètres du haut de page sauvegardés." + +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "Ne vous authentifier automatiquement que sur les sites de vos contacts" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "Par défaut vous êtres authentifiés automatiquement partout sur le réseau" + +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "Paramètres Authchoose" + +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "Paramètres Authchoose mis à jour." + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "isolé" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "saoul" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "libidineux" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "défoncé" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "cramé" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "énervé" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "cinglé" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "dommage" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "somnolent" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "grognon" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "allumé" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "à demi-conscient" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "amoureux" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "convoitise" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "nu" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "puant" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "en sueur" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "en sang" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "victorieux" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "vaincu" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "envieux" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "jaloux" + +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "Les paramètres XMPP ont été mis à jour." + +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "Activer le Chat" + +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "Informations d'identifications individuelles" + +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "serveur Jabber BOSH" + +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "Paramètres XMPP" + +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "Hôte Jabber BOSH" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "Utiliser la base d'utilisateurs centrale" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "Si cette option est activée, les membres se connecteront automatiquement à un serveur ejabberd qui doit être installé sur cette machine avec des informations d'identification synchronisées via le script \"auth_ejabberd.php\"." + +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "Qui m'aime?" + +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "Vous êtes maintenant connecté à pumpio." + +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "retourner à la page des paramètres des fonctionnalités" + +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "Publier sur Pump.io" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "Nom du serveur Pump.io" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "Sans \"http://\" ou \"https://\"" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "Identifiant Pump.io" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "Sans le nom de serveur" + +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "Vous n'êtes pas connecté à Pump.io" + +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "Authentifiez-vous à nouveau auprès de Pump.io" + +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "Activer le plugin de publication Pump.io" + +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "Par défaut, publier sur Pump.io" + +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "Les publications doivent-elles être publiques ?" + +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "Créer une copie miroir de toutes les publications publiques" + +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "Paramètres de publication Pump.io" + +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "Paramètres Pump.io sauvegardés." + +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." +msgstr "Un compte a été créé pour vous." + +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "L'authentification a réussi mais a été rejetée : la création de comptes est désactivée." + +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Recherche %1$s (%2$s)" + +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "Chercher dans $Projectname" + +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "Importation du fichier de stockage Redmatrix" + +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "Ceci importera tous vos fichiers Redmatrix dans ce canal." + +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "fichier" + +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "Envoyer un mail à tous les membres" + +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "%1$d message(s) envoyés sur %2$d." + +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "Envoyer un e-mail à tous les membres du hub." + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "Adresse mail de l'expéditeur" + +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "Mode test (uniquement envoyé à l'administrateur du hub)" + +#: ../../include/selectors.php:30 msgid "Frequently" -msgstr "Constamment" +msgstr "Fréquemment" -#: ../../include/contact_selectors.php:57 +#: ../../include/selectors.php:31 msgid "Hourly" -msgstr "Chaque heure" +msgstr "Toutes les heures" -#: ../../include/contact_selectors.php:58 +#: ../../include/selectors.php:32 msgid "Twice daily" msgstr "Deux fois par jour" -#: ../../include/contact_selectors.php:59 +#: ../../include/selectors.php:33 msgid "Daily" msgstr "Chaque jour" -#: ../../include/contact_selectors.php:60 +#: ../../include/selectors.php:34 msgid "Weekly" msgstr "Chaque semaine" -#: ../../include/contact_selectors.php:61 +#: ../../include/selectors.php:35 msgid "Monthly" msgstr "Chaque mois" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actuellement homme" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actuellement femme" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Surtout homme" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1553 -msgid "Email" -msgstr "Courriel" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Surtout femme" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgenre" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexuel" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexuel" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "Linkedin" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermaphrodite" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/selectors.php:49 ../../include/channel.php:1484 +msgid "Neuter" +msgstr "Neutre" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/selectors.php:49 ../../include/channel.php:1486 +msgid "Non-specific" +msgstr "Non spécifique" -#: ../../include/contact_widgets.php:14 +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indécis" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hommes" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Femmes" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Gay" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbienne" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sans préférence" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexuel" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexuel" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Vierge" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Déviant" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fétichiste" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Une floppée" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Non-sexuel" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Célibataire" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solitaire" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Indisponible" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "A un béguin" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Amoureux transi" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Sort avec quelqu'un" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infidèle" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Accro au sexe" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amis avec bénéfices" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Sans engagement" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Fiancé(e)" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Marié(e)" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Marié(e) dans ses rêves" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partenaires" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "En cohabitation" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Conjoints de fait" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Heureux" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Pas en recherche" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Echangiste" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Trahi(e)" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Séparé(e)" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Instable" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorcé(e)" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorcé(e) dans ses rêves" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Veuf/veuve" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incertain" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "C'est compliqué" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "S'en fiche" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Me demander" + +#: ../../include/conversation.php:169 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitation disponible" -msgstr[1] "%d invitations disponibles" +msgid "likes %1$s's %2$s" +msgstr "aime le %2$s de %1$s" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "Avancé" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Trouver des canaux" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Saisir nom ou centre d'intérêt" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Ajouter/Suivre" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exemples: Robert Morgenstein, Course à pieds" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:273 -#: ../../mod/directory.php:379 ../../mod/directory.php:384 -msgid "Find" -msgstr "Trouver" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Canaux suggérés" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Un profil au hasard" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Exemple avancé : name=fred and country=iceland" - -#: ../../include/contact_widgets.php:125 +#: ../../include/conversation.php:172 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d relation en commun" -msgstr[1] "%d relations en commun" +msgid "doesn't like %1$s's %2$s" +msgstr "n'aime pas le %2$s de%1$s " -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "montrer plus" - -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "canal" - -#: ../../include/conversation.php:164 ../../include/diaspora.php:2152 -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" - -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s déteste %3$s de %2$s" - -#: ../../include/conversation.php:204 +#: ../../include/conversation.php:212 #, php-format msgid "%1$s is now connected with %2$s" -msgstr "%1$s ajoute %2$s à ses relations" +msgstr "%1$s ajoute %2$s à ses contacts" -#: ../../include/conversation.php:239 +#: ../../include/conversation.php:247 #, php-format msgid "%1$s poked %2$s" -msgstr "%1$s a cogné %2$s" +msgstr "%1$s a tapoté %2$s" -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s est %2$s" +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 +msgid "poked" +msgstr "a tapoté" -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "J'aime" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "Je n'aime pas" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "Accord" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "Désaccord" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "Abstention" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "Participations" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "Non-participations" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "Participation possible" - -#: ../../include/conversation.php:703 +#: ../../include/conversation.php:736 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: ../../include/conversation.php:718 +#: ../../include/conversation.php:756 msgid "Categories:" msgstr "Catégories :" -#: ../../include/conversation.php:719 +#: ../../include/conversation.php:757 msgid "Filed under:" msgstr "Classé sous :" -#: ../../include/conversation.php:746 +#: ../../include/conversation.php:783 msgid "View in context" msgstr "Voir en contexte" -#: ../../include/conversation.php:857 +#: ../../include/conversation.php:884 msgid "remove" msgstr "supprimer" -#: ../../include/conversation.php:862 +#: ../../include/conversation.php:888 +msgid "Loading..." +msgstr "Chargement..." + +#: ../../include/conversation.php:889 msgid "Delete Selected Items" msgstr "Supprimer les éléments selectionnés" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:932 msgid "View Source" msgstr "Voir source" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:942 msgid "Follow Thread" -msgstr "Suivre discussion" +msgstr "Suivre la discussion" -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "Voir état" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Ne plus suivre la discussion" -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "Voir photos" +#: ../../include/conversation.php:1062 +msgid "Edit Connection" +msgstr "Modifier le contact" -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "Activité sur la matrice" +#: ../../include/conversation.php:1072 +msgid "Message" +msgstr "Message" -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "Éditer contact" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "Envoyer un Message Privé" - -#: ../../include/conversation.php:1073 +#: ../../include/conversation.php:1206 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: ../../include/conversation.php:1073 +#: ../../include/conversation.php:1206 #, php-format msgid "%s doesn't like this." -msgstr "%s déteste ça." +msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1077 +#: ../../include/conversation.php:1210 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "%2$d personne(s) aime(nt) ça." +msgstr[0] "%2$d personne aime ceci." +msgstr[1] "%2$d personnes aiment ceci." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1212 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "%2$d personne(s) déteste(nt) ça." +msgstr[0] "%2$d personne n'aime pas ça." +msgstr[1] "%2$d personnes n'aiment pas ça." -#: ../../include/conversation.php:1085 +#: ../../include/conversation.php:1218 msgid "and" msgstr "et" -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1221 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", et %d autre(s) personne(s)" +msgstr[0] ", et %d autre personne" +msgstr[1] ", et %d autres personnes" -#: ../../include/conversation.php:1089 +#: ../../include/conversation.php:1222 #, php-format msgid "%s like this." msgstr "%s aime ça." -#: ../../include/conversation.php:1089 +#: ../../include/conversation.php:1222 #, php-format msgid "%s don't like this." -msgstr "%s déteste ça." +msgstr "%s n'aime pas ça." -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Merci d'entrer l'URL d'un lien :" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "Merci d'entrer l'URL d'une video :" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "Merci d'entrer l'URL d'un contenu audio&nsbp;:" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "Étiquette :" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Classer dans le dossier :" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "Où êtes-vous présentement?" - -#: ../../include/conversation.php:1158 ../../mod/mail.php:175 -#: ../../mod/mail.php:290 ../../mod/editpost.php:47 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Expire YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1185 ../../mod/photos.php:961 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:184 -#: ../../mod/webpages.php:182 -msgid "Share" -msgstr "Partager" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "Nom du lien vers la page" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "Publier en tant que" - -#: ../../include/conversation.php:1197 ../../mod/mail.php:238 -#: ../../mod/mail.php:352 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:184 -msgid "Upload photo" -msgstr "Téléverser une photo" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "téléverser une photo" - -#: ../../include/conversation.php:1199 ../../mod/mail.php:239 -#: ../../mod/mail.php:353 ../../mod/editblock.php:142 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:185 -msgid "Attach file" -msgstr "Attacher un fichier" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "attacher un fichier" - -#: ../../include/conversation.php:1201 ../../mod/mail.php:240 -#: ../../mod/mail.php:354 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:186 -msgid "Insert web link" -msgstr "Insérer lien web" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "lien web" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "Insérer lien vidéo" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "lien vidéo" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "lien audio" - -#: ../../include/conversation.php:1207 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:145 ../../mod/editpost.php:118 -#: ../../mod/editwebpage.php:190 +#: ../../include/conversation.php:1265 msgid "Set your location" msgstr "Spécifier votre emplacement géographique" -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "spécifier l'emplacement géographique" +#: ../../include/conversation.php:1266 +msgid "Clear browser location" +msgstr "Supprimer l'emplacement géographique du navigateur" -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 +#: ../../include/conversation.php:1316 +msgid "Tag term:" +msgstr "Étiquette :" + +#: ../../include/conversation.php:1317 +msgid "Where are you right now?" +msgstr "Où êtes-vous en ce moment ?" + +#: ../../include/conversation.php:1322 +msgid "Choose a different album..." +msgstr "Choisissez un autre album" + +#: ../../include/conversation.php:1326 +msgid "Comments enabled" +msgstr "Commentaires activés" + +#: ../../include/conversation.php:1327 +msgid "Comments disabled" +msgstr "Commentaires désactivés" + +#: ../../include/conversation.php:1375 +msgid "Page link name" +msgstr "Nom du lien vers la page" + +#: ../../include/conversation.php:1378 +msgid "Post as" +msgstr "Publier en tant que" + +#: ../../include/conversation.php:1392 msgid "Toggle voting" msgstr "(Dés)activer le vote" -#: ../../include/conversation.php:1212 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:191 -msgid "Clear browser location" -msgstr "Nettoyer l'emplacement géographique du navigateur" +#: ../../include/conversation.php:1395 +msgid "Disable comments" +msgstr "Désactiver les commentaires" -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "nettoyer l'emplacement géographique" +#: ../../include/conversation.php:1396 +msgid "Toggle comments" +msgstr "Basculer les commentaires" -#: ../../include/conversation.php:1215 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:135 ../../mod/editwebpage.php:207 -msgid "Title (optional)" -msgstr "Titre (facultatif)" - -#: ../../include/conversation.php:1219 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:162 ../../mod/editpost.php:137 -#: ../../mod/editwebpage.php:209 +#: ../../include/conversation.php:1404 msgid "Categories (optional, comma-separated list)" msgstr "Catégories (facultatives, séparées par des virgules)" -#: ../../include/conversation.php:1221 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:124 -#: ../../mod/editwebpage.php:193 -msgid "Permission settings" -msgstr "Permissions" +#: ../../include/conversation.php:1427 +msgid "Other networks and post services" +msgstr "Autres réseaux et services de messagerie" -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "permissions" +#: ../../include/conversation.php:1433 +msgid "Set publish date" +msgstr "Définir la date de publication" -#: ../../include/conversation.php:1230 ../../mod/editblock.php:158 -#: ../../mod/editlayout.php:155 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:202 -msgid "Public post" -msgstr "Contenu public" - -#: ../../include/conversation.php:1232 ../../mod/editblock.php:165 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:138 -#: ../../mod/editwebpage.php:210 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: robert@exemple.com, marie@exemple.com" - -#: ../../include/conversation.php:1245 ../../mod/mail.php:245 -#: ../../mod/mail.php:359 ../../mod/editblock.php:175 -#: ../../mod/editlayout.php:172 ../../mod/editpost.php:149 -#: ../../mod/editwebpage.php:219 -msgid "Set expiration date" -msgstr "Définir la date d'expiration" - -#: ../../include/conversation.php:1249 ../../mod/editpost.php:153 -#: ../../mod/events.php:674 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1250 ../../mod/editpost.php:154 -#: ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:589 -#: ../../mod/settings.php:615 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Annuler" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "À découvrir" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "Flux publics importés" - -#: ../../include/conversation.php:1500 +#: ../../include/conversation.php:1693 msgid "Commented Order" -msgstr "Commentaires Récents" +msgstr "Par date de commentaire" -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1696 msgid "Sort by Comment Date" msgstr "Trier par date de dernier commentaire" -#: ../../include/conversation.php:1507 +#: ../../include/conversation.php:1700 msgid "Posted Order" -msgstr "Publications Récentes" +msgstr "Par date de publication" -#: ../../include/conversation.php:1510 +#: ../../include/conversation.php:1703 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1711 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:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "Nouveautés" - -#: ../../include/conversation.php:1527 +#: ../../include/conversation.php:1720 msgid "Activity Stream - by date" msgstr "Flux d'activité - par date" -#: ../../include/conversation.php:1533 +#: ../../include/conversation.php:1726 msgid "Starred" -msgstr "Mis en avant" +msgstr "Avec étoile" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1729 msgid "Favourite Posts" msgstr "Publications préférées" -#: ../../include/conversation.php:1543 +#: ../../include/conversation.php:1736 msgid "Spam" msgstr "Indésirable" -#: ../../include/conversation.php:1546 +#: ../../include/conversation.php:1739 msgid "Posts flagged as SPAM" msgstr "Publications marquées comme indésirables" -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "Canal" - -#: ../../include/conversation.php:1593 +#: ../../include/conversation.php:1814 ../../include/nav.php:381 msgid "Status Messages and Posts" msgstr "Messages d'état et contributions" -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "À propos" - -#: ../../include/conversation.php:1605 +#: ../../include/conversation.php:1827 ../../include/nav.php:394 msgid "Profile Details" msgstr "Détails du profil" -#: ../../include/conversation.php:1614 ../../include/photos.php:359 +#: ../../include/conversation.php:1837 ../../include/nav.php:404 +#: ../../include/photos.php:666 msgid "Photo Albums" msgstr "Albums photo" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1845 ../../include/nav.php:412 msgid "Files and Storage" msgstr "Fichiers et Stockage" -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Salons de clavardage" +#: ../../include/conversation.php:1882 ../../include/nav.php:447 +msgid "Bookmarks" +msgstr "Favoris" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1885 ../../include/nav.php:450 msgid "Saved Bookmarks" msgstr "Favoris sauvegardés" -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Gérer les pages web" +#: ../../include/conversation.php:1896 ../../include/nav.php:461 +msgid "View Cards" +msgstr "Voir cartes" -#: ../../include/conversation.php:1718 +#: ../../include/conversation.php:1904 +msgid "articles" +msgstr "articles" + +#: ../../include/conversation.php:1907 ../../include/nav.php:472 +msgid "View Articles" +msgstr "Voir articles" + +#: ../../include/conversation.php:1918 ../../include/nav.php:484 +msgid "View Webpages" +msgstr "Voir les pages web" + +#: ../../include/conversation.php:1987 msgctxt "noun" msgid "Attending" msgid_plural "Attending" -msgstr[0] "Participation" -msgstr[1] "Participations" +msgstr[0] "Participe" +msgstr[1] "Participent" -#: ../../include/conversation.php:1721 +#: ../../include/conversation.php:1990 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" -msgstr[0] "Non-participation" -msgstr[1] "Non-participations" +msgstr[0] "Ne participe pas" +msgstr[1] "Ne participent pas" -#: ../../include/conversation.php:1724 +#: ../../include/conversation.php:1993 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" -msgstr[0] "Indécis" -msgstr[1] "" +msgstr[0] "Indécis(e)" +msgstr[1] "Indécis(es)" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1996 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accord" msgstr[1] "D'accord" -#: ../../include/conversation.php:1730 +#: ../../include/conversation.php:1999 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Pas d'accord" msgstr[1] "Pas d'accord" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:2002 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" -msgstr[0] "Sans opinion" -msgstr[1] "Sans opinion" +msgstr[0] "S'abstient" +msgstr[1] "S'abstiennent" -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-JJ ou MM-JJ" - -#: ../../include/datetime.php:235 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/events.php:672 -msgid "Required" -msgstr "Requis" - -#: ../../include/datetime.php:262 ../../boot.php:2358 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "à l'instant" - -#: ../../include/datetime.php:271 -msgid "year" -msgstr "année" - -#: ../../include/datetime.php:271 -msgid "years" -msgstr "années" - -#: ../../include/datetime.php:272 -msgid "month" -msgstr "mois" - -#: ../../include/datetime.php:272 -msgid "months" -msgstr "mois" - -#: ../../include/datetime.php:273 -msgid "week" -msgstr "semaine" - -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "semaines" - -#: ../../include/datetime.php:274 -msgid "day" -msgstr "jour" - -#: ../../include/datetime.php:274 -msgid "days" -msgstr "jours" - -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "heure" - -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "heures" - -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "minute" - -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "minutes" - -#: ../../include/datetime.php:277 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:285 -#, 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:519 -#, php-format -msgid "%1$s's birthday" -msgstr "Anniversaire de %1$s" - -#: ../../include/datetime.php:520 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Joyeux Anniversaire %1$s" - -#: ../../include/diaspora.php:2498 -msgid "Please choose" -msgstr "Merci de choisir" - -#: ../../include/diaspora.php:2500 -msgid "Agree" -msgstr "D'accord" - -#: ../../include/diaspora.php:2502 -msgid "Disagree" -msgstr "Pas d'accord" - -#: ../../include/diaspora.php:2504 -msgid "Abstain" -msgstr "Abstention" - -#: ../../include/dimport.php:34 ../../include/identity.php:217 -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/dir_fns.php:126 +#: ../../include/dir_fns.php:141 msgid "Directory Options" msgstr "Options d'annuaire" -#: ../../include/dir_fns.php:128 +#: ../../include/dir_fns.php:143 msgid "Safe Mode" msgstr "Mode sûr" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:428 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/connedit.php:647 -#: ../../mod/connedit.php:675 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "No" -msgstr "Non" - -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:430 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "Yes" -msgstr "Oui" - -#: ../../include/dir_fns.php:129 +#: ../../include/dir_fns.php:144 msgid "Public Forums Only" -msgstr "Seulement les forums publics" +msgstr "Les forums publics uniquement" -#: ../../include/dir_fns.php:130 +#: ../../include/dir_fns.php:145 msgid "This Website Only" -msgstr "Juste ce site" +msgstr "Ce site uniquement" -#: ../../include/enotify.php:96 +#: ../../include/bookmarks.php:34 #, php-format -msgid "%s " -msgstr "%s " +msgid "%1$s's bookmarks" +msgstr "Favoris de %1$s" -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notification] Nouveau message reçu sur %s" +#: ../../include/import.php:25 +msgid "Unable to import a removed channel." +msgstr "Impossible d'importer un canal supprimé." -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, vous avez reçu un message privé sur %3$s, de la part de %2$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s vous a envoyé %2$s." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un message privé" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Merci de visiter %s pour voir et/ou répondre à vos messages privés." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s a commenté sur [zrl=%3$s]%5$s de %4$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s a commenté [zrl=%3$s]votre %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notification] Commentaire de %2$s sur conversation #%1$d" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s a commenté un élément de conversation que vous suivez." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Merci de visiter %s pour voir et/ou répondre sur cette conversation." - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Matrice Rouge:Notification] %s a publié sur votre profil" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s a publié sur votre profil à %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s a publié sur [zrl=%3$s]votre profil[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notification] %s vous a étiqueté" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, vous avez été étiqueté sur %3$s par %2$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]vous a étiqueté[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notification] %1$s vous a cogné" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, vous avez été cogné/pointé/sollicité par %2$s sur %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]vous a cogné[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Matrice Rouge:Notification] %s a étiqueté votre publication" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s a étiqueté votre publication sur %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s a étiqueté [zrl=%3$s]votre publication[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notification] Nouvelle introduction" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, vous avez reçu une demande de mise en relation de '%2$s' sur %3$s" - -#: ../../include/enotify.php:272 -#, php-format +#: ../../include/import.php:46 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, vous avez reçu [zrl=%2$s]une demande de mise en relation[/zrl] de %3$s." +"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/enotify.php:276 ../../include/enotify.php:295 +#: ../../include/import.php:111 +msgid "Cloned channel not found. Import failed." +msgstr "Canal cloné non trouvé. Echec de l'import." + +#: ../../include/text.php:492 +msgid "prev" +msgstr "préc." + +#: ../../include/text.php:494 +msgid "first" +msgstr "premier" + +#: ../../include/text.php:523 +msgid "last" +msgstr "dernier" + +#: ../../include/text.php:526 +msgid "next" +msgstr "Suivant" + +#: ../../include/text.php:537 +msgid "older" +msgstr "plus ancien" + +#: ../../include/text.php:539 +msgid "newer" +msgstr "plus récent" + +#: ../../include/text.php:961 +msgid "No connections" +msgstr "Pas de contact." + +#: ../../include/text.php:993 #, php-format -msgid "You may visit their profile at %s" -msgstr "Vous pouvez visiter leur profil sur %s" +msgid "View all %s connections" +msgstr "Voir les %s contacts" -#: ../../include/enotify.php:278 +#: ../../include/text.php:1129 ../../include/text.php:1133 +msgid "poke" +msgstr "tapoter" + +#: ../../include/text.php:1134 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1134 +msgid "pinged" +msgstr "pingé" + +#: ../../include/text.php:1135 +msgid "prod" +msgstr "encourager" + +#: ../../include/text.php:1135 +msgid "prodded" +msgstr "à encouragé" + +#: ../../include/text.php:1136 +msgid "slap" +msgstr "giffler" + +#: ../../include/text.php:1136 +msgid "slapped" +msgstr "gifflé(e)" + +#: ../../include/text.php:1137 +msgid "finger" +msgstr "pointer" + +#: ../../include/text.php:1137 +msgid "fingered" +msgstr "pointé" + +#: ../../include/text.php:1138 +msgid "rebuff" +msgstr "rejetter" + +#: ../../include/text.php:1138 +msgid "rebuffed" +msgstr "rejeté" + +#: ../../include/text.php:1161 +msgid "happy" +msgstr "heureux" + +#: ../../include/text.php:1162 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1163 +msgid "mellow" +msgstr "mélancolique" + +#: ../../include/text.php:1164 +msgid "tired" +msgstr "fatigué" + +#: ../../include/text.php:1165 +msgid "perky" +msgstr "impertinent" + +#: ../../include/text.php:1166 +msgid "angry" +msgstr "en colère" + +#: ../../include/text.php:1167 +msgid "stupefied" +msgstr "stupéfait" + +#: ../../include/text.php:1168 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:1169 +msgid "interested" +msgstr "intéressé" + +#: ../../include/text.php:1170 +msgid "bitter" +msgstr "amer" + +#: ../../include/text.php:1171 +msgid "cheerful" +msgstr "plein d'entrain" + +#: ../../include/text.php:1172 +msgid "alive" +msgstr "vivant" + +#: ../../include/text.php:1173 +msgid "annoyed" +msgstr "agaçé" + +#: ../../include/text.php:1174 +msgid "anxious" +msgstr "anxieux" + +#: ../../include/text.php:1175 +msgid "cranky" +msgstr "énervé" + +#: ../../include/text.php:1176 +msgid "disturbed" +msgstr "perturbé" + +#: ../../include/text.php:1177 +msgid "frustrated" +msgstr "frustré" + +#: ../../include/text.php:1178 +msgid "depressed" +msgstr "déprimé" + +#: ../../include/text.php:1179 +msgid "motivated" +msgstr "motivé" + +#: ../../include/text.php:1180 +msgid "relaxed" +msgstr "détendu" + +#: ../../include/text.php:1181 +msgid "surprised" +msgstr "surpris" + +#: ../../include/text.php:1360 ../../include/js_strings.php:76 +msgid "Monday" +msgstr "Lundi" + +#: ../../include/text.php:1360 ../../include/js_strings.php:77 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../include/text.php:1360 ../../include/js_strings.php:78 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../include/text.php:1360 ../../include/js_strings.php:79 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../include/text.php:1360 ../../include/js_strings.php:80 +msgid "Friday" +msgstr "Vendredi" + +#: ../../include/text.php:1360 ../../include/js_strings.php:81 +msgid "Saturday" +msgstr "Samedi" + +#: ../../include/text.php:1360 ../../include/js_strings.php:75 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../include/text.php:1364 ../../include/js_strings.php:51 +msgid "January" +msgstr "Janvier" + +#: ../../include/text.php:1364 ../../include/js_strings.php:52 +msgid "February" +msgstr "Février" + +#: ../../include/text.php:1364 ../../include/js_strings.php:53 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:1364 ../../include/js_strings.php:54 +msgid "April" +msgstr "Avril" + +#: ../../include/text.php:1364 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1364 ../../include/js_strings.php:56 +msgid "June" +msgstr "Juin" + +#: ../../include/text.php:1364 ../../include/js_strings.php:57 +msgid "July" +msgstr "Juillet" + +#: ../../include/text.php:1364 ../../include/js_strings.php:58 +msgid "August" +msgstr "Août" + +#: ../../include/text.php:1364 ../../include/js_strings.php:59 +msgid "September" +msgstr "Septembre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:60 +msgid "October" +msgstr "Octobre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:61 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:62 +msgid "December" +msgstr "Décembre" + +#: ../../include/text.php:1428 ../../include/text.php:1432 +msgid "Unknown Attachment" +msgstr "Pièce jointe inconnue" + +#: ../../include/text.php:1434 ../../include/feedutils.php:860 +msgid "unknown" +msgstr "Inconnu" + +#: ../../include/text.php:1470 +msgid "remove category" +msgstr "supprimer la catégorie" + +#: ../../include/text.php:1544 +msgid "remove from file" +msgstr "retirer du fichier" + +#: ../../include/text.php:1686 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "Télécharger le contenu binaire/chiffré" + +#: ../../include/text.php:1849 ../../include/language.php:397 +msgid "default" +msgstr "défaut" + +#: ../../include/text.php:1857 +msgid "Page layout" +msgstr "Mise en page" + +#: ../../include/text.php:1857 +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:1868 +msgid "HTML" +msgstr "HTML" + +#: ../../include/text.php:1871 +msgid "Comanche Layout" +msgstr "mise en page Comanche" + +#: ../../include/text.php:1876 +msgid "PHP" +msgstr "PHP" + +#: ../../include/text.php:1885 +msgid "Page content type" +msgstr "Type de contenu de la page" + +#: ../../include/text.php:2018 +msgid "activity" +msgstr "activité" + +#: ../../include/text.php:2100 +msgid "a-z, 0-9, -, and _ only" +msgstr "a-z, 0-9, -, -, et _ seulement" + +#: ../../include/text.php:2419 +msgid "Design Tools" +msgstr "Outils de conception" + +#: ../../include/text.php:2425 +msgid "Pages" +msgstr "Pages" + +#: ../../include/text.php:2447 +msgid "Import website..." +msgstr "Importer le site web…" + +#: ../../include/text.php:2448 +msgid "Select folder to import" +msgstr "Sélectionner le dossier à importer" + +#: ../../include/text.php:2449 +msgid "Import from a zipped folder:" +msgstr "Importer à partir d'un dossier zippé :" + +#: ../../include/text.php:2450 +msgid "Import from cloud files:" +msgstr "Importer à partir de fichiers dans le cloud :" + +#: ../../include/text.php:2451 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/chemain/du/repertoire" + +#: ../../include/text.php:2452 +msgid "Enter path to website files" +msgstr "Entrer le chemin vers les fichiers du site web" + +#: ../../include/text.php:2453 +msgid "Select folder" +msgstr "Sélectionner un répertoire" + +#: ../../include/text.php:2454 +msgid "Export website..." +msgstr "Exporter le site web…" + +#: ../../include/text.php:2455 +msgid "Export to a zip file" +msgstr "Exporter dans un fichier zip" + +#: ../../include/text.php:2456 +msgid "website.zip" +msgstr "website.zip" + +#: ../../include/text.php:2457 +msgid "Enter a name for the zip file." +msgstr "Entrer un nom pour le fichier zip." + +#: ../../include/text.php:2458 +msgid "Export to cloud files" +msgstr "Exporter dans des fichiers sur le cloud" + +#: ../../include/text.php:2459 +msgid "/path/to/export/folder" +msgstr "/chemin/vers/le/dossier/d'export" + +#: ../../include/text.php:2460 +msgid "Enter a path to a cloud files destination." +msgstr "Entrer le chemin vers le cloud de fichiers" + +#: ../../include/text.php:2461 +msgid "Specify folder" +msgstr "Spécifier un répertoire" + +#: ../../include/contact_widgets.php:11 #, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Merci de visiter %s avant d'approuver (ou non) cette demande de relation." +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitation disponible" +msgstr[1] "%d invitations disponibles" -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Matrice Rouge:Notification] Nouvelle suggestion d'amitié" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Trouver des canaux" -#: ../../include/enotify.php:286 +#: ../../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 "Lier et 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:223 +msgid "Common Connections" +msgstr "Connexions communes" + +#: ../../include/contact_widgets.php:228 #, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, vous avez reçu une suggestion de relation de '%2$s' à %3$s" +msgid "View all %d common connections" +msgstr "Voir toutes les connexions communes %d" -#: ../../include/enotify.php:287 +#: ../../include/markdown.php:158 ../../include/bbcode.php:356 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, avez reçu %3$s comme [zrl=%2$s]une suggestion de relation[/zrl] de %4$s." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s a écrit %2$s qui suit %3$s" -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nom :" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Photo :" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Merci de visiter %s pour donner suite (ou non) à cette suggestion." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Notification]" - -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "Cet événement a été ajouté à votre calendrier." - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Fonctionnalités générales" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Expiration de contenu" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Profils multiples" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Possibilité de créer plusieurs profils" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Profils Avancés" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Sections additionnelles du profil" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importer/Exporter le profil" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Distribuer les détails du profil sur la matrice." - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Pages web" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Notes privées" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Active un outil pour stocker notes et mémos" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Sélection du canal par la navigation" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Changez de canal directement depuis le menu de navigation" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Localisation des photos" - -#: ../../include/features.php:47 -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 afficher sur une carte." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Mode expert" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Activer le mode expert pour accéder aux options avancées" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Canal VIP" - -#: ../../include/features.php:50 -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 relations de votre canal" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Fonctionnalités de composition" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Utiliser Markdown" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Authoriser l'usage de \"Markdown\" pour le format des partages" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Grandes photos" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Inclure une version large (640px) des aperçus dans les publications. Si désactivé, seulement inclure des aperçus de 320px." - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Encore plus de chiffrement" - -#: ../../include/features.php:60 -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:61 -msgid "Enable voting tools" -msgstr "Activer les outils de vote" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Fournit un type de publication sur lequel les utilisateurs peuvent se prononcer" - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Filtrage du réseau et des flux" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Chercher par date" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Pouvoir choisir des publications par date" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtre des collections" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Sauver des termes de recherche pour utilisation ultérieure" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Onglet \"réseau personnel\"" - -#: ../../include/features.php:71 -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:72 -msgid "Network New Tab" -msgstr "Onglet \"nouveautés réseau\"" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Activer un onglet avec toute activité récente sur le réseau" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Gérer l'affinité" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations" - -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "Filtrage de connexions" - -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrez les publications par leurs connexions, d'après des mots clés" - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Suggérer des canaux" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Montrer les suggestions de canaux" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Gérer les publications/commentaires" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Étiquettes" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Permettre de marquer les publications existantes" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Catégoriser les publications" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Ajouter des catégories à vos publications" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Permettre de classer les publications dans des dossiers" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Détester les publications" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Pouvoir détester les publications/commentaires" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Mettre en avant les publications" - -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Pouvoir marquer certaines publications d'une étoile" - -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Nuage de tags" - -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Afficher un nuage de vos tags sur votre canal" - -#: ../../include/follow.php:28 +#: ../../include/follow.php:37 msgid "Channel is blocked on this site." msgstr "Ce canal est bloqué sur ce site." -#: ../../include/follow.php:33 +#: ../../include/follow.php:42 msgid "Channel location missing." msgstr "Emplacement du canal introuvable." -#: ../../include/follow.php:83 +#: ../../include/follow.php:84 msgid "Response from remote channel was incomplete." msgstr "La réponse du canal distant était incomplète." -#: ../../include/follow.php:100 +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "Canal Premium - s'il vous plaît visitez :" + +#: ../../include/follow.php:110 msgid "Channel was deleted and no longer exists." msgstr "Le canal a été supprimé et n'existe plus." -#: ../../include/follow.php:135 ../../include/follow.php:206 +#: ../../include/follow.php:165 +msgid "Remote channel or protocol unavailable." +msgstr "Canal distant ou protocole indisponible." + +#: ../../include/follow.php:188 +msgid "Channel discovery failed." +msgstr "La tentative d'accéder au canal a échoué." + +#: ../../include/follow.php:200 msgid "Protocol disabled." msgstr "Protocole désactivé." -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "Protocole bloqué pour ce canal." - -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "La tentative d'accéder au canal a échouée." - -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "compte local introuvable." - -#: ../../include/follow.php:224 +#: ../../include/follow.php:211 msgid "Cannot connect to yourself." msgstr "Ne peut pas se connecter à vous." -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants peuvent s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de recréer un nouveau groupe avec un nom différent." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Groupe de confidentialité par défaut pour les nouveaux contacts" - -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Tous canaux" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "éditer" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Collections" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Éditer collection" - -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Ajouter une nouvelle collection" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Ces canaux ne sont dans aucune collection" - -#: ../../include/identity.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/identity.php:67 -msgid "Empty name" -msgstr "Nom vide" - -#: ../../include/identity.php:70 -msgid "Name too long" -msgstr "Nom trop long" - -#: ../../include/identity.php:186 -msgid "No account identifier" -msgstr "Pas d'identifiant de compte" - -#: ../../include/identity.php:198 -msgid "Nickname is required." -msgstr "Un surnom est requis." - -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Pseudonyme réservé. Merci d'en choisir un autre." - -#: ../../include/identity.php:292 -msgid "Unable to retrieve created identity" -msgstr "Impossible de récupérer l'identité créée" - -#: ../../include/identity.php:350 -msgid "Default Profile" -msgstr "Profil par défaut" - -#: ../../include/identity.php:759 -msgid "Requested channel is not available." -msgstr "Canal demandé non-disponible." - -#: ../../include/identity.php:806 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:27 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54 -#: ../../mod/hcard.php:8 ../../mod/layouts.php:29 ../../mod/webpages.php:29 -msgid "Requested profile is not available." -msgstr "Profil demandé inaccessible." - -#: ../../include/identity.php:969 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Changer la photo du profil" - -#: ../../include/identity.php:975 -msgid "Profiles" -msgstr "Profils" - -#: ../../include/identity.php:975 -msgid "Manage/edit profiles" -msgstr "Gérer/éditer les profils" - -#: ../../include/identity.php:976 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../include/identity.php:991 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Image du profil" - -#: ../../include/identity.php:994 -msgid "visible to everybody" -msgstr "visible pour tous" - -#: ../../include/identity.php:995 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Éditer la visibilité" - -#: ../../include/identity.php:1011 ../../include/identity.php:1250 -msgid "Gender:" -msgstr "Sexe :" - -#: ../../include/identity.php:1012 ../../include/identity.php:1294 -msgid "Status:" -msgstr "État :" - -#: ../../include/identity.php:1013 ../../include/identity.php:1305 -msgid "Homepage:" -msgstr "Site web :" - -#: ../../include/identity.php:1014 -msgid "Online Now" -msgstr "Connecté" - -#: ../../include/identity.php:1097 ../../include/identity.php:1175 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "H:i l d F" - -#: ../../include/identity.php:1098 ../../include/identity.php:1176 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:1143 ../../include/identity.php:1215 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../include/identity.php:1154 -msgid "Birthday Reminders" -msgstr "Rappels d'anniversaires" - -#: ../../include/identity.php:1155 -msgid "Birthdays this week:" -msgstr "Anniversaires cette semaine :" - -#: ../../include/identity.php:1208 -msgid "[No description]" -msgstr "[Pas de description]" - -#: ../../include/identity.php:1226 -msgid "Event Reminders" -msgstr "Rappels d'événements" - -#: ../../include/identity.php:1227 -msgid "Events this week:" -msgstr "Événements cette semaine :" - -#: ../../include/identity.php:1248 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "Nom complet :" - -#: ../../include/identity.php:1255 -msgid "Like this channel" -msgstr "J'aime ce canal" - -#: ../../include/identity.php:1279 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1280 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1287 -msgid "Birthday:" -msgstr "Date de naissance :" - -#: ../../include/identity.php:1291 ../../mod/directory.php:297 -msgid "Age:" -msgstr "Age :" - -#: ../../include/identity.php:1300 -#, php-format -msgid "for %1$d %2$s" -msgstr "depuis %1$d %2$s" - -#: ../../include/identity.php:1303 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Orientation sexuelle :" - -#: ../../include/identity.php:1307 ../../mod/profiles.php:693 -#: ../../mod/directory.php:313 -msgid "Hometown:" -msgstr "Ville natale :" - -#: ../../include/identity.php:1309 -msgid "Tags:" -msgstr "Étiquettes:" - -#: ../../include/identity.php:1311 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Opinions politiques :" - -#: ../../include/identity.php:1313 -msgid "Religion:" -msgstr "Religion :" - -#: ../../include/identity.php:1315 ../../mod/directory.php:315 -msgid "About:" -msgstr "À propos :" - -#: ../../include/identity.php:1317 -msgid "Hobbies/Interests:" -msgstr "Occupations/Centres d'intérêt :" - -#: ../../include/identity.php:1319 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Aime :" - -#: ../../include/identity.php:1321 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "N'aime pas :" - -#: ../../include/identity.php:1323 -msgid "Contact information and Social Networks:" -msgstr "Coordonnées et réseaux sociaux :" - -#: ../../include/identity.php:1325 -msgid "My other channels:" -msgstr "Mes autres canaux :" - -#: ../../include/identity.php:1327 -msgid "Musical interests:" -msgstr "Goûts musicaux :" - -#: ../../include/identity.php:1329 -msgid "Books, literature:" -msgstr "Lectures, goûts littéraires :" - -#: ../../include/identity.php:1331 -msgid "Television:" -msgstr "Télévision :" - -#: ../../include/identity.php:1333 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/danse/culture/divertissement&nsbp;:" - -#: ../../include/identity.php:1335 -msgid "Love/Romance:" -msgstr "Vie sentimentale/amoureuse :" - -#: ../../include/identity.php:1337 -msgid "Work/employment:" -msgstr "Travail :" - -#: ../../include/identity.php:1339 -msgid "School/education:" -msgstr "Cursus :" - -#: ../../include/identity.php:1359 -msgid "Like this thing" -msgstr "J'aime ceci" - -#: ../../include/items.php:413 ../../mod/bulksetclose.php:11 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../index.php:396 -msgid "Permission denied" -msgstr "Accès refusé" - -#: ../../include/items.php:1101 ../../include/items.php:1147 -msgid "(Unknown)" -msgstr "(Inconnu)" - -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "Visible à tout le monde sur internet." - -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "Visible pour vous seulement." - -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "Visible sur toute la Matrice." - -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "Visible aux usagers authentifiés." - -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible pour tous sur %s." - -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "Visible pour tous les contacts." - -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "Visible aux contacts approuvés." - -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "Visible à certaines connexions." - -#: ../../include/items.php:4310 ../../mod/admin.php:167 -#: ../../mod/admin.php:1025 ../../mod/admin.php:1225 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:74 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Élément introuvable." - -#: ../../include/items.php:4787 ../../mod/bulksetclose.php:51 -#: ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Collection introuvable." - -#: ../../include/items.php:4803 -msgid "Collection is empty." -msgstr "Collection vide." - -#: ../../include/items.php:4810 -#, php-format -msgid "Collection: %s" -msgstr "Collection : %s" - -#: ../../include/items.php:4820 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "Relation : %s" - -#: ../../include/items.php:4822 -msgid "Connection not found." -msgstr "Relation introuvable." - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Supprimer cet élément?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] montrer moins" +#, php-format +msgid "%s show less" +msgstr "%s afficher moins" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] déplier" +#, php-format +msgid "%s expand" +msgstr "%s dérouler" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] replier" +#, php-format +msgid "%s collapse" +msgstr "%s enrouler" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -3356,7 +12845,7 @@ msgstr "Mot de passe trop court" msgid "Passwords do not match" msgstr "Les mots de passe ne correspondent pas" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "tout le monde" @@ -3370,7 +12859,7 @@ msgstr "Indice pour la phrase de passe" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Note : Les permissions ont changées, mais n'ont pas encore été sauvées." +msgstr "Note : Les droits d'accès ont changé, mais n'ont pas encore été enregistrés." #: ../../include/js_strings.php:17 msgid "close all" @@ -3382,12 +12871,7 @@ msgstr "Aucun nouveau contenu trouvé" #: ../../include/js_strings.php:19 msgid "Rate This Channel (this is public)" -msgstr "Noter ce canal (publiquement)" - -#: ../../include/js_strings.php:20 ../../mod/connedit.php:683 -#: ../../mod/rate.php:156 -msgid "Rating" -msgstr "Note" +msgstr "Evaluer ce canal (publiquement)" #: ../../include/js_strings.php:21 msgid "Describe (optional)" @@ -3401,5771 +12885,1431 @@ msgstr "Merci d'insérer une URL" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Changements en attente. Voulez-vous vraiment quitter cette page?" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "auparavant" +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "timeago.suffixAgo" -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "de maintenant" +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "timeago.suffixFromNow" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "moins d'une minute" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "environ une minute" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d minutes" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "environ une heure" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "environ %d heures" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "un jour" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d jours" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "environ un mois" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d mois" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "environ un an" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d années" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nouvelle page" +#: ../../include/js_strings.php:55 +msgctxt "long" +msgid "May" +msgstr "Mai" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" -msgstr "Voir" +#: ../../include/js_strings.php:63 +msgid "Jan" +msgstr "Jan" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Actions" +#: ../../include/js_strings.php:64 +msgid "Feb" +msgstr "Fev" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Lien vers la page" +#: ../../include/js_strings.php:65 +msgid "Mar" +msgstr "Mar" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titre" +#: ../../include/js_strings.php:66 +msgid "Apr" +msgstr "Avr" -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:108 ../../mod/webpages.php:192 -msgid "Created" -msgstr "Créé" +#: ../../include/js_strings.php:67 +msgctxt "short" +msgid "May" +msgstr "Mai" -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:109 ../../mod/webpages.php:193 -msgid "Edited" -msgstr "Édité" +#: ../../include/js_strings.php:68 +msgid "Jun" +msgstr "Jun" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Peut voir les publications sur mon canal et ses partages." +#: ../../include/js_strings.php:69 +msgid "Jul" +msgstr "Jul" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Peut voir le profil du canal par défaut." +#: ../../include/js_strings.php:70 +msgid "Aug" +msgstr "Aou" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Peut voir mon album photos" +#: ../../include/js_strings.php:71 +msgid "Sep" +msgstr "Sep" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Peut voir mes connections" +#: ../../include/js_strings.php:72 +msgid "Oct" +msgstr "Oct" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Peut voir mes fichiers en partage" +#: ../../include/js_strings.php:73 +msgid "Nov" +msgstr "Nov" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Peut voir mes sites-web" +#: ../../include/js_strings.php:74 +msgid "Dec" +msgstr "Dec" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Peut m'envoyer le flux et les publications de leur canal" +#: ../../include/js_strings.php:82 +msgid "Sun" +msgstr "Dim" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Peut poster sur la page de mon canal (\"mur\")" +#: ../../include/js_strings.php:83 +msgid "Mon" +msgstr "Lun" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Peuvent commenter et/ou aimer mes publications" +#: ../../include/js_strings.php:84 +msgid "Tue" +msgstr "Mar" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Peut m'envoyer des messages privés" +#: ../../include/js_strings.php:85 +msgid "Wed" +msgstr "Mer" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Peut ajouter des photos à mes albums" +#: ../../include/js_strings.php:86 +msgid "Thu" +msgstr "Jeu" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Peuvent aimer/détester" +#: ../../include/js_strings.php:87 +msgid "Fri" +msgstr "Ven" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profils et autres excluant les publications/commentaires." +#: ../../include/js_strings.php:88 +msgid "Sat" +msgstr "Sam" -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Peut faire suivre à tous les contacts du mon canal via @truc" +#: ../../include/js_strings.php:89 +msgctxt "calendar" +msgid "today" +msgstr "aujourd'hui" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancé - utile seulement pour les canaux de type \"forum/groupe\"" +#: ../../include/js_strings.php:90 +msgctxt "calendar" +msgid "month" +msgstr "mois" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Peut discuter avec moi (sous réserve de disponibilité)" +#: ../../include/js_strings.php:91 +msgctxt "calendar" +msgid "week" +msgstr "semaine" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Peut écrire dans mon partage de fichiers" +#: ../../include/js_strings.php:92 +msgctxt "calendar" +msgid "day" +msgstr "jour" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Peut modifier mes sites-web" +#: ../../include/js_strings.php:93 +msgctxt "calendar" +msgid "All day" +msgstr "Toute la journée" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Peut rediriger mes publications publiques dans des canaux dérivés" +#: ../../include/message.php:40 +msgid "Unable to determine sender." +msgstr "Impossible de déterminer l'émetteur." -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Plutôt avancé - très utile dans les communautés ouvertes" +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "Pas de destinataire." -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Peut administrer les ressources de mon canal" +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[sans objet]" -#: ../../include/permissions.php:48 +#: ../../include/message.php:214 +msgid "Stored post could not be verified." +msgstr "Le message stocké n'a pas pu être vérifié." + +#: ../../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/attach.php:265 ../../include/attach.php:361 +msgid "Item was not found." +msgstr "Élément introuvable." + +#: ../../include/attach.php:554 +msgid "No source file." +msgstr "Pas de fichier source." + +#: ../../include/attach.php:576 +msgid "Cannot locate file to replace" +msgstr "Impossible de trouver le fichier à remplacer." + +#: ../../include/attach.php:595 +msgid "Cannot locate file to revise/update" +msgstr "Impossible de trouver le fichier à corriger/mettre à jour" + +#: ../../include/attach.php:737 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Le fichier dépasse la taille limite de %d" + +#: ../../include/attach.php:758 +#, 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:940 +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:969 +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:1043 ../../include/attach.php:1059 +msgid "Path not available." +msgstr "Chemin non disponible." + +#: ../../include/attach.php:1108 ../../include/attach.php:1273 +msgid "Empty pathname" +msgstr "Chemin vide" + +#: ../../include/attach.php:1134 +msgid "duplicate filename or path" +msgstr "doublon de chemin ou de fichier" + +#: ../../include/attach.php:1159 +msgid "Path not found." +msgstr "Chemin introuvable." + +#: ../../include/attach.php:1227 +msgid "mkdir failed." +msgstr "mkdir a échoué." + +#: ../../include/attach.php:1231 +msgid "database storage failed." +msgstr "l'écriture dans la base de données a échoué." + +#: ../../include/attach.php:1279 +msgid "Empty path" +msgstr "Chemin vide" + +#: ../../include/security.php:541 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Très avancé. Ne pas toucher, sauf si vous savez VRAIMENT ce que vous faites" +"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/permissions.php:893 -msgid "Social Networking" -msgstr "Réseau social" +#: ../../include/items.php:885 ../../include/items.php:945 +msgid "(Unknown)" +msgstr "(Inconnu)" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Surtout public" +#: ../../include/items.php:1133 +msgid "Visible to anybody on the internet." +msgstr "Visible pour tout le monde sur internet." -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Accès restreint" +#: ../../include/items.php:1135 +msgid "Visible to you only." +msgstr "Visible pour vous seulement." -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privé" +#: ../../include/items.php:1137 +msgid "Visible to anybody in this network." +msgstr "Visible pour tout le monde sur ce réseau." -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Forum communautaire" +#: ../../include/items.php:1139 +msgid "Visible to anybody authenticated." +msgstr "Visible aux utilisateurs authentifiés." -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "Republication de flux" +#: ../../include/items.php:1141 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible pour tous sur %s." -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Utilisation spécifique" +#: ../../include/items.php:1143 +msgid "Visible to all connections." +msgstr "Visible par tous les contacts." -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Page de célébrité/tribune" +#: ../../include/items.php:1145 +msgid "Visible to approved connections." +msgstr "Visible par les contacts validés." -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Espace de groupe" +#: ../../include/items.php:1147 +msgid "Visible to specific connections." +msgstr "Visible par certains contacts." -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Autre" +#: ../../include/items.php:4197 +msgid "Privacy group is empty." +msgstr "Groupe de contacts vide." -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Mode expert/spécifique" +#: ../../include/items.php:4204 +#, php-format +msgid "Privacy group: %s" +msgstr "Groupe de contacts : %s" -#: ../../include/photos.php:94 +#: ../../include/items.php:4216 +msgid "Connection not found." +msgstr "Contact non trouvé." + +#: ../../include/items.php:4565 +msgid "profile photo" +msgstr "photo de profil" + +#: ../../include/items.php:4756 +#, php-format +msgid "[Edited %s]" +msgstr "[%s édité]" + +#: ../../include/items.php:4756 +msgctxt "edit_activity" +msgid "Post" +msgstr "Publier" + +#: ../../include/items.php:4756 +msgctxt "edit_activity" +msgid "Comment" +msgstr "Commenter" + +#: ../../include/channel.php:35 +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:68 +msgid "Empty name" +msgstr "Nom vide" + +#: ../../include/channel.php:71 +msgid "Name too long" +msgstr "Nom trop long" + +#: ../../include/channel.php:188 +msgid "No account identifier" +msgstr "Pas d'identifiant de compte" + +#: ../../include/channel.php:200 +msgid "Nickname is required." +msgstr "Un surnom est requis." + +#: ../../include/channel.php:277 +msgid "Unable to retrieve created identity" +msgstr "Impossible de récupérer l'identité créée" + +#: ../../include/channel.php:373 +msgid "Default Profile" +msgstr "Profil par défaut" + +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "Impossible de récupérer l'identité modifiée" + +#: ../../include/channel.php:1297 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: ../../include/channel.php:1318 +msgid "Visible to everybody" +msgstr "Visible de tous" + +#: ../../include/channel.php:1395 ../../include/channel.php:1523 +msgid "Gender:" +msgstr "Sexe :" + +#: ../../include/channel.php:1397 ../../include/channel.php:1591 +msgid "Homepage:" +msgstr "Site Internet :" + +#: ../../include/channel.php:1398 +msgid "Online Now" +msgstr "Connecté" + +#: ../../include/channel.php:1451 +msgid "Change your profile photo" +msgstr "Modifier votre photo de profil" + +#: ../../include/channel.php:1482 +msgid "Trans" +msgstr "Trans" + +#: ../../include/channel.php:1528 +msgid "Like this channel" +msgstr "J'aime ce canal" + +#: ../../include/channel.php:1552 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/channel.php:1553 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1560 +msgid "Birthday:" +msgstr "Date de naissance :" + +#: ../../include/channel.php:1573 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: ../../include/channel.php:1585 +msgid "Tags:" +msgstr "Étiquettes :" + +#: ../../include/channel.php:1589 +msgid "Sexual Preference:" +msgstr "Orientation sexuelle :" + +#: ../../include/channel.php:1595 +msgid "Political Views:" +msgstr "Opinions politiques :" + +#: ../../include/channel.php:1597 +msgid "Religion:" +msgstr "Religion :" + +#: ../../include/channel.php:1601 +msgid "Hobbies/Interests:" +msgstr "Occupations/Centres d'intérêt :" + +#: ../../include/channel.php:1603 +msgid "Likes:" +msgstr "Aime :" + +#: ../../include/channel.php:1605 +msgid "Dislikes:" +msgstr "N'aime pas :" + +#: ../../include/channel.php:1607 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées et réseaux sociaux :" + +#: ../../include/channel.php:1609 +msgid "My other channels:" +msgstr "Mes autres canaux :" + +#: ../../include/channel.php:1611 +msgid "Musical interests:" +msgstr "Goûts musicaux :" + +#: ../../include/channel.php:1613 +msgid "Books, literature:" +msgstr "Lectures, goûts littéraires :" + +#: ../../include/channel.php:1615 +msgid "Television:" +msgstr "Télévision :" + +#: ../../include/channel.php:1617 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/danse/culture/divertissement&nsbp;:" + +#: ../../include/channel.php:1619 +msgid "Love/Romance:" +msgstr "Vie sentimentale/amoureuse :" + +#: ../../include/channel.php:1621 +msgid "Work/employment:" +msgstr "Travail/Occupation " + +#: ../../include/channel.php:1623 +msgid "School/education:" +msgstr "Études " + +#: ../../include/channel.php:1646 +msgid "Like this thing" +msgstr "J'aime ceci" + +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\à G\\hi" + +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Début :" + +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Fin :" + +#: ../../include/event.php:1011 +msgid "This event has been added to your calendar." +msgstr "Cet évènement a été ajouté dans votre calendrier." + +#: ../../include/event.php:1227 +msgid "Not specified" +msgstr "Non spécifié" + +#: ../../include/event.php:1228 +msgid "Needs Action" +msgstr "Besoin d'une action" + +#: ../../include/event.php:1229 +msgid "Completed" +msgstr "Terminé" + +#: ../../include/event.php:1230 +msgid "In Process" +msgstr "En cours" + +#: ../../include/event.php:1231 +msgid "Cancelled" +msgstr "Annulé" + +#: ../../include/event.php:1310 ../../include/connections.php:692 +msgid "Home, Voice" +msgstr "Domicile, Voix" + +#: ../../include/event.php:1311 ../../include/connections.php:693 +msgid "Home, Fax" +msgstr "Domicile, Fax" + +#: ../../include/event.php:1313 ../../include/connections.php:695 +msgid "Work, Voice" +msgstr "Travail, Voix" + +#: ../../include/event.php:1314 ../../include/connections.php:696 +msgid "Work, Fax" +msgstr "Travail, Fax" + +#: ../../include/network.php:762 +msgid "view full size" +msgstr "voir en taille réelle" + +#: ../../include/network.php:1764 ../../include/network.php:1765 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:1766 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:1767 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:1768 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:1771 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:1772 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:1773 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:1774 +msgid "LinkedIn" +msgstr "Linkedin" + +#: ../../include/network.php:1775 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:1776 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "Qui peut voir cela" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Sélection personnalisée" + +#: ../../include/acl_selectors.php:115 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Sélectionnez \"Afficher\" pour permettre l'affichage. \"Ne pas afficher\" vous permet de remplacer et de limiter la portée de \"Afficher\"." + +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "Montrer" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "Cacher" + +#: ../../include/acl_selectors.php:150 +#, 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 "Les droits d'accès d'un message %s ne peuvent pas être modifiés %s une fois le message envoyé.
Ces droits d'accès définissent qui est autorisé à afficher le message." + +#: ../../include/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Impossible de trouver les infos DNS du serveur de BDD '%s'" + +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1200 +#: ../../include/bbcode.php:1203 ../../include/bbcode.php:1208 +#: ../../include/bbcode.php:1211 ../../include/bbcode.php:1214 +#: ../../include/bbcode.php:1217 ../../include/bbcode.php:1222 +#: ../../include/bbcode.php:1225 ../../include/bbcode.php:1230 +#: ../../include/bbcode.php:1233 ../../include/bbcode.php:1236 +#: ../../include/bbcode.php:1239 +msgid "Image/photo" +msgstr "Image/photo" + +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1250 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: ../../include/bbcode.php:253 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "Installer %1$s element %2$s" + +#: ../../include/bbcode.php:257 +#, 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 le droit de l'installer sur ce site." + +#: ../../include/bbcode.php:348 +msgid "card" +msgstr "carte" + +#: ../../include/bbcode.php:350 +msgid "article" +msgstr "article" + +#: ../../include/bbcode.php:433 ../../include/bbcode.php:441 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" + +#: ../../include/bbcode.php:441 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:454 +msgid "View article" +msgstr "Voir l'article" + +#: ../../include/bbcode.php:454 +msgid "View summary" +msgstr "Voir le résumé" + +#: ../../include/bbcode.php:1188 +msgid "$1 wrote:" +msgstr "$1 a écrit :" + +#: ../../include/oembed.php:329 +msgid " by " +msgstr "par" + +#: ../../include/oembed.php:330 +msgid " on " +msgstr "sur" + +#: ../../include/oembed.php:359 +msgid "Embedded content" +msgstr "Contenu imbriqué" + +#: ../../include/oembed.php:368 +msgid "Embedding disabled" +msgstr "Imbrication désactivée" + +#: ../../include/zid.php:347 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s accueille favorablement %2$s" + +#: ../../include/features.php:56 +msgid "General Features" +msgstr "Fonctionnalités générales" + +#: ../../include/features.php:61 +msgid "Display new member quick links menu" +msgstr "Afficher le menu des liens rapides pour les nouveaux membres" + +#: ../../include/features.php:69 +msgid "Advanced Profiles" +msgstr "Profils avancés" + +#: ../../include/features.php:70 +msgid "Additional profile sections and selections" +msgstr "Sections et sélections supplémentaires du profil" + +#: ../../include/features.php:78 +msgid "Profile Import/Export" +msgstr "Importer/exporter le profil" + +#: ../../include/features.php:79 +msgid "Save and load profile details across sites/channels" +msgstr "Sauvegarder et charger les détails d'un profil entre sites/canaux" + +#: ../../include/features.php:87 +msgid "Web Pages" +msgstr "Pages web" + +#: ../../include/features.php:88 +msgid "Provide managed web pages on your channel" +msgstr "Fournir des pages web, sous votre contrôle, sur votre canal" + +#: ../../include/features.php:97 +msgid "Provide a wiki for your channel" +msgstr "Fournir un wiki pour votre canal." + +#: ../../include/features.php:114 +msgid "Private Notes" +msgstr "Notes privées" + +#: ../../include/features.php:115 +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:124 +msgid "Create personal planning cards" +msgstr "Créer des cartes de planification personnelle" + +#: ../../include/features.php:134 +msgid "Create interactive articles" +msgstr "Créer des articles interactifs" + +#: ../../include/features.php:142 +msgid "Navigation Channel Select" +msgstr "Sélection du canal par la navigation" + +#: ../../include/features.php:143 +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:151 +msgid "Photo Location" +msgstr "Site de prise de vue" + +#: ../../include/features.php:152 +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:160 +msgid "Access Controlled Chatrooms" +msgstr "Accéder au salons de discussions contrôlés." + +#: ../../include/features.php:161 +msgid "Provide chatrooms and chat services with access control." +msgstr "Fournir des salons de discussions et des services de discussions avec contrôle d'accès." + +#: ../../include/features.php:170 +msgid "Smart Birthdays" +msgstr "Anniversaires intelligents" + +#: ../../include/features.php:171 +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:179 +msgid "Event Timezone Selection" +msgstr "Sélection du fuseau horaire de l'événement" + +#: ../../include/features.php:180 +msgid "Allow event creation in timezones other than your own." +msgstr "Autorise la création d’événements sur d'autres fuseaux horaires que le vôtre." + +#: ../../include/features.php:189 +msgid "Premium Channel" +msgstr "Canal VIP" + +#: ../../include/features.php:190 +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:198 +msgid "Advanced Directory Search" +msgstr "Recherche avancée dans les répertoires" + +#: ../../include/features.php:199 +msgid "Allows creation of complex directory search queries" +msgstr "Autoriser la création d'entrées complexes de recherche de répertoire" + +#: ../../include/features.php:207 +msgid "Advanced Theme and Layout Settings" +msgstr "Paramètres avancés du thème et de l'agencement." + +#: ../../include/features.php:208 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Autoriser la personnalisation fine des thèmes et des agencements." + +#: ../../include/features.php:217 +msgid "Access Control and Permissions" +msgstr "Contrôle d'accès et autorisations" + +#: ../../include/features.php:221 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Groupes confidentiels" + +#: ../../include/features.php:222 +msgid "Enable management and selection of privacy groups" +msgstr "Active la gestion et la sélection des groupes confidentiels" + +#: ../../include/features.php:230 +msgid "Multiple Profiles" +msgstr "Profils multiples" + +#: ../../include/features.php:231 +msgid "Ability to create multiple profiles" +msgstr "Possibilité de créer plusieurs profils" + +#: ../../include/features.php:241 +msgid "Provide alternate connection permission roles." +msgstr "Fournir des rôles d'accès différents pour ce contact." + +#: ../../include/features.php:249 +msgid "OAuth1 Clients" +msgstr "Clients OAuth1" + +#: ../../include/features.php:250 +msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." +msgstr "Gérer les jetons d'authentification OAuth1 pour les applications mobiles et distantes." + +#: ../../include/features.php:258 +msgid "OAuth2 Clients" +msgstr "Clients OAuth2" + +#: ../../include/features.php:259 +msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." +msgstr "Gérer les jetons d'authentification OAuth2 pour les applications mobiles et distantes." + +#: ../../include/features.php:267 +msgid "Access Tokens" +msgstr "Jetons d'accès." + +#: ../../include/features.php:268 +msgid "Create access tokens so that non-members can access private content." +msgstr "Créez des jetons d'accès pour que les non-membres puissent accéder au contenu privé." + +#: ../../include/features.php:279 +msgid "Post Composition Features" +msgstr "Fonctionnalités de composition" + +#: ../../include/features.php:283 +msgid "Large Photos" +msgstr "Grandes photos" + +#: ../../include/features.php:284 +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:293 +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:301 +msgid "Even More Encryption" +msgstr "Encore plus de chiffrement" + +#: ../../include/features.php:302 +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:310 +msgid "Enable Voting Tools" +msgstr "Activer les outils de vote" + +#: ../../include/features.php:311 +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:319 +msgid "Disable Comments" +msgstr "Désactiver les commentaires" + +#: ../../include/features.php:320 +msgid "Provide the option to disable comments for a post" +msgstr "Fournir la possibilité de désactiver les commentaires pour une publication." + +#: ../../include/features.php:328 +msgid "Delayed Posting" +msgstr "Publication plus tard" + +#: ../../include/features.php:329 +msgid "Allow posts to be published at a later date" +msgstr "Permettre de publier des messages à une date programmée" + +#: ../../include/features.php:337 +msgid "Content Expiration" +msgstr "Expiration du contenu" + +#: ../../include/features.php:338 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Supprimer les contributions/commentaires et/ou messages privés plus tard" + +#: ../../include/features.php:346 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Supprimer les publications/commentaires en doublon" + +#: ../../include/features.php:347 +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:355 +msgid "Auto-save drafts of posts and comments" +msgstr "Sauvegarde automatique des brouillons de messages et commentaires" + +#: ../../include/features.php:356 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help" +" prevent accidental loss of compositions" +msgstr "Enregistre automatiquement les brouillons de messages et de commentaires dans le stockage local du navigateur pour aider à prévenir la perte accidentelle de compositions." + +#: ../../include/features.php:367 +msgid "Network and Stream Filtering" +msgstr "Filtrage du réseau et des flux" + +#: ../../include/features.php:371 +msgid "Search by Date" +msgstr "Chercher par date" + +#: ../../include/features.php:372 +msgid "Ability to select posts by date ranges" +msgstr "Pouvoir choisir des publications par date" + +#: ../../include/features.php:382 +msgid "Save search terms for re-use" +msgstr "Sauvegarder des termes de recherche pour utilisation ultérieure" + +#: ../../include/features.php:390 +msgid "Network Personal Tab" +msgstr "Onglet \"Me concernant\"" + +#: ../../include/features.php:391 +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:399 +msgid "Network New Tab" +msgstr "Onglet \"nouveautés réseau\"" + +#: ../../include/features.php:400 +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:408 +msgid "Affinity Tool" +msgstr "Gérer l'affinité" + +#: ../../include/features.php:409 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrer le flux d'activité en fonction de la profondeur des relations" + +#: ../../include/features.php:418 +msgid "Show friend and connection suggestions" +msgstr "Afficher les suggestions de mise en contact" + +#: ../../include/features.php:426 +msgid "Connection Filtering" +msgstr "Filtrage des contacts" + +#: ../../include/features.php:427 +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:439 +msgid "Post/Comment Tools" +msgstr "Gérer les publications/commentaires" + +#: ../../include/features.php:443 +msgid "Community Tagging" +msgstr "Etiquetage communautaire" + +#: ../../include/features.php:444 +msgid "Ability to tag existing posts" +msgstr "Permettre de marquer les publications existantes" + +#: ../../include/features.php:452 +msgid "Post Categories" +msgstr "Catégoriser les publications" + +#: ../../include/features.php:453 +msgid "Add categories to your posts" +msgstr "Ajouter des catégories à vos publications" + +#: ../../include/features.php:461 +msgid "Emoji Reactions" +msgstr "Réactions par émoticônes" + +#: ../../include/features.php:462 +msgid "Add emoji reaction ability to posts" +msgstr "Ajouter la possibilité de réagir aux publications par émoticônes" + +#: ../../include/features.php:471 +msgid "Ability to file posts under folders" +msgstr "Permettre de classer les publications dans des dossiers" + +#: ../../include/features.php:479 +msgid "Dislike Posts" +msgstr "\"Ne pas aimer\" les publications" + +#: ../../include/features.php:480 +msgid "Ability to dislike posts/comments" +msgstr "Possibilité de \"ne pas aimer\" les publications/commentaires" + +#: ../../include/features.php:488 +msgid "Star Posts" +msgstr "Pouvoir mettre en avant les publications" + +#: ../../include/features.php:489 +msgid "Ability to mark special posts with a star indicator" +msgstr "Pouvoir marquer certaines publications d'une étoile" + +#: ../../include/features.php:497 +msgid "Tag Cloud" +msgstr "Nuage de tags" + +#: ../../include/features.php:498 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Afficher un nuage de vos tags sur votre canal" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "Tendance" + +#: ../../include/taxonomy.php:552 +msgid "Keywords" +msgstr "Mots-clefs" + +#: ../../include/taxonomy.php:573 +msgid "have" +msgstr "ont" + +#: ../../include/taxonomy.php:573 +msgid "has" +msgstr "a" + +#: ../../include/taxonomy.php:574 +msgid "want" +msgstr "veulent" + +#: ../../include/taxonomy.php:574 +msgid "wants" +msgstr "veut" + +#: ../../include/taxonomy.php:575 +msgid "likes" +msgstr "aime" + +#: ../../include/taxonomy.php:576 +msgid "dislikes" +msgstr "n'aime pas" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "Ce n'est pas une adresse de courriel valide" + +#: ../../include/account.php:38 +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:44 +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:76 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: ../../include/account.php:80 +msgid "Invitation could not be verified." +msgstr "Votre invitation n'a pas pu être vérifiée." + +#: ../../include/account.php:158 +msgid "Please enter the required information." +msgstr "Merci d'entrer les informations requises." + +#: ../../include/account.php:225 +msgid "Failed to store account information." +msgstr "Impossible de stocker les informations liées au compte." + +#: ../../include/account.php:314 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmation de l'inscription pour %s" + +#: ../../include/account.php:383 +#, php-format +msgid "Registration request at %s" +msgstr "Demande d'inscription sur %s" + +#: ../../include/account.php:405 +msgid "your registration password" +msgstr "votre mot de passe d'inscription" + +#: ../../include/account.php:411 ../../include/account.php:473 +#, php-format +msgid "Registration details for %s" +msgstr "Détails de l'inscription pour %s" + +#: ../../include/account.php:484 +msgid "Account approved." +msgstr "Compte validé." + +#: ../../include/account.php:524 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../include/account.php:803 ../../include/account.php:805 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../include/account.php:811 +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:816 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre forfait." + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "Anniversaire" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "Age :" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-JJ ou MM-JJ" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "à l'instant" + +#: ../../include/datetime.php:262 +#, 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:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "an" +msgstr[1] "ans" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mois" +msgstr[1] "mois" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semaine" +msgstr[1] "semaines" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "jour" +msgstr[1] "jours" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "heure" +msgstr[1] "heures" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minute" +msgstr[1] "minutes" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "secondes" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "Anniversaire de %1$s" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Joyeux Anniversaire %1$s" + +#: ../../include/nav.php:96 +msgid "Remote authentication" +msgstr "Authentification distante" + +#: ../../include/nav.php:96 +msgid "Click to authenticate to your home hub" +msgstr "S'authentifier auprès de votre hub principal" + +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Manage Your Channels" +msgstr "Gérer vos canaux" + +#: ../../include/nav.php:105 ../../include/nav.php:192 +msgid "Account/Channel Settings" +msgstr "Paramètres du Compte/Canal" + +#: ../../include/nav.php:111 ../../include/nav.php:140 +msgid "End this session" +msgstr "Mettre fin à la session" + +#: ../../include/nav.php:114 +msgid "Your profile page" +msgstr "Votre profil" + +#: ../../include/nav.php:117 +msgid "Manage/Edit profiles" +msgstr "Gérer/modifier vos profils" + +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Sign in" +msgstr "Connexion" + +#: ../../include/nav.php:157 +msgid "Take me home" +msgstr "Retourner sur mon serveur" + +#: ../../include/nav.php:159 +msgid "Log me out of this site" +msgstr "Déconnectez-moi de ce site" + +#: ../../include/nav.php:164 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:176 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:179 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "Rechercher un site @nom, !forum, #etiquette, ?document, contenu" + +#: ../../include/nav.php:199 +msgid "Site Setup and Configuration" +msgstr "Configuration du site" + +#: ../../include/nav.php:290 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "@nom, !forum, #etiquette, ?document, contenu" + +#: ../../include/nav.php:291 +msgid "Please wait..." +msgstr "Merci de patienter..." + +#: ../../include/nav.php:297 +msgid "Add Apps" +msgstr "Ajouter des applications" + +#: ../../include/nav.php:298 +msgid "Arrange Apps" +msgstr "Réarranger les applications" + +#: ../../include/nav.php:299 +msgid "Toggle System Apps" +msgstr "(Dés)activer les applications système" + +#: ../../include/photos.php:150 #, 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:101 +#: ../../include/photos.php:161 msgid "Image file is empty." msgstr "L'image est vide." -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" - -#: ../../include/photos.php:199 +#: ../../include/photos.php:326 msgid "Photo storage failed." msgstr "Le stockage de l'image a échoué." -#: ../../include/photos.php:363 +#: ../../include/photos.php:375 +msgid "a new photo" +msgstr "une nouvelle photo" + +#: ../../include/photos.php:379 +#, 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:671 msgid "Upload New Photos" msgstr "Ajouter des photos" -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Étiquettes" +#: ../../include/zot.php:772 +msgid "Invalid data packet" +msgstr "Paquet de données invalide" -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Mots-clefs" +#: ../../include/zot.php:799 +msgid "Unable to verify channel signature" +msgstr "Impossible de vérifier la signature du canal" -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "ont" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "a" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "veulent" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "veut" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "aiment" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "détestent" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Masculin" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actuellement masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actuellement féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Surtout masculin" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Surtout féminin" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgenre" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexuel" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuel" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodite" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutre" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Rien de spécifique" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indécis" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Hommes" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Femmes" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbienne" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Sans préférence" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexuel" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexuel" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Vierge" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Déviant" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fétichiste" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Une floppée" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Nonsexuel" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Célibataire" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Solitaire" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponible" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Indisponible" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "A un béguin" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Amoureux transi" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Sort avec quelqu'un" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infidèle" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Accro au sexe" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amis avec bénéfices" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Sans engagement" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Fiancé(e)" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Marié(e)" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Marié(e) dans ses rêves" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partenaires" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "En cohabitation" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Conjoints de fait" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Heureux" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Pas en recherche" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Infidèle" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Trahi(e)" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Séparé(e)" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Instable" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorcé(e)" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Divorcé(e) dans ses rêves" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Veuf/veuve" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Incertain" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "C'est compliqué" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "S'en fiche" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Me demander" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossible de localiser le destinataire." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossible de communiquer avec le canal demandé." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossible de vérifier le canal demandé." - -#: ../../mod/mail.php:74 -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é." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Message supprimé." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Message annulé/rappelé." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Envoyer un Message Privé" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "À :" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Sujet :" - -#: ../../mod/mail.php:235 ../../mod/mail.php:348 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Votre message :" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Envoyer" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Message introuvable." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Supprimer message" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Rappeler/annuler le message" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Le message a été rappelé." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversation privée" - -#: ../../mod/mail.php:336 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Supprimer conversation" - -#: ../../mod/mail.php:338 -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." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Envoyer une réponse" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Hub introuvable." - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Quelques mots sur quoi faire quand on est nouveau ici" - -#: ../../mod/page.php:36 ../../mod/block.php:27 -msgid "Invalid item." -msgstr "Élément invalide." - -#: ../../mod/page.php:52 ../../mod/block.php:39 ../../mod/wall_upload.php:29 -msgid "Channel not found." -msgstr "Canal introuvable." - -#: ../../mod/page.php:89 ../../mod/block.php:75 ../../mod/display.php:110 -#: ../../mod/help.php:79 ../../index.php:245 -msgid "Page not found." -msgstr "Page introuvable." - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "réseau" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Réglages du thème sauvegardés." - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Comptes" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "Canaux" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "Extensions" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "Thèmes" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Analyser la file d'attente" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Configurations du profil" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "MàJ BD" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "Journaux" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Fonctionnalités liées aux extensions" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Inscriptions en attente" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Comptes" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# comptes bloqués" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# comptes expirés" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# comptes expirant" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Canaux" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primaire" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# clones" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "File des messages" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Résumé" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Comptes enregistrés" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "Inscriptions en attente" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Canaux enregistrés" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "Extensions actives" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "Réglages du site sauvegardés." - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "mobile" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "expérimental" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "non maintenu" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "Oui - avec approbation" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "Mon site n'est pas un serveur publique" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "Mon site est payant" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "Mon site est gratuit" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mon site offre des comptes gratuits avec des ajouts payants" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "Inscription" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "Envoi de fichier" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "Stratégies" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "Nom du site" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "Bannière/logo" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "Informations sur l'administrateur" - -#: ../../mod/admin.php:463 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Coordonnées de l'administrateur du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici" - -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "Langue du système" - -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "Thème du système" - -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème" - -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "Thème système pour mobile" - -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "Thème dédié aux périphériques mobiles" - -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "Activer la compatibilité Diaspora*" - -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Permet de communiquer avec Diaspora et Friendica - expérimental" - -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "Autoriser les Flux (RSS) comme Relations" - -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "(Impact considérable sur les ressources)" - -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "Taille maximale des images" - -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite." - -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "Est-ce que l'enregistrement de nouveau membres sur ce site est autorisé?" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Choisissez le type de comptes offert sur ce hub?" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "Texte d'inscription" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "Sera affiché de manière bien visible sur le formulaire d'inscription." - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Page d'accueil du site à montrer aux visiteurs (par défaut :boîte de dialogue de connexion)" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "exemple :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier." - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "Garder l'adresse du site." - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger" - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps." - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "Domaines amicaux" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "Domaines de courriels amicaux" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines." - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "Domaines de courriel non autorisés" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis." - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "Bloquer public" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes." - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "Demander vérification des adresses de courriel" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)." - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "Forcer publication" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Cocher pour forcer la publication de tous les profils du site dans l'annuaire." - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "Désactiver l'onglet \"À découvrir\"" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Ne pas afficher d'onglet avec des contenus publics automatiquement rassemblées depuis des sources choisies pour ce site." - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "Connexion à partir de la page d'accueil" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré." - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "Utilisateurs du proxy" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "URL du proxy (visiter @proxy-list)" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "Délai maximal du réseau" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)." - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "Intervalle de distribution" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés." - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "Intervalle de scrutation" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution." - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "Charge moyenne maximale" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50." - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Délai d'expiration du contenu importé du réseau, en jours" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "0 pour ne pas expirer le contenu importé" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "Serveur introuvable" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "pour le canal" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "sur le serveur" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "État" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "Serveur" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "La mise à jour a été marquée comme réussie" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "L'éxecution de %s a échoué. Merci de vérifier les journaux du système." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La mise à jour %s a été appliquée avec succès." - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non." - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "La fonction de mise à jour %s est introuvable." - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "Aucune mise à jour défaillante." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Mises à jour défaillantes" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Marquer comme réussie (si la mise à jour a été réalisée manuellement)" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Tenter de réaliser cette étape de mise à jour automatiquement" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "Statistiques de file d'attente" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "Nombre d'entrées total" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "Priorité" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "URL de destination" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "Marquer le hub comme étant hors ligne de manière permanente" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "Vider la file d'attente pour ce hub" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "Dernier contact connu" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "Compte introuvable" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "Compte '%s' supprimé" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "Compte '%s' bloqué" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Compte '%s' débloqué" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "Utilisateurs" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "tout sélectionner" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "Inscriptions en attente d'approbation" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "Date de la demande" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "Approuver" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "Refuser" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "Bloquer" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "Débloquer" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "Date d'inscription" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "Dernière connexion" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "Expire" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "Classe de service" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" - -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "censure modifiée sur %s canal" -msgstr[1] "censure modifiée sur %s canaux" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal supprimé" -msgstr[1] "%s canaux supprimés" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "Canal introuvable" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' supprimé" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censuré" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' non-censuré" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code autorisé pour le canal '%s'" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code interdit pour le canal '%s'" - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "Censurer" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "Ne plus censurer" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "Autoriser le code" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "Interdire le code" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:994 ../../mod/profiles.php:447 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Les canaux sélectionnés seront supprimés!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé!\\n\\nÊtes-vous certain?" - -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Le canal {0} sera supprimé!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé!\\n\\nÊtes-vous certain?" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extension %s désactivée." - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extension %s activée." - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "Désactiver" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "Activer" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "(Dés)activer" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "Auteur :" - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "Maintenu par :" - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "Aucun thème trouvé." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "Aperçu" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[Expérimental]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[Non-supporté]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "Réglages du journal sauvegardés." - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "Vider" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "Débogage" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "Fichier du journal" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de votre installation de la Matrice Rouge." - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "Niveau de journalisation" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "Nouveau champ de profil" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "Nom court du champ" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "Nom système du champ" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "Type de champ" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "Nom du champ" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "Étiquette sur le profil" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "Aide à la saisie" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "Informations additionnelles (facultatif)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "Définition du champ non-trouvée" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "Éditer le champ de profil" - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -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." - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Editeur de configuration" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "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é." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" - -#: ../../mod/api.php:77 -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é :" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Merci de vous connecter pour continuer." - -#: ../../mod/api.php:104 -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?" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Agencement pris-en-compte." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Éditer la description" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Agencement introuvable." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nom du module :" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "Aide à la mise en page" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Application installée." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Erreur de l'application - Malformée." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Code intégré" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Edition de l'Application" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Création d'une Application" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nom de l'application" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Emplacement (Lien) vers l'application" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Description" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Lien (URL) de l'icône à utiliser pour cette photo" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - optionel" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Version" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prix de l'application" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Emplacement (LIEN) pour l'achat de l'application" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "Impossible d'obtenir des informations sur le propriétaire de la page." - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "Supprimer album" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "Supprimer photo" - -#: ../../mod/photos.php:441 ../../mod/directory.php:59 -#: ../../mod/display.php:13 ../../mod/ratings.php:82 ../../mod/search.php:13 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "Aucune photo selectionnée" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "L'accès à l'élément est restreint." - -#: ../../mod/photos.php:535 -#, 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." - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f méga-octets utilisés pour le stockage des photos." - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "Entrer un nouveau nom d'album" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "ou en sélectionner un existant (double-clic)" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "Créer une publication de statut pour cet envoi" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "Le nom de l'Album n'a pu être décodé" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "Photos de contact" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "Ordre anté-chronologique" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "Ordre chronologique" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "Éditer l'album" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permission refusée. L'accès à cet élément peut avoir été restreint." - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "Photo indisponible" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "Utiliser comme photo du profil" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "Photo privée" - -#: ../../mod/photos.php:839 ../../mod/events.php:505 -msgid "Previous" -msgstr "Précédent" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../mod/photos.php:848 ../../mod/events.php:506 ../../mod/setup.php:281 -msgid "Next" -msgstr "Suivant" - -#: ../../mod/photos.php:887 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Retirer" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "Éditer la photo" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "Rotation horaire (droite)" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "Rotation anti-horaire (gauche)" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "Titre/légende" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "Marquer comme \"adulte\" dans l'affichage de l'album" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "Dans cette photo :" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "Carte" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "Voir l'album" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Élément indisponible." - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "vous a envoyé un message privé" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "a ajouté votre canal" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "a publié un événement" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Nom du Bloc" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Titre du bloc" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Cogner/Solliciter" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Cogner, pointer, et autres choses à faire à quelqu'un" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinataire" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Choisir quoi lui faire" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Rendre cette contribution privée" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Favoris ajouté" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mes Favoris" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Favoris de mes relations" - -#: ../../mod/manage.php:136 -#, 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." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Créer un nouveau canal" - -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Canal actif" - -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Pour changer de canal, sélectionner en un" - -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Canal par défaut" - -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Définir comme défaut" - -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d nouveaux messages" - -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "%d nouvelles introductions" - -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Canaux délégués" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Profils similaires" - -#: ../../mod/match.php:31 -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." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "s'intéresse à :" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "Pas de correspondance" - -#: ../../mod/bulksetclose.php:89 ../../mod/group.php:196 -msgid "Members" -msgstr "Membres" - -#: ../../mod/bulksetclose.php:91 ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Tous canaux connectés" - -#: ../../mod/bulksetclose.php:126 ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Cliquer sur un canal pour l'ajouter ou le supprimer" - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Voir les résultats" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Vous devez vous connecter pour voir cette page." - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissions insuffisantes. Demande redirigée à la page du profil." - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Authentification magique bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et réessayer." - -#: ../../mod/post.php:287 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bienvenue %s. L'authentification magique a fonctionné." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Salon introuvable" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Quitter le salon" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Supprimer le salon" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Je suis momentanément absent" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Je suis en ligne" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Marquer ce salon" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nouveau salon" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nom du salon" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salons de %1$s" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Absent" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "En ligne" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Récupération d'URL échouée : %1$s" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Pas de canal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Relations communes" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Pas de relations en commun." - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "L'image a été téléversée, mais le recadrage a échoué." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Le redimensionnement de l'image a échoué." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "L'image dépasse la taille limite de %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossible de traîter l'image." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Photo inaccessible." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Fichier :" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Choisir un profil :" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "ou" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "passer cette étape" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "choisir une photo dans vos albums" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Recadrer l'image" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Merci d'ajuster le cadre pour une visualisation optimale." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "J'ai terminé" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Le téléversement a échoué." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "La réduction de taille [%s] a échoué." - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continuer" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuration du canal VIP" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Activer les restrictions liées au canal VIP" - -#: ../../mod/connect.php:88 -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, ..." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -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 :" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Les relations potentielles verront ce qui suit avant de pouvoir continuer :" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -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 acquitté de toutes les instructions indiquées" - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal VIP ou restreint" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identifiant de requête invalide." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuler" - -#: ../../mod/notifications.php:51 ../../mod/connedit.php:539 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Pas d'autre notification du système." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Notifications du système" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "Bloqué" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "Ignoré" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "Caché" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "Archivé" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "Suggérer de nouvelles relations" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nouvelles relations" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Voir les (nouvelles) relations en attente" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Toutes les relations" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "Voir toutes les relations" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "Non bloquées" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "Ne montrer que les relations non-bloquées" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "Ne montrer que les relations bloquées" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "Ne montrer que les relations ignorées" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "Ne montrer que les relations archivées" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "Ne montrer que les relations cachées" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "Modifier le contact" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "Chercher parmi vos relations" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "Recherche :" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil impossible à cloner." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Impossible d'exporter le profil." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Statut marital" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Partenaire" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Aime" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Déteste" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Travail/Occupation" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religion/Croyance" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Opinions politiques" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Sexe/Genre" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Préférence sexuelle" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Site Internet" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Centres d'intérêt" - -#: ../../mod/profiles.php:454 ../../mod/pubsites.php:26 -msgid "Location" -msgstr "Emplacement" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher vos contacts/relations aux visiteurs de ce profil?" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Voir le profil" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Changer la photo du profil" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil avec ces réglages" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Cloner le profil" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Supprimer le profil" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importer le profil à partir d'un fichier" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Exporter le profil vers un fichier." - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Nom du profil :" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Votre nom complet :" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titre/description :" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Sexe/Genre :" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Date de naissance :" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Adresse postale :" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Ville/Localité :" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Code postal :" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Pays :" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Région/Province/État :" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr "Statut marital :" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Avec : (si pertinent)" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples : cathy123, Cathy Williams, cathy@exemple.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Depuis [date] :" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "URL de mon site Internet :" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Opinions religieuses :" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Mots-clefs :" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Exemple : escrime photographie modélisme" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Utilisé pour le référencement dans l'annuaire" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Parlez nous de vous..." - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Loisirs/Centres d'intêret" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Coordonnées et réseaux sociaux" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Mes autres canaux" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Littérature" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Télévision" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Amour/Romance" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Travail/Occupation" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Études" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Voilà votre profil par défault." - -#: ../../mod/profiles.php:728 -msgid "Age: " -msgstr "Age :" - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Éditer/gérer les profils" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Ajouter des choses de profil" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Incluez des objets souhaitables dans votre profil" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Impossible d'accéder aux détails du contact." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil sélectionné." - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "Connexion mise à jour." - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "Impossible de mettre à jour les détails de la relation." - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "est maintenant connecté avec" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "Impossible d'accéder aux détails du carnet d'adresses." - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Actualisation impossible - le canal est momentanément indisponible." - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "Impossible de régler les paramètres du carnet d'adresses." - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "La relation a été supprimée" - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "Voir le profil de %s" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "Actualiser les permissions" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "Récupérer les permissions les plus récentes" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "Activité récente" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "Voir les contributions et commentaires récentes" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquer ou débloquer toute communication avec ce contact" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "Ce contact est bloqué !" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "Ne plus ignorer" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorer ou ne plus ignorer toute communication venant de ce contact" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "Ce contact est ignoré !" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "Ne plus archiver" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "Archiver" - -#: ../../mod/connedit.php:550 -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" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "Ce contact est archivé !" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "Ne plus cacher" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "Cacher" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "Ce contact est caché !" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "Supprimer cette relation" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "Approuver cette relation" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "Accepter la relation pour permettre la communication" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "Définir le degré d'affinité" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "Définir le profil" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "Définir le degré d'affinité et le profil" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "Appliquer ces permissions automatiquement" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "" - -#: ../../mod/connedit.php:680 -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." - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "Faites glisser pour ajuster le niveau de la relation" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "Faîtes glisser pour ajuster votre note" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "Explication facultative de votre évaluation" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "Filtre personnalisé" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "N'importer que les publications comprenant ce texte" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "Ne pas importer les publications comprenant ce texte" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "Cette information est publique !" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "Contact en attente d'approbation" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "Demande de contact" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) veut devenir votre contact. Merci d'approuver cette demande pour permettre la communication." - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "Approuver plus tard" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "héritée" - -#: ../../mod/connedit.php:705 -#, 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." - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "Ses réglages" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "Mes réglages" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "Permissions spécifiques" - -#: ../../mod/connedit.php:711 -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 "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." - -#: ../../mod/connedit.php:712 -msgid "" -"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." -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." - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "Dernière mise-à-jour :" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Éditeur de visibilité de profil" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le retirer." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visible par" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "Canal $Projectname" - -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d évaluations" -msgstr[1] "%d évaluations" - -#: ../../mod/directory.php:245 -msgid "Gender: " -msgstr "Sexe/genre :" - -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "État :" - -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "Site web :" - -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "Description:" - -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "Forum public :" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "Mots-clefs :" - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "Ne pas suggérer" - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "Relations générales" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "Annuaire global" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "Annuaire local" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "Recherche :" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "page suivante" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "page précédente" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "Options de tri" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "Alphabétique" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "Alphabétique inversé" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "Ordre anté-chronologique" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "Ordre chronologique" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "Pas d'entrées (certaines peuvent être cachées)." - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Sites publics" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links may " -"provide additional details." -msgstr "Les sites listés autorisent l'inscription publique au réseau $Projectname. Tous les sites du réseau sont interconnectés, l'inscription sur l'un quelconque d'entre eux signifie donc l'inscription sur le réseau dans son ensemble. Certains sites peuvent nécessiter une souscription ou fournir des niveaux de service différenciés. Le lien du fournisseur peut fournir plus de détails." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Noter cette instance" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "URL du site" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Type d'accès" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Politique d'inscription" - -#: ../../mod/pubsites.php:26 -msgid "Project" -msgstr "Projet" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Voir les notes de cette instance" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Noter" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Voir les notes" - -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45 -msgid "This site is not a directory server" -msgstr "Ce site n'est pas un serveur d'annuaire" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Ce serveur d'annuaire requiert un jeton d'accès" - -#: ../../mod/editblock.php:78 ../../mod/editblock.php:94 -#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Élément introuvable" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "Supprimer le bloc?" - -#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 -#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:187 -msgid "Insert YouTube video" -msgstr "Insérer une vidéo YouTube" - -#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:188 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insérer une vidéo Vorbis [.ogg]" - -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:189 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insérer un son Vorbis [.ogg]" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "Éditer bloc" - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "Supprimer la mise-en-page?" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Description de la mise en page (facultatif)" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Nom de la mise-en-page" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "Éditer mise-en-page" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Élément non-éditable" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "Supprimer l'élément?" - -#: ../../mod/editpost.php:158 ../../mod/rpost.php:131 -msgid "Edit post" -msgstr "Éditer la contribution" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Impossible de trouver votre hub." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Contribution effectuée." - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "Supprimer la page web?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Titre du lien vers la page" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Éditer page web" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Site web :" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal distant [%s] (encore inconnu sur ce site)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Evaluation (cette information est publique)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Explication facultative de votre évaluation (cette information est publique)" - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Entrées du calendrier importées." - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "Aucune entrée du calendrier trouvée." - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "La fin de l'événement ne peut être antérieure à son début." - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "Impossible de générer l'aperçu." - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "Un titre et une date de début sont requises pour l'événement." - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "Événement introuvable." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "Éditer l'événement" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "Supprimer l'évènement" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "calendrier" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "Créer événement" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "Exports" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "Importer" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "Événement supprimé" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "Impossible de supprimer l'événement" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "Détails de l'événement" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "Une date de début et un Titre sont requis." - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "Catégories (séparées par des virgules)" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "L'événement débute :" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "Date/heure de fin inconnue ou sans objet" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "L'événement termine :" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "Ajuster au fuseau horaire du visiteur" - -#: ../../mod/events.php:680 -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." - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "Titre:" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Pas de note" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Evaluations" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Evaluation :" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Site web :" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Description :" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Choisir un dossier de favoris" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Sauver le favoris" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL du favoris" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Ou entrez le nom d'un nouveau dossier" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- choisir -" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Permission refusée." - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "Fichier introuvable." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Éditer les permissions du fichier" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Définir/Édition des authorisations" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Inclure tous fichiers et sous-répertoires" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Retourner à la liste des fichiers" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiez/collez ce code pour joindre le fichier à une publication" - -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiez/collez cette URL pour lier le fichier depuis une page web" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Partager ce fichier" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Montrer l'URL de ce fichier" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Notifier vos contacts à propos de ce fichier" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canal ajouté." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Les mots de passe ne concordent pas." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription est en attente de l'approbation d'un administrateur." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traîtée." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "L'inscription sur cette instance/ce site est soumis à une modération." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "S'inscrire sur un site/hub affilié" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Règles du Service" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "J'accepte %s de ce site" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "J'ai plus de 13 ans et j'accepte les %s de ce site" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Merci de saisir votre code d'invitation" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Votre adresse de courriel" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Choisissez un mot de passe" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Confirmez-le" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact introuvable." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggestion d'amitié/relation envoyée." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggérer une relation" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggérer une relation à %s" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Merci de vous connecter." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Collection créée." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Impossible de créer la collection." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Collection mise-à-jour." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Créez une collection de canaux." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nom de la collection :" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Les membres sont visibles par les autres canaux" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Collection supprimée." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Impossible de supprimer la collection." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Éditeur de collection" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Il est impossible de supprimer un compte à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Supprimer ce Compte" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ATTENTION :" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Ce compte et tous ses canaux seront entièrement supprimés du réseau." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Cette action est permanente et irréversible !" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Merci de re-saisir votre mot de passe pour vérification :" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Supprimer ce compte, tous ses canaux et tous les clones sur la matrice." - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Par défault, seuls les instances de canaux situés sur ce hub seront supprimer de la matrice." - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "Supprimer le compte" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Aide :" - -#: ../../mod/help.php:76 ../../index.php:242 -msgid "Not Found" -msgstr "Introuvable" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "Documentation $Projectname" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Il est impossible de supprimer un canal à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Supprimer ce Canal" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Ce canal sera complètement supprimé du réseau." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Supprimer ce canal ainsi que tous ses clones sur la matrice" - -#: ../../mod/removeme.php:60 -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" - -#: ../../mod/removeme.php:61 ../../mod/settings.php:1137 -msgid "Remove Channel" -msgstr "Enlever le canal" - -#: ../../mod/home.php:58 ../../mod/home.php:66 ../../mod/siteinfo.php:155 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est bien saisi." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Le message d'erreur était :" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Échec de l'authentification." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Authentification distante" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Entrez l'adresse de votre canal (p.ex. moncanal@monsite.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Authentifier" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Prénom" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Nom de famille" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Surnom" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nom complet" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Photo de profil 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Photo de profil 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Photo de profil 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Photo de profil 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Photo de profil 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Photo de profil 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "URL de mon site Internet :" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Année de naissance" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mois de naissance" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Jour de naissance" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Date de naissance" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "Elément %s installé" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "L'installation de l'élément %s a échoué" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "Eléments étiquetés avec : %s" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "Résultats de recherche pour : %s" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Votre forfait n'autorise que %d canaux." - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "Rien à importer." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "Impossible de récupérer les données de l'ancien serveur" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "Le fichier importé est vide." - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "" - -#: ../../mod/import.php:115 -#, 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." - -#: ../../mod/import.php:135 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Impossible de créer un doublon d'un identifiant de canal. L'import a échoué." - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "Le clonage du canal a échoué. L'import a échoué." - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "Le canal cloné n'a pas été trouvé. L'import a échoué." - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "Vous devez vous connecter pour utiliser cette fonctionnalité." - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "Importation de canal" - -#: ../../mod/import.php:580 -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." - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "Fichier à envoyer" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "Ou fournissez les détails de l'ancien serveur" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "Votre ancienne identité (zyx@exemple.com)" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "Votre ancienne adresse de courriel" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "Votre ancien mot de passe" - -#: ../../mod/import.php:586 -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 cette nouvelle adresse sera la primaire, ou si votre ancienne adresse continuera à jouer ce rôle. Vous pourrez publier depuis l'adresse de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media." - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "Faire de ce hub l'adresse principale de ce canal" - -#: ../../mod/import.php:588 -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)" - -#: ../../mod/import.php:589 -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." - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Aucune restriction de classe de service trouvée." - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limite du nombre total d'invitation dépassée." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : adresse courriel invalide." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Rejoignez-nous sur la Matrice Rouge" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limite d'invitations dépassée. Merci de contacter l'administration de votre site." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Échec dans la livraison du message." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d message envoyé." -msgstr[1] "%d messages envoyés." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Vous ne disposez plus d'aucune invitation" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Envoyer des invitations" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses de courriel, une par ligne :" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Rejoignez ma communauté sur $Projectname." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Vous aurez besoin de fournir le code suivant:" - -#: ../../mod/invite.php:135 -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)" - -#: ../../mod/invite.php:137 -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." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "ou visitez" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Click sur [Ajouter]" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Le nom est requis" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Clef et secret sont requis" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "" - -#: ../../mod/settings.php:238 -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é." - -#: ../../mod/settings.php:242 -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é." - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "Le mot de passe a été changé." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "La mise-à-jour du mot de passe a échoué. Merci de recommencer." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "Adresse de courriel non-valide." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "Adresse de courriel protégée. Impossible de l'utiliser." - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci de ré-essayer." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "Réglages sauvegardés." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "Ajouter une application" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "Nom de l'application" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "Clef de consommateur" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères." - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "Secret de consommateur" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "Redirection" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirection - laissez blanc, sauf si l'application a demandé autrement" - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "URL de l'icône" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "Facultatif" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "La clef partagée commence par" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "Sans nom" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "Pas de fonctionnalité à configurer" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "Paramètres des extensions/greffons" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "" - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "Compte" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "Nouveau mot de passe :" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "Confirmer le nouveau mot de passe :" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "Laissez les mots de passe vides si vous ne voulez pas les modifier" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "Adresse de courriel :" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "Supprimer ce compte et tous ses canaux" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "Inactif" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "Actif" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "Fonctionnalités additionnelles" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "Connecteurs" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "Pas de thème spécifique aux périphériques mobiles" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Expérimental)" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "Affichage" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "Paramètres du thème" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "Paramètres personnels du thème" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "Paramètres liés au contenu" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "Thème :" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "Thème mobile :" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "Permettre à l'usager d'un mobile d'agrandir le contenu" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "Rafraîchir le navigateur toutes les xx secondes" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 secondes, pas de maximum" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "Nombre maximal de conversations pouvant être chargées en même temps :" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "100 éléments au maximum" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "Remplacer les émoticônes (smileys) par des images" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "Lier les titres des publications à leur source" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "Agencements des pages système - (avancé)" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "Utiliser le mode blog/liste sur la page du canal" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "(commentaires affichés séparément)" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "Utiliser le mode blog/liste sur la page de la matrice" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "Hauteur maximale du contenu pour la page du canal (en pixels)" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "cliquer pour dérouler le contenu dépassant cette limite" - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "Hauteur maximale du contenu pour la page du réseau (en pixels)" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "Personne sauf vous" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "Seulement ceux que vous autorisez spécifiquement" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "Contacts Approuvés" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "Tous les contacts" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "Tous les utilisateurs du hub" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "Tous les utilisateurs sur ce réseau" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "Tous les utilisateurs authentifiés" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "Tous les utilisateurs d'Internet" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "Publier votre profil par défaut dans l'annuaire du réseau" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux membres?" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "Voici l'adresse de votre canal" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "Canal" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "Basique" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "Fureau Horaire :" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "Emplacement géographique par défaut :" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "Emplacement géographique à afficher sur vos publications" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "Utiliser la géolocalisation fournie par le navigateur :" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "Contenu \"adulte\"" - -#: ../../mod/settings.php:1062 -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)" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "Réglages de Sécurité et vie privée" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "Cacher ma présence en ligne" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "Cacher votre statut (en ligne/hors ligne) sur votre profil" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "Réglages simples :" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)" - -#: ../../mod/settings.php:1072 -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 dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "Privé - privé par défaut, jamais ouvert ni public" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqué - par défaut, bloqué de/vers tout le monde" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "Autoriser les autres à \"étiqueté\" vos publications" - -#: ../../mod/settings.php:1076 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Souvent utilisé par la communauté pour distinguer le contenu innaproprié" - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "Réglages avancés" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "Faire expirer le contenu des autres canaux après n jours" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "0, ou vide, pour ne pas faire expirer" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximum de mises en relation par jour :" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "Contribue à réduire l'impact des indésirables" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "Permissions par défaut des publications" - -#: ../../mod/settings.php:1083 ../../mod/mitem.php:155 ../../mod/mitem.php:227 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "Catégorie de permissions du canal :" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "Nombre maximum de messages privés émanant d'inconnus, par jour :" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "Utile pour réduire les indésirables" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "Notifications" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "Par défaut, publier un statut quand:" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "vous acceptez une mise en relation" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "vous joignez un forum ou à une communauté" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "vous faites une modification intéressante de votre profil" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand :" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "Vous recevez une demande de mise en relation" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "Vous relations sont confirmées" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un a écrit sur votre mur" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un a commenté sur vos publications" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "Vous recevez une suggestion d'amitié/relation" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "Vous êtes étiqueté dans une publication" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "Vous êtes cogné/pointé/etc. dans une publication" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "Afficher des notifications visuelles y compris :" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "Activité non-vue sur la matrice" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "Activité non-vue sur le canal" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "Messages privés non-vus" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "Recommandé" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "Événements à venir" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "Événements aujourd'hui" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "Anniversaires à venir" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "Pas disponible dans tous les thèmes" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "Notifications système (personnelles)" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "Messages d'info système" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "Alertes critiques systèmes" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "Nouvelles relations" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "Inscriptions systèmes" - -#: ../../mod/settings.php:1125 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Montrer également les nouvelles publications sur mur, messages privés et relations dans Notices" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "Me prévenir d’événements à venir tant de jours en avance" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "Doit être supérieur à 0" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "Type de page/Compte (avancé)" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifie le comportement de ce compte pour certains cas particuliers" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Mode expert requis (Réglages > Fonctions supplémentaires) svp ajuster!" - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "Divers" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personnel tel qu'il apparaîtra sur les pages de votre canal" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "Supprimer ce canal" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Impossible de localiser la publication initiale." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "Publication vide annulée." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal." - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvegardée." - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "Impossible d'obtenir les informations de publication depuis la base de données." - -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Vous avez atteint votre limite de %1$.0f contributions \"racine\"." - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Vous avez atteint votre limite de %1$.0f pages web." - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "Serveur $Projectname - configuration" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "Impossible de se connecter à la base de données." - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS." - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "Impossible de créer la table." - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "La base de données de votre site a été installée." - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)." - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Merci de consulter le fichier \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "Vérification du système" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "Re-vérifier" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "Connexion à la base de données" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Pour installer $Projectname, nous avons besoin de savoir comment se connecter à votre base de données." - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Merci de contacter votre prestataire d'hébergement ou votre administrateur système si vous avez des doutes à propos de ces paramètres." - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer." - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "Nom du serveur de la base de données" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "Par défaut, localhost" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "Port du serveur" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "Numéro TCP du port - utilisez 0 pour la valeur par défaut" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "Identifiant de connexion à la Base de Données" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "Mot de passe de connexion à la Base de Données" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "Nom de la Base de Données" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "Type de base de données" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "Adresse de courriel de l'administrateur du site" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web." - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "URL du site" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "Merci d'utiliser SSL/TLS (https) autant que possible." - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "Merci de choisir une zone de temps (fuseau horaire) pour votre site" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "Réglages du site" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Impossible de trouver une version CLI de PHP dans le PATH du serveur web." - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron." - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "Chemin vers l'éxecutable PHP" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans." - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "PHP en ligne de commande (CLI)" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée." - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "Elle est nécessaire pour la livraison de messages." - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois." - -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Vous pouvez ajuster ces paramètres dans le php.ini du serveur." - -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "Limites de téléversement de PHP" - -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement" - -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"." - -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "Générer les clefs de chiffrement" - -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "module PHP libCurl" - -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "module PHP GD graphics" - -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "module PHP OpenSSL" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "module PHP postgres ou mysqli" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "module PHP mb_string" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "module PHP mcrypt" - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "module PHP xml" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "module Apache mod_rewrite" - -#: ../../mod/setup.php:510 -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é." - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:516 -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" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Erreur : le module libCURL de PHP est requis, mais pas installé." - -#: ../../mod/setup.php:528 -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é." - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "Erreur : le module openssl de PHP est requis, mais pas installé." - -#: ../../mod/setup.php:536 -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é." - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Erreur : le module mb_string de PHP est requis, mais pas installé." - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Erreur : le module mcrypt de PHP est requis, mais pas installé." - -#: ../../mod/setup.php:548 -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é." - -#: ../../mod/setup.php:566 -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." - -#: ../../mod/setup.php:567 -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." - -#: ../../mod/setup.php:568 -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 La Matrice Rouge." - -#: ../../mod/setup.php:569 -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." - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr "Le fichier .htconfig.php est accessible en écriture" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "La Matrice Rouge utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu." - -#: ../../mod/setup.php:587 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s." - -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -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." - -#: ../../mod/setup.php:589 -#, 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 sur %s au serveur web uniquement. Éviter de définir les permissions sur les fichiers individuels (.tpl)." - -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" -msgstr "Permission d'écriture sur %s activée" - -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red utilise le répertoire 'store' - situé à la racine de votre installation de la Matrice Rouge - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire." - -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "'store' est accessible en écriture" - -#: ../../mod/setup.php:645 -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." - -#: ../../mod/setup.php:646 -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 supporte les connections encryptées SSL ou s'il permet les connections 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é!" - -#: ../../mod/setup.php:647 -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 à des images sur votre propre hub." - -#: ../../mod/setup.php:648 -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 (avec certificats valides) recevront des messages d'avertissement sur leur propre sites." - -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Pour des raisons de compatibilité (sur l'ensemble de la matrice) nous nous devons d'insister sur ce prérequis." - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Il existe une plusieurs autorités de certification qui vous fourniront gratuitement un certificat valide." - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "Validation du certificat SSL/TLS" - -#: ../../mod/setup.php:658 -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 pase. Vérifiez votre configuration serveur. Test :" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "La réécriture d'URL fonctionne" - -#: ../../mod/setup.php:670 -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." - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "Erreurs rencontrées pendant la création de tables de BD." - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

Et maintenant

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour." - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Aide sur le langage de description de page Comanche" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Description de la mise en page" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "Télécharger le fichier PDL" - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Fichiers : partagés avec moi" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NOUVEAU" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Supprimer tous les fichiers" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Supprimer ce fichier" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "J'aime/Je Déteste" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Cette action est réservée aux membres." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "S'il vous plait, identifiez vous avec votre identifant de $Projectname ou inscrivez vous pour un nouveau $Projectname pour continuer." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Requête invalide." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "chose" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Canal indisponible." - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "Action précédente annulée." - -#: ../../mod/like.php:401 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s approuve %3$s de %2$s" - -#: ../../mod/like.php:403 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s n'est pas d'accord avec %2$s's %3$s" - -#: ../../mod/like.php:405 -#, 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" - -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s participe en ce moment à %3$s de %2$s" - -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s ne participe pas à %3$s de %2$s" - -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s participe peut-être à %3$s de %2$s" - -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "Action complétée." - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "Merci." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "Extensions/applications installées :" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Aucune extension/application installée" - -#: ../../mod/siteinfo.php:156 -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." - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Tag:" - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Dernière récupération en tâche de fond :" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "Installée sur" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Merci de visiter hubzilla.org pour en apprendre davantage sur $Projectname." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Pour remonter bogues et problèmes, merci de visiter" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "Problèmes $projectname" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Administrateurs du site" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "Les informations de vie privée à distance ne sont pas disponibles." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visible par :" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Emplacement introuvable." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "" - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Emplacement(s) introuvable." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Gérer les emplacements des canaux" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Emplacement (adresse)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Emplacement primaire" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Abandonner l'emplacement" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Impossible de créer la source. Aucun canal selectionné." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Source créée." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Source mise à jour." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gérer les sources distantes du contenu de votre canal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nouvelle Source" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "N'importer le contenu que s'ils contient ces mots (un par ligne)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Laissez en blanc pour importer tout le contenu public" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nom du Canal" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Source introuvable." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Éditer la source" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Supprimer la source" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Source supprimée" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Impossible de supprimer la source." - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Aucun compte valide trouvé." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Réinitialisation du mot de passe demandée. Vérifiez vos courriels." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Membre du site (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Demande de réinitialisation du mot de passe sur %s" - -#: ../../mod/lostpass.php:63 -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é." - -#: ../../mod/lostpass.php:86 ../../boot.php:1559 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Sauvez-le ou copiez-le, puis" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../mod/lostpass.php:91 -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 Réglages une fois connecté." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Votre mot de passe de %s a été changé" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié?" - -#: ../../mod/lostpass.php:124 -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 à lettres pour la suite des instructions." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Adresse de courriel" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "Impossible de mettre le menu à jour." - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "Impossible de créer le menu." - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "Nom du menu" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nom unique (non visible sur la page web) - requis" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "Titre du menu" - -#: ../../mod/menu.php:93 -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" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "Le menu pourra être utilisé pour stocker des favoris" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "Valider et continuer" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "Supprimer" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "Favoris autorisés" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "Supprimer ce menu" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "Éditer le contenu du menu" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "Éditer le menu" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "Impossible de supprimer le menu." - -#: ../../mod/menu.php:138 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menu introuvable." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "Éditer le menu" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "Ajouter/supprimer des entrées à ce menu" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "Nom du menu" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "Doit être unique, ne sera vu que par vous" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "Titre du menu" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "Titre du menu tel que vu par les visiteurs" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "Autoriser l'usage de favoris" - -#: ../../mod/menu.php:160 ../../mod/mitem.php:116 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Introuvable." - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Pas de message." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d Y - H:i" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Impossible de créer l'entrée." - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "Impossible de mettre l'entrée de menu à jour." - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "Impossible d'ajouter l'entrée de menu." - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissions de l'entrée de menu" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "Nom du lien" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lien ou sous-menu cible" - -#: ../../mod/mitem.php:158 -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" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Utiliser l'authentification distante, quand disponible" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "Ouvrir le lien dans une nouvelle fenêtre" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "Ordre dans la liste" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Les nombres les plus élevés seront descendus au bas de la liste" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "Vadiler et terminer" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "Valider et continuer" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "Menu :" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "Cible du lien" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "Éditer le menu" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "Éditer l'entrée" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "Supprimer l'entrée" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "Nouvelle entrée" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "Éditer ce bloc de menu" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "Ajouter une entrée au menu" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "Supprimer cet entrée du menu" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "Éditer cette entrée du menu" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "Entrée de menu introuvable." - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "Entrée de menu supprimée." - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Impossible de supprimer l'entrée de menu." - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "Éditer l'entrée de menu" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "Texte du lien" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s suit %3$s de %2$s" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Indiquez votre humeur du moment à vos amis" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures." - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a étiqueté le %3$s de %2$s par %4$s" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Étiquette retirée" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Retirer une étiquette à l'élément" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Étiquette à retirer :" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Groupe introuvable" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "Canal introuvable" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Résultats de recherche pour :" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "Collection vide" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Collection :" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Relation :" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Relation invalide." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Erreur du protocole OpenID. Pas d'ID retourné." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Ajouter un canal" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre administrateur de hub vous y autorise." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Exemples : \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Choisissez un alias" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Cet alias sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Ou importez un canal existant à un autre endroit" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Veuillez choisir un type de canal (par exemple \"réseau social\" ou \"forum communautaire\") et un niveau de confidentialité afin que nous puissions choisir les meilleures autorisations pour vous" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Type de canal" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "En savoir plus sur les rôles" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "Chose mise-à-jour" - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "Stockage de l'objet : échec" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "Chose ajoutée" - -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "Montrer chose" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "élément introuvable." - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "Éditer chose" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "Choisissez un profil" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "Publier une activité" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envoi exclusivement au membres autorisé de ce profil" - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "Nom de la chose, p.ex. quelque-chose" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "URL de la chose (optionnel)" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "URL de l'image de la chose (optionnel)" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "Ajouter la chose à votre profil" - -#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 -msgid "Export Channel" -msgstr "Exporter le canal" - -#: ../../mod/uexport.php:52 -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." - -#: ../../mod/uexport.php:53 -msgid "Export Content" -msgstr "Exporter le contenu" - -#: ../../mod/uexport.php:54 -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." - -#: ../../mod/uexport.php:55 -msgid "Export your posts from a given year or month:" -msgstr "" - -#: ../../mod/uexport.php:57 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Click on one of the recent years or months below." -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jan" -msgstr "Jan" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Feb" -msgstr "Fev" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Mar" -msgstr "Mar" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Apr" -msgstr "Avr" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jun" -msgstr "Jun" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jul" -msgstr "Jul" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Aug" -msgstr "Aou" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Sep" -msgstr "Sep" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Oct" -msgstr "Oct" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Nov" -msgstr "Nov" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Dec" -msgstr "Dec" - -#: ../../mod/uexport.php:60 -msgid "" -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "" - -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"Or adjust the date in your browser location bar to select other dates. For " -"example the year 2013; %1$s/2013 or the month " -"September 2013; %1$s/2013/9" -msgstr "" - -#: ../../mod/uexport.php:62 -msgid "Please visit" -msgstr "" - -#: ../../mod/uexport.php:62 -msgid "on another hub to import the backup files(s)." -msgstr "" - -#: ../../mod/uexport.php:63 -msgid "" -"We advise you to clone the channel on the new hub first and than to import " -"the backup file(s) (from the same channel) in chronological order. Importing" -" the backup files into another channel will certainly give permission " -"issues." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 -#: ../../mod/update_public.php:21 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenu embarqué - rechargez la page pour le voir]" - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Pas de relations." - -#: ../../mod/viewconnections.php:75 +#: ../../include/zot.php:2552 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Source de l'élément" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "Titre de la page" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Recherche xchan" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Recherche xchan commençant par (ou adresse \"webbie\") :" +msgid "Unable to verify site signature for %s" +msgstr "Impossible de vérifier la signature de site pour %s" -#: ../../mod/zfinger.php:23 +#: ../../include/zot.php:4219 msgid "invalid target signature" msgstr "signature de la cible invalide" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans empâtements" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Chasse fixe" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Réglages du thème" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Définir la palette de couleurs" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Définir font-size pour contribution et commentaires" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Définir la fonte" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Définir le jeu d'icônes" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Taille du fond" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacité des éléments" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Afficher seulement l'aperçu des contributions" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Afficher le panneau latéral sur la page du canal" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Couleur de la barre de navigation" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Alignement de l'élément" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Décalage gauche de l'élément section" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Décalage droit de l'élément section" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Largeur de la section" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Décalage gauche du panneau latéral" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Décalage droit du panneau latéral" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Blanc (valeur par défaut)" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" -msgstr "Définir la palette de couleurs" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Barre de navigation fine" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Couleur de fond de la barre de navigation" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Gradient de la barre de navigation HAUT" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Gradient de la barre de navigation BAS" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Gradient du bouton de navigation HAUT" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Gradient du bouton de navigation BAS" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Couleur de la bordure de la barre de navigation" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Couleur de l'icône de la barre de navigation" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Couleur de l'icône active de la barre de navigation" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "couleur des liens" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Définir la couleur du texte de la bannière" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Définir la couleur d'arrière-plan" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Définir l'image d'arrière-plan" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Définir la couleur de fond des contributions" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Couleur de fond des commentaires" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Couleur de la bordure des commentaires" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Indentation des commentaires" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Définir la couleur de base pour les icônes des éléments" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Définir la couleur de survol des icônes des éléments" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Définir la taille de police pour l'application entière" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" -msgstr "Exemple : 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Définir font-colour pour les contributions et commentaires" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Définir le rayon des arrondis" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Définir la profondeur de l'ombre des photos" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of content region in pixel" -msgstr "Définir la largeur maximale de la zone des contenus" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" -msgstr "Laissez vide pour avoir la largeur par défaut" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "Contenue de la page centrale" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Définir l'opacité minimum du bandeau de navigation - pour le cacher" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Définir la taille de la photo de l'auteur d'une conversation" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Définir la taille de la photo de l'auteur d'une réponse" - -#: ../../boot.php:1356 -#, 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:1359 -#, php-format -msgid "Update Error at %s" -msgstr "Erreur de mise-à-jour sur %s" - -#: ../../boot.php:1526 +#: ../../include/group.php:22 msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un groupe supprimé portant ce nom a été ressuscité. Les droits d'accès liés 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." -#: ../../boot.php:1554 -msgid "Password" -msgstr "Mot de passe" +#: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Ajouter de nouveaux contacts à ce groupe de contacts" -#: ../../boot.php:1555 -msgid "Remember me" -msgstr "Se souvenir de moi" +#: ../../include/group.php:306 +msgid "edit" +msgstr "modifier" -#: ../../boot.php:1558 -msgid "Forgot your password?" -msgstr "Mot de passe oublié?" +#: ../../include/group.php:329 +msgid "Edit group" +msgstr "Modifier le groupe" -#: ../../boot.php:2182 -msgid "toggle mobile" -msgstr "(dés)activer mobile" +#: ../../include/group.php:330 +msgid "Add privacy group" +msgstr "Créer un groupe de contacts" -#: ../../boot.php:2317 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Le certificat SSL n'est pas valide. Corrigez le." +#: ../../include/group.php:331 +msgid "Channels not in any privacy group" +msgstr "Contacts n'étant dans aucun groupe de contacts" -#: ../../boot.php:2320 -#, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Erreur SSL pour %s" +#: ../../include/connections.php:133 +msgid "New window" +msgstr "Nouvelle fenêtre" -#: ../../boot.php:2357 -msgid "Cron/Scheduled tasks not running." -msgstr "Les taches planifiées ne tournent pas." +#: ../../include/connections.php:134 +msgid "Open the selected location in a different window or browser tab" +msgstr "Ouvrir l'emplacement dans une fenêtre ou un onglet différent" -#: ../../boot.php:2361 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] tache planifiée n'est pas en fonction sur %s" +#: ../../include/auth.php:152 +msgid "Delegation session ended." +msgstr "La séance de délégation a pris fin." + +#: ../../include/auth.php:156 +msgid "Logged out." +msgstr "Deconnecté." + +#: ../../include/auth.php:273 +msgid "Email validation is incomplete. Please check your email." +msgstr "La validation du courriel est incomplète. Veuillez vérifier l'adresse courriel." + +#: ../../include/auth.php:289 +msgid "Failed authentication" +msgstr "Échec de l'authentification" + +#: ../../include/help.php:34 +msgid "Help:" +msgstr "Aide :" + +#: ../../include/help.php:78 +msgid "Not Found" +msgstr "Introuvable" diff --git a/view/fr/strings.php b/view/fr/strings.php index 5e17d7946..cdf233584 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -4,145 +4,2805 @@ if(! function_exists("string_plural_select_fr")) { function string_plural_select_fr($n){ return ($n > 1);; }} -; -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. Échec de l'import."; -App::$strings["Import completed."] = "L'import est terminé."; -App::$strings["parent"] = "retour"; -App::$strings["Collection"] = "Collection"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Carnet d'adresse"; -App::$strings["Calendar"] = "Calendrier"; -App::$strings["Schedule Inbox"] = "Calendrier - Message entrants"; -App::$strings["Schedule Outbox"] = "Calendrier - Message sortants"; -App::$strings["Unknown"] = "Inconnu"; -App::$strings["%1\$s used"] = "%1\$s utilisé"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s utilisé de %2\$s (%3\$s%)"; -App::$strings["Files"] = "Fichiers"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Partagé"; +App::$rtl = 0; +App::$strings["Can view my channel stream and posts"] = "Peut voir mon canal et mes publications"; +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 par défaut du canal"; +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"] = "Peut télécharger/modifier mes fichiers et mes photos"; +App::$strings["Can view my channel webpages"] = "Peut voir les pages web de mon canal"; +App::$strings["Can view my wiki pages"] = "Peut voir les pages de mon wiki"; +App::$strings["Can create/edit my channel webpages"] = "Peut créer ou modifier les pages web de mon canal"; +App::$strings["Can write to my wiki pages"] = "Peut écrire sur mon wiki"; +App::$strings["Can post on my channel (wall) page"] = "Peut poster sur 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 profiles and profile things"] = "Peut aimer ou détester des profils"; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Peut faire suivre à tous mes contacts avec la mention @+ dans une publication"; +App::$strings["Can chat with me"] = "Peut discuter avec moi"; +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"] = "Peut administrer mon canal"; +App::$strings["Social Networking"] = "Réseau social"; +App::$strings["Social - Federation"] = "Sociale - Fédération"; +App::$strings["Social - Mostly Public"] = "Social - principalement 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 - principalement 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 - principalement public"; +App::$strings["Feed - Restricted"] = "Flux - restreint"; +App::$strings["Special Purpose"] = "Utilisation spécifique"; +App::$strings["Special - Celebrity/Soapbox"] = "Spécial - célébrité/vitrine"; +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["Requested profile is not available."] = "Profil demandé non disponible."; +App::$strings["Permission denied."] = "Accès refusé."; +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["Create"] = "Créer"; -App::$strings["Upload"] = "Envoyer"; +App::$strings["Edit"] = "Modifier"; +App::$strings["Share"] = "Partager"; +App::$strings["Delete"] = "Supprimer"; +App::$strings["View"] = "Voir"; +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["Submit"] = "Envoyer"; +App::$strings["Articles"] = "Articles"; +App::$strings["Add Article"] = "Ajouter article"; +App::$strings["Item not found"] = "Élément introuvable"; +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["Permission denied"] = "Accès refusé"; +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["All Connections"] = "Tous les contacts"; +App::$strings["INVALID EVENT DISMISSED!"] = "ÉVÉNEMENT INVALIDE REJETÉ!"; +App::$strings["Summary: "] = "Sommaire :"; +App::$strings["Unknown"] = "Inconnu"; +App::$strings["Date: "] = "Date :"; +App::$strings["Reason: "] = "Raison :"; +App::$strings["INVALID CARD DISMISSED!"] = "ÉVÉNEMENT INVALIDE REJETÉ!"; +App::$strings["Name: "] = "Nom :"; +App::$strings["Event title"] = "Titre de l'événement"; +App::$strings["Start date and time"] = "Date et heure de début"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Exemple : YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "Date et heure de fin"; +App::$strings["Description"] = "Description"; +App::$strings["Location"] = "Emplacement"; +App::$strings["Previous"] = "Précédent"; +App::$strings["Next"] = "Suivant"; +App::$strings["Today"] = "Aujourd'hui"; +App::$strings["Month"] = "Mois"; +App::$strings["Week"] = "Semaine"; +App::$strings["Day"] = "Jour"; +App::$strings["List month"] = "Liste mois"; +App::$strings["List week"] = "Liste semaine"; +App::$strings["List day"] = "Liste jour"; +App::$strings["More"] = "Plus"; +App::$strings["Less"] = "Moins"; +App::$strings["Select calendar"] = "Sélectionner un calendrier"; +App::$strings["Delete all"] = "Tout supprimer"; +App::$strings["Cancel"] = "Annuler"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Désolé ! L'édition d'événements récurrents n'est pas encore implémenté."; App::$strings["Name"] = "Nom"; -App::$strings["Type"] = "Type"; +App::$strings["Organisation"] = "Organisation"; +App::$strings["Title"] = "Titre"; +App::$strings["Phone"] = "Téléphone"; +App::$strings["Email"] = "Courriel"; +App::$strings["Instant messenger"] = "Instant messenger"; +App::$strings["Website"] = "Site web"; +App::$strings["Address"] = "Adresse"; +App::$strings["Note"] = "Note"; +App::$strings["Mobile"] = "Mobile"; +App::$strings["Home"] = "Mon canal"; +App::$strings["Work"] = "Travail"; +App::$strings["Add Contact"] = "Ajouter un contact"; +App::$strings["Add Field"] = "Ajouter un champ"; +App::$strings["Update"] = "Mise à jour"; +App::$strings["P.O. Box"] = "P.O. Box"; +App::$strings["Additional"] = "Information complémentaires"; +App::$strings["Street"] = "Rue"; +App::$strings["Locality"] = "Localité"; +App::$strings["Region"] = "Région"; +App::$strings["ZIP Code"] = "ZIP code"; +App::$strings["Country"] = "Pays"; +App::$strings["Default Calendar"] = "Agenda par défaut"; +App::$strings["Default Addressbook"] = "Carnet d'adresses par défaut"; +App::$strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire"; +App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; +App::$strings["Posts and comments"] = "Publications et commentaires"; +App::$strings["Only posts"] = "Seulement les publications"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Droits d'accès insuffisants. Demande redirigée vers la page du 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, droits d'accès, 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 tous vos contacts, droits d'accès, 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["Welcome to Hubzilla!"] = "Bienvenue sur Hubzilla !"; +App::$strings["You have got no unseen posts..."] = "Vous n'avez aucune publication non-vue..."; +App::$strings["Public access denied."] = "Accès public refusé."; +App::$strings["Search"] = "Recherche"; +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["Public Stream"] = "Flux public"; +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"] = "Primaire"; +App::$strings["Drop"] = "Supprimer"; +App::$strings["Sync Now"] = "Synchronisez maintenant"; +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["Change Order of Pinned Navbar Apps"] = "Changer l'ordre des applications épinglées"; +App::$strings["Change Order of App Tray Apps"] = "Changer l'ordre des applications du menu"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Utilisez les flèches pour déplacer l'application correspondante à gauche (en haut) ou à droite (en bas) dans la barre de navigation."; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Utilisez les flèches pour déplacer l'application correspondante vers le haut ou vers le bas dans le panneau d'applications."; +App::$strings["Menu not found."] = "Menu introuvable."; +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["Not found."] = "Introuvable."; +App::$strings["Menu Item Permissions"] = "Droits d'accès 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["No"] = "Non"; +App::$strings["Yes"] = "Oui"; +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["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["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["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["Edit Location"] = "Modifier l'emplacement"; +App::$strings["Preview"] = "Aperçu"; +App::$strings["Permission settings"] = "Gérer les droits d'accès"; +App::$strings["Timezone:"] = "Fuseau horaire :"; +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["Export"] = "Export"; +App::$strings["Event removed"] = "Événement supprimé"; +App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; +App::$strings["App installed."] = "Application installée."; +App::$strings["Malformed app."] = "Application mal formé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)"] = "Catégories (séparées par des virgules)"; +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["Please login."] = "Merci de vous connecter."; +App::$strings["Hub not found."] = "Hub introuvable."; +App::$strings["photo"] = "photo"; +App::$strings["status"] = "état"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ne suit plus %3\$s de %2\$s"; +App::$strings["Channel not found."] = "Canal introuvable."; +App::$strings["Insert web link"] = "Insérer lien web"; +App::$strings["Title (optional)"] = "Titre (facultatif)"; +App::$strings["Edit Article"] = "Éditer l'article"; +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"; +App::$strings["Imported file is empty."] = "Le fichier importé est vide."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attention : les versions de bases de données diffèrent de %1\$d mises à jour."; +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["File to Upload"] = "Fichier à envoyer"; +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["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 a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things. Channels can make connections with other channels to share information with each other."] = "Un canal est une identité réseau unique. Il peut représenter une personne (profil de réseau social), un forum (groupe), une page commerciale ou de célébrités, un flux d'informations et bien d'autres choses. Les canaux peuvent établir des connexions avec d'autres canaux pour partager l'information entre eux."; +App::$strings["The type of channel you create affects the basic privacy settings, the permissions that are granted to connections/friends, and also the channel's visibility across the network."] = "Le type de canal que vous créez affecte les paramètres de confidentialité de base, les permissions accordées aux connexions/amis, ainsi que la visibilité du canal sur le réseau."; +App::$strings["or import an existing channel from another location."] = "ou importer un canal existant d'un autre serveur."; +App::$strings["Validate"] = "Valider"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte."; +App::$strings["Remove This Channel"] = "Supprimer ce canal"; +App::$strings["WARNING: "] = "AVERTISSEMENT :"; +App::$strings["This channel will be completely removed from the network. "] = "Ce canal sera complètement supprimé du réseau."; +App::$strings["This action is permanent and can not be undone!"] = "Cette action est permanente et irréversible !"; +App::$strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :"; +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["Files: shared with me"] = "Fichiers : partagés avec moi"; +App::$strings["NEW"] = "NOUVEAU"; App::$strings["Size"] = "Taille"; App::$strings["Last Modified"] = "Modifié le"; -App::$strings["Edit"] = "Éditer"; -App::$strings["Delete"] = "Supprimer"; -App::$strings["Create new folder"] = "Nouveau dossier"; -App::$strings["Upload file"] = "Téléverser un fichier"; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BD '%s'"; -App::$strings["Profile Photos"] = "Photos du profil"; -App::$strings["Logout"] = "Déconnexion"; -App::$strings["End this session"] = "Mettre fin à la session"; -App::$strings["Home"] = "Canal"; -App::$strings["Your posts and conversations"] = "Vos publications et conversations"; -App::$strings["View Profile"] = "Profil"; -App::$strings["Your profile page"] = "Votre profil"; -App::$strings["Edit Profiles"] = "Éditer les profils"; -App::$strings["Manage/Edit profiles"] = "Gérer/éditer les profils"; -App::$strings["Edit Profile"] = "Éditeur de profil"; -App::$strings["Edit your profile"] = "Éditer votre profil"; -App::$strings["Photos"] = "Photos"; -App::$strings["Your photos"] = "Vos photos"; -App::$strings["Your files"] = "Vos fichiers"; -App::$strings["Chat"] = "Clavardage"; -App::$strings["Your chatrooms"] = "Vos salons"; -App::$strings["Bookmarks"] = "Favoris"; -App::$strings["Your bookmarks"] = "Vos favoris"; -App::$strings["Webpages"] = "Pages web"; -App::$strings["Your webpages"] = "Vos pages web"; -App::$strings["Login"] = "Connexion"; -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"; -App::$strings["Home Page"] = "Page d'accueil"; -App::$strings["Register"] = "S'inscrire"; -App::$strings["Create an account"] = "Créer un compte"; -App::$strings["Help"] = "Aide"; -App::$strings["Help and documentation"] = "Aide et documentation"; +App::$strings["Remove all files"] = "Supprimer tous les fichiers"; +App::$strings["Remove this file"] = "Supprimer ce fichier"; +App::$strings["\$Projectname Server - Setup"] = "Serveur \$Projectname - configuration"; +App::$strings["Could not connect to database."] = "Impossible de se connecter à la base de données."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."; +App::$strings["Could not create table."] = "Impossible de créer la table."; +App::$strings["Your site database has been installed."] = "La base de données de votre site a été installée."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Merci de consulter le fichier \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Vérification du système"; +App::$strings["Check again"] = "Re-vérifier"; +App::$strings["Database connection"] = "Connexion à la base de données"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Pour installer \$Projectname, nous avons besoin de savoir comment se connecter à votre base de données."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."; +App::$strings["Database Server Name"] = "Nom du serveur de base de données"; +App::$strings["Default is 127.0.0.1"] = "Par défaut 127.0.0.1"; +App::$strings["Database Port"] = "Port de la base de données"; +App::$strings["Communication port number - use 0 for default"] = "Numéro TCP du port - utilisez 0 pour la valeur par défaut"; +App::$strings["Database Login Name"] = "Identifiant de connexion à la Base de Données"; +App::$strings["Database Login Password"] = "Mot de passe de connexion à la Base de Données"; +App::$strings["Database Name"] = "Nom de la Base de Données"; +App::$strings["Database Type"] = "Type de base de données"; +App::$strings["Site administrator email address"] = "Adresse de courriel de l'administrateur du site"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."; +App::$strings["Website URL"] = "URL du site web"; +App::$strings["Please use SSL (https) URL if available."] = "Veuillez utiliser SSL/TLS (https) si disponible."; +App::$strings["Please select a default timezone for your website"] = "Veuillez choisir un fuseau horaire par défaut pour votre site"; +App::$strings["Site settings"] = "Paramètres du site"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 ou supérieur est requis"; +App::$strings["PHP version"] = "Version de PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver une version CLI de PHP dans le PATH du serveur 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."] = "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron."; +App::$strings["PHP executable path"] = "Chemin vers l'éxecutable PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."; +App::$strings["Command line PHP"] = "PHP en ligne de commande (CLI)"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Impossible de vérifier la ligne de commande PHP, car shell_exec () est désactivé. Ceci est nécessaire."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."; +App::$strings["This is required for message delivery to work."] = "Elle est nécessaire pour la distribution des messages."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Vous pouvez ajuster ces paramètres dans le fichier php.ini du serveur."; +App::$strings["PHP upload limits"] = "Limites de téléversement de PHP"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Générer les clefs de chiffrement"; +App::$strings["libCurl PHP module"] = "module PHP libCurl"; +App::$strings["GD graphics PHP module"] = "module PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "module PHP OpenSSL"; +App::$strings["PDO database PHP module"] = "module PDO de la base de données PHP"; +App::$strings["mb_string PHP module"] = "module PHP mb_string"; +App::$strings["xml PHP module"] = "module PHP xml"; +App::$strings["zip PHP module"] = "module zip PHP"; +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é."; +App::$strings["exec"] = "exécuter"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Erreur: exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Erreur: shell_exec est requis mais soit il n'est pas installé, soit il a été désactivé dans php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Erreur : le module libCURL de PHP est requis, mais pas installé."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : le module GD de PHP avec support JPEG est requis, mais pas installé."; +App::$strings["Error: openssl PHP module required but not installed."] = "Erreur : le module openssl de PHP est requis, mais pas installé."; +App::$strings["Error: PDO database PHP module required but not installed."] = "Erreur: le module PDO de base de données PHP est requis mais n'est pas 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: 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["Error: zip PHP module required but not installed."] = "Erreur : le module zip de PHP est requis, mais pas installé."; +App::$strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture"; +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 d'accès, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit."; +App::$strings["Please see install/INSTALL.txt for additional information."] = "Merci de vous reporter à install/INSTALL.txt pour des informations supplémentaires."; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Ce logiciel utilise Smarty3 comme moteur de modèles pour afficher ses vues Web. Smarty3 compile ses modèles en PHP pour accélérer le rendu."; +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."] = "Afin de stocker ces modèles compilés, le serveur Web doit disposer d'un accès en écriture au répertoire %s selon le dossier Web racine."; +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 top level web folder"] = "Ce logiciel utilise le répertoire de stockage pour enregistrer les fichiers téléversés. Le serveur Web doit disposer d'un accès en écriture au répertoire de stockage selon le dossier web racine."; +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é !"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub."; +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."] = "Si vous êtes certain que le certificat est valide et signé par une autorité de confiance, vérifiez si l'installation d'un certificat intermédiaire aurait échoué. Ceux-ci ne sont normalement pas requis par les navigateurs, mais ils sont requis pour les communications entre serveurs."; +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"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; +App::$strings["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BDD."; +App::$strings["

What next?

"] = "

Et maintenant ?

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau."; +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["Queue Statistics"] = "Statistiques de file d'attente"; +App::$strings["Total Entries"] = "Nombre d'entrées total"; +App::$strings["Priority"] = "Priorité"; +App::$strings["Destination URL"] = "URL de destination"; +App::$strings["Mark hub permanently offline"] = "Marquer le hub comme étant hors ligne de manière permanente"; +App::$strings["Empty queue for this hub"] = "Vider la file d'attente pour ce hub"; +App::$strings["Last known contact"] = "Dernier contact connu"; +App::$strings["Off"] = "Inactif"; +App::$strings["On"] = "Actif"; +App::$strings["Lock feature %s"] = "Verrouiller fonctionnalité %s"; +App::$strings["Manage Additional Features"] = "Gérer les fonctionnalités additionnelles"; +App::$strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie"; +App::$strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."; +App::$strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."; +App::$strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable."; +App::$strings["Failed Updates"] = "Mises à jour défaillantes"; +App::$strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"; +App::$strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement"; +App::$strings["No failed updates."] = "Aucune mise à jour défaillante."; +App::$strings["Item not found."] = "Élément introuvable"; +App::$strings["Plugin %s disabled."] = "Greffon %s désactivé."; +App::$strings["Plugin %s enabled."] = "Greffon %s activé."; +App::$strings["Disable"] = "Désactiver"; +App::$strings["Enable"] = "Activer"; +App::$strings["Administration"] = "Administration"; +App::$strings["Plugins"] = "Greffons"; +App::$strings["Toggle"] = "(Dés)activer"; +App::$strings["Settings"] = "Paramètres"; +App::$strings["Author: "] = "Auteur :"; +App::$strings["Maintainer: "] = "Maintenu par :"; +App::$strings["Minimum project version: "] = "Version minimum du projet :"; +App::$strings["Maximum project version: "] = "Version maximum du projet :"; +App::$strings["Minimum PHP version: "] = "Version minimum de PHP :"; +App::$strings["Compatible Server Roles: "] = "Rôles du serveur "; +App::$strings["Requires: "] = "Requiert :"; +App::$strings["Disabled - version incompatibility"] = "Désactivé - version incompatible"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Entrer l'URL du dépôt git public pour les greffons"; +App::$strings["Plugin repo git URL"] = "URL du git pour les plugin"; +App::$strings["Custom repo name"] = "Nom du dépôt"; +App::$strings["(optional)"] = "(en option)"; +App::$strings["Download Plugin Repo"] = "Télécharger l'extension"; +App::$strings["Install new repo"] = "Installer un nouveau dépôt"; +App::$strings["Install"] = "Installer"; +App::$strings["Manage Repos"] = "Gérer les dépôts"; +App::$strings["Installed Plugin Repositories"] = "Dépôt des extensions installées"; +App::$strings["Install a New Plugin Repository"] = "Installer un nouveau dépôt pour extensions"; +App::$strings["Switch branch"] = "Changer de branche"; +App::$strings["Remove"] = "Retirer"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s compte bloqué/débloqué", + 1 => "%s comptes bloqués/débloqués", +); +App::$strings["%s account deleted"] = array( + 0 => "%s compte supprimé", + 1 => "%s comptes supprimés", +); +App::$strings["Account not found"] = "Compte introuvable"; +App::$strings["Account '%s' deleted"] = "Compte '%s' supprimé"; +App::$strings["Account '%s' blocked"] = "Compte '%s' bloqué"; +App::$strings["Account '%s' unblocked"] = "Compte '%s' débloqué"; +App::$strings["Accounts"] = "Comptes"; +App::$strings["select all"] = "tout sélectionner"; +App::$strings["Registrations waiting for confirm"] = "Inscriptions en attente d'approbation"; +App::$strings["Request date"] = "Date de la demande"; +App::$strings["No registrations."] = "Pas d'inscriptions."; +App::$strings["Approve"] = "Approuver"; +App::$strings["Deny"] = "Refuser"; +App::$strings["Block"] = "Bloquer"; +App::$strings["Unblock"] = "Débloquer"; +App::$strings["ID"] = "Identifiant"; +App::$strings["All Channels"] = "Tous les canaux"; +App::$strings["Register date"] = "Date d'inscription"; +App::$strings["Last login"] = "Dernière connexion"; +App::$strings["Expires"] = "Expire le"; +App::$strings["Service Class"] = "Classe de service"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?"; +App::$strings["Log settings updated."] = "Paramètres du journal mis à jour."; +App::$strings["Logs"] = "Journaux"; +App::$strings["Clear"] = "Vider"; +App::$strings["Debugging"] = "Débogage"; +App::$strings["Log file"] = "Fichier du journal"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Doit être permettre d'écrire par le serveur web. En relation avec le répertoire de votre site."; +App::$strings["Log level"] = "Niveau de journalisation"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s canal censuré/dé-censuré", + 1 => "%s canaux censurés/dé-censurés", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "code autorisé/interdit pour %s canal", + 1 => "code autorisé/interdit pour %s canaux", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canal supprimé", + 1 => "%s canaux supprimés", +); +App::$strings["Channel not found"] = "Canal introuvable"; +App::$strings["Channel '%s' deleted"] = "Canal '%s' supprimé"; +App::$strings["Channel '%s' censored"] = "Canal '%s' censuré"; +App::$strings["Channel '%s' uncensored"] = "Canal '%s' non censuré"; +App::$strings["Channel '%s' code allowed"] = "Code autorisé pour le canal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Code interdit pour le canal '%s'"; +App::$strings["Channels"] = "Canaux"; +App::$strings["Censor"] = "Censurer"; +App::$strings["Uncensor"] = "Ne plus censurer"; +App::$strings["Allow Code"] = "Autoriser le code"; +App::$strings["Disallow Code"] = "Interdire le code"; +App::$strings["Channel"] = "Canal"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les canaux sélectionnés seront supprimés !\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé !\\n\\nÊtes-vous sûr ?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le canal {0} sera supprimé !\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé !\\n\\nÊtes-vous sûr(e) ?"; +App::$strings["Theme settings updated."] = "Paramètres du thème mis à jour."; +App::$strings["No themes found."] = "Aucun thème trouvé."; +App::$strings["Screenshot"] = "Capture d'écran"; +App::$strings["Themes"] = "Thèmes"; +App::$strings["[Experimental]"] = "[Expérimental]"; +App::$strings["[Unsupported]"] = "[Non maintenu]"; +App::$strings["Site settings updated."] = "Paramètres du site sauvegardés."; +App::$strings["Default"] = "Défaut"; +App::$strings["%s - (Incompatible)"] = "%s - (Incompatible)"; +App::$strings["mobile"] = "mobile"; +App::$strings["experimental"] = "expérimental"; +App::$strings["unsupported"] = "non maintenu"; +App::$strings["Yes - with approval"] = "Oui - avec approbation"; +App::$strings["My site is not a public server"] = "Mon site n'est pas un serveur public"; +App::$strings["My site has paid access only"] = "Mon site est à accès payant uniquement"; +App::$strings["My site has free access only"] = "Mon site est gratuit uniquement"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mon site offre des comptes gratuits avec des améliorations payantes facultatives"; +App::$strings["Beginner/Basic"] = "Pour débutant/ de base"; +App::$strings["Novice - not skilled but willing to learn"] = "Novice - pas qualifiés, mais prêt à apprendre"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermédiaire - assez confortable"; +App::$strings["Advanced - very comfortable"] = "Niveau avancé - trés confortable"; +App::$strings["Expert - I can write computer code"] = "Niveau expert - Je peux programmer"; +App::$strings["Wizard - I probably know more than you do"] = "Crack - J'en sais probablement plus que beaucoup"; +App::$strings["Site"] = "Site"; +App::$strings["Registration"] = "Inscription"; +App::$strings["File upload"] = "Envoi de fichier"; +App::$strings["Policies"] = "Stratégies"; +App::$strings["Advanced"] = "Avancé"; +App::$strings["Site name"] = "Nom du site"; +App::$strings["Site default technical skill level"] = "Niveau technique par défaut pour le site"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utilisé pour fournir une expérience utilisateur correspondant au niveau de confort technique"; +App::$strings["Lock the technical skill level setting"] = "Bloque le niveau technique du paramétrage"; +App::$strings["Members can set their own technical comfort level by default"] = "Les utilisateurs peuvent paramétrer leur propre niveau technique."; +App::$strings["Banner/Logo"] = "Bannière/logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Autoriser le HTML/CSS/JS non filtré"; +App::$strings["Administrator Information"] = "Informations de l'administrateur"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"; +App::$strings["Site Information"] = "Site information"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Description du site visible publiquement. Affiché sur la page d'information du site. BBCode peut être utilisé ici."; +App::$strings["System language"] = "Langue du système"; +App::$strings["System theme"] = "Thème du système"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème"; +App::$strings["Allow Feeds as Connections"] = "Autoriser les Flux (RSS) comme contacts"; +App::$strings["(Heavy system resource usage)"] = "(Impact important sur les ressources)"; +App::$strings["Maximum image size"] = "Taille maximale des images"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."; +App::$strings["Does this site allow new member registration?"] = "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site ?"; +App::$strings["Invitation only"] = "Sur invitation seulement"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\"."; +App::$strings["Minimum age"] = "Âge minimum"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Âge minimum (en années) pour les personnes pouvant s'inscrire sur ce site."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Quelle est la meilleure description des types de comptes proposés sur ce hub ?"; +App::$strings["Register text"] = "Texte d'inscription"; +App::$strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur le formulaire d'inscription."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Page d'accueil du site à montrer aux visiteurs (par défaut : boîte de dialogue de connexion)"; +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 :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier."; +App::$strings["Preserve site homepage URL"] = "Préserver l'adresse d'accueil du site"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger"; +App::$strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps."; +App::$strings["Allowed friend domains"] = "Domaines amicaux autorisés"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."; +App::$strings["Verify Email Addresses"] = "Demander vérification des adresses de courriel"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)."; +App::$strings["Force publish"] = "Publicité forcée"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."; +App::$strings["Import Public Streams"] = "Flux publics importés"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention : ce contenu n'est pas modéré."; +App::$strings["Site only Public Streams"] = "Flux publics du site seulement"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Autoriser l'accès au contenu public provenant uniquement de ce site si les flux publics importés sont désactivés."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Permettre à n'importe qui sur Internet d'accéder aux flux publics."; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Désactiver l'authentification avant l'affichage. Attention : ce contenu n'est pas modéré."; +App::$strings["Login on Homepage"] = "Connexion sur la page d'accueil"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré."; +App::$strings["Enable context help"] = "Permettre l'aide contextuelle"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Afficher l'aide contextuel en cliquant sur le bouton aide."; +App::$strings["Reply-to email address for system generated email."] = "Adresse courriel de retour pour les courriels générés par l'application."; +App::$strings["Sender (From) email address for system generated email."] = "Adresse courriel de l'expéditeur (champ \"De\") pour les courriels générés par l'application."; +App::$strings["Name of email sender for system generated email."] = "Nom ou courriel de l'expéditeur pour les courriels générés par l'application."; +App::$strings["Directory Server URL"] = "URL du serveur d'annuaire"; +App::$strings["Default directory server"] = "Serveur d'annuaire par défaut"; +App::$strings["Proxy user"] = "Utilisateur du proxy"; +App::$strings["Proxy URL"] = "URL du proxy"; +App::$strings["Network timeout"] = "Délai maximal du réseau"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé)."; +App::$strings["Delivery interval"] = "Intervalle de distribution"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."; +App::$strings["Deliveries per process"] = "Distributions par processus"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé:1-5."; +App::$strings["Queue Threshold"] = "Seuil de file d'attente"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Reportez toujours la livraison immédiate si la file d'attente contient plus que ce nombre d'entrées."; +App::$strings["Poll interval"] = "Intervalle de scrutation"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."; +App::$strings["Path to ImageMagick convert program"] = "Chemin d'accès au programme \"convert\" de ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Si cette option est activée, utilisez ce programme pour générer des vignettes de photos pour des images géantes ( > 4000 pixels dans l'une ou l'autre dimension), sinon la mémoire risque de s'épuiser. Exemple : /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Autoriser les vignettes SVG dans le navigateur de fichiers"; +App::$strings["WARNING: SVG images may contain malicious code."] = "ATTENTION : les images SVG peuvent contenir du code malveillant."; +App::$strings["Maximum Load Average"] = "Charge maximale moyenne"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Délai d'expiration en jours pour le contenu importé (grille/réseau)"; +App::$strings["0 for no expiration of imported content"] = "0 pour ne pas expirer le contenu importé"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Ne pas considérer comme expirés les messages qui ont reçu des commentaires depuis moins de ce nombre de jours"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Serveurs publics : page Web facultative d'atterrissage (marketing) pour les nouveaux inscrits."; +App::$strings["Create this page first. Default is %s/register"] = "Créez d'abord cette page. La valeur par défaut est %s /register"; +App::$strings["Page to display after creating a new channel"] = "Page à afficher après la création d'un nouveau canal"; +App::$strings["Recommend: profiles, go, or settings"] = "Recommander : profils, go, ou paramètres"; +App::$strings["Optional: site location"] = "Option : emplacement du site"; +App::$strings["Region or country"] = "Région ou pays"; +App::$strings["New Profile Field"] = "Nouveau champ de profil"; +App::$strings["Field nickname"] = "Nom court du champ"; +App::$strings["System name of field"] = "Nom système du champ"; +App::$strings["Input type"] = "Type de champ"; +App::$strings["Field Name"] = "Nom du champ"; +App::$strings["Label on profile pages"] = "Étiquette sur les pages de profil"; +App::$strings["Help text"] = "Aide à la saisie"; +App::$strings["Additional info (optional)"] = "Informations additionnelles (facultatif)"; +App::$strings["Save"] = "Enregistrer"; +App::$strings["Field definition not found"] = "Définition du champ introuvable"; +App::$strings["Edit Profile Field"] = "Modifier le champ de profil"; +App::$strings["Profile Fields"] = "Champs de profil"; +App::$strings["Basic Profile Fields"] = "Champs de profil de base"; +App::$strings["Advanced Profile Fields"] = "Champs de profil avancés"; +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["Password changed for account %d."] = "Le mot de passe a été modifié pour le compte %d."; +App::$strings["Account settings updated."] = "Paramétrage du compte mis à jour"; +App::$strings["Account not found."] = "Compte introuvable"; +App::$strings["Account Edit"] = "Modifier votre compte"; +App::$strings["New Password"] = "Nouveau mot de passe"; +App::$strings["New Password again"] = "Nouveau mot de passe (encore)"; +App::$strings["Technical skill level"] = "Niveau technique"; +App::$strings["Account language (for emails)"] = "Langue de votre compte (pour email)"; +App::$strings["Service class"] = "Classe de service"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Par défaut le code HTML est autorisé pour les média par exemple les vidéos embarquées. Cependant cela peut poser un faille de sécurité."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Ce paramétrage autorisant le HTML pour les sites suivants."; +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."] = "Les contenus html seront filtrés sauf ceux des sites explicitement bloqués."; +App::$strings["Security"] = "Sécurité"; +App::$strings["Block public"] = "Bloquer \"public\""; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Sélectionner pour ne permettre l'accès aux pages personnelles \"publiques\" du site qu'aux personnes authentifiées, pas aux personnes anonymes du web."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Paramétrer \"Transport Security\" pour l'entête HTTP"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Paramétrer \"Content Security Policy\" pour l'entête HTTP"; +App::$strings["Allowed email domains"] = "Domaines de courriels autorisés"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."; +App::$strings["Not allowed email domains"] = "Domaines de courriel non autorisés"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis."; +App::$strings["Allow communications only from these sites"] = "N'autorisez que les communications venant de ces sites"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un site par ligne. Laisser vide pour autoriser les communications de tous les sites, par défaut."; +App::$strings["Block communications from these sites"] = "Bloquer les communications de ces sites"; +App::$strings["Allow communications only from these channels"] = "N'autoriser que les communications de ces canaux"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (adresse) par ligne. Laisser vide pour autoriser les communications de tous les canaux, par défaut"; +App::$strings["Block communications from these channels"] = "Bloquer les communications de ces canaux"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Seuls les sites et liens sécurisés sont autorisé pour intégrer du code HTML"; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Autoriser le contenu HTML embarqué uniquement à partir de ces domaines"; +App::$strings["One site per line. By default embedded content is filtered."] = "Un site par ligne. Par défaut le contenu embarqué est filtré."; +App::$strings["Block embedded HTML from these domains"] = "Bloquer le HTML embarqué à partir de ces domaines"; +App::$strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles."; +App::$strings["Visible to:"] = "Visible par :"; +App::$strings["__ctx:acl__ Profile"] = "Profil"; +App::$strings["Comment approved"] = "Commentaire validé"; +App::$strings["Comment deleted"] = "Commentaire supprimé"; +App::$strings["Permission Name is required."] = "Le nom de permission est requis."; +App::$strings["Permission category saved."] = "Profil d'accès enregistré."; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Utilisez ce formulaire pour créer des règles d'accès pour différentes catégories de personnes ou de contacts."; +App::$strings["Permission Categories"] = "Profils d'accès"; +App::$strings["Permission Name"] = "Nom du droit d'accès"; +App::$strings["My Settings"] = "Mes paramètres"; +App::$strings["inherited"] = "héritée"; +App::$strings["Individual Permissions"] = "Droits d'accès individuels"; +App::$strings["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."] = "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous ne pouvez pas modifier ces droits d'accès-ci ici."; +App::$strings["Friends"] = "Amis"; +App::$strings["Settings updated."] = "Paramètres mis à jour."; +App::$strings["Nobody except yourself"] = "Personne sauf vous"; +App::$strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement"; +App::$strings["Approved connections"] = "Contacts validés"; +App::$strings["Any connections"] = "Tous les contacts"; +App::$strings["Anybody on this website"] = "Tous les utilisateurs du hub"; +App::$strings["Anybody in this network"] = "Tous les utilisateurs sur ce réseau"; +App::$strings["Anybody authenticated"] = "Tous les utilisateurs authentifiés"; +App::$strings["Anybody on the internet"] = "Tous les utilisateurs d'Internet"; +App::$strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?"; +App::$strings["or"] = "ou"; +App::$strings["Your channel address is"] = "L'adresse de votre canal est"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "Vos fichiers/photos sont accessibles via WebDAV à"; +App::$strings["Channel Settings"] = "Paramètres du canal"; +App::$strings["Basic Settings"] = "Paramètres standard"; +App::$strings["Full Name:"] = "Nom complet :"; +App::$strings["Email Address:"] = "Adresse de courriel :"; +App::$strings["Your Timezone:"] = "Votre fureau horaire :"; +App::$strings["Default Post Location:"] = "Emplacement de publication par défaut :"; +App::$strings["Geographical location to display on your posts"] = "Emplacement géographique à afficher sur vos publications"; +App::$strings["Use Browser Location:"] = "Utiliser la géolocalisation du navigateur :"; +App::$strings["Adult Content"] = "Contenu \"adulte\""; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "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)"; +App::$strings["Security and Privacy Settings"] = "Paramètres de sécurité et de confidentialité"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Vous droits d'accès sont déjà paramétrés. Cliquer pour voir/modifier"; +App::$strings["Hide my online presence"] = "Cacher ma présence en ligne"; +App::$strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil"; +App::$strings["Simple Privacy Settings:"] = "Paramètres de confidentialité simplifiés :"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Classique - public par défaut, privé en cas de besoin (comparable aux droits d'accès type réseau social, avec une confidentialité améliorée)"; +App::$strings["Private - default private, never open or public"] = "Privé - privé par défaut, jamais ouvert ni public"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloqué - par défaut, bloqué de/vers tout le monde"; +App::$strings["Allow others to tag your posts"] = "Autoriser les autres à \"étiqueter\" vos publications"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori "; +App::$strings["Channel Permission Limits"] = "Limites des droits d'accès du canal"; +App::$strings["Expire other channel content after this many days"] = "Faire expirer le contenu des autres canaux après n jours"; +App::$strings["0 or blank to use the website limit."] = "0 ou vide pour utiliser la limite du site web"; +App::$strings["This website expires after %d days."] = "Ce site web expirera après %d jours."; +App::$strings["This website does not expire imported content."] = "Ce site web ne périme pas le contenu importé."; +App::$strings["The website limit takes precedence if lower than your limit."] = "La limite du site Web a priorité si elle est inférieure à votre limite."; +App::$strings["Maximum Friend Requests/Day:"] = "Nombre maximum de demandes de contact par jour :"; +App::$strings["May reduce spam activity"] = "Contribue à réduire l'impact des indésirables"; +App::$strings["Default Privacy Group"] = "Groupe de contacts par défaut :"; +App::$strings["Use my default audience setting for the type of object published"] = "Utiliser mon paramètre de publication par défaut pour le type d'objet publié"; +App::$strings["Profile to assign new connections"] = "Profil pour assigner de nouvelles connexions"; +App::$strings["Default Permissions Group"] = "Groupe d'accès par défaut"; +App::$strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour :"; +App::$strings["Useful to reduce spamming"] = "Utile pour réduire les indésirables"; +App::$strings["Notification Settings"] = "Paramètres de notification"; +App::$strings["By default post a status message when:"] = "Par défaut, publier un statut quand :"; +App::$strings["accepting a friend request"] = "vous acceptez une demande de contact"; +App::$strings["joining a forum/community"] = "vous rejoignez un forum ou une communauté"; +App::$strings["making an interesting profile change"] = "vous faîtes une modification intéressante de votre profil"; +App::$strings["Send a notification email when:"] = "Envoyer un courriel de notification quand :"; +App::$strings["You receive a connection request"] = "Vous recevez une demande de contact"; +App::$strings["Your connections are confirmed"] = "Vos contacts sont confirmés"; +App::$strings["Someone writes on your profile wall"] = "Quelqu'un a écrit sur votre mur"; +App::$strings["Someone writes a followup comment"] = "Quelqu'un a commenté vos publications"; +App::$strings["You receive a private message"] = "Vous recevez un message privé"; +App::$strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/contact"; +App::$strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication"; +App::$strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/encouragé/etc. dans une publication"; +App::$strings["Someone likes your post/comment"] = "Quelqu'un aime votre publication/commentaire"; +App::$strings["Show visual notifications including:"] = "Afficher des notifications visuelles y compris :"; +App::$strings["Unseen grid activity"] = "Activité du réseau pas encore consultée"; +App::$strings["Unseen channel activity"] = "Activité non vue sur le canal"; +App::$strings["Unseen private messages"] = "Messages privés non lus"; +App::$strings["Recommended"] = "Recommandé"; +App::$strings["Upcoming events"] = "Événements à venir"; +App::$strings["Events today"] = "Événements aujourd'hui"; +App::$strings["Upcoming birthdays"] = "Anniversaires à venir"; +App::$strings["Not available in all themes"] = "Pas disponible dans tous les thèmes"; +App::$strings["System (personal) notifications"] = "Notifications système (personnelles)"; +App::$strings["System info messages"] = "Messages d'info système"; +App::$strings["System critical alerts"] = "Alertes critiques système"; +App::$strings["New connections"] = "Nouveaux contacts"; +App::$strings["System Registrations"] = "Inscriptions système"; +App::$strings["Unseen shared files"] = "Fichiers partagés non vus"; +App::$strings["Unseen public activity"] = "Activité publique non vue"; +App::$strings["Unseen likes and dislikes"] = "Aime et n'aime pas non consultés"; +App::$strings["Email notification hub (hostname)"] = "Concentrateur de notification par courriel (nom d'hôte)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Si votre canal est dupliqué sur plusieurs hubs, définissez cet emplacement comme votre emplacement préféré. Cela empêchera les notifications par courriel en double. Exemple : %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Montrer les nouveaux envois, messages privés et les nouvelles connexions dans Notifications"; +App::$strings["Notify me of events this many days in advance"] = "Me prévenir d’événements à venir tant de jours en avance"; +App::$strings["Must be greater than 0"] = "Doit être supérieur à 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/type de page"; +App::$strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour des situations particulières"; +App::$strings["Miscellaneous Settings"] = "Paramètres divers"; +App::$strings["Default photo upload folder"] = "Répertoire par défaut pour les photos téléversées"; +App::$strings["%Y - current year, %m - current month"] = "%Y - année en cours, %m - mois en cours"; +App::$strings["Default file upload folder"] = "Répertoire par défaut pour les fichiers téléversés"; +App::$strings["Personal menu to display in your channel pages"] = "Menu personnel à afficher sur les pages de votre canal"; +App::$strings["Remove this channel."] = "Supprimer ce canal"; +App::$strings["Firefox Share \$Projectname provider"] = "Connecteur \$Projectname pour Firefox Share"; +App::$strings["Start calendar week on Monday"] = "Commencer la semaine du calendrier le lundi"; +App::$strings["Additional Features"] = "Fonctionnalités additionnelles"; +App::$strings["Your technical skill level"] = "Votre niveau technique"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilisé pour offrir une expérience de membre et des fonctions supplémentaires compatibles avec votre niveau de confort."; +App::$strings["This channel is limited to %d tokens"] = "Ce canal est limité à %d jetons"; +App::$strings["Name and Password are required."] = "Le nom et le mot de passe sont requis"; +App::$strings["Token saved."] = "Jeton sauvegardé"; +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 private content."] = "Utilisez ce formulaire pour créer des identifiants d'accès temporaires pour partager des informations avec des non-membres. Ces identités peuvent être utilisées dans les listes de contrôle d'accès et les visiteurs peuvent se connecter en utilisant ces certificats d'identification pour accéder au contenu privé."; +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:"] = "Vous pouvez également fournir des liens d'accès, style dropbox, aux amis et aux associés en ajoutant le mot de passe de connexion à l'URL d'un site spécifique, comme indiqué. Exemples:"; +App::$strings["Guest Access Tokens"] = "Jeton d'accès pour un invité"; +App::$strings["Login Name"] = "Nom d'utilisateur"; +App::$strings["Login Password"] = "Mot de passe"; +App::$strings["Expires (yyyy-mm-dd)"] = "Date d'expiration sous la forme année mois jour (AAAA-MM-JJ)"; +App::$strings["Their Settings"] = "Leurs paramètres"; +App::$strings["Name and Secret are required"] = "Un nom et un secret sont requis"; +App::$strings["Add OAuth2 application"] = "Ajouter une application OAuth2"; +App::$strings["Name of application"] = "Nom de l'application"; +App::$strings["Consumer Secret"] = "Secret client"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."; +App::$strings["Redirect"] = "Redirection"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement"; +App::$strings["Grant Types"] = "Types de bourses"; +App::$strings["leave blank unless your application sepcifically requires this"] = "Laisser vide, sauf si votre application le requiert spécifiquement"; +App::$strings["Authorization scope"] = "Portée de l'autorisation"; +App::$strings["OAuth2 Application not found."] = "Application OAuth2 introuvable"; +App::$strings["Add application"] = "Ajouter une application"; +App::$strings["Connected OAuth2 Apps"] = "Applications OAuth2 connectées"; +App::$strings["Client key starts with"] = "La clef partagée commence par"; +App::$strings["No name"] = "Sans nom"; +App::$strings["Remove authorization"] = "Révoquer l'autorisation"; +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."; +App::$strings["Technical skill level updated"] = "Niveau technique mis à jour"; +App::$strings["Password verification failed."] = "La vérification du mot de passe a échoué."; +App::$strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."; +App::$strings["Password changed."] = "Le mot de passe a été changé."; +App::$strings["Password update failed. Please try again."] = "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau."; +App::$strings["Account Settings"] = "Paramètres du compte"; +App::$strings["Current Password"] = "Mot de passe actuel"; +App::$strings["Enter New Password"] = "Entrez votre nouveau mot de passe"; +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["Remove Account"] = "Supprimer le compte"; +App::$strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux"; +App::$strings["Affinity Slider settings updated."] = "Paramètres de la réglette d'affinité mis à jour."; +App::$strings["No feature settings configured"] = "Aucun paramètre de fonctionnalité configuré"; +App::$strings["Default maximum affinity level"] = "Niveau d'affinité maximum par défaut"; +App::$strings["0-99 default 99"] = "0-99 par défaut 99"; +App::$strings["Default minimum affinity level"] = "Niveau d'affinité minimum par défaut"; +App::$strings["0-99 - default 0"] = "0-99 par défaut 0"; +App::$strings["Affinity Slider Settings"] = "Paramètres de la réglette d'affinité"; +App::$strings["Addon Settings"] = "Paramètres du greffon"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Veuillez enregistrer/soumettre les changements à n'importe quel panneau avant d'en ouvrir un autre."; +App::$strings["%s - (Experimental)"] = "%s - (Expérimental)"; +App::$strings["Display Settings"] = "Afficher les paramètres"; +App::$strings["Theme Settings"] = "Paramètres du thème"; +App::$strings["Custom Theme Settings"] = "Paramètres personnels du thème"; +App::$strings["Content Settings"] = "Paramètres liés au contenu"; +App::$strings["Display Theme:"] = "Afficher le thème :"; +App::$strings["Select scheme"] = "Définir la palette de couleurs"; +App::$strings["Preload images before rendering the page"] = "Pré-charger les images avant d'afficher la page"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Le temps de charge perçu de la page sera plus long mais la page sera complète quand elle s'affichera"; +App::$strings["Enable user zoom on mobile devices"] = "Permettre à l'utilisateur d'un mobile d'agrandir le contenu"; +App::$strings["Update browser every xx seconds"] = "Mettre à jour le navigateur toutes les xx secondes"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps :"; +App::$strings["Maximum of 100 items"] = "100 éléments au maximum"; +App::$strings["Show emoticons (smilies) as images"] = "Remplacer les émoticônes (smileys) par des images"; +App::$strings["Provide channel menu in navigation bar"] = "Fournir le menu du canal dans la barre de navigation"; +App::$strings["Default: channel menu located in app menu"] = "Par défaut : menu du canal situé dans le menu de l'application."; +App::$strings["Manual conversation updates"] = "Manuel de mises à jour des conversations"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "Activé par défaut, le désactiver peut accroître les sauts d'écran"; +App::$strings["Link post titles to source"] = "Lier les titres des publications à leur source"; +App::$strings["System Page Layout Editor - (advanced)"] = "Editeur de mise en page des pages systèmes - (avancé)"; +App::$strings["Use blog/list mode on channel page"] = "Utiliser le mode blog/liste sur la page du canal"; +App::$strings["(comments displayed separately)"] = "(commentaires affichés séparément)"; +App::$strings["Use blog/list mode on grid page"] = "Utiliser le mode blog/liste sur la page du réseau"; +App::$strings["Channel page max height of content (in pixels)"] = "Hauteur maximale du contenu pour la page du canal (en pixels)"; +App::$strings["click to expand content exceeding this height"] = "cliquer pour dérouler le contenu dépassant cette limite"; +App::$strings["Grid page max height of content (in pixels)"] = "Hauteur maximale du contenu sur la page du réseau (en pixels)"; +App::$strings["Name is required"] = "Le nom est requis"; +App::$strings["Key and Secret are required"] = "Clef et secret sont requis"; +App::$strings["Consumer Key"] = "Clef client"; +App::$strings["Icon url"] = "URL de l'icône"; +App::$strings["Optional"] = "Facultatif"; +App::$strings["Application not found."] = "Application introuvable."; +App::$strings["Connected Apps"] = "Applications connectées"; +App::$strings["View Photo"] = "Voir la photo"; +App::$strings["Edit Album"] = "Modifier l'album"; +App::$strings["Upload"] = "Envoyer"; +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["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["Permissions"] = "Droits d'accès"; +App::$strings["Add Thing to your Profile"] = "Ajouter l'élément à votre profil"; +App::$strings["No more system notifications."] = "Pas d'autre notification du système."; +App::$strings["System Notifications"] = "Notifications du système"; +App::$strings["Connection added."] = "Connexion ajoutée."; +App::$strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux."; +App::$strings["No channel. Import failed."] = "Pas de canal. Echec de l'import."; +App::$strings["Import completed."] = "L'import est terminé."; +App::$strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité."; +App::$strings["Import Channel"] = "Importation de canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; +App::$strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)"; +App::$strings["Your old login email address"] = "Votre ancienne adresse de courriel"; +App::$strings["Your old login password"] = "Votre ancien mot de passe"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; +App::$strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire"; +App::$strings["Move this channel (disable all previous locations)"] = "Déplacer ce canal (désactiver tous les emplacements précédents)"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importer plusieurs mois de messages si possible (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["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["Permissions denied."] = "Accès refusés."; +App::$strings["Import"] = "Import"; +App::$strings["Authorize application connection"] = "Autoriser l'application à se connecter"; +App::$strings["Return to your app and insert this Security Code:"] = "Revenez dans votre application et mettez le 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["Item not available."] = "Élément indisponible."; +App::$strings["Edit Block"] = "Modifier le bloc"; +App::$strings["vcard"] = "vcard"; App::$strings["Apps"] = "Applications"; -App::$strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux"; -App::$strings["Search"] = "Recherche"; -App::$strings["Search site content"] = "Rechercher parmi le contenu du site"; -App::$strings["Directory"] = "Annuaire"; -App::$strings["Channel Directory"] = "Annuaire des canaux"; -App::$strings["Matrix"] = "Matrice"; -App::$strings["Your matrix"] = "Votre matrice"; -App::$strings["Mark all matrix notifications seen"] = "Marquer toutes les notifications de la matrice comme vues"; +App::$strings["Manage apps"] = "Gérer les applications"; +App::$strings["Create new app"] = "Créer une application"; +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["Active"] = "Active"; +App::$strings["Blocked"] = "Bloqué(e)"; +App::$strings["Ignored"] = "Ignoré(e)"; +App::$strings["Hidden"] = "Caché"; +App::$strings["Archived/Unreachable"] = "Archivé/Injoignable"; +App::$strings["New"] = "Nouveautés"; +App::$strings["All"] = "Tous"; +App::$strings["Active Connections"] = "Connexions actives"; +App::$strings["Show active connections"] = "Voir les connexions actives"; +App::$strings["New Connections"] = "Nouveaux contacts"; +App::$strings["Show pending (new) connections"] = "Voir les (nouveaux) contacts en attente"; +App::$strings["Only show blocked connections"] = "Ne montrer que les contacts bloqués"; +App::$strings["Only show ignored connections"] = "Ne montrer que les contacts ignorés"; +App::$strings["Only show archived/unreachable connections"] = "Ne montrer que les contacts archivés/injoignables"; +App::$strings["Only show hidden connections"] = "Ne montrer que les contacts cachés"; +App::$strings["Show all connections"] = "Voir tous les contacts"; +App::$strings["Pending approval"] = "En attente de validation"; +App::$strings["Archived"] = "Archivé"; +App::$strings["Not connected at this location"] = "Contact introuvable à cette adresse"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifier le contact"; +App::$strings["Delete connection"] = "Supprimer le contact"; +App::$strings["Channel address"] = "Adresse du canal"; +App::$strings["Network"] = "Réseau"; +App::$strings["Call"] = "Appeler"; +App::$strings["Status"] = "État"; +App::$strings["Connected"] = "Ami depuis"; +App::$strings["Approve connection"] = "Valider le contact"; +App::$strings["Ignore connection"] = "Ignorer le contact"; +App::$strings["Ignore"] = "Ignorer"; +App::$strings["Recent activity"] = "Activité récente"; +App::$strings["Connections"] = "Contacts"; +App::$strings["Search your connections"] = "Chercher parmi vos contacts"; +App::$strings["Connections search"] = "Chercher des contacts"; +App::$strings["Find"] = "Trouver"; +App::$strings["item"] = "item"; +App::$strings["Source of Item"] = "Source de l'élément"; +App::$strings["Bookmark added"] = "Favori ajouté"; +App::$strings["My Bookmarks"] = "Mes Favoris"; +App::$strings["My Connections Bookmarks"] = "Favoris de mes contacts"; +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"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Ce compte et tous ses canaux seront entièrement supprimés du réseau."; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux."; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau"; +App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page."; +App::$strings["Album not found."] = "Album introuvable."; +App::$strings["Delete Album"] = "Supprimer l'album"; +App::$strings["Delete Photo"] = "Supprimer la photo"; +App::$strings["No photos selected"] = "Aucune photo selectionnée"; +App::$strings["Access to this item is restricted."] = "L'accès à l'élément est restreint."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos."; +App::$strings["Upload Photos"] = "Téléverser des photos"; +App::$strings["Enter an album name"] = "Entrer un nom d'album"; +App::$strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)"; +App::$strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi"; +App::$strings["Description (optional)"] = "Description (facultative)"; +App::$strings["Show Newest First"] = "Les plus récent(e)s en premier"; +App::$strings["Show Oldest First"] = "Les moins récent(e)s en premier"; +App::$strings["Add Photos"] = "Ajouter des photos"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Accès refusé. L'accès à cet élément peut avoir été restreint."; +App::$strings["Photo not available"] = "Photo non disponible"; +App::$strings["Use as profile photo"] = "Utiliser comme photo du profil"; +App::$strings["Use as cover photo"] = "Utilisez comme bannière"; +App::$strings["Private Photo"] = "Photo privée"; +App::$strings["View Full Size"] = "Voir en taille réelle"; +App::$strings["Edit photo"] = "Modifier la photo"; +App::$strings["Rotate CW (right)"] = "Rotation horaire (droite)"; +App::$strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)"; +App::$strings["Move photo to album"] = "Déplacer la photo dans l'album"; +App::$strings["Enter a new album name"] = "Entrer un nouveau nom d'album"; +App::$strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)"; +App::$strings["Add a Tag"] = "Ajouter une étiquette"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon"; +App::$strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album"; +App::$strings["I like this (toggle)"] = "J'aime (oui/non)"; +App::$strings["I don't like this (toggle)"] = "Je n'aime pas (oui/non)"; +App::$strings["Please wait"] = "Merci de patienter"; +App::$strings["This is you"] = "C'est vous"; +App::$strings["Comment"] = "Commenter"; +App::$strings["__ctx:title__ Likes"] = "Aime"; +App::$strings["__ctx:title__ Dislikes"] = "N'aime pas"; +App::$strings["__ctx:title__ Agree"] = "D'accord"; +App::$strings["__ctx:title__ Disagree"] = "Pas d'accord"; +App::$strings["__ctx:title__ Abstain"] = "Abstention"; +App::$strings["__ctx:title__ Attending"] = "Participations"; +App::$strings["__ctx:title__ Not attending"] = "Non-participations"; +App::$strings["__ctx:title__ Might attend"] = "Participation possible"; +App::$strings["View all"] = "Voir tout"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Aime", + 1 => "Aime", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "N'aime pas", + 1 => "N'aime pas", +); +App::$strings["Photo Tools"] = "Outils pour photos"; +App::$strings["In This Photo:"] = "Dans cette photo :"; +App::$strings["Map"] = "Carte"; +App::$strings["__ctx:noun__ Likes"] = "Aime"; +App::$strings["__ctx:noun__ Dislikes"] = "N'aime pas"; +App::$strings["Close"] = "Fermer"; +App::$strings["Recent Photos"] = "Photos récentes"; +App::$strings["Profile Unavailable."] = "Profil non disponible."; +App::$strings["Not found"] = "Non trouvé"; +App::$strings["Invalid channel"] = "Canal invalide."; +App::$strings["Error retrieving wiki"] = "Erreur lors de la récupération du wiki"; +App::$strings["Error creating zip file export folder"] = "Erreur lors de la création du dossier d'exportation du fichier zip"; +App::$strings["Error downloading wiki: "] = "Erreur lors du téléchargement du wiki:"; +App::$strings["Wikis"] = "Wikis"; +App::$strings["Download"] = "Téléchargement"; +App::$strings["Create New"] = "Nouveau"; +App::$strings["Wiki name"] = "Nom du wiki"; +App::$strings["Content type"] = "Type de contenu"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBcode"; +App::$strings["Text"] = "Texte"; +App::$strings["Type"] = "Type"; +App::$strings["Any type"] = "N'importe quel type"; +App::$strings["Lock content type"] = "Verrouiller le type de contenu"; +App::$strings["Create a status post for this wiki"] = "Créer un statut de publication pour ce wiki"; +App::$strings["Edit Wiki Name"] = "Modifier le nom du wiki"; +App::$strings["Wiki not found"] = "Wiki introuvable"; +App::$strings["Rename page"] = "Renommer la page"; +App::$strings["Error retrieving page content"] = "Erreur lors de la récupération du contenu de la page"; +App::$strings["New page"] = "Nouvelle page"; +App::$strings["Revision Comparison"] = "Comparaison des révisions"; +App::$strings["Revert"] = "Revenir"; +App::$strings["Short description of your changes (optional)"] = "Description courte de vos modifications (optionnel)"; +App::$strings["Source"] = "Source"; +App::$strings["New page name"] = "Nouveau nom de la page"; +App::$strings["Embed image from photo albums"] = "Intégrer une image d'un album photo"; +App::$strings["Embed an image from your albums"] = "Intégrer une image de votre album photo"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Choisissez des images à intégrer"; +App::$strings["Choose an album"] = "Choisir un album"; +App::$strings["Choose a different album"] = "Choisissez un autre album"; +App::$strings["Error getting album list"] = "Erreur venant de la liste de l'album"; +App::$strings["Error getting photo link"] = "Erreur provenant du lien de la photo"; +App::$strings["Error getting album"] = "Erreur venant de l'album"; +App::$strings["Error creating wiki. Invalid name."] = "Erreur lors de la création du wiki. Nom invalide."; +App::$strings["A wiki with this name already exists."] = "Ce nom de wiki est déjà pris"; +App::$strings["Wiki created, but error creating Home page."] = "Le wiki a été créé, mais une erreur est survenue lors de la création de sa page d'accueil."; +App::$strings["Error creating wiki"] = "Erreur lors de la création du wiki."; +App::$strings["Error updating wiki. Invalid name."] = "Erreur de mise à jour du wiki. Nom invalide."; +App::$strings["Error updating wiki"] = "Erreur de mise à jour du wiki"; +App::$strings["Wiki delete permission denied."] = "Droit de supprimer le wiki refusé."; +App::$strings["Error deleting wiki"] = "Erreur durant la suppression du wiki"; +App::$strings["New page created"] = "Nouvelle page créée"; +App::$strings["Cannot delete Home"] = "Impossible de supprimer la racine"; +App::$strings["Current Revision"] = "Version actuelle"; +App::$strings["Selected Revision"] = "Version sélectionnée"; +App::$strings["You must be authenticated."] = "Vous devez être connecté."; +App::$strings["toggle full screen mode"] = "Basculer en mode plein écran."; +App::$strings["Layout updated."] = "Mise en page mise à jour."; +App::$strings["Feature disabled."] = "Fonctionnalité désactivée"; +App::$strings["Edit System Page Description"] = "Modifier la description de la page du système"; +App::$strings["(modified)"] = "modifié)"; +App::$strings["Reset"] = "Réinitialiser"; +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["Edit another layout"] = "Modifier une autre mise en page"; +App::$strings["System layout"] = "mise en page du système"; +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["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué."; +App::$strings["Profile Photos"] = "Photos du profil"; +App::$strings["Image resize failed."] = "Le redimensionnement de l'image a échoué."; +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["Unable to process image"] = "Impossible de traiter l'image"; +App::$strings["Image upload failed."] = "Le téléversement de l'image a échoué."; +App::$strings["Unable to process image."] = "Impossible de traîter l'image."; +App::$strings["Photo not available."] = "Photo inaccessible."; +App::$strings["Upload File:"] = "Téléverser fichier :"; +App::$strings["Select a profile:"] = "Choisir un profil :"; +App::$strings["Use Photo for Profile"] = "Utiliser la photo pour le profil"; +App::$strings["Change Profile Photo"] = "Changer la photo du profil"; +App::$strings["Use"] = "Utiliser"; +App::$strings["Use a photo from your albums"] = "Utiliser une photo de vos albums"; +App::$strings["Select existing photo"] = "Sélectionner une photo existante"; +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["Away"] = "Absent"; +App::$strings["Online"] = "En ligne"; +App::$strings["Unable to locate original post."] = "Impossible de localiser la publication initiale."; +App::$strings["Empty post discarded."] = "Publication vide annulée."; +App::$strings["Duplicate post suppressed."] = "Publication en doublon supprimée."; +App::$strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée."; +App::$strings["Your comment is awaiting approval."] = "Votre commentaire est en attente de validation."; +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["sent you a private message"] = "vous a envoyé un message privé"; +App::$strings["added your channel"] = "a ajouté votre canal"; +App::$strings["requires approval"] = "nécessite une approbation"; +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["shared a file with you"] = "a partagé un fichier avec vous"; +App::$strings["Invalid item."] = "Élément invalide."; +App::$strings["Page not found."] = "Page 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["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."; +App::$strings["Failed to update connection record."] = "Impossible de mettre à jour les détails du contact."; +App::$strings["is now connected to"] = "est maintenant connecté avec"; +App::$strings["Could not access address book record."] = "Impossible d'accéder aux détails du carnet d'adresses."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Actualisation impossible - le canal est indisponible."; +App::$strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses."; +App::$strings["Connection has been removed."] = "Le contact a été supprimé."; +App::$strings["View Profile"] = "Voir mon profil"; +App::$strings["View %s's profile"] = "Voir le profil de %s"; +App::$strings["Refresh Permissions"] = "Actualiser les droits d'accès"; +App::$strings["Fetch updated permissions"] = "Récupérer les autorisations les plus récentes"; +App::$strings["Refresh Photo"] = "Actualiser la photo"; +App::$strings["Fetch updated photo"] = "Récupérer la photo mise à jour"; +App::$strings["Recent Activity"] = "Activité récente"; +App::$strings["View recent posts and comments"] = "Voir les publications et commentaires récents"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquer ou débloquer toute communication avec ce contact"; +App::$strings["This connection is blocked!"] = "Ce contact est bloqué !"; +App::$strings["Unignore"] = "Ne plus ignorer"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer ou ne plus ignorer toute communication venant de ce contact"; +App::$strings["This connection is ignored!"] = "Ce contact est ignoré !"; +App::$strings["Unarchive"] = "Désarchiver"; +App::$strings["Archive"] = "Archiver"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu"; +App::$strings["This connection is archived!"] = "Ce contact est archivé !"; +App::$strings["Unhide"] = "Ne plus cacher"; +App::$strings["Hide"] = "Cacher"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts"; +App::$strings["This connection is hidden!"] = "Ce contact est caché !"; +App::$strings["Delete this connection"] = "Supprimer ce contact"; +App::$strings["Fetch Vcard"] = "Récupérer la Vcard"; +App::$strings["Fetch electronic calling card for this connection"] = "Récupérer la carte de visite électronique de ce contact"; +App::$strings["Open Individual Permissions section by default"] = "Ouvrir par défaut la section des droits d'accès individuels"; +App::$strings["Affinity"] = "Affinité"; +App::$strings["Open Set Affinity section by default"] = "Ouvrir par défaut la section Définir le degré d'affinité"; +App::$strings["Me"] = "Moi"; +App::$strings["Family"] = "Famille"; +App::$strings["Acquaintances"] = "Connaissances"; +App::$strings["Filter"] = "Filtrer"; +App::$strings["Open Custom Filter section by default"] = "Ouvrir par défaut la section Filtre personnalisé"; +App::$strings["Approve this connection"] = "Valider ce contact"; +App::$strings["Accept connection to allow communication"] = "Accepter le contact pour permettre la communication"; +App::$strings["Set Affinity"] = "Définir le degré d'affinité"; +App::$strings["Set Profile"] = "Définir le profil"; +App::$strings["Set Affinity & Profile"] = "Définir le degré d'affinité et le profil"; +App::$strings["This connection is unreachable from this location."] = "Ce contact est injoignable à partir de ce serveur."; +App::$strings["This connection may be unreachable from other channel locations."] = "Ce contact peut être injoignable à partir d'autres serveurs hébergeant ce canal."; +App::$strings["Location independence is not supported by their network."] = "Leur plate-forme ne gère pas la localisation multiple des canaux/contacts."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Ce contact est injoignable à partir de cette adresse. Sa plate-forme ne gère pas la localisation multiple des canaux/contacts."; +App::$strings["Connection Default Permissions"] = "Droits d'accès par défaut des contacts"; +App::$strings["Connection: %s"] = "Contact : %s"; +App::$strings["Apply these permissions automatically"] = "Appliquer ces droits d'accès automatiquement"; +App::$strings["Connection requests will be approved without your interaction"] = "Les demandes de contact seront validées automatiquement"; +App::$strings["Permission role"] = "Rôle d'accès"; +App::$strings["Loading"] = "Chargement"; +App::$strings["Add permission role"] = "Ajouter un rôle d'accès"; +App::$strings["This connection's primary address is"] = "L'adresse principale de ce contact est"; +App::$strings["Available locations:"] = "Emplacements disponibles :"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Les droits d'accès indiqués sur cette page seront appliqués à tous vos nouveaux contacts."; +App::$strings["Connection Tools"] = "Actions du contact"; +App::$strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster votre proximité avec le contact"; +App::$strings["Rating"] = "Evaluation"; +App::$strings["Slide to adjust your rating"] = "Faîtes glisser pour ajuster votre note"; +App::$strings["Optionally explain your rating"] = "Explication facultative de votre évaluation"; +App::$strings["Custom Filter"] = "Filtre personnalisé"; +App::$strings["Only import posts with this text"] = "N'importer que les publications comprenant ce texte"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications"; +App::$strings["Do not import posts with this text"] = "Ne pas importer les publications comprenant ce texte"; +App::$strings["This information is public!"] = "Cette information est publique !"; +App::$strings["Connection Pending Approval"] = "Contact en attente d'approbation"; +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["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."] = "Certains droits d'accès peuvent être hérités de vos paramètres de confidentialité de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces droits d'accès 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["Details"] = "Détails"; +App::$strings["Room not found"] = "Salon introuvable"; +App::$strings["Leave Room"] = "Quitter le salon"; +App::$strings["Delete Room"] = "Supprimer le salon"; +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["New Chatroom"] = "Nouveau salon de discussion"; +App::$strings["Chatroom name"] = "Nom du salon de conversation"; +App::$strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)"; +App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; +App::$strings["No chatrooms available"] = "Aucun salon de conversation disponible"; +App::$strings["Expiration"] = "Expiration"; +App::$strings["min"] = "min"; +App::$strings["Photos"] = "Photos"; +App::$strings["Files"] = "Fichiers"; +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["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["Layouts"] = "Mises-en-page"; +App::$strings["Help"] = "Aide"; +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["Please refresh page"] = "Veuillez rafraîchir la page"; +App::$strings["Unknown error"] = "Erreur inconnue"; +App::$strings["Token verification failed."] = "La vérification du jeton a échoué."; +App::$strings["Email Verification Required"] = "Vérification de courriel requise"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Un jeton de vérification a été envoyé à votre courriel [%s]. Entrez ce jeton ici pour compléter l'étape de vérification des comptes. Veuillez allouer quelques minutes pour la réception et vérifier votre dossier spam si vous ne voyez pas le message."; +App::$strings["Resend Email"] = "Renvoyer le courriel"; +App::$strings["Validation token"] = "Jeton de validation"; +App::$strings["Post not found."] = "Publication introuvable."; +App::$strings["post"] = "publication"; +App::$strings["comment"] = "commentaire"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s avec %4\$s"; +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["If enabled, connection requests will be approved without your interaction"] = "Si cette option est activée, les demandes de connexion seront approuvées sans votre intervention."; +App::$strings["Automatic approval settings"] = "Paramètres d'approbation automatique"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Certaines permissions individuelles peuvent avoir été prédéfinies ou verrouillées en fonction de votre type de canal et de vos paramètres de confidentialité."; +App::$strings["Unknown App"] = "App inconnue"; +App::$strings["Authorize"] = "Autoriser"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorisez vous l'app %s à accéder aux données de votre canal ?"; +App::$strings["Allow"] = "Permettre"; +App::$strings["Privacy group created."] = "Groupe de contacts créé."; +App::$strings["Could not create privacy group."] = "Impossible de créer le groupe de contacts."; +App::$strings["Privacy group not found."] = "Groupe de contacts introuvable."; +App::$strings["Privacy group updated."] = "Groupe de contacts mis à jour."; +App::$strings["Create a group of channels."] = "Créer un groupe de contacts."; +App::$strings["Privacy group name: "] = "Nom du groupe de contacts :"; +App::$strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux"; +App::$strings["Privacy group removed."] = "Groupe de contacts supprimé."; +App::$strings["Unable to remove privacy group."] = "Impossible de supprimer le groupe de canaux."; +App::$strings["Privacy group editor"] = "Editeur de groupe de contacts."; +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["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["Gender"] = "Sexe"; +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"] = "Cacher la liste de vos contacts pour les visiteurs de votre 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"] = "Outils pour votre profil"; +App::$strings["Change cover photo"] = "Modifier votre bannière"; +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["Relationship"] = "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"] = "Votre genre"; +App::$strings["Marital status"] = "Etat civil"; +App::$strings["Sexual preference"] = "préférence sexuelle"; +App::$strings["Profile name"] = "Nom du profil"; +App::$strings["This is your default profile."] = "Ceci est votre profil par défaut."; +App::$strings["Your full name"] = "Votre nom complet"; +App::$strings["Title/Description"] = "Titre/description"; +App::$strings["Street address"] = "Rue"; +App::$strings["Locality/City"] = "Ville"; +App::$strings["Region/State"] = "Région"; +App::$strings["Postal/Zip code"] = "Code postal"; +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)"] = "Depuis (date)"; +App::$strings["Tell us about yourself"] = "Parlez nous de vous..."; +App::$strings["Homepage URL"] = "URL de mon site Internet :"; +App::$strings["Hometown"] = "Ville de naissance"; +App::$strings["Political views"] = "Opinions politiques"; +App::$strings["Religious views"] = "Convictions religieuses"; +App::$strings["Keywords used in directory listings"] = "Mots clés pour l'annuaire"; +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"] = "Cinéma/Danse/Culture/Divertissement"; +App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; +App::$strings["Love/Romance"] = "Amour/Relation amoureuse"; +App::$strings["School/Education"] = "Niveau d'étude"; +App::$strings["Contact information and social networks"] = "Coordonnées et autres réseaux sociaux"; +App::$strings["My other channels"] = "Mes autres canaux"; +App::$strings["Communications"] = "Communications"; +App::$strings["Profile Image"] = "Image du profil"; +App::$strings["Edit Profiles"] = "Modifier mes profils"; +App::$strings["This page is available only to site members"] = "Cette page n'est disponible que pour les membres du site."; +App::$strings["Welcome"] = "Bienvenue"; +App::$strings["What would you like to do?"] = "Qu'est-ce que vous aimeriez faire ?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Veuillez ajouter cette page à vos favoris si vous souhaitez y revenir à l'avenir."; +App::$strings["Upload a profile photo"] = "Téléverser une photo de profil"; +App::$strings["Upload a cover photo"] = "Téléverser une photo de couverture"; +App::$strings["Edit your default profile"] = "Modifier votre profil par défaut"; +App::$strings["View friend suggestions"] = "Voir les suggestions d'amis"; +App::$strings["View the channel directory"] = "Voir l'annuaire des canaux"; +App::$strings["View/edit your channel settings"] = "Afficher/modifier les paramètres de votre canal"; +App::$strings["View the site or project documentation"] = "Consulter la documentation du site ou du projet"; +App::$strings["Visit your channel homepage"] = "Visitez la page d'accueil de votre canal"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Affichez vos connexions et/ou ajoutez quelqu'un dont vous connaissez déjà l'adresse."; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Visualiser votre flux personnel (ce qui peut être vide jusqu'à ce que vous ajoutiez des connexions)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Voir le flux public. Attention : ce contenu n'est pas modéré."; +App::$strings["Page link"] = "Lien"; +App::$strings["Edit Webpage"] = "Modifier la page web"; +App::$strings["Create a new channel"] = "Créer un nouveau canal"; +App::$strings["Channel Manager"] = "Gérer mes 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 relations"; +App::$strings["Delegated Channel"] = "Canaux délégués"; +App::$strings["Cards"] = "Cartes"; +App::$strings["Add Card"] = "Ajouter carte"; +App::$strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès"; +App::$strings["About this site"] = "À propos de ce site"; +App::$strings["Site Name"] = "Nom du site"; +App::$strings["Administrator"] = "Administrateur"; +App::$strings["Terms of Service"] = "Conditions de service"; +App::$strings["Software and Project information"] = "Informations sur le logiciel et le projet"; +App::$strings["This site is powered by \$Projectname"] = "Ce site est propulsé par "; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Réseau fédéré et décentralisé, et services d'identification fournies par Zot"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Project homepage"] = "Page d'accueil du projet"; +App::$strings["Developer homepage"] = "Page d'accueil des développeurs"; +App::$strings["No ratings"] = "Pas de note"; +App::$strings["Ratings"] = "Evaluations"; +App::$strings["Rating: "] = "Evaluation :"; +App::$strings["Website: "] = "Site web :"; +App::$strings["Description: "] = "Description :"; +App::$strings["Import Webpage Elements"] = "Importer éléments de page web"; +App::$strings["Import selected"] = "Importation sélectionnée"; +App::$strings["Export Webpage Elements"] = "Exporter éléments de pages web"; +App::$strings["Export selected"] = "Export sélectionné"; +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["Invalid file type."] = "Type de fichier invalide"; +App::$strings["Error opening zip file"] = "Erreur lors de l'ouverture du fichier zip"; +App::$strings["Invalid folder path."] = "Chemin du dossier invalide"; +App::$strings["No webpage elements detected."] = "Aucun élément de page Web détecté."; +App::$strings["Import complete."] = "Importation terminée"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Les changements de nom de canal ne sont pas autorisés dans les 48 heures suivant la modification du mot de passe du compte."; +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["Change channel nickname/address"] = "Changer le pseudo/adresse du canal"; +App::$strings["Any/all connections on other networks will be lost!"] = "Toutes les connexions sur d'autres réseaux seront perdues !"; +App::$strings["New channel address"] = "Nouvelle adresse de canal"; +App::$strings["Rename Channel"] = "Renommer canal"; +App::$strings["Item is not editable"] = "Elément non modifiable"; +App::$strings["Edit post"] = "Modifier la publication"; +App::$strings["Invalid message"] = "Message non valide"; +App::$strings["no results"] = "aucun résultat"; +App::$strings["channel sync processed"] = "Synchro de canal effectuée"; +App::$strings["queued"] = "mis dans la file d'attente"; +App::$strings["posted"] = "publié"; +App::$strings["accepted for delivery"] = "accepté pour la distribution"; +App::$strings["updated"] = "mis à jour"; +App::$strings["update ignored"] = "mise à jour ignorée"; +App::$strings["permission denied"] = "accès refusé"; +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"] = "Options"; +App::$strings["Redeliver"] = "Transférer à nouveau"; +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."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Sources du canal"; +App::$strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes de contenu pour votre canal."; +App::$strings["New Source"] = "Nouvelle source"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal."; +App::$strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'il contient ces mots (un par ligne)"; +App::$strings["Leave blank to import all public content"] = "Laissez vide pour importer tout le contenu public"; +App::$strings["Channel Name"] = "Nom du canal"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Ajouter les catégories suivantes aux publications importées à partir de cette source (séparer par des virgules)"; +App::$strings["Source not found."] = "Source introuvable."; +App::$strings["Edit Source"] = "Modifier la source"; +App::$strings["Delete Source"] = "Supprimer la source"; +App::$strings["Source removed"] = "Source supprimée"; +App::$strings["Unable to remove source."] = "Impossible de supprimer la source."; +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["%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["No default suggestions were found."] = "Aucune suggestion par défaut n'a été trouvée."; +App::$strings["%d rating"] = array( + 0 => "%d évaluation", + 1 => "%d évaluations", +); +App::$strings["Gender: "] = "Sexe/genre :"; +App::$strings["Status: "] = "État :"; +App::$strings["Homepage: "] = "Site web :"; +App::$strings["Age:"] = "Age :"; +App::$strings["Location:"] = "Emplacement :"; +App::$strings["Description:"] = "Description :"; +App::$strings["Hometown:"] = "Ville natale :"; +App::$strings["About:"] = "À propos :"; +App::$strings["Connect"] = "Lier"; +App::$strings["Public Forum:"] = "Forum public :"; +App::$strings["Keywords: "] = "Mots-clefs :"; +App::$strings["Don't suggest"] = "Ne pas suggérer"; +App::$strings["Common connections (estimated):"] = "Connexions communes (estimation) :"; +App::$strings["Global Directory"] = "Annuaire global"; +App::$strings["Local Directory"] = "Annuaire local"; +App::$strings["Finding:"] = "Recherche :"; +App::$strings["Channel Suggestions"] = "Canaux suggérés"; +App::$strings["next page"] = "page suivante"; +App::$strings["previous page"] = "page précédente"; +App::$strings["Sort options"] = "Options de tri"; +App::$strings["Alphabetic"] = "Alphabétique"; +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["Xchan Lookup"] = "Recherche xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\") :"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures."; +App::$strings["Ignore/Hide"] = "Ignorer/Cacher"; +App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; +App::$strings["Post successful."] = "Publication réussie."; +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"] = "message"; +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["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"] = "Statistiques"; +App::$strings["Software"] = "Logiciel"; +App::$strings["Rate"] = "Evaluer"; +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["Select a bookmark folder"] = "Choisir un dossier de favoris"; +App::$strings["Save Bookmark"] = "Enregistrer le favori"; +App::$strings["URL of bookmark"] = "URL du favori"; +App::$strings["Or enter new bookmark folder name"] = "Ou entrez un nouveau nom de dossier de favoris"; +App::$strings["Enter a folder name"] = "Saisissez un nom de dossier"; +App::$strings["or select an existing folder (doubleclick)"] = "ou sélectionnez un dossier existant (double-clic)"; +App::$strings["Save to Folder"] = "Enregistrer dans le dossier"; +App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué."; +App::$strings["Passwords do not match."] = "Les mots de passe ne concordent pas."; +App::$strings["Registration successful. Continue to create your first channel..."] = "Enregistrement réussi. Continuez à créer votre premier canal ..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."; +App::$strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente d'approbation par l'administrateur."; +App::$strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée."; +App::$strings["Registration on this hub is disabled."] = "La création de nouveaux comptes est désactivée pour ce site."; +App::$strings["Registration on this hub is by approval only."] = "La création de compte sur ce site est soumise à approbation."; +App::$strings["Register at another affiliated hub."] = "S'enregistrer sur un autre site du réseau."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain."; +App::$strings["I accept the %s for this website"] = "J'accepte les %s de ce site"; +App::$strings["I am over %s years of age and accept the %s for this website"] = "J'ai plus de %s ans et j'accepte les %s de ce site."; +App::$strings["Your email address"] = "Votre adresse de courriel"; +App::$strings["Choose a password"] = "Choisissez un mot de passe"; +App::$strings["Please re-enter your password"] = "Merci de saisir à nouveau votre mot de passe"; +App::$strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation"; +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 requires email verification. After completing this form, please check your email for further instructions."] = "Ce site nécessite une vérification par courriel. Après avoir rempli ce formulaire, veuillez consulter votre courriel pour obtenir des instructions supplémentaires."; +App::$strings["Cover Photos"] = "Photos de couverture"; +App::$strings["female"] = "femme"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s a mis à jour son %2\$s"; +App::$strings["male"] = "homme"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s a mis à jour son %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s a mis a jour sa %2\$s"; +App::$strings["cover photo"] = "Photo principale"; +App::$strings["Change Cover Photo"] = "Changer la photo de couverture"; +App::$strings["Documentation Search"] = "Chercher dans la documentation"; +App::$strings["About"] = "À propos"; +App::$strings["Administrators"] = "Administrateurs"; +App::$strings["Developers"] = "Développeurs"; +App::$strings["Tutorials"] = "Tutoriels"; +App::$strings["\$Projectname Documentation"] = "Documentation \$Projectname"; +App::$strings["Contents"] = "Contenus"; +App::$strings["Article"] = "Article"; +App::$strings["Item has been removed."] = "L'élément a été supprimé."; +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["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 de contacts vide"; +App::$strings["Privacy group: "] = "Groupe de contacts :"; +App::$strings["Invalid connection."] = "Contact non valide."; +App::$strings["Invalid channel."] = "Canal invalide."; +App::$strings["network"] = "réseau"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenue sur %s"; +App::$strings["Permission Denied."] = "Accès refusé."; +App::$strings["File not found."] = "Fichier introuvable."; +App::$strings["Edit file permissions"] = "Modifier les droits d'accès au fichier"; +App::$strings["Set/edit permissions"] = "Définir/modifier les droits d'accès"; +App::$strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires"; +App::$strings["Return to file list"] = "Retourner à la liste des fichiers"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web"; +App::$strings["Share this file"] = "Partager ce fichier"; +App::$strings["Show URL to this file"] = "Montrer l'URL de ce fichier"; +App::$strings["Show in your contacts shared folder"] = "Faire apparaître dans le dossier partagé de vos contacts"; +App::$strings["No channel."] = "Pas de canal."; +App::$strings["No connections in common."] = "Pas de contact en commun."; +App::$strings["View Common Connections"] = "Voir les connexions communes"; +App::$strings["Email verification resent"] = "Vérification de courriel renvoyé"; +App::$strings["Unable to resend email verification message."] = "Impossible de renvoyer le courriel de vérification."; +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["Blocked accounts"] = "Comptes bloqués"; +App::$strings["Expired accounts"] = "Comptes expirés"; +App::$strings["Expiring accounts"] = "Comptes arrivant à expiration"; +App::$strings["Clones"] = "Clones"; +App::$strings["Message queues"] = "File des messages"; +App::$strings["Your software should be updated"] = "Votre logiciel doit d'être mis à jour"; +App::$strings["Summary"] = "Résumé"; +App::$strings["Registered accounts"] = "Comptes enregistrés"; +App::$strings["Pending registrations"] = "Inscriptions en attente"; +App::$strings["Registered channels"] = "Canaux enregistrés"; +App::$strings["Active plugins"] = "Greffons actifs"; +App::$strings["Version"] = "Version"; +App::$strings["Repository version (master)"] = "Version du dépôt (maître)"; +App::$strings["Repository version (dev)"] = "Version du dépôt (développeur)"; +App::$strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée."; +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["Edit Card"] = "Modifier la carte"; +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["Mark all seen"] = "Tout marquer comme vu"; +App::$strings["0. Beginner/Basic"] = "0. Débutant/Simple"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Novice - pas expérimenté, mais prêt à apprendre"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Intermédiaire - assez à l'aise"; +App::$strings["3. Advanced - very comfortable"] = "3. Avancé - très à l'aise"; +App::$strings["4. Expert - I can write computer code"] = "4. Expert - Je sais programmer"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Crack - J'en sais probablement plus que vous"; +App::$strings["Site Admin"] = "Administrateur"; +App::$strings["Report Bug"] = "Reporter des bogues"; +App::$strings["View Bookmarks"] = "Voir les marques-pages"; +App::$strings["My Chatrooms"] = "Mes salons de discussions"; +App::$strings["Firefox Share"] = "Partager via Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnostiques à distance"; +App::$strings["Suggest Channels"] = "Suggérer des canaux"; +App::$strings["Login"] = "Connexion"; +App::$strings["Activity"] = "Activité"; +App::$strings["Wiki"] = "Wiki"; App::$strings["Channel Home"] = "Mon canal"; -App::$strings["Channel home"] = "Mon canal"; -App::$strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues"; -App::$strings["Connections"] = "Relations"; -App::$strings["Notices"] = "Notifications"; -App::$strings["Notifications"] = "Notifications"; -App::$strings["See all notifications"] = "Voir toutes les notifications"; -App::$strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues"; -App::$strings["Mail"] = "Messages"; -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["Events"] = "Événements"; -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["Channel Manager"] = "Gérer les canaux"; -App::$strings["Manage Your Channels"] = "Gérer vos canaux"; -App::$strings["Settings"] = "Réglages"; -App::$strings["Account/Channel Settings"] = "Réglages du Compte/Canal"; -App::$strings["Admin"] = "Administrateur"; -App::$strings["Site Setup and Configuration"] = "Configuration du site"; -App::$strings["Loading..."] = "Chargement..."; -App::$strings["@name, #tag, content"] = "@nom, #tag, contenu"; -App::$strings["Please wait..."] = "Merci de patienter..."; -App::$strings["view full size"] = "pleine taille"; -App::$strings["\$Projectname Notification"] = "Notification de \$Projectname"; +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["Language"] = "Langue"; +App::$strings["Post"] = "Envoyer"; +App::$strings["Profile Photo"] = "Photo du Profil"; +App::$strings["Purchase"] = "Acheter"; +App::$strings["Undelete"] = "Restaurer"; +App::$strings["Add to app-tray"] = "Ajouter au menu des applications"; +App::$strings["Remove from app-tray"] = "Enlever du menu des applications"; +App::$strings["Pin to navbar"] = "Épingler à la barre de navigation"; +App::$strings["Unpin from navbar"] = "Détacher de la barre de navigation"; +App::$strings["__ctx:permcat__ default"] = "défaut"; +App::$strings["__ctx:permcat__ follower"] = "abonné"; +App::$strings["__ctx:permcat__ contributor"] = "contributeur"; +App::$strings["__ctx:permcat__ publisher"] = "rédacteur"; +App::$strings["(No Title)"] = "(Pas de titre)"; +App::$strings["Wiki page create failed."] = "Échec de création de la page wiki."; +App::$strings["Wiki not found."] = "Wiki introuvable."; +App::$strings["Destination name already exists"] = "Ce nom de destination est déjà pris"; +App::$strings["Page not found"] = "Page introuvable"; +App::$strings["Error reading page content"] = "Erreur de lecture du contenu de la page"; +App::$strings["Error reading wiki"] = "Erreur de lecture du wiki"; +App::$strings["Page update failed."] = "Echec de modification de la page."; +App::$strings["Nothing deleted"] = "Rien n'a été supprimé"; +App::$strings["Compare: object not found."] = "Comparaison : objet introuvable."; +App::$strings["Page updated"] = "Page modifiée"; +App::$strings["Untitled"] = "Sans titre"; +App::$strings["Wiki resource_id required for git commit"] = "\"resource_id\" du wiki nécessaire pour l'enregistrement dans git."; +App::$strings["__ctx:wiki_history__ Message"] = "Message"; +App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs"; +App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement"; +App::$strings["Only me"] = "Seulement moi"; +App::$strings["Public"] = "Public"; +App::$strings["Anybody in the \$Projectname network"] = "N'importe qui dans le réseau de \$Projectname"; +App::$strings["Any account on %s"] = "N'importe quel compte sur %s"; +App::$strings["Any of my connections"] = "N'importe lequel de mes contacts"; +App::$strings["Only connections I specifically allow"] = "Uniquement les contacts que j'ai expressément autorisés"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "N'importe qui d'authentifié (cela peut inclure des visiteurs d'autres réseaux)"; +App::$strings["Any connections including those who haven't yet been approved"] = "N'importe quel contact, y compris ceux qui n'ont pas encore été validés"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Ceci est votre réglage par défaut de l'audience de vos publications sur votre canal normal."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Ceci est votre réglage par défaut à propos de qui peut voir votre canal de profil par défaut."; +App::$strings["This is your default setting for who can view your connections"] = "Ceci est votre réglage par défaut à propos de qui peut voir vos contacts."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Ceci est votre réglage par défaut à propos de qui peut voir vos fichiers ou photos stocké(e)s"; +App::$strings["This is your default setting for the audience of your webpages"] = "Ceci est votre réglage par défaut de l'audience de vos pages web."; +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."; +App::$strings["Room not found."] = "Salon introuvable."; +App::$strings["Room is full"] = "Le salon est plein"; +App::$strings["\$Projectname Notification"] = "Notification \$Projectname"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Merci,"; App::$strings["%s Administrator"] = "l'administrateur de %s"; -App::$strings["Administrator"] = "Administrateur"; -App::$strings["No Subject"] = "Pas de sujet"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Cet courriel a été envoyé par %1\$s à %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Pour ne plus recevoir ces messages, veuillez ajuster vos paramètres de notification à %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Pour ne plus recevoir ces messages, veuillez ajuster votre %s."; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Nouveau mail reçu sur %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé à %2\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; +App::$strings["a private message"] = "un message privé"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés."; +App::$strings["commented on"] = "commenté"; +App::$strings["liked"] = "aimé"; +App::$strings["disliked"] = "pas aimé"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s de %5\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]votre %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notification] Commentaire modéré pour la conversation n°%1\$d par %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Commentaire effectué sur la conversation #%1\$d par %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sa commenté un élément ou une conversation que vous suivez."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation."; +App::$strings["Please visit %s to approve or reject this comment."] = "Merci de visiter %spour valider ou rejeter ce commentaire."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s aime [zrl=%2\$s]votre %3\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Aime reçu à la convesation #%1\$d par %2\$s"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sa commenté un élément ou une conversation que vous avez créée "; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s a publié sur le mur de votre profil"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a posté sur le mur de votre profil à %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s envoyé à [zrl=%2\$s]votre mur[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %s vous a étiquetté"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté à %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]vous a étiqueté[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s vous a poké"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$s vous a tapoté à %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]vous a tapoté[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s a étiquetté votre publication"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre message à %2\$s"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s a étiqueté [zrl=%2\$s]votre message[/zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Demande de relation reçue"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Vous avez reçu une nouvelle demande de connexion de la part de '%1\$s' à %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Vous avez reçu [zrl=%1\$s]une nouvelle demande de connexion[/zrl] de la part de %2\$s."; +App::$strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Merci de visiter %s pour valider (ou non) cette demande de contact."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Suggestion d'amitié reçue"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion d'ami de la part de '%1\$s' à %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Vous avez reçu [zrl=%1\$s]une suggestion d'ami[/zrl] pour %2\$s de %3\$s."; +App::$strings["Name:"] = "Nom :"; +App::$strings["Photo:"] = "Photo :"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour valider ou rejeter cette suggestion."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname: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["edited a post dated %s"] = "a édité un post daté du %s"; +App::$strings["edited a comment dated %s"] = "a édité un commentaire daté du %s"; +App::$strings["Wiki updated successfully"] = "Wiki mis à jour avec succès"; +App::$strings["Wiki files deleted successfully"] = "Fichiers du wiki supprimés avec succès"; +App::$strings["Update Error at %s"] = "Erreur de mise à jour sur %s"; +App::$strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur."; +App::$strings["Private Message"] = "Message Privé"; +App::$strings["Select"] = "Sélectionner"; +App::$strings["I will attend"] = "Je participerai"; +App::$strings["I will not attend"] = "Je ne participerai pas"; +App::$strings["I might attend"] = "Je participerai peut-être"; +App::$strings["I agree"] = "Je suis d'accord"; +App::$strings["I disagree"] = "Je ne suis pas d'accord"; +App::$strings["I abstain"] = "Je m'abstiens"; +App::$strings["Add Star"] = "Mettre de côté (étoile)"; +App::$strings["Remove Star"] = "Ne plus mettre de côté"; +App::$strings["Toggle Star Status"] = "(Dés)activer l'étoile"; +App::$strings["starred"] = "mis de côté"; +App::$strings["Message signature validated"] = "Signature du message validée"; +App::$strings["Message signature incorrect"] = "Signature du message incorrecte"; +App::$strings["Add Tag"] = "Ajouter une étiquette"; +App::$strings["like"] = "aiment"; +App::$strings["dislike"] = "n'aiment pas"; +App::$strings["Share This"] = "Partager"; +App::$strings["share"] = "partager"; +App::$strings["Delivery Report"] = "Rapport de distribution"; +App::$strings["%d comment"] = array( + 0 => "%d commentaire", + 1 => "%d commentaires", +); +App::$strings["View %s's profile - %s"] = "Voir le profil de %s - %s"; +App::$strings["to"] = "à"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Mur-à-mur"; +App::$strings["via Wall-To-Wall:"] = "par Mur-à-mur :"; +App::$strings["from %s"] = "de %s"; +App::$strings["last edited: %s"] = "dernière modification : %s"; +App::$strings["Expires: %s"] = "Expire : %s"; +App::$strings["Attend"] = "En attente"; +App::$strings["Attendance Options"] = "Options d'attente"; +App::$strings["Vote"] = "Vote"; +App::$strings["Voting Options"] = "Options de vote"; +App::$strings["Save Bookmarks"] = "Enregistrer les favoris"; +App::$strings["Add to Calendar"] = "Ajouter au Calendrier"; +App::$strings["This is an unsaved preview"] = "Il s'agit d'une prévisualisation non sauvegardée."; +App::$strings["%s show all"] = "%s montre tout"; +App::$strings["Bold"] = "Gras"; +App::$strings["Italic"] = "Italique"; +App::$strings["Underline"] = "Souligné"; +App::$strings["Quote"] = "Citation"; +App::$strings["Code"] = "Code"; +App::$strings["Image"] = "Image"; +App::$strings["Attach File"] = "Joindre fichier"; +App::$strings["Insert Link"] = "Insérer un lien"; +App::$strings["Video"] = "Vidéo"; +App::$strings["Your full name (required)"] = "Votre nom complet (obligatoire)"; +App::$strings["Your email address (required)"] = "Votre adresse de courriel (obligatoire)"; +App::$strings["Your website URL (optional)"] = "L'adresse de votre site web (optionelle)"; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer."; +App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné."; +App::$strings["parent"] = "retour"; +App::$strings["Collection"] = "Groupe de contacts"; +App::$strings["Principal"] = "Principal"; +App::$strings["Addressbook"] = "Carnet d'adresse"; +App::$strings["Calendar"] = "Calendrier"; +App::$strings["Schedule Inbox"] = "Calendrier - Messages entrants"; +App::$strings["Schedule Outbox"] = "Calendrier - Messages sortants"; +App::$strings["Total"] = "Total"; +App::$strings["Shared"] = "Partagé"; +App::$strings["Add Files"] = "Ajouter des fichiers"; +App::$strings["You are using %1\$s of your available file storage."] = "Vous utilisez %1\$s de votre espace de stockage."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Vous utilisez %1\$s sur %2\$s d'espace disponible. (%3\$s%)"; +App::$strings["WARNING:"] = "AVERTISSEMENT :"; +App::$strings["Create new folder"] = "Nouveau dossier"; +App::$strings["Upload file"] = "Téléverser un fichier"; +App::$strings["Drop files here to immediately upload"] = "Mettez un fichier ici pour le télécharger immédiatement"; +App::$strings["Forums"] = "Forums"; +App::$strings["Select Channel"] = "Sélectionner un canal"; +App::$strings["Read-write"] = "Lire et écrire"; +App::$strings["Read-only"] = "Lire uniquement"; +App::$strings["My Calendars"] = "Mes agendas"; +App::$strings["Shared Calendars"] = "Agendas partagés"; +App::$strings["Share this calendar"] = "Partager cet agenda"; +App::$strings["Calendar name and color"] = "Nom et couleur de l'agenda"; +App::$strings["Create new calendar"] = "Créer un nouvel agenda"; +App::$strings["Calendar Name"] = "Nom de l'agenda"; +App::$strings["Calendar Tools"] = "Outils pour les agendas"; +App::$strings["Import calendar"] = "Importer un agenda"; +App::$strings["Select a calendar to import to"] = "Sélectionner un agenda à importer dans"; +App::$strings["Addressbooks"] = "Carnet d'adresses"; +App::$strings["Addressbook name"] = "Nom du carnet d'adresses"; +App::$strings["Create new addressbook"] = "Créer un nouveau carnet d'adresses"; +App::$strings["Addressbook Name"] = "Nom du carnet d'adresses"; +App::$strings["Addressbook Tools"] = "Outils pour les carnets d'adresses"; +App::$strings["Import addressbook"] = "Importer un carnet d'adresses"; +App::$strings["Select an addressbook to import to"] = "Sélectionner un carnet d'adresses à importer dans"; +App::$strings["Categories"] = "Catégories"; +App::$strings["Everything"] = "Tout"; +App::$strings["Events Tools"] = "Outils Evènements"; +App::$strings["Export Calendar"] = "Exporter le calendrier"; +App::$strings["Import Calendar"] = "Importer un calendrier"; +App::$strings["Suggested Chatrooms"] = "Salons suggérés"; +App::$strings["HQ Control Panel"] = "Panneau de contrôle du QG"; +App::$strings["Create a new post"] = "Créer un nouveau post"; +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["Chatrooms"] = "Salons de clavardage"; +App::$strings["Overview"] = "Aperçu"; +App::$strings["Rating Tools"] = "Outils d'évaluation"; +App::$strings["Rate Me"] = "M'évaluer"; +App::$strings["View Ratings"] = "Voir mes évaluations"; +App::$strings["__ctx:widget__ Activity"] = "Activité"; +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["Wiki List"] = "Liste de wikis"; +App::$strings["Archives"] = "Archives"; +App::$strings["Received Messages"] = "Messages reçus"; +App::$strings["Sent Messages"] = "Messages envoyés"; +App::$strings["Conversations"] = "Conversations"; +App::$strings["No messages."] = "Pas de message."; +App::$strings["Delete conversation"] = "Supprimer la conversation"; +App::$strings["Chat Members"] = "Membres du salon de discussion"; +App::$strings["photo/image"] = "photo/image"; +App::$strings["Remove term"] = "Retirer le terme"; +App::$strings["Saved Searches"] = "Recherches sauvegardées"; +App::$strings["add"] = "ajouter"; +App::$strings["Notes"] = "Notes"; +App::$strings["Add new page"] = "Ajouter une nouvelle page"; +App::$strings["Wiki Pages"] = "Pages wiki"; +App::$strings["Page name"] = "Nom de la page"; +App::$strings["Refresh"] = "Actualiser"; +App::$strings["Tasks"] = "Tâches"; +App::$strings["Suggestions"] = "Suggestions"; +App::$strings["See more..."] = "Voir plus..."; +App::$strings["Saved Folders"] = "Dossiers sauvegardés"; +App::$strings["Click to show more"] = "Cliquer pour voir plus"; +App::$strings["Tags"] = "Étiquettes"; +App::$strings["Profile Creation"] = "Création de profil"; +App::$strings["Upload profile photo"] = "Téléverser la photo du profil"; +App::$strings["Upload cover photo"] = "Téléverser la photo de couverture"; +App::$strings["Edit your profile"] = "Modifier votre profil"; +App::$strings["Find and Connect with others"] = "Trouver et connecter avec des autres personnes"; +App::$strings["View the directory"] = "Voir l'annuaire"; +App::$strings["Manage your connections"] = "Gérez vos connexions"; +App::$strings["Communicate"] = "Communiquer"; +App::$strings["View your channel homepage"] = "Voir la page d'accueil de votre canal"; +App::$strings["View your network stream"] = "Visualisez votre flux réseau"; +App::$strings["Documentation"] = "Documentation"; +App::$strings["View public stream"] = "Voir le flux public"; +App::$strings["New Member Links"] = "Liens pour les nouveaux membres"; +App::$strings["Member registrations waiting for confirmation"] = "Inscriptions en attente d'approbation"; +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["Account settings"] = "Paramètres du compte"; +App::$strings["Channel settings"] = "Paramètres du canal"; +App::$strings["Additional features"] = "Fonctionnalités supplémentaires"; +App::$strings["Addon settings"] = "Paramètres de greffon"; +App::$strings["Display settings"] = "Paramètres d'affichage"; +App::$strings["Manage locations"] = "Gérer les emplacements"; +App::$strings["Export channel"] = "Exporter le canal"; +App::$strings["OAuth1 apps"] = "OAuth1 applications"; +App::$strings["OAuth2 apps"] = "OAuth2 applications"; +App::$strings["Permission Groups"] = "Groupes d'accès"; +App::$strings["Premium Channel Settings"] = "Paramètres de canal VIP"; +App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; +App::$strings["New Network Activity"] = "Nouvelle activité de réseau"; +App::$strings["New Network Activity Notifications"] = "Nouvelles notifications d'activité de réseau"; +App::$strings["View your network activity"] = "Visualiser l'activité de votre réseau"; +App::$strings["Mark all notifications read"] = "Marquer tous les notifications lus"; +App::$strings["Show new posts only"] = "Afficher uniquement les nouveaux posts"; +App::$strings["Filter by name"] = "Filtrer par nom"; +App::$strings["New Home Activity"] = "Nouvelle activité principale"; +App::$strings["New Home Activity Notifications"] = "Notifications de nouvelles activités principales"; +App::$strings["View your home activity"] = "Voir votre activité principale"; +App::$strings["Mark all notifications seen"] = "Marquer les notifications vues"; +App::$strings["New Mails"] = "Nouveaux courriels"; +App::$strings["New Mails Notifications"] = "Notifications de nouveaux courriels"; +App::$strings["View your private mails"] = "Consulter vos courriels privés"; +App::$strings["Mark all messages seen"] = "Marquer tous les messages vus"; +App::$strings["New Events"] = "Nouveaux événements"; +App::$strings["New Events Notifications"] = "Notifications de nouveaux événements"; +App::$strings["View events"] = "Voir les événements"; +App::$strings["Mark all events seen"] = "Marquer tous les événements comme vus"; +App::$strings["New Connections Notifications"] = "Notifications de nouvelles connexions"; +App::$strings["View all connections"] = "Voir toutes les connexions"; +App::$strings["New Files"] = "Nouveaux fichiers"; +App::$strings["New Files Notifications"] = "Notifications de nouveaux fichiers"; +App::$strings["Notices"] = "Notifications"; +App::$strings["View all notices"] = "Voir tous les avis"; +App::$strings["Mark all notices seen"] = "Marquer tous les avis vus"; +App::$strings["New Registrations"] = "Nouvelles inscriptions"; +App::$strings["New Registrations Notifications"] = "Notifications de nouveaux inscriptions"; +App::$strings["Public Stream Notifications"] = "Notifications de flux publics"; +App::$strings["View the public stream"] = "Voir le flux public"; +App::$strings["Sorry, you have got no notifications at the moment"] = "Désolé, vous n'avez pas de notifications pour le moment."; +App::$strings["Source channel not found."] = "Source du canal introuvable."; +App::$strings["Create an account to access services and applications"] = "Créer un compte pour accéder aux services et applications"; +App::$strings["Logout"] = "Déconnexion"; +App::$strings["Login/Email"] = "pseudo / email"; +App::$strings["Password"] = "Mot de passe"; +App::$strings["Remember me"] = "Se souvenir de moi"; +App::$strings["Forgot your password?"] = "Mot de passe oublié ?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] erreur SSL du site web pour %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "Le certificat SSL n'est pas valide. Corrigez le."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Tâches Cron inactives sur %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Les taches planifiées ne tournent pas."; +App::$strings["never"] = "jamais"; +App::$strings["Cover Photo"] = "Photo de couverture"; +App::$strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)"; +App::$strings["Theme settings"] = "Paramètres du thème"; +App::$strings["Narrow navbar"] = "Barre de navigation fine"; +App::$strings["Navigation bar background color"] = "Couleur de fond de la barre de navigation"; +App::$strings["Navigation bar icon color "] = "Couleur des icônes de la barre de navigation"; +App::$strings["Navigation bar active icon color "] = "Couleur de l'icône active de la barre de navigation"; +App::$strings["Link color"] = "Couleur des liens"; +App::$strings["Set font-color for banner"] = "Définir la couleur du texte de la bannière"; +App::$strings["Set the background color"] = "Définir la couleur d'arrière-plan"; +App::$strings["Set the background image"] = "Définir l'image d'arrière-plan"; +App::$strings["Set the background color of items"] = "Définir la couleur de fond des contributions"; +App::$strings["Set the background color of comments"] = "Couleur de fond des commentaires"; +App::$strings["Set font-size for the entire application"] = "Définir la taille de police pour l'application entière"; +App::$strings["Examples: 1rem, 100%, 16px"] = "Exemples : 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Définir la couleur de police pour les contributions et commentaires"; +App::$strings["Set radius of corners"] = "Définir le rayon des arrondis"; +App::$strings["Example: 4px"] = "Exemple : 4px"; +App::$strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos"; +App::$strings["Set maximum width of content region in pixel"] = "Définir la largeur maximale de la zone des contenus"; +App::$strings["Leave empty for default width"] = "Laissez vide pour avoir la largeur par défaut"; +App::$strings["Left align page content"] = "Aligner à gauche le contenu de la page"; +App::$strings["Set size of conversation author photo"] = "Définir la taille de la photo de l'auteur d'une conversation"; +App::$strings["Set size of followup author photos"] = "Définir la taille de la photo de l'auteur d'une réponse"; +App::$strings["Errors encountered deleting database table "] = "Des erreurs ont eu lieu lors de la suppression de la table de la base de données."; +App::$strings["Submit Settings"] = "Emvoyer les paramètres"; +App::$strings["Drop tables when uninstalling?"] = "Lors de la désinstallation, purger les tables?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Si cette case est cochée, les tables de la base Rendezvous seront supprimées lorsque le plugin sera désinstallé."; +App::$strings["Mapbox Access Token"] = "Jeton d'accès à la mapbox."; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Si vous entrez un jeton d'accès Mapbox, il doit être utilisé pour récupérer les cartes à partir de Mapbox au lieu du serveur par défaut OpenStreetMap."; +App::$strings["Rendezvous"] = "Rendezvous"; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Cette identité a été supprimée par un autre membre en raison de l'inactivité. Appuyez sur le bouton \"Nouvelle identité\" ou actualisez la page pour enregistrer une nouvelle identité. Vous pouvez utiliser le même nom."; +App::$strings["Welcome to Rendezvous!"] = "Bienvenue dans Rendevzvous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Entrez votre nom pour rejoindre ce rendez-vous. Pour commencer à partager votre emplacement avec les autres membres, appuyez sur le contrôle GPS. Lorsque votre emplacement est découvert, un point rouge apparaîtra et les autres seront en mesure de vous voir sur la carte."; +App::$strings["Let's meet here"] = "Rencontrez-vous ici"; +App::$strings["New marker"] = "Nouveau marqueur"; +App::$strings["Edit marker"] = "Éditer le marqueur"; +App::$strings["New identity"] = "Nouvelle identité"; +App::$strings["Delete marker"] = "Supprimer le marqueur"; +App::$strings["Delete member"] = "Supprimer le membre"; +App::$strings["Edit proximity alert"] = "Éditer l'alerte de proximité"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Une alerte de proximité sera émise lorsque ce membre se trouve dans un certain périmètre autour de vous. Entrer un rayon en mètres (0 pour désactiver):"; +App::$strings["distance"] = "distance"; +App::$strings["Proximity alert distance (meters)"] = "Distance d'alerte de proximité (mètres)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Une alerte de proximité sera déclenchée quand vous serez à une certaine distance du marqueur d'emplacement.

Indiquez une distance en mètres (0 pour désactiver) :"; +App::$strings["Marker proximity alert"] = "Alerte de proximité de marqueur"; +App::$strings["Reminder note"] = "Note de rappel"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Saisissez une note à afficher quand vous serez à la distance indiquée..."; +App::$strings["Add new rendezvous"] = "Ajouter un nouveau rendezvous"; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Créez un nouveau rendez-vous et partagez le lien d'accès avec les gens que vous souhaitez inviter au groupe. Ceux qui ouvrent le lien deviennent membres du rendez-vous. Ils peuvent afficher les emplacements des autres membres, ajouter des marqueurs à la carte ou partager leurs propres emplacements avec le groupe."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "Vous n'avez pas de rendez-vous. Appuyez sur le bouton ci-dessus pour créer un rendez-vous !"; +App::$strings["Some setting"] = "Un certain paramètre"; +App::$strings["A setting"] = "Un paramètre"; +App::$strings["Skeleton Settings"] = "Paramètres du squelette"; +App::$strings["GNU-Social Protocol Settings updated."] = "Paramètres du protocol GNU-Social mis à jour."; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Le protocole GNU-Social ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal."; +App::$strings["Enable the GNU-Social protocol for this channel"] = "Activer le protocole GNU-Social pour ce canal"; +App::$strings["GNU-Social Protocol Settings"] = "Paramètres du protocol GNU-Social"; +App::$strings["Follow"] = "S'abonner"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s est maintenant abonné à %2\$s"; +App::$strings["Planets Settings updated."] = "Paramètres Planets mis à jour."; +App::$strings["Enable Planets Plugin"] = "Activer le plugin Planets"; +App::$strings["Planets Settings"] = "Paramètres Planets"; +App::$strings["System defaults:"] = "Paramètres par défaut du système :"; +App::$strings["Preferred Clipart IDs"] = "ID Clipart préférées"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Liste des ids clipart préférése. Celles-ci seront montrées en premier."; +App::$strings["Default Search Term"] = "Terme de recherche par défaut"; +App::$strings["The default search term. These will be shown second."] = "Le terme de recherche par défaut. Ceci sera affiché en second."; +App::$strings["Return After"] = "Retourner ensuite"; +App::$strings["Page to load after image selection."] = "Page à afficher après la sélection de l'image."; +App::$strings["Edit Profile"] = "Éditeur de profil"; +App::$strings["Profile List"] = "Liste de profil"; +App::$strings["Order of Preferred"] = "Tri selon les préférences"; +App::$strings["Sort order of preferred clipart ids."] = "Ordre de tri des ids de clipart préférés."; +App::$strings["Newest first"] = "Les plus récents en premier"; +App::$strings["As entered"] = "Comme entrés"; +App::$strings["Order of other"] = "Tri selon autre"; +App::$strings["Sort order of other clipart ids."] = "Ordre de tri des autres clipart ids."; +App::$strings["Most downloaded first"] = "Les plus téléchargés en premier"; +App::$strings["Most liked first"] = "Les plus aimés en premier"; +App::$strings["Preferred IDs Message"] = "IDs des messages préférés"; +App::$strings["Message to display above preferred results."] = "Message à afficher au-dessus de la liste des résultats préférés."; +App::$strings["Uploaded by: "] = "Téléversé par :"; +App::$strings["Drawn by: "] = "Dessiné par :"; +App::$strings["Use this image"] = "Utiliser cette image"; +App::$strings["Or select from a free OpenClipart.org image:"] = "ou sélectionner une image libre d'OpenClipart.org :"; +App::$strings["Search Term"] = "Terme de recherche"; +App::$strings["Unknown error. Please try again later."] = "Erreur inconnue. Veuillez essayer à nouveau plus tard."; +App::$strings["Profile photo updated successfully."] = "Photo de profil actualisée avec succès."; +App::$strings["Flag Adult Photos"] = "Photo pour adulte"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Fourni l'option d'édition d'une photo afin de cacher des photos inappropriées de la vue d''album par défaut"; +App::$strings["Post to WordPress"] = "Publier sur Wordpress"; +App::$strings["Enable WordPress Post Plugin"] = "Activer l'extension de publication WordPress"; +App::$strings["WordPress username"] = "Identifiant de connexion WordPress"; +App::$strings["WordPress password"] = "Mot de passe de connexion WordPress"; +App::$strings["WordPress API URL"] = "URL de l'API WordPress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Typiquement https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = "ID de votre blog WordPress"; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Pour les sites multi-utilisateurs comme wordpress.com, sinon laisser vide"; +App::$strings["Post to WordPress by default"] = "Par défaut, publier sur WordPress"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Transférer les commentaires (nécessite le plugin hubzila_wp)"; +App::$strings["WordPress Post Settings"] = "Paramètres de publications WordPress"; +App::$strings["Wordpress Settings saved."] = "Les paramètres WordPress ont été sauvegardés."; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Ce plugin cherche dans les publications les mots/textes que vous spécifiez ci-dessous, et réduit tout contenu contenant ces mots-clés afin qu'ils ne s'affichent pas à des moments inappropriés, tels que les insinuations sexuelles qui peuvent être inappropriées dans un contexte de travail. Il est poli et recommandé de marquer tout contenu contenant de la nudité avec #NSFW. Ce filtre peut également correspondre à tout autre mot/texte que vous spécifiez et peut ainsi être utilisé comme un filtre de contenu à usage général."; +App::$strings["Enable Content filter"] = "Activer le filtrage des contenus"; +App::$strings["Comma separated list of keywords to hide"] = "Liste séparée par des virgules des mots-clés à cacher"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "Mot, /expression-régulière/, lang=xx, lang!=xx"; +App::$strings["Not Safe For Work Settings"] = "Paramètres NSFW (Not Safe For Work)"; +App::$strings["General Purpose Content Filter"] = "Filtre de contenu sujet général"; +App::$strings["NSFW Settings saved."] = "Paramètres NSFW sauvegardés."; +App::$strings["Possible adult content"] = "Contenu pour adulte probable"; +App::$strings["%s - view"] = "%s - vue"; +App::$strings["Post to Insanejournal"] = "Publier sur InsaneJournal"; +App::$strings["Enable InsaneJournal Post Plugin"] = "Activer le plugin de publication InsaneJournal"; +App::$strings["InsaneJournal username"] = "Identifiant InsaneJournal"; +App::$strings["InsaneJournal password"] = "Mot de passe InsaneJournal"; +App::$strings["Post to InsaneJournal by default"] = "Par défaut, publier dans InsaneJournal"; +App::$strings["InsaneJournal Post Settings"] = "Paramètres de publication de InsaneJournal"; +App::$strings["Insane Journal Settings saved."] = "Les paramètres d'InsaneJournal ont été sauvegardés"; +App::$strings["Post to Dreamwidth"] = "Publier sur Dreamwidth"; +App::$strings["Enable Dreamwidth Post Plugin"] = "Activer le plugin de publication Dreamwidth"; +App::$strings["Dreamwidth username"] = "Nom d'utilisateur Dreamwidth"; +App::$strings["Dreamwidth password"] = "Mot de passe Dreamwidth"; +App::$strings["Post to Dreamwidth by default"] = "Publication avec Dreamwidth par défaut"; +App::$strings["Dreamwidth Post Settings"] = "Paramètres de publication Dreamwidth"; +App::$strings["New registration"] = "Nouvelle inscription"; +App::$strings["Message sent to %s. New account registration: %s"] = "Message envoyé à %s. %sEnregistrement d'un nouveau compte : "; +App::$strings["Hubzilla Directory Stats"] = "Statistiques de l'annuaire Hubzilla"; +App::$strings["Total Hubs"] = "Total de Hubs"; +App::$strings["Hubzilla Hubs"] = "Hubs Hubzilla"; +App::$strings["Friendica Hubs"] = "Hubs Friendica"; +App::$strings["Diaspora Pods"] = "Pods Diaspora"; +App::$strings["Hubzilla Channels"] = "Canaux Hubzilla"; +App::$strings["Friendica Channels"] = "Canaux Friendica"; +App::$strings["Diaspora Channels"] = "Canaux Diaspora"; +App::$strings["Aged 35 and above"] = "Âgé de 35 ans et plus"; +App::$strings["Aged 34 and under"] = "Âgé de 34 et moins"; +App::$strings["Average Age"] = "Âge moyen"; +App::$strings["Known Chatrooms"] = "Salons de discussion connus"; +App::$strings["Known Tags"] = "Étiquettes connues"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Veuillez noter que les statistiques de Diaspora et Friendica sont simplement celles dont **ce répertoire** est au courant, et pas toutes celles connues dans le réseau. Cela s'applique également aux salles de discussion,"; +App::$strings["Your Webbie:"] = "Vous êtes Webbie :"; +App::$strings["Fontsize (px):"] = "Taille de la police (px) :"; +App::$strings["Link:"] = "Lien :"; +App::$strings["Like us on Hubzilla"] = "Aimez-nous sur Hubzilla"; +App::$strings["Embed:"] = "Embarqué :"; +App::$strings["Photos imported"] = "Photos importées"; +App::$strings["Redmatrix Photo Album Import"] = "Import de l'album photo Redmatrix"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Ceci va importer l'intégralité de vos albums photos Redmatrix dans ce canal."; +App::$strings["Redmatrix Server base URL"] = "URL de base du serveur Redmatrix"; +App::$strings["Redmatrix Login Username"] = "Identifiant de connexion Redmatrix"; +App::$strings["Redmatrix Login Password"] = "Mot de passe de connexion Redmatrix"; +App::$strings["Import just this album"] = "Importer uniquement cet album"; +App::$strings["Leave blank to import all albums"] = "Laisser vide pour importer tous les albums"; +App::$strings["Maximum count to import"] = "Nombre maximum de comptes à importer"; +App::$strings["0 or blank to import all available"] = "0 ou vide pour importer tout ce qui est disponible"; +App::$strings["Channels to auto connect"] = "Canaux à connecter automatiqument"; +App::$strings["Comma separated list"] = "Liste séparée par des virgules"; +App::$strings["Popular Channels"] = "Canaux populaires"; +App::$strings["IRC Settings"] = "Paramètres IRC"; +App::$strings["IRC settings saved."] = "Paramètres IRC sauvegardés"; +App::$strings["IRC Chatroom"] = "Salon de discussion IRC"; +App::$strings["Post to LiveJournal"] = "Publier sur LiveJournal"; +App::$strings["Enable LiveJournal Post Plugin"] = "Activer le plugin de publication LiveJournal"; +App::$strings["LiveJournal username"] = "Identifiant LiveJournal"; +App::$strings["LiveJournal password"] = "Mot de passe LiveJournal"; +App::$strings["Post to LiveJournal by default"] = "Par défaut, publier sur LiveJournal"; +App::$strings["LiveJournal Post Settings"] = "Paramètres de publication LiveJournal"; +App::$strings["LiveJournal Settings saved."] = "Paramètres LiveJournal sauvegardés."; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontrons un problème lors de l'identification avec l'OpenID que vous avez fournie. Veuillez vérifier que vous avez correctement écrit votre ID."; +App::$strings["The error message was:"] = "Le message d'erreur était :"; +App::$strings["First Name"] = "Prénom"; +App::$strings["Last Name"] = "Nom"; +App::$strings["Nickname"] = "Surnom"; +App::$strings["Full Name"] = "Nom complet"; +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["Birth Year"] = "Années de naissance"; +App::$strings["Birth Month"] = "Mois de naissance"; +App::$strings["Birth Day"] = "Jour de naissance"; +App::$strings["Birthdate"] = "Date de naissance"; +App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Aucune ID trouvée."; +App::$strings["Login failed."] = "Échec de la connexion."; +App::$strings["Male"] = "Homme"; +App::$strings["Female"] = "Femme"; +App::$strings["You're welcome."] = "Bienvenue."; +App::$strings["Ah shucks..."] = "Ah m…"; +App::$strings["Don't mention it."] = "De rien."; +App::$strings["<blush>"] = "<rougit>"; +App::$strings["Page to load after login"] = "Page à charger après l'identification"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Exemples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (laisser vide pour la page par défaut du réseau (grille)."; +App::$strings["Startpage Settings"] = "Paramètres de la page de démarrage"; +App::$strings["bitchslap"] = "giffler"; +App::$strings["bitchslapped"] = "gifflé(e)"; +App::$strings["shag"] = "baiser"; +App::$strings["shagged"] = "baisé"; +App::$strings["patent"] = "breveté"; +App::$strings["patented"] = "être breveté"; +App::$strings["hug"] = "étreindre"; +App::$strings["hugged"] = "être étreint"; +App::$strings["murder"] = "assassiner"; +App::$strings["murdered"] = "être assassiné"; +App::$strings["worship"] = "vénérer"; +App::$strings["worshipped"] = "être vénéré"; +App::$strings["kiss"] = "embrasser"; +App::$strings["kissed"] = "embrassé"; +App::$strings["tempt"] = "tenter"; +App::$strings["tempted"] = "tenté"; +App::$strings["raise eyebrows at"] = "soulever les sourcils à la vue de"; +App::$strings["raised their eyebrows at"] = "sourcils soulevés à la vue de"; +App::$strings["insult"] = "insulter"; +App::$strings["insulted"] = "insulté"; +App::$strings["praise"] = "louer"; +App::$strings["praised"] = "loué"; +App::$strings["be dubious of"] = "douter de"; +App::$strings["was dubious of"] = "avoir douté de"; +App::$strings["eat"] = "manger"; +App::$strings["ate"] = "a mangé"; +App::$strings["giggle and fawn at"] = "séduire, charmer"; +App::$strings["giggled and fawned at"] = "séduit(e), charmé(e)"; +App::$strings["doubt"] = "doute"; +App::$strings["doubted"] = "a douté"; +App::$strings["glare"] = "jeter un regard"; +App::$strings["glared at"] = "a jeté un regard à "; +App::$strings["fuck"] = "baiser"; +App::$strings["fucked"] = "être baisé"; +App::$strings["bonk"] = "baiser"; +App::$strings["bonked"] = "baisé(e)"; +App::$strings["declare undying love for"] = "Déclarer un amour éternel pour"; +App::$strings["declared undying love for"] = "A déclaré l'amour éternel pour"; +App::$strings["Diaspora Protocol Settings updated."] = "Paramètres du protocole Diaspora mis à jour."; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Le protocole Diaspora ne gère pas les canaux localisés sur plusieurs serveurs. Vos contacts sur ce réseau peuvent donc être injoignables à partir des autres emplacements (clones) de ce canal."; +App::$strings["Enable the Diaspora protocol for this channel"] = "Activer le protocole Diaspora pour ce canal"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permettre à tous les membres de Diaspora de commenter vos publications publiques"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Empêcher la redirection de vos mots-clés (hashtags) vers d'autres sites"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Signer et faire suivre les publications et commentaires n'ayant aucune signature Diaspora"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Mots-clés suivis (séparer par une virgule, ne pas mettre le #)"; +App::$strings["Diaspora Protocol Settings"] = "Paramètres du protocole Diaspora"; +App::$strings["No username found in import file."] = "Pas de 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["Your account on %s will expire in a few days."] = "Votre compte sur %s expirera dans quelques jours."; +App::$strings["Your $Productname test account is about to expire."] = "Votre compte de test $NomDeProduit est sur le point d'expirer."; +App::$strings["Enable Rainbowtag"] = "Activer Rainbowtag"; +App::$strings["Rainbowtag Settings"] = "Paramètres Rainbowtag"; +App::$strings["Rainbowtag Settings saved."] = "Paramètres Rainbowtag sauvegardés."; +App::$strings["Show Upload Limits"] = "Afficher les limites de débit ascendant (upload)"; +App::$strings["Hubzilla configured maximum size: "] = "Taille maximale configurée par Hubzilla:"; +App::$strings["PHP upload_max_filesize: "] = "PHP upload_max_filesize: "; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = "PHP post_max_size (must be larger than upload_max_filesize): "; +App::$strings["generic profile image"] = "image de profil générique"; +App::$strings["random geometric pattern"] = "motif géométrique aléatoire"; +App::$strings["monster face"] = "visage de monstre"; +App::$strings["computer generated face"] = "visage généré par ordinateur"; +App::$strings["retro arcade style face"] = "visage de style arcade rétro"; +App::$strings["Hub default profile photo"] = "Photo du profil par défaut du concentrateur"; +App::$strings["Information"] = "Information"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Libravatar greffon est également installé. Veuillez désactiver le greffon Libravatar ou cet greffon Gravatar.
Le greffon Libravatar reviendra à Gravatar si rien n'a été trouvé à Libravatar."; +App::$strings["Save Settings"] = "Sauvegarder les paramètres"; +App::$strings["Default avatar image"] = "Image avatar par défaut"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Sélectionnez l'image d'avatar par défaut si aucune n'a été trouvée sur Gravatar. Voir README"; +App::$strings["Rating of images"] = "Evaluation des images"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Sélectionnez l'évaluation d'avatar appropriée pour votre site. Voir README"; +App::$strings["Gravatar settings updated."] = "Paramètres Gravatar mis à jour."; +App::$strings["Hubzilla File Storage Import"] = "Importation de fichiers de stockage Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Ceci importera tous vos fichiers cloud à partir d'un autre serveur."; +App::$strings["Hubzilla Server base URL"] = "URL de base du serveur Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Depuis la date modifiée aaaaa-mm-jjj"; +App::$strings["Until modified date yyyy-mm-dd"] = "Jusqu'à la date modifiée aaaaa-mm-jjj"; +App::$strings["Recent Channel/Profile Viewers"] = "Visiteurs récents du canal/profil"; +App::$strings["This plugin/addon has not been configured."] = "Cette extension n'a pas été configurée."; +App::$strings["Please visit the Visage settings on %s"] = "Veuillez visiter les paramètres de Visage sur %s"; +App::$strings["your feature settings page"] = "La page des paramètres de vos fonctionnalités"; +App::$strings["No entries."] = "Aucune entrée."; +App::$strings["Enable Visage Visitor Logging"] = "Activer la connexion Visage Visitor"; +App::$strings["Visage Settings"] = "Paramètres Visage"; +App::$strings["Nsabait Settings updated."] = "Les paramètres Nsabait ont été enregistrés."; +App::$strings["Enable NSAbait Plugin"] = "Activer le plugin NSAbait"; +App::$strings["NSAbait Settings"] = "Paramètres NSAbait"; +App::$strings["Send test email"] = "Envoyer un mail de test"; +App::$strings["No recipients found."] = "Aucun destinataire trouvé."; +App::$strings["Mail sent."] = "Mail envoyé."; +App::$strings["Sending of mail failed."] = "L'envoi du mail a échoué."; +App::$strings["Mail Test"] = "Test du mail"; +App::$strings["Message subject"] = "Objet du message"; +App::$strings["Use markdown for editing posts"] = "Utiliser Markdown pour l'édition des posts"; +App::$strings["View Larger"] = "Afficher en plus grand"; +App::$strings["Tile Server URL"] = "URL de la tuile du serveur"; +App::$strings["A list of public tile servers"] = "Une liste de serveurs de cartes publics"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL du serveur Nominatim (géocodage inversé)"; +App::$strings["A list of Nominatim servers"] = "Une liste de serveurs Nominatim"; +App::$strings["Default zoom"] = "Zoom par défaut"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Le niveau de zoom par défaut. (1: monde, 18: plus élevé, dépend également du serveur de tuiles)"; +App::$strings["Include marker on map"] = "Inclure le marqueur sur la carte"; +App::$strings["Include a marker on the map."] = "Inclure un marqueur sur la carte."; +App::$strings["text to include in all outgoing posts from this site"] = "Texte à inclure dans tous les messages sortants de ce site"; +App::$strings["Fuzzloc Settings updated."] = "Paramètres Fuzzloc mis à jour."; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc vous permet de brouiller votre position précise si votre canal utilise la cartographie de position du navigateur."; +App::$strings["Enable Fuzzloc Plugin"] = "Activer le greffon Fuzzloc"; +App::$strings["Minimum offset in meters"] = "Décalage minimum en mètres"; +App::$strings["Maximum offset in meters"] = "Décalage maximum en mètres"; +App::$strings["Fuzzloc Settings"] = "Paramètres de Fuzzloc"; +App::$strings["Post to Friendica"] = "Publier sur Friendica"; +App::$strings["rtof Settings saved."] = "Paramètres rtof sauvegardés."; +App::$strings["Allow posting to Friendica"] = "Autoriser la publication sur Friendica"; +App::$strings["Send public postings to Friendica by default"] = "Par défaut, envoyer les publications publiques sur Friendica"; +App::$strings["Friendica API Path"] = "Chemin de l'API Friendica"; +App::$strings["https://{sitename}/api"] = "https://{nomdusite}/api"; +App::$strings["Friendica login name"] = "Identifiant de connexion Friendica"; +App::$strings["Friendica password"] = "Mot de passe de connexion Friendica"; +App::$strings["Hubzilla to Friendica Post Settings"] = "Paramètres de publication de Hubzilla vers Friendica"; +App::$strings["Status:"] = "État :"; +App::$strings["Activate addon"] = "Activer l'extension"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Cacher le widget de chat Jappixmini de l'interface web"; +App::$strings["Jabber username"] = "Identifiant Jabber"; +App::$strings["Jabber server"] = "Serveur Jabber"; +App::$strings["Jabber BOSH host URL"] = "Adresse hôte pour Jabber BOSH"; +App::$strings["Jabber password"] = "Mot de passe Jabber"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = "Chiffrer le mot de passe Jabber avec le mot de passe Hubzilla"; +App::$strings["Hubzilla password"] = "Mot de passe Hubzilla"; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Valider automatiquement les demandes de souscription des contacts Hubzilla"; +App::$strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne des adresses jabber des contacts"; +App::$strings["Configuration Help"] = "Aide pour la configuration"; +App::$strings["Jappix Mini Settings"] = "Paramètres de Jappix mini"; +App::$strings["Currently blocked"] = "Actuellement bloqué"; +App::$strings["No channels currently blocked"] = "Aucun canal n'est actuellement bloqué"; +App::$strings["Superblock Settings"] = "Paramètres de Superblock"; +App::$strings["Block Completely"] = "Bloquer complètement"; +App::$strings["superblock settings updated"] = "Les paramètres du superblock ont été mis à jour"; +App::$strings["Federate"] = "Fédérer"; +App::$strings["nofed Settings saved."] = "Les paramètres nfed ont été enregistrés."; +App::$strings["Allow Federation Toggle"] = "Autoriser la fédération avec Toggle"; +App::$strings["Federate posts by default"] = "Par défaut, fédérer les publications."; +App::$strings["NoFed Settings"] = "Paramètres NoFed"; +App::$strings["Post to Red"] = "Publier sur Red"; +App::$strings["Channel is required."] = "Un canal est requis."; +App::$strings["redred Settings saved."] = "Paramètres redred sauvegardés."; +App::$strings["Allow posting to another Hubzilla Channel"] = "Autoriser la publication sur un autre canal Hubzilla"; +App::$strings["Send public postings to Hubzilla channel by default"] = "Par défaut, envoyer les publications publiques sur le canal Hubzilla"; +App::$strings["Hubzilla API Path"] = "Chemin de l'API Hubzilla"; +App::$strings["Hubzilla login name"] = "Identifiant de connexion Hubzilla"; +App::$strings["Hubzilla channel name"] = "Nom du canal Hubzilla"; +App::$strings["Hubzilla Crosspost Settings"] = "Paramètres Crosspost Hubzilla"; +App::$strings["Logfile archive directory"] = "Répertoire d'archivage du fichier journal"; +App::$strings["Directory to store rotated logs"] = "Répertoire où stocker les journaux de rotation"; +App::$strings["Logfile size in bytes before rotating"] = "Taille du fichier journal en octets avant la rotation"; +App::$strings["Number of logfiles to retain"] = "Nombre de fichiers de journal à conserver"; +App::$strings["Friendica Photo Album Import"] = "Importation de l'album photo Friendica "; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Ceci importera toutes vos albums photos Friendica dans ce canal Hubzilla."; +App::$strings["Friendica Server base URL"] = "URL de base du serveur Friendica"; +App::$strings["Friendica Login Username"] = "Identifiant de connexion Friendica"; +App::$strings["Friendica Login Password"] = "Mot de passe de connexion Friendica"; +App::$strings["ActivityPub"] = "ActivityPub"; +App::$strings["ActivityPub Protocol Settings updated."] = "Paramètres du protocole ActivityPub Protocol mise à jour."; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Le protocole ActivityPub ne prend pas en charge l'indépendance de localisation. Les connexions que vous établissez au sein de ce réseau peuvent être inaccessibles à partir d'autres emplacements de canaux."; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Activer le protocole ActivityPub pour ce canal."; +App::$strings["Send multi-media HTML articles"] = "Envoyer des articles HTML multimédia"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Non pris en charge par certains services de microblog tels que Mastodon."; +App::$strings["ActivityPub Protocol Settings"] = "Paramètres du protocole ActivityPub "; +App::$strings["Project Servers and Resources"] = "Serveurs et ressources du projet"; +App::$strings["Project Creator and Tech Lead"] = "Créateur et Responsable Technique du projet"; +App::$strings["Admin, developer, directorymin, support bloke"] = "Administrateur, développeur, responsable d'annuaire, équipe support"; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "Et les centaines d'autres personnes et organisations qui ont contribué à rendre le Hubzilla possible."; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Les projets Redmatrix / Hubzilla sont fournis principalement par des bénévoles qui donnent de leur temps et de leur expertise - et paient souvent de leur poche pour des services qu'ils partagent avec d'autres."; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Il n'y a ni financement d'entreprise ni publicités, et nous ne recueillons ni ne vendons vos données personnelles. (Nous ne contrôlons pas vos informations personnelles - vous le faites !)"; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Aider à soutenir notre travail novateur en matière de décentralisation, d'identité Web et de confidentialité."; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "Vos dons maintiennent les serveurs et les services en marche et nous aident également à fournir de nouvelles fonctionnalités innovantes et un développement continu."; +App::$strings["Donate"] = "Donner"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Choisissez un projet, un développeur ou un hub public à soutenir à l'aide d'un don unique"; +App::$strings["Donate Now"] = "Donner maintenant"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "Or devenez un sponsor du projet (projet Hubzilla uniquement)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Veuillez indiquer si vous souhaitez que votre nom ou prénom (ou rien) apparaisse dans la liste de nos sponsors."; +App::$strings["Sponsor"] = "Sponsors"; +App::$strings["Special thanks to: "] = "Remerciements particuliers à :"; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Ceci est un dictionnaire d'accords de guitare assez complet et facile qui énumère la plupart des manières possibles de jouer un certain accord, à partir de la base de la touche jusqu'à quelques frettes au-delà de la douzième frette (au-delà de laquelle tout se répète). Un couple d'accordages non standard sont fournis au profit des joueurs de diapositives, etc."; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "Les noms des accords commencent par une note racine (A-G) et peuvent inclure des dièses (#) et des bémols (b). Ce logiciel analysera la plupart des conventions de dénomination standard telles que maj, min, dim, sus (2 ou 4), aug, avec des éléments répétitifs facultatifs."; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Exemples valides comprennent A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "Acords de guitar"; +App::$strings["The complete online chord dictionary"] = "Le dictionnaire en ligne complet des accords"; +App::$strings["Tuning"] = "Réglage"; +App::$strings["Chord name: example: Em7"] = "Nom d'accord. Exemple : Em7."; +App::$strings["Show for left handed stringing"] = "Montrer pour les gauchers"; +App::$strings["Quick Reference"] = "Référence rapide"; +App::$strings["Post to Libertree"] = "Publier sur Libertree"; +App::$strings["Enable Libertree Post Plugin"] = "Activer le plugin de publication Libertree"; +App::$strings["Libertree API token"] = "Jeton de l'API Libertree"; +App::$strings["Libertree site URL"] = "Adresse du site Libertree"; +App::$strings["Post to Libertree by default"] = "Par défaut, publier sur Libertree"; +App::$strings["Libertree Post Settings"] = "Paramètres de publication pour Libertree"; +App::$strings["Libertree Settings saved."] = "Paramètres de Libertree sauvegardés."; +App::$strings["Flattr this!"] = "Flattr this!"; +App::$strings["Flattr widget settings updated."] = "Les paramètres du widget Flattr ont été mis à jour"; +App::$strings["Flattr user"] = "Utilisateur de Flattr"; +App::$strings["URL of the Thing to flattr"] = "URL de ce que vous voulez flattr"; +App::$strings["If empty channel URL is used"] = "Si une url vide est utilisée"; +App::$strings["Title of the Thing to flattr"] = "Titre de ce que vous voulez flattr"; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Si vide, \"nom du canal sur Hubzilla\" sera utilisé"; +App::$strings["Static or dynamic flattr button"] = "Statique ou dynamique bouton Flattr"; +App::$strings["static"] = "statique"; +App::$strings["dynamic"] = "dynamique"; +App::$strings["Alignment of the widget"] = "Alignement du widget"; +App::$strings["left"] = "gauche"; +App::$strings["right"] = "droite"; +App::$strings["Enable Flattr widget"] = "Activer le widget Flattr"; +App::$strings["Flattr Widget Settings"] = "Paramètres du widget Flattr"; +App::$strings["Post to GNU social"] = "Publier sur GNU-social"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "Nous ne pouvons pas contacter l'API de GNU-social avec le chemin que vous avez entré."; +App::$strings["GNU social settings updated."] = "Les paramètres GNU-social ont été mis à jour."; +App::$strings["Globally Available GNU social OAuthKeys"] = "Les OAuthKeys GNU-social sont globalement disponibles."; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Il existe des paires de clés OAuth préconfigurées pour certains serveurs GNU-social disponibles. Si vous utilisez l'un d'eux, utilisez ces informations d'identification.\nSi vous ne voulez pas vous connecter à une autre instance GNU social (voir ci-dessous)."; +App::$strings["Provide your own OAuth Credentials"] = "Fournissez vos propres informations d'identification OAuth"; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée."; +App::$strings["OAuth Consumer Key"] = "Clé d'utilisateur OAuth"; +App::$strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth"; +App::$strings["Base API Path"] = "Chemin de l'API de base"; +App::$strings["Remember the trailing /"] = "N'oubliez pas le / final"; +App::$strings["GNU social application name"] = "Nom de l'application GNU-social"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Pour vous connecter à votre compte GNU-social, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de GNU-social. Vous devez le copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront visibles sur GNU-social."; +App::$strings["Log in with GNU social"] = "Vous connecter avec GNU-social"; +App::$strings["Copy the security code from GNU social here"] = "Copier ici le code de sécurité de GNU-social."; +App::$strings["Cancel Connection Process"] = "Annuler le processus de prise de contact"; +App::$strings["Current GNU social API is"] = "L'API GNU-social courante est"; +App::$strings["Cancel GNU social Connection"] = "Annuler la connexion GNU-social"; +App::$strings["Currently connected to: "] = "Actuellement connecté à :"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Remarque : en raison de vos paramètres de confidentialité (masquer les détails de votre profil aux visiteurs inconnus ?), le lien potentiellement inclus dans les annonces publiques relayées sur GNU-social amènera le visiteur à une page vierge informant le visiteur que l'accès à votre profil a été restreint."; +App::$strings["Allow posting to GNU social"] = "Autoriser la publication sur GNU-social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte GNU-social associé."; +App::$strings["Post to GNU social by default"] = "Par défaut, publier sur GNU-social"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte GNU-social associé"; +App::$strings["Clear OAuth configuration"] = "Effacer la configuration OAuth"; +App::$strings["GNU social Post Settings"] = "Paramètres de publication GNU-social"; +App::$strings["API URL"] = "URL de l'API"; +App::$strings["Application name"] = "Nom de l'application"; +App::$strings["QR code"] = "QR code"; +App::$strings["QR Generator"] = "Générateur de QRcode"; +App::$strings["Enter some text"] = "Entrer du texte"; +App::$strings["Invalid game."] = "Jeu invalide"; +App::$strings["You are not a player in this game."] = "Vous n'êtes pas un joueur de ce jeu."; +App::$strings["You must be a local channel to create a game."] = "Vous devez être un canal local pour créer un jeu."; +App::$strings["You must select one opponent that is not yourself."] = "Vous devez sélectionner un adversaire qui ne soit pas vous-même."; +App::$strings["Random color chosen."] = "Couleur aléatoire choisie."; +App::$strings["Error creating new game."] = "Erreur lors de la création du nouveau jeu."; +App::$strings["Requested channel is not available."] = "Canal demandé non disponible."; +App::$strings["You must select a local channel /chess/channelname"] = "Vous devez sélectionner un canal local /échecs/nomducanal"; +App::$strings["Enable notifications"] = "Activer les notifications"; +App::$strings["Post to Twitter"] = "Publier sur Twitter"; +App::$strings["Twitter settings updated."] = "Les paramètres de Twitter ont été mis à jour."; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Aucune paire de clés d'utilisateur pour Twitter n'a été trouvée. Veuillez contacter l'administrateur de votre site."; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "Dans cette instance de Hubzilla, le plugin Twitter a été activé, mais vous n'avez pas encore connecté votre compte à votre compte Twitter. Pour ce faire, cliquez sur le bouton ci-dessous pour obtenir un code PIN de Twitter que vous devez copier dans la zone de saisie ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront publiés sur Twitter."; +App::$strings["Log in with Twitter"] = "Connectez-vous avec votre compte Twitter"; +App::$strings["Copy the PIN from Twitter here"] = "Copier ici le PIN fourni par Twitter"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Note : En raison de vos paramètres de confidentialité (Masquer les détails de votre profil aux visiteurs inconnus?), le lien potentiellement inclus dans les annonces publiques relayées vers Twitter amènera le visiteur à une page vierge l'informant que l'accès à votre profil a été restreint."; +App::$strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si cette option est activée, vos publications publiques peuvent être publiées sur le compte Twitter associé."; +App::$strings["Twitter post length"] = "Longueur des messages Twitter"; +App::$strings["Maximum tweet length"] = "Longueur maximale du tweet"; +App::$strings["Send public postings to Twitter by default"] = "Par défaut, envoyer vos publications publiques sur Twitter."; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si cette option est activée, par défaut, vos publications publiques seront publiées sur le compte Twitter associé."; +App::$strings["Twitter Post Settings"] = "Paramètres des publications Twitter"; +App::$strings["Deactivate the feature"] = "Désactiver la fonctionnalité"; +App::$strings["Hide the button and show the smilies directly."] = "Cacher le bouton et afficher les émoticônes directement."; +App::$strings["Smileybutton Settings"] = "Paramètres du bouton des émoticônes"; +App::$strings["Order Not Found"] = "Commande introuvable"; +App::$strings["Order cannot be checked out."] = "La commande ne peut pas être finalisée."; +App::$strings["Enable Shopping Cart"] = "Activer le panier d'achats"; +App::$strings["Enable Test Catalog"] = "Activer le catalogue de test"; +App::$strings["Enable Manual Payments"] = "Activer les paiements manuels"; +App::$strings["Base Cart Settings"] = "Paramètres de base du panier"; +App::$strings["Add Item"] = "Ajouter un article"; +App::$strings["Call cart_post_"] = "Appeler cart_post_"; +App::$strings["Cart Not Enabled (profile: "] = "Panier non activé (profile:"; +App::$strings["Order not found."] = "Commande introuvable."; +App::$strings["No Order Found"] = "Aucune commande trouvée"; +App::$strings["call: "] = "appel:"; +App::$strings["An unknown error has occurred Please start again."] = "Une erreur inconnue s'est produite. Veuillez recommencer."; +App::$strings["Invalid Payment Type. Please start again."] = "Type de paiement non valable. Recommencez, s'il vous plaît."; +App::$strings["Order not found"] = "Commande non trouvée"; +App::$strings["Error: order mismatch. Please try again."] = "Erreur : non-appariement de commande. Veuillez réessayer."; +App::$strings["Manual payments are not enabled."] = "Les paiements manuels ne sont pas activés."; +App::$strings["Finished"] = "Terminé."; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Ce site web est surveillé grâce à l'outil d'analyse Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Si vous ne souhaitez pas que vos visites soient enregistrées de cette façon, vous pouvez\ndéfinir un cookie pour empêcher Piwik de suivre davantage de visites du site (opt-out)."; +App::$strings["Piwik Base URL"] = "URL de base Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Chemin absolu vers votre installation Piwik. (sans le http/s, avec antislash)"; +App::$strings["Site ID"] = "ID du site"; +App::$strings["Show opt-out cookie link?"] = "Afficher le lien opt-out du cookie ?"; +App::$strings["Asynchronous tracking"] = "Traqueur asynchrone"; +App::$strings["Enable frontend JavaScript error tracking"] = "Activer le traqueur d'erreur du frontend JavaScript"; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Cette fonctionnalité requiert une version de Piwik >=2.2.0"; +App::$strings["Edit your profile and change settings."] = "Éditer votre profil et changer les paramètres."; +App::$strings["Click here to see activity from your connections."] = "Cliquer ici pour voir l'activité de vos contacts."; +App::$strings["Click here to see your channel home."] = "Cliquer ici pour voir votre canal principal."; +App::$strings["You can access your private messages from here."] = "Vous pouvez accéder à vos messages privés à partir d'ici."; +App::$strings["Create new events here."] = "Créer de nouveaux événements ici."; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Vous pouvez accepter de nouveaux contacts et changer les droits d'accès des contacts existants. Vous pouvez également créer des groupes de contacts."; +App::$strings["System notifications will arrive here"] = "Les notifications du système arriveront ici."; +App::$strings["Search for content and users"] = "Rechercher du contenu ou des utilisateurs"; +App::$strings["Browse for new contacts"] = "Rechercher de nouveaux contacts"; +App::$strings["Launch installed apps"] = "Démarrer des applications installées"; +App::$strings["Looking for help? Click here."] = "Un peu d'aide ? Cliquer ici."; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "De nouveaux événement se sont produits dans votre réseau. Cliquer ici pour voir ce qui s'est passé !"; +App::$strings["You have received a new private message. Click here to see from who!"] = "Vous avez reçu un nouveau message privé. Cliquer ici pour voir qui vous écrit !"; +App::$strings["There are events this week. Click here too see which!"] = "Il y a des événements cette semaine. Cliquer ici pour voir lesquels !"; +App::$strings["You have received a new introduction. Click here to see who!"] = "Vous avez reçu une nouvelle demande de relation. Cliquer ici pour voir de qui !"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "Vous avez reçu une notification du système. Cliquer ici pour voir ce qui se passe !"; +App::$strings["Click here to share text, images, videos and sound."] = "Cliquer ici pour partager du texte, des images, des vidéos ou du son."; +App::$strings["You can write an optional title for your update (good for long posts)."] = "Vous pouvez ajouter à votre mise à jour un titre facultatif (pratique pour de longues publications)."; +App::$strings["Entering some categories here makes it easier to find your post later."] = "Renseigner certaines catégories ici permet de retrouver plus facilement votre message plus tard."; +App::$strings["Share photos, links, location, etc."] = "Partager des photos, des liens, des localisations, etc."; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Envie de partager un contenu pour une durée limitée ? Faites-le expirer à une certaine date."; +App::$strings["You can password protect content."] = "Vous pouvez protéger un contenu avec un mot de passe."; +App::$strings["Choose who you share with."] = "Choisir avec qui vous partagez."; +App::$strings["Click here when you are done."] = "Cliquer ici quand vous avez fini."; +App::$strings["Adjust from which channels posts should be displayed."] = "Préciser de quels canaux les publications seront affichées."; +App::$strings["Only show posts from channels in the specified privacy group."] = "Afficher uniquement les messages des canaux appartenant au groupe de contacts spécifié."; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Trouvez facilement des publications contenant des tags (mots-clés précédés du symbole \"#\")."; +App::$strings["Easily find posts in given category."] = "Trouvez facilement des publications dans une catégorie donnée."; +App::$strings["Easily find posts by date."] = "Trouvez facilement des publications en fonction de leur date."; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Voici des utilisateurs que vous pourriez trouver intéressants. Ces utilisateurs se sont portés volontaires pour être affichés comme exemples."; +App::$strings["Here you see channels you have connected to."] = "Retrouvez ici les canaux auxquels vous vous êtes connectés."; +App::$strings["Save your search so you can repeat it at a later date."] = "Enregistrer votre recherche de façon à pouvoir la répéter plus tard."; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Si vous voyez cette icône, vous pouvez être sûr que l'expéditeur est qui il dit qu'il est. Il est normal qu'il ne soit pas toujours possible de vérifier l'expéditeur, donc l'icône manquera parfois. Il n'est généralement pas nécessaire de s'inquiéter à ce sujet."; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Attention ! Il semble que quelqu'un a essayé de contrefaire un message ! Ce message n'a pas nécessairement été envoyé par la personne annoncée !"; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Bienvenue sur Hubzilla! Voulez-vous faire un tour de l'interface utilisateur? Vous pouvez le mettre en pause à tout moment et continuer où vous l'avez laissé en rechargeant la page ou en naviguant vers une autre page. Vous pouvez également avancer en appuyant sur la touche de retour."; +App::$strings["Extended Identity Sharing"] = "Partage d'identification étendu"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Partagez votre identité avec tous les sites Internet. Lorsqu'elle est désactivée, l'identité n'est partagée qu'avec les sites \$Projectname."; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tic-tac-toe en 3 dimensions"; +App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; +App::$strings["New game"] = "Nouveau jeu"; +App::$strings["New game with handicap"] = "Nouveau jeu avec handicap"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trois dimensions tic-tac-toe est juste comme le jeu traditionnel, sauf qu'il est joué sur plusieurs niveaux simultanément."; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Dans ce cas, il y a trois niveaux. Vous gagnez en obtenant trois dans une rangée à n'importe quel niveau, que ce soit vers le haut, le bas, ou en diagonale à travers les différents niveaux."; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Le jeu handicap désactive la position centrale au niveau intermédiaire, car le joueur qui revendique ce carré a souvent un avantage indu."; +App::$strings["You go first..."] = "Vous commencez…"; +App::$strings["I'm going first this time..."] = "Cette fois, je commence…"; +App::$strings["You won!"] = "Vous avez gagné !"; +App::$strings["\"Cat\" game!"] = "Jeu de \"Chat\" !"; +App::$strings["I won!"] = "J'ai gagné !"; +App::$strings["Message to display on every page on this server"] = "Message à afficher sur chaque page de ce serveur"; +App::$strings["Pageheader Settings"] = "Paramètres du haut de page"; +App::$strings["pageheader Settings saved."] = "Paramètres du haut de page sauvegardés."; +App::$strings["Only authenticate automatically to sites of your friends"] = "Ne vous authentifier automatiquement que sur les sites de vos contacts"; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "Par défaut vous êtres authentifiés automatiquement partout sur le réseau"; +App::$strings["Authchoose Settings"] = "Paramètres Authchoose"; +App::$strings["Atuhchoose Settings updated."] = "Paramètres Authchoose mis à jour."; +App::$strings["lonely"] = "isolé"; +App::$strings["drunk"] = "saoul"; +App::$strings["horny"] = "libidineux"; +App::$strings["stoned"] = "défoncé"; +App::$strings["fucked up"] = "cramé"; +App::$strings["clusterfucked"] = "énervé"; +App::$strings["crazy"] = "cinglé"; +App::$strings["hurt"] = "dommage"; +App::$strings["sleepy"] = "somnolent"; +App::$strings["grumpy"] = "grognon"; +App::$strings["high"] = "allumé"; +App::$strings["semi-conscious"] = "à demi-conscient"; +App::$strings["in love"] = "amoureux"; +App::$strings["in lust"] = "convoitise"; +App::$strings["naked"] = "nu"; +App::$strings["stinky"] = "puant"; +App::$strings["sweaty"] = "en sueur"; +App::$strings["bleeding out"] = "en sang"; +App::$strings["victorious"] = "victorieux"; +App::$strings["defeated"] = "vaincu"; +App::$strings["envious"] = "envieux"; +App::$strings["jealous"] = "jaloux"; +App::$strings["XMPP settings updated."] = "Les paramètres XMPP ont été mis à jour."; +App::$strings["Enable Chat"] = "Activer le Chat"; +App::$strings["Individual credentials"] = "Informations d'identifications individuelles"; +App::$strings["Jabber BOSH server"] = "serveur Jabber BOSH"; +App::$strings["XMPP Settings"] = "Paramètres XMPP"; +App::$strings["Jabber BOSH host"] = "Hôte Jabber BOSH"; +App::$strings["Use central userbase"] = "Utiliser la base d'utilisateurs centrale"; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Si cette option est activée, les membres se connecteront automatiquement à un serveur ejabberd qui doit être installé sur cette machine avec des informations d'identification synchronisées via le script \"auth_ejabberd.php\"."; +App::$strings["Who likes me?"] = "Qui m'aime?"; +App::$strings["You are now authenticated to pumpio."] = "Vous êtes maintenant connecté à pumpio."; +App::$strings["return to the featured settings page"] = "retourner à la page des paramètres des fonctionnalités"; +App::$strings["Post to Pump.io"] = "Publier sur Pump.io"; +App::$strings["Pump.io servername"] = "Nom du serveur Pump.io"; +App::$strings["Without \"http://\" or \"https://\""] = "Sans \"http://\" ou \"https://\""; +App::$strings["Pump.io username"] = "Identifiant Pump.io"; +App::$strings["Without the servername"] = "Sans le nom de serveur"; +App::$strings["You are not authenticated to pumpio"] = "Vous n'êtes pas connecté à Pump.io"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "Authentifiez-vous à nouveau auprès de Pump.io"; +App::$strings["Enable pump.io Post Plugin"] = "Activer le plugin de publication Pump.io"; +App::$strings["Post to pump.io by default"] = "Par défaut, publier sur Pump.io"; +App::$strings["Should posts be public"] = "Les publications doivent-elles être publiques ?"; +App::$strings["Mirror all public posts"] = "Créer une copie miroir de toutes les publications publiques"; +App::$strings["Pump.io Post Settings"] = "Paramètres de publication Pump.io"; +App::$strings["PumpIO Settings saved."] = "Paramètres Pump.io sauvegardés."; +App::$strings["An account has been created for you."] = "Un compte a été créé pour vous."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "L'authentification a réussi mais a été rejetée : la création de comptes est désactivée."; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Recherche %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = "Chercher dans \$Projectname"; +App::$strings["Redmatrix File Storage Import"] = "Importation du fichier de stockage Redmatrix"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Ceci importera tous vos fichiers Redmatrix dans ce canal."; +App::$strings["file"] = "fichier"; +App::$strings["Send email to all members"] = "Envoyer un mail à tous les membres"; +App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d message(s) envoyés sur %2\$d."; +App::$strings["Send email to all hub members."] = "Envoyer un e-mail à tous les membres du hub."; +App::$strings["Sender Email address"] = "Adresse mail de l'expéditeur"; +App::$strings["Test mode (only send to hub administrator)"] = "Mode test (uniquement envoyé à l'administrateur du hub)"; +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["likes %1\$s's %2\$s"] = "aime le %2\$s de %1\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "n'aime pas le %2\$s de%1\$s "; +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["Loading..."] = "Chargement..."; +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["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["Choose a different album..."] = "Choisissez un autre album"; +App::$strings["Comments enabled"] = "Commentaires activés"; +App::$strings["Comments disabled"] = "Commentaires désactivés"; +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["Disable comments"] = "Désactiver les commentaires"; +App::$strings["Toggle comments"] = "Basculer les commentaires"; +App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; +App::$strings["Other networks and post services"] = "Autres réseaux et services de messagerie"; +App::$strings["Set publish date"] = "Définir la date de publication"; +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"] = "Avec étoile"; +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["Profile Details"] = "Détails du profil"; +App::$strings["Photo Albums"] = "Albums photo"; +App::$strings["Files and Storage"] = "Fichiers et Stockage"; +App::$strings["Bookmarks"] = "Favoris"; +App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; +App::$strings["View Cards"] = "Voir cartes"; +App::$strings["articles"] = "articles"; +App::$strings["View Articles"] = "Voir articles"; +App::$strings["View Webpages"] = "Voir 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["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["%1\$s's bookmarks"] = "Favoris de %1\$s"; +App::$strings["Unable to import a removed channel."] = "Impossible d'importer un canal supprimé."; +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["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import."; App::$strings["prev"] = "préc."; App::$strings["first"] = "premier"; App::$strings["last"] = "dernier"; -App::$strings["next"] = "suiv."; +App::$strings["next"] = "Suivant"; App::$strings["older"] = "plus ancien"; App::$strings["newer"] = "plus récent"; -App::$strings["No connections"] = "Sans relations"; -App::$strings["%d Connection"] = array( - 0 => "%d relation", - 1 => "%d relations", -); -App::$strings["View Connections"] = "Voir les relations"; -App::$strings["Save"] = "Sauver"; -App::$strings["poke"] = "cogne"; -App::$strings["poked"] = "C'est fait cogner"; -App::$strings["ping"] = "solliciter"; -App::$strings["pinged"] = "sollicité"; -App::$strings["prod"] = "aiguillonner"; -App::$strings["prodded"] = "aiguillonné"; -App::$strings["slap"] = "giffle"; -App::$strings["slapped"] = "gifflé"; +App::$strings["No connections"] = "Pas de contact."; +App::$strings["View all %s connections"] = "Voir les %s contacts"; +App::$strings["poke"] = "tapoter"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "pingé"; +App::$strings["prod"] = "encourager"; +App::$strings["prodded"] = "à encouragé"; +App::$strings["slap"] = "giffler"; +App::$strings["slapped"] = "gifflé(e)"; App::$strings["finger"] = "pointer"; App::$strings["fingered"] = "pointé"; App::$strings["rebuff"] = "rejetter"; -App::$strings["rebuffed"] = "rejetté"; +App::$strings["rebuffed"] = "rejeté"; App::$strings["happy"] = "heureux"; App::$strings["sad"] = "triste"; App::$strings["mellow"] = "mélancolique"; App::$strings["tired"] = "fatigué"; App::$strings["perky"] = "impertinent"; -App::$strings["angry"] = "colèrique"; -App::$strings["stupified"] = "stupéfié"; +App::$strings["angry"] = "en colère"; +App::$strings["stupefied"] = "stupéfait"; App::$strings["puzzled"] = "perplexe"; App::$strings["interested"] = "intéressé"; App::$strings["bitter"] = "amer"; -App::$strings["cheerful"] = "entrain"; -App::$strings["alive"] = "énergique"; +App::$strings["cheerful"] = "plein d'entrain"; +App::$strings["alive"] = "vivant"; App::$strings["annoyed"] = "agaçé"; App::$strings["anxious"] = "anxieux"; App::$strings["cranky"] = "énervé"; @@ -171,637 +2831,80 @@ App::$strings["September"] = "Septembre"; App::$strings["October"] = "Octobre"; App::$strings["November"] = "Novembre"; App::$strings["December"] = "Décembre"; -App::$strings["unknown.???"] = "inconnu.???"; -App::$strings["bytes"] = "octets"; +App::$strings["Unknown Attachment"] = "Pièce jointe inconnue"; +App::$strings["unknown"] = "Inconnu"; App::$strings["remove category"] = "supprimer la catégorie"; App::$strings["remove from file"] = "retirer du fichier"; -App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; -App::$strings["Link to Source"] = "Lien vers la Source"; +App::$strings["Download binary/encrypted content"] = "Télécharger le contenu binaire/chiffré"; App::$strings["default"] = "défaut"; -App::$strings["Page layout"] = "Mises en page"; -App::$strings["You can create your own with the layouts tool"] = "Créez les votres avec les outils de mise en page"; -App::$strings["Page content type"] = "Type de contenu"; -App::$strings["Select an alternate language"] = "Choisir une langue alternative"; -App::$strings["photo"] = "photo"; -App::$strings["event"] = "événement"; -App::$strings["status"] = "le statut"; -App::$strings["comment"] = "commentaire"; +App::$strings["Page layout"] = "Mise en page"; +App::$strings["You can create your own with the layouts tool"] = "Créez les vôtres avec les outils de mise en page"; +App::$strings["HTML"] = "HTML"; +App::$strings["Comanche Layout"] = "mise en page Comanche"; +App::$strings["PHP"] = "PHP"; +App::$strings["Page content type"] = "Type de contenu de la page"; App::$strings["activity"] = "activité"; +App::$strings["a-z, 0-9, -, and _ only"] = "a-z, 0-9, -, -, et _ seulement"; App::$strings["Design Tools"] = "Outils de conception"; -App::$strings["Blocks"] = "Blocs"; -App::$strings["Menus"] = "Menus"; -App::$strings["Layouts"] = "Mises-en-page"; App::$strings["Pages"] = "Pages"; -App::$strings["Categories"] = "Catégories"; -App::$strings["System"] = "Système"; -App::$strings["Personal"] = "Personnel"; -App::$strings["Create Personal App"] = "Créer Votre Application"; -App::$strings["Edit Personal App"] = "Éditer Votre Application"; -App::$strings["Connect"] = "Ajouter"; -App::$strings["Ignore/Hide"] = "Ignorer/Cacher"; -App::$strings["Suggestions"] = "Suggestion"; -App::$strings["See more..."] = "Voir plus..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f des %2$.0f relations autorisées."; -App::$strings["Add New Connection"] = "Ajouter une nouvelle relation"; -App::$strings["Enter the channel address"] = "Adresse du canal"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple : bob@exemple.com, http://exemple.com/barbara"; -App::$strings["Notes"] = "Notes"; -App::$strings["Remove term"] = "Retirer le terme"; -App::$strings["Saved Searches"] = "Recherches sauvées"; -App::$strings["add"] = "ajouter"; -App::$strings["Saved Folders"] = "Dossiers sauvegardés"; -App::$strings["Everything"] = "Tout"; -App::$strings["Archives"] = "Archives"; -App::$strings["Me"] = "Moi"; -App::$strings["Family"] = "Famille"; -App::$strings["Friends"] = "Amis"; -App::$strings["Acquaintances"] = "Mes connaissances"; -App::$strings["All"] = "Tout"; -App::$strings["Refresh"] = "Actualiser"; -App::$strings["Account settings"] = "Réglages du Compte"; -App::$strings["Channel settings"] = "Réglages du Canal"; -App::$strings["Additional features"] = "Fonctions supplémentaires"; -App::$strings["Feature/Addon settings"] = "Extensions"; -App::$strings["Display settings"] = "Réglages d'affichage"; -App::$strings["Connected apps"] = "Applications connectées"; -App::$strings["Export channel"] = "Exporter le canal"; -App::$strings["Connection Default Permissions"] = "Permissions par défaut des connexions"; -App::$strings["Premium Channel Settings"] = "Canal VIP"; -App::$strings["Channel Sources"] = "Canaux sources"; -App::$strings["Messages"] = "Messages"; -App::$strings["Check Mail"] = "Vérifier le courrier"; -App::$strings["Chat Rooms"] = "Salons de clavardage"; -App::$strings["Bookmarked Chatrooms"] = "Salons favoris"; -App::$strings["Suggested Chatrooms"] = "Salons suggérés"; -App::$strings["photo/image"] = "photo/image"; -App::$strings["Rate Me"] = "Me noter"; -App::$strings["View Ratings"] = "Voir mes notes"; -App::$strings["Public Hubs"] = "Instances publiques"; -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["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["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["created a new post"] = "a publié"; -App::$strings["commented on %s's post"] = "a commenté la publication de %s"; -App::$strings["Private Message"] = "Message Privé"; -App::$strings["Select"] = "Sélectionner"; -App::$strings["Save to Folder"] = "Sauvegarder dans le dossier"; -App::$strings["I will attend"] = "J'y serais"; -App::$strings["I will not attend"] = "Je n'y serais pas"; -App::$strings["I might attend"] = "J'y serais peut-être"; -App::$strings["I agree"] = "J'approuve"; -App::$strings["I disagree"] = "Je désapprouve"; -App::$strings["I abstain"] = "Je m'abstiens"; -App::$strings["View all"] = "Voir tout"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "J'aime", - 1 => "J'aime", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Je déteste", - 1 => "Je déteste", -); -App::$strings["Add Star"] = "Ajouter Étoile"; -App::$strings["Remove Star"] = "Supprimer Étoile"; -App::$strings["Toggle Star Status"] = "Changer le Statut des Étoiles"; -App::$strings["starred"] = "mis en avant"; -App::$strings["Message signature validated"] = "Signature du message validée"; -App::$strings["Message signature incorrect"] = "Signature du message incorrecte"; -App::$strings["Add Tag"] = "Ajouter une balise"; -App::$strings["I like this (toggle)"] = "J'aime (oui/non)"; -App::$strings["like"] = "aime"; -App::$strings["I don't like this (toggle)"] = "Je déteste (oui/non)"; -App::$strings["dislike"] = "déteste"; -App::$strings["Share This"] = "Partager"; -App::$strings["share"] = "partager"; -App::$strings["%d comment"] = array( - 0 => "%d commentaire", - 1 => "%d commentaires", -); -App::$strings["View %s's profile - %s"] = "Voir le profil de %s - %s"; -App::$strings["to"] = "à"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Mur-mur"; -App::$strings["via Wall-To-Wall:"] = "par Mur-mur :"; -App::$strings["from %s"] = "de %s"; -App::$strings["last edited: %s"] = "dernière édition : %s"; -App::$strings["Expires: %s"] = "Expire : %s"; -App::$strings["Save Bookmarks"] = "Enregistrer un favori"; -App::$strings["Add to Calendar"] = "Ajouter au Calendrier"; -App::$strings["Mark all seen"] = "Tout marquer comme vu"; -App::$strings["__ctx:noun__ Likes"] = "Aimes"; -App::$strings["__ctx:noun__ Dislikes"] = "Détestes"; -App::$strings["Close"] = "Fermer"; -App::$strings["Please wait"] = "Merci de patienter"; -App::$strings["[+] show all"] = "[+] voir plus"; -App::$strings["This is you"] = "C'est vous"; -App::$strings["Comment"] = "Commenter"; -App::$strings["Submit"] = "Envoyer"; -App::$strings["Bold"] = "Gras"; -App::$strings["Italic"] = "Italique"; -App::$strings["Underline"] = "Souligné"; -App::$strings["Quote"] = "Citation"; -App::$strings["Code"] = "Code"; -App::$strings["Image"] = "Image"; -App::$strings["Insert Link"] = "Insérer un lien"; -App::$strings["Video"] = "Vidéo"; -App::$strings["Preview"] = "Aperçu"; -App::$strings["Encrypt text"] = "Chiffrer le texte"; -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'enregistrement 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 à %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 possible avec la formule choisie."; -App::$strings["Embedded content"] = "Contenu imbriqué"; -App::$strings["Embedding disabled"] = "Imbrication désactivée"; -App::$strings["Visible to your default audience"] = "Visible pour vos contacts seulement."; -App::$strings["Show"] = "Montrer"; -App::$strings["Don't show"] = "Cacher"; -App::$strings["Permissions"] = "Permissions"; -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 %1\$s de %2\$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["Public Timeline"] = "Fil public"; -App::$strings["Site Admin"] = "Administrateur"; -App::$strings["Address Book"] = "Carnet d'adresse"; -App::$strings["Profile"] = "Profil"; -App::$strings["Mood"] = "Humeur"; -App::$strings["Poke"] = "Cogner"; -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["Language"] = "Langue"; -App::$strings["Post"] = "Envoyer"; -App::$strings["Profile Photo"] = "Photo du Profil"; -App::$strings["Update"] = "Mise-à-jour"; -App::$strings["Install"] = "Installer"; -App::$strings["Purchase"] = "Acheter"; -App::$strings["Permission denied."] = "Permission refusée."; -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é. Envoi impossible."; -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 BD a échoué"; -App::$strings["Logged out."] = "Deconnecté."; -App::$strings["Failed authentication"] = "Échec de l'authentification"; -App::$strings["Login failed."] = "Échec de la connexion."; -App::$strings["Attachments:"] = "Pièces jointes:"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi"; -App::$strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname"; -App::$strings["Starts:"] = "Début :"; -App::$strings["Finishes:"] = "Fin :"; -App::$strings["Location:"] = "Emplacement :"; -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["webpage"] = "Pages web"; -App::$strings["layout"] = "Mises en page"; -App::$strings["block"] = "Bloquer"; -App::$strings["menu"] = "Menu"; -App::$strings["QR code"] = "code QR"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; -App::$strings["post"] = "l'article"; -App::$strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des navigateurs"; -App::$strings["$1 spoiler"] = "Dévoile : $1"; -App::$strings["$1 wrote:"] = "$1 a écrit :"; -App::$strings["%1\$s's bookmarks"] = "Favoris de %1\$s"; -App::$strings["Missing room name"] = "Il manque le nom du salon"; -App::$strings["Duplicate room name"] = "Un salon de ce nom existe déjà"; -App::$strings["Invalid room specifier."] = "Identifiant de salon invalide."; -App::$strings["Room not found."] = "Salon introuvable."; -App::$strings["Room is full"] = "Le salon est plein"; -App::$strings["Default"] = "Défaut"; -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["Frequently"] = "Constamment"; -App::$strings["Hourly"] = "Chaque heure"; -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["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "Courriel"; -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["Import website..."] = "Importer le site web…"; +App::$strings["Select folder to import"] = "Sélectionner le dossier à importer"; +App::$strings["Import from a zipped folder:"] = "Importer à partir d'un dossier zippé :"; +App::$strings["Import from cloud files:"] = "Importer à partir de fichiers dans le cloud :"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/chemain/du/repertoire"; +App::$strings["Enter path to website files"] = "Entrer le chemin vers les fichiers du site web"; +App::$strings["Select folder"] = "Sélectionner un répertoire"; +App::$strings["Export website..."] = "Exporter le site web…"; +App::$strings["Export to a zip file"] = "Exporter dans un fichier zip"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "Entrer un nom pour le fichier zip."; +App::$strings["Export to cloud files"] = "Exporter dans des fichiers sur le cloud"; +App::$strings["/path/to/export/folder"] = "/chemin/vers/le/dossier/d'export"; +App::$strings["Enter a path to a cloud files destination."] = "Entrer le chemin vers le cloud de fichiers"; +App::$strings["Specify folder"] = "Spécifier un répertoire"; App::$strings["%d invitation available"] = array( 0 => "%d invitation disponible", 1 => "%d invitations disponibles", ); -App::$strings["Advanced"] = "Avancé"; 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: Robert Morgenstein, Course à pieds"; -App::$strings["Find"] = "Trouver"; -App::$strings["Channel Suggestions"] = "Canaux suggérés"; +App::$strings["Connect/Follow"] = "Lier et 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 relation en commun", - 1 => "%d relations en commun", -); -App::$strings["show more"] = "montrer plus"; -App::$strings["channel"] = "canal"; -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 déteste %3\$s de %2\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses relations"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s a cogné %2\$s"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s"; -App::$strings["__ctx:title__ Likes"] = "J'aime"; -App::$strings["__ctx:title__ Dislikes"] = "Je n'aime pas"; -App::$strings["__ctx:title__ Agree"] = "Accord"; -App::$strings["__ctx:title__ Disagree"] = "Désaccord"; -App::$strings["__ctx:title__ Abstain"] = "Abstention"; -App::$strings["__ctx:title__ Attending"] = "Participations"; -App::$strings["__ctx:title__ Not attending"] = "Non-participations"; -App::$strings["__ctx:title__ Might attend"] = "Participation possible"; -App::$strings["View %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 discussion"; -App::$strings["View Status"] = "Voir état"; -App::$strings["View Photos"] = "Voir photos"; -App::$strings["Matrix Activity"] = "Activité sur la matrice"; -App::$strings["Edit Contact"] = "Éditer contact"; -App::$strings["Send PM"] = "Envoyer un Message Privé"; -App::$strings["%s likes this."] = "%s aime ça."; -App::$strings["%s doesn't like this."] = "%s déteste ça."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "%2\$d personne(s) aime(nt) ça.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "%2\$d personne(s) déteste(nt) ça.", -); -App::$strings["and"] = "et"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", et %d autre(s) personne(s)", -); -App::$strings["%s like this."] = "%s aime ça."; -App::$strings["%s don't like this."] = "%s déteste ça."; -App::$strings["Visible to everybody"] = "Visible par tout le monde"; -App::$strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien :"; -App::$strings["Please enter a video link/URL:"] = "Merci d'entrer l'URL d'une video :"; -App::$strings["Please enter an audio link/URL:"] = "Merci d'entrer l'URL d'un contenu audio&nsbp;:"; -App::$strings["Tag term:"] = "Étiquette :"; -App::$strings["Save to Folder:"] = "Classer dans le dossier :"; -App::$strings["Where are you right now?"] = "Où êtes-vous présentement?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expire YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Partager"; -App::$strings["Page link name"] = "Nom du lien vers la page"; -App::$strings["Post as"] = "Publier en tant que"; -App::$strings["Upload photo"] = "Téléverser une photo"; -App::$strings["upload photo"] = "téléverser une photo"; -App::$strings["Attach file"] = "Attacher un fichier"; -App::$strings["attach file"] = "attacher un fichier"; -App::$strings["Insert web link"] = "Insérer lien web"; -App::$strings["web link"] = "lien web"; -App::$strings["Insert video link"] = "Insérer lien vidéo"; -App::$strings["video link"] = "lien vidéo"; -App::$strings["Insert audio link"] = "Insérer un lien audio"; -App::$strings["audio link"] = "lien audio"; -App::$strings["Set your location"] = "Spécifier votre emplacement géographique"; -App::$strings["set location"] = "spécifier l'emplacement géographique"; -App::$strings["Toggle voting"] = "(Dés)activer le vote"; -App::$strings["Clear browser location"] = "Nettoyer l'emplacement géographique du navigateur"; -App::$strings["clear location"] = "nettoyer l'emplacement géographique"; -App::$strings["Title (optional)"] = "Titre (facultatif)"; -App::$strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)"; -App::$strings["Permission settings"] = "Permissions"; -App::$strings["permissions"] = "permissions"; -App::$strings["Public post"] = "Contenu public"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Exemple: robert@exemple.com, marie@exemple.com"; -App::$strings["Set expiration date"] = "Définir la date d'expiration"; -App::$strings["OK"] = "Ok"; -App::$strings["Cancel"] = "Annuler"; -App::$strings["Discover"] = "À découvrir"; -App::$strings["Imported public streams"] = "Flux publics importés"; -App::$strings["Commented Order"] = "Commentaires Récents"; -App::$strings["Sort by Comment Date"] = "Trier par date de dernier commentaire"; -App::$strings["Posted Order"] = "Publications Récentes"; -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["New"] = "Nouveautés"; -App::$strings["Activity Stream - by date"] = "Flux d'activité - par date"; -App::$strings["Starred"] = "Mis en avant"; -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["Channel"] = "Canal"; -App::$strings["Status Messages and Posts"] = "Messages d'état et contributions"; -App::$strings["About"] = "À propos"; -App::$strings["Profile Details"] = "Détails du profil"; -App::$strings["Photo Albums"] = "Albums photo"; -App::$strings["Files and Storage"] = "Fichiers et Stockage"; -App::$strings["Chatrooms"] = "Salons de clavardage"; -App::$strings["Saved Bookmarks"] = "Favoris sauvegardés"; -App::$strings["Manage Webpages"] = "Gérer les pages web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participation", - 1 => "Participations", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non-participation", - 1 => "Non-participations", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indécis", - 1 => "", -); -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 => "Sans opinion", - 1 => "Sans opinion", -); -App::$strings["Miscellaneous"] = "Divers"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; -App::$strings["Required"] = "Requis"; -App::$strings["never"] = "jamais"; -App::$strings["less than a second ago"] = "à l'instant"; -App::$strings["year"] = "année"; -App::$strings["years"] = "années"; -App::$strings["month"] = "mois"; -App::$strings["months"] = "mois"; -App::$strings["week"] = "semaine"; -App::$strings["weeks"] = "semaines"; -App::$strings["day"] = "jour"; -App::$strings["days"] = "jours"; -App::$strings["hour"] = "heure"; -App::$strings["hours"] = "heures"; -App::$strings["minute"] = "minute"; -App::$strings["minutes"] = "minutes"; -App::$strings["second"] = "seconde"; -App::$strings["seconds"] = "secondes"; -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["%1\$s's birthday"] = "Anniversaire de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s"; -App::$strings["Please choose"] = "Merci de choisir"; -App::$strings["Agree"] = "D'accord"; -App::$strings["Disagree"] = "Pas d'accord"; -App::$strings["Abstain"] = "Abstention"; -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["Directory Options"] = "Options d'annuaire"; -App::$strings["Safe Mode"] = "Mode sûr"; -App::$strings["No"] = "Non"; -App::$strings["Yes"] = "Oui"; -App::$strings["Public Forums Only"] = "Seulement les forums publics"; -App::$strings["This Website Only"] = "Juste ce site"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Notification] Nouveau message reçu sur %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, vous avez reçu un message privé sur %3\$s, de la part de %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; -App::$strings["a private message"] = "un message privé"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté sur [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s a commenté sur [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]votre %4\$s[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notification] Commentaire de %2\$s sur conversation #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation."; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Matrice Rouge:Notification] %s a publié sur votre profil"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a publié sur votre profil à %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a publié sur [zrl=%3\$s]votre profil[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Notification] %s vous a étiqueté"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a étiqueté[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Notification] %1\$s vous a cogné"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, vous avez été cogné/pointé/sollicité par %2\$s sur %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a cogné[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Matrice Rouge:Notification] %s a étiqueté votre publication"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a étiqueté votre publication sur %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a étiqueté [zrl=%3\$s]votre publication[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Notification] Nouvelle introduction"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une demande de mise en relation de '%2\$s' sur %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une demande de mise en relation[/zrl] de %3\$s."; -App::$strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Merci de visiter %s avant d'approuver (ou non) cette demande de relation."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Matrice Rouge:Notification] Nouvelle suggestion d'amitié"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion de relation de '%2\$s' à %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion de relation[/zrl] de %4\$s."; -App::$strings["Name:"] = "Nom :"; -App::$strings["Photo:"] = "Photo :"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion."; -App::$strings["[Red:Notify]"] = "[Red:Notification]"; -App::$strings["This event has been added to your calendar."] = "Cet événement a été ajouté à votre calendrier."; -App::$strings["General Features"] = "Fonctionnalités générales"; -App::$strings["Content Expiration"] = "Expiration de 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"; -App::$strings["Multiple Profiles"] = "Profils multiples"; -App::$strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; -App::$strings["Advanced Profiles"] = "Profils Avancés"; -App::$strings["Additional profile sections and selections"] = "Sections additionnelles du profil"; -App::$strings["Profile Import/Export"] = "Importer/Exporter le profil"; -App::$strings["Save and load profile details across sites/channels"] = "Distribuer les détails du profil sur la matrice."; -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["Private Notes"] = "Notes privées"; -App::$strings["Enables a tool to store notes and reminders"] = "Active un outil pour stocker notes et mémos"; -App::$strings["Navigation Channel Select"] = "Sélection du canal par la navigation"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Changez de canal directement depuis le menu de navigation"; -App::$strings["Photo Location"] = "Localisation des photos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si des informations géographiques sont présentes dans les images téléversées, les afficher sur une carte."; -App::$strings["Expert Mode"] = "Mode expert"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Activer le mode expert pour accéder aux options avancées"; -App::$strings["Premium Channel"] = "Canal VIP"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux relations de votre canal"; -App::$strings["Post Composition Features"] = "Fonctionnalités de composition"; -App::$strings["Use Markdown"] = "Utiliser Markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Authoriser l'usage de \"Markdown\" pour le format des partages"; -App::$strings["Large Photos"] = "Grandes photos"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inclure une version large (640px) des aperçus dans les publications. Si désactivé, seulement inclure des aperçus de 320px."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal en cours"; -App::$strings["Even More Encryption"] = "Encore plus de chiffrement"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement - optionnel - du contenu de bout-en-bout au moyen d'un secret partagé"; -App::$strings["Enable voting tools"] = "Activer les outils de vote"; -App::$strings["Provide a class of post which others can vote on"] = "Fournit un type de publication sur lequel les utilisateurs peuvent se prononcer"; -App::$strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux"; -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["Collections Filter"] = "Filtre des collections"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Activer une boîte qui permet de filtrer les publications du réseau parmi les collections selectionnées"; -App::$strings["Save search terms for re-use"] = "Sauver des termes de recherche pour utilisation ultérieure"; -App::$strings["Network Personal Tab"] = "Onglet \"réseau personnel\""; -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"; -App::$strings["Network New Tab"] = "Onglet \"nouveautés réseau\""; -App::$strings["Enable tab to display all new Network activity"] = "Activer un onglet avec toute activité récente sur le réseau"; -App::$strings["Affinity Tool"] = "Gérer l'affinité"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations"; -App::$strings["Connection Filtering"] = "Filtrage de connexions"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrez les publications par leurs connexions, d'après des mots clés"; -App::$strings["Suggest Channels"] = "Suggérer des canaux"; -App::$strings["Show channel suggestions"] = "Montrer les suggestions de canaux"; -App::$strings["Post/Comment Tools"] = "Gérer les publications/commentaires"; -App::$strings["Tagging"] = "Étiquettes"; -App::$strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes"; -App::$strings["Post Categories"] = "Catégoriser les publications"; -App::$strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; -App::$strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers"; -App::$strings["Dislike Posts"] = "Détester les publications"; -App::$strings["Ability to dislike posts/comments"] = "Pouvoir détester les publications/commentaires"; -App::$strings["Star Posts"] = "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["Common Connections"] = "Connexions communes"; +App::$strings["View all %d common connections"] = "Voir toutes les connexions communes %d"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s"; 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["Premium channel - please visit:"] = "Canal Premium - s'il vous plaît visitez :"; App::$strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus."; +App::$strings["Remote channel or protocol unavailable."] = "Canal distant ou protocole indisponible."; +App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué."; App::$strings["Protocol disabled."] = "Protocole désactivé."; -App::$strings["Protocol blocked for this channel."] = "Protocole bloqué pour ce canal."; -App::$strings["Channel discovery failed."] = "La tentative d'accéder au canal a échouée."; -App::$strings["local account not found."] = "compte local introuvable."; App::$strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous."; -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 recréer un nouveau groupe avec un nom différent."; -App::$strings["Default privacy group for new contacts"] = "Groupe de confidentialité par défaut pour les nouveaux contacts"; -App::$strings["All Channels"] = "Tous canaux"; -App::$strings["edit"] = "éditer"; -App::$strings["Collections"] = "Collections"; -App::$strings["Edit collection"] = "Éditer collection"; -App::$strings["Add new collection"] = "Ajouter une nouvelle collection"; -App::$strings["Channels not in any collection"] = "Ces canaux ne sont dans aucune collection"; -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."] = "Pseudonyme réservé. Merci d'en choisir un autre."; -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["Requested profile is not available."] = "Profil demandé inaccessible."; -App::$strings["Change profile photo"] = "Changer la photo du profil"; -App::$strings["Profiles"] = "Profils"; -App::$strings["Manage/edit profiles"] = "Gérer/éditer les profils"; -App::$strings["Create New Profile"] = "Créer un nouveau profil"; -App::$strings["Profile Image"] = "Image du profil"; -App::$strings["visible to everybody"] = "visible pour tous"; -App::$strings["Edit visibility"] = "Éditer la visibilité"; -App::$strings["Gender:"] = "Sexe :"; -App::$strings["Status:"] = "État :"; -App::$strings["Homepage:"] = "Site web :"; -App::$strings["Online Now"] = "Connecté"; -App::$strings["g A l F d"] = "H:i l d F"; -App::$strings["F d"] = "d F"; -App::$strings["[today]"] = "[aujourd'hui]"; -App::$strings["Birthday Reminders"] = "Rappels d'anniversaires"; -App::$strings["Birthdays this week:"] = "Anniversaires cette semaine :"; -App::$strings["[No description]"] = "[Pas de description]"; -App::$strings["Event Reminders"] = "Rappels d'événements"; -App::$strings["Events this week:"] = "Événements cette semaine :"; -App::$strings["Full Name:"] = "Nom complet :"; -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["Age:"] = "Age :"; -App::$strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; -App::$strings["Hometown:"] = "Ville natale :"; -App::$strings["Tags:"] = "Étiquettes:"; -App::$strings["Political Views:"] = "Opinions politiques :"; -App::$strings["Religion:"] = "Religion :"; -App::$strings["About:"] = "À propos :"; -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 :"; -App::$strings["School/education:"] = "Cursus :"; -App::$strings["Like this thing"] = "J'aime ceci"; -App::$strings["Permission denied"] = "Accès refusé"; -App::$strings["(Unknown)"] = "(Inconnu)"; -App::$strings["Visible to anybody on the internet."] = "Visible à tout le monde sur internet."; -App::$strings["Visible to you only."] = "Visible pour vous seulement."; -App::$strings["Visible to anybody in this network."] = "Visible sur toute la Matrice."; -App::$strings["Visible to anybody authenticated."] = "Visible aux usagers 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 à certaines connexions."; -App::$strings["Item not found."] = "Élément introuvable."; -App::$strings["Collection not found."] = "Collection introuvable."; -App::$strings["Collection is empty."] = "Collection vide."; -App::$strings["Collection: %s"] = "Collection : %s"; -App::$strings["Connection: %s"] = "Relation : %s"; -App::$strings["Connection not found."] = "Relation introuvable."; App::$strings["Delete this item?"] = "Supprimer cet élément?"; -App::$strings["[-] show less"] = "[-] montrer moins"; -App::$strings["[+] expand"] = "[+] déplier"; -App::$strings["[-] collapse"] = "[-] replier"; +App::$strings["%s show less"] = "%s afficher moins"; +App::$strings["%s expand"] = "%s dérouler"; +App::$strings["%s collapse"] = "%s enrouler"; 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"; App::$strings["Secret Passphrase"] = "Phrase de passe secrète"; App::$strings["Passphrase hint"] = "Indice pour la phrase de passe"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Note : Les permissions ont changées, mais n'ont pas encore été sauvées."; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Note : Les droits d'accès ont changé, mais n'ont pas encore été enregistrés."; App::$strings["close all"] = "fermer tout"; App::$strings["Nothing new here"] = "Aucun nouveau contenu trouvé"; -App::$strings["Rate This Channel (this is public)"] = "Noter ce canal (publiquement)"; -App::$strings["Rating"] = "Note"; +App::$strings["Rate This Channel (this is public)"] = "Evaluer ce canal (publiquement)"; App::$strings["Describe (optional)"] = "Description (facultative)"; App::$strings["Please enter a link URL"] = "Merci d'insérer une URL"; App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Changements en attente. Voulez-vous vraiment quitter cette page?"; App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "auparavant"; -App::$strings["from now"] = "de maintenant"; +App::$strings["timeago.suffixAgo"] = "timeago.suffixAgo"; +App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow"; App::$strings["less than a minute"] = "moins d'une minute"; App::$strings["about a minute"] = "environ une minute"; App::$strings["%d minutes"] = "%d minutes"; @@ -815,1257 +2918,12 @@ App::$strings["about a year"] = "environ un an"; App::$strings["%d years"] = "%d années"; App::$strings[" "] = " "; App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["New Page"] = "Nouvelle page"; -App::$strings["View"] = "Voir"; -App::$strings["Actions"] = "Actions"; -App::$strings["Page Link"] = "Lien vers la page"; -App::$strings["Title"] = "Titre"; -App::$strings["Created"] = "Créé"; -App::$strings["Edited"] = "Édité"; -App::$strings["Can view my normal stream and posts"] = "Peut voir les publications sur mon canal et ses partages."; -App::$strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut."; -App::$strings["Can view my photo albums"] = "Peut voir mon album photos"; -App::$strings["Can view my connections"] = "Peut voir mes connections"; -App::$strings["Can view my file storage"] = "Peut voir mes fichiers en partage"; -App::$strings["Can view my webpages"] = "Peut voir mes sites-web"; -App::$strings["Can send me their channel stream and posts"] = "Peut m'envoyer le flux et les publications de leur canal"; -App::$strings["Can post on my channel page (\"wall\")"] = "Peut 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"] = "Peut m'envoyer des messages privés"; -App::$strings["Can post photos to my photo albums"] = "Peut ajouter des photos à mes albums"; -App::$strings["Can like/dislike stuff"] = "Peuvent aimer/détester"; -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 du mon canal via @truc"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avancé - utile seulement pour les canaux de type \"forum/groupe\""; -App::$strings["Can chat with me (when available)"] = "Peut discuter avec moi (sous réserve de disponibilité)"; -App::$strings["Can write to my file storage"] = "Peut écrire dans mon partage de fichiers"; -App::$strings["Can edit my webpages"] = "Peut modifier mes sites-web"; -App::$strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques dans 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 VRAIMENT ce que vous faites"; -App::$strings["Social Networking"] = "Réseau social"; -App::$strings["Mostly Public"] = "Surtout public"; -App::$strings["Restricted"] = "Accès restreint"; -App::$strings["Private"] = "Privé"; -App::$strings["Community Forum"] = "Forum communautaire"; -App::$strings["Feed Republish"] = "Republication de flux"; -App::$strings["Special Purpose"] = "Utilisation spécifique"; -App::$strings["Celebrity/Soapbox"] = "Page de célébrité/tribune"; -App::$strings["Group Repository"] = "Espace de groupe"; -App::$strings["Other"] = "Autre"; -App::$strings["Custom/Expert Mode"] = "Mode expert/spécifique"; -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["Unable to process image"] = "Impossible de traiter l'image"; -App::$strings["Photo storage failed."] = "Le stockage de l'image a échoué."; -App::$strings["Upload New Photos"] = "Ajouter des photos"; -App::$strings["Tags"] = "Étiquettes"; -App::$strings["Keywords"] = "Mots-clefs"; -App::$strings["have"] = "ont"; -App::$strings["has"] = "a"; -App::$strings["want"] = "veulent"; -App::$strings["wants"] = "veut"; -App::$strings["likes"] = "aiment"; -App::$strings["dislikes"] = "détestent"; -App::$strings["Male"] = "Masculin"; -App::$strings["Female"] = "Féminin"; -App::$strings["Currently Male"] = "Actuellement masculin"; -App::$strings["Currently Female"] = "Actuellement féminin"; -App::$strings["Mostly Male"] = "Surtout masculin"; -App::$strings["Mostly Female"] = "Surtout féminin"; -App::$strings["Transgender"] = "Transgenre"; -App::$strings["Intersex"] = "Intersexuel"; -App::$strings["Transsexual"] = "Transsexuel"; -App::$strings["Hermaphrodite"] = "Hermaphrodite"; -App::$strings["Neuter"] = "Neutre"; -App::$strings["Non-specific"] = "Rien de 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"] = "Nonsexuel"; -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"] = "Infidèle"; -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["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["Message deleted."] = "Message supprimé."; -App::$strings["Message recalled."] = "Message annulé/rappelé."; -App::$strings["Send Private Message"] = "Envoyer un Message Privé"; -App::$strings["To:"] = "À :"; -App::$strings["Subject:"] = "Sujet :"; -App::$strings["Your message:"] = "Votre message :"; -App::$strings["Send"] = "Envoyer"; -App::$strings["Message not found."] = "Message introuvable."; -App::$strings["Delete message"] = "Supprimer message"; -App::$strings["Recall message"] = "Rappeler/annuler le message"; -App::$strings["Message has been recalled."] = "Le message a été rappelé."; -App::$strings["Private Conversation"] = "Conversation privée"; -App::$strings["Delete conversation"] = "Supprimer 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 une réponse"; -App::$strings["Hub not found."] = "Hub introuvable."; -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["Invalid item."] = "Élément invalide."; -App::$strings["Channel not found."] = "Canal introuvable."; -App::$strings["Page not found."] = "Page introuvable."; -App::$strings["Lorem Ipsum"] = ""; -App::$strings["network"] = "réseau"; -App::$strings["RSS"] = "RSS"; -App::$strings["Theme settings updated."] = "Réglages du thème sauvegardés."; -App::$strings["Site"] = "Site"; -App::$strings["Accounts"] = "Comptes"; -App::$strings["Channels"] = "Canaux"; -App::$strings["Plugins"] = "Extensions"; -App::$strings["Themes"] = "Thèmes"; -App::$strings["Inspect queue"] = "Analyser la file d'attente"; -App::$strings["Profile Config"] = "Configurations du profil"; -App::$strings["DB updates"] = "MàJ BD"; -App::$strings["Logs"] = "Journaux"; -App::$strings["Plugin Features"] = "Fonctionnalités liées aux extensions"; -App::$strings["User registrations waiting for confirmation"] = "Inscriptions en attente"; -App::$strings["# Accounts"] = "# Comptes"; -App::$strings["# blocked accounts"] = "# comptes bloqués"; -App::$strings["# expired accounts"] = "# comptes expirés"; -App::$strings["# expiring accounts"] = "# comptes expirant"; -App::$strings["# Channels"] = "# Canaux"; -App::$strings["# primary"] = "# primaire"; -App::$strings["# clones"] = "# clones"; -App::$strings["Message queues"] = "File des messages"; -App::$strings["Administration"] = "Administration"; -App::$strings["Summary"] = "Résumé"; -App::$strings["Registered accounts"] = "Comptes enregistrés"; -App::$strings["Pending registrations"] = "Inscriptions en attente"; -App::$strings["Registered channels"] = "Canaux enregistrés"; -App::$strings["Active plugins"] = "Extensions actives"; -App::$strings["Version"] = "Version"; -App::$strings["Site settings updated."] = "Réglages du site sauvegardés."; -App::$strings["mobile"] = "mobile"; -App::$strings["experimental"] = "expérimental"; -App::$strings["unsupported"] = "non maintenu"; -App::$strings["Yes - with approval"] = "Oui - avec approbation"; -App::$strings["My site is not a public server"] = "Mon site n'est pas un serveur publique"; -App::$strings["My site has paid access only"] = "Mon site est payant"; -App::$strings["My site has free access only"] = "Mon site est gratuit"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mon site offre des comptes gratuits avec des ajouts payants"; -App::$strings["Registration"] = "Inscription"; -App::$strings["File upload"] = "Envoi de fichier"; -App::$strings["Policies"] = "Stratégies"; -App::$strings["Site name"] = "Nom du site"; -App::$strings["Banner/Logo"] = "Bannière/logo"; -App::$strings["Administrator Information"] = "Informations sur l'administrateur"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Coordonnées de l'administrateur du site. Affichée sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici"; -App::$strings["System language"] = "Langue du système"; -App::$strings["System theme"] = "Thème du système"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - modifier le thème"; -App::$strings["Mobile system theme"] = "Thème système pour mobile"; -App::$strings["Theme for mobile devices"] = "Thème dédié aux périphériques mobiles"; -App::$strings["Enable Diaspora Protocol"] = "Activer la compatibilité Diaspora*"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Permet de communiquer avec Diaspora et Friendica - expérimental"; -App::$strings["Allow Feeds as Connections"] = "Autoriser les Flux (RSS) comme Relations"; -App::$strings["(Heavy system resource usage)"] = "(Impact considérable sur les ressources)"; -App::$strings["Maximum image size"] = "Taille maximale des images"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite."; -App::$strings["Does this site allow new member registration?"] = "Est-ce que l'enregistrement de nouveau membres sur ce site est autorisé?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Choisissez le type de comptes offert sur ce hub?"; -App::$strings["Register text"] = "Texte d'inscription"; -App::$strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur le formulaire d'inscription."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Page d'accueil du site à montrer aux visiteurs (par défaut :boîte de dialogue de connexion)"; -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 :'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier."; -App::$strings["Preserve site homepage URL"] = "Garder l'adresse du site."; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger"; -App::$strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour éviter de gaspiller les ressources du système en essayer de mettre à jour des comptes abandonnés. Mettez 0 pour ne pas avoir de limite de temps."; -App::$strings["Allowed friend domains"] = "Domaines amicaux"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - pour lesquels ce site acceptera les demandes d'amitié ou de mise en relation. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."; -App::$strings["Allowed email domains"] = "Domaines de courriels amicaux"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines."; -App::$strings["Not allowed email domains"] = "Domaines de courriel non autorisés"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis."; -App::$strings["Block public"] = "Bloquer public"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour interdire tout accès public, y compris aux pages marquées comme publiques, aux visiteurs anonymes."; -App::$strings["Verify Email Addresses"] = "Demander vérification des adresses de courriel"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé)."; -App::$strings["Force publish"] = "Forcer publication"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire."; -App::$strings["Disable discovery tab"] = "Désactiver l'onglet \"À découvrir\""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Ne pas afficher d'onglet avec des contenus publics automatiquement rassemblées depuis des sources choisies pour ce site."; -App::$strings["login on Homepage"] = "Connexion à partir de la page d'accueil"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré."; -App::$strings["Proxy user"] = "Utilisateurs du proxy"; -App::$strings["Proxy URL"] = "URL du proxy (visiter @proxy-list)"; -App::$strings["Network timeout"] = "Délai maximal du réseau"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (pas recommandé)."; -App::$strings["Delivery interval"] = "Intervalle de distribution"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés."; -App::$strings["Poll interval"] = "Intervalle de scrutation"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution."; -App::$strings["Maximum Load Average"] = "Charge moyenne maximale"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont mis en pause - par défaut 50."; -App::$strings["Expiration period in days for imported (matrix/network) content"] = "Délai d'expiration du contenu importé du réseau, en jours"; -App::$strings["0 for no expiration of imported content"] = "0 pour ne pas expirer le contenu importé"; -App::$strings["No server found"] = "Serveur introuvable"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "pour le canal"; -App::$strings["on server"] = "sur le serveur"; -App::$strings["Status"] = "État"; -App::$strings["Server"] = "Serveur"; -App::$strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie"; -App::$strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système."; -App::$strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non."; -App::$strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable."; -App::$strings["No failed updates."] = "Aucune mise à jour défaillante."; -App::$strings["Failed Updates"] = "Mises à jour défaillantes"; -App::$strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)"; -App::$strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement"; -App::$strings["Queue Statistics"] = "Statistiques de file d'attente"; -App::$strings["Total Entries"] = "Nombre d'entrées total"; -App::$strings["Priority"] = "Priorité"; -App::$strings["Destination URL"] = "URL de destination"; -App::$strings["Mark hub permanently offline"] = "Marquer le hub comme étant hors ligne de manière permanente"; -App::$strings["Empty queue for this hub"] = "Vider la file d'attente pour ce hub"; -App::$strings["Last known contact"] = "Dernier contact connu"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s account deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Account not found"] = "Compte introuvable"; -App::$strings["Account '%s' deleted"] = "Compte '%s' supprimé"; -App::$strings["Account '%s' blocked"] = "Compte '%s' bloqué"; -App::$strings["Account '%s' unblocked"] = "Compte '%s' débloqué"; -App::$strings["Users"] = "Utilisateurs"; -App::$strings["select all"] = "tout sélectionner"; -App::$strings["User registrations waiting for confirm"] = "Inscriptions en attente d'approbation"; -App::$strings["Request date"] = "Date de la demande"; -App::$strings["No registrations."] = "Pas d'inscriptions."; -App::$strings["Approve"] = "Approuver"; -App::$strings["Deny"] = "Refuser"; -App::$strings["Block"] = "Bloquer"; -App::$strings["Unblock"] = "Débloquer"; -App::$strings["Register date"] = "Date d'inscription"; -App::$strings["Last login"] = "Dernière connexion"; -App::$strings["Expires"] = "Expire"; -App::$strings["Service Class"] = "Classe de service"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les comptes sélectionnés seront supprimés !\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le compte {0} sera supprimé !\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive !\\n\\nÊtes-vous sûr ?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "censure modifiée sur %s canal", - 1 => "censure modifiée sur %s canaux", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canal supprimé", - 1 => "%s canaux supprimés", -); -App::$strings["Channel not found"] = "Canal introuvable"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' supprimé"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censuré"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' non-censuré"; -App::$strings["Channel '%s' code allowed"] = "Code autorisé pour le canal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Code interdit pour le canal '%s'"; -App::$strings["Censor"] = "Censurer"; -App::$strings["Uncensor"] = "Ne plus censurer"; -App::$strings["Allow Code"] = "Autoriser le code"; -App::$strings["Disallow Code"] = "Interdire le code"; -App::$strings["UID"] = "UID"; -App::$strings["Address"] = "Adresse"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les canaux sélectionnés seront supprimés!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé!\\n\\nÊtes-vous certain?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le canal {0} sera supprimé!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé!\\n\\nÊtes-vous certain?"; -App::$strings["Plugin %s disabled."] = "Extension %s désactivée."; -App::$strings["Plugin %s enabled."] = "Extension %s activée."; -App::$strings["Disable"] = "Désactiver"; -App::$strings["Enable"] = "Activer"; -App::$strings["Toggle"] = "(Dés)activer"; -App::$strings["Author: "] = "Auteur :"; -App::$strings["Maintainer: "] = "Maintenu par :"; -App::$strings["No themes found."] = "Aucun thème trouvé."; -App::$strings["Screenshot"] = "Aperçu"; -App::$strings["[Experimental]"] = "[Expérimental]"; -App::$strings["[Unsupported]"] = "[Non-supporté]"; -App::$strings["Log settings updated."] = "Réglages du journal sauvegardés."; -App::$strings["Clear"] = "Vider"; -App::$strings["Debugging"] = "Débogage"; -App::$strings["Log file"] = "Fichier du journal"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de votre installation de la Matrice Rouge."; -App::$strings["Log level"] = "Niveau de journalisation"; -App::$strings["New Profile Field"] = "Nouveau champ de profil"; -App::$strings["Field nickname"] = "Nom court du champ"; -App::$strings["System name of field"] = "Nom système du champ"; -App::$strings["Input type"] = "Type de champ"; -App::$strings["Field Name"] = "Nom du champ"; -App::$strings["Label on profile pages"] = "Étiquette sur le profil"; -App::$strings["Help text"] = "Aide à la saisie"; -App::$strings["Additional info (optional)"] = "Informations additionnelles (facultatif)"; -App::$strings["Field definition not found"] = "Définition du champ non-trouvée"; -App::$strings["Edit Profile Field"] = "Éditer le champ de profil"; -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["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 connecter 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["Layout updated."] = "Agencement pris-en-compte."; -App::$strings["Edit System Page Description"] = "Éditer la description"; -App::$strings["Layout not found."] = "Agencement introuvable."; -App::$strings["Module Name:"] = "Nom du module :"; -App::$strings["Layout Help"] = "Aide à la mise en page"; -App::$strings["App installed."] = "Application installée."; -App::$strings["Malformed app."] = "Erreur de l'application - Malformée."; -App::$strings["Embed code"] = "Code intégré"; -App::$strings["Edit App"] = "Edition de l'Application"; -App::$strings["Create App"] = "Création d'une Application"; -App::$strings["Name of app"] = "Nom de l'application"; -App::$strings["Location (URL) of app"] = "Emplacement (Lien) vers l'application"; -App::$strings["Description"] = "Description"; -App::$strings["Photo icon URL"] = "Lien (URL) de l'icône à utiliser pour cette photo"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - optionel"; -App::$strings["Version ID"] = "Version"; -App::$strings["Price of app"] = "Prix de l'application"; -App::$strings["Location (URL) to purchase app"] = "Emplacement (LIEN) pour l'achat de l'application"; -App::$strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page."; -App::$strings["Album not found."] = "Album introuvable."; -App::$strings["Delete Album"] = "Supprimer album"; -App::$strings["Delete Photo"] = "Supprimer photo"; -App::$strings["Public access denied."] = "Accès public refusé."; -App::$strings["No photos selected"] = "Aucune photo selectionnée"; -App::$strings["Access to this item is restricted."] = "L'accès à l'élément est restreint."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos."; -App::$strings["Upload Photos"] = "Téléverser des photos"; -App::$strings["Enter a new album name"] = "Entrer un nouveau nom d'album"; -App::$strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)"; -App::$strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi"; -App::$strings["Album name could not be decoded"] = "Le nom de l'Album n'a pu être décodé"; -App::$strings["Contact Photos"] = "Photos de contact"; -App::$strings["Show Newest First"] = "Ordre anté-chronologique"; -App::$strings["Show Oldest First"] = "Ordre chronologique"; -App::$strings["View Photo"] = "Voir la photo"; -App::$strings["Edit Album"] = "Éditer l'album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint."; -App::$strings["Photo not available"] = "Photo indisponible"; -App::$strings["Use as profile photo"] = "Utiliser comme photo du profil"; -App::$strings["Private Photo"] = "Photo privée"; -App::$strings["Previous"] = "Précédent"; -App::$strings["View Full Size"] = "Voir en taille réelle"; -App::$strings["Next"] = "Suivant"; -App::$strings["Remove"] = "Retirer"; -App::$strings["Edit photo"] = "Éditer la photo"; -App::$strings["Rotate CW (right)"] = "Rotation horaire (droite)"; -App::$strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)"; -App::$strings["Caption"] = "Titre/légende"; -App::$strings["Add a Tag"] = "Ajouter une étiquette"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple : @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon"; -App::$strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album"; -App::$strings["In This Photo:"] = "Dans cette photo :"; -App::$strings["Map"] = "Carte"; -App::$strings["View Album"] = "Voir l'album"; -App::$strings["Recent Photos"] = "Photos récentes"; -App::$strings["Item not available."] = "Élément indisponible."; -App::$strings["sent you a private message"] = "vous a envoyé un message privé"; -App::$strings["added your channel"] = "a ajouté votre canal"; -App::$strings["posted an event"] = "a publié un événement"; -App::$strings["Block Name"] = "Nom du Bloc"; -App::$strings["Block Title"] = "Titre du bloc"; -App::$strings["Poke/Prod"] = "Cogner/Solliciter"; -App::$strings["poke, prod or do other things to somebody"] = "Cogner, pointer, et autres choses à faire à quelqu'un"; -App::$strings["Recipient"] = "Destinataire"; -App::$strings["Choose what you wish to do to recipient"] = "Choisir quoi lui faire"; -App::$strings["Make this post private"] = "Rendre cette contribution privée"; -App::$strings["Bookmark added"] = "Favoris ajouté"; -App::$strings["My Bookmarks"] = "Mes Favoris"; -App::$strings["My Connections Bookmarks"] = "Favoris de mes relations"; -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["Current Channel"] = "Canal actif"; -App::$strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionner 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 introductions"; -App::$strings["Delegated Channels"] = "Canaux délégués"; -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["Members"] = "Membres"; -App::$strings["All Connected Channels"] = "Tous 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["Poll"] = ""; -App::$strings["View Results"] = "Voir les résultats"; -App::$strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page."; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée à la page du profil."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification magique bloquée. Vous êtes connecté sur ce site localement. Merci de vous en déconnecter et réessayer."; -App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification magique a fonctionné."; -App::$strings["Room not found"] = "Salon introuvable"; -App::$strings["Leave Room"] = "Quitter le salon"; -App::$strings["Delete This Room"] = "Supprimer le salon"; -App::$strings["I am away right now"] = "Je suis momentanément absent"; -App::$strings["I am online"] = "Je suis en ligne"; -App::$strings["Bookmark this room"] = "Marquer ce salon"; -App::$strings["New Chatroom"] = "Nouveau salon"; -App::$strings["Chatroom Name"] = "Nom du salon"; -App::$strings["%1\$s's Chatrooms"] = "Salons de %1\$s"; -App::$strings["Away"] = "Absent"; -App::$strings["Online"] = "En ligne"; -App::$strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée : %1\$s"; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = ""; -App::$strings["No channel."] = "Pas de canal."; -App::$strings["Common connections"] = "Relations communes"; -App::$strings["No connections in common."] = "Pas de relations en commun."; -App::$strings["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué."; -App::$strings["Image resize failed."] = "Le redimensionnement de l'image a échoué."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shirt-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement."; -App::$strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; -App::$strings["Unable to process image."] = "Impossible de traîter l'image."; -App::$strings["Photo not available."] = "Photo inaccessible."; -App::$strings["Upload File:"] = "Fichier :"; -App::$strings["Select a profile:"] = "Choisir un profil :"; -App::$strings["Upload Profile Photo"] = "Téléverser une photo de profil"; -App::$strings["or"] = "ou"; -App::$strings["skip this step"] = "passer cette étape"; -App::$strings["select a photo from your photo albums"] = "choisir une photo dans vos albums"; -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["Image uploaded successfully."] = "Image téléversée avec succès."; -App::$strings["Image upload failed."] = "Le téléversement a échoué."; -App::$strings["Image size reduction [%s] failed."] = "La réduction de taille [%s] a échoué."; -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 relations potentielles 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 acquitté de toutes les instructions indiquées"; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été établie par le propriétaire du canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal VIP ou restreint"; -App::$strings["Invalid request identifier."] = "Identifiant de requête invalide."; -App::$strings["Discard"] = "Annuler"; -App::$strings["Ignore"] = "Ignorer"; -App::$strings["No more system notifications."] = "Pas d'autre notification du système."; -App::$strings["System Notifications"] = "Notifications du système"; -App::$strings["Blocked"] = "Bloqué"; -App::$strings["Ignored"] = "Ignoré"; -App::$strings["Hidden"] = "Caché"; -App::$strings["Archived"] = "Archivé"; -App::$strings["Suggest new connections"] = "Suggérer de nouvelles relations"; -App::$strings["New Connections"] = "Nouvelles relations"; -App::$strings["Show pending (new) connections"] = "Voir les (nouvelles) relations en attente"; -App::$strings["All Connections"] = "Toutes les relations"; -App::$strings["Show all connections"] = "Voir toutes les relations"; -App::$strings["Unblocked"] = "Non bloquées"; -App::$strings["Only show unblocked connections"] = "Ne montrer que les relations non-bloquées"; -App::$strings["Only show blocked connections"] = "Ne montrer que les relations bloquées"; -App::$strings["Only show ignored connections"] = "Ne montrer que les relations ignorées"; -App::$strings["Only show archived connections"] = "Ne montrer que les relations archivées"; -App::$strings["Only show hidden connections"] = "Ne montrer que les relations cachées"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifier le contact"; -App::$strings["Search your connections"] = "Chercher parmi vos relations"; -App::$strings["Finding: "] = "Recherche :"; -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 requis."; -App::$strings["Marital Status"] = "Statut marital"; -App::$strings["Romantic Partner"] = "Partenaire"; -App::$strings["Likes"] = "Aime"; -App::$strings["Dislikes"] = "Déteste"; -App::$strings["Work/Employment"] = "Travail/Occupation"; -App::$strings["Religion"] = "Religion/Croyance"; -App::$strings["Political Views"] = "Opinions politiques"; -App::$strings["Gender"] = "Sexe/Genre"; -App::$strings["Sexual Preference"] = "Préférence sexuelle"; -App::$strings["Homepage"] = "Site Internet"; -App::$strings["Interests"] = "Centres d'intérêt"; -App::$strings["Location"] = "Emplacement"; -App::$strings["Profile updated."] = "Profil mis à jour."; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher vos contacts/relations aux visiteurs de ce profil?"; -App::$strings["Edit Profile Details"] = "Éditer les détails du profil"; -App::$strings["View this profile"] = "Voir le profil"; -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 réglages"; -App::$strings["Clone this profile"] = "Cloner le profil"; -App::$strings["Delete this profile"] = "Supprimer le profil"; -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["Profile Name:"] = "Nom du profil :"; -App::$strings["Your Full Name:"] = "Votre nom complet :"; -App::$strings["Title/Description:"] = "Titre/description :"; -App::$strings["Your Gender:"] = "Sexe/Genre :"; -App::$strings["Birthday :"] = "Date de naissance :"; -App::$strings["Street Address:"] = "Adresse postale :"; -App::$strings["Locality/City:"] = "Ville/Localité :"; -App::$strings["Postal/Zip Code:"] = "Code postal :"; -App::$strings["Country:"] = "Pays :"; -App::$strings["Region/State:"] = "Région/Province/État :"; -App::$strings[" Marital Status:"] = "Statut marital :"; -App::$strings["Who: (if applicable)"] = "Avec : (si pertinent)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples : cathy123, Cathy Williams, cathy@exemple.com"; -App::$strings["Since [date]:"] = "Depuis [date] :"; -App::$strings["Homepage URL:"] = "URL de mon site Internet :"; -App::$strings["Religious Views:"] = "Opinions religieuses :"; -App::$strings["Keywords:"] = "Mots-clefs :"; -App::$strings["Example: fishing photography software"] = "Exemple : escrime photographie modélisme"; -App::$strings["Used in directory listings"] = "Utilisé pour le référencement dans l'annuaire"; -App::$strings["Tell us about yourself..."] = "Parlez nous de vous..."; -App::$strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret"; -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"] = "Littérature"; -App::$strings["Television"] = "Télévision"; -App::$strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement"; -App::$strings["Love/romance"] = "Amour/Romance"; -App::$strings["Work/employment"] = "Travail/Occupation"; -App::$strings["School/education"] = "Études"; -App::$strings["This is your default profile."] = "Voilà votre profil par défault."; -App::$strings["Age: "] = "Age :"; -App::$strings["Edit/Manage Profiles"] = "Éditer/gérer les profils"; -App::$strings["Add profile things"] = "Ajouter des choses de profil"; -App::$strings["Include desirable objects in your profile"] = "Incluez des objets souhaitables dans votre profil"; -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."] = "Connexion mise à jour."; -App::$strings["Failed to update connection record."] = "Impossible de mettre à jour les détails de la relation."; -App::$strings["is now connected to"] = "est maintenant connecté avec"; -App::$strings["Could not access address book record."] = "Impossible d'accéder aux détails du carnet d'adresses."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Actualisation impossible - le canal est momentanément indisponible."; -App::$strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses."; -App::$strings["Connection has been removed."] = "La relation a été supprimée"; -App::$strings["View %s's profile"] = "Voir le profil de %s"; -App::$strings["Refresh Permissions"] = "Actualiser les permissions"; -App::$strings["Fetch updated permissions"] = "Récupérer les permissions les plus récentes"; -App::$strings["Recent Activity"] = "Activité récente"; -App::$strings["View recent posts and comments"] = "Voir les contributions et commentaires récentes"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquer ou débloquer toute communication avec ce contact"; -App::$strings["This connection is blocked!"] = "Ce contact est bloqué !"; -App::$strings["Unignore"] = "Ne plus ignorer"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer ou ne plus ignorer toute communication venant de ce contact"; -App::$strings["This connection is ignored!"] = "Ce contact est ignoré !"; -App::$strings["Unarchive"] = "Ne plus archiver"; -App::$strings["Archive"] = "Archiver"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu"; -App::$strings["This connection is archived!"] = "Ce contact est archivé !"; -App::$strings["Unhide"] = "Ne plus cacher"; -App::$strings["Hide"] = "Cacher"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts"; -App::$strings["This connection is hidden!"] = "Ce contact est caché !"; -App::$strings["Delete this connection"] = "Supprimer cette relation"; -App::$strings["Approve this connection"] = "Approuver cette relation"; -App::$strings["Accept connection to allow communication"] = "Accepter la relation pour permettre la communication"; -App::$strings["Set Affinity"] = "Définir le degré d'affinité"; -App::$strings["Set Profile"] = "Définir le profil"; -App::$strings["Set Affinity & Profile"] = "Définir le degré d'affinité et le profil"; -App::$strings["Apply these permissions automatically"] = "Appliquer ces permissions automatiquement"; -App::$strings["This connection's address is"] = ""; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts."; -App::$strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster le niveau de la relation"; -App::$strings["Slide to adjust your rating"] = "Faîtes glisser pour ajuster votre note"; -App::$strings["Optionally explain your rating"] = "Explication facultative de votre évaluation"; -App::$strings["Custom Filter"] = "Filtre personnalisé"; -App::$strings["Only import posts with this text"] = "N'importer que les publications comprenant ce texte"; -App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = ""; -App::$strings["Do not import posts with this text"] = "Ne pas importer les publications comprenant ce texte"; -App::$strings["This information is public!"] = "Cette information est publique !"; -App::$strings["Connection Pending Approval"] = "Contact en attente d'approbation"; -App::$strings["Connection Request"] = "Demande de contact"; -App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) veut devenir votre contact. Merci d'approuver cette demande pour permettre la communication."; -App::$strings["Approve Later"] = "Approuver plus tard"; -App::$strings["inherited"] = "héritée"; -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"] = "Ses réglages"; -App::$strings["My Settings"] = "Mes réglages"; -App::$strings["Individual Permissions"] = "Permissions spécifiques"; -App::$strings["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."] = "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["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["Invalid profile identifier."] = "Identifiant de profil invalide."; -App::$strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil"; -App::$strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le retirer."; -App::$strings["Visible To"] = "Visible par"; -App::$strings["\$Projectname channel"] = "Canal \$Projectname"; -App::$strings["%d rating"] = array( - 0 => "%d évaluations", - 1 => "%d évaluations", -); -App::$strings["Gender: "] = "Sexe/genre :"; -App::$strings["Status: "] = "État :"; -App::$strings["Homepage: "] = "Site web :"; -App::$strings["Description:"] = "Description:"; -App::$strings["Public Forum:"] = "Forum public :"; -App::$strings["Keywords: "] = "Mots-clefs :"; -App::$strings["Don't suggest"] = "Ne pas suggérer"; -App::$strings["Common connections:"] = "Relations générales"; -App::$strings["Global Directory"] = "Annuaire global"; -App::$strings["Local Directory"] = "Annuaire local"; -App::$strings["Finding:"] = "Recherche :"; -App::$strings["next page"] = "page suivante"; -App::$strings["previous page"] = "page précédente"; -App::$strings["Sort options"] = "Options de tri"; -App::$strings["Alphabetic"] = "Alphabétique"; -App::$strings["Reverse Alphabetic"] = "Alphabétique inversé"; -App::$strings["Newest to Oldest"] = "Ordre anté-chronologique"; -App::$strings["Oldest to Newest"] = "Ordre chronologique"; -App::$strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées)."; -App::$strings["Public Sites"] = "Sites publics"; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Les sites listés autorisent l'inscription publique au réseau \$Projectname. Tous les sites du réseau sont interconnectés, l'inscription sur l'un quelconque d'entre eux signifie donc l'inscription sur le réseau dans son ensemble. Certains sites peuvent nécessiter une souscription ou fournir des niveaux de service différenciés. Le lien du fournisseur peut fournir plus de détails."; -App::$strings["Rate this hub"] = "Noter cette instance"; -App::$strings["Site URL"] = "URL du site"; -App::$strings["Access Type"] = "Type d'accès"; -App::$strings["Registration Policy"] = "Politique d'inscription"; -App::$strings["Project"] = "Projet"; -App::$strings["View hub ratings"] = "Voir les notes de cette instance"; -App::$strings["Rate"] = "Noter"; -App::$strings["View ratings"] = "Voir les notes"; -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["Item not found"] = "Élément introuvable"; -App::$strings["Delete block?"] = "Supprimer le bloc?"; -App::$strings["Insert YouTube video"] = "Insérer une vidéo YouTube"; -App::$strings["Insert Vorbis [.ogg] video"] = "Insérer une vidéo Vorbis [.ogg]"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Insérer un son Vorbis [.ogg]"; -App::$strings["Edit Block"] = "Éditer bloc"; -App::$strings["Delete layout?"] = "Supprimer la mise-en-page?"; -App::$strings["Layout Description (Optional)"] = "Description de la mise en page (facultatif)"; -App::$strings["Layout Name"] = "Nom de la mise-en-page"; -App::$strings["Edit Layout"] = "Éditer mise-en-page"; -App::$strings["Item is not editable"] = "Élément non-éditable"; -App::$strings["Delete item?"] = "Supprimer l'élément?"; -App::$strings["Edit post"] = "Éditer la contribution"; -App::$strings["Unable to find your hub."] = "Impossible de trouver votre hub."; -App::$strings["Post successful."] = "Contribution effectuée."; -App::$strings["Delete webpage?"] = "Supprimer la page web?"; -App::$strings["Page link title"] = "Titre du lien vers la page"; -App::$strings["Edit Webpage"] = "Éditer page web"; -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["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["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Éditer l'événement"; -App::$strings["Delete event"] = "Supprimer l'évènement"; -App::$strings["calendar"] = "calendrier"; -App::$strings["Create New Event"] = "Créer événement"; -App::$strings["Export"] = "Exports"; -App::$strings["Import"] = "Importer"; -App::$strings["Event removed"] = "Événement supprimé"; -App::$strings["Failed to remove event"] = "Impossible de supprimer l'événement"; -App::$strings["Event details"] = "Détails de l'événement"; -App::$strings["Starting date and Title are required."] = "Une date de début et un Titre sont requis."; -App::$strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; -App::$strings["Event Starts:"] = "L'événement débute :"; -App::$strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet"; -App::$strings["Event Finishes:"] = "L'événement termine :"; -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["Title:"] = "Titre:"; -App::$strings["Share this event"] = "Partager cet événement"; -App::$strings["No ratings"] = "Pas de note"; -App::$strings["Ratings"] = "Evaluations"; -App::$strings["Rating: "] = "Evaluation :"; -App::$strings["Website: "] = "Site web :"; -App::$strings["Description: "] = "Description :"; -App::$strings["Select a bookmark folder"] = "Choisir un dossier de favoris"; -App::$strings["Save Bookmark"] = "Sauver le favoris"; -App::$strings["URL of bookmark"] = "URL du favoris"; -App::$strings["Or enter new bookmark folder name"] = "Ou entrez le nom d'un nouveau dossier"; -App::$strings["- select -"] = "- choisir -"; -App::$strings["Permission Denied."] = "Permission refusée."; -App::$strings["File not found."] = "Fichier introuvable."; -App::$strings["Edit file permissions"] = "Éditer les permissions du fichier"; -App::$strings["Set/edit permissions"] = "Définir/Édition des authorisations"; -App::$strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires"; -App::$strings["Return to file list"] = "Retourner à la liste des fichiers"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour lier le fichier depuis une page web"; -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["Channel added."] = "Canal ajouté."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci de recommencer demain."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux Règles du Service. L'inscription a échoué."; -App::$strings["Passwords do not match."] = "Les mots de passe ne concordent pas."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte."; -App::$strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente de l'approbation d'un administrateur."; -App::$strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée."; -App::$strings["Registration on this site/hub is by approval only."] = "L'inscription sur cette instance/ce site est soumis à une modération."; -App::$strings["Register at another affiliated site/hub"] = "S'inscrire sur un site/hub affilié"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de compte autorisé par jour. Merci de recommencer demain."; -App::$strings["Terms of Service"] = "Règles du Service"; -App::$strings["I accept the %s for this website"] = "J'accepte %s de ce site"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "J'ai plus de 13 ans et j'accepte les %s de ce site"; -App::$strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; -App::$strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation"; -App::$strings["Your email address"] = "Votre adresse de courriel"; -App::$strings["Choose a password"] = "Choisissez un mot de passe"; -App::$strings["Please re-enter your password"] = "Confirmez-le"; -App::$strings["Contact not found."] = "Contact introuvable."; -App::$strings["Friend suggestion sent."] = "Suggestion d'amitié/relation envoyée."; -App::$strings["Suggest Friends"] = "Suggérer une relation"; -App::$strings["Suggest a friend for %s"] = "Suggérer une relation à %s"; -App::$strings["Please login."] = "Merci de vous connecter."; -App::$strings["Collection created."] = "Collection créée."; -App::$strings["Could not create collection."] = "Impossible de créer la collection."; -App::$strings["Collection updated."] = "Collection mise-à-jour."; -App::$strings["Create a collection of channels."] = "Créez une collection de canaux."; -App::$strings["Collection Name: "] = "Nom de la collection :"; -App::$strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux"; -App::$strings["Collection removed."] = "Collection supprimée."; -App::$strings["Unable to remove collection."] = "Impossible de supprimer la collection."; -App::$strings["Collection Editor"] = "Éditeur de collection"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte."; -App::$strings["Remove This Account"] = "Supprimer ce Compte"; -App::$strings["WARNING: "] = "ATTENTION :"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Ce compte et tous ses canaux seront entièrement supprimés du réseau."; -App::$strings["This action is permanent and can not be undone!"] = "Cette action est permanente et irréversible !"; -App::$strings["Please enter your password for verification:"] = "Merci de re-saisir votre mot de passe pour vérification :"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Supprimer ce compte, tous ses canaux et tous les clones sur la matrice."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Par défault, seuls les instances de canaux situés sur ce hub seront supprimer de la matrice."; -App::$strings["Remove Account"] = "Supprimer le compte"; -App::$strings["Help:"] = "Aide :"; -App::$strings["Not Found"] = "Introuvable"; -App::$strings["\$Projectname Documentation"] = "Documentation \$Projectname"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un canal à l'intérieur de 48 heures après avoir changé le mot de passe d'un compte."; -App::$strings["Remove This Channel"] = "Supprimer ce Canal"; -App::$strings["This channel will be completely removed from the network. "] = "Ce canal sera complètement supprimé du réseau."; -App::$strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur la matrice"; -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"] = "Enlever le canal"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenue sur %s"; -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 bien 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 (p.ex. moncanal@monsite.com)"; -App::$strings["Authenticate"] = "Authentifier"; -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["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["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["%s element installed"] = "Elément %s installé"; -App::$strings["%s element installation failed"] = "L'installation de l'élément %s a échoué"; -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["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"; -App::$strings["Imported file is empty."] = "Le fichier importé est vide."; -App::$strings["The data provided is not compatible with this project."] = ""; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attention : les versions de bases de données diffèrent de %1\$d mises à jour."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Impossible de créer un doublon d'un identifiant de canal. L'import a échoué."; -App::$strings["Channel clone failed. Import failed."] = "Le clonage du canal a échoué. L'import a échoué."; -App::$strings["Cloned channel not found. Import failed."] = "Le canal cloné n'a pas été trouvé. L'import a échoué."; -App::$strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité."; -App::$strings["Import Channel"] = "Importation de canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; -App::$strings["File to Upload"] = "Fichier à envoyer"; -App::$strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur"; -App::$strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)"; -App::$strings["Your old login email address"] = "Votre ancienne adresse de courriel"; -App::$strings["Your old login password"] = "Votre ancien mot de passe"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Quelle que soit l'option choisie, merci de décider si cette nouvelle adresse sera la primaire, ou si votre ancienne adresse continuera à jouer ce rôle. Vous pourrez publier depuis l'adresse de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media."; -App::$strings["Make this hub my primary location"] = "Faire de ce hub l'adresse principale de ce canal"; -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["No service class restrictions found."] = "Aucune restriction de classe de service trouvée."; -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 Red"] = "Rejoignez-nous sur la Matrice Rouge"; -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 dans la livraison 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["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname."; -App::$strings["You will need to supply this invitation code: "] = "Vous aurez besoin de 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 visitez"; -App::$strings["3. Click [Connect]"] = "3. Click sur [Ajouter]"; -App::$strings["Name is required"] = "Le nom est requis"; -App::$strings["Key and Secret are required"] = "Clef et secret sont requis"; -App::$strings["Diaspora Policy Settings updated."] = ""; -App::$strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé."; -App::$strings["Password changed."] = "Le mot de passe a été changé."; -App::$strings["Password update failed. Please try again."] = "La mise-à-jour du mot de passe a échoué. Merci de recommencer."; -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 de ré-essayer."; -App::$strings["Settings updated."] = "Réglages sauvegardés."; -App::$strings["Add application"] = "Ajouter une application"; -App::$strings["Name of application"] = "Nom de l'application"; -App::$strings["Consumer Key"] = "Clef de consommateur"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères."; -App::$strings["Consumer Secret"] = "Secret de consommateur"; -App::$strings["Redirect"] = "Redirection"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez blanc, sauf si l'application a demandé autrement"; -App::$strings["Icon url"] = "URL de l'icône"; -App::$strings["Optional"] = "Facultatif"; -App::$strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; -App::$strings["Connected Apps"] = "Applications connectées"; -App::$strings["Client key starts with"] = "La clef partagée commence par"; -App::$strings["No name"] = "Sans nom"; -App::$strings["Remove authorization"] = "Révoquer l'autorisation"; -App::$strings["No feature settings configured"] = "Pas de fonctionnalité à configurer"; -App::$strings["Feature/Addon Settings"] = "Paramètres des extensions/greffons"; -App::$strings["Settings for the built-in Diaspora emulator"] = ""; -App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; -App::$strings["Enable the Diaspora protocol for this channel"] = ""; -App::$strings["Diaspora Policy Settings"] = ""; -App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; -App::$strings["Account Settings"] = "Compte"; -App::$strings["Enter New Password:"] = "Nouveau mot de passe :"; -App::$strings["Confirm New Password:"] = "Confirmer 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["Off"] = "Inactif"; -App::$strings["On"] = "Actif"; -App::$strings["Additional Features"] = "Fonctionnalités additionnelles"; -App::$strings["Connector Settings"] = "Connecteurs"; -App::$strings["No special theme for mobile devices"] = "Pas de thème spécifique aux périphériques mobiles"; -App::$strings["%s - (Experimental)"] = "%s - (Expérimental)"; -App::$strings["Display Settings"] = "Affichage"; -App::$strings["Theme Settings"] = "Paramètres du thème"; -App::$strings["Custom Theme Settings"] = "Paramètres personnels du thème"; -App::$strings["Content Settings"] = "Paramètres liés au contenu"; -App::$strings["Display Theme:"] = "Thème :"; -App::$strings["Mobile Theme:"] = "Thème mobile :"; -App::$strings["Enable user zoom on mobile devices"] = "Permettre à l'usager d'un mobile d'agrandir le contenu"; -App::$strings["Update browser every xx seconds"] = "Rafraîchir le navigateur toutes les xx secondes"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps :"; -App::$strings["Maximum of 100 items"] = "100 éléments au maximum"; -App::$strings["Show emoticons (smilies) as images"] = "Remplacer les émoticônes (smileys) par des images"; -App::$strings["Link post titles to source"] = "Lier les titres des publications à leur source"; -App::$strings["System Page Layout Editor - (advanced)"] = "Agencements des pages système - (avancé)"; -App::$strings["Use blog/list mode on channel page"] = "Utiliser le mode blog/liste sur la page du canal"; -App::$strings["(comments displayed separately)"] = "(commentaires affichés séparément)"; -App::$strings["Use blog/list mode on matrix page"] = "Utiliser le mode blog/liste sur la page de la matrice"; -App::$strings["Channel page max height of content (in pixels)"] = "Hauteur maximale du contenu pour la page du canal (en pixels)"; -App::$strings["click to expand content exceeding this height"] = "cliquer pour dérouler le contenu dépassant cette limite"; -App::$strings["Matrix page max height of content (in pixels)"] = "Hauteur maximale du contenu pour la page du réseau (en pixels)"; -App::$strings["Nobody except yourself"] = "Personne sauf vous"; -App::$strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement"; -App::$strings["Approved connections"] = "Contacts Approuvés"; -App::$strings["Any connections"] = "Tous les contacts"; -App::$strings["Anybody on this website"] = "Tous les utilisateurs du hub"; -App::$strings["Anybody in this network"] = "Tous les utilisateurs sur ce réseau"; -App::$strings["Anybody authenticated"] = "Tous les utilisateurs authentifiés"; -App::$strings["Anybody on the internet"] = "Tous les utilisateurs d'Internet"; -App::$strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme relation potentielle aux nouveaux membres?"; -App::$strings["Your channel address is"] = "Voici l'adresse de votre canal"; -App::$strings["Channel Settings"] = "Canal"; -App::$strings["Basic Settings"] = "Basique"; -App::$strings["Your Timezone:"] = "Fureau Horaire :"; -App::$strings["Default Post Location:"] = "Emplacement géographique par défaut :"; -App::$strings["Geographical location to display on your posts"] = "Emplacement géographique à afficher sur vos publications"; -App::$strings["Use Browser Location:"] = "Utiliser la géolocalisation fournie par le navigateur :"; -App::$strings["Adult Content"] = "Contenu \"adulte\""; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "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)"; -App::$strings["Security and Privacy Settings"] = "Réglages de Sécurité et vie privée"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster"; -App::$strings["Hide my online presence"] = "Cacher ma présence en ligne"; -App::$strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil"; -App::$strings["Simple Privacy Settings:"] = "Réglages simples :"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Très public - extrèmement permissif (à n'utiliser qu'en connaissance de cause)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Classique - public par défaut, privé en cas de besoin (comparable dans le principe aux réseaux sociaux centralisés, avec un mode privé plus efficace)"; -App::$strings["Private - default private, never open or public"] = "Privé - privé par défaut, jamais ouvert ni public"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqué - par défaut, bloqué de/vers tout le monde"; -App::$strings["Allow others to tag your posts"] = "Autoriser les autres à \"étiqueté\" vos publications"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Souvent utilisé par la communauté pour distinguer le contenu innaproprié"; -App::$strings["Advanced Privacy Settings"] = "Réglages avancés"; -App::$strings["Expire other channel content after this many days"] = "Faire expirer le contenu des autres canaux après n jours"; -App::$strings["0 or blank prevents expiration"] = "0, ou vide, pour ne pas faire expirer"; -App::$strings["Maximum Friend Requests/Day:"] = "Nombre maximum de mises en relation par jour :"; -App::$strings["May reduce spam activity"] = "Contribue à réduire l'impact des indésirables"; -App::$strings["Default Post Permissions"] = "Permissions par défaut des publications"; -App::$strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -App::$strings["Channel permissions category:"] = "Catégorie de permissions du canal :"; -App::$strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour :"; -App::$strings["Useful to reduce spamming"] = "Utile pour réduire les indésirables"; -App::$strings["Notification Settings"] = "Notifications"; -App::$strings["By default post a status message when:"] = "Par défaut, publier un statut quand:"; -App::$strings["accepting a friend request"] = "vous acceptez une mise en relation"; -App::$strings["joining a forum/community"] = "vous joignez un forum ou à une communauté"; -App::$strings["making an interesting profile change"] = "vous faites une modification intéressante de votre profil"; -App::$strings["Send a notification email when:"] = "Envoyer un courriel de notification quand :"; -App::$strings["You receive a connection request"] = "Vous recevez une demande de mise en relation"; -App::$strings["Your connections are confirmed"] = "Vous relations sont confirmées"; -App::$strings["Someone writes on your profile wall"] = "Quelqu'un a écrit sur votre mur"; -App::$strings["Someone writes a followup comment"] = "Quelqu'un a commenté sur vos publications"; -App::$strings["You receive a private message"] = "Vous recevez un message privé"; -App::$strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/relation"; -App::$strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication"; -App::$strings["You are poked/prodded/etc. in a post"] = "Vous êtes cogné/pointé/etc. dans une publication"; -App::$strings["Show visual notifications including:"] = "Afficher des notifications visuelles y compris :"; -App::$strings["Unseen matrix activity"] = "Activité non-vue sur la matrice"; -App::$strings["Unseen channel activity"] = "Activité non-vue sur le canal"; -App::$strings["Unseen private messages"] = "Messages privés non-vus"; -App::$strings["Recommended"] = "Recommandé"; -App::$strings["Upcoming events"] = "Événements à venir"; -App::$strings["Events today"] = "Événements aujourd'hui"; -App::$strings["Upcoming birthdays"] = "Anniversaires à venir"; -App::$strings["Not available in all themes"] = "Pas disponible dans tous les thèmes"; -App::$strings["System (personal) notifications"] = "Notifications système (personnelles)"; -App::$strings["System info messages"] = "Messages d'info système"; -App::$strings["System critical alerts"] = "Alertes critiques systèmes"; -App::$strings["New connections"] = "Nouvelles relations"; -App::$strings["System Registrations"] = "Inscriptions systèmes"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Montrer également les nouvelles publications sur mur, messages privés et relations dans Notices"; -App::$strings["Notify me of events this many days in advance"] = "Me prévenir d’événements à venir tant de jours en avance"; -App::$strings["Must be greater than 0"] = "Doit être supérieur à 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Type de page/Compte (avancé)"; -App::$strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour certains cas particuliers"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Mode expert requis (Réglages > Fonctions supplémentaires) svp ajuster!"; -App::$strings["Miscellaneous Settings"] = "Divers"; -App::$strings["Personal menu to display in your channel pages"] = "Menu personnel tel qu'il apparaîtra sur les pages de votre canal"; -App::$strings["Remove this channel."] = "Supprimer ce canal"; -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."; -App::$strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée."; -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 \"racine\"."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web."; -App::$strings["\$Projectname Server - Setup"] = "Serveur \$Projectname - configuration"; -App::$strings["Could not connect to database."] = "Impossible de se connecter à la base de données."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter au site par l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS."; -App::$strings["Could not create table."] = "Impossible de créer la table."; -App::$strings["Your site database has been installed."] = "La base de données de votre site a été installée."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin)."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Merci de consulter le fichier \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Vérification du système"; -App::$strings["Check again"] = "Re-vérifier"; -App::$strings["Database connection"] = "Connexion à la base de données"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Pour installer \$Projectname, nous avons besoin de savoir comment se connecter à votre base de données."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de contacter votre prestataire d'hébergement ou votre administrateur système si vous avez des doutes à propos de ces paramètres."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer."; -App::$strings["Database Server Name"] = "Nom du serveur de la base de données"; -App::$strings["Default is localhost"] = "Par défaut, localhost"; -App::$strings["Database Port"] = "Port du serveur"; -App::$strings["Communication port number - use 0 for default"] = "Numéro TCP du port - utilisez 0 pour la valeur par défaut"; -App::$strings["Database Login Name"] = "Identifiant de connexion à la Base de Données"; -App::$strings["Database Login Password"] = "Mot de passe de connexion à la Base de Données"; -App::$strings["Database Name"] = "Nom de la Base de Données"; -App::$strings["Database Type"] = "Type de base de données"; -App::$strings["Site administrator email address"] = "Adresse de courriel de l'administrateur du site"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web."; -App::$strings["Website URL"] = "URL du site"; -App::$strings["Please use SSL (https) URL if available."] = "Merci d'utiliser SSL/TLS (https) autant que possible."; -App::$strings["Please select a default timezone for your website"] = "Merci de choisir une zone de temps (fuseau horaire) pour votre site"; -App::$strings["Site settings"] = "Réglages du site"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver une version CLI de PHP dans le PATH du serveur 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."] = "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la mise-à-jour en arrière-plan via cron."; -App::$strings["PHP executable path"] = "Chemin vers l'éxecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans."; -App::$strings["Command line PHP"] = "PHP en ligne de commande (CLI)"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée."; -App::$strings["This is required for message delivery to work."] = "Elle est nécessaire pour la livraison de messages."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Vous pouvez ajuster ces paramètres dans le php.ini du serveur."; -App::$strings["PHP upload limits"] = "Limites de téléversement de PHP"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur : la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Générer les clefs de chiffrement"; -App::$strings["libCurl PHP module"] = "module PHP libCurl"; -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é."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Erreur : proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Erreur : le module libCURL de PHP est requis, mais pas installé."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : le module GD de PHP (avec support JPEG) est requis, mais pas installé."; -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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de La Matrice Rouge."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "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."; -App::$strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "La Matrice Rouge utilise le moteur de template Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s."; -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 sur %s au serveur web uniquement. Éviter de définir les permissions sur les fichiers individuels (.tpl)."; -App::$strings["%s is writable"] = "Permission d'écriture sur %s activée"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red utilise le répertoire 'store' - situé à la racine de votre installation de la Matrice Rouge - 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."; -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 supporte les connections encryptées SSL ou s'il permet les connections 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é!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence à des images sur votre propre hub."; -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 (avec certificats valides) recevront des messages d'avertissement sur leur propre sites."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Pour des raisons de compatibilité (sur l'ensemble de la matrice) nous nous devons d'insister sur ce prérequis."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe une plusieurs autorités de certification qui vous fourniront gratuitement un certificat valide."; -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 pase. Vérifiez votre configuration serveur. Test :"; -App::$strings["Url rewrite is working"] = "La réécriture d'URL fonctionne"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BD."; -App::$strings["

What next

"] = "

Et maintenant

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT : Vous devez créer [manuellement] une tâche planifiée pour les mises-à-jour."; -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["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["Like/Dislike"] = "J'aime/Je Déteste"; -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 pour un nouveau \$Projectname pour continuer."; -App::$strings["Invalid request."] = "Requête invalide."; -App::$strings["thing"] = "chose"; -App::$strings["Channel unavailable."] = "Canal indisponible."; -App::$strings["Previous action reversed."] = "Action précédente annulée."; -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 %2\$s's %3\$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 en ce moment à %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 complétée."; -App::$strings["Thank you."] = "Merci."; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensions/applications installées :"; -App::$strings["No installed plugins/addons/apps"] = "Aucune extension/application installée"; -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: "] = "Tag:"; -App::$strings["Last background fetch: "] = "Dernière récupération en tâche de fond :"; -App::$strings["Running at web location"] = "Installée sur"; -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["Remote privacy information not available."] = "Les informations de vie privée à distance ne sont pas disponibles."; -App::$strings["Visible to:"] = "Visible par :"; -App::$strings["Location not found."] = "Emplacement introuvable."; -App::$strings["Primary location cannot be removed."] = ""; -App::$strings["No locations found."] = "Emplacement(s) introuvable."; -App::$strings["Manage Channel Locations"] = "Gérer les emplacements des canaux"; -App::$strings["Location (address)"] = "Emplacement (adresse)"; -App::$strings["Primary Location"] = "Emplacement primaire"; -App::$strings["Drop location"] = "Abandonner l'emplacement"; -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."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes du contenu de votre canal."; -App::$strings["New Source"] = "Nouvelle Source"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer tout ou partie du contenu du canal suivant dans le canal en cours, et le distribuer en concordance avec les réglages de votre canal."; -App::$strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'ils contient ces mots (un par ligne)"; -App::$strings["Leave blank to import all public content"] = "Laissez en blanc pour importer tout le contenu public"; -App::$strings["Channel Name"] = "Nom du Canal"; -App::$strings["Source not found."] = "Source introuvable."; -App::$strings["Edit Source"] = "Éditer la source"; -App::$strings["Delete Source"] = "Supprimer la source"; -App::$strings["Source removed"] = "Source supprimée"; -App::$strings["Unable to remove source."] = "Impossible de supprimer la source."; -App::$strings["No valid account found."] = "Aucun compte valide trouvé."; -App::$strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe demandé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"] = "Sauvez-le ou copiez-le, 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 Réglages 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 à 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["Drop"] = "Supprimer"; -App::$strings["Bookmarks allowed"] = "Favoris autorisés"; -App::$strings["Delete this menu"] = "Supprimer ce menu"; -App::$strings["Edit menu contents"] = "Éditer le contenu du menu"; -App::$strings["Edit this menu"] = "Éditer le menu"; -App::$strings["Menu could not be deleted."] = "Impossible de supprimer le menu."; -App::$strings["Menu not found."] = "Menu introuvable."; -App::$strings["Edit Menu"] = "Éditer 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["Conversation removed."] = "Conversation supprimée."; -App::$strings["No messages."] = "Pas de message."; -App::$strings["D, d M Y - g:i A"] = "D d Y - H:i"; -App::$strings["Unable to create element."] = "Impossible de créer l'entrée."; -App::$strings["Unable to update menu element."] = "Impossible de mettre l'entrée de menu à jour."; -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["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 descendus 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"] = "Éditer le menu"; -App::$strings["Edit element"] = "Éditer 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 cet entrée du menu"; -App::$strings["Edit this menu item"] = "Éditer 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"] = "Éditer l'entrée de menu"; -App::$strings["Link text"] = "Texte du lien"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s"; -App::$strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Pas de suggestions pour l'instant. Si le site est récent, merci de re-tenter dans 24 heures."; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s par %4\$s"; -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["No such group"] = "Groupe introuvable"; -App::$strings["No such channel"] = "Canal introuvable"; -App::$strings["Search Results For:"] = "Résultats de recherche pour :"; -App::$strings["Collection is empty"] = "Collection vide"; -App::$strings["Collection: "] = "Collection :"; -App::$strings["Connection: "] = "Relation :"; -App::$strings["Invalid connection."] = "Relation invalide."; -App::$strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné."; -App::$strings["Add a Channel"] = "Ajouter un canal"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal est une collection de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre administrateur de hub vous y autorise."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples : \"Bob Jameson\", \"Lisa et ses chevaux sauvages\", \"Football\", \"Groupe des amateurs de tir à l'arc\""; -App::$strings["Choose a short nickname"] = "Choisissez un alias"; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Cet alias sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres."; -App::$strings["Or import an existing channel from another location"] = "Ou importez un canal existant à un autre endroit"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Veuillez choisir un type de canal (par exemple \"réseau social\" ou \"forum communautaire\") et un niveau de confidentialité afin que nous puissions choisir les meilleures autorisations pour vous"; -App::$strings["Channel Type"] = "Type de canal"; -App::$strings["Read more about roles"] = "En savoir plus sur les rôles"; -App::$strings["Thing updated"] = "Chose mise-à-jour"; -App::$strings["Object store: failed"] = "Stockage de l'objet : échec"; -App::$strings["Thing added"] = "Chose ajoutée"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Montrer chose"; -App::$strings["item not found."] = "élément introuvable."; -App::$strings["Edit Thing"] = "Éditer chose"; -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"] = "Envoi exclusivement au membres autorisé de ce profil"; -App::$strings["Name of thing e.g. something"] = "Nom de la chose, p.ex. quelque-chose"; -App::$strings["URL of thing (optional)"] = "URL de la chose (optionnel)"; -App::$strings["URL for photo of thing (optional)"] = "URL de l'image de la chose (optionnel)"; -App::$strings["Add Thing to your Profile"] = "Ajouter la chose à 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 or month:"] = ""; -App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = ""; +App::$strings["__ctx:long__ May"] = "Mai"; App::$strings["Jan"] = "Jan"; App::$strings["Feb"] = "Fev"; App::$strings["Mar"] = "Mar"; App::$strings["Apr"] = "Avr"; +App::$strings["__ctx:short__ May"] = "Mai"; App::$strings["Jun"] = "Jun"; App::$strings["Jul"] = "Jul"; App::$strings["Aug"] = "Aou"; @@ -2073,96 +2931,329 @@ App::$strings["Sep"] = "Sep"; App::$strings["Oct"] = "Oct"; App::$strings["Nov"] = "Nov"; App::$strings["Dec"] = "Dec"; -App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = ""; -App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; %1\$s/2013 or the month September 2013; %1\$s/2013/9"] = ""; -App::$strings["Please visit"] = ""; -App::$strings["on another hub to import the backup files(s)."] = ""; -App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = ""; -App::$strings["[Embedded content - reload page to view]"] = "[Contenu embarqué - rechargez la page pour le voir]"; -App::$strings["No connections."] = "Pas de relations."; -App::$strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; -App::$strings["Source of Item"] = "Source de l'élément"; -App::$strings["Total votes"] = ""; -App::$strings["Average Rating"] = ""; -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["Sun"] = "Dim"; +App::$strings["Mon"] = "Lun"; +App::$strings["Tue"] = "Mar"; +App::$strings["Wed"] = "Mer"; +App::$strings["Thu"] = "Jeu"; +App::$strings["Fri"] = "Ven"; +App::$strings["Sat"] = "Sam"; +App::$strings["__ctx:calendar__ today"] = "aujourd'hui"; +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["Unable to determine sender."] = "Impossible de déterminer l'émetteur."; +App::$strings["No recipient provided."] = "Pas de destinataire."; +App::$strings["[no subject]"] = "[sans objet]"; +App::$strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié."; +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["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["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 par tous les contacts."; +App::$strings["Visible to approved connections."] = "Visible par les contacts validés."; +App::$strings["Visible to specific connections."] = "Visible par certains contacts."; +App::$strings["Privacy group is empty."] = "Groupe de contacts vide."; +App::$strings["Privacy group: %s"] = "Groupe de contacts : %s"; +App::$strings["Connection not found."] = "Contact non trouvé."; +App::$strings["profile photo"] = "photo de profil"; +App::$strings["[Edited %s]"] = "[%s édité]"; +App::$strings["__ctx:edit_activity__ Post"] = "Publier"; +App::$strings["__ctx:edit_activity__ Comment"] = "Commenter"; +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["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée"; +App::$strings["Default Profile"] = "Profil par défaut"; +App::$strings["Unable to retrieve modified identity"] = "Impossible de récupérer l'identité modifiée"; +App::$strings["Create New Profile"] = "Créer un nouveau profil"; +App::$strings["Visible to everybody"] = "Visible de tous"; +App::$strings["Gender:"] = "Sexe :"; +App::$strings["Homepage:"] = "Site Internet :"; +App::$strings["Online Now"] = "Connecté"; +App::$strings["Change your profile photo"] = "Modifier votre photo de profil"; +App::$strings["Trans"] = "Trans"; +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["Tags:"] = "Étiquettes :"; +App::$strings["Sexual Preference:"] = "Orientation sexuelle :"; +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["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["Home, Voice"] = "Domicile, Voix"; +App::$strings["Home, Fax"] = "Domicile, Fax"; +App::$strings["Work, Voice"] = "Travail, Voix"; +App::$strings["Work, Fax"] = "Travail, Fax"; +App::$strings["view full size"] = "voir en taille réelle"; +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["Select an alternate language"] = "Choisir une langue alternative"; +App::$strings["Who can see this?"] = "Qui peut voir cela"; +App::$strings["Custom selection"] = "Sélection personnalisée"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Sélectionnez \"Afficher\" pour permettre l'affichage. \"Ne pas afficher\" vous permet de remplacer et de limiter la portée de \"Afficher\"."; +App::$strings["Show"] = "Montrer"; +App::$strings["Don't show"] = "Cacher"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Les droits d'accès d'un message %s ne peuvent pas être modifiés %s une fois le message envoyé.
Ces droits d'accès définissent qui est autorisé à afficher le message."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'"; +App::$strings["Image/photo"] = "Image/photo"; +App::$strings["Encrypted content"] = "Contenu chiffré"; +App::$strings["Install %1\$s element %2\$s"] = "Installer %1\$s element %2\$s"; +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 le droit de l'installer sur ce site."; +App::$strings["card"] = "carte"; +App::$strings["article"] = "article"; +App::$strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["View article"] = "Voir l'article"; +App::$strings["View summary"] = "Voir le résumé"; +App::$strings["$1 wrote:"] = "$1 a écrit :"; +App::$strings[" by "] = "par"; +App::$strings[" on "] = "sur"; +App::$strings["Embedded content"] = "Contenu imbriqué"; +App::$strings["Embedding disabled"] = "Imbrication désactivée"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s accueille favorablement %2\$s"; +App::$strings["General Features"] = "Fonctionnalités générales"; +App::$strings["Display new member quick links menu"] = "Afficher le menu des liens rapides pour les nouveaux membres"; +App::$strings["Advanced Profiles"] = "Profils avancés"; +App::$strings["Additional profile sections and selections"] = "Sections et sélections supplémentaires du profil"; +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"] = "Fournir un wiki pour votre canal."; +App::$strings["Private Notes"] = "Notes privées"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Active un outil pour stocker des notes et des rappels (note:non chiffré)"; +App::$strings["Create personal planning cards"] = "Créer des cartes de planification personnelle"; +App::$strings["Create interactive articles"] = "Créer des articles interactifs"; +App::$strings["Navigation Channel Select"] = "Sélection du canal par la navigation"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Changez de canal directement depuis le menu de navigation déroulant"; +App::$strings["Photo Location"] = "Site de prise de vue"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte."; +App::$strings["Access Controlled Chatrooms"] = "Accéder au salons de discussions contrôlés."; +App::$strings["Provide chatrooms and chat services with access control."] = "Fournir des salons de discussions et des services de discussions avec contrôle d'accès."; +App::$strings["Smart Birthdays"] = "Anniversaires intelligents"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Adapter les anniversaires aux fuseaux horaires, utile pour vos amis sur d'autres continents."; +App::$strings["Event Timezone Selection"] = "Sélection du fuseau horaire de l'événement"; +App::$strings["Allow event creation in timezones other than your own."] = "Autorise la création d’événements sur d'autres fuseaux horaires que le vôtre."; +App::$strings["Premium Channel"] = "Canal VIP"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux contacts de votre canal"; +App::$strings["Advanced Directory Search"] = "Recherche avancée dans les répertoires"; +App::$strings["Allows creation of complex directory search queries"] = "Autoriser la création d'entrées complexes de recherche de répertoire"; +App::$strings["Advanced Theme and Layout Settings"] = "Paramètres avancés du thème et de l'agencement."; +App::$strings["Allows fine tuning of themes and page layouts"] = "Autoriser la personnalisation fine des thèmes et des agencements."; +App::$strings["Access Control and Permissions"] = "Contrôle d'accès et autorisations"; +App::$strings["Privacy Groups"] = "Groupes confidentiels"; +App::$strings["Enable management and selection of privacy groups"] = "Active la gestion et la sélection des groupes confidentiels"; +App::$strings["Multiple Profiles"] = "Profils multiples"; +App::$strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; +App::$strings["Provide alternate connection permission roles."] = "Fournir des rôles d'accès différents pour ce contact."; +App::$strings["OAuth1 Clients"] = "Clients OAuth1"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification OAuth1 pour les applications mobiles et distantes."; +App::$strings["OAuth2 Clients"] = "Clients OAuth2"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Gérer les jetons d'authentification OAuth2 pour les applications mobiles et distantes."; +App::$strings["Access Tokens"] = "Jetons d'accès."; +App::$strings["Create access tokens so that non-members can access private content."] = "Créez des jetons d'accès pour que les non-membres puissent accéder au contenu privé."; +App::$strings["Post Composition Features"] = "Fonctionnalités de composition"; +App::$strings["Large Photos"] = "Grandes photos"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px)."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif"; +App::$strings["Even More Encryption"] = "Encore plus de chiffrement"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement optionnel du contenu de bout en bout au moyen d'un secret partagé"; +App::$strings["Enable Voting Tools"] = "Activer les outils de vote"; +App::$strings["Provide a class of post which others can vote on"] = "Fournit un type de publication sur lequel les utilisateurs peuvent voter"; +App::$strings["Disable Comments"] = "Désactiver les commentaires"; +App::$strings["Provide the option to disable comments for a post"] = "Fournir la possibilité de désactiver les commentaires pour une publication."; +App::$strings["Delayed Posting"] = "Publication plus tard"; +App::$strings["Allow posts to be published at a later date"] = "Permettre de publier des messages à une date programmée"; +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"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Supprimer les publications/commentaires en doublon"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle"; +App::$strings["Auto-save drafts of posts and comments"] = "Sauvegarde automatique des brouillons de messages et commentaires"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Enregistre automatiquement les brouillons de messages et de commentaires dans le stockage local du navigateur pour aider à prévenir la perte accidentelle de compositions."; +App::$strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux"; +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["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"; +App::$strings["Network New Tab"] = "Onglet \"nouveautés réseau\""; +App::$strings["Enable tab to display all new Network activity"] = "Activer un onglet présentant toute l'activité récente sur le réseau"; +App::$strings["Affinity Tool"] = "Gérer l'affinité"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations"; +App::$strings["Show friend and connection suggestions"] = "Afficher les suggestions de mise en contact"; +App::$strings["Connection Filtering"] = "Filtrage des contacts"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs"; +App::$strings["Post/Comment Tools"] = "Gérer les publications/commentaires"; +App::$strings["Community Tagging"] = "Etiquetage communautaire"; +App::$strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes"; +App::$strings["Post Categories"] = "Catégoriser les publications"; +App::$strings["Add categories to your posts"] = "Ajouter des catégories à vos publications"; +App::$strings["Emoji Reactions"] = "Réactions par émoticônes"; +App::$strings["Add emoji reaction ability to posts"] = "Ajouter la possibilité de réagir aux publications par émoticônes"; +App::$strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers"; +App::$strings["Dislike Posts"] = "\"Ne pas aimer\" les publications"; +App::$strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires"; +App::$strings["Star Posts"] = "Pouvoir mettre en avant les publications"; +App::$strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile"; +App::$strings["Tag Cloud"] = "Nuage de tags"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal"; +App::$strings["Trending"] = "Tendance"; +App::$strings["Keywords"] = "Mots-clefs"; +App::$strings["have"] = "ont"; +App::$strings["has"] = "a"; +App::$strings["want"] = "veulent"; +App::$strings["wants"] = "veut"; +App::$strings["likes"] = "aime"; +App::$strings["dislikes"] = "n'aime pas"; +App::$strings["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 validé."; +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["Birthday"] = "Anniversaire"; +App::$strings["Age: "] = "Age :"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ"; +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["Remote authentication"] = "Authentification distante"; +App::$strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal"; +App::$strings["Manage Your Channels"] = "Gérer vos canaux"; +App::$strings["Account/Channel Settings"] = "Paramètres du Compte/Canal"; +App::$strings["End this session"] = "Mettre fin à la session"; +App::$strings["Your profile page"] = "Votre profil"; +App::$strings["Manage/Edit profiles"] = "Gérer/modifier vos profils"; +App::$strings["Sign in"] = "Connexion"; +App::$strings["Take me home"] = "Retourner sur mon serveur"; +App::$strings["Log me out of this site"] = "Déconnectez-moi de ce site"; +App::$strings["Create an account"] = "Créer un compte"; +App::$strings["Help and documentation"] = "Aide et documentation"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Rechercher un site @nom, !forum, #etiquette, ?document, contenu"; +App::$strings["Site Setup and Configuration"] = "Configuration du site"; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@nom, !forum, #etiquette, ?document, contenu"; +App::$strings["Please wait..."] = "Merci de patienter..."; +App::$strings["Add Apps"] = "Ajouter des applications"; +App::$strings["Arrange Apps"] = "Réarranger les applications"; +App::$strings["Toggle System Apps"] = "(Dés)activer les applications système"; +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["Schema Default"] = ""; -App::$strings["Sans-Serif"] = "Sans empâtements"; -App::$strings["Monospace"] = "Chasse fixe"; -App::$strings["Theme settings"] = "Réglages du thème"; -App::$strings["Set scheme"] = "Définir la palette de couleurs"; -App::$strings["Set font-size for posts and comments"] = "Définir font-size pour contribution et commentaires"; -App::$strings["Set font face"] = "Définir la fonte"; -App::$strings["Set iconset"] = "Définir le jeu d'icônes"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = ""; -App::$strings["Set small shadow size, default 5px 5px 5px"] = ""; -App::$strings["Set shadow color, default #000"] = ""; -App::$strings["Set radius size, default 5px"] = ""; -App::$strings["Set line-height for posts and comments"] = ""; -App::$strings["Set background image"] = ""; -App::$strings["Set background attachment"] = ""; -App::$strings["Set background color"] = ""; -App::$strings["Set section background image"] = ""; -App::$strings["Set section background color"] = ""; -App::$strings["Set color of items - use hex"] = ""; -App::$strings["Set color of links - use hex"] = ""; -App::$strings["Set max-width for items. Default 400px"] = ""; -App::$strings["Set min-width for items. Default 240px"] = ""; -App::$strings["Set the generic content wrapper width. Default 48%"] = ""; -App::$strings["Set color of fonts - use hex"] = ""; -App::$strings["Set background-size element"] = "Taille du fond"; -App::$strings["Item opacity"] = "Opacité des éléments"; -App::$strings["Display post previews only"] = "Afficher seulement l'aperçu des contributions"; -App::$strings["Display side bar on channel page"] = "Afficher le panneau latéral sur la page du canal"; -App::$strings["Colour of the navigation bar"] = "Couleur de la barre de navigation"; -App::$strings["Item float"] = "Alignement de l'élément"; -App::$strings["Left offset of the section element"] = "Décalage gauche de l'élément section"; -App::$strings["Right offset of the section element"] = "Décalage droit de l'élément section"; -App::$strings["Section width"] = "Largeur de la section"; -App::$strings["Left offset of the aside"] = "Décalage gauche du panneau latéral"; -App::$strings["Right offset of the aside element"] = "Décalage droit du panneau latéral"; -App::$strings["Light (Red Matrix default)"] = "Blanc (valeur par défaut)"; -App::$strings["Select scheme"] = "Définir la palette de couleurs"; -App::$strings["Narrow navbar"] = "Barre de navigation fine"; -App::$strings["Navigation bar background color"] = "Couleur de fond de la barre de navigation"; -App::$strings["Navigation bar gradient top color"] = "Gradient de la barre de navigation HAUT"; -App::$strings["Navigation bar gradient bottom color"] = "Gradient de la barre de navigation BAS"; -App::$strings["Navigation active button gradient top color"] = "Gradient du bouton de navigation HAUT"; -App::$strings["Navigation active button gradient bottom color"] = "Gradient du bouton de navigation BAS"; -App::$strings["Navigation bar border color "] = "Couleur de la bordure de la barre de navigation"; -App::$strings["Navigation bar icon color "] = "Couleur de l'icône de la barre de navigation"; -App::$strings["Navigation bar active icon color "] = "Couleur de l'icône active de la barre de navigation"; -App::$strings["link color"] = "couleur des liens"; -App::$strings["Set font-color for banner"] = "Définir la couleur du texte de la bannière"; -App::$strings["Set the background color"] = "Définir la couleur d'arrière-plan"; -App::$strings["Set the background image"] = "Définir l'image d'arrière-plan"; -App::$strings["Set the background color of items"] = "Définir la couleur de fond des contributions"; -App::$strings["Set the background color of comments"] = "Couleur de fond des commentaires"; -App::$strings["Set the border color of comments"] = "Couleur de la bordure des commentaires"; -App::$strings["Set the indent for comments"] = "Indentation des commentaires"; -App::$strings["Set the basic color for item icons"] = "Définir la couleur de base pour les icônes des éléments"; -App::$strings["Set the hover color for item icons"] = "Définir la couleur de survol des icônes des éléments"; -App::$strings["Set font-size for the entire application"] = "Définir la taille de police pour l'application entière"; -App::$strings["Example: 14px"] = "Exemple : 14px"; -App::$strings["Set font-color for posts and comments"] = "Définir font-colour pour les contributions et commentaires"; -App::$strings["Set radius of corners"] = "Définir le rayon des arrondis"; -App::$strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos"; -App::$strings["Set maximum width of content region in pixel"] = "Définir la largeur maximale de la zone des contenus"; -App::$strings["Leave empty for default width"] = "Laissez vide pour avoir la largeur par défaut"; -App::$strings["Center page content"] = "Contenue de la page centrale"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Définir l'opacité minimum du bandeau de navigation - pour le cacher"; -App::$strings["Set size of conversation author photo"] = "Définir la taille de la photo de l'auteur d'une conversation"; -App::$strings["Set size of followup author photos"] = "Définir la taille de la photo de l'auteur d'une réponse"; -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 Red Matrix"] = "Créez un compte pour pouvoir accéder aux services et applications de la Matrice Red"; -App::$strings["Password"] = "Mot de passe"; -App::$strings["Remember me"] = "Se souvenir de moi"; -App::$strings["Forgot your password?"] = "Mot de passe oublié?"; -App::$strings["toggle mobile"] = "(dés)activer mobile"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Le certificat SSL n'est pas valide. Corrigez le."; -App::$strings["[red] Website SSL error for %s"] = "[red] Erreur SSL pour %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Les taches planifiées ne tournent pas."; -App::$strings["[red] Cron tasks not running on %s"] = "[red] tache planifiée n'est pas en fonction sur %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 droits d'accès liés 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 de contacts"; +App::$strings["edit"] = "modifier"; +App::$strings["Edit group"] = "Modifier le groupe"; +App::$strings["Add privacy group"] = "Créer un groupe de contacts"; +App::$strings["Channels not in any privacy group"] = "Contacts n'étant dans aucun groupe de contacts"; +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["Delegation session ended."] = "La séance de délégation a pris fin."; +App::$strings["Logged out."] = "Deconnecté."; +App::$strings["Email validation is incomplete. Please check your email."] = "La validation du courriel est incomplète. Veuillez vérifier l'adresse courriel."; +App::$strings["Failed authentication"] = "Échec de l'authentification"; +App::$strings["Help:"] = "Aide :"; +App::$strings["Not Found"] = "Introuvable"; diff --git a/view/he/hmessages.po b/view/he/hmessages.po deleted file mode 100644 index 991b7f64f..000000000 --- a/view/he/hmessages.po +++ /dev/null @@ -1,9893 +0,0 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. -# -# Translators: -# GenghisKhan , 2015 -# GenghisKhan , 2015-2016 -msgid "" -msgstr "" -"Project-Id-Version: Redmatrix\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-17 00:02-0700\n" -"PO-Revision-Date: 2016-06-18 11:18+0000\n" -"Last-Translator: GenghisKhan \n" -"Language-Team: Hebrew (http://www.transifex.com/Friendica/red-matrix/language/he/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 -msgid "parent" -msgstr "הורה" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2621 -msgid "Collection" -msgstr "אוסף" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "פנקס כתובות" - -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" -msgstr "לוח שנה" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "תיבת דואר נכנס מתוזמנת" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "תיבת דואר יוצא מתוזמנת" - -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 -#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:489 -#: ../../Zotlabs/Lib/Apps.php:564 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1578 -msgid "Unknown" -msgstr "לא ידוע" - -#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/conversation.php:1654 -#: ../../include/nav.php:93 -msgid "Files" -msgstr "קבצים" - -#: ../../Zotlabs/Storage/Browser.php:227 -msgid "Total" -msgstr "סה״כ" - -#: ../../Zotlabs/Storage/Browser.php:229 -msgid "Shared" -msgstr "" - -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:194 -msgid "Create" -msgstr "צור" - -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 -#: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1591 -msgid "Upload" -msgstr "העלאה" - -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 -#: ../../Zotlabs/Module/Sharedwithme.php:99 -msgid "Name" -msgstr "שם" - -#: ../../Zotlabs/Storage/Browser.php:236 -msgid "Type" -msgstr "טיפוס" - -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 -msgid "Size" -msgstr "גודל" - -#: ../../Zotlabs/Storage/Browser.php:238 -#: ../../Zotlabs/Module/Sharedwithme.php:102 -msgid "Last Modified" -msgstr "שונה לאחרונה" - -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Connections.php:290 -#: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:195 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../Zotlabs/Lib/Apps.php:340 -#: ../../include/channel.php:918 ../../include/channel.php:922 -#: ../../include/menu.php:108 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 -msgid "Edit" -msgstr "ערוך" - -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../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/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:197 ../../Zotlabs/Lib/ThreadItem.php:126 -#: ../../Zotlabs/Lib/Apps.php:341 ../../include/conversation.php:660 -msgid "Delete" -msgstr "מחק" - -#: ../../Zotlabs/Storage/Browser.php:285 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "הינך משתמש ב- %1$s מתוך שטח אחסון קבצים זמין." - -#: ../../Zotlabs/Storage/Browser.php:290 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "הינך משתמש ב- %1$s מתוך %2$s שטח אחסון קבצים זמין. (%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:302 -msgid "WARNING:" -msgstr "אזהרה:" - -#: ../../Zotlabs/Storage/Browser.php:305 -msgid "Create new folder" -msgstr "צור תיקייה חדשה" - -#: ../../Zotlabs/Storage/Browser.php:307 -msgid "Upload file" -msgstr "העלה קובץ" - -#: ../../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:385 -msgid "Permission denied" -msgstr "הרשאה נדחתה" - -#: ../../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/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:211 -#: ../../Zotlabs/Module/Item.php:219 ../../Zotlabs/Module/Item.php:1070 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:91 ../../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:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/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:3450 -msgid "Permission denied." -msgstr "הרשאה נדחתה." - -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 -msgid "Not Found" -msgstr "לא נמצא" - -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:118 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:94 -msgid "Page not found." -msgstr "עמוד לא נמצא." - -#: ../../Zotlabs/Zot/Auth.php:138 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "" - -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "ברוך בואך %s. אימות מרוחק הצליח." - -#: ../../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:818 -msgid "Requested profile is not available." -msgstr "פרופיל מבוקש לא זמין." - -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2266 -msgid "Blocks" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "נוצר" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:207 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "נערך" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:196 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "שתף" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:201 -#: ../../include/page_widgets.php:42 -msgid "View" -msgstr "תצוגה" - -#: ../../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 "ערוץ לא נמצא." - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "הרשאה נדחתה." - -#: ../../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 "קישור למקור" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "ערוך אירוע" - -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "צור אירוע" - -#: ../../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 "קודם" - -#: ../../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 "הבא" - -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "יצא" - -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "יבא" - -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:737 ../../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/js_strings.php:22 -#: ../../include/widgets.php:757 ../../include/widgets.php:769 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "שלח" - -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "היום" - -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "עליך להתחבר כדי לראות את עמוד זה." - -#: ../../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 "" - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "חדר לא נמצא" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "עזוב חדר" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "מחק חדר" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "אני נעדר/ת ברגע זה" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "אני במצב מקוון" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "סמן את חדר זה" - -#: ../../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 "אנא הזן URL קישור:" - -#: ../../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/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "הכנס קישור רשת" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "תכונה מנוטרלת." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "חדר שיחה חדש" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "שם חדר שיחה" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "תפוגה של שיחות (דקות)" - -#: ../../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 "הרשאות" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "חדרי שיחה של %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 "נעדר" - -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "מקוון" - -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "פריט שגוי." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "סימנייה התווספה" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "הסימניות שלי" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "סימניות החיבורים שלי" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "המשך" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "הבניית ערוץ פרמיה" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "אפשר הגבלות חיבור ערוץ פרמיה" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "ערוץ מוגבל או פרמיה" - -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." -msgstr "חיבור התעדכן." - -#: ../../Zotlabs/Module/Connedit.php:229 -msgid "Failed to update connection record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" -msgstr "כעת מחובר אל" - -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:660 -#: ../../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 -msgid "No" -msgstr "לא" - -#: ../../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 -msgid "Yes" -msgstr "כן" - -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:431 -msgid "Refresh failed - channel is currently unavailable." -msgstr "רענון נכשל - ערוץ אינו זמין כעת." - -#: ../../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:509 -msgid "Connection has been removed." -msgstr "חיבור הוסר." - -#: ../../Zotlabs/Module/Connedit.php:525 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/conversation.php:957 ../../include/nav.php:86 -msgid "View Profile" -msgstr "הצג פרופיל" - -#: ../../Zotlabs/Module/Connedit.php:528 -#, php-format -msgid "View %s's profile" -msgstr "צפה בפרופיל של %s" - -#: ../../Zotlabs/Module/Connedit.php:532 -msgid "Refresh Permissions" -msgstr "רענן הרשאות" - -#: ../../Zotlabs/Module/Connedit.php:535 -msgid "Fetch updated permissions" -msgstr "תפוס הרשאות מעודכנות" - -#: ../../Zotlabs/Module/Connedit.php:539 -msgid "Recent Activity" -msgstr "פעילות אחרונה" - -#: ../../Zotlabs/Module/Connedit.php:542 -msgid "View recent posts and comments" -msgstr "צפה בפוסטים ותגובות אחרונות" - -#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "בטל חסימה" - -#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "חסום" - -#: ../../Zotlabs/Module/Connedit.php:549 -msgid "Block (or Unblock) all communications with this connection" -msgstr "חסום (או בטל חסימה) את כל ההתקשרויות עם חיבור זה" - -#: ../../Zotlabs/Module/Connedit.php:550 -msgid "This connection is blocked!" -msgstr "חיבור זה הינו חסום!" - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Unignore" -msgstr "בטל התעלמות" - -#: ../../Zotlabs/Module/Connedit.php:554 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "התעלמות" - -#: ../../Zotlabs/Module/Connedit.php:557 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "התעלם (או בטל התעלמות) מכל ההתקשרויות שפונות כלפי פנים (inbound) מתוך חיבור זה" - -#: ../../Zotlabs/Module/Connedit.php:558 -msgid "This connection is ignored!" -msgstr "חיבור זה הינו מנוכר!" - -#: ../../Zotlabs/Module/Connedit.php:562 -msgid "Unarchive" -msgstr "בטל גניזה" - -#: ../../Zotlabs/Module/Connedit.php:562 -msgid "Archive" -msgstr "גנוז" - -#: ../../Zotlabs/Module/Connedit.php:565 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "גנוז את (או בטל את גניזת) חיבור זה - סמן את עמוד זה כמת אך השאר תוכן" - -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "This connection is archived!" -msgstr "חיבור זה הינו גנוז!" - -#: ../../Zotlabs/Module/Connedit.php:570 -msgid "Unhide" -msgstr "חשוף" - -#: ../../Zotlabs/Module/Connedit.php:570 -msgid "Hide" -msgstr "הסתר" - -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Hide or Unhide this connection from your other connections" -msgstr "הסתר או חשוף את חיבור זה מן החיבורים האחרים שלך" - -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is hidden!" -msgstr "חיבור זה הינו מוסתר!" - -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Delete this connection" -msgstr "מחק את חיבור זה" - -#: ../../Zotlabs/Module/Connedit.php:596 ../../include/widgets.php:493 -msgid "Me" -msgstr "אני" - -#: ../../Zotlabs/Module/Connedit.php:597 ../../include/widgets.php:494 -msgid "Family" -msgstr "משפחה" - -#: ../../Zotlabs/Module/Connedit.php:598 ../../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/selectors.php:123 ../../include/channel.php:389 -#: ../../include/channel.php:390 ../../include/channel.php:397 -#: ../../include/widgets.php:495 -msgid "Friends" -msgstr "חברים" - -#: ../../Zotlabs/Module/Connedit.php:599 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "מכרים" - -#: ../../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:660 -msgid "Approve this connection" -msgstr "אשר את חיבור זה" - -#: ../../Zotlabs/Module/Connedit.php:660 -msgid "Accept connection to allow communication" -msgstr "אשר חיבור כדי להתיר תקשורת" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity" -msgstr "הגדר קירבה" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Set Profile" -msgstr "הגדר פרופיל" - -#: ../../Zotlabs/Module/Connedit.php:671 -msgid "Set Affinity & Profile" -msgstr "הגדר קירבה וגם פרופיל" - -#: ../../Zotlabs/Module/Connedit.php:704 -msgid "none" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:708 ../../include/widgets.php:614 -msgid "Connection Default Permissions" -msgstr "הרשאות שגרתיות של חיבור" - -#: ../../Zotlabs/Module/Connedit.php:708 ../../include/items.php:3937 -#, php-format -msgid "Connection: %s" -msgstr "חיבור: %s" - -#: ../../Zotlabs/Module/Connedit.php:709 -msgid "Apply these permissions automatically" -msgstr "החל את הרשאות אלה אוטומטית" - -#: ../../Zotlabs/Module/Connedit.php:709 -msgid "Connection requests will be approved without your interaction" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:711 -msgid "This connection's primary address is" -msgstr "הכתובת העיקרית של חיבור זה היא" - -#: ../../Zotlabs/Module/Connedit.php:712 -msgid "Available locations:" -msgstr "מיקומים זמינים:" - -#: ../../Zotlabs/Module/Connedit.php:716 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:717 -msgid "Connection Tools" -msgstr "כלי חיבור" - -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "דירוג" - -#: ../../Zotlabs/Module/Connedit.php:721 -msgid "Slide to adjust your rating" -msgstr "החלק כדי להתאים את הדירוג שלך" - -#: ../../Zotlabs/Module/Connedit.php:722 ../../Zotlabs/Module/Connedit.php:727 -msgid "Optionally explain your rating" -msgstr "הסבר לפי הצורך את הדירוג שלך" - -#: ../../Zotlabs/Module/Connedit.php:724 -msgid "Custom Filter" -msgstr "מסנן מותאם" - -#: ../../Zotlabs/Module/Connedit.php:725 -msgid "Only import posts with this text" -msgstr "יבא רק פוסטים עם טקסט זה" - -#: ../../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:726 -msgid "Do not import posts with this text" -msgstr "אל תייבא פוסטים עם טקסט זה" - -#: ../../Zotlabs/Module/Connedit.php:728 -msgid "This information is public!" -msgstr "מידע זה הינו ציבורי!" - -#: ../../Zotlabs/Module/Connedit.php:733 -msgid "Connection Pending Approval" -msgstr "חיבור ממתין לאישור" - -#: ../../Zotlabs/Module/Connedit.php:736 -msgid "inherited" -msgstr "" - -#: ../../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:740 -msgid "Their Settings" -msgstr "ההגדרות שלהם" - -#: ../../Zotlabs/Module/Connedit.php:741 -msgid "My Settings" -msgstr "ההגדרות שלי" - -#: ../../Zotlabs/Module/Connedit.php:743 -msgid "Individual Permissions" -msgstr "" - -#: ../../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:745 -msgid "" -"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." -msgstr "" - -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "Last update:" -msgstr "עדכון אחרון:" - -#: ../../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:20 -msgid "Public access denied." -msgstr "גישה ציבורית נדחתה." - -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "דירוג %d" -msgstr[1] "%d דירוגים" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "מין: " - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "מצב: " - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "עמוד בית: " - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1164 -msgid "Age:" -msgstr "גיל:" - -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1008 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "מיקום:" - -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "תיאור:" - -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1180 -msgid "Hometown:" -msgstr "עיר מגורים:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1188 -msgid "About:" -msgstr "אודות:" - -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/conversation.php:959 -#: ../../include/channel.php:993 ../../include/connections.php:78 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" -msgstr "התחבר" - -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "פורום ציבורי:" - -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "מילות מפתח: " - -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "אל תציע" - -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "חיבורים שכיחים:" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "ספרייה גלובלית" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "ספרייה מקומית" - -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "מצא" - -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "הצעות ערוץ" - -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "עמוד הבא" - -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "עמוד קודם" - -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "אפשרויות מיון" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "אלפבתי" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "אלפבתי הפוך" - -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "מהחדשים יותר לישנים יותר" - -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "מהישנים יותר לחדשים יותר" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../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:3371 -msgid "Item not found." -msgstr "פריט לא נמצא." - -#: ../../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 "פריט לא נמצא" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "כותרת (רשות):" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "אין ערוץ." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "חיבורים מצויים" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "מוסתר" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "גנוזים" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "חדש" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "חיבורים חדשים" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "כל החיבורים" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "הצג את כל החיבורים" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "הצג רק חיבורים חסומים" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "הצג רק חיבורים מנוכרים" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "הצג רק חיבורים גנוזים" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "הצג רק חיבורים מוסתרים" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "ממתין לאישור" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "ערוך חיבור" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "מחק חיבור" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "כתובת ערוץ" - -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "רשת" - -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "מצב" - -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "מחובר" - -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "אשר חיבור" - -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "אשר" - -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "התעלם מחיבור" - -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "פעילות אחרונה" - -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 -msgid "Connections" -msgstr "חיבורים" - -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "חיפוש" - -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "חפש את החיבורים שלך" - -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "חיפוש חיבורים" - -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "תצלומי שער" - -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." -msgstr "שינוי גודל תמונה נכשל." - -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "לא מסוגל לעבד תמונה" - -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." -msgstr "העלאת תמונה נכשלה." - -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." -msgstr "לא מסוגל לעבד תמונה." - -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4298 -msgid "female" -msgstr "נקבה" - -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4299 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s עדכנה את ה%2$s שלה" - -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4300 -msgid "male" -msgstr "זכר" - -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4301 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s עדכן את ה%2$s שלו" - -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4303 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s עדכנו את ה%2$s שלהם" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1642 -msgid "cover photo" -msgstr "תצלום שער" - -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "תצלום לא זמין." - -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "העלה קובץ:" - -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "בחר פרופיל:" - -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "העלה תצלום שער" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "או" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" -msgstr "דלג על צעד זה" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" -msgstr "גזור תמונה" - -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" -msgstr "סיים לערוך" - -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "פריט אינו עריך." - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "ערוך פוסט" - -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "רשומות לוח שנה הובאו." - -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "לא נמצאו רשומות לוח שנה." - -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "לא מסוגל להפיק תצוגה מקדימה." - -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "כותרת וזמן תחילת אירוע נדרשים" - -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "אירוע לא נמצא." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1944 -#: ../../include/event.php:949 ../../include/conversation.php:123 -msgid "event" -msgstr "אירוע" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "ערוך כותרת אירוע" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "כותרת אירוע" - -#: ../../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 "נדרש" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "קטגוריות (רשימה מופרדת פסיקים)" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "ערוך קטגוריה" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "קטגוריה" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "ערוך זמן ותאריך התחלה" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "זמן ותאריך התחלה" - -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "ערוך זמן ותאריך סיום" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "זמן ותאריך סיום" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "ערוך תיאור" - -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "תיאור" - -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "ערוך מיקום" - -#: ../../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 "מיקום" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "שתף את אירוע זה" - -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:202 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1198 ../../include/page_widgets.php:43 -msgid "Preview" -msgstr "תצוגה מקדימה" - -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "הגדרות הרשאה" - -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "אפשרויות מתקדמות" - -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "ערוך אירוע" - -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "מחק אירוע" - -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "לוח שנה" - -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "אירוע הוסר" - -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "נכשל להסיר אירוע" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:1647 ../../include/nav.php:92 -msgid "Photos" -msgstr "תצלומים" - -#: ../../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:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "ביטול" - -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "אתר זה אינו שרת ספרייה" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "שמור לתיקייה:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- בחר -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "שמור" - -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "הודעה שגויה" - -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "אין תוצאות" - -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "דיווח מסירה עבור %1$s" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "" - -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "בתור" - -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "פורסם" - -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "נתקבל לצורך מסירה" - -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "עודכן" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "עדכון נוכר" - -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "הרשאה נדחתה" - -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "נמען לא נמצא" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "דואר הוחזר" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "דואר כפול נתקבל" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "דואר נמסר" - -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "" - -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" -msgstr "קישור עמוד" - -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "ערוך עמוד רשת" - -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "ערוץ נתווסף." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "רשת" - -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" - -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "קבוצת פרטיות נוצרה." - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "לא היתה אפשרות ליצור קבוצת פרטיות." - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3904 -msgid "Privacy group not found." -msgstr "קבוצת פרטיות לא נמצאה." - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "קבוצת פרטיות עודכנה." - -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "צור אשכול של ערוצים." - -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "שם קבוצת פרטיות:" - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "חברים הינם נראים לערוצים אחרים" - -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "קבוצת פרטיות הוסרה." - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "לא מסוגל להסיר קבוצת פרטיות." - -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "עורך קבוצת פרטיות" - -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "חברים" - -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "כל הערוצים המחוברים" - -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "לחץ על ערוץ כדי להוסיף או להסיר" - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "שתף תוכן מתוך Firefox אל $Projectname" - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "הפעל את ספק $Projectname של Firefox" - -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "אנא התחבר כדי להמשיך." - -#: ../../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 "" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "חיפוש תיעוד" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "עזרה:" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:224 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "עזרה" - -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "תיעוד $Projectname" - -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "הרשאה נדחתה." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "קובץ לא נמצא." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "ערוך הרשאות קובץ" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "קבע/ערוך הרשאות" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "כלול כל קובץ ותיקיית משנה" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "שתף את קובץ זה" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "הצג URL לקובץ זה" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:163 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "אפליקציות" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "פריט לא נמצא." - -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "אין דבר ליבא." - -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "קובץ מיובא הינו ריק" - -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "יבוא הושלם." - -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "יבא ערוץ" - -#: ../../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 "השתמש בטופס זה כדי ליבא ערוץ קיים מתוך שרת/מוקד אחר. באפשרותך לאחזר את זהות הערוץ מתוך שרת/מוקד ישן דרך הרשת או לספק קובץ יצוא." - -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "קובץ להעלאה" - -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "או ספק פרטי שרת/מוקד ישנים" - -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "כתובת זיהוי ישנה (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "כתובת דוא״ל כניסה ישנה" - -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "סיסמת כניסה ישנה" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "הפוך את מוקד זה למיקום העיקרי שלי" - -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "לא מסוגל לאתר פוסט מקורי." - -#: ../../Zotlabs/Module/Item.php:428 -msgid "Empty post discarded." -msgstr "פוסט ריק סולק." - -#: ../../Zotlabs/Module/Item.php:468 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:848 -msgid "Duplicate post suppressed." -msgstr "פוסט כפול הודחק." - -#: ../../Zotlabs/Module/Item.php:983 -msgid "System error. Post not saved." -msgstr "שגיאת מערכת. פוסט לא נשמר." - -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2268 -msgid "Layouts" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "" - -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "הורד קובץ 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" - -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "שם פרטי" - -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "שם משפחה" - -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "שם כינוי" - -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "שם מלא" - -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2176 ../../boot.php:1706 -msgid "Email" -msgstr "דוא״ל" - -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:237 -msgid "Profile Photo" -msgstr "תצלום פרופיל" - -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "תצלום פרופיל 16 פיקסל" - -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "תצלום פרופיל 32 פיקסל" - -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "תצלום פרופיל 48 פיקסל" - -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "תצלום פרופיל 64 פיקסל" - -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "תצלום פרופיל 80 פיקסל" - -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "תצלום פרופיל 128 פיקסל" - -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "אזור זמן" - -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:235 -msgid "Language" -msgstr "שפה" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "שנת הולדת" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "חודש הולדת" - -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "יום הולדת" - -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "יום הולדת" - -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "מין" - -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "זכר" - -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "נקבה" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "עמוד רשת" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "תפריט" - -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "בקשה שגויה." - -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "ערוץ" - -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "דבר" - -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "עמוד לא זמין." - -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "" - -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1941 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "תצלום" - -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1947 ../../include/conversation.php:148 -msgid "status" -msgstr "סטטוס" - -#: ../../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:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "" - -#: ../../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:430 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:432 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:434 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." -msgstr "פעולה הושלמה." - -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "תודה." - -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "יבוא הושלם" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "יבוא פריטים" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "סך מגבלת הזמנות נגמרה." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : כתובת דוא״ל לא תקינה." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "נשמח אם תצטרף אלינו ברשת $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "מגבלת הזמנות נגמרה. אנא צור קשר עם מנהל האתר שלך." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : מסירת הודעה נכשלה." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "הודעה %d נשלחה." -msgstr[1] "%d הודעות נשלחו." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "לא נותרו לך עוד הזמנות זמינות" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "שלח הזמנות" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "הזן כתובות דוא״ל, אחת בכל שורה:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "הודעתך:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "אשמח אם תצטרף לקהילה שלי ברשת $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "יהיה עליך לספק את קוד הזמנה זה:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. הירשם בכל מיקום $Projectname (כולם מחוברים ב אופן הדדי)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. הזן את כתובת רשת $Projectname שלי לתוך שורת החיפוש של האתר." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "או בקר בכתובת" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. לחץ [התחבר]" - -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "נראה לאלו:" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "מיקום לא נמצא." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "לא נמצאו מיקומים." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "נהל מיקומי ערוץ" - -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "כתובת" - -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "סנכרן עכשיו" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "כאשר ניתן, השמט מיקום על ידי כניסה לתוך אתר רשת/מוקד והסרת הערוץ שלך." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "השתמש בטופס זה כדי לנטוש את המיקום אם המוקד אינו פועל עוד." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "מוקד לא נמצא." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "לא מסוגל לתקשר עם ערוץ מבוקש" - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "לא יכול לאמת ערוץ מבוקש." - -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "על הערוץ הנבחר מוטלות הגבלות הודעה פרטית. שליחה נכשלה." - -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "הודעות" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "הודעה הוחזרה." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "דיון הוסר." - -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "פג YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "הערוץ המבוקש אינו נמצא ברשת זו" - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "שלח הודעה פרטית" - -#: ../../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 "נושא:" - -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "צרף קובץ" - -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "שלח" - -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "קבע תאריך תפוגה" - -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "מחק הודעה" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "דיווח מסירה" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "בטל הודעה" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "הודעה הוחזרה." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "מחק דיון" - -#: ../../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:367 -msgid "Send Reply" -msgstr "שלח משוב" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "הודעתך עבור %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 "" - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "צור ערוץ חדש" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "מנהל ערוץ" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "ערוץ נוכחי" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "ערוץ שגרתי" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "הפוך לשגרתי" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d הודעות חדשות" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "לא נמצא חשבון תקין." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "חבר אתר (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "בקשת איפוס סיסמה נתבקשה אצל %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "איפוס סיסמה" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "הסיסמה שלך אותחלה כנדרש." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "הסיסמה החדשה שלך היא" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "לחץ כאן כדי להיכנס" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "הסיסמה שלך נשתנתה אצל %s" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "שכחת את הסיסמה שלך?" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "כתובת דוא״ל" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "אפס" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "לא מסוגל לעדכן תפריט." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "לא מסוגל ליצור תפריט." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "שם תפריט" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "שם ייחודי (לא נראה בבלוג רשת) - נדרש" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "כותרת תפריט" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "התר סימניות" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "שלח והמשך" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2267 -msgid "Menus" -msgstr "תפריטים" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "סימניות מותרות" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "מחק את תפריט זה" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "ערוך תכני תפריט" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "ערוך את תפריט זה" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "תפריט לא יכול היה להימחק." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "תפריט לא נמצא." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "ערוך תפריט" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "הוסף או הסר רשומות מתפריט זה" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "שם תפריט" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "כותרת תפריט" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "התר סימניות" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "לא נמצא." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:226 -msgid "Mood" -msgstr "מצב רוח" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "אין התאמות" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "אין קבוצה כזו" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "אין ערוץ כזה" - -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "פורום" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "תוצאות חיפוש עבור:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "קבוצת פרטיות הינה ריקה" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "קבוצת פרטיות: " - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "חיבור שגוי." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "אין עוד התראות מערכת" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "התראות מערכת" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "לא מסוגל ליצור אלמנט" - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "לא מסוגל לעדכן אלמנט תפריט." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "לא מסוגל להוסיף אלמנט תפריט." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "הרשאות פריט תפריט" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(לחץ כדי לפתוח/לסגור)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "שם קישור" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "פתח בתוך חלון חדש" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "שלח וסיים" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "שלח והמשך" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "תפריט:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "יעד קישור" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "ערוך תפריט" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "ערוך אלמנט" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "הטל אלמנט" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "אלמנט חדש" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "ערוך את מכיל תפריט זה" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "הוסף אלמנט תפריט" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "מחק את פריט תפריט זה" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "ערוך את פריט תפריט זה" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "פריט תפריט לא נמצא." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "פריט תפריט נמחק." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "פריט תפריט לא יכול היה להימחק." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "ערוך אלמנט תפריט" - -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "שם או דברי הסבר" - -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "דוגמאות: \"בוב ג׳יימסון\", \"ליסה והסוסים שלה\", \"טניס\", \"קבוצת תעופה\"" - -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "בחר שם כינוי קצר" - -#: ../../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 "שם כינוי ישמש אותך כדי ליצור כתובת ערוץ קלה לזכירה למשל nickname%s" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "צור ערוץ" - -#: ../../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 "ערוץ הוא הזהות שלך ברשת זו. זה יכול לייצג אדם, בלוג, או פורום (נמנו רק אחדים). ערוצים יכולים ליצור חיבורים עם ערוצים אחרים כדי לשתף מידע בעזרת הרשאות מפורטות מאוד." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "מזהה מבקש לא תקין." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "סלק" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "סמן את כל התראות המערכת כנקראו" - -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../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 "תצלומי פרופיל" - -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "אלבום לא נמצא." - -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "מחק אלבום" - -#: ../../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 "מחק תצלום" - -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "לא נבחרו תצלומים" - -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "העלה תצלומים" - -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "הזן שם אלבום" - -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "או בחר אלבום קיים (לחיצה כפולה)" - -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "דברי הסבר (רשות):" - -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "תיאור (רשות):" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "תצלומי איש קשר" - -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "הצג את החדשים יותר בתחילה" - -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "הצג את הישנים יותר בתחילה" - -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1572 -msgid "View Photo" -msgstr "צפה בתצלום" - -#: ../../Zotlabs/Module/Photos.php:823 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1589 -msgid "Edit Album" -msgstr "ערוך אלבום" - -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "תצלום לא זמין" - -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "השתמש בתור תצלום פרופיל" - -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "השתמש בתור תצלום שער" - -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "תצלום פרטי" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "צפה בגודל מלא" - -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "הסר" - -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "ערוך תצלום" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "סובב כיוון-שעון (ימין)" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "סובב נגד כיוון-שעון (שמאל)" - -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "הזן שם אלבום חדש" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "או בחר באחד קיים (לחיצה כפולה)" - -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "דברי הסבר" - -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "הוסף תגית" - -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "דוגמא: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "אהבתי את זה (החלף)" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "לא אהבתי את זה (החלף)" - -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "אנא המתן" - -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "זה את/ה" - -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "תגובה" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "אוהב" - -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "לא אוהב" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "מסכים" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "לא מסכים" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "נמנע" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "נוכח" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "לא נוכח" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "עשוי להיווכח" - -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1732 -msgid "View all" -msgstr "צפה בכולם" - -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1756 -#: ../../include/channel.php:1139 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "אוהב" -msgstr[1] "אוהבים" - -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1759 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "לא אוהב" -msgstr[1] "לא אוהבים" - -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "כלי תצלום" - -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "בתצלום זה:" - -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "מפה" - -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "אוהב" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "לא אוהב" - -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "סגור" - -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "צפה באלבום" - -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "תצלומים אחרונים" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "שלח לך הודעה פרטית" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "הוסיף את הערוץ שלך" - -#: ../../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 "[היום]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "פרסם אירוע" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "לא מסוגל למצוא את המוקד שלך." - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "פרסום הצליח." - -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "שגיאת פרוטוקול OpenID. לא הוחזר ID." - -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "התחברות נכשלה." - -#: ../../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 "" - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "" - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "עורך תצורה" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "" - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "שם מודול:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:227 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "דחוף/עורר" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "נמען" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "בחר מה ברצונך לעשות לנמען" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "הפוך את פוסט זה לפרטי" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../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 "פרופיל לא נמצא." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "פרופיל נמחק." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "פרופיל-" - -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "פרופיל חדש נוצר." - -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "נדרש שם פרופיל." - -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "מצב משפחתי" - -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "שותף רומנטי" - -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "אוהב" - -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "לא אוהב" - -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "דת" - -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "השקפות פוליטיות" - -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "העדפה מינית" - -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "עמוד בית" - -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "צפה בפרופיל זה" - -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:940 -msgid "Edit visibility" -msgstr "ערוך נראות" - -#: ../../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:911 -msgid "Change profile photo" -msgstr "שנה תצלום פרופיל" - -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "צור פרופיל חדש באמצעות הגדרות אלו" - -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "שבט את פרופיל זה" - -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "מחק את פרופיל זה" - -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "הוסף דברי פרופיל" - -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "אישי" - -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "יחס" - -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "שונות" - -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "יבא פרופיל מתוך קובץ" - -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "יצא פרופיל לתוך קובץ" - -#: ../../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 "זהו הפרופיל השגרתי שלך." - -#: ../../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 "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "ספרים, ספרות" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "טלוויזיה" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../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 "הערוצים האחרים שלי" - -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:936 -msgid "Profile Image" -msgstr "תמונת פרופיל" - -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:918 -msgid "Edit Profiles" -msgstr "ערוך פרופילים" - -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "העלה תצלום פרופיל" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "מזהה פרופיל לא תקין." - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1230 -msgid "Profile" -msgstr "פרופיל" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1343 -msgid "Public Hubs" -msgstr "מוקדים ציבוריים" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "טיפוס גישה" - -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "מדיניות רישום" - -#: ../../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:962 -msgid "Ratings" -msgstr "דירוג" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "דרג" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "אתר רשת:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "ערוץ מרוחק [%s] (לא מוכר עדיין באתר זה)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "דירוג (מידע זה הינו ציבורי)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "הסבר לפי הצורך את הדירוג שלך (מידע זה הינו ציבורי)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "אין דירוג" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "דירוג: " - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "אתר רשת:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "תיאור: " - -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "הגדרות ערכת נושא עודכנו." - -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# חשבונות" - -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# חשבונות חסומים" - -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# ערוצים" - -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# עיקרי" - -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# שיבוטים" - -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "תור הודעות" - -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "התוכנה שלך אמורה להיות מעודכנת" - -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "הנהלה" - -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "סיכום" - -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "חשבונות רשומים" - -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "הרשמות תלויות ועומדות" - -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "ערוצים רשומים" - -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "תוספים פעילים" - -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "גרסא" - -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "הגדרות אתר עודכנו." - -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2845 -msgid "Default" -msgstr "ברירת מחדל" - -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "נייד" - -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "ניסיוני" - -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "לא נתמך" - -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "כן - עם אימות" - -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "האתר שלי אינו שרת פומבי" - -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "לאתר שלי ישנה גישה בתשלום בלבד" - -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "לאתר שלי ישנה גישה חופשית בלבד" - -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "האתר שלי מציע חשבונות בחינם לצד אפשרות לשדרוגים בתשלום" - -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1455 -msgid "Site" -msgstr "אתר" - -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "רישום" - -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "העלאת קובץ" - -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "מדינויות" - -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "מתקדם" - -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "שם אתר" - -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "באנר/לוגו" - -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "מידע מנהל" - -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "שפת מערכת" - -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "מוטיב מערכת" - -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "גודל תמונה מרבי" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "הזמנה בלבד" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "מתחמי דוא״ל מורשים" - -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "מתחמי דוא״ל לא מורשים" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "התחבר בעמוד בית" - -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "שרת ספרייה שגרתי" - -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "משתמש פרוקסי" - -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "URL פרוקסי" - -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "פקיעת זמן רשת" - -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "תדירות שגרתית" - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "עומס ממוצע מרבי" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "נעל תכונת %s" - -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "נהל תכונות נוספות" - -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "לא נמצא שרת" - -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "מזהה" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "לערוץ" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "בשרת" - -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "שרת" - -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1458 -msgid "Security" -msgstr "אבטחה" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "התר התקשרויות רק מתוך ערוצים אלה" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "חסום התקשרויות מתוך ערוצים אלה" - -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "התר שיבוצים מתוך אתרים וקישורים נאובטחים (SSL) בלבד." - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "אין עדכונים כושלים." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "עדכונים כושלים" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "עדיפות" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "סמן מוקד בלתי מקוון לצמיתות" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "רוקן תור עבור מוקד זה" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "איש קשר מוכר אחרון" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "חשבון %s נמחק" -msgstr[1] "%s חשבונות נמחקו" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "חשבון לא נמצא" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "חשבון '%s' נמחק" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "חשבון '%s' נחסם" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "חשבון '%s' נפתח" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1456 -msgid "Accounts" -msgstr "חשבונות" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "בחר הכל" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "הרשמות ממתינות לצורך אישור" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "תאריך בקשה" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "אין הרשמות." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "אסור" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "כל הערוצים" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "תאריך רישום" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "כניסה אחרונה" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "פג" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "מחלקת שירות" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "ערוץ %s נמחק" -msgstr[1] "%s ערוצים נמחקו" - -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "ערוץ לא נמצא" - -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "ערוץ '%s' נמחק" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "ערוץ '%s' צונזר" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "ערוץ '%s' יצא מכלל צנזורה" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1457 -msgid "Channels" -msgstr "ערוצים" - -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "צנזר" - -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "התר קוד" - -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "אסור קוד" - -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 -msgid "Channel" -msgstr "ערוץ" - -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "תוסף %s מנוטרל." - -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "תוסף %s מאופשר." - -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "נטרל" - -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "אפשר" - -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1460 -msgid "Plugins" -msgstr "תוספות" - -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "החלף" - -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:208 -#: ../../include/widgets.php:638 -msgid "Settings" -msgstr "הגדרות" - -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "מחבר: " - -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "מתחזק: " - -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "גרסת פרויקט נומינלית: " - -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "גרסת פרויקט מרבית: " - -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "גרסת PHP נומינלית: " - -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "מצריך: " - -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(רשות)" - -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "הורד מאגר תוספים" - -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "התקן מאגר חדש" - -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:333 -msgid "Install" -msgstr "התקן" - -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "נהל מאגרים" - -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "מאגרי תוסף מותקנים" - -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "התקן מאגר תוסף חדש" - -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:333 -msgid "Update" -msgstr "עדכן" - -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "החלף ענף" - -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "לא נמצאו מוטיבים." - -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "צילום מסך" - -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1461 -msgid "Themes" -msgstr "ערכות נושא" - -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[ניסיוני]" - -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[לא נתמך]" - -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "הגדרות יומן עדכנו." - -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1482 -#: ../../include/widgets.php:1492 -msgid "Logs" -msgstr "יומנים" - -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "טהר" - -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "דיבאג" - -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "קובץ יומן" - -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "שדה פרופיל חדש" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "שם כינוי שדה" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "שם מערכת של שדה" - -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "טיפוס קלט" - -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "שם שדה" - -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "טקסט עזרה" - -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "מידע נוסף (רשות)" - -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "הגדרת שדה לא נמצאה" - -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "ערוך שדה פרופיל" - -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1463 -msgid "Profile Fields" -msgstr "שדות פרופיל" - -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "שדות פרופיל בסיסיים" - -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "שדות פרופיל מתקדמים" - -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(בנוסף על שדות בסיסיים)" - -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "כל השדות הזמינים" - -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "שדות מותאמים" - -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "צור שדה מותאם" - -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "אפליקציה מותקנת." - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "אפליקציה פגומה." - -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "הטמע קוד" - -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "ערוך אפליקציה" - -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "צור אפליקציה" - -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "שם של אפליקציה" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "מיקום (URL) של אפליקציה" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 פיקסלים - רשות" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "קטגוריות (רשות, רשימה מופרדת פסיקים)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "מזהה גרסא" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "מחיר אפליקציה" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "מיקום (URL) כדי לרכוש אפליקציה" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "בחר תיקיית סימניות" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "שמור סימנייה" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL של סימנייה" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "או הזן שם תיקיית סימניות חדש" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "סיסמאות לא תואמות." - -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "הרשמתך לא ניתנת לעיבוד" - -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "רישום על מוקד זה הינו מנוטרל." - -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "רישום על מוקד זה הינו מותנה באישור." - -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "הירשם במוקד מקושר אחר." - -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "תנאי שימוש" - -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "אני מקבל את ה%s לאתר רשת זה" - -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "כתובת דוא״ל שלך" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "בחר סיסמה" - -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "בבקשה הזן שוב את סיסמתך" - -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "לא" - -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "כן" - -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "חברות באתר זה היא באמצעות הזמנה בלבד." - -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1686 -msgid "Register" -msgstr "הרשמה" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "המשך כדי ליצור את הערוץ הראשון שלך" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "אנא התחבר." - -#: ../../Zotlabs/Module/Removeaccount.php:34 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeaccount.php:56 -msgid "Remove This Account" -msgstr "הסר את חשבון זה" - -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "WARNING: " -msgstr "אזהרה: " - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "" - -#: ../../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:58 -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Please enter your password for verification:" -msgstr "אנא הזן את הסיסמה שלך לצורך אימות:" - -#: ../../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: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:60 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Remove Account" -msgstr "הסר חשבון" - -#: ../../Zotlabs/Module/Removeme.php:33 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:58 -msgid "Remove This Channel" -msgstr "הסר את ערוץ זה" - -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This channel will be completely removed from the network. " -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../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:62 ../../Zotlabs/Module/Settings.php:1124 -msgid "Remove Channel" -msgstr "הסר ערוץ" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "אימות נכשל." - -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "אימות מרוחק" - -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "פריטים מתוייגים עם: %s" - -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "תוצאות חיפוש עבור: %s" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "לא נמצאו הגבלות מחלקת ערוץ." - -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "נדרש שם" - -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "מפתח וגם סוד הינם בגדר חובה." - -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "לא דוא״ל תקף." - -#: ../../Zotlabs/Module/Settings.php:228 -msgid "Protected email address. Cannot change to that email." -msgstr "כתובת דוא״ל מוגנת. לא מסוגל לשנות לדוא״ל זה." - -#: ../../Zotlabs/Module/Settings.php:237 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:254 -msgid "Password verification failed." -msgstr "אימות סיסמה נכשל." - -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "סיסמאות לא תואמות. סיסמה לא שונתה." - -#: ../../Zotlabs/Module/Settings.php:265 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "סיסמאות ריקות לא מותרות. סיסמה לא שונתה." - -#: ../../Zotlabs/Module/Settings.php:279 -msgid "Password changed." -msgstr "סיסמה שונתה." - -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "עדכון סיסמה נכשל. אנא נסה שוב." - -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "הגדרות עודכנו." - -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 -msgid "Add application" -msgstr "הוסף אפליקציה" - -#: ../../Zotlabs/Module/Settings.php:592 -msgid "Name of application" -msgstr "שם של אפליקציה" - -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "מפתח צרכן" - -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "סוד צרכן" - -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:595 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "רשות" - -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "יישום לא נמצא." - -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "אפליקציות מחוברות" - -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "אין שם" - -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "הסר אישור" - -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "הגדרות חשבון" - -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "סיסמה נוכחית" - -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "הזן סיסמה חדשה" - -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "אמת סיסמה חדשה" - -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Leave password fields blank unless changing" -msgstr "השאר דשות סיסמה ריקים אלא אם כן ברצונך לשנות" - -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "כתובת דוא״ל:" - -#: ../../Zotlabs/Module/Settings.php:706 -msgid "Remove this account including all its channels" -msgstr "הסר את חשבון זה לרבות כל הערוצים שלו" - -#: ../../Zotlabs/Module/Settings.php:729 -msgid "Additional Features" -msgstr "תכונות נוספות" - -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "הגדרות מקשר" - -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "אין ערכת נושא מיוחדת להתקנים ניידים" - -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (ניסיוני)" - -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "הגדרות תצוגה" - -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "הגדרות ערכת נושא" - -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "הגדרות ערכת נושא מותאמת" - -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "הגדרות תוכן" - -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:848 -msgid "Preload images before rendering the page" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:848 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "עדכן דפדפן כל xx שניות" - -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "מינימום של 10 שניות, אין מקסימום" - -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum of 100 items" -msgstr "מקסימום של 100 פריטים" - -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(תגובות מוצגות בנפרד)" - -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:860 -msgid "Grid page max height of content (in pixels)" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "אף אחד חוץ ממך" - -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "רק אלו שהתרת להם במפורש" - -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "חיבורים מאושרים" - -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "כל חיבור" - -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "כל אחד באתר רשת זה" - -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "כל אחד ברשת זו" - -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "כל אחד שאושר" - -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "כל אחד באינטרנט" - -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:981 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Your channel address is" -msgstr "כתובת הערוץ שלך היא" - -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "הגדרות ערוץ" - -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "הגדרות בסיסיות" - -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1121 -msgid "Full Name:" -msgstr "שם מלא:" - -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "אזור זמן שלך:" - -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "מיקום פוסט שגרתי:" - -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Geographical location to display on your posts" -msgstr "מיקום גיאוגרפי להצגה בפוסטים שלך" - -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Use Browser Location:" -msgstr "השתמש במיקום דפדפן:" - -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "תוכן מבוגרים" - -#: ../../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 "ערוץ זה מפרסם תוכן למבוגרים באופן תדיר או שגרתי. (אנא תייג כל חומר למבוגרים ו/או עירום עם NSFW#)" - -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Security and Privacy Settings" -msgstr "הגדרות אבטחה ופרטיות" - -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Hide my online presence" -msgstr "הסתר את הנוכחות המקוונת שלי" - -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Simple Privacy Settings:" -msgstr "הגדרות פרטיות פשוטות:" - -#: ../../Zotlabs/Module/Settings.php:1056 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "ציבורי מאוד - מתירני ביותר (יש להשתמש בזהירות)" - -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "טיפוסי - ציבורי שגרתי, פרטיות לפי דרישה (דומה להרשאות רשת חברתית אולם לצד פרטיות משופרת)" - -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Private - default private, never open or public" -msgstr "פרטי - פרטי שגרתי, אף פעם לא פתוח או ציבורי" - -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "חסום - חסום שגרתי אל/מן כל אחד" - -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "התר לאחרים לתייג את הפוסטים שלך" - -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1063 -msgid "Advanced Privacy Settings" -msgstr "הגדרות פרטיות מתקדמות" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "הגדרות התראה" - -#: ../../Zotlabs/Module/Settings.php:1082 -msgid "By default post a status message when:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1083 -msgid "accepting a friend request" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "שלח דוא״ל התראה כאשר:" - -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "קיבלת בקשת חיבור" - -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "החיבורים שלך הינם מאומתים" - -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "מישהו כותב על קיר הפרופיל שלך" - -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "מישהו רושם תגובת המשך" - -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "קיבלת הודעה פרטית" - -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "קיבלת הצעת ידידים" - -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "פעילות ערוץ לא נראית" - -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "הודעות ערוץ לא נראות" - -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "אירועים קרובים" - -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "אירועים היום" - -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "ימי הולדת קרובים" - -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "הודעות מידע מערכת" - -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "חיבורים חדשים" - -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "הרשמות מערכת" - -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Must be greater than 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1118 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1119 -msgid "Miscellaneous Settings" -msgstr "הגדרות שונות" - -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "תיקיית העלאת תצלום שגרתית" - -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "%Y - current year, %m - current month" -msgstr "%Y - שנה נוכחית, %m - חודש נוכחי" - -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "Default file upload folder" -msgstr "תיקיית העלאת קובץ שגרתית" - -#: ../../Zotlabs/Module/Settings.php:1123 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1125 -msgid "Remove this channel." -msgstr "הסר את ערוץ זה." - -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "שרת $Projectname - הבנייה" - -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "לא היתה אפשרות להתחבר למסד נתונים." - -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "בדיקת מערכת" - -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "בדוק שוב" - -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "חיבור מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "שם שרת מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "ברירת מחדל 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "פורט מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "שם כניסה מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "סיסמה מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "שם מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "טיפוס מסד נתונים" - -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "כתובת דוא״ל מנהל אתר" - -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "כתובת אתר אינטרנט" - -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "אנא השתמש בכתובת SSL (כלומר, https) אם זמינה." - -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "הגדרות אתר" - -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "אפשר תכונות מתקדמות בפרויקט $Projectname?" - -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:405 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "נתיב PHP נתון ליישום" - -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "שורת פקודה PHP" - -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "הפק מפתחות הצפנה" - -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "מודול libCurl PHP" - -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "מודול OpenSSL PHP" - -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "מודול mysqli PHP או postgres" - -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "מודול mb_string PHP" - -#: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "מודול mcrypt PHP" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "xml PHP module" -msgstr "מודול xml PHP" - -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 -msgid "Apache mod_rewrite module" -msgstr "מודול Apache mod_rewrite" - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 -msgid "proc_open" -msgstr "proc_open" - -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:515 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:523 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:527 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:531 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:557 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Setup.php:563 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php הינו כתיב" - -#: ../../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 "" - -#: ../../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: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 "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Setup.php:583 -#, php-format -msgid "%s is writable" -msgstr "%s הינו כתיב" - -#: ../../Zotlabs/Module/Setup.php:599 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:603 -msgid "store is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Setup.php:641 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:643 -msgid "SSL certificate validation" -msgstr "הוכחת תקפות של תעודת SSL" - -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:652 -msgid "Url rewrite is working" -msgstr "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Setup.php:685 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:719 -msgid "

What next

" -msgstr "

מה הלאה

" - -#: ../../Zotlabs/Module/Setup.php:720 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "" - -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "חדש" - -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "הסר את כל הקבצים" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "הסר את קובץ זה" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "גרסא %s" - -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "זהו מוקד של $Projectname - רשת קואופרטיבית מבוזרת של אתרי רשת בעלי פרטיות משוכללת." - -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "תגית: " - -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "עומס ממוצע נוכחי: " - -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "אנא בקר באתר hubzilla.org כדי ללמוד עוד אודות $Projectname." - -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "סוגיות $projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "מנהלי אתר" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "מקור נוצר." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "מקור עודכן." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:71 -#: ../../include/widgets.php:630 -msgid "Channel Sources" -msgstr "מקורות ערוץ" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "מקור חדש" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "שם ערוץ" - -#: ../../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 "מקור לא נמצא." - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "ערוך מקור" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "מחק מקור" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "מקור הוסר" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "התעלם/הסתר" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "פוסט" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1949 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "תגובה" - -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "הצג דבר" - -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "פריט לא נמצא" - -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "ערוך דבר" - -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "בחר פרופיל" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "פרסם פעילות" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "שם של דבר, לדוגמא: משהו" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL של דבר (רשות)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL עבור תצלום של משהו (רשות)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "הוסף דבר לפרופיל שלך" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "יצא ערוץ" - -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "" - -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -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 "" - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -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 "" - -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -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 "" - -#: ../../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 "" - -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "אין חיבורים." - -#: ../../Zotlabs/Module/Viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "צפה בחיבורים" - -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "מקור פריט" - -#: ../../Zotlabs/Module/Webpages.php:192 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/conversation.php:1700 ../../include/nav.php:106 -msgid "Webpages" -msgstr "עמודי רשת" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "פעולות" - -#: ../../Zotlabs/Module/Webpages.php:204 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "קישור עמוד" - -#: ../../Zotlabs/Module/Webpages.php:205 -msgid "Page Title" -msgstr "כותרת עמוד" - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "חיפוש Xchan" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "" - -#: ../../Zotlabs/Module/Wiki.php:75 ../../Zotlabs/Lib/Apps.php:218 -msgid "Wiki" -msgstr "ויקי" - -#: ../../Zotlabs/Module/Wiki.php:76 -msgid "Sandbox" -msgstr "ארגז חול" - -#: ../../Zotlabs/Module/Wiki.php:156 -msgid "Enter the name of your new wiki:" -msgstr "הזן את השם של הויקי החדש שלך:" - -#: ../../Zotlabs/Module/Wiki.php:157 -msgid "Enter the name of the new page:" -msgstr "הזן את השם של העמוד החדש:" - -#: ../../Zotlabs/Module/Wiki.php:158 -msgid "Enter the new name:" -msgstr "הזן את השם החדש:" - -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "" - -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "מציין חדר שגוי" - -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "חדר לא נמצא." - -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "חדר מלא" - -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1848 -msgid "$Projectname Notification" -msgstr "התראות $Projectname" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1849 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1851 -msgid "Thank You," -msgstr "תודה," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1853 -#, php-format -msgid "%s Administrator" -msgstr "הנהלת %s" - -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:התראה] דואר חדש נתקבל %s" - -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s של לך הודעה פרטית חדשה באתר %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s שלח לך %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "הודעה פרטית" - -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "אנא בקר בכתובת %s כדי לצפות ו/או להשיב להודעות הפרטיות שלך." - -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:התראה] תגובה לדיון #%1$d מאת %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:התראה] %s פרסם לקיר הפרופיל שלך" - -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:התראה] %s תייג אותך" - -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:התראה] %s תייג פוסט שלך" - -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:התראה] היכרות פורמלית נתקבלה" - -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "אתה יכול לבקר את הפרופיל שלהם בקישור %s" - -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:התראה] הצעת חבר נתקבלה" - -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "שם:" - -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "תצלום:" - -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:התראה]" - -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "צור פוסט חדש" - -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "הגיב/ה על פוסט של %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "הודעה פרטית" - -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "בחר" - -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "שמור לתיקייה" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "אני אופיע" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "אני לא אופיע" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "אני עשוי/ה להופיע" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "אני מסכים/ה" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "אני לא מסכים/ה" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "אני נמנע/ת" - -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "הוסף כוכב" - -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "הסר כוכב" - -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "הוסף תגית" - -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "שתף זאת" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "שתף" - -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "תגובה %d" -msgstr[1] "%d תגובות" - -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "אל" - -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "מתוך" - -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "קיר-אל-קיר" - -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "מתוך קיר-אל-קיר:" - -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "מאת %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "נערך לאחרונה: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "פג: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "שמור סימניות" - -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "הוסף ללוח שנה" - -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "סמן את הכל כנקראו" - -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] הצג הכל" - -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "מובלט" - -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "נטוי" - -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "קו תחתון" - -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "ציטוט" - -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "קוד" - -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "תמונה" - -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "הכנס קישור" - -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "וידאו" - -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "מנהל אתר" - -#: ../../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 "הצע ערוצים" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1704 -msgid "Login" -msgstr "כניסה" - -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "ערוץ בית" - -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/conversation.php:1664 -#: ../../include/conversation.php:1667 ../../include/nav.php:201 -msgid "Events" -msgstr "אירועים" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:167 -msgid "Directory" -msgstr "ספרייה" - -#: ../../Zotlabs/Lib/Apps.php:225 ../../include/nav.php:193 -msgid "Mail" -msgstr "דואר" - -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:96 -msgid "Chat" -msgstr "שיחה" - -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Probe" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Suggest" -msgstr "הצע" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Random Channel" -msgstr "ערוץ אקראי" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Invite" -msgstr "הזמן" - -#: ../../Zotlabs/Lib/Apps.php:234 ../../include/widgets.php:1459 -msgid "Features" -msgstr "תכונות" - -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Post" -msgstr "פוסט" - -#: ../../Zotlabs/Lib/Apps.php:338 -msgid "Purchase" -msgstr "רכוש" - -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "" - -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 -#: ../../include/widgets.php:429 -msgid "Categories" -msgstr "קטגוריות" - -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "תגיות" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "מילות מפתח" - -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "רוצים" - -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "רוצה" - -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "אוהב" - -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "לא אוהב" - -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "קובץ תמונה הינו ריק." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "אחסון תצלום נכשל" - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "תצלום חדש" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "אלבומי תמונה" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "העלה תצלומים חדשים" - -#: ../../include/text.php:428 -msgid "prev" -msgstr "קודם" - -#: ../../include/text.php:430 -msgid "first" -msgstr "ראשון" - -#: ../../include/text.php:459 -msgid "last" -msgstr "אחרון" - -#: ../../include/text.php:462 -msgid "next" -msgstr "הבא" - -#: ../../include/text.php:472 -msgid "older" -msgstr "ישן יותר" - -#: ../../include/text.php:474 -msgid "newer" -msgstr "חדש יותר" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "אין חיבורים" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "" - -#: ../../include/text.php:1039 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1040 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1041 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1042 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1055 -msgid "happy" -msgstr "שמח" - -#: ../../include/text.php:1056 -msgid "sad" -msgstr "עצוב" - -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "מתון" - -#: ../../include/text.php:1058 -msgid "tired" -msgstr "עייף" - -#: ../../include/text.php:1059 -msgid "perky" -msgstr "חצוף" - -#: ../../include/text.php:1060 -msgid "angry" -msgstr "כועס" - -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "" - -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "נבוך" - -#: ../../include/text.php:1063 -msgid "interested" -msgstr "מגלה עניין" - -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "מר" - -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "עליז" - -#: ../../include/text.php:1066 -msgid "alive" -msgstr "חי" - -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "נרגז" - -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "נרגז" - -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "נרגז" - -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "מופרע" - -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "מתוסכל" - -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "מדוכא" - -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "מונע" - -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "רגוע" - -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "מופתע" - -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "יום שני" - -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "יום שלישי" - -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "יום רביעי" - -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "יום חמישי" - -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "יום שישי" - -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "יום שבת" - -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "יום ראשון" - -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "ינואר" - -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "פברואר" - -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "מרץ" - -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "אפריל" - -#: ../../include/text.php:1261 -msgid "May" -msgstr "מאי" - -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "יוני" - -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "יולי" - -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "אוגוסט" - -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "ספטמבר" - -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "אוקטובר" - -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "נובמבר" - -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "דצמבר" - -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "תצריף לא מוכר" - -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "לא מוכר" - -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "הסר קטגוריה" - -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "הסר מתוך קובץ" - -#: ../../include/text.php:1754 ../../include/text.php:1825 -msgid "default" -msgstr "ברירת מחדל" - -#: ../../include/text.php:1762 -msgid "Page layout" -msgstr "" - -#: ../../include/text.php:1762 -msgid "You can create your own with the layouts tool" -msgstr "" - -#: ../../include/text.php:1804 -msgid "Page content type" -msgstr "טיפוס תוכן עמוד" - -#: ../../include/text.php:1837 -msgid "Select an alternate language" -msgstr "בחר שפה חלופית" - -#: ../../include/text.php:1954 -msgid "activity" -msgstr "פעילות" - -#: ../../include/text.php:2263 -msgid "Design Tools" -msgstr "כלי עיצוב" - -#: ../../include/text.php:2269 -msgid "Pages" -msgstr "עמודים" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/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/message.php:20 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[אין נושא]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "" - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s כעת מחובר עם %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "קטגוריות:" - -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "תויק תחת:" - -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "צפה בתוך הקשר" - -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "להסיר" - -#: ../../include/conversation.php:854 ../../include/nav.php:247 -msgid "Loading..." -msgstr "כעת טוען..." - -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "מחק פריטים נבחרים" - -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "צפה במקור" - -#: ../../include/conversation.php:952 -msgid "Follow Thread" -msgstr "עקוב שרשור" - -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "נקר שרשור" - -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "פעילות/פוסטים" - -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "ערוך חיבור" - -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "הודעה" - -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "%s אהב זאת." - -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "%s לא אוהב זאת." - -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "איש %2$d אוהב זאת." -msgstr[1] "%2$d אנשים אוהבים זאת." - -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "איש %2$d לא אוהב זאת." -msgstr[1] "%2$d אנשים לא אוהבים זאת." - -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "ועוד" - -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", ועוד איש %d אחר" -msgstr[1] ", ועוד %d אנשים אחרים" - -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "%s אוהבים זאת." - -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "%s לא אוהבים זאת." - -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "קבע את המיקום שלך" - -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "טהר מיקום דפדפן" - -#: ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "" - -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "היכן אתה כעת?" - -#: ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "" - -#: ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "" - -#: ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "" - -#: ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "" - -#: ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "" - -#: ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "" - -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "שם קישור עמוד" - -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "פרסם בתור" - -#: ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "" - -#: ../../include/conversation.php:1236 ../../include/conversation.php:1273 -msgid "OK" -msgstr "אישור" - -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "קטגוריות (רשות, רשימה מופרדת פסיקים)" - -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "" - -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "גלה" - -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "זרמים ציבוריים מיובאים" - -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "מיין לפי תאריך פוסט" - -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "פוסטים אשר מציינים או מערבים אותך" - -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "זרם פעילות - לפי תאריך" - -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "פוסטים מועדפים" - -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "ספאם" - -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "פוסטים מסומנים בתור ספאם" - -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "הודעות ופרסומי סטטוס" - -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "אודות" - -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "פרטי פרופיל" - -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "קבצים ואחסון" - -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:842 -msgid "Chatrooms" -msgstr "חדרי שיחה" - -#: ../../include/conversation.php:1690 ../../include/nav.php:102 -msgid "Bookmarks" -msgstr "סימניות" - -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "סימניות שמורות" - -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "נהל עמודי רשת" - -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1765 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "מסכים" -msgstr[1] "מסכימים" - -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "לא מסכים" -msgstr[1] "לא מסכימים" - -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" - -#: ../../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/bbcode.php:123 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 ../../include/bbcode.php:888 -#: ../../include/bbcode.php:891 ../../include/bbcode.php:896 -#: ../../include/bbcode.php:899 ../../include/bbcode.php:902 -#: ../../include/bbcode.php:905 -msgid "Image/photo" -msgstr "תמונה/תצלום" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:916 -msgid "Encrypted content" -msgstr "תוכן מוצפן" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "התקן אלמנט %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 "" - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "לחץ כדי לפתוח/לסגור" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "" - -#: ../../include/bbcode.php:607 -msgid "Different viewers will see this text differently" -msgstr "צופים שונים ייראו את טקסט זה בצורה שונה" - -#: ../../include/bbcode.php:854 -msgid "$1 wrote:" -msgstr "$1 כתב(ה):" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "אפשרויות ספרייה" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "מצב בטוח" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "פורומים ציבוריים בלבד" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -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:3722 -msgid "invalid target signature" -msgstr "" - -#: ../../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 "" - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1703 -msgid "Logout" -msgstr "יציאה" - -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "סיים את סשן זה" - -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "בית" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "הפרסומים והדיונים שלך" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "עמוד הפרופיל שלך" - -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "נהל/ערוך פרופילים" - -#: ../../include/nav.php:90 ../../include/channel.php:922 -msgid "Edit Profile" -msgstr "ערוך פרופיל" - -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "ערוך את הפרופיל שלך" - -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "התצלומים שלך" - -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "הקבצים שלך" - -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "החדרי שיחה שלך" - -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "הסימניות שלך" - -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "העמודי רשת שלך" - -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "התחברות" - -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - לחץ כדי להתנתק" - -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "אימות מרוחק" - -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "לחץ כדי לאמת את מוקד הבית שלך" - -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "עמוד בית" - -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "צור חשבון" - -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "עזרה ותיעוד" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "אפליקציות, עזרים, קישורים, משחקים" - -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "" - -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "ערוץ ספרייה" - -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "" - -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "ערוץ בית" - -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "סמן את כל התראות הערוץ כנקראו" - -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "הודעות" - -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "התראות" - -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "צפה בכל ההתראות" - -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "דואר פרטי" - -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "צפה בכל ההודעות הפרטיות" - -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "סמן את כל ההודעות הפרטיות כנקראו" - -#: ../../include/nav.php:196 ../../include/widgets.php:658 -msgid "Inbox" -msgstr "תיבה נכנסת" - -#: ../../include/nav.php:197 ../../include/widgets.php:663 -msgid "Outbox" -msgstr "תיבה יוצאת" - -#: ../../include/nav.php:198 ../../include/widgets.php:668 -msgid "New Message" -msgstr "הודעה חדשה" - -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "לוח שנה אירועים" - -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "ראה את כל האירועים" - -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "סמן את כל האירועים כנקראו" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "נהל את הערוצים שלך" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "הגדרות חשבון/ערוץ" - -#: ../../include/nav.php:216 ../../include/widgets.php:1489 -msgid "Admin" -msgstr "מנהל" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "הבניית והגדרת אתר" - -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@name, #tag, ?doc, content" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "אנא המתן..." - -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "הזמנה %d זמינה" -msgstr[1] "%d הזמנות זמינות" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "מצא ערוצים" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "הזן שם או עניין" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "התחבר/עקוב" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "פרופיל אקראי" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "הזמן חברים" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "דוגמא מתקדמת: name=פרד וגם country=איסלנד" - -#: ../../include/contact_widgets.php:53 ../../include/features.php:98 -#: ../../include/widgets.php:310 -msgid "Saved Folders" -msgstr "תיקיות שמורות" - -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -msgid "Everything" -msgstr "כל דבר" - -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "הצג עוד" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "באופן תדיר" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "כל שעה" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "פעמיים ביום" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "יומי" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "שבועי" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "חודשי" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "כעת זכר" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "כעת נקבה" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "בעיקר זכר" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "בעיקר נקבה" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "טרנסג׳נדר" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "בין מיני" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "טרנסקסואל" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "אנדרוגיני" - -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "ניטראלי" - -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "" - -#: ../../include/selectors.php:49 ../../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/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "שם ריק" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "שם ארוך מדי" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "אין מזהה חשבון" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "נדרש שם כינוי." - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "פרופיל שגרתי" - -#: ../../include/channel.php:772 -msgid "Requested channel is not available." -msgstr "ערוץ מבוקש אינו זמין." - -#: ../../include/channel.php:919 -msgid "Create New Profile" -msgstr "צור פרופיל חדש" - -#: ../../include/channel.php:939 -msgid "Visible to everybody" -msgstr "נראה לכל אחד" - -#: ../../include/channel.php:1012 ../../include/channel.php:1123 -msgid "Gender:" -msgstr "מין:" - -#: ../../include/channel.php:1013 ../../include/channel.php:1167 -msgid "Status:" -msgstr "מצב:" - -#: ../../include/channel.php:1014 ../../include/channel.php:1178 -msgid "Homepage:" -msgstr "עמוד בית:" - -#: ../../include/channel.php:1015 -msgid "Online Now" -msgstr "מקוון כעת" - -#: ../../include/channel.php:1128 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1152 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/channel.php:1153 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1160 -msgid "Birthday:" -msgstr "יום הולדת:" - -#: ../../include/channel.php:1173 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1176 -msgid "Sexual Preference:" -msgstr "העדפה מינית:" - -#: ../../include/channel.php:1182 -msgid "Tags:" -msgstr "תגיות:" - -#: ../../include/channel.php:1184 -msgid "Political Views:" -msgstr "השקפות פוליטיות:" - -#: ../../include/channel.php:1186 -msgid "Religion:" -msgstr "דת:" - -#: ../../include/channel.php:1190 -msgid "Hobbies/Interests:" -msgstr "תחביבים/עניין:" - -#: ../../include/channel.php:1192 -msgid "Likes:" -msgstr "אוהב:" - -#: ../../include/channel.php:1194 -msgid "Dislikes:" -msgstr "שונא:" - -#: ../../include/channel.php:1196 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1198 -msgid "My other channels:" -msgstr "הערוצים האחרים שלי:" - -#: ../../include/channel.php:1200 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1202 -msgid "Books, literature:" -msgstr "ספרים, ספרות:" - -#: ../../include/channel.php:1204 -msgid "Television:" -msgstr "טלוויזיה:" - -#: ../../include/channel.php:1206 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/channel.php:1208 -msgid "Love/Romance:" -msgstr "אהבה/רומנטיקה:" - -#: ../../include/channel.php:1210 -msgid "Work/employment:" -msgstr "עבודה/תעסוקה:" - -#: ../../include/channel.php:1212 -msgid "School/education:" -msgstr "בי״ס/חינוך:" - -#: ../../include/channel.php:1232 -msgid "Like this thing" -msgstr "" - -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "נראה לקהל השגרתי שלך" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "רק אני" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "ציבורי" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" -msgstr "כל חחשבון אצל %s" - -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "כל חיבור מהחיבורים שלי" - -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "רק חיבורים אשר אני מתיר באופן מפורש" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../include/PermissionDescription.php:161 -msgid "" -"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 "כתובת דוא״ל לא תקינה" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "נדרשת הזמנה." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "אימות הזמנה לא התאפשר." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "אנא הזן את המידע הנחוץ." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "נכשל לאחסן מידע חשבון." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "אימות רישום עבור %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "בקשת רישום אצל %s" - -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1896 -msgid "Administrator" -msgstr "מנהל" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "סיסמת רישום שלך" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "פרטי רישום עבור %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "חשבון אושר." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "רישום בוטל עבור %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "חשבון אומת. אנא התחבר." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "לחץ כאן כדי לשדרג." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "פריט לא נמצא." - -#: ../../include/attach.php:499 -msgid "No source file." -msgstr "אין קובץ מקור." - -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:674 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:688 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:846 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:859 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "נתיב לא זמין." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "שם נתיב ריק" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "שם קובץ או נתיב כפול" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "נתיב לא נמצא." - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir נכשל." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "אחסון מסד נתונים נכשל." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "נתיב ריק" - -#: ../../include/features.php:48 -msgid "General Features" -msgstr "תכונות כלליות" - -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "פקיעת תוכן" - -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "" - -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "פרופילים מרובים" - -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "פרופיל מתקדמים" - -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "" - -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "יבוא/יצוא פרופיל" - -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "" - -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "עמודי רשת" - -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "הסתר דירוג" - -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "" - -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "פתקים פרטיים" - -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "מאפשר כלי לאחסון פתקים ותזכורות (הערה: לא מוצפן)" - -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "" - -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "" - -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "מיקום תצלום" - -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "" - -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" -msgstr "" - -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." -msgstr "" - -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "ימי הולדת חכמים" - -#: ../../include/features.php:60 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "" - -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "מצב מומחה" - -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "" - -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "ערוץ פרמיה" - -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../include/features.php:67 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "תצלומים גדולים" - -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "" - -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "אפילו עוד הצפנה" - -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "אפשר כלי הצבעה" - -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "" - -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "" - -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "" - -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "" - -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "" - -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "סינון רשת וזרם" - -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "חפש לפי תאריך" - -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "מסנן אוספים" - -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "קבוצת פרטיות" - -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "" - -#: ../../include/features.php:84 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "חיפושים שמורים" - -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "כלי קירבה" - -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "סינון חיבור" - -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "" - -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "הצג הצעות ערוץ" - -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "" - -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:97 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:100 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:101 -msgid "Tag Cloud" -msgstr "ענן תגיות" - -#: ../../include/features.php:101 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "תוכן מוטמע" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "הטמעה הינה מנוטרלת" - -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../include/connections.php:95 -msgid "New window" -msgstr "חלון חדש" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "משתמש '%s' נמחק" - -#: ../../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 "הצג" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "אל תציג" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "שירותי רשת ופרסום אחרים" - -#: ../../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 "מנותק." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -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 "YYYY-MM-DD או MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2471 -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 "לפני %1$d %2$s" - -#: ../../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 "יום הולדת שמח %1$s" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "הוסף חיבורים חדשים לקבוצת פרטיות זו" - -#: ../../include/group.php:289 -msgid "edit" -msgstr "ערוך" - -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "ערוך קבוצה" - -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "הוסף קבוצת פרטיות" - -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "להוסיף" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "למחוק את פריט זה?" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] הצג פחות" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] הרחב" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] צמצם" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "סיסמה קצרה מדי" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "סיסמאות לא תואמות" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "כולם" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "מימרת סיסמה סודית" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "סגור הכל" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "אין דבר חדש כאן" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "תאר (רשות)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "לפני" - -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "מעכשיו" - -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "פחות מדקה" - -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "דקה לערך" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d דקות" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "שעה לערך" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr " %d שעות לערך" - -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "יום" - -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d ימים" - -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "חודש לערך" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d חודשים" - -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "שנה לערך" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d שנים" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "מאי" - -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "ינו׳" - -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "פבר׳" - -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "מרץ" - -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "אפר׳" - -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "מאי" - -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "יונ׳" - -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "יול׳" - -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "אוג׳" - -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "ספט׳" - -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "אוק׳" - -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "נוב׳" - -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "דצמ׳" - -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "א׳" - -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "ב׳" - -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "ג׳" - -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "ד׳" - -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "ה׳" - -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "ו׳" - -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "ש׳" - -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "היום" - -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "חודש" - -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "שבוע" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "יום" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "כל היום" - -#: ../../include/network.php:682 -msgid "view full size" -msgstr "צפה בגודל מלא" - -#: ../../include/network.php:1910 -msgid "No Subject" -msgstr "אין נושא" - -#: ../../include/network.php:2171 ../../include/network.php:2172 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2173 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2174 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:2175 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2177 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2178 -msgid "Facebook" -msgstr "פייסבוק" - -#: ../../include/network.php:2179 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:2180 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2181 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2182 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/items.php:902 ../../include/items.php:947 -msgid "(Unknown)" -msgstr "(לא ידוע)" - -#: ../../include/items.php:1146 -msgid "Visible to anybody on the internet." -msgstr "נראה לכל אחד באינטרנט." - -#: ../../include/items.php:1148 -msgid "Visible to you only." -msgstr "נראה לך בלבד." - -#: ../../include/items.php:1150 -msgid "Visible to anybody in this network." -msgstr "נראה לכל אחד ברשת זו." - -#: ../../include/items.php:1152 -msgid "Visible to anybody authenticated." -msgstr "נראה לכל מי שהוא מאומת." - -#: ../../include/items.php:1154 -#, php-format -msgid "Visible to anybody on %s." -msgstr "נראה לכל אחד אצל %s." - -#: ../../include/items.php:1156 -msgid "Visible to all connections." -msgstr "נראה לכל החיבורים." - -#: ../../include/items.php:1158 -msgid "Visible to approved connections." -msgstr "נראה לחיבורים מאושרים." - -#: ../../include/items.php:1160 -msgid "Visible to specific connections." -msgstr "נראה לחיבורים מסוימים." - -#: ../../include/items.php:3920 -msgid "Privacy group is empty." -msgstr "קבוצת פרטיות הינה ריקה" - -#: ../../include/items.php:3927 -#, php-format -msgid "Privacy group: %s" -msgstr "קבוצת פרטיות: %s" - -#: ../../include/items.php:3939 -msgid "Connection not found." -msgstr "חיבור לא נמצא." - -#: ../../include/items.php:4305 -msgid "profile photo" -msgstr "תצלום פרופיל" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "עמוד חדש" - -#: ../../include/page_widgets.php:46 -msgid "Title" -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 "דוגמאות: bob@example.com, https://example.com/barbara" - -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "תזכירים" - -#: ../../include/widgets.php:273 -msgid "Remove term" -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:622 -msgid "Premium Channel Settings" -msgstr "הגדרות ערוץ פרמיה" - -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "תפריט דואר פרטי" - -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "תצוגה משולבת" - -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "דיונים" - -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "הודעות שנתקבלו" - -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "הודעות שנשלחו" - -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "אין הודעות." - -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "מחק דיון" - -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "תפריט אירועים" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "תצוגת יום" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "תצוגת שבוע" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "תצוגת חודש" - -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "כלי אירוע" - -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "יצא לוח שנה" - -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "יבא לוח שנה" - -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "סקירה" - -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "חברי שיחה" - -#: ../../include/widgets.php:875 -msgid "Wiki List" -msgstr "רשימת ויקי" - -#: ../../include/widgets.php:913 -msgid "Wiki Pages" -msgstr "עמודי ויקי" - -#: ../../include/widgets.php:948 -msgid "Bookmarked Chatrooms" -msgstr "חדרי שיחה מסומנים" - -#: ../../include/widgets.php:971 -msgid "Suggested Chatrooms" -msgstr "חדרי שיחה מוצעים" - -#: ../../include/widgets.php:1117 ../../include/widgets.php:1229 -msgid "photo/image" -msgstr "תצלום/תמונה" - -#: ../../include/widgets.php:1172 -msgid "Click to show more" -msgstr "לחץ כדי להציג עוד" - -#: ../../include/widgets.php:1323 -msgid "Rating Tools" -msgstr "כלי דירוג" - -#: ../../include/widgets.php:1327 ../../include/widgets.php:1329 -msgid "Rate Me" -msgstr "דרג אותי" - -#: ../../include/widgets.php:1332 -msgid "View Ratings" -msgstr "צפה בדירוגים" - -#: ../../include/widgets.php:1389 -msgid "Forums" -msgstr "פורומים" - -#: ../../include/widgets.php:1418 -msgid "Tasks" -msgstr "משימות" - -#: ../../include/widgets.php:1427 -msgid "Documentation" -msgstr "תיעוד" - -#: ../../include/widgets.php:1429 -msgid "Project/Site Information" -msgstr "מידע פרויקט/אתר" - -#: ../../include/widgets.php:1430 -msgid "For Members" -msgstr "לחברים" - -#: ../../include/widgets.php:1431 -msgid "For Administrators" -msgstr "למנהלים" - -#: ../../include/widgets.php:1432 -msgid "For Developers" -msgstr "למפתחים" - -#: ../../include/widgets.php:1456 ../../include/widgets.php:1494 -msgid "Member registrations waiting for confirmation" -msgstr "רישומי חברות אשר ממתינים לאישור" - -#: ../../include/widgets.php:1462 -msgid "Inspect queue" -msgstr "" - -#: ../../include/widgets.php:1464 -msgid "DB updates" -msgstr "עדכוני מסד נתונים" - -#: ../../include/widgets.php:1490 -msgid "Plugin Features" -msgstr "תכונות תוסף" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "" - -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "" - -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "" - -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "" - -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "" - -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "" - -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "" - -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -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 "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/activities.php:41 -msgid " and " -msgstr " וגם " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "פרופיל ציבורי" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "תצריפים:" - -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "" - -#: ../../include/api.php:1326 -msgid "Public Timeline" -msgstr "ציר זמן ציבורי" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Focus (Hubzilla default)" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Theme settings" -msgstr "הגדרות ערכת נושא" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Narrow navbar" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient top color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation bar gradient bottom color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient top color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation active button gradient bottom color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar border color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Navigation bar active icon color " -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "link color" -msgstr "צבע קישור" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set font-color for banner" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background color" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background image" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of items" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the background color of comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the border color of comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the indent for comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the basic color for item icons" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set the hover color for item icons" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for the entire application" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Example: 14px" -msgstr "דוגמא: 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set font-color for posts and comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set radius of corners" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set shadow depth of photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set maximum width of content region in pixel" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Leave empty for default width" -msgstr "השאר ריק לצורך רוחב שגרתי" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Left align page content" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of conversation author photo" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Set size of followup author photos" -msgstr "" - -#: ../../boot.php:1163 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "" - -#: ../../boot.php:1163 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../boot.php:1481 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../boot.php:1484 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../boot.php:1685 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "" - -#: ../../boot.php:1707 -msgid "Password" -msgstr "סיסמה" - -#: ../../boot.php:1708 -msgid "Remember me" -msgstr "זכור אותי" - -#: ../../boot.php:1711 -msgid "Forgot your password?" -msgstr "שכחת את הסיסמה שלך?" - -#: ../../boot.php:2277 -msgid "toggle mobile" -msgstr "" - -#: ../../boot.php:2426 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "תעודת SSL אתר רשת אינה תקינה. אנא תקן." - -#: ../../boot.php:2429 -#, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "[hubzilla] שגיאת SSL אתר רשת עבור %s" - -#: ../../boot.php:2470 -msgid "Cron/Scheduled tasks not running." -msgstr "משימות Cron/מתוזמנות לא רצות." - -#: ../../boot.php:2474 -#, php-format -msgid "[hubzilla] Cron tasks not running on %s" -msgstr "[hubzilla] משימות Cron לא רצות על %s" diff --git a/view/he/hstrings.php b/view/he/hstrings.php deleted file mode 100644 index d20cb9a6e..000000000 --- a/view/he/hstrings.php +++ /dev/null @@ -1,2319 +0,0 @@ -privacy settings, which have higher priority than individual settings. You can not change those settings here."] = ""; -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."] = ""; -App::$strings["Last update:"] = "עדכון אחרון:"; -App::$strings["Public access denied."] = "גישה ציבורית נדחתה."; -App::$strings["%d rating"] = array( - 0 => "דירוג %d", - 1 => "%d דירוגים", -); -App::$strings["Gender: "] = "מין: "; -App::$strings["Status: "] = "מצב: "; -App::$strings["Homepage: "] = "עמוד בית: "; -App::$strings["Age:"] = "גיל:"; -App::$strings["Location:"] = "מיקום:"; -App::$strings["Description:"] = "תיאור:"; -App::$strings["Hometown:"] = "עיר מגורים:"; -App::$strings["About:"] = "אודות:"; -App::$strings["Connect"] = "התחבר"; -App::$strings["Public Forum:"] = "פורום ציבורי:"; -App::$strings["Keywords: "] = "מילות מפתח: "; -App::$strings["Don't suggest"] = "אל תציע"; -App::$strings["Common connections:"] = "חיבורים שכיחים:"; -App::$strings["Global Directory"] = "ספרייה גלובלית"; -App::$strings["Local Directory"] = "ספרייה מקומית"; -App::$strings["Find"] = "מצא"; -App::$strings["Finding:"] = ""; -App::$strings["Channel Suggestions"] = "הצעות ערוץ"; -App::$strings["next page"] = "עמוד הבא"; -App::$strings["previous page"] = "עמוד קודם"; -App::$strings["Sort options"] = "אפשרויות מיון"; -App::$strings["Alphabetic"] = "אלפבתי"; -App::$strings["Reverse Alphabetic"] = "אלפבתי הפוך"; -App::$strings["Newest to Oldest"] = "מהחדשים יותר לישנים יותר"; -App::$strings["Oldest to Newest"] = "מהישנים יותר לחדשים יותר"; -App::$strings["No entries (some entries may be hidden)."] = ""; -App::$strings["Item not found."] = "פריט לא נמצא."; -App::$strings["Item not found"] = "פריט לא נמצא"; -App::$strings["Title (optional)"] = "כותרת (רשות):"; -App::$strings["Edit Block"] = ""; -App::$strings["No channel."] = "אין ערוץ."; -App::$strings["Common connections"] = "חיבורים מצויים"; -App::$strings["No connections in common."] = ""; -App::$strings["Blocked"] = ""; -App::$strings["Ignored"] = ""; -App::$strings["Hidden"] = "מוסתר"; -App::$strings["Archived"] = "גנוזים"; -App::$strings["New"] = "חדש"; -App::$strings["New Connections"] = "חיבורים חדשים"; -App::$strings["Show pending (new) connections"] = ""; -App::$strings["All Connections"] = "כל החיבורים"; -App::$strings["Show all connections"] = "הצג את כל החיבורים"; -App::$strings["Only show blocked connections"] = "הצג רק חיבורים חסומים"; -App::$strings["Only show ignored connections"] = "הצג רק חיבורים מנוכרים"; -App::$strings["Only show archived connections"] = "הצג רק חיבורים גנוזים"; -App::$strings["Only show hidden connections"] = "הצג רק חיבורים מוסתרים"; -App::$strings["Pending approval"] = "ממתין לאישור"; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = "ערוך חיבור"; -App::$strings["Delete connection"] = "מחק חיבור"; -App::$strings["Channel address"] = "כתובת ערוץ"; -App::$strings["Network"] = "רשת"; -App::$strings["Status"] = "מצב"; -App::$strings["Connected"] = "מחובר"; -App::$strings["Approve connection"] = "אשר חיבור"; -App::$strings["Approve"] = "אשר"; -App::$strings["Ignore connection"] = "התעלם מחיבור"; -App::$strings["Recent activity"] = "פעילות אחרונה"; -App::$strings["Connections"] = "חיבורים"; -App::$strings["Search"] = "חיפוש"; -App::$strings["Search your connections"] = "חפש את החיבורים שלך"; -App::$strings["Connections search"] = "חיפוש חיבורים"; -App::$strings["Image uploaded but image cropping failed."] = ""; -App::$strings["Cover Photos"] = "תצלומי שער"; -App::$strings["Image resize failed."] = "שינוי גודל תמונה נכשל."; -App::$strings["Unable to process image"] = "לא מסוגל לעבד תמונה"; -App::$strings["Image upload failed."] = "העלאת תמונה נכשלה."; -App::$strings["Unable to process image."] = "לא מסוגל לעבד תמונה."; -App::$strings["female"] = "נקבה"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s עדכנה את ה%2\$s שלה"; -App::$strings["male"] = "זכר"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s עדכן את ה%2\$s שלו"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s עדכנו את ה%2\$s שלהם"; -App::$strings["cover photo"] = "תצלום שער"; -App::$strings["Photo not available."] = "תצלום לא זמין."; -App::$strings["Upload File:"] = "העלה קובץ:"; -App::$strings["Select a profile:"] = "בחר פרופיל:"; -App::$strings["Upload Cover Photo"] = "העלה תצלום שער"; -App::$strings["or"] = "או"; -App::$strings["skip this step"] = "דלג על צעד זה"; -App::$strings["select a photo from your photo albums"] = ""; -App::$strings["Crop Image"] = "גזור תמונה"; -App::$strings["Please adjust the image cropping for optimum viewing."] = ""; -App::$strings["Done Editing"] = "סיים לערוך"; -App::$strings["Item is not editable"] = "פריט אינו עריך."; -App::$strings["Edit post"] = "ערוך פוסט"; -App::$strings["Calendar entries imported."] = "רשומות לוח שנה הובאו."; -App::$strings["No calendar entries found."] = "לא נמצאו רשומות לוח שנה."; -App::$strings["Event can not end before it has started."] = ""; -App::$strings["Unable to generate preview."] = "לא מסוגל להפיק תצוגה מקדימה."; -App::$strings["Event title and start time are required."] = "כותרת וזמן תחילת אירוע נדרשים"; -App::$strings["Event not found."] = "אירוע לא נמצא."; -App::$strings["event"] = "אירוע"; -App::$strings["Edit event title"] = "ערוך כותרת אירוע"; -App::$strings["Event title"] = "כותרת אירוע"; -App::$strings["Required"] = "נדרש"; -App::$strings["Categories (comma-separated list)"] = "קטגוריות (רשימה מופרדת פסיקים)"; -App::$strings["Edit Category"] = "ערוך קטגוריה"; -App::$strings["Category"] = "קטגוריה"; -App::$strings["Edit start date and time"] = "ערוך זמן ותאריך התחלה"; -App::$strings["Start date and time"] = "זמן ותאריך התחלה"; -App::$strings["Finish date and time are not known or not relevant"] = ""; -App::$strings["Edit finish date and time"] = "ערוך זמן ותאריך סיום"; -App::$strings["Finish date and time"] = "זמן ותאריך סיום"; -App::$strings["Adjust for viewer timezone"] = ""; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; -App::$strings["Edit Description"] = "ערוך תיאור"; -App::$strings["Description"] = "תיאור"; -App::$strings["Edit Location"] = "ערוך מיקום"; -App::$strings["Location"] = "מיקום"; -App::$strings["Share this event"] = "שתף את אירוע זה"; -App::$strings["Preview"] = "תצוגה מקדימה"; -App::$strings["Permission settings"] = "הגדרות הרשאה"; -App::$strings["Advanced Options"] = "אפשרויות מתקדמות"; -App::$strings["Edit event"] = "ערוך אירוע"; -App::$strings["Delete event"] = "מחק אירוע"; -App::$strings["calendar"] = "לוח שנה"; -App::$strings["Event removed"] = "אירוע הוסר"; -App::$strings["Failed to remove event"] = "נכשל להסיר אירוע"; -App::$strings["Photos"] = "תצלומים"; -App::$strings["Cancel"] = "ביטול"; -App::$strings["This site is not a directory server"] = "אתר זה אינו שרת ספרייה"; -App::$strings["This directory server requires an access token"] = ""; -App::$strings["Save to Folder:"] = "שמור לתיקייה:"; -App::$strings["- select -"] = "- בחר -"; -App::$strings["Save"] = "שמור"; -App::$strings["Invalid message"] = "הודעה שגויה"; -App::$strings["no results"] = "אין תוצאות"; -App::$strings["Delivery report for %1\$s"] = "דיווח מסירה עבור %1\$s"; -App::$strings["channel sync processed"] = ""; -App::$strings["queued"] = "בתור"; -App::$strings["posted"] = "פורסם"; -App::$strings["accepted for delivery"] = "נתקבל לצורך מסירה"; -App::$strings["updated"] = "עודכן"; -App::$strings["update ignored"] = "עדכון נוכר"; -App::$strings["permission denied"] = "הרשאה נדחתה"; -App::$strings["recipient not found"] = "נמען לא נמצא"; -App::$strings["mail recalled"] = "דואר הוחזר"; -App::$strings["duplicate mail received"] = "דואר כפול נתקבל"; -App::$strings["mail delivered"] = "דואר נמסר"; -App::$strings["Layout Name"] = ""; -App::$strings["Layout Description (Optional)"] = ""; -App::$strings["Edit Layout"] = ""; -App::$strings["Page link"] = "קישור עמוד"; -App::$strings["Edit Webpage"] = "ערוך עמוד רשת"; -App::$strings["Channel added."] = "ערוץ נתווסף."; -App::$strings["network"] = "רשת"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "קבוצת פרטיות נוצרה."; -App::$strings["Could not create privacy group."] = "לא היתה אפשרות ליצור קבוצת פרטיות."; -App::$strings["Privacy group not found."] = "קבוצת פרטיות לא נמצאה."; -App::$strings["Privacy group updated."] = "קבוצת פרטיות עודכנה."; -App::$strings["Create a group of channels."] = "צור אשכול של ערוצים."; -App::$strings["Privacy group name: "] = "שם קבוצת פרטיות:"; -App::$strings["Members are visible to other channels"] = "חברים הינם נראים לערוצים אחרים"; -App::$strings["Privacy group removed."] = "קבוצת פרטיות הוסרה."; -App::$strings["Unable to remove privacy group."] = "לא מסוגל להסיר קבוצת פרטיות."; -App::$strings["Privacy group editor"] = "עורך קבוצת פרטיות"; -App::$strings["Members"] = "חברים"; -App::$strings["All Connected Channels"] = "כל הערוצים המחוברים"; -App::$strings["Click on a channel to add or remove."] = "לחץ על ערוץ כדי להוסיף או להסיר"; -App::$strings["Share content from Firefox to \$Projectname"] = "שתף תוכן מתוך Firefox אל \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "הפעל את ספק \$Projectname של Firefox"; -App::$strings["Authorize application connection"] = ""; -App::$strings["Return to your app and insert this Securty Code:"] = ""; -App::$strings["Please login to continue."] = "אנא התחבר כדי להמשיך."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; -App::$strings["Documentation Search"] = "חיפוש תיעוד"; -App::$strings["Help:"] = "עזרה:"; -App::$strings["Help"] = "עזרה"; -App::$strings["\$Projectname Documentation"] = "תיעוד \$Projectname"; -App::$strings["Permission Denied."] = "הרשאה נדחתה."; -App::$strings["File not found."] = "קובץ לא נמצא."; -App::$strings["Edit file permissions"] = "ערוך הרשאות קובץ"; -App::$strings["Set/edit permissions"] = "קבע/ערוך הרשאות"; -App::$strings["Include all files and sub folders"] = "כלול כל קובץ ותיקיית משנה"; -App::$strings["Return to file list"] = ""; -App::$strings["Copy/paste this code to attach file to a post"] = ""; -App::$strings["Copy/paste this URL to link file from a web page"] = ""; -App::$strings["Share this file"] = "שתף את קובץ זה"; -App::$strings["Show URL to this file"] = "הצג URL לקובץ זה"; -App::$strings["Notify your contacts about this file"] = ""; -App::$strings["Apps"] = "אפליקציות"; -App::$strings["Item not available."] = "פריט לא נמצא."; -App::$strings["Your service plan only allows %d channels."] = ""; -App::$strings["Nothing to import."] = "אין דבר ליבא."; -App::$strings["Unable to download data from old server"] = ""; -App::$strings["Imported file is empty."] = "קובץ מיובא הינו ריק"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = ""; -App::$strings["Cloned channel not found. Import failed."] = ""; -App::$strings["No channel. Import failed."] = ""; -App::$strings["Import completed."] = "יבוא הושלם."; -App::$strings["You must be logged in to use this feature."] = ""; -App::$strings["Import Channel"] = "יבא ערוץ"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "השתמש בטופס זה כדי ליבא ערוץ קיים מתוך שרת/מוקד אחר. באפשרותך לאחזר את זהות הערוץ מתוך שרת/מוקד ישן דרך הרשת או לספק קובץ יצוא."; -App::$strings["File to Upload"] = "קובץ להעלאה"; -App::$strings["Or provide the old server/hub details"] = "או ספק פרטי שרת/מוקד ישנים"; -App::$strings["Your old identity address (xyz@example.com)"] = "כתובת זיהוי ישנה (xyz@example.com)"; -App::$strings["Your old login email address"] = "כתובת דוא״ל כניסה ישנה"; -App::$strings["Your old login password"] = "סיסמת כניסה ישנה"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -App::$strings["Make this hub my primary location"] = "הפוך את מוקד זה למיקום העיקרי שלי"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = ""; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = ""; -App::$strings["Unable to locate original post."] = "לא מסוגל לאתר פוסט מקורי."; -App::$strings["Empty post discarded."] = "פוסט ריק סולק."; -App::$strings["Executable content type not permitted to this channel."] = ""; -App::$strings["Duplicate post suppressed."] = "פוסט כפול הודחק."; -App::$strings["System error. Post not saved."] = "שגיאת מערכת. פוסט לא נשמר."; -App::$strings["Unable to obtain post information from database."] = ""; -App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; -App::$strings["You have reached your limit of %1$.0f webpages."] = ""; -App::$strings["Layouts"] = ""; -App::$strings["Comanche page description language help"] = ""; -App::$strings["Layout Description"] = ""; -App::$strings["Download PDL file"] = "הורד קובץ PDL"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "ברוכים הבאים אל %s"; -App::$strings["First Name"] = "שם פרטי"; -App::$strings["Last Name"] = "שם משפחה"; -App::$strings["Nickname"] = "שם כינוי"; -App::$strings["Full Name"] = "שם מלא"; -App::$strings["Email"] = "דוא״ל"; -App::$strings["Profile Photo"] = "תצלום פרופיל"; -App::$strings["Profile Photo 16px"] = "תצלום פרופיל 16 פיקסל"; -App::$strings["Profile Photo 32px"] = "תצלום פרופיל 32 פיקסל"; -App::$strings["Profile Photo 48px"] = "תצלום פרופיל 48 פיקסל"; -App::$strings["Profile Photo 64px"] = "תצלום פרופיל 64 פיקסל"; -App::$strings["Profile Photo 80px"] = "תצלום פרופיל 80 פיקסל"; -App::$strings["Profile Photo 128px"] = "תצלום פרופיל 128 פיקסל"; -App::$strings["Timezone"] = "אזור זמן"; -App::$strings["Homepage URL"] = ""; -App::$strings["Language"] = "שפה"; -App::$strings["Birth Year"] = "שנת הולדת"; -App::$strings["Birth Month"] = "חודש הולדת"; -App::$strings["Birth Day"] = "יום הולדת"; -App::$strings["Birthdate"] = "יום הולדת"; -App::$strings["Gender"] = "מין"; -App::$strings["Male"] = "זכר"; -App::$strings["Female"] = "נקבה"; -App::$strings["webpage"] = "עמוד רשת"; -App::$strings["block"] = ""; -App::$strings["layout"] = ""; -App::$strings["menu"] = "תפריט"; -App::$strings["%s element installed"] = ""; -App::$strings["%s element installation failed"] = ""; -App::$strings["Like/Dislike"] = ""; -App::$strings["This action is restricted to members."] = ""; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; -App::$strings["Invalid request."] = "בקשה שגויה."; -App::$strings["channel"] = "ערוץ"; -App::$strings["thing"] = "דבר"; -App::$strings["Channel unavailable."] = "עמוד לא זמין."; -App::$strings["Previous action reversed."] = ""; -App::$strings["photo"] = "תצלום"; -App::$strings["status"] = "סטטוס"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; -App::$strings["Action completed."] = "פעולה הושלמה."; -App::$strings["Thank you."] = "תודה."; -App::$strings["Import completed"] = "יבוא הושלם"; -App::$strings["Import Items"] = "יבוא פריטים"; -App::$strings["Use this form to import existing posts and content from an export file."] = ""; -App::$strings["Total invitation limit exceeded."] = "סך מגבלת הזמנות נגמרה."; -App::$strings["%s : Not a valid email address."] = "%s : כתובת דוא״ל לא תקינה."; -App::$strings["Please join us on \$Projectname"] = "נשמח אם תצטרף אלינו ברשת \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "מגבלת הזמנות נגמרה. אנא צור קשר עם מנהל האתר שלך."; -App::$strings["%s : Message delivery failed."] = "%s : מסירת הודעה נכשלה."; -App::$strings["%d message sent."] = array( - 0 => "הודעה %d נשלחה.", - 1 => "%d הודעות נשלחו.", -); -App::$strings["You have no more invitations available"] = "לא נותרו לך עוד הזמנות זמינות"; -App::$strings["Send invitations"] = "שלח הזמנות"; -App::$strings["Enter email addresses, one per line:"] = "הזן כתובות דוא״ל, אחת בכל שורה:"; -App::$strings["Your message:"] = "הודעתך:"; -App::$strings["Please join my community on \$Projectname."] = "אשמח אם תצטרף לקהילה שלי ברשת \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "יהיה עליך לספק את קוד הזמנה זה:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. הירשם בכל מיקום \$Projectname (כולם מחוברים ב אופן הדדי)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. הזן את כתובת רשת \$Projectname שלי לתוך שורת החיפוש של האתר."; -App::$strings["or visit"] = "או בקר בכתובת"; -App::$strings["3. Click [Connect]"] = "3. לחץ [התחבר]"; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = "נראה לאלו:"; -App::$strings["Location not found."] = "מיקום לא נמצא."; -App::$strings["Location lookup failed."] = ""; -App::$strings["Please select another location to become primary before removing the primary location."] = ""; -App::$strings["Syncing locations"] = ""; -App::$strings["No locations found."] = "לא נמצאו מיקומים."; -App::$strings["Manage Channel Locations"] = "נהל מיקומי ערוץ"; -App::$strings["Address"] = "כתובת"; -App::$strings["Primary"] = ""; -App::$strings["Drop"] = ""; -App::$strings["Sync Now"] = "סנכרן עכשיו"; -App::$strings["Please wait several minutes between consecutive operations."] = ""; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "כאשר ניתן, השמט מיקום על ידי כניסה לתוך אתר רשת/מוקד והסרת הערוץ שלך."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "השתמש בטופס זה כדי לנטוש את המיקום אם המוקד אינו פועל עוד."; -App::$strings["Hub not found."] = "מוקד לא נמצא."; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = "לא מסוגל לתקשר עם ערוץ מבוקש"; -App::$strings["Cannot verify requested channel."] = "לא יכול לאמת ערוץ מבוקש."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "על הערוץ הנבחר מוטלות הגבלות הודעה פרטית. שליחה נכשלה."; -App::$strings["Messages"] = "הודעות"; -App::$strings["Message recalled."] = "הודעה הוחזרה."; -App::$strings["Conversation removed."] = "דיון הוסר."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "פג YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "הערוץ המבוקש אינו נמצא ברשת זו"; -App::$strings["Send Private Message"] = "שלח הודעה פרטית"; -App::$strings["To:"] = "לכבוד:"; -App::$strings["Subject:"] = "נושא:"; -App::$strings["Attach file"] = "צרף קובץ"; -App::$strings["Send"] = "שלח"; -App::$strings["Set expiration date"] = "קבע תאריך תפוגה"; -App::$strings["Delete message"] = "מחק הודעה"; -App::$strings["Delivery report"] = "דיווח מסירה"; -App::$strings["Recall message"] = "בטל הודעה"; -App::$strings["Message has been recalled."] = "הודעה הוחזרה."; -App::$strings["Delete Conversation"] = "מחק דיון"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "אין חיבורים מאובטחים זמינים. אפשרי כי תהא באפשרותך להשיב מתוך עמוד הפרופיל של השולח."; -App::$strings["Send Reply"] = "שלח משוב"; -App::$strings["Your message for %s (%s):"] = "הודעתך עבור %s ‏(%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; -App::$strings["Create a new channel"] = "צור ערוץ חדש"; -App::$strings["Channel Manager"] = "מנהל ערוץ"; -App::$strings["Current Channel"] = "ערוץ נוכחי"; -App::$strings["Switch to one of your channels by selecting it."] = ""; -App::$strings["Default Channel"] = "ערוץ שגרתי"; -App::$strings["Make Default"] = "הפוך לשגרתי"; -App::$strings["%d new messages"] = "%d הודעות חדשות"; -App::$strings["%d new introductions"] = ""; -App::$strings["Delegated Channel"] = ""; -App::$strings["No valid account found."] = "לא נמצא חשבון תקין."; -App::$strings["Password reset request issued. Check your email."] = ""; -App::$strings["Site Member (%s)"] = "חבר אתר (%s)"; -App::$strings["Password reset requested at %s"] = "בקשת איפוס סיסמה נתבקשה אצל %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -App::$strings["Password Reset"] = "איפוס סיסמה"; -App::$strings["Your password has been reset as requested."] = "הסיסמה שלך אותחלה כנדרש."; -App::$strings["Your new password is"] = "הסיסמה החדשה שלך היא"; -App::$strings["Save or copy your new password - and then"] = ""; -App::$strings["click here to login"] = "לחץ כאן כדי להיכנס"; -App::$strings["Your password may be changed from the Settings page after successful login."] = ""; -App::$strings["Your password has changed at %s"] = "הסיסמה שלך נשתנתה אצל %s"; -App::$strings["Forgot your Password?"] = "שכחת את הסיסמה שלך?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -App::$strings["Email Address"] = "כתובת דוא״ל"; -App::$strings["Reset"] = "אפס"; -App::$strings["Unable to update menu."] = "לא מסוגל לעדכן תפריט."; -App::$strings["Unable to create menu."] = "לא מסוגל ליצור תפריט."; -App::$strings["Menu Name"] = "שם תפריט"; -App::$strings["Unique name (not visible on webpage) - required"] = "שם ייחודי (לא נראה בבלוג רשת) - נדרש"; -App::$strings["Menu Title"] = "כותרת תפריט"; -App::$strings["Visible on webpage - leave empty for no title"] = ""; -App::$strings["Allow Bookmarks"] = "התר סימניות"; -App::$strings["Menu may be used to store saved bookmarks"] = ""; -App::$strings["Submit and proceed"] = "שלח והמשך"; -App::$strings["Menus"] = "תפריטים"; -App::$strings["Bookmarks allowed"] = "סימניות מותרות"; -App::$strings["Delete this menu"] = "מחק את תפריט זה"; -App::$strings["Edit menu contents"] = "ערוך תכני תפריט"; -App::$strings["Edit this menu"] = "ערוך את תפריט זה"; -App::$strings["Menu could not be deleted."] = "תפריט לא יכול היה להימחק."; -App::$strings["Menu not found."] = "תפריט לא נמצא."; -App::$strings["Edit Menu"] = "ערוך תפריט"; -App::$strings["Add or remove entries to this menu"] = "הוסף או הסר רשומות מתפריט זה"; -App::$strings["Menu name"] = "שם תפריט"; -App::$strings["Must be unique, only seen by you"] = ""; -App::$strings["Menu title"] = "כותרת תפריט"; -App::$strings["Menu title as seen by others"] = ""; -App::$strings["Allow bookmarks"] = "התר סימניות"; -App::$strings["Not found."] = "לא נמצא."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; -App::$strings["Mood"] = "מצב רוח"; -App::$strings["Set your current mood and tell your friends"] = ""; -App::$strings["Profile Match"] = ""; -App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; -App::$strings["is interested in:"] = ""; -App::$strings["No matches"] = "אין התאמות"; -App::$strings["No such group"] = "אין קבוצה כזו"; -App::$strings["No such channel"] = "אין ערוץ כזה"; -App::$strings["forum"] = "פורום"; -App::$strings["Search Results For:"] = "תוצאות חיפוש עבור:"; -App::$strings["Privacy group is empty"] = "קבוצת פרטיות הינה ריקה"; -App::$strings["Privacy group: "] = "קבוצת פרטיות: "; -App::$strings["Invalid connection."] = "חיבור שגוי."; -App::$strings["No more system notifications."] = "אין עוד התראות מערכת"; -App::$strings["System Notifications"] = "התראות מערכת"; -App::$strings["Unable to create element."] = "לא מסוגל ליצור אלמנט"; -App::$strings["Unable to update menu element."] = "לא מסוגל לעדכן אלמנט תפריט."; -App::$strings["Unable to add menu element."] = "לא מסוגל להוסיף אלמנט תפריט."; -App::$strings["Menu Item Permissions"] = "הרשאות פריט תפריט"; -App::$strings["(click to open/close)"] = "(לחץ כדי לפתוח/לסגור)"; -App::$strings["Link Name"] = "שם קישור"; -App::$strings["Link or Submenu Target"] = ""; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; -App::$strings["Use magic-auth if available"] = ""; -App::$strings["Open link in new window"] = "פתח בתוך חלון חדש"; -App::$strings["Order in list"] = ""; -App::$strings["Higher numbers will sink to bottom of listing"] = ""; -App::$strings["Submit and finish"] = "שלח וסיים"; -App::$strings["Submit and continue"] = "שלח והמשך"; -App::$strings["Menu:"] = "תפריט:"; -App::$strings["Link Target"] = "יעד קישור"; -App::$strings["Edit menu"] = "ערוך תפריט"; -App::$strings["Edit element"] = "ערוך אלמנט"; -App::$strings["Drop element"] = "הטל אלמנט"; -App::$strings["New element"] = "אלמנט חדש"; -App::$strings["Edit this menu container"] = "ערוך את מכיל תפריט זה"; -App::$strings["Add menu element"] = "הוסף אלמנט תפריט"; -App::$strings["Delete this menu item"] = "מחק את פריט תפריט זה"; -App::$strings["Edit this menu item"] = "ערוך את פריט תפריט זה"; -App::$strings["Menu item not found."] = "פריט תפריט לא נמצא."; -App::$strings["Menu item deleted."] = "פריט תפריט נמחק."; -App::$strings["Menu item could not be deleted."] = "פריט תפריט לא יכול היה להימחק."; -App::$strings["Edit Menu Element"] = "ערוך אלמנט תפריט"; -App::$strings["Link text"] = ""; -App::$strings["Name or caption"] = "שם או דברי הסבר"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "דוגמאות: \"בוב ג׳יימסון\", \"ליסה והסוסים שלה\", \"טניס\", \"קבוצת תעופה\""; -App::$strings["Choose a short nickname"] = "בחר שם כינוי קצר"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "שם כינוי ישמש אותך כדי ליצור כתובת ערוץ קלה לזכירה למשל nickname%s"; -App::$strings["Channel role and privacy"] = ""; -App::$strings["Select a channel role with your privacy requirements."] = ""; -App::$strings["Read more about roles"] = ""; -App::$strings["Create Channel"] = "צור ערוץ"; -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."] = "ערוץ הוא הזהות שלך ברשת זו. זה יכול לייצג אדם, בלוג, או פורום (נמנו רק אחדים). ערוצים יכולים ליצור חיבורים עם ערוצים אחרים כדי לשתף מידע בעזרת הרשאות מפורטות מאוד."; -App::$strings["or import an existing channel from another location."] = ""; -App::$strings["Invalid request identifier."] = "מזהה מבקש לא תקין."; -App::$strings["Discard"] = "סלק"; -App::$strings["Mark all system notifications seen"] = "סמן את כל התראות המערכת כנקראו"; -App::$strings["Page owner information could not be retrieved."] = ""; -App::$strings["Profile Photos"] = "תצלומי פרופיל"; -App::$strings["Album not found."] = "אלבום לא נמצא."; -App::$strings["Delete 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"] = "מחק תצלום"; -App::$strings["No photos selected"] = "לא נבחרו תצלומים"; -App::$strings["Access to this item is restricted."] = ""; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; -App::$strings["%1$.2f MB photo storage used."] = ""; -App::$strings["Upload Photos"] = "העלה תצלומים"; -App::$strings["Enter an album name"] = "הזן שם אלבום"; -App::$strings["or select an existing album (doubleclick)"] = "או בחר אלבום קיים (לחיצה כפולה)"; -App::$strings["Create a status post for this upload"] = ""; -App::$strings["Caption (optional):"] = "דברי הסבר (רשות):"; -App::$strings["Description (optional):"] = "תיאור (רשות):"; -App::$strings["Album name could not be decoded"] = ""; -App::$strings["Contact Photos"] = "תצלומי איש קשר"; -App::$strings["Show Newest First"] = "הצג את החדשים יותר בתחילה"; -App::$strings["Show Oldest First"] = "הצג את הישנים יותר בתחילה"; -App::$strings["View Photo"] = "צפה בתצלום"; -App::$strings["Edit Album"] = "ערוך אלבום"; -App::$strings["Permission denied. Access to this item may be restricted."] = ""; -App::$strings["Photo not available"] = "תצלום לא זמין"; -App::$strings["Use as profile photo"] = "השתמש בתור תצלום פרופיל"; -App::$strings["Use as cover photo"] = "השתמש בתור תצלום שער"; -App::$strings["Private Photo"] = "תצלום פרטי"; -App::$strings["View Full Size"] = "צפה בגודל מלא"; -App::$strings["Remove"] = "הסר"; -App::$strings["Edit photo"] = "ערוך תצלום"; -App::$strings["Rotate CW (right)"] = "סובב כיוון-שעון (ימין)"; -App::$strings["Rotate CCW (left)"] = "סובב נגד כיוון-שעון (שמאל)"; -App::$strings["Enter a new album name"] = "הזן שם אלבום חדש"; -App::$strings["or select an existing one (doubleclick)"] = "או בחר באחד קיים (לחיצה כפולה)"; -App::$strings["Caption"] = "דברי הסבר"; -App::$strings["Add a Tag"] = "הוסף תגית"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "דוגמא: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = ""; -App::$strings["I like this (toggle)"] = "אהבתי את זה (החלף)"; -App::$strings["I don't like this (toggle)"] = "לא אהבתי את זה (החלף)"; -App::$strings["Please wait"] = "אנא המתן"; -App::$strings["This is you"] = "זה את/ה"; -App::$strings["Comment"] = "תגובה"; -App::$strings["__ctx:title__ Likes"] = "אוהב"; -App::$strings["__ctx:title__ Dislikes"] = "לא אוהב"; -App::$strings["__ctx:title__ Agree"] = "מסכים"; -App::$strings["__ctx:title__ Disagree"] = "לא מסכים"; -App::$strings["__ctx:title__ Abstain"] = "נמנע"; -App::$strings["__ctx:title__ Attending"] = "נוכח"; -App::$strings["__ctx:title__ Not attending"] = "לא נוכח"; -App::$strings["__ctx:title__ Might attend"] = "עשוי להיווכח"; -App::$strings["View all"] = "צפה בכולם"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "אוהב", - 1 => "אוהבים", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "לא אוהב", - 1 => "לא אוהבים", -); -App::$strings["Photo Tools"] = "כלי תצלום"; -App::$strings["In This Photo:"] = "בתצלום זה:"; -App::$strings["Map"] = "מפה"; -App::$strings["__ctx:noun__ Likes"] = "אוהב"; -App::$strings["__ctx:noun__ Dislikes"] = "לא אוהב"; -App::$strings["Close"] = "סגור"; -App::$strings["View Album"] = "צפה באלבום"; -App::$strings["Recent Photos"] = "תצלומים אחרונים"; -App::$strings["sent you a private message"] = "שלח לך הודעה פרטית"; -App::$strings["added your channel"] = "הוסיף את הערוץ שלך"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[היום]"; -App::$strings["posted an event"] = "פרסם אירוע"; -App::$strings["Unable to find your hub."] = "לא מסוגל למצוא את המוקד שלך."; -App::$strings["Post successful."] = "פרסום הצליח."; -App::$strings["OpenID protocol error. No ID returned."] = "שגיאת פרוטוקול OpenID. לא הוחזר ID."; -App::$strings["Login failed."] = "התחברות נכשלה."; -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."] = ""; -App::$strings["This setting requires special processing and editing has been blocked."] = ""; -App::$strings["Configuration Editor"] = "עורך תצורה"; -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."] = ""; -App::$strings["Layout updated."] = ""; -App::$strings["Edit System Page Description"] = ""; -App::$strings["Layout not found."] = ""; -App::$strings["Module Name:"] = "שם מודול:"; -App::$strings["Layout Help"] = ""; -App::$strings["Poke"] = ""; -App::$strings["Poke somebody"] = ""; -App::$strings["Poke/Prod"] = "דחוף/עורר"; -App::$strings["Poke, prod or do other things to somebody"] = ""; -App::$strings["Recipient"] = "נמען"; -App::$strings["Choose what you wish to do to recipient"] = "בחר מה ברצונך לעשות לנמען"; -App::$strings["Make this post private"] = "הפוך את פוסט זה לפרטי"; -App::$strings["Fetching URL returns error: %1\$s"] = ""; -App::$strings["Profile not found."] = "פרופיל לא נמצא."; -App::$strings["Profile deleted."] = "פרופיל נמחק."; -App::$strings["Profile-"] = "פרופיל-"; -App::$strings["New profile created."] = "פרופיל חדש נוצר."; -App::$strings["Profile unavailable to clone."] = ""; -App::$strings["Profile unavailable to export."] = ""; -App::$strings["Profile Name is required."] = "נדרש שם פרופיל."; -App::$strings["Marital Status"] = "מצב משפחתי"; -App::$strings["Romantic Partner"] = "שותף רומנטי"; -App::$strings["Likes"] = "אוהב"; -App::$strings["Dislikes"] = "לא אוהב"; -App::$strings["Work/Employment"] = ""; -App::$strings["Religion"] = "דת"; -App::$strings["Political Views"] = "השקפות פוליטיות"; -App::$strings["Sexual Preference"] = "העדפה מינית"; -App::$strings["Homepage"] = "עמוד בית"; -App::$strings["Interests"] = ""; -App::$strings["Profile updated."] = ""; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = ""; -App::$strings["View this profile"] = "צפה בפרופיל זה"; -App::$strings["Edit visibility"] = "ערוך נראות"; -App::$strings["Profile Tools"] = "כלי פרופיל"; -App::$strings["Change cover photo"] = "שנה תצלום שער"; -App::$strings["Change profile photo"] = "שנה תצלום פרופיל"; -App::$strings["Create a new profile using these settings"] = "צור פרופיל חדש באמצעות הגדרות אלו"; -App::$strings["Clone this profile"] = "שבט את פרופיל זה"; -App::$strings["Delete this profile"] = "מחק את פרופיל זה"; -App::$strings["Add profile things"] = "הוסף דברי פרופיל"; -App::$strings["Personal"] = "אישי"; -App::$strings["Relation"] = "יחס"; -App::$strings["Miscellaneous"] = "שונות"; -App::$strings["Import profile from file"] = "יבא פרופיל מתוך קובץ"; -App::$strings["Export profile to file"] = "יצא פרופיל לתוך קובץ"; -App::$strings["Your gender"] = "המין שלך"; -App::$strings["Marital status"] = "מצב משפחתי"; -App::$strings["Sexual preference"] = "העדפה מינית"; -App::$strings["Profile name"] = "שם פרופיל"; -App::$strings["This is your default profile."] = "זהו הפרופיל השגרתי שלך."; -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"] = ""; -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"] = ""; -App::$strings["Musical interests"] = ""; -App::$strings["Books, literature"] = "ספרים, ספרות"; -App::$strings["Television"] = "טלוויזיה"; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = ""; -App::$strings["Love/Romance"] = "אהבה/רומנטיקה"; -App::$strings["School/Education"] = "בית ספר/חינוך"; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = "הערוצים האחרים שלי"; -App::$strings["Profile Image"] = "תמונת פרופיל"; -App::$strings["Edit Profiles"] = "ערוך פרופילים"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -App::$strings["Upload Profile Photo"] = "העלה תצלום פרופיל"; -App::$strings["Invalid profile identifier."] = "מזהה פרופיל לא תקין."; -App::$strings["Profile Visibility Editor"] = ""; -App::$strings["Profile"] = "פרופיל"; -App::$strings["Click on a contact to add or remove."] = ""; -App::$strings["Visible To"] = ""; -App::$strings["Public 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."] = ""; -App::$strings["Hub URL"] = ""; -App::$strings["Access Type"] = "טיפוס גישה"; -App::$strings["Registration Policy"] = "מדיניות רישום"; -App::$strings["Stats"] = ""; -App::$strings["Software"] = "תוכנה"; -App::$strings["Ratings"] = "דירוג"; -App::$strings["Rate"] = "דרג"; -App::$strings["Website:"] = "אתר רשת:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "ערוץ מרוחק [%s] (לא מוכר עדיין באתר זה)"; -App::$strings["Rating (this information is public)"] = "דירוג (מידע זה הינו ציבורי)"; -App::$strings["Optionally explain your rating (this information is public)"] = "הסבר לפי הצורך את הדירוג שלך (מידע זה הינו ציבורי)"; -App::$strings["No ratings"] = "אין דירוג"; -App::$strings["Rating: "] = "דירוג: "; -App::$strings["Website: "] = "אתר רשת:"; -App::$strings["Description: "] = "תיאור: "; -App::$strings["Theme settings updated."] = "הגדרות ערכת נושא עודכנו."; -App::$strings["# Accounts"] = "# חשבונות"; -App::$strings["# blocked accounts"] = "# חשבונות חסומים"; -App::$strings["# expired accounts"] = ""; -App::$strings["# expiring accounts"] = ""; -App::$strings["# Channels"] = "# ערוצים"; -App::$strings["# primary"] = "# עיקרי"; -App::$strings["# clones"] = "# שיבוטים"; -App::$strings["Message queues"] = "תור הודעות"; -App::$strings["Your software should be updated"] = "התוכנה שלך אמורה להיות מעודכנת"; -App::$strings["Administration"] = "הנהלה"; -App::$strings["Summary"] = "סיכום"; -App::$strings["Registered accounts"] = "חשבונות רשומים"; -App::$strings["Pending registrations"] = "הרשמות תלויות ועומדות"; -App::$strings["Registered channels"] = "ערוצים רשומים"; -App::$strings["Active plugins"] = "תוספים פעילים"; -App::$strings["Version"] = "גרסא"; -App::$strings["Repository version (master)"] = ""; -App::$strings["Repository version (dev)"] = ""; -App::$strings["Site settings updated."] = "הגדרות אתר עודכנו."; -App::$strings["Default"] = "ברירת מחדל"; -App::$strings["mobile"] = "נייד"; -App::$strings["experimental"] = "ניסיוני"; -App::$strings["unsupported"] = "לא נתמך"; -App::$strings["Yes - with approval"] = "כן - עם אימות"; -App::$strings["My site is not a public server"] = "האתר שלי אינו שרת פומבי"; -App::$strings["My site has paid access only"] = "לאתר שלי ישנה גישה בתשלום בלבד"; -App::$strings["My site has free access only"] = "לאתר שלי ישנה גישה חופשית בלבד"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "האתר שלי מציע חשבונות בחינם לצד אפשרות לשדרוגים בתשלום"; -App::$strings["Site"] = "אתר"; -App::$strings["Registration"] = "רישום"; -App::$strings["File upload"] = "העלאת קובץ"; -App::$strings["Policies"] = "מדינויות"; -App::$strings["Advanced"] = "מתקדם"; -App::$strings["Site name"] = "שם אתר"; -App::$strings["Banner/Logo"] = "באנר/לוגו"; -App::$strings["Administrator Information"] = "מידע מנהל"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["System language"] = "שפת מערכת"; -App::$strings["System theme"] = "מוטיב מערכת"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -App::$strings["Mobile system theme"] = ""; -App::$strings["Theme for mobile devices"] = ""; -App::$strings["Allow Feeds as Connections"] = ""; -App::$strings["(Heavy system resource usage)"] = ""; -App::$strings["Maximum image size"] = "גודל תמונה מרבי"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -App::$strings["Does this site allow new member registration?"] = ""; -App::$strings["Invitation only"] = "הזמנה בלבד"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = ""; -App::$strings["Which best describes the types of account offered by this hub?"] = ""; -App::$strings["Register text"] = ""; -App::$strings["Will be displayed prominently on the registration page."] = ""; -App::$strings["Site homepage to show visitors (default: login box)"] = ""; -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."] = ""; -App::$strings["Preserve site homepage URL"] = ""; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = ""; -App::$strings["Accounts abandoned after x days"] = ""; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -App::$strings["Allowed friend domains"] = ""; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Allowed email domains"] = "מתחמי דוא״ל מורשים"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Not allowed email domains"] = "מתחמי דוא״ל לא מורשים"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; -App::$strings["Verify Email Addresses"] = ""; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; -App::$strings["Force publish"] = ""; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -App::$strings["Import Public Streams"] = ""; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = ""; -App::$strings["Login on Homepage"] = "התחבר בעמוד בית"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = ""; -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"] = ""; -App::$strings["Default directory server"] = "שרת ספרייה שגרתי"; -App::$strings["Proxy user"] = "משתמש פרוקסי"; -App::$strings["Proxy URL"] = "URL פרוקסי"; -App::$strings["Network timeout"] = "פקיעת זמן רשת"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -App::$strings["Delivery interval"] = "תדירות שגרתית"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -App::$strings["Deliveries per process"] = ""; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = ""; -App::$strings["Poll interval"] = ""; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -App::$strings["Maximum Load Average"] = "עומס ממוצע מרבי"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -App::$strings["Expiration period in days for imported (grid/network) content"] = ""; -App::$strings["0 for no expiration of imported content"] = ""; -App::$strings["Off"] = ""; -App::$strings["On"] = ""; -App::$strings["Lock feature %s"] = "נעל תכונת %s"; -App::$strings["Manage Additional Features"] = "נהל תכונות נוספות"; -App::$strings["No server found"] = "לא נמצא שרת"; -App::$strings["ID"] = "מזהה"; -App::$strings["for channel"] = "לערוץ"; -App::$strings["on server"] = "בשרת"; -App::$strings["Server"] = "שרת"; -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"] = "אבטחה"; -App::$strings["Block public"] = ""; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = ""; -App::$strings["Set \"Transport Security\" HTTP header"] = ""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; -App::$strings["Allow communications only from these sites"] = ""; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = ""; -App::$strings["Block communications from these sites"] = ""; -App::$strings["Allow communications only from these channels"] = "התר התקשרויות רק מתוך ערוצים אלה"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = ""; -App::$strings["Block communications from these channels"] = "חסום התקשרויות מתוך ערוצים אלה"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "התר שיבוצים מתוך אתרים וקישורים נאובטחים (SSL) בלבד."; -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"] = ""; -App::$strings["Update has been marked successful"] = ""; -App::$strings["Executing %s failed. Check system logs."] = ""; -App::$strings["Update %s was successfully applied."] = ""; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -App::$strings["Update function %s could not be found."] = ""; -App::$strings["No failed updates."] = "אין עדכונים כושלים."; -App::$strings["Failed Updates"] = "עדכונים כושלים"; -App::$strings["Mark success (if update was manually applied)"] = ""; -App::$strings["Attempt to execute this update step automatically"] = ""; -App::$strings["Queue Statistics"] = ""; -App::$strings["Total Entries"] = ""; -App::$strings["Priority"] = "עדיפות"; -App::$strings["Destination URL"] = ""; -App::$strings["Mark hub permanently offline"] = "סמן מוקד בלתי מקוון לצמיתות"; -App::$strings["Empty queue for this hub"] = "רוקן תור עבור מוקד זה"; -App::$strings["Last known contact"] = "איש קשר מוכר אחרון"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s account deleted"] = array( - 0 => "חשבון %s נמחק", - 1 => "%s חשבונות נמחקו", -); -App::$strings["Account not found"] = "חשבון לא נמצא"; -App::$strings["Account '%s' deleted"] = "חשבון '%s' נמחק"; -App::$strings["Account '%s' blocked"] = "חשבון '%s' נחסם"; -App::$strings["Account '%s' unblocked"] = "חשבון '%s' נפתח"; -App::$strings["Accounts"] = "חשבונות"; -App::$strings["select all"] = "בחר הכל"; -App::$strings["Registrations waiting for confirm"] = "הרשמות ממתינות לצורך אישור"; -App::$strings["Request date"] = "תאריך בקשה"; -App::$strings["No registrations."] = "אין הרשמות."; -App::$strings["Deny"] = "אסור"; -App::$strings["All Channels"] = "כל הערוצים"; -App::$strings["Register date"] = "תאריך רישום"; -App::$strings["Last login"] = "כניסה אחרונה"; -App::$strings["Expires"] = "פג"; -App::$strings["Service Class"] = "מחלקת שירות"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel deleted"] = array( - 0 => "ערוץ %s נמחק", - 1 => "%s ערוצים נמחקו", -); -App::$strings["Channel not found"] = "ערוץ לא נמצא"; -App::$strings["Channel '%s' deleted"] = "ערוץ '%s' נמחק"; -App::$strings["Channel '%s' censored"] = "ערוץ '%s' צונזר"; -App::$strings["Channel '%s' uncensored"] = "ערוץ '%s' יצא מכלל צנזורה"; -App::$strings["Channel '%s' code allowed"] = ""; -App::$strings["Channel '%s' code disallowed"] = ""; -App::$strings["Channels"] = "ערוצים"; -App::$strings["Censor"] = "צנזר"; -App::$strings["Uncensor"] = ""; -App::$strings["Allow Code"] = "התר קוד"; -App::$strings["Disallow Code"] = "אסור קוד"; -App::$strings["Channel"] = "ערוץ"; -App::$strings["UID"] = ""; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["Plugin %s disabled."] = "תוסף %s מנוטרל."; -App::$strings["Plugin %s enabled."] = "תוסף %s מאופשר."; -App::$strings["Disable"] = "נטרל"; -App::$strings["Enable"] = "אפשר"; -App::$strings["Plugins"] = "תוספות"; -App::$strings["Toggle"] = "החלף"; -App::$strings["Settings"] = "הגדרות"; -App::$strings["Author: "] = "מחבר: "; -App::$strings["Maintainer: "] = "מתחזק: "; -App::$strings["Minimum project version: "] = "גרסת פרויקט נומינלית: "; -App::$strings["Maximum project version: "] = "גרסת פרויקט מרבית: "; -App::$strings["Minimum PHP version: "] = "גרסת PHP נומינלית: "; -App::$strings["Requires: "] = "מצריך: "; -App::$strings["Disabled - version incompatibility"] = ""; -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"] = "התקן"; -App::$strings["Manage Repos"] = "נהל מאגרים"; -App::$strings["Installed Plugin Repositories"] = "מאגרי תוסף מותקנים"; -App::$strings["Install a New Plugin Repository"] = "התקן מאגר תוסף חדש"; -App::$strings["Update"] = "עדכן"; -App::$strings["Switch branch"] = "החלף ענף"; -App::$strings["No themes found."] = "לא נמצאו מוטיבים."; -App::$strings["Screenshot"] = "צילום מסך"; -App::$strings["Themes"] = "ערכות נושא"; -App::$strings["[Experimental]"] = "[ניסיוני]"; -App::$strings["[Unsupported]"] = "[לא נתמך]"; -App::$strings["Log settings updated."] = "הגדרות יומן עדכנו."; -App::$strings["Logs"] = "יומנים"; -App::$strings["Clear"] = "טהר"; -App::$strings["Debugging"] = "דיבאג"; -App::$strings["Log file"] = "קובץ יומן"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; -App::$strings["Log level"] = ""; -App::$strings["New Profile Field"] = "שדה פרופיל חדש"; -App::$strings["Field nickname"] = "שם כינוי שדה"; -App::$strings["System name of field"] = "שם מערכת של שדה"; -App::$strings["Input type"] = "טיפוס קלט"; -App::$strings["Field Name"] = "שם שדה"; -App::$strings["Label on profile pages"] = ""; -App::$strings["Help text"] = "טקסט עזרה"; -App::$strings["Additional info (optional)"] = "מידע נוסף (רשות)"; -App::$strings["Field definition not found"] = "הגדרת שדה לא נמצאה"; -App::$strings["Edit Profile Field"] = "ערוך שדה פרופיל"; -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::$strings["Malformed app."] = "אפליקציה פגומה."; -App::$strings["Embed code"] = "הטמע קוד"; -App::$strings["Edit App"] = "ערוך אפליקציה"; -App::$strings["Create App"] = "צור אפליקציה"; -App::$strings["Name of app"] = "שם של אפליקציה"; -App::$strings["Location (URL) of app"] = "מיקום (URL) של אפליקציה"; -App::$strings["Photo icon URL"] = ""; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 פיקסלים - רשות"; -App::$strings["Categories (optional, comma separated list)"] = "קטגוריות (רשות, רשימה מופרדת פסיקים)"; -App::$strings["Version ID"] = "מזהה גרסא"; -App::$strings["Price of app"] = "מחיר אפליקציה"; -App::$strings["Location (URL) to purchase app"] = "מיקום (URL) כדי לרכוש אפליקציה"; -App::$strings["Select a bookmark folder"] = "בחר תיקיית סימניות"; -App::$strings["Save Bookmark"] = "שמור סימנייה"; -App::$strings["URL of bookmark"] = "URL של סימנייה"; -App::$strings["Or enter new bookmark folder name"] = "או הזן שם תיקיית סימניות חדש"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; -App::$strings["Passwords do not match."] = "סיסמאות לא תואמות."; -App::$strings["Registration successful. Please check your email for validation instructions."] = ""; -App::$strings["Your registration is pending approval by the site owner."] = ""; -App::$strings["Your registration can not be processed."] = "הרשמתך לא ניתנת לעיבוד"; -App::$strings["Registration on this hub is disabled."] = "רישום על מוקד זה הינו מנוטרל."; -App::$strings["Registration on this hub is by approval only."] = "רישום על מוקד זה הינו מותנה באישור."; -App::$strings["Register at another affiliated hub."] = "הירשם במוקד מקושר אחר."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -App::$strings["Terms of Service"] = "תנאי שימוש"; -App::$strings["I accept the %s for this website"] = "אני מקבל את ה%s לאתר רשת זה"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה"; -App::$strings["Your email address"] = "כתובת דוא״ל שלך"; -App::$strings["Choose a password"] = "בחר סיסמה"; -App::$strings["Please re-enter your password"] = "בבקשה הזן שוב את סיסמתך"; -App::$strings["Please enter your invitation code"] = ""; -App::$strings["no"] = "לא"; -App::$strings["yes"] = "כן"; -App::$strings["Membership on this site is by invitation only."] = "חברות באתר זה היא באמצעות הזמנה בלבד."; -App::$strings["Register"] = "הרשמה"; -App::$strings["Proceed to create your first channel"] = "המשך כדי ליצור את הערוץ הראשון שלך"; -App::$strings["Please login."] = "אנא התחבר."; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Account"] = "הסר את חשבון זה"; -App::$strings["WARNING: "] = "אזהרה: "; -App::$strings["This account and all its channels will be completely removed from the network. "] = ""; -App::$strings["This action is permanent and can not be undone!"] = ""; -App::$strings["Please enter your password for verification:"] = "אנא הזן את הסיסמה שלך לצורך אימות:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; -App::$strings["Remove Account"] = "הסר חשבון"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Channel"] = "הסר את ערוץ זה"; -App::$strings["This channel will be completely removed from the network. "] = ""; -App::$strings["Remove this channel and all its clones from the network"] = ""; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; -App::$strings["Remove Channel"] = "הסר ערוץ"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -App::$strings["The error message was:"] = ""; -App::$strings["Authentication failed."] = "אימות נכשל."; -App::$strings["Remote Authentication"] = "אימות מרוחק"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; -App::$strings["Authenticate"] = ""; -App::$strings["Items tagged with: %s"] = "פריטים מתוייגים עם: %s"; -App::$strings["Search results for: %s"] = "תוצאות חיפוש עבור: %s"; -App::$strings["No service class restrictions found."] = "לא נמצאו הגבלות מחלקת ערוץ."; -App::$strings["Name is required"] = "נדרש שם"; -App::$strings["Key and Secret are required"] = "מפתח וגם סוד הינם בגדר חובה."; -App::$strings["Not valid email."] = "לא דוא״ל תקף."; -App::$strings["Protected email address. Cannot change to that email."] = "כתובת דוא״ל מוגנת. לא מסוגל לשנות לדוא״ל זה."; -App::$strings["System failure storing new email. Please try again."] = ""; -App::$strings["Password verification failed."] = "אימות סיסמה נכשל."; -App::$strings["Passwords do not match. Password unchanged."] = "סיסמאות לא תואמות. סיסמה לא שונתה."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "סיסמאות ריקות לא מותרות. סיסמה לא שונתה."; -App::$strings["Password changed."] = "סיסמה שונתה."; -App::$strings["Password update failed. Please try again."] = "עדכון סיסמה נכשל. אנא נסה שוב."; -App::$strings["Settings updated."] = "הגדרות עודכנו."; -App::$strings["Add application"] = "הוסף אפליקציה"; -App::$strings["Name of application"] = "שם של אפליקציה"; -App::$strings["Consumer Key"] = "מפתח צרכן"; -App::$strings["Automatically generated - change if desired. Max length 20"] = ""; -App::$strings["Consumer Secret"] = "סוד צרכן"; -App::$strings["Redirect"] = ""; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; -App::$strings["Icon url"] = ""; -App::$strings["Optional"] = "רשות"; -App::$strings["Application not found."] = "יישום לא נמצא."; -App::$strings["Connected Apps"] = "אפליקציות מחוברות"; -App::$strings["Client key starts with"] = ""; -App::$strings["No name"] = "אין שם"; -App::$strings["Remove authorization"] = "הסר אישור"; -App::$strings["No feature settings configured"] = ""; -App::$strings["Feature/Addon Settings"] = ""; -App::$strings["Account Settings"] = "הגדרות חשבון"; -App::$strings["Current Password"] = "סיסמה נוכחית"; -App::$strings["Enter New Password"] = "הזן סיסמה חדשה"; -App::$strings["Confirm New Password"] = "אמת סיסמה חדשה"; -App::$strings["Leave password fields blank unless changing"] = "השאר דשות סיסמה ריקים אלא אם כן ברצונך לשנות"; -App::$strings["Email Address:"] = "כתובת דוא״ל:"; -App::$strings["Remove this account including all its channels"] = "הסר את חשבון זה לרבות כל הערוצים שלו"; -App::$strings["Additional Features"] = "תכונות נוספות"; -App::$strings["Connector Settings"] = "הגדרות מקשר"; -App::$strings["No special theme for mobile devices"] = "אין ערכת נושא מיוחדת להתקנים ניידים"; -App::$strings["%s - (Experimental)"] = "%s - (ניסיוני)"; -App::$strings["Display Settings"] = "הגדרות תצוגה"; -App::$strings["Theme Settings"] = "הגדרות ערכת נושא"; -App::$strings["Custom Theme Settings"] = "הגדרות ערכת נושא מותאמת"; -App::$strings["Content Settings"] = "הגדרות תוכן"; -App::$strings["Display Theme:"] = ""; -App::$strings["Mobile Theme:"] = ""; -App::$strings["Preload images before rendering the page"] = ""; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = ""; -App::$strings["Enable user zoom on mobile devices"] = ""; -App::$strings["Update browser every xx seconds"] = "עדכן דפדפן כל xx שניות"; -App::$strings["Minimum of 10 seconds, no maximum"] = "מינימום של 10 שניות, אין מקסימום"; -App::$strings["Maximum number of conversations to load at any time:"] = ""; -App::$strings["Maximum of 100 items"] = "מקסימום של 100 פריטים"; -App::$strings["Show emoticons (smilies) as images"] = ""; -App::$strings["Link post titles to source"] = ""; -App::$strings["System Page Layout Editor - (advanced)"] = ""; -App::$strings["Use blog/list mode on channel page"] = ""; -App::$strings["(comments displayed separately)"] = "(תגובות מוצגות בנפרד)"; -App::$strings["Use blog/list mode on grid page"] = ""; -App::$strings["Channel page max height of content (in pixels)"] = ""; -App::$strings["click to expand content exceeding this height"] = ""; -App::$strings["Grid page max height of content (in pixels)"] = ""; -App::$strings["Nobody except yourself"] = "אף אחד חוץ ממך"; -App::$strings["Only those you specifically allow"] = "רק אלו שהתרת להם במפורש"; -App::$strings["Approved connections"] = "חיבורים מאושרים"; -App::$strings["Any connections"] = "כל חיבור"; -App::$strings["Anybody on this website"] = "כל אחד באתר רשת זה"; -App::$strings["Anybody in this network"] = "כל אחד ברשת זו"; -App::$strings["Anybody authenticated"] = "כל אחד שאושר"; -App::$strings["Anybody on the internet"] = "כל אחד באינטרנט"; -App::$strings["Publish your default profile in the network directory"] = ""; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; -App::$strings["Your channel address is"] = "כתובת הערוץ שלך היא"; -App::$strings["Channel Settings"] = "הגדרות ערוץ"; -App::$strings["Basic Settings"] = "הגדרות בסיסיות"; -App::$strings["Full Name:"] = "שם מלא:"; -App::$strings["Your Timezone:"] = "אזור זמן שלך:"; -App::$strings["Default Post Location:"] = "מיקום פוסט שגרתי:"; -App::$strings["Geographical location to display on your posts"] = "מיקום גיאוגרפי להצגה בפוסטים שלך"; -App::$strings["Use Browser Location:"] = "השתמש במיקום דפדפן:"; -App::$strings["Adult Content"] = "תוכן מבוגרים"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "ערוץ זה מפרסם תוכן למבוגרים באופן תדיר או שגרתי. (אנא תייג כל חומר למבוגרים ו/או עירום עם NSFW#)"; -App::$strings["Security and Privacy Settings"] = "הגדרות אבטחה ופרטיות"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = ""; -App::$strings["Hide my online presence"] = "הסתר את הנוכחות המקוונת שלי"; -App::$strings["Prevents displaying in your profile that you are online"] = ""; -App::$strings["Simple Privacy Settings:"] = "הגדרות פרטיות פשוטות:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "ציבורי מאוד - מתירני ביותר (יש להשתמש בזהירות)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "טיפוסי - ציבורי שגרתי, פרטיות לפי דרישה (דומה להרשאות רשת חברתית אולם לצד פרטיות משופרת)"; -App::$strings["Private - default private, never open or public"] = "פרטי - פרטי שגרתי, אף פעם לא פתוח או ציבורי"; -App::$strings["Blocked - default blocked to/from everybody"] = "חסום - חסום שגרתי אל/מן כל אחד"; -App::$strings["Allow others to tag your posts"] = "התר לאחרים לתייג את הפוסטים שלך"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; -App::$strings["Advanced Privacy Settings"] = "הגדרות פרטיות מתקדמות"; -App::$strings["Expire other channel content after this many days"] = ""; -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:"] = ""; -App::$strings["May reduce spam activity"] = ""; -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:"] = ""; -App::$strings["Maximum private messages per day from unknown people:"] = ""; -App::$strings["Useful to reduce spamming"] = ""; -App::$strings["Notification Settings"] = "הגדרות התראה"; -App::$strings["By default post a status message when:"] = ""; -App::$strings["accepting a friend request"] = ""; -App::$strings["joining a forum/community"] = ""; -App::$strings["making an interesting profile change"] = ""; -App::$strings["Send a notification email when:"] = "שלח דוא״ל התראה כאשר:"; -App::$strings["You receive a connection request"] = "קיבלת בקשת חיבור"; -App::$strings["Your connections are confirmed"] = "החיבורים שלך הינם מאומתים"; -App::$strings["Someone writes on your profile wall"] = "מישהו כותב על קיר הפרופיל שלך"; -App::$strings["Someone writes a followup comment"] = "מישהו רושם תגובת המשך"; -App::$strings["You receive a private message"] = "קיבלת הודעה פרטית"; -App::$strings["You receive a friend suggestion"] = "קיבלת הצעת ידידים"; -App::$strings["You are tagged in a post"] = ""; -App::$strings["You are poked/prodded/etc. in a post"] = ""; -App::$strings["Show visual notifications including:"] = ""; -App::$strings["Unseen grid activity"] = ""; -App::$strings["Unseen channel activity"] = "פעילות ערוץ לא נראית"; -App::$strings["Unseen private messages"] = "הודעות ערוץ לא נראות"; -App::$strings["Recommended"] = ""; -App::$strings["Upcoming events"] = "אירועים קרובים"; -App::$strings["Events today"] = "אירועים היום"; -App::$strings["Upcoming birthdays"] = "ימי הולדת קרובים"; -App::$strings["Not available in all themes"] = ""; -App::$strings["System (personal) notifications"] = ""; -App::$strings["System info messages"] = "הודעות מידע מערכת"; -App::$strings["System critical alerts"] = ""; -App::$strings["New connections"] = "חיבורים חדשים"; -App::$strings["System Registrations"] = "הרשמות מערכת"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = ""; -App::$strings["Notify me of events this many days in advance"] = ""; -App::$strings["Must be greater than 0"] = ""; -App::$strings["Advanced Account/Page Type Settings"] = ""; -App::$strings["Change the behaviour of this account for special situations"] = ""; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; -App::$strings["Miscellaneous Settings"] = "הגדרות שונות"; -App::$strings["Default photo upload folder"] = "תיקיית העלאת תצלום שגרתית"; -App::$strings["%Y - current year, %m - current month"] = "%Y - שנה נוכחית, %m - חודש נוכחי"; -App::$strings["Default file upload folder"] = "תיקיית העלאת קובץ שגרתית"; -App::$strings["Personal menu to display in your channel pages"] = ""; -App::$strings["Remove this channel."] = "הסר את ערוץ זה."; -App::$strings["Firefox Share \$Projectname provider"] = ""; -App::$strings["Start calendar week on monday"] = ""; -App::$strings["\$Projectname Server - Setup"] = "שרת \$Projectname - הבנייה"; -App::$strings["Could not connect to database."] = "לא היתה אפשרות להתחבר למסד נתונים."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; -App::$strings["Could not create table."] = ""; -App::$strings["Your site database has been installed."] = ""; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; -App::$strings["System check"] = "בדיקת מערכת"; -App::$strings["Check again"] = "בדוק שוב"; -App::$strings["Database connection"] = "חיבור מסד נתונים"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -App::$strings["Database Server Name"] = "שם שרת מסד נתונים"; -App::$strings["Default is 127.0.0.1"] = "ברירת מחדל 127.0.0.1"; -App::$strings["Database Port"] = "פורט מסד נתונים"; -App::$strings["Communication port number - use 0 for default"] = ""; -App::$strings["Database Login Name"] = "שם כניסה מסד נתונים"; -App::$strings["Database Login Password"] = "סיסמה מסד נתונים"; -App::$strings["Database Name"] = "שם מסד נתונים"; -App::$strings["Database Type"] = "טיפוס מסד נתונים"; -App::$strings["Site administrator email address"] = "כתובת דוא״ל מנהל אתר"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = "כתובת אתר אינטרנט"; -App::$strings["Please use SSL (https) URL if available."] = "אנא השתמש בכתובת SSL (כלומר, https) אם זמינה."; -App::$strings["Please select a default timezone for your website"] = ""; -App::$strings["Site settings"] = "הגדרות אתר"; -App::$strings["Enable \$Projectname advanced features?"] = "אפשר תכונות מתקדמות בפרויקט \$Projectname?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = ""; -App::$strings["PHP version 5.5 or greater is required."] = ""; -App::$strings["PHP version"] = ""; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -App::$strings["PHP executable path"] = "נתיב PHP נתון ליישום"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -App::$strings["Command line PHP"] = "שורת פקודה PHP"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -App::$strings["This is required for message delivery to work."] = ""; -App::$strings["PHP register_argc_argv"] = ""; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = ""; -App::$strings["You can adjust these settings in the servers php.ini."] = ""; -App::$strings["PHP upload limits"] = ""; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; -App::$strings["Generate encryption keys"] = "הפק מפתחות הצפנה"; -App::$strings["libCurl PHP module"] = "מודול libCurl PHP"; -App::$strings["GD graphics PHP module"] = ""; -App::$strings["OpenSSL PHP module"] = "מודול OpenSSL PHP"; -App::$strings["mysqli or postgres PHP module"] = "מודול mysqli PHP או postgres"; -App::$strings["mb_string PHP module"] = "מודול mb_string PHP"; -App::$strings["mcrypt PHP module"] = "מודול mcrypt PHP"; -App::$strings["xml PHP module"] = "מודול xml PHP"; -App::$strings["Apache mod_rewrite module"] = "מודול Apache mod_rewrite"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -App::$strings["Error: openssl PHP module required but not installed."] = ""; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = ""; -App::$strings["Error: mb_string PHP module required but not installed."] = ""; -App::$strings["Error: mcrypt PHP module required but not installed."] = ""; -App::$strings["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."] = ""; -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."] = ""; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = ""; -App::$strings[".htconfig.php is writable"] = ".htconfig.php הינו כתיב"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -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."] = ""; -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."] = ""; -App::$strings["%s is writable"] = "%s הינו כתיב"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = ""; -App::$strings["store is writable"] = ""; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -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!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; -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."] = ""; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; -App::$strings["SSL certificate validation"] = "הוכחת תקפות של תעודת SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; -App::$strings["Url rewrite is working"] = ""; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["

What next

"] = "

מה הלאה

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["Files: shared with me"] = ""; -App::$strings["NEW"] = "חדש"; -App::$strings["Remove all files"] = "הסר את כל הקבצים"; -App::$strings["Remove this file"] = "הסר את קובץ זה"; -App::$strings["Version %s"] = "גרסא %s"; -App::$strings["Installed plugins/addons/apps:"] = ""; -App::$strings["No installed plugins/addons/apps"] = ""; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "זהו מוקד של \$Projectname - רשת קואופרטיבית מבוזרת של אתרי רשת בעלי פרטיות משוכללת."; -App::$strings["Tag: "] = "תגית: "; -App::$strings["Last background fetch: "] = ""; -App::$strings["Current load average: "] = "עומס ממוצע נוכחי: "; -App::$strings["Running at web location"] = ""; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "אנא בקר באתר hubzilla.org כדי ללמוד עוד אודות \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = ""; -App::$strings["\$projectname issues"] = "סוגיות \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = ""; -App::$strings["Site Administrators"] = "מנהלי אתר"; -App::$strings["Failed to create source. No channel selected."] = ""; -App::$strings["Source created."] = "מקור נוצר."; -App::$strings["Source updated."] = "מקור עודכן."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "מקורות ערוץ"; -App::$strings["Manage remote sources of content for your channel."] = ""; -App::$strings["New Source"] = "מקור חדש"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; -App::$strings["Only import content with these words (one per line)"] = ""; -App::$strings["Leave blank to import all public content"] = ""; -App::$strings["Channel Name"] = "שם ערוץ"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; -App::$strings["Source not found."] = "מקור לא נמצא."; -App::$strings["Edit Source"] = "ערוך מקור"; -App::$strings["Delete Source"] = "מחק מקור"; -App::$strings["Source removed"] = "מקור הוסר"; -App::$strings["Unable to remove source."] = ""; -App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = ""; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -App::$strings["Ignore/Hide"] = "התעלם/הסתר"; -App::$strings["post"] = "פוסט"; -App::$strings["comment"] = "תגובה"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -App::$strings["Tag removed"] = ""; -App::$strings["Remove Item Tag"] = ""; -App::$strings["Select a tag to remove: "] = ""; -App::$strings["Thing updated"] = ""; -App::$strings["Object store: failed"] = ""; -App::$strings["Thing added"] = ""; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = "הצג דבר"; -App::$strings["item not found."] = "פריט לא נמצא"; -App::$strings["Edit Thing"] = "ערוך דבר"; -App::$strings["Select a profile"] = "בחר פרופיל"; -App::$strings["Post an activity"] = "פרסם פעילות"; -App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = "שם של דבר, לדוגמא: משהו"; -App::$strings["URL of thing (optional)"] = "URL של דבר (רשות)"; -App::$strings["URL for photo of thing (optional)"] = "URL עבור תצלום של משהו (רשות)"; -App::$strings["Add Thing to your Profile"] = "הוסף דבר לפרופיל שלך"; -App::$strings["Export Channel"] = "יצא ערוץ"; -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."] = ""; -App::$strings["Export Content"] = "יצא תוכן"; -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."] = ""; -App::$strings["Export your posts from a given year."] = "יצא פוסטים מתוך שנה נתונה."; -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."] = ""; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = ""; -App::$strings["To select all posts for a given month, such as January of this year, visit %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)."] = ""; -App::$strings["No connections."] = "אין חיבורים."; -App::$strings["Visit %s's profile [%s]"] = ""; -App::$strings["View Connections"] = "צפה בחיבורים"; -App::$strings["Source of Item"] = "מקור פריט"; -App::$strings["Webpages"] = "עמודי רשת"; -App::$strings["Actions"] = "פעולות"; -App::$strings["Page Link"] = "קישור עמוד"; -App::$strings["Page Title"] = "כותרת עמוד"; -App::$strings["Xchan Lookup"] = "חיפוש Xchan"; -App::$strings["Lookup xchan beginning with (or webbie): "] = ""; -App::$strings["Wiki"] = "ויקי"; -App::$strings["Sandbox"] = "ארגז חול"; -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["Missing room name"] = ""; -App::$strings["Duplicate room name"] = ""; -App::$strings["Invalid room specifier."] = "מציין חדר שגוי"; -App::$strings["Room not found."] = "חדר לא נמצא."; -App::$strings["Room is full"] = "חדר מלא"; -App::$strings["\$Projectname Notification"] = "התראות \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "תודה,"; -App::$strings["%s Administrator"] = "הנהלת %s"; -App::$strings["%s "] = ""; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:התראה] דואר חדש נתקבל %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s של לך הודעה פרטית חדשה באתר %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s שלח לך %2\$s."; -App::$strings["a private message"] = "הודעה פרטית"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "אנא בקר בכתובת %s כדי לצפות ו/או להשיב להודעות הפרטיות שלך."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:התראה] תגובה לדיון #%1\$d מאת %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; -App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:התראה] %s פרסם לקיר הפרופיל שלך"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:התראה] %s תייג אותך"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = ""; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:התראה] %s תייג פוסט שלך"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:התראה] היכרות פורמלית נתקבלה"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; -App::$strings["You may visit their profile at %s"] = "אתה יכול לבקר את הפרופיל שלהם בקישור %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = ""; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:התראה] הצעת חבר נתקבלה"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; -App::$strings["Name:"] = "שם:"; -App::$strings["Photo:"] = "תצלום:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = ""; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:התראה]"; -App::$strings["created a new post"] = "צור פוסט חדש"; -App::$strings["commented on %s's post"] = "הגיב/ה על פוסט של %s"; -App::$strings["Private Message"] = "הודעה פרטית"; -App::$strings["Select"] = "בחר"; -App::$strings["Save to Folder"] = "שמור לתיקייה"; -App::$strings["I will attend"] = "אני אופיע"; -App::$strings["I will not attend"] = "אני לא אופיע"; -App::$strings["I might attend"] = "אני עשוי/ה להופיע"; -App::$strings["I agree"] = "אני מסכים/ה"; -App::$strings["I disagree"] = "אני לא מסכים/ה"; -App::$strings["I abstain"] = "אני נמנע/ת"; -App::$strings["Add Star"] = "הוסף כוכב"; -App::$strings["Remove Star"] = "הסר כוכב"; -App::$strings["Toggle Star Status"] = ""; -App::$strings["starred"] = ""; -App::$strings["Message signature validated"] = ""; -App::$strings["Message signature incorrect"] = ""; -App::$strings["Add Tag"] = "הוסף תגית"; -App::$strings["like"] = ""; -App::$strings["dislike"] = ""; -App::$strings["Share This"] = "שתף זאת"; -App::$strings["share"] = "שתף"; -App::$strings["Delivery Report"] = ""; -App::$strings["%d comment"] = array( - 0 => "תגובה %d", - 1 => "%d תגובות", -); -App::$strings["View %s's profile - %s"] = ""; -App::$strings["to"] = "אל"; -App::$strings["via"] = "מתוך"; -App::$strings["Wall-to-Wall"] = "קיר-אל-קיר"; -App::$strings["via Wall-To-Wall:"] = "מתוך קיר-אל-קיר:"; -App::$strings["from %s"] = "מאת %s"; -App::$strings["last edited: %s"] = "נערך לאחרונה: %s"; -App::$strings["Expires: %s"] = "פג: %s"; -App::$strings["Save Bookmarks"] = "שמור סימניות"; -App::$strings["Add to Calendar"] = "הוסף ללוח שנה"; -App::$strings["Mark all seen"] = "סמן את הכל כנקראו"; -App::$strings["[+] show all"] = "[+] הצג הכל"; -App::$strings["Bold"] = "מובלט"; -App::$strings["Italic"] = "נטוי"; -App::$strings["Underline"] = "קו תחתון"; -App::$strings["Quote"] = "ציטוט"; -App::$strings["Code"] = "קוד"; -App::$strings["Image"] = "תמונה"; -App::$strings["Insert Link"] = "הכנס קישור"; -App::$strings["Video"] = "וידאו"; -App::$strings["Site Admin"] = "מנהל אתר"; -App::$strings["Bug Report"] = "דיווח באג"; -App::$strings["View Bookmarks"] = "הצג סימניות"; -App::$strings["My Chatrooms"] = "חדרי השיחה שלי"; -App::$strings["Firefox Share"] = ""; -App::$strings["Remote Diagnostics"] = ""; -App::$strings["Suggest Channels"] = "הצע ערוצים"; -App::$strings["Login"] = "כניסה"; -App::$strings["Grid"] = ""; -App::$strings["Channel Home"] = "ערוץ בית"; -App::$strings["Events"] = "אירועים"; -App::$strings["Directory"] = "ספרייה"; -App::$strings["Mail"] = "דואר"; -App::$strings["Chat"] = "שיחה"; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = "הצע"; -App::$strings["Random Channel"] = "ערוץ אקראי"; -App::$strings["Invite"] = "הזמן"; -App::$strings["Features"] = "תכונות"; -App::$strings["Post"] = "פוסט"; -App::$strings["Purchase"] = "רכוש"; -App::$strings["No username found in import file."] = ""; -App::$strings["Unable to create a unique channel address. Import failed."] = ""; -App::$strings["Cannot locate DNS info for database server '%s'"] = ""; -App::$strings["Categories"] = "קטגוריות"; -App::$strings["Tags"] = "תגיות"; -App::$strings["Keywords"] = "מילות מפתח"; -App::$strings["have"] = ""; -App::$strings["has"] = ""; -App::$strings["want"] = "רוצים"; -App::$strings["wants"] = "רוצה"; -App::$strings["likes"] = "אוהב"; -App::$strings["dislikes"] = "לא אוהב"; -App::$strings["Image exceeds website size limit of %lu bytes"] = ""; -App::$strings["Image file is empty."] = "קובץ תמונה הינו ריק."; -App::$strings["Photo storage failed."] = "אחסון תצלום נכשל"; -App::$strings["a new photo"] = "תצלום חדש"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = ""; -App::$strings["Photo Albums"] = "אלבומי תמונה"; -App::$strings["Upload New Photos"] = "העלה תצלומים חדשים"; -App::$strings["prev"] = "קודם"; -App::$strings["first"] = "ראשון"; -App::$strings["last"] = "אחרון"; -App::$strings["next"] = "הבא"; -App::$strings["older"] = "ישן יותר"; -App::$strings["newer"] = "חדש יותר"; -App::$strings["No connections"] = "אין חיבורים"; -App::$strings["View all %s connections"] = ""; -App::$strings["poke"] = ""; -App::$strings["poked"] = ""; -App::$strings["ping"] = ""; -App::$strings["pinged"] = ""; -App::$strings["prod"] = ""; -App::$strings["prodded"] = ""; -App::$strings["slap"] = ""; -App::$strings["slapped"] = ""; -App::$strings["finger"] = ""; -App::$strings["fingered"] = ""; -App::$strings["rebuff"] = ""; -App::$strings["rebuffed"] = ""; -App::$strings["happy"] = "שמח"; -App::$strings["sad"] = "עצוב"; -App::$strings["mellow"] = "מתון"; -App::$strings["tired"] = "עייף"; -App::$strings["perky"] = "חצוף"; -App::$strings["angry"] = "כועס"; -App::$strings["stupefied"] = ""; -App::$strings["puzzled"] = "נבוך"; -App::$strings["interested"] = "מגלה עניין"; -App::$strings["bitter"] = "מר"; -App::$strings["cheerful"] = "עליז"; -App::$strings["alive"] = "חי"; -App::$strings["annoyed"] = "נרגז"; -App::$strings["anxious"] = "נרגז"; -App::$strings["cranky"] = "נרגז"; -App::$strings["disturbed"] = "מופרע"; -App::$strings["frustrated"] = "מתוסכל"; -App::$strings["depressed"] = "מדוכא"; -App::$strings["motivated"] = "מונע"; -App::$strings["relaxed"] = "רגוע"; -App::$strings["surprised"] = "מופתע"; -App::$strings["Monday"] = "יום שני"; -App::$strings["Tuesday"] = "יום שלישי"; -App::$strings["Wednesday"] = "יום רביעי"; -App::$strings["Thursday"] = "יום חמישי"; -App::$strings["Friday"] = "יום שישי"; -App::$strings["Saturday"] = "יום שבת"; -App::$strings["Sunday"] = "יום ראשון"; -App::$strings["January"] = "ינואר"; -App::$strings["February"] = "פברואר"; -App::$strings["March"] = "מרץ"; -App::$strings["April"] = "אפריל"; -App::$strings["May"] = "מאי"; -App::$strings["June"] = "יוני"; -App::$strings["July"] = "יולי"; -App::$strings["August"] = "אוגוסט"; -App::$strings["September"] = "ספטמבר"; -App::$strings["October"] = "אוקטובר"; -App::$strings["November"] = "נובמבר"; -App::$strings["December"] = "דצמבר"; -App::$strings["Unknown Attachment"] = "תצריף לא מוכר"; -App::$strings["unknown"] = "לא מוכר"; -App::$strings["remove category"] = "הסר קטגוריה"; -App::$strings["remove from file"] = "הסר מתוך קובץ"; -App::$strings["default"] = "ברירת מחדל"; -App::$strings["Page layout"] = ""; -App::$strings["You can create your own with the layouts tool"] = ""; -App::$strings["Page content type"] = "טיפוס תוכן עמוד"; -App::$strings["Select an alternate language"] = "בחר שפה חלופית"; -App::$strings["activity"] = "פעילות"; -App::$strings["Design Tools"] = "כלי עיצוב"; -App::$strings["Pages"] = "עמודים"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "מתחיל:"; -App::$strings["Finishes:"] = "נגמר:"; -App::$strings["This event has been added to your calendar."] = "אירוע זה התווסף ללוח שנה שלך."; -App::$strings["Not specified"] = "לא צוין"; -App::$strings["Needs Action"] = "מצריך פעולה"; -App::$strings["Completed"] = "הושלם"; -App::$strings["In Process"] = "בתהליך"; -App::$strings["Cancelled"] = "בוטל"; -App::$strings["No recipient provided."] = ""; -App::$strings["[no subject]"] = "[אין נושא]"; -App::$strings["Unable to determine sender."] = ""; -App::$strings["Stored post could not be verified."] = ""; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s כעת מחובר עם %2\$s"; -App::$strings["%1\$s poked %2\$s"] = ""; -App::$strings["View %s's profile @ %s"] = ""; -App::$strings["Categories:"] = "קטגוריות:"; -App::$strings["Filed under:"] = "תויק תחת:"; -App::$strings["View in context"] = "צפה בתוך הקשר"; -App::$strings["remove"] = "להסיר"; -App::$strings["Loading..."] = "כעת טוען..."; -App::$strings["Delete Selected Items"] = "מחק פריטים נבחרים"; -App::$strings["View Source"] = "צפה במקור"; -App::$strings["Follow Thread"] = "עקוב שרשור"; -App::$strings["Unfollow Thread"] = "נקר שרשור"; -App::$strings["Activity/Posts"] = "פעילות/פוסטים"; -App::$strings["Edit Connection"] = "ערוך חיבור"; -App::$strings["Message"] = "הודעה"; -App::$strings["%s likes this."] = "%s אהב זאת."; -App::$strings["%s doesn't like this."] = "%s לא אוהב זאת."; -App::$strings["%2\$d people like this."] = array( - 0 => "איש %2\$d אוהב זאת.", - 1 => "%2\$d אנשים אוהבים זאת.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "איש %2\$d לא אוהב זאת.", - 1 => "%2\$d אנשים לא אוהבים זאת.", -); -App::$strings["and"] = "ועוד"; -App::$strings[", and %d other people"] = array( - 0 => ", ועוד איש %d אחר", - 1 => ", ועוד %d אנשים אחרים", -); -App::$strings["%s like this."] = "%s אוהבים זאת."; -App::$strings["%s don't like this."] = "%s לא אוהבים זאת."; -App::$strings["Set your location"] = "קבע את המיקום שלך"; -App::$strings["Clear browser location"] = "טהר מיקום דפדפן"; -App::$strings["Embed image from photo albums"] = ""; -App::$strings["Tag term:"] = ""; -App::$strings["Where are you right now?"] = "היכן אתה כעת?"; -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["Page link name"] = "שם קישור עמוד"; -App::$strings["Post as"] = "פרסם בתור"; -App::$strings["Embed an image from your albums"] = ""; -App::$strings["OK"] = "אישור"; -App::$strings["Toggle voting"] = ""; -App::$strings["Categories (optional, comma-separated list)"] = "קטגוריות (רשות, רשימה מופרדת פסיקים)"; -App::$strings["Set publish date"] = ""; -App::$strings["Discover"] = "גלה"; -App::$strings["Imported public streams"] = "זרמים ציבוריים מיובאים"; -App::$strings["Commented Order"] = ""; -App::$strings["Sort by Comment Date"] = ""; -App::$strings["Posted Order"] = ""; -App::$strings["Sort by Post Date"] = "מיין לפי תאריך פוסט"; -App::$strings["Posts that mention or involve you"] = "פוסטים אשר מציינים או מערבים אותך"; -App::$strings["Activity Stream - by date"] = "זרם פעילות - לפי תאריך"; -App::$strings["Starred"] = ""; -App::$strings["Favourite Posts"] = "פוסטים מועדפים"; -App::$strings["Spam"] = "ספאם"; -App::$strings["Posts flagged as SPAM"] = "פוסטים מסומנים בתור ספאם"; -App::$strings["Status Messages and Posts"] = "הודעות ופרסומי סטטוס"; -App::$strings["About"] = "אודות"; -App::$strings["Profile Details"] = "פרטי פרופיל"; -App::$strings["Files and Storage"] = "קבצים ואחסון"; -App::$strings["Chatrooms"] = "חדרי שיחה"; -App::$strings["Bookmarks"] = "סימניות"; -App::$strings["Saved Bookmarks"] = "סימניות שמורות"; -App::$strings["Manage Webpages"] = "נהל עמודי רשת"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "מסכים", - 1 => "מסכימים", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "לא מסכים", - 1 => "לא מסכימים", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "", - 1 => "", -); -App::$strings["Channel is blocked on this site."] = "ערוץ חסום באתר זה."; -App::$strings["Channel location missing."] = "מיקום ערוץ חסר."; -App::$strings["Response from remote channel was incomplete."] = ""; -App::$strings["Channel was deleted and no longer exists."] = ""; -App::$strings["Protocol disabled."] = "פרוטוקול הינו מנוטרל."; -App::$strings["Channel discovery failed."] = "גילוי ערוץ נכשל."; -App::$strings["Cannot connect to yourself."] = "לא ניתן להתחבר לעצמך."; -App::$strings["Image/photo"] = "תמונה/תצלום"; -App::$strings["Encrypted content"] = "תוכן מוצפן"; -App::$strings["Install %s element: "] = "התקן אלמנט %s: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = ""; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -App::$strings["Click to open/close"] = "לחץ כדי לפתוח/לסגור"; -App::$strings["spoiler"] = ""; -App::$strings["Different viewers will see this text differently"] = "צופים שונים ייראו את טקסט זה בצורה שונה"; -App::$strings["$1 wrote:"] = "$1 כתב(ה):"; -App::$strings["%1\$s's bookmarks"] = ""; -App::$strings["Directory Options"] = "אפשרויות ספרייה"; -App::$strings["Safe Mode"] = "מצב בטוח"; -App::$strings["Public Forums Only"] = "פורומים ציבוריים בלבד"; -App::$strings["This Website Only"] = "אתר רשת זה בלבד"; -App::$strings["Invalid data packet"] = ""; -App::$strings["Unable to verify channel signature"] = ""; -App::$strings["Unable to verify site signature for %s"] = ""; -App::$strings["invalid target signature"] = ""; -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."] = ""; -App::$strings["Logout"] = "יציאה"; -App::$strings["End this session"] = "סיים את סשן זה"; -App::$strings["Home"] = "בית"; -App::$strings["Your posts and conversations"] = "הפרסומים והדיונים שלך"; -App::$strings["Your profile page"] = "עמוד הפרופיל שלך"; -App::$strings["Manage/Edit profiles"] = "נהל/ערוך פרופילים"; -App::$strings["Edit Profile"] = "ערוך פרופיל"; -App::$strings["Edit your profile"] = "ערוך את הפרופיל שלך"; -App::$strings["Your photos"] = "התצלומים שלך"; -App::$strings["Your files"] = "הקבצים שלך"; -App::$strings["Your chatrooms"] = "החדרי שיחה שלך"; -App::$strings["Your bookmarks"] = "הסימניות שלך"; -App::$strings["Your webpages"] = "העמודי רשת שלך"; -App::$strings["Sign in"] = "התחברות"; -App::$strings["%s - click to logout"] = "%s - לחץ כדי להתנתק"; -App::$strings["Remote authentication"] = "אימות מרוחק"; -App::$strings["Click to authenticate to your home hub"] = "לחץ כדי לאמת את מוקד הבית שלך"; -App::$strings["Home Page"] = "עמוד בית"; -App::$strings["Create an account"] = "צור חשבון"; -App::$strings["Help and documentation"] = "עזרה ותיעוד"; -App::$strings["Applications, utilities, links, games"] = "אפליקציות, עזרים, קישורים, משחקים"; -App::$strings["Search site @name, #tag, ?docs, content"] = ""; -App::$strings["Channel Directory"] = "ערוץ ספרייה"; -App::$strings["Your grid"] = ""; -App::$strings["Mark all grid notifications seen"] = ""; -App::$strings["Channel home"] = "ערוץ בית"; -App::$strings["Mark all channel notifications seen"] = "סמן את כל התראות הערוץ כנקראו"; -App::$strings["Notices"] = "הודעות"; -App::$strings["Notifications"] = "התראות"; -App::$strings["See all notifications"] = "צפה בכל ההתראות"; -App::$strings["Private mail"] = "דואר פרטי"; -App::$strings["See all private messages"] = "צפה בכל ההודעות הפרטיות"; -App::$strings["Mark all private messages seen"] = "סמן את כל ההודעות הפרטיות כנקראו"; -App::$strings["Inbox"] = "תיבה נכנסת"; -App::$strings["Outbox"] = "תיבה יוצאת"; -App::$strings["New Message"] = "הודעה חדשה"; -App::$strings["Event Calendar"] = "לוח שנה אירועים"; -App::$strings["See all events"] = "ראה את כל האירועים"; -App::$strings["Mark all events seen"] = "סמן את כל האירועים כנקראו"; -App::$strings["Manage Your Channels"] = "נהל את הערוצים שלך"; -App::$strings["Account/Channel Settings"] = "הגדרות חשבון/ערוץ"; -App::$strings["Admin"] = "מנהל"; -App::$strings["Site Setup and Configuration"] = "הבניית והגדרת אתר"; -App::$strings["@name, #tag, ?doc, content"] = "@name, #tag, ?doc, content"; -App::$strings["Please wait..."] = "אנא המתן..."; -App::$strings["%d invitation available"] = array( - 0 => "הזמנה %d זמינה", - 1 => "%d הזמנות זמינות", -); -App::$strings["Find Channels"] = "מצא ערוצים"; -App::$strings["Enter name or interest"] = "הזן שם או עניין"; -App::$strings["Connect/Follow"] = "התחבר/עקוב"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; -App::$strings["Random Profile"] = "פרופיל אקראי"; -App::$strings["Invite Friends"] = "הזמן חברים"; -App::$strings["Advanced example: name=fred and country=iceland"] = "דוגמא מתקדמת: name=פרד וגם country=איסלנד"; -App::$strings["Saved Folders"] = "תיקיות שמורות"; -App::$strings["Everything"] = "כל דבר"; -App::$strings["%d connection in common"] = array( - 0 => "", - 1 => "", -); -App::$strings["show more"] = "הצג עוד"; -App::$strings["Frequently"] = "באופן תדיר"; -App::$strings["Hourly"] = "כל שעה"; -App::$strings["Twice daily"] = "פעמיים ביום"; -App::$strings["Daily"] = "יומי"; -App::$strings["Weekly"] = "שבועי"; -App::$strings["Monthly"] = "חודשי"; -App::$strings["Currently Male"] = "כעת זכר"; -App::$strings["Currently Female"] = "כעת נקבה"; -App::$strings["Mostly Male"] = "בעיקר זכר"; -App::$strings["Mostly Female"] = "בעיקר נקבה"; -App::$strings["Transgender"] = "טרנסג׳נדר"; -App::$strings["Intersex"] = "בין מיני"; -App::$strings["Transsexual"] = "טרנסקסואל"; -App::$strings["Hermaphrodite"] = "אנדרוגיני"; -App::$strings["Neuter"] = "ניטראלי"; -App::$strings["Non-specific"] = ""; -App::$strings["Other"] = "אחר"; -App::$strings["Undecided"] = "לא מוכרע"; -App::$strings["Males"] = "זכרים"; -App::$strings["Females"] = "נקבות"; -App::$strings["Gay"] = "הומו"; -App::$strings["Lesbian"] = "לסבית"; -App::$strings["No Preference"] = "אין העדפה"; -App::$strings["Bisexual"] = "דו מיני"; -App::$strings["Autosexual"] = "אוטוסקסואלי"; -App::$strings["Abstinent"] = "מתנזר"; -App::$strings["Virgin"] = "בתול/ה"; -App::$strings["Deviant"] = "סוטה"; -App::$strings["Fetish"] = "פטיש"; -App::$strings["Oodles"] = "המון"; -App::$strings["Nonsexual"] = "לא מיני"; -App::$strings["Single"] = "רווק/ה"; -App::$strings["Lonely"] = "בודד"; -App::$strings["Available"] = "זמין"; -App::$strings["Unavailable"] = "לא פנוי/ה"; -App::$strings["Has crush"] = ""; -App::$strings["Infatuated"] = "מוקסם/ת"; -App::$strings["Dating"] = ""; -App::$strings["Unfaithful"] = "לא נאמן/ה"; -App::$strings["Sex Addict"] = "מכור/ה למין"; -App::$strings["Friends/Benefits"] = ""; -App::$strings["Casual"] = "ארעי/ת"; -App::$strings["Engaged"] = "מאורס/ת"; -App::$strings["Married"] = "נישואין"; -App::$strings["Imaginarily married"] = "נישואין דמיוניים"; -App::$strings["Partners"] = ""; -App::$strings["Cohabiting"] = "חיים יחדיו"; -App::$strings["Common law"] = ""; -App::$strings["Happy"] = "שמח"; -App::$strings["Not looking"] = "לא מחפש/ת"; -App::$strings["Swinger"] = "בליין/ית"; -App::$strings["Betrayed"] = "נבגד/ת"; -App::$strings["Separated"] = "פרוד/ה"; -App::$strings["Unstable"] = "בלתי יציב"; -App::$strings["Divorced"] = "גירושין"; -App::$strings["Imaginarily divorced"] = "גירושין דמיוניים"; -App::$strings["Widowed"] = "אלמן/ה"; -App::$strings["Uncertain"] = ""; -App::$strings["It's complicated"] = "זה מורכב"; -App::$strings["Don't care"] = "לא משנה"; -App::$strings["Ask me"] = "תשאלו אותי"; -App::$strings["Unable to obtain identity information from database"] = ""; -App::$strings["Empty name"] = "שם ריק"; -App::$strings["Name too long"] = "שם ארוך מדי"; -App::$strings["No account identifier"] = "אין מזהה חשבון"; -App::$strings["Nickname is required."] = "נדרש שם כינוי."; -App::$strings["Reserved nickname. Please choose another."] = ""; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = "פרופיל שגרתי"; -App::$strings["Requested channel is not available."] = "ערוץ מבוקש אינו זמין."; -App::$strings["Create New Profile"] = "צור פרופיל חדש"; -App::$strings["Visible to everybody"] = "נראה לכל אחד"; -App::$strings["Gender:"] = "מין:"; -App::$strings["Status:"] = "מצב:"; -App::$strings["Homepage:"] = "עמוד בית:"; -App::$strings["Online Now"] = "מקוון כעת"; -App::$strings["Like this channel"] = ""; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "יום הולדת:"; -App::$strings["for %1\$d %2\$s"] = ""; -App::$strings["Sexual Preference:"] = "העדפה מינית:"; -App::$strings["Tags:"] = "תגיות:"; -App::$strings["Political Views:"] = "השקפות פוליטיות:"; -App::$strings["Religion:"] = "דת:"; -App::$strings["Hobbies/Interests:"] = "תחביבים/עניין:"; -App::$strings["Likes:"] = "אוהב:"; -App::$strings["Dislikes:"] = "שונא:"; -App::$strings["Contact information and Social Networks:"] = ""; -App::$strings["My other channels:"] = "הערוצים האחרים שלי:"; -App::$strings["Musical interests:"] = ""; -App::$strings["Books, literature:"] = "ספרים, ספרות:"; -App::$strings["Television:"] = "טלוויזיה:"; -App::$strings["Film/dance/culture/entertainment:"] = ""; -App::$strings["Love/Romance:"] = "אהבה/רומנטיקה:"; -App::$strings["Work/employment:"] = "עבודה/תעסוקה:"; -App::$strings["School/education:"] = "בי״ס/חינוך:"; -App::$strings["Like this thing"] = ""; -App::$strings["Visible to your default audience"] = "נראה לקהל השגרתי שלך"; -App::$strings["Only me"] = "רק אני"; -App::$strings["Public"] = "ציבורי"; -App::$strings["Anybody in the \$Projectname network"] = ""; -App::$strings["Any account on %s"] = "כל חחשבון אצל %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"] = "כתובת דוא״ל לא תקינה"; -App::$strings["Your email domain is not among those allowed on this site"] = ""; -App::$strings["Your email address is already registered at this site."] = ""; -App::$strings["An invitation is required."] = "נדרשת הזמנה."; -App::$strings["Invitation could not be verified."] = "אימות הזמנה לא התאפשר."; -App::$strings["Please enter the required information."] = "אנא הזן את המידע הנחוץ."; -App::$strings["Failed to store account information."] = "נכשל לאחסן מידע חשבון."; -App::$strings["Registration confirmation for %s"] = "אימות רישום עבור %s"; -App::$strings["Registration request at %s"] = "בקשת רישום אצל %s"; -App::$strings["Administrator"] = "מנהל"; -App::$strings["your registration password"] = "סיסמת רישום שלך"; -App::$strings["Registration details for %s"] = "פרטי רישום עבור %s"; -App::$strings["Account approved."] = "חשבון אושר."; -App::$strings["Registration revoked for %s"] = "רישום בוטל עבור %s"; -App::$strings["Account verified. Please login."] = "חשבון אומת. אנא התחבר."; -App::$strings["Click here to upgrade."] = "לחץ כאן כדי לשדרג."; -App::$strings["This action exceeds the limits set by your subscription plan."] = ""; -App::$strings["This action is not available under your subscription plan."] = ""; -App::$strings["Item was not found."] = "פריט לא נמצא."; -App::$strings["No source file."] = "אין קובץ מקור."; -App::$strings["Cannot locate file to replace"] = ""; -App::$strings["Cannot locate file to revise/update"] = ""; -App::$strings["File exceeds size limit of %d"] = ""; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; -App::$strings["File upload failed. Possible system limit or action terminated."] = ""; -App::$strings["Stored file could not be verified. Upload failed."] = ""; -App::$strings["Path not available."] = "נתיב לא זמין."; -App::$strings["Empty pathname"] = "שם נתיב ריק"; -App::$strings["duplicate filename or path"] = "שם קובץ או נתיב כפול"; -App::$strings["Path not found."] = "נתיב לא נמצא."; -App::$strings["mkdir failed."] = "mkdir נכשל."; -App::$strings["database storage failed."] = "אחסון מסד נתונים נכשל."; -App::$strings["Empty path"] = "נתיב ריק"; -App::$strings["General Features"] = "תכונות כלליות"; -App::$strings["Content Expiration"] = "פקיעת תוכן"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; -App::$strings["Multiple Profiles"] = "פרופילים מרובים"; -App::$strings["Ability to create multiple profiles"] = ""; -App::$strings["Advanced Profiles"] = "פרופיל מתקדמים"; -App::$strings["Additional profile sections and selections"] = ""; -App::$strings["Profile Import/Export"] = "יבוא/יצוא פרופיל"; -App::$strings["Save and load profile details across sites/channels"] = ""; -App::$strings["Web Pages"] = "עמודי רשת"; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Hide Rating"] = "הסתר דירוג"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = ""; -App::$strings["Private Notes"] = "פתקים פרטיים"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "מאפשר כלי לאחסון פתקים ותזכורות (הערה: לא מוצפן)"; -App::$strings["Navigation Channel Select"] = ""; -App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; -App::$strings["Photo Location"] = "מיקום תצלום"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; -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"] = "מצב מומחה"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; -App::$strings["Premium Channel"] = "ערוץ פרמיה"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; -App::$strings["Post Composition Features"] = ""; -App::$strings["Large Photos"] = "תצלומים גדולים"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = ""; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["Even More Encryption"] = "אפילו עוד הצפנה"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; -App::$strings["Enable Voting Tools"] = "אפשר כלי הצבעה"; -App::$strings["Provide a class of post which others can vote on"] = ""; -App::$strings["Delayed Posting"] = ""; -App::$strings["Allow posts to be published at a later date"] = ""; -App::$strings["Suppress Duplicate Posts/Comments"] = ""; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = ""; -App::$strings["Network and Stream Filtering"] = "סינון רשת וזרם"; -App::$strings["Search by Date"] = "חפש לפי תאריך"; -App::$strings["Ability to select posts by date ranges"] = "מסנן אוספים"; -App::$strings["Privacy Groups"] = "קבוצת פרטיות"; -App::$strings["Enable management and selection of privacy groups"] = ""; -App::$strings["Saved Searches"] = "חיפושים שמורים"; -App::$strings["Save search terms for re-use"] = ""; -App::$strings["Network Personal Tab"] = ""; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; -App::$strings["Network New Tab"] = ""; -App::$strings["Enable tab to display all new Network activity"] = ""; -App::$strings["Affinity Tool"] = "כלי קירבה"; -App::$strings["Filter stream activity by depth of relationships"] = ""; -App::$strings["Connection Filtering"] = "סינון חיבור"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = ""; -App::$strings["Show channel suggestions"] = "הצג הצעות ערוץ"; -App::$strings["Post/Comment Tools"] = ""; -App::$strings["Community Tagging"] = ""; -App::$strings["Ability to tag existing posts"] = ""; -App::$strings["Post Categories"] = ""; -App::$strings["Add categories to your posts"] = ""; -App::$strings["Emoji Reactions"] = ""; -App::$strings["Add emoji reaction ability to posts"] = ""; -App::$strings["Ability to file posts under folders"] = ""; -App::$strings["Dislike Posts"] = ""; -App::$strings["Ability to dislike posts/comments"] = ""; -App::$strings["Star Posts"] = ""; -App::$strings["Ability to mark special posts with a star indicator"] = ""; -App::$strings["Tag Cloud"] = "ענן תגיות"; -App::$strings["Provide a personal tag cloud on your channel page"] = ""; -App::$strings["Embedded content"] = "תוכן מוטמע"; -App::$strings["Embedding disabled"] = "הטמעה הינה מנוטרלת"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -App::$strings["Channel clone failed. Import failed."] = ""; -App::$strings["New window"] = "חלון חדש"; -App::$strings["Open the selected location in a different window or browser tab"] = "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים"; -App::$strings["User '%s' deleted"] = "משתמש '%s' נמחק"; -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"] = "הצג"; -App::$strings["Don't show"] = "אל תציג"; -App::$strings["Other networks and post services"] = "שירותי רשת ופרסום אחרים"; -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."] = "מנותק."; -App::$strings["Failed authentication"] = "אימות נכשל"; -App::$strings["Birthday"] = "יום הולדת"; -App::$strings["Age: "] = "גיל: "; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD או MM-DD"; -App::$strings["never"] = ""; -App::$strings["less than a second ago"] = "לפניי פחות משניה"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "לפני %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "שנה", - 1 => "שנים", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "חודש", - 1 => "חודשים", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "שבוע", - 1 => "שבועות", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "יום", - 1 => "ימים", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "שעה", - 1 => "שעות", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "דקה", - 1 => "דקות", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "שניה", - 1 => "שניות", -); -App::$strings["%1\$s's birthday"] = ""; -App::$strings["Happy Birthday %1\$s"] = "יום הולדת שמח %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."] = ""; -App::$strings["Add new connections to this privacy group"] = "הוסף חיבורים חדשים לקבוצת פרטיות זו"; -App::$strings["edit"] = "ערוך"; -App::$strings["Edit group"] = "ערוך קבוצה"; -App::$strings["Add privacy group"] = "הוסף קבוצת פרטיות"; -App::$strings["Channels not in any privacy group"] = ""; -App::$strings["add"] = "להוסיף"; -App::$strings["Delete this item?"] = "למחוק את פריט זה?"; -App::$strings["[-] show less"] = "[-] הצג פחות"; -App::$strings["[+] expand"] = "[+] הרחב"; -App::$strings["[-] collapse"] = "[-] צמצם"; -App::$strings["Password too short"] = "סיסמה קצרה מדי"; -App::$strings["Passwords do not match"] = "סיסמאות לא תואמות"; -App::$strings["everybody"] = "כולם"; -App::$strings["Secret Passphrase"] = "מימרת סיסמה סודית"; -App::$strings["Passphrase hint"] = ""; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; -App::$strings["close all"] = "סגור הכל"; -App::$strings["Nothing new here"] = "אין דבר חדש כאן"; -App::$strings["Rate This Channel (this is public)"] = ""; -App::$strings["Describe (optional)"] = "תאר (רשות)"; -App::$strings["Please enter a link URL"] = ""; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "לפני"; -App::$strings["from now"] = "מעכשיו"; -App::$strings["less than a minute"] = "פחות מדקה"; -App::$strings["about a minute"] = "דקה לערך"; -App::$strings["%d minutes"] = "%d דקות"; -App::$strings["about an hour"] = "שעה לערך"; -App::$strings["about %d hours"] = " %d שעות לערך"; -App::$strings["a day"] = "יום"; -App::$strings["%d days"] = "%d ימים"; -App::$strings["about a month"] = "חודש לערך"; -App::$strings["%d months"] = "%d חודשים"; -App::$strings["about a year"] = "שנה לערך"; -App::$strings["%d years"] = "%d שנים"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "מאי"; -App::$strings["Jan"] = "ינו׳"; -App::$strings["Feb"] = "פבר׳"; -App::$strings["Mar"] = "מרץ"; -App::$strings["Apr"] = "אפר׳"; -App::$strings["__ctx:short__ May"] = "מאי"; -App::$strings["Jun"] = "יונ׳"; -App::$strings["Jul"] = "יול׳"; -App::$strings["Aug"] = "אוג׳"; -App::$strings["Sep"] = "ספט׳"; -App::$strings["Oct"] = "אוק׳"; -App::$strings["Nov"] = "נוב׳"; -App::$strings["Dec"] = "דצמ׳"; -App::$strings["Sun"] = "א׳"; -App::$strings["Mon"] = "ב׳"; -App::$strings["Tue"] = "ג׳"; -App::$strings["Wed"] = "ד׳"; -App::$strings["Thu"] = "ה׳"; -App::$strings["Fri"] = "ו׳"; -App::$strings["Sat"] = "ש׳"; -App::$strings["__ctx:calendar__ today"] = "היום"; -App::$strings["__ctx:calendar__ month"] = "חודש"; -App::$strings["__ctx:calendar__ week"] = "שבוע"; -App::$strings["__ctx:calendar__ day"] = "יום"; -App::$strings["__ctx:calendar__ All day"] = "כל היום"; -App::$strings["view full size"] = "צפה בגודל מלא"; -App::$strings["No Subject"] = "אין נושא"; -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"] = "פייסבוק"; -App::$strings["Zot"] = ""; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["(Unknown)"] = "(לא ידוע)"; -App::$strings["Visible to anybody on the internet."] = "נראה לכל אחד באינטרנט."; -App::$strings["Visible to you only."] = "נראה לך בלבד."; -App::$strings["Visible to anybody in this network."] = "נראה לכל אחד ברשת זו."; -App::$strings["Visible to anybody authenticated."] = "נראה לכל מי שהוא מאומת."; -App::$strings["Visible to anybody on %s."] = "נראה לכל אחד אצל %s."; -App::$strings["Visible to all connections."] = "נראה לכל החיבורים."; -App::$strings["Visible to approved connections."] = "נראה לחיבורים מאושרים."; -App::$strings["Visible to specific connections."] = "נראה לחיבורים מסוימים."; -App::$strings["Privacy group is empty."] = "קבוצת פרטיות הינה ריקה"; -App::$strings["Privacy group: %s"] = "קבוצת פרטיות: %s"; -App::$strings["Connection not found."] = "חיבור לא נמצא."; -App::$strings["profile photo"] = "תצלום פרופיל"; -App::$strings["New Page"] = "עמוד חדש"; -App::$strings["Title"] = "כותרת"; -App::$strings["System"] = "מערכת"; -App::$strings["New App"] = "אפליקציה חדשה"; -App::$strings["Suggestions"] = "הצעות"; -App::$strings["See more..."] = "צפה בעוד..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; -App::$strings["Add New Connection"] = "הוסף חיבור חדש"; -App::$strings["Enter channel address"] = "הזן כתובת ערוץ"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "דוגמאות: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "תזכירים"; -App::$strings["Remove term"] = "הסר פריט"; -App::$strings["Archives"] = "ארכיונים"; -App::$strings["Refresh"] = "רענן"; -App::$strings["Account settings"] = "הגדרות חשבון"; -App::$strings["Channel settings"] = "הגדרות ערוץ"; -App::$strings["Additional features"] = "תכונות נוספות"; -App::$strings["Feature/Addon settings"] = ""; -App::$strings["Display settings"] = "הגדרות תצוגה"; -App::$strings["Manage locations"] = "נהל מיקומים"; -App::$strings["Export channel"] = "יצא ערוץ"; -App::$strings["Connected apps"] = "אפליקציות מחוברות"; -App::$strings["Premium Channel Settings"] = "הגדרות ערוץ פרמיה"; -App::$strings["Private Mail Menu"] = "תפריט דואר פרטי"; -App::$strings["Combined View"] = "תצוגה משולבת"; -App::$strings["Conversations"] = "דיונים"; -App::$strings["Received Messages"] = "הודעות שנתקבלו"; -App::$strings["Sent Messages"] = "הודעות שנשלחו"; -App::$strings["No messages."] = "אין הודעות."; -App::$strings["Delete conversation"] = "מחק דיון"; -App::$strings["Events Menu"] = "תפריט אירועים"; -App::$strings["Day View"] = "תצוגת יום"; -App::$strings["Week View"] = "תצוגת שבוע"; -App::$strings["Month View"] = "תצוגת חודש"; -App::$strings["Events Tools"] = "כלי אירוע"; -App::$strings["Export Calendar"] = "יצא לוח שנה"; -App::$strings["Import Calendar"] = "יבא לוח שנה"; -App::$strings["Overview"] = "סקירה"; -App::$strings["Chat Members"] = "חברי שיחה"; -App::$strings["Wiki List"] = "רשימת ויקי"; -App::$strings["Wiki Pages"] = "עמודי ויקי"; -App::$strings["Bookmarked Chatrooms"] = "חדרי שיחה מסומנים"; -App::$strings["Suggested Chatrooms"] = "חדרי שיחה מוצעים"; -App::$strings["photo/image"] = "תצלום/תמונה"; -App::$strings["Click to show more"] = "לחץ כדי להציג עוד"; -App::$strings["Rating Tools"] = "כלי דירוג"; -App::$strings["Rate Me"] = "דרג אותי"; -App::$strings["View Ratings"] = "צפה בדירוגים"; -App::$strings["Forums"] = "פורומים"; -App::$strings["Tasks"] = "משימות"; -App::$strings["Documentation"] = "תיעוד"; -App::$strings["Project/Site Information"] = "מידע פרויקט/אתר"; -App::$strings["For Members"] = "לחברים"; -App::$strings["For Administrators"] = "למנהלים"; -App::$strings["For Developers"] = "למפתחים"; -App::$strings["Member registrations waiting for confirmation"] = "רישומי חברות אשר ממתינים לאישור"; -App::$strings["Inspect queue"] = ""; -App::$strings["DB updates"] = "עדכוני מסד נתונים"; -App::$strings["Plugin Features"] = "תכונות תוסף"; -App::$strings["Can view my normal stream and posts"] = ""; -App::$strings["Can view my default channel profile"] = ""; -App::$strings["Can view my connections"] = ""; -App::$strings["Can view my file storage and photos"] = ""; -App::$strings["Can view my webpages"] = ""; -App::$strings["Can send me their channel stream and posts"] = ""; -App::$strings["Can post on my channel page (\"wall\")"] = ""; -App::$strings["Can comment on or like my posts"] = ""; -App::$strings["Can send me private mail messages"] = ""; -App::$strings["Can like/dislike stuff"] = ""; -App::$strings["Profiles and things other than posts/comments"] = ""; -App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; -App::$strings["Advanced - useful for creating group forum channels"] = ""; -App::$strings["Can chat with me (when available)"] = "מסוגל לשוחח עמי (כאשר זמין)"; -App::$strings["Can write to my file storage and photos"] = "מסוגל לכתוב אל האחסון והתצלומים שלי"; -App::$strings["Can edit my webpages"] = "מסוגל לערוך עמודי רשת"; -App::$strings["Can source my public posts in derived channels"] = ""; -App::$strings["Somewhat advanced - very useful in open communities"] = ""; -App::$strings["Can administer my channel resources"] = ""; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -App::$strings["Social Networking"] = "רשת חברתית"; -App::$strings["Social - Mostly Public"] = "חברתי - ציבורי בעיקר"; -App::$strings["Social - Restricted"] = "חברתי - מוגבל"; -App::$strings["Social - Private"] = "חברתי - פרטי"; -App::$strings["Community Forum"] = "פורום קהילה"; -App::$strings["Forum - Mostly Public"] = "פורום - ציבורי בעיקר"; -App::$strings["Forum - Restricted"] = "פורום - מוגבל"; -App::$strings["Forum - Private"] = "פורום - פרטי"; -App::$strings["Feed Republish"] = ""; -App::$strings["Feed - Mostly Public"] = "ערוץ - ציבורי בעיקר"; -App::$strings["Feed - Restricted"] = "ערוץ - מוגבל"; -App::$strings["Special Purpose"] = "מטרה מיוחדת"; -App::$strings["Special - Celebrity/Soapbox"] = ""; -App::$strings["Special - Group Repository"] = ""; -App::$strings["Custom/Expert Mode"] = ""; -App::$strings[" and "] = " וגם "; -App::$strings["public profile"] = "פרופיל ציבורי"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -App::$strings["Visit %1\$s's %2\$s"] = ""; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -App::$strings["Attachments:"] = "תצריפים:"; -App::$strings["\$Projectname event notification:"] = ""; -App::$strings["Public Timeline"] = "ציר זמן ציבורי"; -App::$strings["Focus (Hubzilla default)"] = ""; -App::$strings["Theme settings"] = "הגדרות ערכת נושא"; -App::$strings["Select scheme"] = ""; -App::$strings["Narrow navbar"] = ""; -App::$strings["Navigation bar background color"] = ""; -App::$strings["Navigation bar gradient top color"] = ""; -App::$strings["Navigation bar gradient bottom color"] = ""; -App::$strings["Navigation active button gradient top color"] = ""; -App::$strings["Navigation active button gradient bottom color"] = ""; -App::$strings["Navigation bar border color "] = ""; -App::$strings["Navigation bar icon color "] = ""; -App::$strings["Navigation bar active icon color "] = ""; -App::$strings["link color"] = "צבע קישור"; -App::$strings["Set font-color for banner"] = ""; -App::$strings["Set the background color"] = ""; -App::$strings["Set the background image"] = ""; -App::$strings["Set the background color of items"] = ""; -App::$strings["Set the background color of comments"] = ""; -App::$strings["Set the border color of comments"] = ""; -App::$strings["Set the indent for comments"] = ""; -App::$strings["Set the basic color for item icons"] = ""; -App::$strings["Set the hover color for item icons"] = ""; -App::$strings["Set font-size for the entire application"] = ""; -App::$strings["Example: 14px"] = "דוגמא: 14px"; -App::$strings["Set font-size for posts and comments"] = ""; -App::$strings["Set font-color for posts and comments"] = ""; -App::$strings["Set radius of corners"] = ""; -App::$strings["Set shadow depth of photos"] = ""; -App::$strings["Set maximum width of content region in pixel"] = ""; -App::$strings["Leave empty for default width"] = "השאר ריק לצורך רוחב שגרתי"; -App::$strings["Left align page content"] = ""; -App::$strings["Set minimum opacity of nav bar - to hide it"] = ""; -App::$strings["Set size of conversation author photo"] = ""; -App::$strings["Set size of followup author photos"] = ""; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Update %s failed. See error logs."] = ""; -App::$strings["Update Error at %s"] = ""; -App::$strings["Create an account to access services and applications within the Hubzilla"] = ""; -App::$strings["Password"] = "סיסמה"; -App::$strings["Remember me"] = "זכור אותי"; -App::$strings["Forgot your password?"] = "שכחת את הסיסמה שלך?"; -App::$strings["toggle mobile"] = ""; -App::$strings["Website SSL certificate is not valid. Please correct."] = "תעודת SSL אתר רשת אינה תקינה. אנא תקן."; -App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] שגיאת SSL אתר רשת עבור %s"; -App::$strings["Cron/Scheduled tasks not running."] = "משימות Cron/מתוזמנות לא רצות."; -App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] משימות Cron לא רצות על %s"; diff --git a/view/he/messages.po b/view/he/messages.po index 5dd1098fa..991b7f64f 100644 --- a/view/he/messages.po +++ b/view/he/messages.po @@ -1,18 +1,17 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project +# Hubzilla Project +# Copyright (C) 2012-2014 the Hubzilla Project # This file is distributed under the same license as the Red package. # # Translators: -# Jacob M , 2016 # GenghisKhan , 2015 # GenghisKhan , 2015-2016 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-20 00:01-0700\n" -"PO-Revision-Date: 2016-05-21 09:52+0000\n" -"Last-Translator: Jacob M \n" +"POT-Creation-Date: 2016-06-17 00:02-0700\n" +"PO-Revision-Date: 2016-06-18 11:18+0000\n" +"Last-Translator: GenghisKhan \n" "Language-Team: Hebrew (http://www.transifex.com/Friendica/red-matrix/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,1018 +19,7178 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "" - -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "" - -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "יבוא הושלם." - -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "הורה" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2561 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2621 msgid "Collection" msgstr "אוסף" -#: ../../include/RedDAV/RedBrowser.php:134 +#: ../../Zotlabs/Storage/Browser.php:134 msgid "Principal" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:137 +#: ../../Zotlabs/Storage/Browser.php:137 msgid "Addressbook" msgstr "פנקס כתובות" -#: ../../include/RedDAV/RedBrowser.php:140 +#: ../../Zotlabs/Storage/Browser.php:140 msgid "Calendar" msgstr "לוח שנה" -#: ../../include/RedDAV/RedBrowser.php:143 +#: ../../Zotlabs/Storage/Browser.php:143 msgid "Schedule Inbox" -msgstr "" +msgstr "תיבת דואר נכנס מתוזמנת" -#: ../../include/RedDAV/RedBrowser.php:146 +#: ../../Zotlabs/Storage/Browser.php:146 msgid "Schedule Outbox" -msgstr "" +msgstr "תיבת דואר יוצא מתוזמנת" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1030 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 +#: ../../Zotlabs/Module/Photos.php:1243 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:489 +#: ../../Zotlabs/Lib/Apps.php:564 ../../include/conversation.php:1035 +#: ../../include/widgets.php:1578 msgid "Unknown" -msgstr "" +msgstr "לא ידוע" -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1620 -#: ../../mod/fbrowser.php:114 +#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/conversation.php:1654 +#: ../../include/nav.php:93 msgid "Files" msgstr "קבצים" -#: ../../include/RedDAV/RedBrowser.php:253 +#: ../../Zotlabs/Storage/Browser.php:227 msgid "Total" msgstr "סה״כ" -#: ../../include/RedDAV/RedBrowser.php:255 +#: ../../Zotlabs/Storage/Browser.php:229 msgid "Shared" msgstr "" -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152 -#: ../../mod/layouts.php:175 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/webpages.php:180 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:194 msgid "Create" msgstr "צור" -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:718 -#: ../../mod/photos.php:1248 ../../mod/profile_photo.php:362 +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Module/Cover_photo.php:357 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1591 msgid "Upload" msgstr "העלאה" -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "שם" -#: ../../include/RedDAV/RedBrowser.php:262 +#: ../../Zotlabs/Storage/Browser.php:236 msgid "Type" msgstr "טיפוס" -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 +#: ../../Zotlabs/Storage/Browser.php:237 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 msgid "Size" msgstr "גודל" -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 +#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Module/Sharedwithme.php:102 msgid "Last Modified" msgstr "שונה לאחרונה" -#: ../../include/RedDAV/RedBrowser.php:266 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:108 -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:242 -#: ../../mod/connections.php:255 ../../mod/connections.php:274 -#: ../../mod/editblock.php:134 ../../mod/editlayout.php:133 -#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:178 -#: ../../mod/settings.php:650 ../../mod/layouts.php:183 ../../mod/menu.php:106 -#: ../../mod/thing.php:255 ../../mod/webpages.php:181 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Connections.php:290 +#: ../../Zotlabs/Module/Connections.php:310 +#: ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:146 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:195 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../Zotlabs/Lib/Apps.php:340 +#: ../../include/channel.php:918 ../../include/channel.php:922 +#: ../../include/menu.php:108 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 msgid "Edit" msgstr "ערוך" -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:671 -#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/photos.php:1062 -#: ../../mod/blocks.php:155 ../../mod/connedit.php:563 -#: ../../mod/editblock.php:180 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:225 ../../mod/group.php:176 -#: ../../mod/settings.php:651 ../../mod/thing.php:256 -#: ../../mod/webpages.php:183 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:578 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../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/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:197 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../Zotlabs/Lib/Apps.php:341 ../../include/conversation.php:660 msgid "Delete" msgstr "מחק" -#: ../../include/RedDAV/RedBrowser.php:302 +#: ../../Zotlabs/Storage/Browser.php:285 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "הינך משתמש ב- %1$s מתוך שטח אחסון קבצים זמין." + +#: ../../Zotlabs/Storage/Browser.php:290 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "הינך משתמש ב- %1$s מתוך %2$s שטח אחסון קבצים זמין. (%3$s%)" + +#: ../../Zotlabs/Storage/Browser.php:302 +msgid "WARNING:" +msgstr "אזהרה:" + +#: ../../Zotlabs/Storage/Browser.php:305 msgid "Create new folder" msgstr "צור תיקייה חדשה" -#: ../../include/RedDAV/RedBrowser.php:304 +#: ../../Zotlabs/Storage/Browser.php:307 msgid "Upload file" msgstr "העלה קובץ" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "לא ניתן לאתר מידע DNS עבור שרת מסד נתונים '%s'" +#: ../../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:385 +msgid "Permission denied" +msgstr "הרשאה נדחתה" -#: ../../include/photo/photo_driver.php:703 ../../mod/photos.php:92 -#: ../../mod/photos.php:637 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -msgid "Profile Photos" -msgstr "תצלומי פרופיל" +#: ../../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/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:211 +#: ../../Zotlabs/Module/Item.php:219 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../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:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:25 +#: ../../Zotlabs/Module/Viewconnections.php:30 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 +#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/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:3450 +msgid "Permission denied." +msgstr "הרשאה נדחתה." -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1550 -msgid "Logout" -msgstr "יציאה" +#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +msgid "Not Found" +msgstr "לא נמצא" -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "סיים את סשן זה" +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:118 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:94 +msgid "Page not found." +msgstr "עמוד לא נמצא." -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "בית" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" +#: ../../Zotlabs/Zot/Auth.php:138 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." msgstr "" -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 +#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 +#: ../../Zotlabs/Module/Openid.php:183 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "ברוך בואך %s. אימות מרוחק הצליח." + +#: ../../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:818 +msgid "Requested profile is not available." +msgstr "פרופיל מבוקש לא זמין." + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2266 +msgid "Blocks" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:206 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "נוצר" + +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:207 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "נערך" + +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:196 +#: ../../include/conversation.php:1219 +msgid "Share" +msgstr "שתף" + +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:201 +#: ../../include/page_widgets.php:42 +msgid "View" +msgstr "תצוגה" + +#: ../../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 "ערוץ לא נמצא." + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "הרשאה נדחתה." + +#: ../../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 "קישור למקור" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Edit Event" +msgstr "ערוך אירוע" + +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 +msgid "Create Event" +msgstr "צור אירוע" + +#: ../../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 "קודם" + +#: ../../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 "הבא" + +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:755 +msgid "Export" +msgstr "יצא" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 +#: ../../include/widgets.php:756 +msgid "Import" +msgstr "יבא" + +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 +#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Connedit.php:737 ../../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/js_strings.php:22 +#: ../../include/widgets.php:757 ../../include/widgets.php:769 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "שלח" + +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 +msgid "Today" +msgstr "היום" + +#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 +#: ../../Zotlabs/Module/Wiki.php:20 +msgid "You must be logged in to see this page." +msgstr "עליך להתחבר כדי לראות את עמוד זה." + +#: ../../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 "" + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "חדר לא נמצא" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "עזוב חדר" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "מחק חדר" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "אני נעדר/ת ברגע זה" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "אני במצב מקוון" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "סמן את חדר זה" + +#: ../../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 "אנא הזן URL קישור:" + +#: ../../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/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1146 +msgid "Insert web link" +msgstr "הכנס קישור רשת" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "תכונה מנוטרלת." + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "חדר שיחה חדש" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "שם חדר שיחה" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "תפוגה של שיחות (דקות)" + +#: ../../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 "הרשאות" + +#: ../../Zotlabs/Module/Chat.php:246 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "חדרי שיחה של %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 "נעדר" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "מקוון" + +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "פריט שגוי." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "סימנייה התווספה" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "הסימניות שלי" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "סימניות החיבורים שלי" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "המשך" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "הבניית ערוץ פרמיה" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "אפשר הגבלות חיבור ערוץ פרמיה" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "ערוץ מוגבל או פרמיה" + +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "חיבור התעדכן." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "כעת מחובר אל" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:660 +#: ../../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 +msgid "No" +msgstr "לא" + +#: ../../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 +msgid "Yes" +msgstr "כן" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:431 +msgid "Refresh failed - channel is currently unavailable." +msgstr "רענון נכשל - ערוץ אינו זמין כעת." + +#: ../../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:509 +msgid "Connection has been removed." +msgstr "חיבור הוסר." + +#: ../../Zotlabs/Module/Connedit.php:525 ../../Zotlabs/Lib/Apps.php:220 +#: ../../include/conversation.php:957 ../../include/nav.php:86 msgid "View Profile" -msgstr "" +msgstr "הצג פרופיל" -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "" - -#: ../../include/nav.php:95 ../../include/identity.php:979 -msgid "Edit Profile" -msgstr "ערוך פרופיל" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "ערוך את הפרופיל שלך" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1611 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "תצלומים" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "התצלומים שלך" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "הקבצים שלך" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "שיחה" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "החדרי שיחה שלך" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1646 -msgid "Bookmarks" -msgstr "סימניות" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "הסימניות שלך" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1656 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "עמודי רשת" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "העמודי רשת שלך" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1551 -msgid "Login" -msgstr "כניסה" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "התחברות" - -#: ../../include/nav.php:134 +#: ../../Zotlabs/Module/Connedit.php:528 #, php-format -msgid "%s - click to logout" -msgstr "%s - לחץ כדי להתנתק" +msgid "View %s's profile" +msgstr "צפה בפרופיל של %s" -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "אימות מרוחק" +#: ../../Zotlabs/Module/Connedit.php:532 +msgid "Refresh Permissions" +msgstr "רענן הרשאות" -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" +#: ../../Zotlabs/Module/Connedit.php:535 +msgid "Fetch updated permissions" +msgstr "תפוס הרשאות מעודכנות" + +#: ../../Zotlabs/Module/Connedit.php:539 +msgid "Recent Activity" +msgstr "פעילות אחרונה" + +#: ../../Zotlabs/Module/Connedit.php:542 +msgid "View recent posts and comments" +msgstr "צפה בפוסטים ותגובות אחרונות" + +#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "בטל חסימה" + +#: ../../Zotlabs/Module/Connedit.php:546 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "חסום" + +#: ../../Zotlabs/Module/Connedit.php:549 +msgid "Block (or Unblock) all communications with this connection" +msgstr "חסום (או בטל חסימה) את כל ההתקשרויות עם חיבור זה" + +#: ../../Zotlabs/Module/Connedit.php:550 +msgid "This connection is blocked!" +msgstr "חיבור זה הינו חסום!" + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Unignore" +msgstr "בטל התעלמות" + +#: ../../Zotlabs/Module/Connedit.php:554 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "התעלמות" + +#: ../../Zotlabs/Module/Connedit.php:557 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "התעלם (או בטל התעלמות) מכל ההתקשרויות שפונות כלפי פנים (inbound) מתוך חיבור זה" + +#: ../../Zotlabs/Module/Connedit.php:558 +msgid "This connection is ignored!" +msgstr "חיבור זה הינו מנוכר!" + +#: ../../Zotlabs/Module/Connedit.php:562 +msgid "Unarchive" +msgstr "בטל גניזה" + +#: ../../Zotlabs/Module/Connedit.php:562 +msgid "Archive" +msgstr "גנוז" + +#: ../../Zotlabs/Module/Connedit.php:565 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "גנוז את (או בטל את גניזת) חיבור זה - סמן את עמוד זה כמת אך השאר תוכן" + +#: ../../Zotlabs/Module/Connedit.php:566 +msgid "This connection is archived!" +msgstr "חיבור זה הינו גנוז!" + +#: ../../Zotlabs/Module/Connedit.php:570 +msgid "Unhide" +msgstr "חשוף" + +#: ../../Zotlabs/Module/Connedit.php:570 +msgid "Hide" +msgstr "הסתר" + +#: ../../Zotlabs/Module/Connedit.php:573 +msgid "Hide or Unhide this connection from your other connections" +msgstr "הסתר או חשוף את חיבור זה מן החיבורים האחרים שלך" + +#: ../../Zotlabs/Module/Connedit.php:574 +msgid "This connection is hidden!" +msgstr "חיבור זה הינו מוסתר!" + +#: ../../Zotlabs/Module/Connedit.php:581 +msgid "Delete this connection" +msgstr "מחק את חיבור זה" + +#: ../../Zotlabs/Module/Connedit.php:596 ../../include/widgets.php:493 +msgid "Me" +msgstr "אני" + +#: ../../Zotlabs/Module/Connedit.php:597 ../../include/widgets.php:494 +msgid "Family" +msgstr "משפחה" + +#: ../../Zotlabs/Module/Connedit.php:598 ../../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/selectors.php:123 ../../include/channel.php:389 +#: ../../include/channel.php:390 ../../include/channel.php:397 +#: ../../include/widgets.php:495 +msgid "Friends" +msgstr "חברים" + +#: ../../Zotlabs/Module/Connedit.php:599 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "מכרים" + +#: ../../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:660 +msgid "Approve this connection" +msgstr "אשר את חיבור זה" + +#: ../../Zotlabs/Module/Connedit.php:660 +msgid "Accept connection to allow communication" +msgstr "אשר חיבור כדי להתיר תקשורת" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Set Affinity" +msgstr "הגדר קירבה" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Set Profile" +msgstr "הגדר פרופיל" + +#: ../../Zotlabs/Module/Connedit.php:671 +msgid "Set Affinity & Profile" +msgstr "הגדר קירבה וגם פרופיל" + +#: ../../Zotlabs/Module/Connedit.php:704 +msgid "none" msgstr "" -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "עמוד בית" +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/widgets.php:614 +msgid "Connection Default Permissions" +msgstr "הרשאות שגרתיות של חיבור" -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1527 -msgid "Register" -msgstr "הרשמה" +#: ../../Zotlabs/Module/Connedit.php:708 ../../include/items.php:3937 +#, php-format +msgid "Connection: %s" +msgstr "חיבור: %s" -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "צור חשבון" +#: ../../Zotlabs/Module/Connedit.php:709 +msgid "Apply these permissions automatically" +msgstr "החל את הרשאות אלה אוטומטית" -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "עזרה" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "עזרה ותיעוד" - -#: ../../include/nav.php:163 ../../include/widgets.php:91 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "אפליקציות" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" +#: ../../Zotlabs/Module/Connedit.php:709 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../include/nav.php:165 ../../include/text.php:914 -#: ../../include/text.php:926 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "חיפוש" +#: ../../Zotlabs/Module/Connedit.php:711 +msgid "This connection's primary address is" +msgstr "הכתובת העיקרית של חיבור זה היא" -#: ../../include/nav.php:165 -msgid "Search site content" +#: ../../Zotlabs/Module/Connedit.php:712 +msgid "Available locations:" +msgstr "מיקומים זמינים:" + +#: ../../Zotlabs/Module/Connedit.php:716 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "ספרייה" +#: ../../Zotlabs/Module/Connedit.php:717 +msgid "Connection Tools" +msgstr "כלי חיבור" -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "ערוץ ספרייה" +#: ../../Zotlabs/Module/Connedit.php:719 +msgid "Slide to adjust your degree of friendship" +msgstr "" -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "מטריצה" +#: ../../Zotlabs/Module/Connedit.php:720 ../../Zotlabs/Module/Rate.php:159 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "דירוג" -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "המטריצה שלך" +#: ../../Zotlabs/Module/Connedit.php:721 +msgid "Slide to adjust your rating" +msgstr "החלק כדי להתאים את הדירוג שלך" -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "סמן את כל התראות המטריצה כנקראו" +#: ../../Zotlabs/Module/Connedit.php:722 ../../Zotlabs/Module/Connedit.php:727 +msgid "Optionally explain your rating" +msgstr "הסבר לפי הצורך את הדירוג שלך" -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "ערוץ בית" +#: ../../Zotlabs/Module/Connedit.php:724 +msgid "Custom Filter" +msgstr "מסנן מותאם" -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "ערוץ בית" +#: ../../Zotlabs/Module/Connedit.php:725 +msgid "Only import posts with this text" +msgstr "יבא רק פוסטים עם טקסט זה" -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "סמן את כל התראות הערוץ כנקראו" +#: ../../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 "" -#: ../../include/nav.php:187 ../../mod/connections.php:267 +#: ../../Zotlabs/Module/Connedit.php:726 +msgid "Do not import posts with this text" +msgstr "אל תייבא פוסטים עם טקסט זה" + +#: ../../Zotlabs/Module/Connedit.php:728 +msgid "This information is public!" +msgstr "מידע זה הינו ציבורי!" + +#: ../../Zotlabs/Module/Connedit.php:733 +msgid "Connection Pending Approval" +msgstr "חיבור ממתין לאישור" + +#: ../../Zotlabs/Module/Connedit.php:736 +msgid "inherited" +msgstr "" + +#: ../../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:740 +msgid "Their Settings" +msgstr "ההגדרות שלהם" + +#: ../../Zotlabs/Module/Connedit.php:741 +msgid "My Settings" +msgstr "ההגדרות שלי" + +#: ../../Zotlabs/Module/Connedit.php:743 +msgid "Individual Permissions" +msgstr "" + +#: ../../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:745 +msgid "" +"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." +msgstr "" + +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "Last update:" +msgstr "עדכון אחרון:" + +#: ../../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:20 +msgid "Public access denied." +msgstr "גישה ציבורית נדחתה." + +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "דירוג %d" +msgstr[1] "%d דירוגים" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "מין: " + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "מצב: " + +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "עמוד בית: " + +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1164 +msgid "Age:" +msgstr "גיל:" + +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/channel.php:1008 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "מיקום:" + +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "תיאור:" + +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1180 +msgid "Hometown:" +msgstr "עיר מגורים:" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1188 +msgid "About:" +msgstr "אודות:" + +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/conversation.php:959 +#: ../../include/channel.php:993 ../../include/connections.php:78 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "התחבר" + +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "פורום ציבורי:" + +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "מילות מפתח: " + +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "אל תציע" + +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "חיבורים שכיחים:" + +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "ספרייה גלובלית" + +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "ספרייה מקומית" + +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "מצא" + +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "הצעות ערוץ" + +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "עמוד הבא" + +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "עמוד קודם" + +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "אפשרויות מיון" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "אלפבתי" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "אלפבתי הפוך" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "מהחדשים יותר לישנים יותר" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "מהישנים יותר לחדשים יותר" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../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:3371 +msgid "Item not found." +msgstr "פריט לא נמצא." + +#: ../../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 "פריט לא נמצא" + +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 +msgid "Title (optional)" +msgstr "כותרת (רשות):" + +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "אין ערוץ." + +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "חיבורים מצויים" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "מוסתר" + +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "גנוזים" + +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1550 +msgid "New" +msgstr "חדש" + +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "חיבורים חדשים" + +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "כל החיבורים" + +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "הצג את כל החיבורים" + +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "הצג רק חיבורים חסומים" + +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "הצג רק חיבורים מנוכרים" + +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "הצג רק חיבורים גנוזים" + +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "הצג רק חיבורים מוסתרים" + +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "ממתין לאישור" + +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "ערוך חיבור" + +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "מחק חיבור" + +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "כתובת ערוץ" + +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "רשת" + +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 +msgid "Status" +msgstr "מצב" + +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "מחובר" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "אשר חיבור" + +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1037 +msgid "Approve" +msgstr "אשר" + +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "התעלם מחיבור" + +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "פעילות אחרונה" + +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 +#: ../../include/text.php:875 ../../include/nav.php:186 msgid "Connections" msgstr "חיבורים" -#: ../../include/nav.php:190 -msgid "Notices" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 +msgid "Search" +msgstr "חיפוש" + +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "חפש את החיבורים שלך" + +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "חיפוש חיבורים" + +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:79 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "תצלומי שער" + +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:133 +msgid "Image resize failed." +msgstr "שינוי גודל תמונה נכשל." + +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "לא מסוגל לעבד תמונה" + +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:217 +msgid "Image upload failed." +msgstr "העלאת תמונה נכשלה." + +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:236 +msgid "Unable to process image." +msgstr "לא מסוגל לעבד תמונה." + +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4298 +msgid "female" +msgstr "נקבה" + +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4299 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s עדכנה את ה%2$s שלה" + +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4300 +msgid "male" +msgstr "זכר" + +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4301 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s עדכן את ה%2$s שלו" + +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4303 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s עדכנו את ה%2$s שלהם" + +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1642 +msgid "cover photo" +msgstr "תצלום שער" + +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 +msgid "Photo not available." +msgstr "תצלום לא זמין." + +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:365 +msgid "Upload File:" +msgstr "העלה קובץ:" + +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:366 +msgid "Select a profile:" +msgstr "בחר פרופיל:" + +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "העלה תצלום שער" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 +msgid "or" +msgstr "או" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "skip this step" +msgstr "דלג על צעד זה" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "select a photo from your photo albums" +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:390 +msgid "Crop Image" +msgstr "גזור תמונה" + +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:391 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:393 +msgid "Done Editing" +msgstr "סיים לערוך" + +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "פריט אינו עריך." + +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "ערוך פוסט" + +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "רשומות לוח שנה הובאו." + +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "לא נמצאו רשומות לוח שנה." + +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "לא מסוגל להפיק תצוגה מקדימה." + +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "כותרת וזמן תחילת אירוע נדרשים" + +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "אירוע לא נמצא." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1944 +#: ../../include/event.php:949 ../../include/conversation.php:123 +msgid "event" +msgstr "אירוע" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "ערוך כותרת אירוע" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "כותרת אירוע" + +#: ../../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 "נדרש" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "קטגוריות (רשימה מופרדת פסיקים)" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit Category" +msgstr "ערוך קטגוריה" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Category" +msgstr "קטגוריה" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit start date and time" +msgstr "ערוך זמן ותאריך התחלה" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Start date and time" +msgstr "זמן ותאריך התחלה" + +#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 +msgid "Finish date and time are not known or not relevant" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit finish date and time" +msgstr "ערוך זמן ותאריך סיום" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time" +msgstr "זמן ותאריך סיום" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Edit Description" +msgstr "ערוך תיאור" + +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "תיאור" + +#: ../../Zotlabs/Module/Events.php:464 +msgid "Edit Location" +msgstr "ערוך מיקום" + +#: ../../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 "מיקום" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 +msgid "Share this event" +msgstr "שתף את אירוע זה" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 +#: ../../Zotlabs/Module/Webpages.php:202 ../../Zotlabs/Lib/ThreadItem.php:719 +#: ../../include/conversation.php:1198 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "תצוגה מקדימה" + +#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1247 +msgid "Permission settings" +msgstr "הגדרות הרשאה" + +#: ../../Zotlabs/Module/Events.php:476 +msgid "Advanced Options" +msgstr "אפשרויות מתקדמות" + +#: ../../Zotlabs/Module/Events.php:610 +msgid "Edit event" +msgstr "ערוך אירוע" + +#: ../../Zotlabs/Module/Events.php:612 +msgid "Delete event" +msgstr "מחק אירוע" + +#: ../../Zotlabs/Module/Events.php:646 +msgid "calendar" +msgstr "לוח שנה" + +#: ../../Zotlabs/Module/Events.php:706 +msgid "Event removed" +msgstr "אירוע הוסר" + +#: ../../Zotlabs/Module/Events.php:709 +msgid "Failed to remove event" +msgstr "נכשל להסיר אירוע" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:1647 ../../include/nav.php:92 +msgid "Photos" +msgstr "תצלומים" + +#: ../../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:1235 +#: ../../include/conversation.php:1274 +msgid "Cancel" +msgstr "ביטול" + +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "אתר זה אינו שרת ספרייה" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "שמור לתיקייה:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- בחר -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "שמור" + +#: ../../Zotlabs/Module/Dreport.php:27 +msgid "Invalid message" +msgstr "הודעה שגויה" + +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "no results" +msgstr "אין תוצאות" + +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "דיווח מסירה עבור %1$s" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "בתור" + +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "פורסם" + +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "נתקבל לצורך מסירה" + +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "עודכן" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "עדכון נוכר" + +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "הרשאה נדחתה" + +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "נמען לא נמצא" + +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "דואר הוחזר" + +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "דואר כפול נתקבל" + +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "דואר נמסר" + +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "" + +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "" + +#: ../../Zotlabs/Module/Editwebpage.php:143 +msgid "Page link" +msgstr "קישור עמוד" + +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "ערוך עמוד רשת" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "ערוץ נתווסף." + +#: ../../Zotlabs/Module/Acl.php:227 +msgid "network" +msgstr "רשת" + +#: ../../Zotlabs/Module/Acl.php:237 +msgid "RSS" +msgstr "RSS" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "קבוצת פרטיות נוצרה." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "לא היתה אפשרות ליצור קבוצת פרטיות." + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3904 +msgid "Privacy group not found." +msgstr "קבוצת פרטיות לא נמצאה." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "קבוצת פרטיות עודכנה." + +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "צור אשכול של ערוצים." + +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "שם קבוצת פרטיות:" + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "חברים הינם נראים לערוצים אחרים" + +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "קבוצת פרטיות הוסרה." + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "לא מסוגל להסיר קבוצת פרטיות." + +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "עורך קבוצת פרטיות" + +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "חברים" + +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "כל הערוצים המחוברים" + +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "לחץ על ערוץ כדי להוסיף או להסיר" + +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "שתף תוכן מתוך Firefox אל $Projectname" + +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "הפעל את ספק $Projectname של Firefox" + +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "אנא התחבר כדי להמשיך." + +#: ../../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 "" + +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "חיפוש תיעוד" + +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "עזרה:" + +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:224 +#: ../../include/nav.php:159 +msgid "Help" +msgstr "עזרה" + +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "תיעוד $Projectname" + +#: ../../Zotlabs/Module/Filestorage.php:88 +msgid "Permission Denied." +msgstr "הרשאה נדחתה." + +#: ../../Zotlabs/Module/Filestorage.php:104 +msgid "File not found." +msgstr "קובץ לא נמצא." + +#: ../../Zotlabs/Module/Filestorage.php:147 +msgid "Edit file permissions" +msgstr "ערוך הרשאות קובץ" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Set/edit permissions" +msgstr "קבע/ערוך הרשאות" + +#: ../../Zotlabs/Module/Filestorage.php:157 +msgid "Include all files and sub folders" +msgstr "כלול כל קובץ ותיקיית משנה" + +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Share this file" +msgstr "שתף את קובץ זה" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Show URL to this file" +msgstr "הצג URL לקובץ זה" + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Notify your contacts about this file" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:163 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "אפליקציות" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "פריט לא נמצא." + +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "אין דבר ליבא." + +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "קובץ מיובא הינו ריק" + +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "יבוא הושלם." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "יבא ערוץ" + +#: ../../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 "השתמש בטופס זה כדי ליבא ערוץ קיים מתוך שרת/מוקד אחר. באפשרותך לאחזר את זהות הערוץ מתוך שרת/מוקד ישן דרך הרשת או לספק קובץ יצוא." + +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "קובץ להעלאה" + +#: ../../Zotlabs/Module/Import.php:540 +msgid "Or provide the old server/hub details" +msgstr "או ספק פרטי שרת/מוקד ישנים" + +#: ../../Zotlabs/Module/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "כתובת זיהוי ישנה (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "כתובת דוא״ל כניסה ישנה" + +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "סיסמת כניסה ישנה" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Import.php:545 +msgid "Make this hub my primary location" +msgstr "הפוך את מוקד זה למיקום העיקרי שלי" + +#: ../../Zotlabs/Module/Import.php:546 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Item.php:179 +msgid "Unable to locate original post." +msgstr "לא מסוגל לאתר פוסט מקורי." + +#: ../../Zotlabs/Module/Item.php:428 +msgid "Empty post discarded." +msgstr "פוסט ריק סולק." + +#: ../../Zotlabs/Module/Item.php:468 +msgid "Executable content type not permitted to this channel." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:848 +msgid "Duplicate post suppressed." +msgstr "פוסט כפול הודחק." + +#: ../../Zotlabs/Module/Item.php:983 +msgid "System error. Post not saved." +msgstr "שגיאת מערכת. פוסט לא נשמר." + +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2268 +msgid "Layouts" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "" + +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "הורד קובץ 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" + +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "שם פרטי" + +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "שם משפחה" + +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "שם כינוי" + +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "שם מלא" + +#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 +#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 +#: ../../include/network.php:2176 ../../boot.php:1706 +msgid "Email" +msgstr "דוא״ל" + +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:237 +msgid "Profile Photo" +msgstr "תצלום פרופיל" + +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "תצלום פרופיל 16 פיקסל" + +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "תצלום פרופיל 32 פיקסל" + +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "תצלום פרופיל 48 פיקסל" + +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "תצלום פרופיל 64 פיקסל" + +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "תצלום פרופיל 80 פיקסל" + +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "תצלום פרופיל 128 פיקסל" + +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "אזור זמן" + +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:235 +msgid "Language" +msgstr "שפה" + +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "שנת הולדת" + +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "חודש הולדת" + +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "יום הולדת" + +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "יום הולדת" + +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "מין" + +#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "זכר" + +#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "נקבה" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "עמוד רשת" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "תפריט" + +#: ../../Zotlabs/Module/Impel.php:187 +#, php-format +msgid "%s element installed" +msgstr "" + +#: ../../Zotlabs/Module/Impel.php:190 +#, php-format +msgid "%s element installation failed" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "בקשה שגויה." + +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "ערוץ" + +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "דבר" + +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "עמוד לא זמין." + +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1941 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "תצלום" + +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1947 ../../include/conversation.php:148 +msgid "status" +msgstr "סטטוס" + +#: ../../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:422 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:426 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "" + +#: ../../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:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "פעולה הושלמה." + +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "תודה." + +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "יבוא הושלם" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "יבוא פריטים" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "סך מגבלת הזמנות נגמרה." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : כתובת דוא״ל לא תקינה." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "נשמח אם תצטרף אלינו ברשת $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "מגבלת הזמנות נגמרה. אנא צור קשר עם מנהל האתר שלך." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : מסירת הודעה נכשלה." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "הודעה %d נשלחה." +msgstr[1] "%d הודעות נשלחו." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "לא נותרו לך עוד הזמנות זמינות" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "שלח הזמנות" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "הזן כתובות דוא״ל, אחת בכל שורה:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "הודעתך:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "אשמח אם תצטרף לקהילה שלי ברשת $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "יהיה עליך לספק את קוד הזמנה זה:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. הירשם בכל מיקום $Projectname (כולם מחוברים ב אופן הדדי)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. הזן את כתובת רשת $Projectname שלי לתוך שורת החיפוש של האתר." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "או בקר בכתובת" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. לחץ [התחבר]" + +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "נראה לאלו:" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "מיקום לא נמצא." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "לא נמצאו מיקומים." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "נהל מיקומי ערוץ" + +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +#: ../../Zotlabs/Module/Admin.php:1224 +msgid "Address" +msgstr "כתובת" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "סנכרן עכשיו" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "כאשר ניתן, השמט מיקום על ידי כניסה לתוך אתר רשת/מוקד והסרת הערוץ שלך." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "השתמש בטופס זה כדי לנטוש את המיקום אם המוקד אינו פועל עוד." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "מוקד לא נמצא." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "לא מסוגל לתקשר עם ערוץ מבוקש" + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "לא יכול לאמת ערוץ מבוקש." + +#: ../../Zotlabs/Module/Mail.php:78 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "על הערוץ הנבחר מוטלות הגבלות הודעה פרטית. שליחה נכשלה." + +#: ../../Zotlabs/Module/Mail.php:143 +msgid "Messages" msgstr "הודעות" -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "התראות" +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "הודעה הוחזרה." -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "צפה בכל ההתראות" +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "דיון הוסר." -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "סמן את כל התראות המערכת כנקראו" +#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "פג YYYY-MM-DD HH:MM" -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "דואר" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Requested channel is not in this network" +msgstr "הערוץ המבוקש אינו נמצא ברשת זו" -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "דואר פרטי" +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "שלח הודעה פרטית" -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "צפה בכל ההודעות הפרטיות" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "לכבוד:" -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "סמן את כל ההודעות הפרטיות כנקראו" +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "נושא:" -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "תיבה נכנסת" +#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 +#: ../../include/conversation.php:1231 +msgid "Attach file" +msgstr "צרף קובץ" -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "תיבה יוצאת" +#: ../../Zotlabs/Module/Mail.php:253 +msgid "Send" +msgstr "שלח" -#: ../../include/nav.php:199 ../../include/widgets.php:577 -msgid "New Message" -msgstr "הודעה חדשה" +#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 +#: ../../include/conversation.php:1266 +msgid "Set expiration date" +msgstr "קבע תאריך תפוגה" -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "אירועים" +#: ../../Zotlabs/Module/Mail.php:340 +msgid "Delete message" +msgstr "מחק הודעה" -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "לוח שנה אירועים" +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "דיווח מסירה" -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "ראה את כל האירועים" +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "בטל הודעה" -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "סמן את כל האירועים כנקראו" +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "הודעה הוחזרה." -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "מחק דיון" + +#: ../../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:367 +msgid "Send Reply" +msgstr "שלח משוב" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "הודעתך עבור %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 "" + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "צור ערוץ חדש" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 msgid "Channel Manager" msgstr "מנהל ערוץ" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "נהל את הערוצים שלך" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "ערוץ נוכחי" -#: ../../include/nav.php:208 ../../include/widgets.php:556 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "ערוץ שגרתי" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "הפוך לשגרתי" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d הודעות חדשות" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "לא נמצא חשבון תקין." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "חבר אתר (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "בקשת איפוס סיסמה נתבקשה אצל %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 +msgid "Password Reset" +msgstr "איפוס סיסמה" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "הסיסמה שלך אותחלה כנדרש." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "הסיסמה החדשה שלך היא" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "לחץ כאן כדי להיכנס" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "הסיסמה שלך נשתנתה אצל %s" + +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "שכחת את הסיסמה שלך?" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "כתובת דוא״ל" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "אפס" + +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "לא מסוגל לעדכן תפריט." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "לא מסוגל ליצור תפריט." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "שם תפריט" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "שם ייחודי (לא נראה בבלוג רשת) - נדרש" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "כותרת תפריט" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "התר סימניות" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "שלח והמשך" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2267 +msgid "Menus" +msgstr "תפריטים" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "סימניות מותרות" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "מחק את תפריט זה" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "ערוך תכני תפריט" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "ערוך את תפריט זה" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "תפריט לא יכול היה להימחק." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "תפריט לא נמצא." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "ערוך תפריט" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "הוסף או הסר רשומות מתפריט זה" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "שם תפריט" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "כותרת תפריט" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "התר סימניות" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "לא נמצא." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:226 +msgid "Mood" +msgstr "מצב רוח" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "אין התאמות" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "אין קבוצה כזו" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "אין ערוץ כזה" + +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" +msgstr "פורום" + +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" +msgstr "תוצאות חיפוש עבור:" + +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "קבוצת פרטיות הינה ריקה" + +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "קבוצת פרטיות: " + +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "חיבור שגוי." + +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "אין עוד התראות מערכת" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "התראות מערכת" + +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "לא מסוגל ליצור אלמנט" + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "לא מסוגל לעדכן אלמנט תפריט." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "לא מסוגל להוסיף אלמנט תפריט." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "הרשאות פריט תפריט" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(לחץ כדי לפתוח/לסגור)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "שם קישור" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "פתח בתוך חלון חדש" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "שלח וסיים" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "שלח והמשך" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "תפריט:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "יעד קישור" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "ערוך תפריט" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "ערוך אלמנט" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "הטל אלמנט" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "אלמנט חדש" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "ערוך את מכיל תפריט זה" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "הוסף אלמנט תפריט" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "מחק את פריט תפריט זה" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "ערוך את פריט תפריט זה" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "פריט תפריט לא נמצא." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "פריט תפריט נמחק." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "פריט תפריט לא יכול היה להימחק." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "ערוך אלמנט תפריט" + +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "שם או דברי הסבר" + +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "דוגמאות: \"בוב ג׳יימסון\", \"ליסה והסוסים שלה\", \"טניס\", \"קבוצת תעופה\"" + +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "בחר שם כינוי קצר" + +#: ../../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 "שם כינוי ישמש אותך כדי ליצור כתובת ערוץ קלה לזכירה למשל nickname%s" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "צור ערוץ" + +#: ../../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 "ערוץ הוא הזהות שלך ברשת זו. זה יכול לייצג אדם, בלוג, או פורום (נמנו רק אחדים). ערוצים יכולים ליצור חיבורים עם ערוצים אחרים כדי לשתף מידע בעזרת הרשאות מפורטות מאוד." + +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "" + +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "מזהה מבקש לא תקין." + +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "סלק" + +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 +msgid "Mark all system notifications seen" +msgstr "סמן את כל התראות המערכת כנקראו" + +#: ../../Zotlabs/Module/Photos.php:84 +msgid "Page owner information could not be retrieved." +msgstr "" + +#: ../../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 "תצלומי פרופיל" + +#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +msgid "Album not found." +msgstr "אלבום לא נמצא." + +#: ../../Zotlabs/Module/Photos.php:132 +msgid "Delete Album" +msgstr "מחק אלבום" + +#: ../../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 "מחק תצלום" + +#: ../../Zotlabs/Module/Photos.php:533 +msgid "No photos selected" +msgstr "לא נבחרו תצלומים" + +#: ../../Zotlabs/Module/Photos.php:582 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:621 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:624 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:660 +msgid "Upload Photos" +msgstr "העלה תצלומים" + +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Enter an album name" +msgstr "הזן שם אלבום" + +#: ../../Zotlabs/Module/Photos.php:665 +msgid "or select an existing album (doubleclick)" +msgstr "או בחר אלבום קיים (לחיצה כפולה)" + +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Create a status post for this upload" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Caption (optional):" +msgstr "דברי הסבר (רשות):" + +#: ../../Zotlabs/Module/Photos.php:668 +msgid "Description (optional):" +msgstr "תיאור (רשות):" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Album name could not be decoded" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:743 +msgid "Contact Photos" +msgstr "תצלומי איש קשר" + +#: ../../Zotlabs/Module/Photos.php:766 +msgid "Show Newest First" +msgstr "הצג את החדשים יותר בתחילה" + +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Oldest First" +msgstr "הצג את הישנים יותר בתחילה" + +#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1572 +msgid "View Photo" +msgstr "צפה בתצלום" + +#: ../../Zotlabs/Module/Photos.php:823 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1589 +msgid "Edit Album" +msgstr "ערוך אלבום" + +#: ../../Zotlabs/Module/Photos.php:870 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Photo not available" +msgstr "תצלום לא זמין" + +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as profile photo" +msgstr "השתמש בתור תצלום פרופיל" + +#: ../../Zotlabs/Module/Photos.php:931 +msgid "Use as cover photo" +msgstr "השתמש בתור תצלום שער" + +#: ../../Zotlabs/Module/Photos.php:938 +msgid "Private Photo" +msgstr "תצלום פרטי" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "View Full Size" +msgstr "צפה בגודל מלא" + +#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "הסר" + +#: ../../Zotlabs/Module/Photos.php:1032 +msgid "Edit photo" +msgstr "ערוך תצלום" + +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CW (right)" +msgstr "סובב כיוון-שעון (ימין)" + +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CCW (left)" +msgstr "סובב נגד כיוון-שעון (שמאל)" + +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "Enter a new album name" +msgstr "הזן שם אלבום חדש" + +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "or select an existing one (doubleclick)" +msgstr "או בחר באחד קיים (לחיצה כפולה)" + +#: ../../Zotlabs/Module/Photos.php:1042 +msgid "Caption" +msgstr "דברי הסבר" + +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Add a Tag" +msgstr "הוסף תגית" + +#: ../../Zotlabs/Module/Photos.php:1048 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "דוגמא: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1051 +msgid "Flag as adult in album view" +msgstr "" + +#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +msgid "I like this (toggle)" +msgstr "אהבתי את זה (החלף)" + +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I don't like this (toggle)" +msgstr "לא אהבתי את זה (החלף)" + +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "אנא המתן" + +#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 +#: ../../Zotlabs/Lib/ThreadItem.php:707 +msgid "This is you" +msgstr "זה את/ה" + +#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 +#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "תגובה" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "אוהב" + +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "לא אוהב" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "מסכים" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "לא מסכים" + +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "נמנע" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "נוכח" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "לא נוכח" + +#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "עשוי להיווכח" + +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1732 +msgid "View all" +msgstr "צפה בכולם" + +#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/taxonomy.php:403 ../../include/conversation.php:1756 +#: ../../include/channel.php:1139 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "אוהב" +msgstr[1] "אוהבים" + +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1759 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "לא אוהב" +msgstr[1] "לא אוהבים" + +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "כלי תצלום" + +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "בתצלום זה:" + +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "מפה" + +#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +msgctxt "noun" +msgid "Likes" +msgstr "אוהב" + +#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Dislikes" +msgstr "לא אוהב" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 +#: ../../include/acl_selectors.php:285 +msgid "Close" +msgstr "סגור" + +#: ../../Zotlabs/Module/Photos.php:1337 +msgid "View Album" +msgstr "צפה באלבום" + +#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 +#: ../../Zotlabs/Module/Photos.php:1362 +msgid "Recent Photos" +msgstr "תצלומים אחרונים" + +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "שלח לך הודעה פרטית" + +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "הוסיף את הערוץ שלך" + +#: ../../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 "[היום]" + +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "פרסם אירוע" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "לא מסוגל למצוא את המוקד שלך." + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "פרסום הצליח." + +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "שגיאת פרוטוקול OpenID. לא הוחזר ID." + +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "התחברות נכשלה." + +#: ../../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 "" + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "" + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "עורך תצורה" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "" + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "שם מודול:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:227 +#: ../../include/conversation.php:963 +msgid "Poke" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "דחוף/עורר" + +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "" + +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "נמען" + +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "בחר מה ברצונך לעשות לנמען" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "הפוך את פוסט זה לפרטי" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../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 "פרופיל לא נמצא." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "פרופיל נמחק." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "פרופיל-" + +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "פרופיל חדש נוצר." + +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "נדרש שם פרופיל." + +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "מצב משפחתי" + +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "שותף רומנטי" + +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "אוהב" + +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "לא אוהב" + +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "דת" + +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "השקפות פוליטיות" + +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "העדפה מינית" + +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "עמוד בית" + +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "צפה בפרופיל זה" + +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:940 +msgid "Edit visibility" +msgstr "ערוך נראות" + +#: ../../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:911 +msgid "Change profile photo" +msgstr "שנה תצלום פרופיל" + +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "צור פרופיל חדש באמצעות הגדרות אלו" + +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "שבט את פרופיל זה" + +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "מחק את פרופיל זה" + +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "הוסף דברי פרופיל" + +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "אישי" + +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "יחס" + +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "שונות" + +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "יבא פרופיל מתוך קובץ" + +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "יצא פרופיל לתוך קובץ" + +#: ../../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 "זהו הפרופיל השגרתי שלך." + +#: ../../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 "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "ספרים, ספרות" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "טלוויזיה" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "" + +#: ../../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 "הערוצים האחרים שלי" + +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:936 +msgid "Profile Image" +msgstr "תמונת פרופיל" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 +#: ../../include/channel.php:918 +msgid "Edit Profiles" +msgstr "ערוך פרופילים" + +#: ../../Zotlabs/Module/Profile_photo.php:179 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "העלה תצלום פרופיל" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "מזהה פרופיל לא תקין." + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1230 +msgid "Profile" +msgstr "פרופיל" + +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1343 +msgid "Public Hubs" +msgstr "מוקדים ציבוריים" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "טיפוס גישה" + +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "מדיניות רישום" + +#: ../../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:962 +msgid "Ratings" +msgstr "דירוג" + +#: ../../Zotlabs/Module/Pubsites.php:38 +msgid "Rate" +msgstr "דרג" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Website:" +msgstr "אתר רשת:" + +#: ../../Zotlabs/Module/Rate.php:163 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "ערוץ מרוחק [%s] (לא מוכר עדיין באתר זה)" + +#: ../../Zotlabs/Module/Rate.php:164 +msgid "Rating (this information is public)" +msgstr "דירוג (מידע זה הינו ציבורי)" + +#: ../../Zotlabs/Module/Rate.php:165 +msgid "Optionally explain your rating (this information is public)" +msgstr "הסבר לפי הצורך את הדירוג שלך (מידע זה הינו ציבורי)" + +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "אין דירוג" + +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "דירוג: " + +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "אתר רשת:" + +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "תיאור: " + +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "הגדרות ערכת נושא עודכנו." + +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# חשבונות" + +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# חשבונות חסומים" + +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# ערוצים" + +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# עיקרי" + +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# שיבוטים" + +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "תור הודעות" + +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "התוכנה שלך אמורה להיות מעודכנת" + +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "הנהלה" + +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "סיכום" + +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "חשבונות רשומים" + +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "הרשמות תלויות ועומדות" + +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "ערוצים רשומים" + +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "תוספים פעילים" + +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "גרסא" + +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "הגדרות אתר עודכנו." + +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2845 +msgid "Default" +msgstr "ברירת מחדל" + +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "נייד" + +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "ניסיוני" + +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "לא נתמך" + +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "כן - עם אימות" + +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "האתר שלי אינו שרת פומבי" + +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "לאתר שלי ישנה גישה בתשלום בלבד" + +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "לאתר שלי ישנה גישה חופשית בלבד" + +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "האתר שלי מציע חשבונות בחינם לצד אפשרות לשדרוגים בתשלום" + +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1455 +msgid "Site" +msgstr "אתר" + +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "רישום" + +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "העלאת קובץ" + +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "מדינויות" + +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "מתקדם" + +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "שם אתר" + +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "באנר/לוגו" + +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "מידע מנהל" + +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "שפת מערכת" + +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "מוטיב מערכת" + +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "גודל תמונה מרבי" + +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "הזמנה בלבד" + +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "מתחמי דוא״ל מורשים" + +#: ../../Zotlabs/Module/Admin.php:517 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "מתחמי דוא״ל לא מורשים" + +#: ../../Zotlabs/Module/Admin.php:518 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "התחבר בעמוד בית" + +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "שרת ספרייה שגרתי" + +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "משתמש פרוקסי" + +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "URL פרוקסי" + +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "פקיעת זמן רשת" + +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "תדירות שגרתית" + +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "עומס ממוצע מרבי" + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" +msgstr "נעל תכונת %s" + +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "נהל תכונות נוספות" + +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "לא נמצא שרת" + +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "מזהה" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "לערוץ" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "בשרת" + +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "שרת" + +#: ../../Zotlabs/Module/Admin.php:746 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1458 +msgid "Security" +msgstr "אבטחה" + +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "התר התקשרויות רק מתוך ערוצים אלה" + +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "חסום התקשרויות מתוך ערוצים אלה" + +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "התר שיבוצים מתוך אתרים וקישורים נאובטחים (SSL) בלבד." + +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "אין עדכונים כושלים." + +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "עדכונים כושלים" + +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "עדיפות" + +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "סמן מוקד בלתי מקוון לצמיתות" + +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "רוקן תור עבור מוקד זה" + +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "איש קשר מוכר אחרון" + +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "חשבון %s נמחק" +msgstr[1] "%s חשבונות נמחקו" + +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "חשבון לא נמצא" + +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "חשבון '%s' נמחק" + +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "חשבון '%s' נחסם" + +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "חשבון '%s' נפתח" + +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1456 +msgid "Accounts" +msgstr "חשבונות" + +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "בחר הכל" + +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "הרשמות ממתינות לצורך אישור" + +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "תאריך בקשה" + +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "אין הרשמות." + +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "אסור" + +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "כל הערוצים" + +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "תאריך רישום" + +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "כניסה אחרונה" + +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "פג" + +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "מחלקת שירות" + +#: ../../Zotlabs/Module/Admin.php:1054 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "ערוץ %s נמחק" +msgstr[1] "%s ערוצים נמחקו" + +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "ערוץ לא נמצא" + +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "ערוץ '%s' נמחק" + +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "ערוץ '%s' צונזר" + +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "ערוץ '%s' יצא מכלל צנזורה" + +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1457 +msgid "Channels" +msgstr "ערוצים" + +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "צנזר" + +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "התר קוד" + +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "אסור קוד" + +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +msgid "Channel" +msgstr "ערוץ" + +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "תוסף %s מנוטרל." + +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "תוסף %s מאופשר." + +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "נטרל" + +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "אפשר" + +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1460 +msgid "Plugins" +msgstr "תוספות" + +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "החלף" + +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:208 +#: ../../include/widgets.php:638 msgid "Settings" msgstr "הגדרות" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "הגדרות חשבון/ערוץ" +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "מחבר: " -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "מנהל" +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "מתחזק: " -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "הבניית והגדרת אתר" +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "גרסת פרויקט נומינלית: " -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "כעת טוען..." +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "גרסת פרויקט מרבית: " -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@שם, #תגית, תוכן" +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "גרסת PHP נומינלית: " -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "אנא המתן..." +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "מצריך: " -#: ../../include/network.php:650 -msgid "view full size" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../include/network.php:1600 ../../include/enotify.php:58 +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "(רשות)" + +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "הורד מאגר תוספים" + +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "התקן מאגר חדש" + +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:333 +msgid "Install" +msgstr "התקן" + +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "נהל מאגרים" + +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "מאגרי תוסף מותקנים" + +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "התקן מאגר תוסף חדש" + +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:333 +msgid "Update" +msgstr "עדכן" + +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "החלף ענף" + +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "לא נמצאו מוטיבים." + +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "צילום מסך" + +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1461 +msgid "Themes" +msgstr "ערכות נושא" + +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[ניסיוני]" + +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[לא נתמך]" + +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "הגדרות יומן עדכנו." + +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1482 +#: ../../include/widgets.php:1492 +msgid "Logs" +msgstr "יומנים" + +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "טהר" + +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "דיבאג" + +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "קובץ יומן" + +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "שדה פרופיל חדש" + +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "שם כינוי שדה" + +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "שם מערכת של שדה" + +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "טיפוס קלט" + +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "שם שדה" + +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "טקסט עזרה" + +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "מידע נוסף (רשות)" + +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "הגדרת שדה לא נמצאה" + +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "ערוך שדה פרופיל" + +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1463 +msgid "Profile Fields" +msgstr "שדות פרופיל" + +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "שדות פרופיל בסיסיים" + +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "שדות פרופיל מתקדמים" + +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "(בנוסף על שדות בסיסיים)" + +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "כל השדות הזמינים" + +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "שדות מותאמים" + +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "צור שדה מותאם" + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "אפליקציה מותקנת." + +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "אפליקציה פגומה." + +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "הטמע קוד" + +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "ערוך אפליקציה" + +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "צור אפליקציה" + +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "שם של אפליקציה" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "מיקום (URL) של אפליקציה" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 פיקסלים - רשות" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "קטגוריות (רשות, רשימה מופרדת פסיקים)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "מזהה גרסא" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "מחיר אפליקציה" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "מיקום (URL) כדי לרכוש אפליקציה" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "בחר תיקיית סימניות" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "שמור סימנייה" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL של סימנייה" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "או הזן שם תיקיית סימניות חדש" + +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "סיסמאות לא תואמות." + +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "הרשמתך לא ניתנת לעיבוד" + +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "רישום על מוקד זה הינו מנוטרל." + +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "רישום על מוקד זה הינו מותנה באישור." + +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "הירשם במוקד מקושר אחר." + +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "תנאי שימוש" + +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "אני מקבל את ה%s לאתר רשת זה" + +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה" + +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "כתובת דוא״ל שלך" + +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "בחר סיסמה" + +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "בבקשה הזן שוב את סיסמתך" + +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "לא" + +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "כן" + +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "חברות באתר זה היא באמצעות הזמנה בלבד." + +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1686 +msgid "Register" +msgstr "הרשמה" + +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "המשך כדי ליצור את הערוץ הראשון שלך" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "אנא התחבר." + +#: ../../Zotlabs/Module/Removeaccount.php:34 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeaccount.php:56 +msgid "Remove This Account" +msgstr "הסר את חשבון זה" + +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "אזהרה: " + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "" + +#: ../../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:58 +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Please enter your password for verification:" +msgstr "אנא הזן את הסיסמה שלך לצורך אימות:" + +#: ../../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: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:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "הסר חשבון" + +#: ../../Zotlabs/Module/Removeme.php:33 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:58 +msgid "Remove This Channel" +msgstr "הסר את ערוץ זה" + +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "This channel will be completely removed from the network. " +msgstr "" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "Remove this channel and all its clones from the network" +msgstr "" + +#: ../../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:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "הסר ערוץ" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "אימות נכשל." + +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "אימות מרוחק" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "" + +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "פריטים מתוייגים עם: %s" + +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "תוצאות חיפוש עבור: %s" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "לא נמצאו הגבלות מחלקת ערוץ." + +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "נדרש שם" + +#: ../../Zotlabs/Module/Settings.php:73 +msgid "Key and Secret are required" +msgstr "מפתח וגם סוד הינם בגדר חובה." + +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "לא דוא״ל תקף." + +#: ../../Zotlabs/Module/Settings.php:228 +msgid "Protected email address. Cannot change to that email." +msgstr "כתובת דוא״ל מוגנת. לא מסוגל לשנות לדוא״ל זה." + +#: ../../Zotlabs/Module/Settings.php:237 +msgid "System failure storing new email. Please try again." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:254 +msgid "Password verification failed." +msgstr "אימות סיסמה נכשל." + +#: ../../Zotlabs/Module/Settings.php:261 +msgid "Passwords do not match. Password unchanged." +msgstr "סיסמאות לא תואמות. סיסמה לא שונתה." + +#: ../../Zotlabs/Module/Settings.php:265 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "סיסמאות ריקות לא מותרות. סיסמה לא שונתה." + +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password changed." +msgstr "סיסמה שונתה." + +#: ../../Zotlabs/Module/Settings.php:281 +msgid "Password update failed. Please try again." +msgstr "עדכון סיסמה נכשל. אנא נסה שוב." + +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "הגדרות עודכנו." + +#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 +#: ../../Zotlabs/Module/Settings.php:651 +msgid "Add application" +msgstr "הוסף אפליקציה" + +#: ../../Zotlabs/Module/Settings.php:592 +msgid "Name of application" +msgstr "שם של אפליקציה" + +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "מפתח צרכן" + +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "סוד צרכן" + +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:595 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "רשות" + +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "יישום לא נמצא." + +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "אפליקציות מחוברות" + +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:655 +msgid "No name" +msgstr "אין שם" + +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "הסר אישור" + +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "הגדרות חשבון" + +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Current Password" +msgstr "סיסמה נוכחית" + +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "הזן סיסמה חדשה" + +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "אמת סיסמה חדשה" + +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Leave password fields blank unless changing" +msgstr "השאר דשות סיסמה ריקים אלא אם כן ברצונך לשנות" + +#: ../../Zotlabs/Module/Settings.php:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "כתובת דוא״ל:" + +#: ../../Zotlabs/Module/Settings.php:706 +msgid "Remove this account including all its channels" +msgstr "הסר את חשבון זה לרבות כל הערוצים שלו" + +#: ../../Zotlabs/Module/Settings.php:729 +msgid "Additional Features" +msgstr "תכונות נוספות" + +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "הגדרות מקשר" + +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "אין ערכת נושא מיוחדת להתקנים ניידים" + +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (ניסיוני)" + +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Display Settings" +msgstr "הגדרות תצוגה" + +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "הגדרות ערכת נושא" + +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "הגדרות ערכת נושא מותאמת" + +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "הגדרות תוכן" + +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Mobile Theme:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Preload images before rendering the page" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:848 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Enable user zoom on mobile devices" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Update browser every xx seconds" +msgstr "עדכן דפדפן כל xx שניות" + +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "מינימום של 10 שניות, אין מקסימום" + +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum number of conversations to load at any time:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Maximum of 100 items" +msgstr "מקסימום של 100 פריטים" + +#: ../../Zotlabs/Module/Settings.php:852 +msgid "Show emoticons (smilies) as images" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:853 +msgid "Link post titles to source" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(תגובות מוצגות בנפרד)" + +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Use blog/list mode on grid page" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:859 +msgid "Channel page max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 +msgid "click to expand content exceeding this height" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:860 +msgid "Grid page max height of content (in pixels)" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "אף אחד חוץ ממך" + +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "רק אלו שהתרת להם במפורש" + +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "חיבורים מאושרים" + +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "כל חיבור" + +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "כל אחד באתר רשת זה" + +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "כל אחד ברשת זו" + +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "כל אחד שאושר" + +#: ../../Zotlabs/Module/Settings.php:901 +msgid "Anybody on the internet" +msgstr "כל אחד באינטרנט" + +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:981 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:990 +msgid "Your channel address is" +msgstr "כתובת הערוץ שלך היא" + +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "הגדרות ערוץ" + +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "הגדרות בסיסיות" + +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1121 +msgid "Full Name:" +msgstr "שם מלא:" + +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "אזור זמן שלך:" + +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "מיקום פוסט שגרתי:" + +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Geographical location to display on your posts" +msgstr "מיקום גיאוגרפי להצגה בפוסטים שלך" + +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Use Browser Location:" +msgstr "השתמש במיקום דפדפן:" + +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "תוכן מבוגרים" + +#: ../../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 "ערוץ זה מפרסם תוכן למבוגרים באופן תדיר או שגרתי. (אנא תייג כל חומר למבוגרים ו/או עירום עם NSFW#)" + +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Security and Privacy Settings" +msgstr "הגדרות אבטחה ופרטיות" + +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Hide my online presence" +msgstr "הסתר את הנוכחות המקוונת שלי" + +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Prevents displaying in your profile that you are online" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Simple Privacy Settings:" +msgstr "הגדרות פרטיות פשוטות:" + +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "ציבורי מאוד - מתירני ביותר (יש להשתמש בזהירות)" + +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "טיפוסי - ציבורי שגרתי, פרטיות לפי דרישה (דומה להרשאות רשת חברתית אולם לצד פרטיות משופרת)" + +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Private - default private, never open or public" +msgstr "פרטי - פרטי שגרתי, אף פעם לא פתוח או ציבורי" + +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "חסום - חסום שגרתי אל/מן כל אחד" + +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "התר לאחרים לתייג את הפוסטים שלך" + +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Advanced Privacy Settings" +msgstr "הגדרות פרטיות מתקדמות" + +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Expire other channel content after this many days" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +#, php-format +msgid "This website expires after %d days." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Useful to reduce spamming" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "הגדרות התראה" + +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "By default post a status message when:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "accepting a friend request" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "שלח דוא״ל התראה כאשר:" + +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "You receive a connection request" +msgstr "קיבלת בקשת חיבור" + +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "החיבורים שלך הינם מאומתים" + +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "מישהו כותב על קיר הפרופיל שלך" + +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "מישהו רושם תגובת המשך" + +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You receive a private message" +msgstr "קיבלת הודעה פרטית" + +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "קיבלת הצעת ידידים" + +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Show visual notifications including:" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "פעילות ערוץ לא נראית" + +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Unseen private messages" +msgstr "הודעות ערוץ לא נראות" + +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming events" +msgstr "אירועים קרובים" + +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "Events today" +msgstr "אירועים היום" + +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "ימי הולדת קרובים" + +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Not available in all themes" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "System info messages" +msgstr "הודעות מידע מערכת" + +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System critical alerts" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "New connections" +msgstr "חיבורים חדשים" + +#: ../../Zotlabs/Module/Settings.php:1109 +msgid "System Registrations" +msgstr "הרשמות מערכת" + +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Notify me of events this many days in advance" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Must be greater than 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1118 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "Miscellaneous Settings" +msgstr "הגדרות שונות" + +#: ../../Zotlabs/Module/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "תיקיית העלאת תצלום שגרתית" + +#: ../../Zotlabs/Module/Settings.php:1120 +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "%Y - current year, %m - current month" +msgstr "%Y - שנה נוכחית, %m - חודש נוכחי" + +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Default file upload folder" +msgstr "תיקיית העלאת קובץ שגרתית" + +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Personal menu to display in your channel pages" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Remove this channel." +msgstr "הסר את ערוץ זה." + +#: ../../Zotlabs/Module/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "שרת $Projectname - הבנייה" + +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "לא היתה אפשרות להתחבר למסד נתונים." + +#: ../../Zotlabs/Module/Setup.php:187 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "בדיקת מערכת" + +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "בדוק שוב" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "חיבור מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "שם שרת מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "ברירת מחדל 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "פורט מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Login Name" +msgstr "שם כניסה מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" +msgstr "סיסמה מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Name" +msgstr "שם מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "טיפוס מסד נתונים" + +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "כתובת דוא״ל מנהל אתר" + +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "כתובת אתר אינטרנט" + +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "אנא השתמש בכתובת SSL (כלומר, https) אם זמינה." + +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "הגדרות אתר" + +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "אפשר תכונות מתקדמות בפרויקט $Projectname?" + +#: ../../Zotlabs/Module/Setup.php:347 +msgid "" +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:388 +msgid "PHP version 5.5 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:389 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:404 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:405 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:409 +msgid "PHP executable path" +msgstr "נתיב PHP נתון ליישום" + +#: ../../Zotlabs/Module/Setup.php:409 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:414 +msgid "Command line PHP" +msgstr "שורת פקודה PHP" + +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:445 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:450 +msgid "You can adjust these settings in the servers php.ini." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:452 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:475 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:479 +msgid "Generate encryption keys" +msgstr "הפק מפתחות הצפנה" + +#: ../../Zotlabs/Module/Setup.php:491 +msgid "libCurl PHP module" +msgstr "מודול libCurl PHP" + +#: ../../Zotlabs/Module/Setup.php:492 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:493 +msgid "OpenSSL PHP module" +msgstr "מודול OpenSSL PHP" + +#: ../../Zotlabs/Module/Setup.php:494 +msgid "mysqli or postgres PHP module" +msgstr "מודול mysqli PHP או postgres" + +#: ../../Zotlabs/Module/Setup.php:495 +msgid "mb_string PHP module" +msgstr "מודול mb_string PHP" + +#: ../../Zotlabs/Module/Setup.php:496 +msgid "mcrypt PHP module" +msgstr "מודול mcrypt PHP" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "xml PHP module" +msgstr "מודול xml PHP" + +#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 +msgid "Apache mod_rewrite module" +msgstr "מודול Apache mod_rewrite" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 +msgid "proc_open" +msgstr "proc_open" + +#: ../../Zotlabs/Module/Setup.php:507 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:515 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:523 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:531 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:557 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Setup.php:563 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php הינו כתיב" + +#: ../../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 "" + +#: ../../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: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 "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Setup.php:583 +#, php-format +msgid "%s is writable" +msgstr "%s הינו כתיב" + +#: ../../Zotlabs/Module/Setup.php:599 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:603 +msgid "store is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:636 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Setup.php:641 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:643 +msgid "SSL certificate validation" +msgstr "הוכחת תקפות של תעודת SSL" + +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:652 +msgid "Url rewrite is working" +msgstr "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Setup.php:685 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:719 +msgid "

What next

" +msgstr "

מה הלאה

" + +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "" + +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "חדש" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "הסר את כל הקבצים" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "הסר את קובץ זה" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "גרסא %s" + +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "זהו מוקד של $Projectname - רשת קואופרטיבית מבוזרת של אתרי רשת בעלי פרטיות משוכללת." + +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "תגית: " + +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "עומס ממוצע נוכחי: " + +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:76 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "אנא בקר באתר hubzilla.org כדי ללמוד עוד אודות $Projectname." + +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "סוגיות $projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:80 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "מנהלי אתר" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "מקור נוצר." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "מקור עודכן." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:71 +#: ../../include/widgets.php:630 +msgid "Channel Sources" +msgstr "מקורות ערוץ" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "מקור חדש" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "שם ערוץ" + +#: ../../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 "מקור לא נמצא." + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "ערוך מקור" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "מחק מקור" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "מקור הוסר" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "התעלם/הסתר" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "פוסט" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1949 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "תגובה" + +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "הצג דבר" + +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "פריט לא נמצא" + +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "ערוך דבר" + +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "בחר פרופיל" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "פרסם פעילות" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "שם של דבר, לדוגמא: משהו" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL של דבר (רשות)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL עבור תצלום של משהו (רשות)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "הוסף דבר לפרופיל שלך" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "יצא ערוץ" + +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "" + +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +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 "" + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +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 "" + +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +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 "" + +#: ../../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 "" + +#: ../../Zotlabs/Module/Viewconnections.php:62 +msgid "No connections." +msgstr "אין חיבורים." + +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "צפה בחיבורים" + +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "מקור פריט" + +#: ../../Zotlabs/Module/Webpages.php:192 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/conversation.php:1700 ../../include/nav.php:106 +msgid "Webpages" +msgstr "עמודי רשת" + +#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "פעולות" + +#: ../../Zotlabs/Module/Webpages.php:204 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "קישור עמוד" + +#: ../../Zotlabs/Module/Webpages.php:205 +msgid "Page Title" +msgstr "כותרת עמוד" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "חיפוש Xchan" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "" + +#: ../../Zotlabs/Module/Wiki.php:75 ../../Zotlabs/Lib/Apps.php:218 +msgid "Wiki" +msgstr "ויקי" + +#: ../../Zotlabs/Module/Wiki.php:76 +msgid "Sandbox" +msgstr "ארגז חול" + +#: ../../Zotlabs/Module/Wiki.php:156 +msgid "Enter the name of your new wiki:" +msgstr "הזן את השם של הויקי החדש שלך:" + +#: ../../Zotlabs/Module/Wiki.php:157 +msgid "Enter the name of the new page:" +msgstr "הזן את השם של העמוד החדש:" + +#: ../../Zotlabs/Module/Wiki.php:158 +msgid "Enter the new name:" +msgstr "הזן את השם החדש:" + +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "" + +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "מציין חדר שגוי" + +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "חדר לא נמצא." + +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "חדר מלא" + +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1848 msgid "$Projectname Notification" -msgstr "" +msgstr "התראות $Projectname" -#: ../../include/network.php:1601 ../../include/diaspora.php:2526 -#: ../../include/diaspora.php:2537 ../../include/enotify.php:59 -#: ../../mod/p.php:46 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1849 msgid "$projectname" -msgstr "" +msgstr "$projectname" -#: ../../include/network.php:1603 ../../include/enotify.php:61 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1851 msgid "Thank You," msgstr "תודה," -#: ../../include/network.php:1605 ../../include/enotify.php:63 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1853 #, php-format msgid "%s Administrator" msgstr "הנהלת %s" -#: ../../include/network.php:1647 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 -msgid "Administrator" -msgstr "מנהל" - -#: ../../include/network.php:1661 -msgid "No Subject" -msgstr "אין נושא" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "קודם" - -#: ../../include/text.php:393 -msgid "first" -msgstr "ראשון" - -#: ../../include/text.php:422 -msgid "last" -msgstr "אחרון" - -#: ../../include/text.php:425 -msgid "next" -msgstr "הבא" - -#: ../../include/text.php:435 -msgid "older" -msgstr "ישן יותר" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "חדש יותר" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "אין חיבורים" - -#: ../../include/text.php:844 +#: ../../Zotlabs/Lib/Enotify.php:100 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "חיבור %d" -msgstr[1] "%d חיבורים" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "צפה בחיבורים" - -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 -msgid "Save" -msgstr "שמור" - -#: ../../include/text.php:990 -msgid "poke" +msgid "%s " msgstr "" -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:התראה] דואר חדש נתקבל %s" + +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s של לך הודעה פרטית חדשה באתר %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s שלח לך %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "הודעה פרטית" + +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "אנא בקר בכתובת %s כדי לצפות ו/או להשיב להודעות הפרטיות שלך." + +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "" -#: ../../include/text.php:991 -msgid "ping" +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "" -#: ../../include/text.php:991 -msgid "pinged" +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "" -#: ../../include/text.php:992 -msgid "prod" +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:התראה] תגובה לדיון #%1$d מאת %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "" -#: ../../include/text.php:992 -msgid "prodded" +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." msgstr "" -#: ../../include/text.php:993 -msgid "slap" +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:התראה] %s פרסם לקיר הפרופיל שלך" + +#: ../../Zotlabs/Lib/Enotify.php:204 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "" -#: ../../include/text.php:993 -msgid "slapped" +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "" -#: ../../include/text.php:994 -msgid "finger" +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:התראה] %s תייג אותך" + +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" msgstr "" -#: ../../include/text.php:994 -msgid "fingered" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "" -#: ../../include/text.php:995 -msgid "rebuff" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" msgstr "" -#: ../../include/text.php:995 -msgid "rebuffed" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" msgstr "" -#: ../../include/text.php:1005 -msgid "happy" -msgstr "שמח" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "עצוב" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "מתון" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "עייף" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "חצוף" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "כועס" - -#: ../../include/text.php:1011 -msgid "stupified" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "" -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "נבוך" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:התראה] %s תייג פוסט שלך" -#: ../../include/text.php:1013 -msgid "interested" -msgstr "מגלה עניין" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "מר" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "עליז" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "חי" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "נרגז" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "נרגז" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "נרגז" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "מופרע" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "מתוסכל" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "מדוכא" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "מונע" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "רגוע" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "מופתע" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "יום שני" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "יום שלישי" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "יום רביעי" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "יום חמישי" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "יום שישי" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "יום שבת" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "יום ראשון" - -#: ../../include/text.php:1201 -msgid "January" -msgstr "ינואר" - -#: ../../include/text.php:1201 -msgid "February" -msgstr "פברואר" - -#: ../../include/text.php:1201 -msgid "March" -msgstr "מרץ" - -#: ../../include/text.php:1201 -msgid "April" -msgstr "אפריל" - -#: ../../include/text.php:1201 ../../mod/uexport.php:58 -#: ../../mod/uexport.php:59 -msgid "May" -msgstr "מאי" - -#: ../../include/text.php:1201 -msgid "June" -msgstr "יוני" - -#: ../../include/text.php:1201 -msgid "July" -msgstr "יולי" - -#: ../../include/text.php:1201 -msgid "August" -msgstr "אוגוסט" - -#: ../../include/text.php:1201 -msgid "September" -msgstr "ספטמבר" - -#: ../../include/text.php:1201 -msgid "October" -msgstr "אוקטובר" - -#: ../../include/text.php:1201 -msgid "November" -msgstr "נובמבר" - -#: ../../include/text.php:1201 -msgid "December" -msgstr "דצמבר" - -#: ../../include/text.php:1306 -msgid "unknown.???" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" msgstr "" -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "בייטים" - -#: ../../include/text.php:1343 -msgid "remove category" +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "" -#: ../../include/text.php:1418 -msgid "remove from file" +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:התראה] היכרות פורמלית נתקבלה" + +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "" -#: ../../include/text.php:1506 ../../include/text.php:1517 -msgid "Click to open/close" -msgstr "לחץ כדי לפתוח/לסגור" - -#: ../../include/text.php:1673 ../../mod/events.php:474 -msgid "Link to Source" +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "" -#: ../../include/text.php:1694 ../../include/text.php:1765 -msgid "default" -msgstr "ברירת מחדל" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "אתה יכול לבקר את הפרופיל שלהם בקישור %s" -#: ../../include/text.php:1702 -msgid "Page layout" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." msgstr "" -#: ../../include/text.php:1702 -msgid "You can create your own with the layouts tool" +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:התראה] הצעת חבר נתקבלה" + +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "" -#: ../../include/text.php:1743 -msgid "Page content type" +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." msgstr "" -#: ../../include/text.php:1777 -msgid "Select an alternate language" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "שם:" + +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "תצלום:" + +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/text.php:1896 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "תצלום" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:התראה]" -#: ../../include/text.php:1899 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "אירוע" +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "צור פוסט חדש" -#: ../../include/text.php:1902 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "סטטוס" +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" +msgstr "הגיב/ה על פוסט של %s" -#: ../../include/text.php:1904 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "תגובה" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "הודעה פרטית" -#: ../../include/text.php:1909 -msgid "activity" -msgstr "פעילות" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "בחר" -#: ../../include/text.php:2204 -msgid "Design Tools" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "שמור לתיקייה" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "אני אופיע" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "אני לא אופיע" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "אני עשוי/ה להופיע" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "אני מסכים/ה" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "אני לא מסכים/ה" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "אני נמנע/ת" + +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "הוסף כוכב" + +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "הסר כוכב" + +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" msgstr "" -#: ../../include/text.php:2207 ../../mod/blocks.php:147 -msgid "Blocks" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" msgstr "" -#: ../../include/text.php:2208 ../../mod/menu.php:101 -msgid "Menus" -msgstr "תפריטים" - -#: ../../include/text.php:2209 ../../mod/layouts.php:174 -msgid "Layouts" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" msgstr "" -#: ../../include/text.php:2210 -msgid "Pages" -msgstr "עמודים" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "" -#: ../../include/widgets.php:35 ../../include/contact_widgets.php:92 -#: ../../include/taxonomy.php:264 +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "הוסף תגית" + +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "שתף זאת" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "שתף" + +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "תגובה %d" +msgstr[1] "%d תגובות" + +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "אל" + +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "מתוך" + +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "קיר-אל-קיר" + +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "מתוך קיר-אל-קיר:" + +#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 +#, php-format +msgid "from %s" +msgstr "מאת %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 +#, php-format +msgid "last edited: %s" +msgstr "נערך לאחרונה: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 +#, php-format +msgid "Expires: %s" +msgstr "פג: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "שמור סימניות" + +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "הוסף ללוח שנה" + +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "סמן את הכל כנקראו" + +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] הצג הכל" + +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 +msgid "Bold" +msgstr "מובלט" + +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 +msgid "Italic" +msgstr "נטוי" + +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 +msgid "Underline" +msgstr "קו תחתון" + +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 +msgid "Quote" +msgstr "ציטוט" + +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 +msgid "Code" +msgstr "קוד" + +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "תמונה" + +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "הכנס קישור" + +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "וידאו" + +#: ../../Zotlabs/Lib/Apps.php:204 +msgid "Site Admin" +msgstr "מנהל אתר" + +#: ../../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 "הצע ערוצים" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 +#: ../../boot.php:1704 +msgid "Login" +msgstr "כניסה" + +#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 +msgid "Grid" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:219 ../../include/nav.php:182 +msgid "Channel Home" +msgstr "ערוץ בית" + +#: ../../Zotlabs/Lib/Apps.php:222 ../../include/conversation.php:1664 +#: ../../include/conversation.php:1667 ../../include/nav.php:201 +msgid "Events" +msgstr "אירועים" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:167 +msgid "Directory" +msgstr "ספרייה" + +#: ../../Zotlabs/Lib/Apps.php:225 ../../include/nav.php:193 +msgid "Mail" +msgstr "דואר" + +#: ../../Zotlabs/Lib/Apps.php:228 ../../include/nav.php:96 +msgid "Chat" +msgstr "שיחה" + +#: ../../Zotlabs/Lib/Apps.php:230 +msgid "Probe" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Suggest" +msgstr "הצע" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Random Channel" +msgstr "ערוץ אקראי" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Invite" +msgstr "הזמן" + +#: ../../Zotlabs/Lib/Apps.php:234 ../../include/widgets.php:1459 +msgid "Features" +msgstr "תכונות" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Post" +msgstr "פוסט" + +#: ../../Zotlabs/Lib/Apps.php:338 +msgid "Purchase" +msgstr "רכוש" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "" + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 +#: ../../include/widgets.php:429 msgid "Categories" msgstr "קטגוריות" -#: ../../include/widgets.php:92 -msgid "System" -msgstr "מערכת" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "תגיות" -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "אישי" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "מילות מפתח" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "צור אפליקציה אישית" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "ערוך אפליקציה אישית" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "" -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:956 ../../mod/match.php:64 -#: ../../mod/directory.php:316 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "התחבר" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "רוצים" -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "התעלם/הסתר" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "רוצה" -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "הצעות" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "אוהב" -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "צפה בעוד..." +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "לא אוהב" -#: ../../include/widgets.php:166 +#: ../../include/photos.php:114 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "קובץ תמונה הינו ריק." -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "אחסון תצלום נכשל" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "תצלום חדש" -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "תזכירים" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "" - -#: ../../include/widgets.php:274 ../../include/features.php:70 -msgid "Saved Searches" -msgstr "" - -#: ../../include/widgets.php:275 ../../include/group.php:303 -msgid "add" -msgstr "להוסיף" - -#: ../../include/widgets.php:304 ../../include/contact_widgets.php:57 -#: ../../include/features.php:83 -msgid "Saved Folders" -msgstr "" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "כל דבר" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "ארכיונים" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "אני" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "משפחה" - -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:585 -#: ../../mod/settings.php:345 ../../mod/settings.php:349 -#: ../../mod/settings.php:350 ../../mod/settings.php:353 -#: ../../mod/settings.php:364 -msgid "Friends" -msgstr "חברים" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "מכרים" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "הכל" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "רענן" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "הגדרות חשבון" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "הגדרות ערוץ" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "תכונות נוספות" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "הגדרות תצוגה" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "אפליקציות מחוברות" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "יצא ערוץ" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "" - -#: ../../include/widgets.php:548 ../../include/features.php:59 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "מקורות ערוץ" - -#: ../../include/widgets.php:569 ../../mod/mail.php:128 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "הודעות" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "בדוק דואר" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "חדרי שיחה" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "חדרי שיחה מסומנים" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "חדרי שיחה מוצעים" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "תצלום/תמונה" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "דרג אותי" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "צפה בדירוגים" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "מוקדים פומביים" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "חלון חדש" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים" - -#: ../../include/Contact.php:212 +#: ../../include/photos.php:303 #, php-format -msgid "User '%s' deleted" -msgstr "משתמש '%s' נמחק" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" -#: ../../include/message.php:18 +#: ../../include/photos.php:506 ../../include/conversation.php:1650 +msgid "Photo Albums" +msgstr "אלבומי תמונה" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "העלה תצלומים חדשים" + +#: ../../include/text.php:428 +msgid "prev" +msgstr "קודם" + +#: ../../include/text.php:430 +msgid "first" +msgstr "ראשון" + +#: ../../include/text.php:459 +msgid "last" +msgstr "אחרון" + +#: ../../include/text.php:462 +msgid "next" +msgstr "הבא" + +#: ../../include/text.php:472 +msgid "older" +msgstr "ישן יותר" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "חדש יותר" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "אין חיבורים" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "" + +#: ../../include/text.php:1039 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1039 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1040 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1040 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1041 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1041 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1042 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1042 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1043 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1043 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1055 +msgid "happy" +msgstr "שמח" + +#: ../../include/text.php:1056 +msgid "sad" +msgstr "עצוב" + +#: ../../include/text.php:1057 +msgid "mellow" +msgstr "מתון" + +#: ../../include/text.php:1058 +msgid "tired" +msgstr "עייף" + +#: ../../include/text.php:1059 +msgid "perky" +msgstr "חצוף" + +#: ../../include/text.php:1060 +msgid "angry" +msgstr "כועס" + +#: ../../include/text.php:1061 +msgid "stupefied" +msgstr "" + +#: ../../include/text.php:1062 +msgid "puzzled" +msgstr "נבוך" + +#: ../../include/text.php:1063 +msgid "interested" +msgstr "מגלה עניין" + +#: ../../include/text.php:1064 +msgid "bitter" +msgstr "מר" + +#: ../../include/text.php:1065 +msgid "cheerful" +msgstr "עליז" + +#: ../../include/text.php:1066 +msgid "alive" +msgstr "חי" + +#: ../../include/text.php:1067 +msgid "annoyed" +msgstr "נרגז" + +#: ../../include/text.php:1068 +msgid "anxious" +msgstr "נרגז" + +#: ../../include/text.php:1069 +msgid "cranky" +msgstr "נרגז" + +#: ../../include/text.php:1070 +msgid "disturbed" +msgstr "מופרע" + +#: ../../include/text.php:1071 +msgid "frustrated" +msgstr "מתוסכל" + +#: ../../include/text.php:1072 +msgid "depressed" +msgstr "מדוכא" + +#: ../../include/text.php:1073 +msgid "motivated" +msgstr "מונע" + +#: ../../include/text.php:1074 +msgid "relaxed" +msgstr "רגוע" + +#: ../../include/text.php:1075 +msgid "surprised" +msgstr "מופתע" + +#: ../../include/text.php:1257 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "יום שני" + +#: ../../include/text.php:1257 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "יום שלישי" + +#: ../../include/text.php:1257 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "יום רביעי" + +#: ../../include/text.php:1257 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "יום חמישי" + +#: ../../include/text.php:1257 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "יום שישי" + +#: ../../include/text.php:1257 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "יום שבת" + +#: ../../include/text.php:1257 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "יום ראשון" + +#: ../../include/text.php:1261 ../../include/js_strings.php:45 +msgid "January" +msgstr "ינואר" + +#: ../../include/text.php:1261 ../../include/js_strings.php:46 +msgid "February" +msgstr "פברואר" + +#: ../../include/text.php:1261 ../../include/js_strings.php:47 +msgid "March" +msgstr "מרץ" + +#: ../../include/text.php:1261 ../../include/js_strings.php:48 +msgid "April" +msgstr "אפריל" + +#: ../../include/text.php:1261 +msgid "May" +msgstr "מאי" + +#: ../../include/text.php:1261 ../../include/js_strings.php:50 +msgid "June" +msgstr "יוני" + +#: ../../include/text.php:1261 ../../include/js_strings.php:51 +msgid "July" +msgstr "יולי" + +#: ../../include/text.php:1261 ../../include/js_strings.php:52 +msgid "August" +msgstr "אוגוסט" + +#: ../../include/text.php:1261 ../../include/js_strings.php:53 +msgid "September" +msgstr "ספטמבר" + +#: ../../include/text.php:1261 ../../include/js_strings.php:54 +msgid "October" +msgstr "אוקטובר" + +#: ../../include/text.php:1261 ../../include/js_strings.php:55 +msgid "November" +msgstr "נובמבר" + +#: ../../include/text.php:1261 ../../include/js_strings.php:56 +msgid "December" +msgstr "דצמבר" + +#: ../../include/text.php:1338 ../../include/text.php:1342 +msgid "Unknown Attachment" +msgstr "תצריף לא מוכר" + +#: ../../include/text.php:1344 +msgid "unknown" +msgstr "לא מוכר" + +#: ../../include/text.php:1380 +msgid "remove category" +msgstr "הסר קטגוריה" + +#: ../../include/text.php:1457 +msgid "remove from file" +msgstr "הסר מתוך קובץ" + +#: ../../include/text.php:1754 ../../include/text.php:1825 +msgid "default" +msgstr "ברירת מחדל" + +#: ../../include/text.php:1762 +msgid "Page layout" +msgstr "" + +#: ../../include/text.php:1762 +msgid "You can create your own with the layouts tool" +msgstr "" + +#: ../../include/text.php:1804 +msgid "Page content type" +msgstr "טיפוס תוכן עמוד" + +#: ../../include/text.php:1837 +msgid "Select an alternate language" +msgstr "בחר שפה חלופית" + +#: ../../include/text.php:1954 +msgid "activity" +msgstr "פעילות" + +#: ../../include/text.php:2263 +msgid "Design Tools" +msgstr "כלי עיצוב" + +#: ../../include/text.php:2269 +msgid "Pages" +msgstr "עמודים" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/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/message.php:20 msgid "No recipient provided." msgstr "" -#: ../../include/message.php:23 +#: ../../include/message.php:25 msgid "[no subject]" msgstr "[אין נושא]" @@ -1039,662 +7198,359 @@ msgstr "[אין נושא]" msgid "Unable to determine sender." msgstr "" -#: ../../include/message.php:200 +#: ../../include/message.php:222 msgid "Stored post could not be verified." msgstr "" -#: ../../include/zot.php:685 -msgid "Invalid data packet" -msgstr "" - -#: ../../include/zot.php:701 -msgid "Unable to verify channel signature" -msgstr "" - -#: ../../include/zot.php:2209 +#: ../../include/conversation.php:204 #, php-format -msgid "Unable to verify site signature for %s" +msgid "%1$s is now connected with %2$s" +msgstr "%1$s כעת מחובר עם %2$s" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "צור פוסט חדש" - -#: ../../include/notify.php:24 +#: ../../include/conversation.php:694 #, php-format -msgid "commented on %s's post" -msgstr "הגיב/ה על פוסט של %s" +msgid "View %s's profile @ %s" +msgstr "" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "הודעה פרטית" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "קטגוריות:" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "בחר" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "תויק תחת:" -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "שמור לתיקייה" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "צפה בתוך הקשר" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "אני אופיע" +#: ../../include/conversation.php:850 +msgid "remove" +msgstr "להסיר" -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "אני לא אופיע" +#: ../../include/conversation.php:854 ../../include/nav.php:247 +msgid "Loading..." +msgstr "כעת טוען..." -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "אני עשוי/ה להופיע" +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" +msgstr "מחק פריטים נבחרים" -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "אני מסכים/ה" +#: ../../include/conversation.php:951 +msgid "View Source" +msgstr "צפה במקור" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "אני לא מסכים/ה" +#: ../../include/conversation.php:952 +msgid "Follow Thread" +msgstr "עקוב שרשור" -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "אני נמנע/ת" +#: ../../include/conversation.php:953 +msgid "Unfollow Thread" +msgstr "נקר שרשור" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "צפה בכולם" +#: ../../include/conversation.php:958 +msgid "Activity/Posts" +msgstr "פעילות/פוסטים" -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1712 -#: ../../include/identity.php:1266 ../../include/taxonomy.php:396 -#: ../../mod/photos.php:1019 +#: ../../include/conversation.php:960 +msgid "Edit Connection" +msgstr "ערוך חיבור" + +#: ../../include/conversation.php:961 +msgid "Message" +msgstr "הודעה" + +#: ../../include/conversation.php:1078 +#, php-format +msgid "%s likes this." +msgstr "%s אהב זאת." + +#: ../../include/conversation.php:1078 +#, php-format +msgid "%s doesn't like this." +msgstr "%s לא אוהב זאת." + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "איש %2$d אוהב זאת." +msgstr[1] "%2$d אנשים אוהבים זאת." + +#: ../../include/conversation.php:1084 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "איש %2$d לא אוהב זאת." +msgstr[1] "%2$d אנשים לא אוהבים זאת." + +#: ../../include/conversation.php:1090 +msgid "and" +msgstr "ועוד" + +#: ../../include/conversation.php:1093 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", ועוד איש %d אחר" +msgstr[1] ", ועוד %d אנשים אחרים" + +#: ../../include/conversation.php:1094 +#, php-format +msgid "%s like this." +msgstr "%s אוהבים זאת." + +#: ../../include/conversation.php:1094 +#, php-format +msgid "%s don't like this." +msgstr "%s לא אוהבים זאת." + +#: ../../include/conversation.php:1133 +msgid "Set your location" +msgstr "קבע את המיקום שלך" + +#: ../../include/conversation.php:1134 +msgid "Clear browser location" +msgstr "טהר מיקום דפדפן" + +#: ../../include/conversation.php:1150 +msgid "Embed image from photo albums" +msgstr "" + +#: ../../include/conversation.php:1182 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1183 +msgid "Where are you right now?" +msgstr "היכן אתה כעת?" + +#: ../../include/conversation.php:1186 +msgid "Choose images to embed" +msgstr "" + +#: ../../include/conversation.php:1187 +msgid "Choose an album" +msgstr "" + +#: ../../include/conversation.php:1188 +msgid "Choose a different album..." +msgstr "" + +#: ../../include/conversation.php:1189 +msgid "Error getting album list" +msgstr "" + +#: ../../include/conversation.php:1190 +msgid "Error getting photo link" +msgstr "" + +#: ../../include/conversation.php:1191 +msgid "Error getting album" +msgstr "" + +#: ../../include/conversation.php:1221 +msgid "Page link name" +msgstr "שם קישור עמוד" + +#: ../../include/conversation.php:1224 +msgid "Post as" +msgstr "פרסם בתור" + +#: ../../include/conversation.php:1234 +msgid "Embed an image from your albums" +msgstr "" + +#: ../../include/conversation.php:1236 ../../include/conversation.php:1273 +msgid "OK" +msgstr "אישור" + +#: ../../include/conversation.php:1238 +msgid "Toggle voting" +msgstr "" + +#: ../../include/conversation.php:1246 +msgid "Categories (optional, comma-separated list)" +msgstr "קטגוריות (רשות, רשימה מופרדת פסיקים)" + +#: ../../include/conversation.php:1269 +msgid "Set publish date" +msgstr "" + +#: ../../include/conversation.php:1518 +msgid "Discover" +msgstr "גלה" + +#: ../../include/conversation.php:1521 +msgid "Imported public streams" +msgstr "זרמים ציבוריים מיובאים" + +#: ../../include/conversation.php:1526 +msgid "Commented Order" +msgstr "" + +#: ../../include/conversation.php:1529 +msgid "Sort by Comment Date" +msgstr "" + +#: ../../include/conversation.php:1533 +msgid "Posted Order" +msgstr "" + +#: ../../include/conversation.php:1536 +msgid "Sort by Post Date" +msgstr "מיין לפי תאריך פוסט" + +#: ../../include/conversation.php:1544 +msgid "Posts that mention or involve you" +msgstr "פוסטים אשר מציינים או מערבים אותך" + +#: ../../include/conversation.php:1553 +msgid "Activity Stream - by date" +msgstr "זרם פעילות - לפי תאריך" + +#: ../../include/conversation.php:1559 +msgid "Starred" +msgstr "" + +#: ../../include/conversation.php:1562 +msgid "Favourite Posts" +msgstr "פוסטים מועדפים" + +#: ../../include/conversation.php:1569 +msgid "Spam" +msgstr "ספאם" + +#: ../../include/conversation.php:1572 +msgid "Posts flagged as SPAM" +msgstr "פוסטים מסומנים בתור ספאם" + +#: ../../include/conversation.php:1629 +msgid "Status Messages and Posts" +msgstr "הודעות ופרסומי סטטוס" + +#: ../../include/conversation.php:1638 +msgid "About" +msgstr "אודות" + +#: ../../include/conversation.php:1641 +msgid "Profile Details" +msgstr "פרטי פרופיל" + +#: ../../include/conversation.php:1657 +msgid "Files and Storage" +msgstr "קבצים ואחסון" + +#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 +#: ../../include/widgets.php:842 +msgid "Chatrooms" +msgstr "חדרי שיחה" + +#: ../../include/conversation.php:1690 ../../include/nav.php:102 +msgid "Bookmarks" +msgstr "סימניות" + +#: ../../include/conversation.php:1693 +msgid "Saved Bookmarks" +msgstr "סימניות שמורות" + +#: ../../include/conversation.php:1703 +msgid "Manage Webpages" +msgstr "נהל עמודי רשת" + +#: ../../include/conversation.php:1762 msgctxt "noun" -msgid "Like" -msgid_plural "Likes" +msgid "Attending" +msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 +#: ../../include/conversation.php:1765 msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" +msgid "Not Attending" +msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "הוסף כוכב" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "הסר כוכב" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "הוסף תגית" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "אהבתי את זה (החלף)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "לא אהבתי את זה (החלף)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "שתף זאת" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "שתף" - -#: ../../include/ItemObject.php:277 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" +#: ../../include/conversation.php:1768 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 -#, php-format -msgid "View %s's profile - %s" -msgstr "" - -#: ../../include/ItemObject.php:299 -msgid "to" -msgstr "אל" - -#: ../../include/ItemObject.php:300 -msgid "via" -msgstr "" - -#: ../../include/ItemObject.php:301 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../include/ItemObject.php:302 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../include/ItemObject.php:313 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/ItemObject.php:317 ../../include/conversation.php:731 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/ItemObject.php:338 -msgid "Save Bookmarks" -msgstr "" - -#: ../../include/ItemObject.php:339 -msgid "Add to Calendar" -msgstr "" - -#: ../../include/ItemObject.php:348 -msgid "Mark all seen" -msgstr "סמן את הכל כנקראו" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1145 +#: ../../include/conversation.php:1771 msgctxt "noun" -msgid "Likes" -msgstr "" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "מסכים" +msgstr[1] "מסכימים" -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1146 +#: ../../include/conversation.php:1774 msgctxt "noun" -msgid "Dislikes" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "לא מסכים" +msgstr[1] "לא מסכימים" + +#: ../../include/conversation.php:1777 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "" +msgstr[1] "" + +#: ../../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/ItemObject.php:360 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "סגור" - -#: ../../include/ItemObject.php:365 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/mail.php:241 -#: ../../mod/mail.php:356 ../../mod/photos.php:962 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:123 -#: ../../mod/editwebpage.php:192 -msgid "Please wait" -msgstr "אנא המתן" - -#: ../../include/ItemObject.php:385 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] הצג הכל" - -#: ../../include/ItemObject.php:666 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "זה את/ה" - -#: ../../include/ItemObject.php:668 ../../include/js_strings.php:6 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "תגובה" - -#: ../../include/ItemObject.php:669 ../../include/js_strings.php:22 -#: ../../mod/mail.php:355 ../../mod/admin.php:453 ../../mod/admin.php:819 -#: ../../mod/admin.php:986 ../../mod/admin.php:1118 ../../mod/admin.php:1312 -#: ../../mod/admin.php:1397 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 -#: ../../mod/appman.php:99 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/poke.php:166 ../../mod/bulksetclose.php:24 ../../mod/poll.php:68 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:93 -#: ../../mod/profiles.php:667 ../../mod/connedit.php:704 -#: ../../mod/rate.php:167 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/import.php:592 ../../mod/invite.php:142 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/mitem.php:235 ../../mod/mood.php:134 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/xchan.php:11 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "שלח" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1192 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:179 -msgid "Bold" -msgstr "מובלט" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1193 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 -#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:180 -msgid "Italic" -msgstr "נטוי" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1194 -#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 -#: ../../mod/editpost.php:109 ../../mod/editwebpage.php:181 -msgid "Underline" -msgstr "קו תחתון" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1195 -#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 -#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:182 -msgid "Quote" -msgstr "ציטוט" - -#: ../../include/ItemObject.php:674 ../../include/conversation.php:1196 -#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 -#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:183 -msgid "Code" -msgstr "קוד" - -#: ../../include/ItemObject.php:675 -msgid "Image" -msgstr "תמונה" - -#: ../../include/ItemObject.php:676 -msgid "Insert Link" -msgstr "הכנס קישור" - -#: ../../include/ItemObject.php:677 -msgid "Video" -msgstr "וידאו" - -#: ../../include/ItemObject.php:678 ../../include/conversation.php:1166 -#: ../../include/page_widgets.php:40 ../../mod/photos.php:982 -#: ../../mod/editblock.php:170 ../../mod/editpost.php:143 -#: ../../mod/editwebpage.php:214 ../../mod/events.php:690 -#: ../../mod/webpages.php:188 -msgid "Preview" -msgstr "תצוגה מקדימה" - -#: ../../include/ItemObject.php:681 ../../include/conversation.php:1247 -#: ../../mod/mail.php:247 ../../mod/mail.php:361 ../../mod/editpost.php:151 -msgid "Encrypt text" -msgstr "הצפן טקסט" - -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "כתובת דוא״ל לא תקינה" - -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" +#: ../../include/follow.php:98 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "" - -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "נדרשת הזמנה." - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "אימות הזמנה לא התאפשר." - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "אנא הזן את המידע הנחוץ." - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "נכשל לאחסן מידע חשבון." - -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "אימות רישום עבור %s" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "בקשת רישום אצל %s" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "סיסמת רישום שלך" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "פרטי רישום עבור %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "חשבון אושר." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "רישום בוטל עבור %s" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "חשבון אומת. אנא התחבר." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "לחץ כאן כדי לשדרג." - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "הצג" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "אל תציג" - -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:571 -#: ../../mod/photos.php:934 ../../mod/chat.php:209 ../../mod/events.php:691 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "הרשאות" - -#: ../../include/activities.php:39 -msgid " and " -msgstr " וגם " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "פרופיל פומבי" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "" - -#: ../../include/api.php:1178 -msgid "Public Timeline" -msgstr "ציר זמן פומבי" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "מנהל אתר" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "פנקס כתובות" - -#: ../../include/apps.php:138 ../../include/identity.php:1240 -#: ../../include/identity.php:1357 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "פרופיל" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "מצב רוח" - -#: ../../include/apps.php:145 ../../include/conversation.php:959 -msgid "Poke" -msgstr "" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "הצע" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "הזמן" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "תכונות" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "שפה" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "פוסט" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "תצלום פרופיל" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "עדכן" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "התקן" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "רכוש" - -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:305 ../../include/attach.php:319 -#: ../../include/attach.php:350 ../../include/attach.php:546 -#: ../../include/attach.php:618 ../../include/chat.php:131 -#: ../../include/items.php:4383 ../../include/photos.php:26 -#: ../../mod/mail.php:114 ../../mod/achievements.php:30 ../../mod/page.php:31 -#: ../../mod/page.php:86 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/pdledit.php:21 ../../mod/appman.php:66 ../../mod/photos.php:69 -#: ../../mod/authtest.php:13 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/poke.php:128 -#: ../../mod/bookmarks.php:46 ../../mod/manage.php:6 ../../mod/channel.php:100 -#: ../../mod/channel.php:219 ../../mod/channel.php:262 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/common.php:35 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/notifications.php:66 -#: ../../mod/connections.php:29 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/connedit.php:348 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/events.php:249 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/register.php:72 ../../mod/fsuggest.php:78 ../../mod/regmod.php:17 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/service_limits.php:7 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/settings.php:570 -#: ../../mod/item.php:206 ../../mod/item.php:214 ../../mod/item.php:1005 -#: ../../mod/setup.php:223 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/sharedwithme.php:7 -#: ../../mod/like.php:178 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/message.php:16 ../../mod/mitem.php:111 -#: ../../mod/mood.php:111 ../../mod/suggest.php:26 ../../mod/network.php:12 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/thing.php:269 ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69 ../../index.php:186 -#: ../../index.php:397 -msgid "Permission denied." -msgstr "הרשאה נדחתה." - -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "פריט לא נמצא." - -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "אין קובץ מקור." - -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "" - -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "" - -#: ../../include/attach.php:410 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "" - -#: ../../include/attach.php:422 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" - -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "" - -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "" - -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "נתיב לא זמין." - -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "" - -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "" - -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "נתיב לא נמצא." - -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir נכשל." - -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "" - -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "מנותק." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "אימות נכשל" - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "התחברות נכשלה." - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "תצריפים:" - -#: ../../include/bb2diaspora.php:459 ../../include/event.php:22 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "" - -#: ../../include/bb2diaspora.php:465 ../../include/event.php:30 -msgid "Starts:" -msgstr "מתחיל:" - -#: ../../include/bb2diaspora.php:473 ../../include/event.php:40 -msgid "Finishes:" -msgstr "נגמר:" - -#: ../../include/bb2diaspora.php:481 ../../include/event.php:50 -#: ../../include/identity.php:1007 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "מיקום:" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 +#: ../../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/bbcode.php:123 ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 +#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 +#: ../../include/bbcode.php:883 ../../include/bbcode.php:888 +#: ../../include/bbcode.php:891 ../../include/bbcode.php:896 +#: ../../include/bbcode.php:899 ../../include/bbcode.php:902 +#: ../../include/bbcode.php:905 msgid "Image/photo" msgstr "תמונה/תצלום" -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 +#: ../../include/bbcode.php:162 ../../include/bbcode.php:916 msgid "Encrypted content" msgstr "תוכן מוצפן" #: ../../include/bbcode.php:178 #, php-format msgid "Install %s element: " -msgstr "" +msgstr "התקן אלמנט %s: " #: ../../include/bbcode.php:182 #, php-format @@ -1703,44 +7559,24 @@ msgid "" "to install it on this site." msgstr "" -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "עמוד רשת" - -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "" - -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "" - -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "תפריט" - -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "קוד QR" - -#: ../../include/bbcode.php:266 +#: ../../include/bbcode.php:261 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "פוסט" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "לחץ כדי לפתוח/לסגור" -#: ../../include/bbcode.php:518 +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "" + +#: ../../include/bbcode.php:607 msgid "Different viewers will see this text differently" -msgstr "" +msgstr "צופים שונים ייראו את טקסט זה בצורה שונה" -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "" - -#: ../../include/bbcode.php:756 +#: ../../include/bbcode.php:854 msgid "$1 wrote:" msgstr "$1 כתב(ה):" @@ -1749,1248 +7585,1326 @@ msgstr "$1 כתב(ה):" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/chat.php:23 -msgid "Missing room name" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "אפשרויות ספרייה" + +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "מצב בטוח" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "פורומים ציבוריים בלבד" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "אתר רשת זה בלבד" + +#: ../../include/zot.php:709 +msgid "Invalid data packet" msgstr "" -#: ../../include/chat.php:32 -msgid "Duplicate room name" +#: ../../include/zot.php:725 +msgid "Unable to verify channel signature" msgstr "" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." +#: ../../include/zot.php:2373 +#, php-format +msgid "Unable to verify site signature for %s" msgstr "" -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "חדר לא נמצא." +#: ../../include/zot.php:3722 +msgid "invalid target signature" +msgstr "" -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "חדר מלא" - -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "ברירת מחדל" - -#: ../../include/security.php:349 +#: ../../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 "" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "באופן תדיר" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1703 +msgid "Logout" +msgstr "יציאה" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "כל שעה" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "סיים את סשן זה" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "פעמיים ביום" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "בית" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "יומי" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "הפרסומים והדיונים שלך" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "שבועי" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "עמוד הפרופיל שלך" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "חודשי" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "נהל/ערוך פרופילים" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/nav.php:90 ../../include/channel.php:922 +msgid "Edit Profile" +msgstr "ערוך פרופיל" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "ערוך את הפרופיל שלך" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "התצלומים שלך" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1553 -msgid "Email" -msgstr "דוא״ל" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "הקבצים שלך" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "החדרי שיחה שלך" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "פייסבוק" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "הסימניות שלך" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "העמודי רשת שלך" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "התחברות" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - לחץ כדי להתנתק" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "אימות מרוחק" -#: ../../include/contact_widgets.php:14 +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "לחץ כדי לאמת את מוקד הבית שלך" + +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "עמוד בית" + +#: ../../include/nav.php:147 +msgid "Create an account" +msgstr "צור חשבון" + +#: ../../include/nav.php:159 +msgid "Help and documentation" +msgstr "עזרה ותיעוד" + +#: ../../include/nav.php:163 +msgid "Applications, utilities, links, games" +msgstr "אפליקציות, עזרים, קישורים, משחקים" + +#: ../../include/nav.php:165 +msgid "Search site @name, #tag, ?docs, content" +msgstr "" + +#: ../../include/nav.php:167 +msgid "Channel Directory" +msgstr "ערוץ ספרייה" + +#: ../../include/nav.php:179 +msgid "Your grid" +msgstr "" + +#: ../../include/nav.php:180 +msgid "Mark all grid notifications seen" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Channel home" +msgstr "ערוץ בית" + +#: ../../include/nav.php:183 +msgid "Mark all channel notifications seen" +msgstr "סמן את כל התראות הערוץ כנקראו" + +#: ../../include/nav.php:189 +msgid "Notices" +msgstr "הודעות" + +#: ../../include/nav.php:189 +msgid "Notifications" +msgstr "התראות" + +#: ../../include/nav.php:190 +msgid "See all notifications" +msgstr "צפה בכל ההתראות" + +#: ../../include/nav.php:193 +msgid "Private mail" +msgstr "דואר פרטי" + +#: ../../include/nav.php:194 +msgid "See all private messages" +msgstr "צפה בכל ההודעות הפרטיות" + +#: ../../include/nav.php:195 +msgid "Mark all private messages seen" +msgstr "סמן את כל ההודעות הפרטיות כנקראו" + +#: ../../include/nav.php:196 ../../include/widgets.php:658 +msgid "Inbox" +msgstr "תיבה נכנסת" + +#: ../../include/nav.php:197 ../../include/widgets.php:663 +msgid "Outbox" +msgstr "תיבה יוצאת" + +#: ../../include/nav.php:198 ../../include/widgets.php:668 +msgid "New Message" +msgstr "הודעה חדשה" + +#: ../../include/nav.php:201 +msgid "Event Calendar" +msgstr "לוח שנה אירועים" + +#: ../../include/nav.php:202 +msgid "See all events" +msgstr "ראה את כל האירועים" + +#: ../../include/nav.php:203 +msgid "Mark all events seen" +msgstr "סמן את כל האירועים כנקראו" + +#: ../../include/nav.php:206 +msgid "Manage Your Channels" +msgstr "נהל את הערוצים שלך" + +#: ../../include/nav.php:208 +msgid "Account/Channel Settings" +msgstr "הגדרות חשבון/ערוץ" + +#: ../../include/nav.php:216 ../../include/widgets.php:1489 +msgid "Admin" +msgstr "מנהל" + +#: ../../include/nav.php:216 +msgid "Site Setup and Configuration" +msgstr "הבניית והגדרת אתר" + +#: ../../include/nav.php:252 +msgid "@name, #tag, ?doc, content" +msgstr "@name, #tag, ?doc, content" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "אנא המתן..." + +#: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "הזמנה %d זמינה" msgstr[1] "%d הזמנות זמינות" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 -msgid "Advanced" -msgstr "מתקדם" - -#: ../../include/contact_widgets.php:22 +#: ../../include/contact_widgets.php:19 msgid "Find Channels" msgstr "מצא ערוצים" -#: ../../include/contact_widgets.php:23 +#: ../../include/contact_widgets.php:20 msgid "Enter name or interest" msgstr "הזן שם או עניין" -#: ../../include/contact_widgets.php:24 +#: ../../include/contact_widgets.php:21 msgid "Connect/Follow" msgstr "התחבר/עקוב" -#: ../../include/contact_widgets.php:25 +#: ../../include/contact_widgets.php:22 msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:273 -#: ../../mod/directory.php:379 ../../mod/directory.php:384 -msgid "Find" -msgstr "מצא" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "הצעות ערוץ" - -#: ../../include/contact_widgets.php:29 +#: ../../include/contact_widgets.php:26 msgid "Random Profile" msgstr "פרופיל אקראי" -#: ../../include/contact_widgets.php:30 +#: ../../include/contact_widgets.php:27 msgid "Invite Friends" msgstr "הזמן חברים" -#: ../../include/contact_widgets.php:32 +#: ../../include/contact_widgets.php:29 msgid "Advanced example: name=fred and country=iceland" msgstr "דוגמא מתקדמת: name=פרד וגם country=איסלנד" -#: ../../include/contact_widgets.php:125 +#: ../../include/contact_widgets.php:53 ../../include/features.php:98 +#: ../../include/widgets.php:310 +msgid "Saved Folders" +msgstr "תיקיות שמורות" + +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +msgid "Everything" +msgstr "כל דבר" + +#: ../../include/contact_widgets.php:122 #, php-format msgid "%d connection in common" msgid_plural "%d connections in common" msgstr[0] "" msgstr[1] "" -#: ../../include/contact_widgets.php:130 +#: ../../include/contact_widgets.php:127 msgid "show more" msgstr "הצג עוד" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "ערוץ" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "באופן תדיר" -#: ../../include/conversation.php:164 ../../include/diaspora.php:2152 -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "כל שעה" + +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "פעמיים ביום" + +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "יומי" + +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "שבועי" + +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "חודשי" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "כעת זכר" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "כעת נקבה" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "בעיקר זכר" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "בעיקר נקבה" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "טרנסג׳נדר" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "בין מיני" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "טרנסקסואל" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "אנדרוגיני" + +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "ניטראלי" + +#: ../../include/selectors.php:49 +msgid "Non-specific" msgstr "" -#: ../../include/conversation.php:167 ../../mod/like.php:399 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -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/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../include/conversation.php:583 ../../mod/photos.php:996 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Agree" -msgstr "מסכים" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Disagree" -msgstr "לא מסכים" - -#: ../../include/conversation.php:584 ../../mod/photos.php:997 -msgctxt "title" -msgid "Abstain" -msgstr "נמנע" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Attending" -msgstr "נוכח" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Not attending" -msgstr "לא נוכח" - -#: ../../include/conversation.php:585 ../../mod/photos.php:998 -msgctxt "title" -msgid "Might attend" -msgstr "עשוי להיווכח" - -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../include/conversation.php:718 -msgid "Categories:" -msgstr "קטגוריות:" - -#: ../../include/conversation.php:719 -msgid "Filed under:" -msgstr "תויק תחת:" - -#: ../../include/conversation.php:746 -msgid "View in context" -msgstr "" - -#: ../../include/conversation.php:857 -msgid "remove" -msgstr "להסיר" - -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:950 -msgid "View Source" -msgstr "צפה במקור" - -#: ../../include/conversation.php:951 -msgid "Follow Thread" -msgstr "עקוב שרשור" - -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "צפה בסטטוס" - -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "צפה בתצלומים" - -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "פעילות מטריצה" - -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "ערוך איש קשר" - -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "שלח הודעה פרטית" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:1077 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1079 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1085 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:1088 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "שמור לתיקייה:" - -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1158 ../../mod/mail.php:175 -#: ../../mod/mail.php:290 ../../mod/editpost.php:47 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1185 ../../mod/photos.php:961 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:184 -#: ../../mod/webpages.php:182 -msgid "Share" -msgstr "שתף" - -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "" - -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1197 ../../mod/mail.php:238 -#: ../../mod/mail.php:352 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:184 -msgid "Upload photo" -msgstr "העלה תצלום" - -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "העלה תצלום" - -#: ../../include/conversation.php:1199 ../../mod/mail.php:239 -#: ../../mod/mail.php:353 ../../mod/editblock.php:142 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:185 -msgid "Attach file" -msgstr "צרף קובץ" - -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "צרף קובץ" - -#: ../../include/conversation.php:1201 ../../mod/mail.php:240 -#: ../../mod/mail.php:354 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:186 -msgid "Insert web link" -msgstr "הכנס קישור רשת" - -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "קישור רשת" - -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "הכנס קישור וידאו" - -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "קישור וידאו" - -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "הכנס קישור אודיו" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "קישור אודיו" - -#: ../../include/conversation.php:1207 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:145 ../../mod/editpost.php:118 -#: ../../mod/editwebpage.php:190 -msgid "Set your location" -msgstr "" - -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "" - -#: ../../include/conversation.php:1212 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:191 -msgid "Clear browser location" -msgstr "" - -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "" - -#: ../../include/conversation.php:1215 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:135 ../../mod/editwebpage.php:207 -msgid "Title (optional)" -msgstr "" - -#: ../../include/conversation.php:1219 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:162 ../../mod/editpost.php:137 -#: ../../mod/editwebpage.php:209 -msgid "Categories (optional, comma-separated list)" -msgstr "" - -#: ../../include/conversation.php:1221 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:124 -#: ../../mod/editwebpage.php:193 -msgid "Permission settings" -msgstr "" - -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "הרשאות" - -#: ../../include/conversation.php:1230 ../../mod/editblock.php:158 -#: ../../mod/editlayout.php:155 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:202 -msgid "Public post" -msgstr "" - -#: ../../include/conversation.php:1232 ../../mod/editblock.php:165 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:138 -#: ../../mod/editwebpage.php:210 -msgid "Example: bob@example.com, mary@example.com" -msgstr "" - -#: ../../include/conversation.php:1245 ../../mod/mail.php:245 -#: ../../mod/mail.php:359 ../../mod/editblock.php:175 -#: ../../mod/editlayout.php:172 ../../mod/editpost.php:149 -#: ../../mod/editwebpage.php:219 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1249 ../../mod/editpost.php:153 -#: ../../mod/events.php:674 -msgid "OK" -msgstr "אישור" - -#: ../../include/conversation.php:1250 ../../mod/editpost.php:154 -#: ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:589 -#: ../../mod/settings.php:615 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "ביטול" - -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "" - -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1500 -msgid "Commented Order" -msgstr "" - -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" -msgstr "" - -#: ../../include/conversation.php:1507 -msgid "Posted Order" -msgstr "" - -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" -msgstr "" - -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "חדש" - -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../include/conversation.php:1533 -msgid "Starred" -msgstr "" - -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" -msgstr "" - -#: ../../include/conversation.php:1543 -msgid "Spam" -msgstr "ספאם" - -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" -msgstr "פוסטים מסומנים בתור ספאם" - -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "ערוץ" - -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" -msgstr "הודעות ופרסומי סטטוס" - -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "אודות" - -#: ../../include/conversation.php:1605 -msgid "Profile Details" -msgstr "פרטי פרופיל" - -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "אלבומי תמונה" - -#: ../../include/conversation.php:1623 -msgid "Files and Storage" -msgstr "קבצים ואחסון" - -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "חדרי שיחה" - -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "סימניות שמורות" - -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "נהל עמודי רשת" - -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/conversation.php:1724 -msgctxt "noun" +#: ../../include/selectors.php:49 msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "" -msgstr[1] "" +msgstr "לא מוכרע" -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "זכרים" -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "" -msgstr[1] "" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "נקבות" -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "" -msgstr[1] "" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "הומו" -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "שונות" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "לסבית" -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD או MM-DD" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "אין העדפה" -#: ../../include/datetime.php:235 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/events.php:672 -msgid "Required" -msgstr "דָרוּשׁ" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "דו מיני" -#: ../../include/datetime.php:262 ../../boot.php:2358 -msgid "never" -msgstr "לעולם לא" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "אוטוסקסואלי" -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "לפני פחות משניה" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "מתנזר" -#: ../../include/datetime.php:271 -msgid "year" -msgstr "שנה" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "בתול/ה" -#: ../../include/datetime.php:271 -msgid "years" -msgstr "שנים" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "סוטה" -#: ../../include/datetime.php:272 -msgid "month" -msgstr "חודש" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "פטיש" -#: ../../include/datetime.php:272 -msgid "months" -msgstr "חודשים" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "המון" -#: ../../include/datetime.php:273 -msgid "week" -msgstr "שבוע" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "לא מיני" -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "שבועות" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "רווק/ה" -#: ../../include/datetime.php:274 -msgid "day" -msgstr "יום" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "בודד" -#: ../../include/datetime.php:274 -msgid "days" -msgstr "ימים" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "זמין" -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "שעה" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "לא פנוי/ה" -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "שעות" - -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "דקה" - -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "דקות" - -#: ../../include/datetime.php:277 -msgid "second" -msgstr "שניה" - -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "שניות" - -#: ../../include/datetime.php:285 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "לפני %1$d %2$s" - -#: ../../include/datetime.php:519 -#, php-format -msgid "%1$s's birthday" +#: ../../include/selectors.php:123 +msgid "Has crush" msgstr "" -#: ../../include/datetime.php:520 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "מוקסם/ת" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" msgstr "" -#: ../../include/diaspora.php:2498 -msgid "Please choose" -msgstr "לבחירתך" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "לא נאמן/ה" -#: ../../include/diaspora.php:2500 -msgid "Agree" -msgstr "מסכים/ה" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "מכור/ה למין" -#: ../../include/diaspora.php:2502 -msgid "Disagree" -msgstr "לא מסכים/ה" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "" -#: ../../include/diaspora.php:2504 -msgid "Abstain" -msgstr "נמנע/ת" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "ארעי/ת" -#: ../../include/dimport.php:34 ../../include/identity.php:217 +#: ../../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/channel.php:32 +msgid "Unable to obtain identity information from database" +msgstr "" + +#: ../../include/channel.php:66 +msgid "Empty name" +msgstr "שם ריק" + +#: ../../include/channel.php:69 +msgid "Name too long" +msgstr "שם ארוך מדי" + +#: ../../include/channel.php:180 +msgid "No account identifier" +msgstr "אין מזהה חשבון" + +#: ../../include/channel.php:192 +msgid "Nickname is required." +msgstr "נדרש שם כינוי." + +#: ../../include/channel.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "" + +#: ../../include/channel.php:211 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/dir_fns.php:126 -msgid "Directory Options" +#: ../../include/channel.php:287 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "מצב בטוח" +#: ../../include/channel.php:345 +msgid "Default Profile" +msgstr "פרופיל שגרתי" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:428 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/connedit.php:647 -#: ../../mod/connedit.php:675 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "No" -msgstr "לא" +#: ../../include/channel.php:772 +msgid "Requested channel is not available." +msgstr "ערוץ מבוקש אינו זמין." -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:430 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "Yes" -msgstr "כן" +#: ../../include/channel.php:919 +msgid "Create New Profile" +msgstr "צור פרופיל חדש" -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" +#: ../../include/channel.php:939 +msgid "Visible to everybody" +msgstr "נראה לכל אחד" + +#: ../../include/channel.php:1012 ../../include/channel.php:1123 +msgid "Gender:" +msgstr "מין:" + +#: ../../include/channel.php:1013 ../../include/channel.php:1167 +msgid "Status:" +msgstr "מצב:" + +#: ../../include/channel.php:1014 ../../include/channel.php:1178 +msgid "Homepage:" +msgstr "עמוד בית:" + +#: ../../include/channel.php:1015 +msgid "Online Now" +msgstr "מקוון כעת" + +#: ../../include/channel.php:1128 +msgid "Like this channel" msgstr "" -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "" +#: ../../include/channel.php:1152 +msgid "j F, Y" +msgstr "j F, Y" -#: ../../include/enotify.php:96 +#: ../../include/channel.php:1153 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1160 +msgid "Birthday:" +msgstr "יום הולדת:" + +#: ../../include/channel.php:1173 #, php-format -msgid "%s " +msgid "for %1$d %2$s" msgstr "" -#: ../../include/enotify.php:100 +#: ../../include/channel.php:1176 +msgid "Sexual Preference:" +msgstr "העדפה מינית:" + +#: ../../include/channel.php:1182 +msgid "Tags:" +msgstr "תגיות:" + +#: ../../include/channel.php:1184 +msgid "Political Views:" +msgstr "השקפות פוליטיות:" + +#: ../../include/channel.php:1186 +msgid "Religion:" +msgstr "דת:" + +#: ../../include/channel.php:1190 +msgid "Hobbies/Interests:" +msgstr "תחביבים/עניין:" + +#: ../../include/channel.php:1192 +msgid "Likes:" +msgstr "אוהב:" + +#: ../../include/channel.php:1194 +msgid "Dislikes:" +msgstr "שונא:" + +#: ../../include/channel.php:1196 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1198 +msgid "My other channels:" +msgstr "הערוצים האחרים שלי:" + +#: ../../include/channel.php:1200 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1202 +msgid "Books, literature:" +msgstr "ספרים, ספרות:" + +#: ../../include/channel.php:1204 +msgid "Television:" +msgstr "טלוויזיה:" + +#: ../../include/channel.php:1206 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1208 +msgid "Love/Romance:" +msgstr "אהבה/רומנטיקה:" + +#: ../../include/channel.php:1210 +msgid "Work/employment:" +msgstr "עבודה/תעסוקה:" + +#: ../../include/channel.php:1212 +msgid "School/education:" +msgstr "בי״ס/חינוך:" + +#: ../../include/channel.php:1232 +msgid "Like this thing" +msgstr "" + +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "נראה לקהל השגרתי שלך" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "רק אני" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "ציבורי" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "[Red:Notify] New mail received at %s" +msgid "Any account on %s" +msgstr "כל חחשבון אצל %s" + +#: ../../include/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "כל חיבור מהחיבורים שלי" + +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "רק חיבורים אשר אני מתיר באופן מפורש" + +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "הודעה פרטית" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:272 -#, php-format +#: ../../include/PermissionDescription.php:161 msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +"This is your default setting for the audience of your normal stream, and " +"posts." msgstr "" -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" - -#: ../../include/enotify.php:287 -#, php-format +#: ../../include/PermissionDescription.php:162 msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." +"This is your default setting for who can view your default channel profile" msgstr "" -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "שם:" +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "תצלום:" +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" -#: ../../include/enotify.php:297 +#: ../../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 "כתובת דוא״ל לא תקינה" + +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "" + +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "" + +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "נדרשת הזמנה." + +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "אימות הזמנה לא התאפשר." + +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "אנא הזן את המידע הנחוץ." + +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "נכשל לאחסן מידע חשבון." + +#: ../../include/account.php:249 #, php-format -msgid "Please visit %s to approve or reject the suggestion." +msgid "Registration confirmation for %s" +msgstr "אימות רישום עבור %s" + +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "בקשת רישום אצל %s" + +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1896 +msgid "Administrator" +msgstr "מנהל" + +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "סיסמת רישום שלך" + +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "פרטי רישום עבור %s" + +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "חשבון אושר." + +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "רישום בוטל עבור %s" + +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "חשבון אומת. אנא התחבר." + +#: ../../include/account.php:723 ../../include/account.php:725 +msgid "Click here to upgrade." +msgstr "לחץ כאן כדי לשדרג." + +#: ../../include/account.php:731 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" +#: ../../include/account.php:736 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "אירוע זה התווסף ללוח שנה שלך." +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "פריט לא נמצא." -#: ../../include/features.php:38 +#: ../../include/attach.php:499 +msgid "No source file." +msgstr "אין קובץ מקור." + +#: ../../include/attach.php:521 +msgid "Cannot locate file to replace" +msgstr "" + +#: ../../include/attach.php:539 +msgid "Cannot locate file to revise/update" +msgstr "" + +#: ../../include/attach.php:674 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../include/attach.php:688 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "" + +#: ../../include/attach.php:846 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "" + +#: ../../include/attach.php:859 +msgid "Stored file could not be verified. Upload failed." +msgstr "" + +#: ../../include/attach.php:915 ../../include/attach.php:931 +msgid "Path not available." +msgstr "נתיב לא זמין." + +#: ../../include/attach.php:977 ../../include/attach.php:1129 +msgid "Empty pathname" +msgstr "שם נתיב ריק" + +#: ../../include/attach.php:1003 +msgid "duplicate filename or path" +msgstr "שם קובץ או נתיב כפול" + +#: ../../include/attach.php:1025 +msgid "Path not found." +msgstr "נתיב לא נמצא." + +#: ../../include/attach.php:1083 +msgid "mkdir failed." +msgstr "mkdir נכשל." + +#: ../../include/attach.php:1087 +msgid "database storage failed." +msgstr "אחסון מסד נתונים נכשל." + +#: ../../include/attach.php:1135 +msgid "Empty path" +msgstr "נתיב ריק" + +#: ../../include/features.php:48 msgid "General Features" -msgstr "" +msgstr "תכונות כלליות" -#: ../../include/features.php:40 +#: ../../include/features.php:50 msgid "Content Expiration" -msgstr "" +msgstr "פקיעת תוכן" -#: ../../include/features.php:40 +#: ../../include/features.php:50 msgid "Remove posts/comments and/or private messages at a future time" msgstr "" -#: ../../include/features.php:41 +#: ../../include/features.php:51 msgid "Multiple Profiles" -msgstr "" +msgstr "פרופילים מרובים" -#: ../../include/features.php:41 +#: ../../include/features.php:51 msgid "Ability to create multiple profiles" msgstr "" -#: ../../include/features.php:42 +#: ../../include/features.php:52 msgid "Advanced Profiles" -msgstr "" +msgstr "פרופיל מתקדמים" -#: ../../include/features.php:42 +#: ../../include/features.php:52 msgid "Additional profile sections and selections" msgstr "" -#: ../../include/features.php:43 +#: ../../include/features.php:53 msgid "Profile Import/Export" -msgstr "" +msgstr "יבוא/יצוא פרופיל" -#: ../../include/features.php:43 +#: ../../include/features.php:53 msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/features.php:44 +#: ../../include/features.php:54 msgid "Web Pages" msgstr "עמודי רשת" -#: ../../include/features.php:44 +#: ../../include/features.php:54 msgid "Provide managed web pages on your channel" msgstr "" -#: ../../include/features.php:45 +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "הסתר דירוג" + +#: ../../include/features.php:55 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "" + +#: ../../include/features.php:56 msgid "Private Notes" -msgstr "" +msgstr "פתקים פרטיים" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "" +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "מאפשר כלי לאחסון פתקים ותזכורות (הערה: לא מוצפן)" -#: ../../include/features.php:46 +#: ../../include/features.php:57 msgid "Navigation Channel Select" msgstr "" -#: ../../include/features.php:46 +#: ../../include/features.php:57 msgid "Change channels directly from within the navigation dropdown menu" msgstr "" -#: ../../include/features.php:47 +#: ../../include/features.php:58 msgid "Photo Location" msgstr "מיקום תצלום" -#: ../../include/features.php:47 +#: ../../include/features.php:58 msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/features.php:49 +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "" + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "ימי הולדת חכמים" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "" + +#: ../../include/features.php:61 msgid "Expert Mode" msgstr "מצב מומחה" -#: ../../include/features.php:49 +#: ../../include/features.php:61 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "" -#: ../../include/features.php:50 +#: ../../include/features.php:62 msgid "Premium Channel" -msgstr "" +msgstr "ערוץ פרמיה" -#: ../../include/features.php:50 +#: ../../include/features.php:62 msgid "" "Allows you to set restrictions and terms on those that connect with your " "channel" msgstr "" -#: ../../include/features.php:55 +#: ../../include/features.php:67 msgid "Post Composition Features" msgstr "" -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "" - -#: ../../include/features.php:58 +#: ../../include/features.php:70 msgid "Large Photos" -msgstr "" +msgstr "תצלומים גדולים" -#: ../../include/features.php:58 +#: ../../include/features.php:70 msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" msgstr "" -#: ../../include/features.php:59 +#: ../../include/features.php:71 msgid "Automatically import channel content from other channels or feeds" msgstr "" -#: ../../include/features.php:60 +#: ../../include/features.php:72 msgid "Even More Encryption" -msgstr "" +msgstr "אפילו עוד הצפנה" -#: ../../include/features.php:60 +#: ../../include/features.php:72 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "" -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "אפשר כלי הצבעה" -#: ../../include/features.php:61 +#: ../../include/features.php:73 msgid "Provide a class of post which others can vote on" msgstr "" -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" +#: ../../include/features.php:74 +msgid "Delayed Posting" msgstr "" -#: ../../include/features.php:68 +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "" + +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "" + +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "" + +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "סינון רשת וזרם" + +#: ../../include/features.php:82 msgid "Search by Date" msgstr "חפש לפי תאריך" -#: ../../include/features.php:68 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "מסנן אוספים" -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "מסנן אוספים" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "קבוצת פרטיות" -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" msgstr "" -#: ../../include/features.php:70 +#: ../../include/features.php:84 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "חיפושים שמורים" + +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "" -#: ../../include/features.php:71 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "" -#: ../../include/features.php:71 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: ../../include/features.php:72 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "" -#: ../../include/features.php:72 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "" -#: ../../include/features.php:73 +#: ../../include/features.php:87 msgid "Affinity Tool" -msgstr "" +msgstr "כלי קירבה" -#: ../../include/features.php:73 +#: ../../include/features.php:87 msgid "Filter stream activity by depth of relationships" msgstr "" -#: ../../include/features.php:74 +#: ../../include/features.php:88 msgid "Connection Filtering" -msgstr "" +msgstr "סינון חיבור" -#: ../../include/features.php:74 +#: ../../include/features.php:88 msgid "Filter incoming posts from connections based on keywords/content" msgstr "" -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "" - -#: ../../include/features.php:75 +#: ../../include/features.php:89 msgid "Show channel suggestions" -msgstr "" +msgstr "הצג הצעות ערוץ" -#: ../../include/features.php:80 +#: ../../include/features.php:94 msgid "Post/Comment Tools" msgstr "" -#: ../../include/features.php:81 -msgid "Tagging" +#: ../../include/features.php:95 +msgid "Community Tagging" msgstr "" -#: ../../include/features.php:81 +#: ../../include/features.php:95 msgid "Ability to tag existing posts" msgstr "" -#: ../../include/features.php:82 +#: ../../include/features.php:96 msgid "Post Categories" msgstr "" -#: ../../include/features.php:82 +#: ../../include/features.php:96 msgid "Add categories to your posts" msgstr "" -#: ../../include/features.php:83 +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:98 msgid "Ability to file posts under folders" msgstr "" -#: ../../include/features.php:84 +#: ../../include/features.php:99 msgid "Dislike Posts" msgstr "" -#: ../../include/features.php:84 +#: ../../include/features.php:99 msgid "Ability to dislike posts/comments" msgstr "" -#: ../../include/features.php:85 +#: ../../include/features.php:100 msgid "Star Posts" msgstr "" -#: ../../include/features.php:85 +#: ../../include/features.php:100 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/features.php:86 +#: ../../include/features.php:101 msgid "Tag Cloud" -msgstr "" +msgstr "ענן תגיות" -#: ../../include/features.php:86 +#: ../../include/features.php:101 msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." +#: ../../include/oembed.php:324 +msgid "Embedded content" +msgstr "תוכן מוטמע" + +#: ../../include/oembed.php:333 +msgid "Embedding disabled" +msgstr "הטמעה הינה מנוטרלת" + +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/follow.php:33 -msgid "Channel location missing." +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." msgstr "" -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." +#: ../../include/connections.php:95 +msgid "New window" +msgstr "חלון חדש" + +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים" + +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "משתמש '%s' נמחק" + +#: ../../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/follow.php:100 -msgid "Channel was deleted and no longer exists." +#: ../../include/acl_selectors.php:274 +msgid "Show" +msgstr "הצג" + +#: ../../include/acl_selectors.php:275 +msgid "Don't show" +msgstr "אל תציג" + +#: ../../include/acl_selectors.php:281 +msgid "Other networks and post services" +msgstr "שירותי רשת ופרסום אחרים" + +#: ../../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/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "מנותק." + +#: ../../include/auth.php:212 +msgid "Failed authentication" +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 "YYYY-MM-DD או MM-DD" + +#: ../../include/datetime.php:272 ../../boot.php:2471 +msgid "never" msgstr "" -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." +#: ../../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 "לפני %1$d %2$s" + +#: ../../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/follow.php:179 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "" - -#: ../../include/follow.php:224 -msgid "Cannot connect to yourself." -msgstr "" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "יום הולדת שמח %1$s" #: ../../include/group.php:26 msgid "" @@ -2999,335 +8913,29 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "" -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "הוסף חיבורים חדשים לקבוצת פרטיות זו" -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "כל הערוצים" - -#: ../../include/group.php:276 +#: ../../include/group.php:289 msgid "edit" msgstr "ערוך" -#: ../../include/group.php:298 -msgid "Collections" -msgstr "אוספים" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "ערוך קבוצה" -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "ערוך אוסף" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "הוסף קבוצת פרטיות" -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "הוסף אוסף חדש" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" msgstr "" -#: ../../include/identity.php:33 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/identity.php:67 -msgid "Empty name" -msgstr "שם ריק" - -#: ../../include/identity.php:70 -msgid "Name too long" -msgstr "שם ארוך מדי" - -#: ../../include/identity.php:186 -msgid "No account identifier" -msgstr "אין מזהה חשבון" - -#: ../../include/identity.php:198 -msgid "Nickname is required." -msgstr "נדרש שם כינוי." - -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/identity.php:292 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/identity.php:350 -msgid "Default Profile" -msgstr "פרופיל שגרתי" - -#: ../../include/identity.php:759 -msgid "Requested channel is not available." -msgstr "" - -#: ../../include/identity.php:806 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:27 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54 -#: ../../mod/hcard.php:8 ../../mod/layouts.php:29 ../../mod/webpages.php:29 -msgid "Requested profile is not available." -msgstr "" - -#: ../../include/identity.php:969 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "" - -#: ../../include/identity.php:975 -msgid "Profiles" -msgstr "פרופילים" - -#: ../../include/identity.php:975 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../include/identity.php:976 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "צור פרופיל חדש" - -#: ../../include/identity.php:991 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "תמונת פרופיל" - -#: ../../include/identity.php:994 -msgid "visible to everybody" -msgstr "" - -#: ../../include/identity.php:995 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "" - -#: ../../include/identity.php:1011 ../../include/identity.php:1250 -msgid "Gender:" -msgstr "מין:" - -#: ../../include/identity.php:1012 ../../include/identity.php:1294 -msgid "Status:" -msgstr "מצב:" - -#: ../../include/identity.php:1013 ../../include/identity.php:1305 -msgid "Homepage:" -msgstr "עמוד בית:" - -#: ../../include/identity.php:1014 -msgid "Online Now" -msgstr "מקוון כעת" - -#: ../../include/identity.php:1097 ../../include/identity.php:1175 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "" - -#: ../../include/identity.php:1098 ../../include/identity.php:1176 -msgid "F d" -msgstr "" - -#: ../../include/identity.php:1143 ../../include/identity.php:1215 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[היום]" - -#: ../../include/identity.php:1154 -msgid "Birthday Reminders" -msgstr "" - -#: ../../include/identity.php:1155 -msgid "Birthdays this week:" -msgstr "" - -#: ../../include/identity.php:1208 -msgid "[No description]" -msgstr "[אין תיאור]" - -#: ../../include/identity.php:1226 -msgid "Event Reminders" -msgstr "" - -#: ../../include/identity.php:1227 -msgid "Events this week:" -msgstr "" - -#: ../../include/identity.php:1248 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "שם מלא:" - -#: ../../include/identity.php:1255 -msgid "Like this channel" -msgstr "" - -#: ../../include/identity.php:1279 -msgid "j F, Y" -msgstr "" - -#: ../../include/identity.php:1280 -msgid "j F" -msgstr "" - -#: ../../include/identity.php:1287 -msgid "Birthday:" -msgstr "יום הולדת:" - -#: ../../include/identity.php:1291 ../../mod/directory.php:297 -msgid "Age:" -msgstr "גיל:" - -#: ../../include/identity.php:1300 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/identity.php:1303 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "העדפה מינית:" - -#: ../../include/identity.php:1307 ../../mod/profiles.php:693 -#: ../../mod/directory.php:313 -msgid "Hometown:" -msgstr "עיר מגורים:" - -#: ../../include/identity.php:1309 -msgid "Tags:" -msgstr "תגיות:" - -#: ../../include/identity.php:1311 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "השקפות פוליטיות:" - -#: ../../include/identity.php:1313 -msgid "Religion:" -msgstr "דת:" - -#: ../../include/identity.php:1315 ../../mod/directory.php:315 -msgid "About:" -msgstr "אודות:" - -#: ../../include/identity.php:1317 -msgid "Hobbies/Interests:" -msgstr "תחביבים/עניין:" - -#: ../../include/identity.php:1319 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "אוהב:" - -#: ../../include/identity.php:1321 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "שונא:" - -#: ../../include/identity.php:1323 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/identity.php:1325 -msgid "My other channels:" -msgstr "" - -#: ../../include/identity.php:1327 -msgid "Musical interests:" -msgstr "" - -#: ../../include/identity.php:1329 -msgid "Books, literature:" -msgstr "" - -#: ../../include/identity.php:1331 -msgid "Television:" -msgstr "טלוויזיה:" - -#: ../../include/identity.php:1333 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/identity.php:1335 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/identity.php:1337 -msgid "Work/employment:" -msgstr "" - -#: ../../include/identity.php:1339 -msgid "School/education:" -msgstr "" - -#: ../../include/identity.php:1359 -msgid "Like this thing" -msgstr "" - -#: ../../include/items.php:413 ../../mod/bulksetclose.php:11 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../index.php:396 -msgid "Permission denied" -msgstr "" - -#: ../../include/items.php:1101 ../../include/items.php:1147 -msgid "(Unknown)" -msgstr "(לא ידוע)" - -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "נראה לכל אחד באינטרנט." - -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "נראה לך בלבד." - -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "נראה לכל אחד ברשת זו." - -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "נראה לכל מי שהוא מאומת." - -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "נראה לכל אחד אצל %s." - -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "נראה לכל החיבורים." - -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "נראה לחיבורים מאושרים." - -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "נראה לחיבורים מסוימים." - -#: ../../include/items.php:4310 ../../mod/admin.php:167 -#: ../../mod/admin.php:1025 ../../mod/admin.php:1225 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:74 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "פריט לא נמצא." - -#: ../../include/items.php:4787 ../../mod/bulksetclose.php:51 -#: ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "אוסף לא נמצא." - -#: ../../include/items.php:4803 -msgid "Collection is empty." -msgstr "אוסף הינו ריק." - -#: ../../include/items.php:4810 -#, php-format -msgid "Collection: %s" -msgstr "אוסף: %s" - -#: ../../include/items.php:4820 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "חיבור: %s" - -#: ../../include/items.php:4822 -msgid "Connection not found." -msgstr "חיבור לא נמצא." +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "להוסיף" #: ../../include/js_strings.php:5 msgid "Delete this item?" @@ -3353,7 +8961,7 @@ msgstr "סיסמה קצרה מדי" msgid "Passwords do not match" msgstr "סיסמאות לא תואמות" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "כולם" @@ -3381,11 +8989,6 @@ msgstr "אין דבר חדש כאן" msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/js_strings.php:20 ../../mod/connedit.php:683 -#: ../../mod/rate.php:156 -msgid "Rating" -msgstr "" - #: ../../include/js_strings.php:21 msgid "Describe (optional)" msgstr "תאר (רשות)" @@ -3398,109 +9001,524 @@ msgstr "" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:27 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:28 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:29 msgid "ago" msgstr "לפני" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:30 msgid "from now" msgstr "מעכשיו" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:31 msgid "less than a minute" msgstr "פחות מדקה" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:32 msgid "about a minute" msgstr "דקה לערך" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:33 #, php-format msgid "%d minutes" msgstr "%d דקות" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:34 msgid "about an hour" msgstr "שעה לערך" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:35 #, php-format msgid "about %d hours" msgstr " %d שעות לערך" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:36 msgid "a day" msgstr "יום" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:37 #, php-format msgid "%d days" msgstr "%d ימים" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:38 msgid "about a month" msgstr "חודש לערך" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:39 #, php-format msgid "%d months" msgstr "%d חודשים" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:40 msgid "about a year" msgstr "שנה לערך" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:41 #, php-format msgid "%d years" msgstr "%d שנים" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:42 msgid " " msgstr " " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:43 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/page_widgets.php:6 +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "מאי" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "ינו׳" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "פבר׳" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "מרץ" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "אפר׳" + +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "מאי" + +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "יונ׳" + +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "יול׳" + +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "אוג׳" + +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "ספט׳" + +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "אוק׳" + +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "נוב׳" + +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "דצמ׳" + +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "א׳" + +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "ב׳" + +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "ג׳" + +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "ד׳" + +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "ה׳" + +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "ו׳" + +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "ש׳" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "היום" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "חודש" + +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "שבוע" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "יום" + +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "כל היום" + +#: ../../include/network.php:682 +msgid "view full size" +msgstr "צפה בגודל מלא" + +#: ../../include/network.php:1910 +msgid "No Subject" +msgstr "אין נושא" + +#: ../../include/network.php:2171 ../../include/network.php:2172 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2173 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2174 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2175 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2177 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2178 +msgid "Facebook" +msgstr "פייסבוק" + +#: ../../include/network.php:2179 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:2180 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2181 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2182 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/items.php:902 ../../include/items.php:947 +msgid "(Unknown)" +msgstr "(לא ידוע)" + +#: ../../include/items.php:1146 +msgid "Visible to anybody on the internet." +msgstr "נראה לכל אחד באינטרנט." + +#: ../../include/items.php:1148 +msgid "Visible to you only." +msgstr "נראה לך בלבד." + +#: ../../include/items.php:1150 +msgid "Visible to anybody in this network." +msgstr "נראה לכל אחד ברשת זו." + +#: ../../include/items.php:1152 +msgid "Visible to anybody authenticated." +msgstr "נראה לכל מי שהוא מאומת." + +#: ../../include/items.php:1154 +#, php-format +msgid "Visible to anybody on %s." +msgstr "נראה לכל אחד אצל %s." + +#: ../../include/items.php:1156 +msgid "Visible to all connections." +msgstr "נראה לכל החיבורים." + +#: ../../include/items.php:1158 +msgid "Visible to approved connections." +msgstr "נראה לחיבורים מאושרים." + +#: ../../include/items.php:1160 +msgid "Visible to specific connections." +msgstr "נראה לחיבורים מסוימים." + +#: ../../include/items.php:3920 +msgid "Privacy group is empty." +msgstr "קבוצת פרטיות הינה ריקה" + +#: ../../include/items.php:3927 +#, php-format +msgid "Privacy group: %s" +msgstr "קבוצת פרטיות: %s" + +#: ../../include/items.php:3939 +msgid "Connection not found." +msgstr "חיבור לא נמצא." + +#: ../../include/items.php:4305 +msgid "profile photo" +msgstr "תצלום פרופיל" + +#: ../../include/page_widgets.php:7 msgid "New Page" msgstr "עמוד חדש" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" -msgstr "תצוגה" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "פעולות" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "קישור עמוד" - -#: ../../include/page_widgets.php:43 +#: ../../include/page_widgets.php:46 msgid "Title" msgstr "כותרת" -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:108 ../../mod/webpages.php:192 -msgid "Created" -msgstr "נוצר" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "מערכת" -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:109 ../../mod/webpages.php:193 -msgid "Edited" -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 "דוגמאות: bob@example.com, https://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "תזכירים" + +#: ../../include/widgets.php:273 +msgid "Remove term" +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:622 +msgid "Premium Channel Settings" +msgstr "הגדרות ערוץ פרמיה" + +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "תפריט דואר פרטי" + +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "תצוגה משולבת" + +#: ../../include/widgets.php:685 ../../include/widgets.php:697 +msgid "Conversations" +msgstr "דיונים" + +#: ../../include/widgets.php:689 +msgid "Received Messages" +msgstr "הודעות שנתקבלו" + +#: ../../include/widgets.php:693 +msgid "Sent Messages" +msgstr "הודעות שנשלחו" + +#: ../../include/widgets.php:707 +msgid "No messages." +msgstr "אין הודעות." + +#: ../../include/widgets.php:725 +msgid "Delete conversation" +msgstr "מחק דיון" + +#: ../../include/widgets.php:751 +msgid "Events Menu" +msgstr "תפריט אירועים" + +#: ../../include/widgets.php:752 +msgid "Day View" +msgstr "תצוגת יום" + +#: ../../include/widgets.php:753 +msgid "Week View" +msgstr "תצוגת שבוע" + +#: ../../include/widgets.php:754 +msgid "Month View" +msgstr "תצוגת חודש" + +#: ../../include/widgets.php:766 +msgid "Events Tools" +msgstr "כלי אירוע" + +#: ../../include/widgets.php:767 +msgid "Export Calendar" +msgstr "יצא לוח שנה" + +#: ../../include/widgets.php:768 +msgid "Import Calendar" +msgstr "יבא לוח שנה" + +#: ../../include/widgets.php:846 +msgid "Overview" +msgstr "סקירה" + +#: ../../include/widgets.php:853 +msgid "Chat Members" +msgstr "חברי שיחה" + +#: ../../include/widgets.php:875 +msgid "Wiki List" +msgstr "רשימת ויקי" + +#: ../../include/widgets.php:913 +msgid "Wiki Pages" +msgstr "עמודי ויקי" + +#: ../../include/widgets.php:948 +msgid "Bookmarked Chatrooms" +msgstr "חדרי שיחה מסומנים" + +#: ../../include/widgets.php:971 +msgid "Suggested Chatrooms" +msgstr "חדרי שיחה מוצעים" + +#: ../../include/widgets.php:1117 ../../include/widgets.php:1229 +msgid "photo/image" +msgstr "תצלום/תמונה" + +#: ../../include/widgets.php:1172 +msgid "Click to show more" +msgstr "לחץ כדי להציג עוד" + +#: ../../include/widgets.php:1323 +msgid "Rating Tools" +msgstr "כלי דירוג" + +#: ../../include/widgets.php:1327 ../../include/widgets.php:1329 +msgid "Rate Me" +msgstr "דרג אותי" + +#: ../../include/widgets.php:1332 +msgid "View Ratings" +msgstr "צפה בדירוגים" + +#: ../../include/widgets.php:1389 +msgid "Forums" +msgstr "פורומים" + +#: ../../include/widgets.php:1418 +msgid "Tasks" +msgstr "משימות" + +#: ../../include/widgets.php:1427 +msgid "Documentation" +msgstr "תיעוד" + +#: ../../include/widgets.php:1429 +msgid "Project/Site Information" +msgstr "מידע פרויקט/אתר" + +#: ../../include/widgets.php:1430 +msgid "For Members" +msgstr "לחברים" + +#: ../../include/widgets.php:1431 +msgid "For Administrators" +msgstr "למנהלים" + +#: ../../include/widgets.php:1432 +msgid "For Developers" +msgstr "למפתחים" + +#: ../../include/widgets.php:1456 ../../include/widgets.php:1494 +msgid "Member registrations waiting for confirmation" +msgstr "רישומי חברות אשר ממתינים לאישור" + +#: ../../include/widgets.php:1462 +msgid "Inspect queue" +msgstr "" + +#: ../../include/widgets.php:1464 +msgid "DB updates" +msgstr "עדכוני מסד נתונים" + +#: ../../include/widgets.php:1490 +msgid "Plugin Features" +msgstr "תכונות תוסף" #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" @@ -3511,5658 +9529,365 @@ msgid "Can view my default channel profile" msgstr "" #: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "" - -#: ../../include/permissions.php:29 msgid "Can view my connections" msgstr "" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" msgstr "" -#: ../../include/permissions.php:31 +#: ../../include/permissions.php:30 msgid "Can view my webpages" msgstr "" -#: ../../include/permissions.php:34 +#: ../../include/permissions.php:33 msgid "Can send me their channel stream and posts" msgstr "" -#: ../../include/permissions.php:35 +#: ../../include/permissions.php:34 msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/permissions.php:36 +#: ../../include/permissions.php:35 msgid "Can comment on or like my posts" msgstr "" -#: ../../include/permissions.php:37 +#: ../../include/permissions.php:36 msgid "Can send me private mail messages" msgstr "" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "" - -#: ../../include/permissions.php:39 +#: ../../include/permissions.php:37 msgid "Can like/dislike stuff" msgstr "" -#: ../../include/permissions.php:39 +#: ../../include/permissions.php:37 msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/permissions.php:41 +#: ../../include/permissions.php:39 msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/permissions.php:41 +#: ../../include/permissions.php:39 msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/permissions.php:42 +#: ../../include/permissions.php:40 msgid "Can chat with me (when available)" -msgstr "" +msgstr "מסוגל לשוחח עמי (כאשר זמין)" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -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 edit my webpages" -msgstr "" - -#: ../../include/permissions.php:46 msgid "Can source my public posts in derived channels" msgstr "" -#: ../../include/permissions.php:46 +#: ../../include/permissions.php:44 msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/permissions.php:48 +#: ../../include/permissions.php:46 msgid "Can administer my channel resources" msgstr "" -#: ../../include/permissions.php:48 +#: ../../include/permissions.php:46 msgid "" "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/permissions.php:893 +#: ../../include/permissions.php:877 msgid "Social Networking" msgstr "רשת חברתית" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "חברתי - ציבורי בעיקר" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "חברתי - מוגבל" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "פרטי" +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "חברתי - פרטי" -#: ../../include/permissions.php:894 +#: ../../include/permissions.php:878 msgid "Community Forum" -msgstr "" +msgstr "פורום קהילה" -#: ../../include/permissions.php:895 +#: ../../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:896 +#: ../../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:896 -msgid "Celebrity/Soapbox" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" msgstr "" -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "" - -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "אחר" - -#: ../../include/permissions.php:897 +#: ../../include/permissions.php:881 msgid "Custom/Expert Mode" msgstr "" -#: ../../include/photos.php:94 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:101 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "" - -#: ../../include/photos.php:199 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:363 -msgid "Upload New Photos" -msgstr "העלה תצלומים חדשים" - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "תגיות" - -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "מילות מפתח" - -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "זכר" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "נקבה" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "כעת זכר" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "כעת נקבה" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "בעיקר זכר" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "בעיקר נקבה" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "טרנסג׳נדר" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "בין מיני" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "טרנסקסואל" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "אנדרוגיני" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "ניטראלי" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "זכרים" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "נקבות" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "הומו" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "לסבית" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "אין העדפה" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "דו מיני" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "בתול/ה" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "סוטה" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "פטיש" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "המון" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "לא מיני" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "רווק/ה" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "בודד" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "זמין" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "לא פנוי/ה" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "מוקסם/ת" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "לא נאמן/ה" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "מכור/ה למין" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "ארעי/ת" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "מאורס/ת" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "נישואין" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "נישואין דמיוניים" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "חיים יחדיו" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "שמח" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "לא מחפש/ת" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "בליין/ית" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "נבגד/ת" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "פרוד/ה" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "בלתי יציב" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "גירושין" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "גירושין דמיוניים" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "אלמן/ה" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "זה מורכב" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "לא משנה" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "תשאלו אותי" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "הודעה נמחקה." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "הודעה הוחזרה." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "שלח הודעה פרטית" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "לכבוד:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "נושא:" - -#: ../../mod/mail.php:235 ../../mod/mail.php:348 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "הודעתך:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "שלח" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "הודעה לא נמצאה." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "מחק הודעה" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "בטל הודעה" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "" - -#: ../../mod/mail.php:336 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "מחק דיון" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "שלח משוב" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "" - -#: ../../mod/page.php:36 ../../mod/block.php:27 -msgid "Invalid item." -msgstr "פריט שגוי." - -#: ../../mod/page.php:52 ../../mod/block.php:39 ../../mod/wall_upload.php:29 -msgid "Channel not found." -msgstr "" - -#: ../../mod/page.php:89 ../../mod/block.php:75 ../../mod/display.php:110 -#: ../../mod/help.php:79 ../../index.php:245 -msgid "Page not found." -msgstr "עמוד לא נמצא." - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "רשת" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "אתר" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "חשבונות" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "ערוצים" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "תוספות" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "ערכות נושא" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "יומנים" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# חשבונות" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# חשבונות חסומים" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# ערוצים" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# שיבוטים" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "הנהלה" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "סיכום" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "חשבונות רשומים" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "ערוצים רשומים" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "תוספים פעילים" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "גרסא" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "רישום" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "מדינויות" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "שם אתר" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "מידע מנהל" - -#: ../../mod/admin.php:463 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "שפת מערכת" - -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "מוטיב מערכת" - -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "אפשר פרוטוקול Diaspora" - -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "" - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "" - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "" - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "לא נמצא שרת" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "מזהה" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "לערוץ" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "בשרת" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "מצב" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "שרת" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "עדיפות" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "חשבון לא נמצא" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "חשבון '%s' נמחק" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "חשבון '%s' נחסם" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "חשבון '%s' נפתח" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "משתמשים" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "בחר הכל" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "הרשמות משתמש אשר ממתינות לאישור" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "אין הרשמות." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "לאסור" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "חסום" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "בטל חסימה" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "ערוץ לא נמצא" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "" - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "" - -#: ../../mod/admin.php:994 ../../mod/profiles.php:447 -msgid "Address" -msgstr "כתובת" - -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "מחבר: " - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "מתחזק: " - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "לא נמצאו מוטיבים." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "צילום מסך" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[ניסיוני]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[לא נתמך]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "טהר" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "דיבאג" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "קובץ יומן" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "" - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "טיפוס קלט" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "שם שדה" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "טקסט עזרה" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "מידע נוסף (רשות)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "" - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "" - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "עורך תצורה" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "אנא התחבר כדי להמשיך." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "" - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "אפליקציה מותקנת." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "אפליקציה פגומה." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "ערוך אפליקציה" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "צור אפליקציה" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "שם של אפליקציה" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "תיאור" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "אלבום לא נמצא." - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "מחק אלבום" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "מחק תצלום" - -#: ../../mod/photos.php:441 ../../mod/directory.php:59 -#: ../../mod/display.php:13 ../../mod/ratings.php:82 ../../mod/search.php:13 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "" - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "לא נבחרו תצלומים" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/photos.php:535 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "העלה תצלומים" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "הזן שם אלבום חדש" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "או בחר באחד קיים (לחיצה כפולה)" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "תצלומי איש קשר" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "צפה בתצלום" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "ערוך אלבום" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "תצלום לא זמין" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "תצלום פרטי" - -#: ../../mod/photos.php:839 ../../mod/events.php:505 -msgid "Previous" -msgstr "קודם" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:848 ../../mod/events.php:506 ../../mod/setup.php:281 -msgid "Next" -msgstr "הבא" - -#: ../../mod/photos.php:887 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "הסר" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "ערוך תצלום" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "דברי הסבר" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "הוסף תגית" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "מפה" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "פריט לא נמצא." - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "דחוף/עורר" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "דחוף, עורר או עשה דברים אחרים למישהו" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "סימנייה התווספה" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "הסימניות שלי" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "סימניות החיבורים שלי" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "צור ערוץ חדש" - -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "ערוץ נוכחי" - -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "" - -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "ערוץ שגרתי" - -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "הפוך לשגרתי" - -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d הודעות חדשות" - -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "" - -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "" - -#: ../../mod/bulksetclose.php:89 ../../mod/group.php:196 -msgid "Members" -msgstr "חברים" - -#: ../../mod/bulksetclose.php:91 ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "" - -#: ../../mod/bulksetclose.php:126 ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "" - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "הצבעה" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "צפה בתוצאות" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "" - -#: ../../mod/post.php:287 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "עזוב חדר" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "מחק את חדר זה" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "אני נעדר/ת ברגע זה" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "אני במצב מקוון" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "סמן את חדר זה" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "חדר שיחה חדש" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "שם חדר שיחה" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "חדרי שיחה של %1$s" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "נעדר" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "מקוון" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "אין ערוץ." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "חיבורים מצויים" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "" - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "תצלום לא זמין." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "העלה קובץ:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "בחר פרופיל:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "או" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "דלג על צעד זה" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "" - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "המשך" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "" - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "" - -#: ../../mod/notifications.php:51 ../../mod/connedit.php:539 -msgid "Ignore" -msgstr "התעלמות" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "" - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "מוסתר" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "חיבורים חדשים" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "כל החיבורים" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "פרופיל לא נמצא." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "פרופיל נמחק." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "פרופיל-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "פרופיל חדש נוצר." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "" - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "דת" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "השקפות פוליטיות" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "מין" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "העדפה מינית" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "עמוד בית" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "" - -#: ../../mod/profiles.php:454 ../../mod/pubsites.php:26 -msgid "Location" -msgstr "מיקום" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "שבט את פרופיל זה" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "מחק את פרופיל זה" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "שם פרופיל:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "שמך המלא:" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "כותרת/תיאור:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "המין שלך:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "יום הולדת:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "כתובת רחוב:" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "ארץ:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr "" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "מילות מפתח:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "" - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "טלוויזיה" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "" - -#: ../../mod/profiles.php:728 -msgid "Age: " -msgstr "גיל: " - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "" - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "" - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "" - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "" - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "" - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "" - -#: ../../mod/connedit.php:550 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "הסתר" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "חיבור זה הינו מוסתר!" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "מחק את חיבור זה" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "אשר את חיבור זה" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "אשר חיבור כדי להתיר תקשורת" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "" - -#: ../../mod/connedit.php:680 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "" - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "" - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "" - -#: ../../mod/connedit.php:705 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "ההגדרות שלהם" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "ההגדרות שלי" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "" - -#: ../../mod/connedit.php:711 -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 "" - -#: ../../mod/connedit.php:712 -msgid "" -"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." -msgstr "" - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "" - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "ערוץ $Projectname" - -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/directory.php:245 -msgid "Gender: " -msgstr "מין: " - -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "מצב: " - -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "עמוד בית: " - -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "תיאור:" - -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "פורום פומבי:" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "מילות מפתח: " - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "אל תציע" - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "חיבורים שכיחים:" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "ספרייה גלובלית" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "ספרייה מקומית" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "עמוד הבא" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "עמוד קודם" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "אפשרויות מיון" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "אלפבתי" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links may " -"provide additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "URL אתר" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "טיפוס גישה" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "מדיניות רישום" - -#: ../../mod/pubsites.php:26 -msgid "Project" -msgstr "פרויקט" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "" - -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45 -msgid "This site is not a directory server" -msgstr "" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "" - -#: ../../mod/editblock.php:78 ../../mod/editblock.php:94 -#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "פריט לא נמצא" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "" - -#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 -#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:187 -msgid "Insert YouTube video" -msgstr "הכנס וידאו YouTube" - -#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:188 -msgid "Insert Vorbis [.ogg] video" -msgstr "הכנס וידאו Vorbis [.ogg]‎" - -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:189 -msgid "Insert Vorbis [.ogg] audio" -msgstr "הכנס אודיו Vorbis [.ogg]‎" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "" - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "פריט אינו עריך." - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "למחוק פריט?" - -#: ../../mod/editpost.php:158 ../../mod/rpost.php:131 -msgid "Edit post" -msgstr "ערוך פוסט" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "למחוק עמוד רשת?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "ערוך עמוד רשת" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "אתר רשת:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "" - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "" - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "" - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "" - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "" - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "אירוע לא נמצא." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "ערוך אירוע" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "מחק אירוע" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "לוח שנה" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "צור אירוע חדש" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "יצא" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "יבא" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "אירוע הוסר" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "נכשל להסיר אירוע" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "פרטי אירוע" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "אירוע מתחיל:" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "אירוע מסתיים:" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:680 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "" - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "כותרת:" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "שתף את אירוע זה" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "אתר רשת:" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "תיאור: " - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- בחר -" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "" - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "קובץ לא נמצא." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "שתף את קובץ זה" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "הצג URL לקובץ זה" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "" - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "" - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "תנאי שימוש" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "אני מקבל את ה%s לאתר רשת זה" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "כתובת דוא״ל שלך" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "בחר סיסמה" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "בבקשה הזן שוב את סיסמתך" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "איש קשר לא נמצא." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "אנא התחבר." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "" - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "" - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "" - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "שם אוסף: " - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "אוסף הוסר." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "לא מסוגל להסיר אוסף." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "הסר את חשבון זה" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "אזהרה: " - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "הסר חשבון" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "עזרה:" - -#: ../../mod/help.php:76 ../../index.php:242 -msgid "Not Found" -msgstr "לא נמצא" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "תיעוד $Projectname" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "" - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeme.php:61 ../../mod/settings.php:1137 -msgid "Remove Channel" -msgstr "הסר ערוץ" - -#: ../../mod/home.php:58 ../../mod/home.php:66 ../../mod/siteinfo.php:155 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "ברוכים הבאים אל %s" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "" - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "שם פרטי" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "שם משפחה" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "שם כינוי" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "שם מלא" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "שנת הולדת" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "חודש הולדת" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "יום הולדת" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "יום הולדת" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "" - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "אין דבר ליבא." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "" - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "" - -#: ../../mod/import.php:115 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../mod/import.php:135 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "" - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "" - -#: ../../mod/import.php:580 -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 "" - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "" - -#: ../../mod/import.php:586 -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 "" - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../mod/import.php:588 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "" - -#: ../../mod/import.php:589 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "שלח הזמנות" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "הזן כתובות דוא״ל, אחת בכל שורה:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "או בקר " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. לחץ [התחבר]" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "נדרש שם" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "הגדרות פוליסת Diaspora עודכנו." - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "סיסמה שונתה." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "עדכון סיסמה נכשל. אנא נסה שוב." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "לא דוא״ל תקף." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "כתובת דוא״ל מוגנת. לא מסוגל לשנות לדוא״ל זה." - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "הגדרות עודכנו." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "הוסף אפליקציה" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "שם של אפליקציה" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "מפתח צרכן" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "סוד צרכן" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "" - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "" - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "אפליקציות מחוברות" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "אין שם" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "" - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "הגדרות חשבון" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "הזן סיסמה חדשה:" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "אמת סיסמה חדשה:" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "כתובת דוא״ל:" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "" - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "הגדרות ערוץ" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "הגדרות בסיסיות" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "תוכן מבוגרים" - -#: ../../mod/settings.php:1062 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../mod/settings.php:1072 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "" - -#: ../../mod/settings.php:1076 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "הגדרות פרטיות מתקדמות" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/settings.php:1083 ../../mod/mitem.php:155 ../../mod/mitem.php:227 -msgid "(click to open/close)" -msgstr "(לחץ כדי לפתוח/לסגור)" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "הגדרות התראה" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "פעילות מטריצה לא נראית" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "פעילות ערוץ לא נראית" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "הודעות ערוץ לא נראות" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "חיבורים חדשים" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "הרשמות מערכת" - -#: ../../mod/settings.php:1125 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "הסר את ערוץ זה." - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "לא מסוגל לאתר פוסט מקורי." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "" - -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr "" - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "" - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "" - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "" - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "" - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "" - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "בדוק שוב" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "חיבור מסד נתונים" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "" - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "פורט מסד נתונים" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "שם מסד נתונים" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "טיפוס מסד נתונים" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "" - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "הגדרות אתר" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "" - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "" - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../mod/setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "" - -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "" - -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "" - -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" - -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "" - -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "" - -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "" - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "" - -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:536 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "" - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: ../../mod/setup.php:548 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../mod/setup.php:566 -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 "" - -#: ../../mod/setup.php:567 -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 "" - -#: ../../mod/setup.php:568 -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 "" - -#: ../../mod/setup.php:569 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "" - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php הינו כתיב" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../mod/setup.php:587 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "" - -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "" - -#: ../../mod/setup.php:589 -#, 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 "" - -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" -msgstr "%s הינו כתיב" - -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "" - -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "" - -#: ../../mod/setup.php:645 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "" - -#: ../../mod/setup.php:646 -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 "" - -#: ../../mod/setup.php:647 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "" - -#: ../../mod/setup.php:648 -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 "" - -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "" - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "הוכחת תקפות של תעודת SSL" - -#: ../../mod/setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "" - -#: ../../mod/setup.php:670 -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 "" - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

מה הלאה

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "הורד קובץ PDL" - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "חדש" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "הסר את כל הקבצים" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "הסר את קובץ זה" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "" - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "" - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "בקשה שגויה." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "דבר" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "עמוד לא זמין." - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "" - -#: ../../mod/like.php:401 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:403 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:405 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "פעולה הושלמה." - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "תודה." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "תגית: " - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "" - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "סוגיות $projectname" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "מנהלי אתר" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "מיקום לא נמצא." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "" - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "לא נמצאו מיקומים." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "מיקום (כתובת)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "" - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "מקור חדש" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "שם ערוץ" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "מקור לא נמצא." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "ערוך מקור" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "מחק מקור" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "מקור הוסר" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "חבר אתר (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:86 ../../boot.php:1559 -msgid "Password Reset" -msgstr "איפוס סיסמה" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "הסיסמה החדשה שלך היא" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "לחץ כאן כדי להיכנס" - -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "שכחת את הסיסמה שלך?" - -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "כתובת דוא״ל" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "אפס" - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "" - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "" - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "שם תפריט" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "כותרת תפריט" - -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" -msgstr "" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "ערוך תכני תפריט" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "ערוך את תפריט זה" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "תפריט לא יכול היה להימחק." - -#: ../../mod/menu.php:138 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "תפריט לא נמצא." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "ערוך תפריט" +#: ../../include/activities.php:41 +msgid " and " +msgstr " וגם " -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "שם תפריט" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "כותרת תפריט" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "" - -#: ../../mod/menu.php:160 ../../mod/mitem.php:116 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "לא נמצא." - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "אין הודעות." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "" - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "" - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "" - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "שם קישור" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../mod/mitem.php:158 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "פתח בתוך חלון חדש" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "תפריט:" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "ערוך תפריט" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "ערוך אלמנט" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "אלמנט חדש" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "" - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "" - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "אוסף: " - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "חיבור: " - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "חיבור שגוי." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "הוסף ערוץ" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "" - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "" - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "טיפוס ערוץ" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "פרופיל ציבורי" -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "" - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "" - -#: ../../mod/thing.php:203 +#: ../../include/activities.php:58 #, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "פריט לא נמצא" - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "בחר פרופיל" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "פרסם פעילות" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "" - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "" - -#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 -msgid "Export Channel" -msgstr "" - -#: ../../mod/uexport.php:52 -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 "" - -#: ../../mod/uexport.php:53 -msgid "Export Content" -msgstr "" - -#: ../../mod/uexport.php:54 -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 "" - -#: ../../mod/uexport.php:55 -msgid "Export your posts from a given year or month:" -msgstr "" - -#: ../../mod/uexport.php:57 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Click on one of the recent years or months below." -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jan" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Feb" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Mar" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Apr" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jun" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jul" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Aug" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Sep" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Oct" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Nov" -msgstr "" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Dec" -msgstr "" - -#: ../../mod/uexport.php:60 -msgid "" -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../mod/uexport.php:61 +#: ../../include/activities.php:59 #, php-format -msgid "" -"Or adjust the date in your browser location bar to select other dates. For " -"example the year 2013; %1$s/2013 or the month " -"September 2013; %1$s/2013/9" -msgstr "" - -#: ../../mod/uexport.php:62 -msgid "Please visit" -msgstr "אנא בקר" - -#: ../../mod/uexport.php:62 -msgid "on another hub to import the backup files(s)." -msgstr "" - -#: ../../mod/uexport.php:63 -msgid "" -"We advise you to clone the channel on the new hub first and than to import " -"the backup file(s) (from the same channel) in chronological order. Importing" -" the backup files into another channel will certainly give permission " -"issues." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 -#: ../../mod/update_public.php:21 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "אין חיבורים." - -#: ../../mod/viewconnections.php:75 +#: ../../include/activities.php:62 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "כותרת עמוד" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "תצריפים:" -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" msgstr "" -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "" +#: ../../include/api.php:1326 +msgid "Public Timeline" +msgstr "ציר זמן ציבורי" #: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" +msgid "Focus (Hubzilla default)" msgstr "" #: ../../view/theme/redbasic/php/config.php:103 +msgid "Theme settings" +msgstr "הגדרות ערכת נושא" + +#: ../../view/theme/redbasic/php/config.php:104 msgid "Select scheme" msgstr "" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Narrow navbar" msgstr "" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Navigation bar background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Navigation bar gradient top color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Navigation bar gradient bottom color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Navigation active button gradient top color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Navigation active button gradient bottom color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Navigation bar border color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar active icon color " msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:114 msgid "link color" msgstr "צבע קישור" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set font-color for banner" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background color" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Set the background image" msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Set the background color of items" msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Set the background color of comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:120 msgid "Set the border color of comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set the indent for comments" msgstr "" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the basic color for item icons" msgstr "" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the hover color for item icons" msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set font-size for the entire application" msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Example: 14px" -msgstr "" +msgstr "דוגמא: 14px" #: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" +msgid "Set font-size for posts and comments" msgstr "" #: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" +msgid "Set font-color for posts and comments" msgstr "" #: ../../view/theme/redbasic/php/config.php:127 +msgid "Set radius of corners" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set shadow depth of photos" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" -msgstr "" - #: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "" +msgid "Leave empty for default width" +msgstr "השאר ריק לצורך רוחב שגרתי" #: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" +msgid "Left align page content" msgstr "" #: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" +msgid "Set minimum opacity of nav bar - to hide it" msgstr "" #: ../../view/theme/redbasic/php/config.php:132 +msgid "Set size of conversation author photo" +msgstr "" + +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1356 +#: ../../boot.php:1163 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "" + +#: ../../boot.php:1163 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../boot.php:1481 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: ../../boot.php:1359 +#: ../../boot.php:1484 #, php-format msgid "Update Error at %s" msgstr "" -#: ../../boot.php:1526 +#: ../../boot.php:1685 msgid "" -"Create an account to access services and applications within the Red Matrix" +"Create an account to access services and applications within the Hubzilla" msgstr "" -#: ../../boot.php:1554 +#: ../../boot.php:1707 msgid "Password" msgstr "סיסמה" -#: ../../boot.php:1555 +#: ../../boot.php:1708 msgid "Remember me" msgstr "זכור אותי" -#: ../../boot.php:1558 +#: ../../boot.php:1711 msgid "Forgot your password?" msgstr "שכחת את הסיסמה שלך?" -#: ../../boot.php:2182 +#: ../../boot.php:2277 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2317 +#: ../../boot.php:2426 msgid "Website SSL certificate is not valid. Please correct." -msgstr "" +msgstr "תעודת SSL אתר רשת אינה תקינה. אנא תקן." -#: ../../boot.php:2320 +#: ../../boot.php:2429 #, php-format -msgid "[red] Website SSL error for %s" -msgstr "" +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] שגיאת SSL אתר רשת עבור %s" -#: ../../boot.php:2357 +#: ../../boot.php:2470 msgid "Cron/Scheduled tasks not running." -msgstr "" +msgstr "משימות Cron/מתוזמנות לא רצות." -#: ../../boot.php:2361 +#: ../../boot.php:2474 #, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "" +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] משימות Cron לא רצות על %s" diff --git a/view/he/strings.php b/view/he/strings.php index cd071e377..d20cb9a6e 100644 --- a/view/he/strings.php +++ b/view/he/strings.php @@ -5,19 +5,14 @@ function string_plural_select_he($n){ return ($n != 1);; }} ; -App::$strings["No username found in import file."] = ""; -App::$strings["Unable to create a unique channel address. Import failed."] = ""; -App::$strings["Import completed."] = "יבוא הושלם."; App::$strings["parent"] = "הורה"; App::$strings["Collection"] = "אוסף"; App::$strings["Principal"] = ""; App::$strings["Addressbook"] = "פנקס כתובות"; App::$strings["Calendar"] = "לוח שנה"; -App::$strings["Schedule Inbox"] = ""; -App::$strings["Schedule Outbox"] = ""; -App::$strings["Unknown"] = ""; -App::$strings["%1\$s used"] = ""; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = ""; +App::$strings["Schedule Inbox"] = "תיבת דואר נכנס מתוזמנת"; +App::$strings["Schedule Outbox"] = "תיבת דואר יוצא מתוזמנת"; +App::$strings["Unknown"] = "לא ידוע"; App::$strings["Files"] = "קבצים"; App::$strings["Total"] = "סה״כ"; App::$strings["Shared"] = ""; @@ -29,83 +24,1525 @@ App::$strings["Size"] = "גודל"; App::$strings["Last Modified"] = "שונה לאחרונה"; App::$strings["Edit"] = "ערוך"; App::$strings["Delete"] = "מחק"; +App::$strings["You are using %1\$s of your available file storage."] = "הינך משתמש ב- %1\$s מתוך שטח אחסון קבצים זמין."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "הינך משתמש ב- %1\$s מתוך %2\$s שטח אחסון קבצים זמין. (%3\$s%)"; +App::$strings["WARNING:"] = "אזהרה:"; App::$strings["Create new folder"] = "צור תיקייה חדשה"; App::$strings["Upload file"] = "העלה קובץ"; -App::$strings["Cannot locate DNS info for database server '%s'"] = "לא ניתן לאתר מידע DNS עבור שרת מסד נתונים '%s'"; -App::$strings["Profile Photos"] = "תצלומי פרופיל"; -App::$strings["Logout"] = "יציאה"; -App::$strings["End this session"] = "סיים את סשן זה"; -App::$strings["Home"] = "בית"; -App::$strings["Your posts and conversations"] = ""; -App::$strings["View Profile"] = ""; -App::$strings["Your profile page"] = ""; -App::$strings["Edit Profiles"] = ""; -App::$strings["Manage/Edit profiles"] = ""; -App::$strings["Edit Profile"] = "ערוך פרופיל"; -App::$strings["Edit your profile"] = "ערוך את הפרופיל שלך"; -App::$strings["Photos"] = "תצלומים"; -App::$strings["Your photos"] = "התצלומים שלך"; -App::$strings["Your files"] = "הקבצים שלך"; -App::$strings["Chat"] = "שיחה"; -App::$strings["Your chatrooms"] = "החדרי שיחה שלך"; -App::$strings["Bookmarks"] = "סימניות"; -App::$strings["Your bookmarks"] = "הסימניות שלך"; -App::$strings["Webpages"] = "עמודי רשת"; -App::$strings["Your webpages"] = "העמודי רשת שלך"; -App::$strings["Login"] = "כניסה"; -App::$strings["Sign in"] = "התחברות"; -App::$strings["%s - click to logout"] = "%s - לחץ כדי להתנתק"; -App::$strings["Remote authentication"] = "אימות מרוחק"; -App::$strings["Click to authenticate to your home hub"] = ""; -App::$strings["Home Page"] = "עמוד בית"; -App::$strings["Register"] = "הרשמה"; -App::$strings["Create an account"] = "צור חשבון"; -App::$strings["Help"] = "עזרה"; -App::$strings["Help and documentation"] = "עזרה ותיעוד"; -App::$strings["Apps"] = "אפליקציות"; -App::$strings["Applications, utilities, links, games"] = ""; -App::$strings["Search"] = "חיפוש"; -App::$strings["Search site content"] = ""; -App::$strings["Directory"] = "ספרייה"; -App::$strings["Channel Directory"] = "ערוץ ספרייה"; -App::$strings["Matrix"] = "מטריצה"; -App::$strings["Your matrix"] = "המטריצה שלך"; -App::$strings["Mark all matrix notifications seen"] = "סמן את כל התראות המטריצה כנקראו"; -App::$strings["Channel Home"] = "ערוץ בית"; -App::$strings["Channel home"] = "ערוץ בית"; -App::$strings["Mark all channel notifications seen"] = "סמן את כל התראות הערוץ כנקראו"; +App::$strings["Permission denied"] = "הרשאה נדחתה"; +App::$strings["Permission denied."] = "הרשאה נדחתה."; +App::$strings["Not Found"] = "לא נמצא"; +App::$strings["Page not found."] = "עמוד לא נמצא."; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; +App::$strings["Welcome %s. Remote authentication successful."] = "ברוך בואך %s. אימות מרוחק הצליח."; +App::$strings["Requested profile is not available."] = "פרופיל מבוקש לא זמין."; +App::$strings["Some blurb about what to do when you're new here"] = ""; +App::$strings["Block Name"] = ""; +App::$strings["Blocks"] = ""; +App::$strings["Block Title"] = ""; +App::$strings["Created"] = "נוצר"; +App::$strings["Edited"] = "נערך"; +App::$strings["Share"] = "שתף"; +App::$strings["View"] = "תצוגה"; +App::$strings["Channel not found."] = "ערוץ לא נמצא."; +App::$strings["Permissions denied."] = "הרשאה נדחתה."; +App::$strings["l, F j"] = "l, F j"; +App::$strings["Link to Source"] = "קישור למקור"; +App::$strings["Edit Event"] = "ערוך אירוע"; +App::$strings["Create Event"] = "צור אירוע"; +App::$strings["Previous"] = "קודם"; +App::$strings["Next"] = "הבא"; +App::$strings["Export"] = "יצא"; +App::$strings["Import"] = "יבא"; +App::$strings["Submit"] = "שלח"; +App::$strings["Today"] = "היום"; +App::$strings["You must be logged in to see this page."] = "עליך להתחבר כדי לראות את עמוד זה."; +App::$strings["Posts and comments"] = "פוסטים ותגובות"; +App::$strings["Only posts"] = "רק פוסטים"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; +App::$strings["Room not found"] = "חדר לא נמצא"; +App::$strings["Leave Room"] = "עזוב חדר"; +App::$strings["Delete Room"] = "מחק חדר"; +App::$strings["I am away right now"] = "אני נעדר/ת ברגע זה"; +App::$strings["I am online"] = "אני במצב מקוון"; +App::$strings["Bookmark this room"] = "סמן את חדר זה"; +App::$strings["Please enter a link URL:"] = "אנא הזן URL קישור:"; +App::$strings["Encrypt text"] = "הצפן טקסט"; +App::$strings["Insert web link"] = "הכנס קישור רשת"; +App::$strings["Feature disabled."] = "תכונה מנוטרלת."; +App::$strings["New Chatroom"] = "חדר שיחה חדש"; +App::$strings["Chatroom name"] = "שם חדר שיחה"; +App::$strings["Expiration of chats (minutes)"] = "תפוגה של שיחות (דקות)"; +App::$strings["Permissions"] = "הרשאות"; +App::$strings["%1\$s's Chatrooms"] = "חדרי שיחה של %1\$s"; +App::$strings["No chatrooms available"] = "אין חדרי שיחה זמינים"; +App::$strings["Create New"] = "צור חדש"; +App::$strings["Expiration"] = "תפוגה"; +App::$strings["min"] = "דקות"; +App::$strings["Away"] = "נעדר"; +App::$strings["Online"] = "מקוון"; +App::$strings["Invalid item."] = "פריט שגוי."; +App::$strings["Bookmark added"] = "סימנייה התווספה"; +App::$strings["My Bookmarks"] = "הסימניות שלי"; +App::$strings["My Connections Bookmarks"] = "סימניות החיבורים שלי"; +App::$strings["Continue"] = "המשך"; +App::$strings["Premium Channel Setup"] = "הבניית ערוץ פרמיה"; +App::$strings["Enable premium channel connection restrictions"] = "אפשר הגבלות חיבור ערוץ פרמיה"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; +App::$strings["Potential connections will then see the following text before proceeding:"] = ""; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; +App::$strings["Restricted or Premium Channel"] = "ערוץ מוגבל או פרמיה"; +App::$strings["Could not access contact record."] = ""; +App::$strings["Could not locate selected profile."] = ""; +App::$strings["Connection updated."] = "חיבור התעדכן."; +App::$strings["Failed to update connection record."] = ""; +App::$strings["is now connected to"] = "כעת מחובר אל"; +App::$strings["No"] = "לא"; +App::$strings["Yes"] = "כן"; +App::$strings["Could not access address book record."] = ""; +App::$strings["Refresh failed - channel is currently unavailable."] = "רענון נכשל - ערוץ אינו זמין כעת."; +App::$strings["Unable to set address book parameters."] = "לא מסוגל לקבוע פרמטרים של פנקס כתובות"; +App::$strings["Connection has been removed."] = "חיבור הוסר."; +App::$strings["View Profile"] = "הצג פרופיל"; +App::$strings["View %s's profile"] = "צפה בפרופיל של %s"; +App::$strings["Refresh Permissions"] = "רענן הרשאות"; +App::$strings["Fetch updated permissions"] = "תפוס הרשאות מעודכנות"; +App::$strings["Recent Activity"] = "פעילות אחרונה"; +App::$strings["View recent posts and comments"] = "צפה בפוסטים ותגובות אחרונות"; +App::$strings["Unblock"] = "בטל חסימה"; +App::$strings["Block"] = "חסום"; +App::$strings["Block (or Unblock) all communications with this connection"] = "חסום (או בטל חסימה) את כל ההתקשרויות עם חיבור זה"; +App::$strings["This connection is blocked!"] = "חיבור זה הינו חסום!"; +App::$strings["Unignore"] = "בטל התעלמות"; +App::$strings["Ignore"] = "התעלמות"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "התעלם (או בטל התעלמות) מכל ההתקשרויות שפונות כלפי פנים (inbound) מתוך חיבור זה"; +App::$strings["This connection is ignored!"] = "חיבור זה הינו מנוכר!"; +App::$strings["Unarchive"] = "בטל גניזה"; +App::$strings["Archive"] = "גנוז"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "גנוז את (או בטל את גניזת) חיבור זה - סמן את עמוד זה כמת אך השאר תוכן"; +App::$strings["This connection is archived!"] = "חיבור זה הינו גנוז!"; +App::$strings["Unhide"] = "חשוף"; +App::$strings["Hide"] = "הסתר"; +App::$strings["Hide or Unhide this connection from your other connections"] = "הסתר או חשוף את חיבור זה מן החיבורים האחרים שלך"; +App::$strings["This connection is hidden!"] = "חיבור זה הינו מוסתר!"; +App::$strings["Delete this connection"] = "מחק את חיבור זה"; +App::$strings["Me"] = "אני"; +App::$strings["Family"] = "משפחה"; +App::$strings["Friends"] = "חברים"; +App::$strings["Acquaintances"] = "מכרים"; +App::$strings["All"] = "הכל"; +App::$strings["Approve this connection"] = "אשר את חיבור זה"; +App::$strings["Accept connection to allow communication"] = "אשר חיבור כדי להתיר תקשורת"; +App::$strings["Set Affinity"] = "הגדר קירבה"; +App::$strings["Set Profile"] = "הגדר פרופיל"; +App::$strings["Set Affinity & Profile"] = "הגדר קירבה וגם פרופיל"; +App::$strings["none"] = ""; +App::$strings["Connection Default Permissions"] = "הרשאות שגרתיות של חיבור"; +App::$strings["Connection: %s"] = "חיבור: %s"; +App::$strings["Apply these permissions automatically"] = "החל את הרשאות אלה אוטומטית"; +App::$strings["Connection requests will be approved without your interaction"] = ""; +App::$strings["This connection's primary address is"] = "הכתובת העיקרית של חיבור זה היא"; +App::$strings["Available locations:"] = "מיקומים זמינים:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = ""; +App::$strings["Connection Tools"] = "כלי חיבור"; +App::$strings["Slide to adjust your degree of friendship"] = ""; +App::$strings["Rating"] = "דירוג"; +App::$strings["Slide to adjust your rating"] = "החלק כדי להתאים את הדירוג שלך"; +App::$strings["Optionally explain your rating"] = "הסבר לפי הצורך את הדירוג שלך"; +App::$strings["Custom Filter"] = "מסנן מותאם"; +App::$strings["Only import posts with this text"] = "יבא רק פוסטים עם טקסט זה"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = ""; +App::$strings["Do not import posts with this text"] = "אל תייבא פוסטים עם טקסט זה"; +App::$strings["This information is public!"] = "מידע זה הינו ציבורי!"; +App::$strings["Connection Pending Approval"] = "חיבור ממתין לאישור"; +App::$strings["inherited"] = ""; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; +App::$strings["Their Settings"] = "ההגדרות שלהם"; +App::$strings["My Settings"] = "ההגדרות שלי"; +App::$strings["Individual Permissions"] = ""; +App::$strings["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."] = ""; +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."] = ""; +App::$strings["Last update:"] = "עדכון אחרון:"; +App::$strings["Public access denied."] = "גישה ציבורית נדחתה."; +App::$strings["%d rating"] = array( + 0 => "דירוג %d", + 1 => "%d דירוגים", +); +App::$strings["Gender: "] = "מין: "; +App::$strings["Status: "] = "מצב: "; +App::$strings["Homepage: "] = "עמוד בית: "; +App::$strings["Age:"] = "גיל:"; +App::$strings["Location:"] = "מיקום:"; +App::$strings["Description:"] = "תיאור:"; +App::$strings["Hometown:"] = "עיר מגורים:"; +App::$strings["About:"] = "אודות:"; +App::$strings["Connect"] = "התחבר"; +App::$strings["Public Forum:"] = "פורום ציבורי:"; +App::$strings["Keywords: "] = "מילות מפתח: "; +App::$strings["Don't suggest"] = "אל תציע"; +App::$strings["Common connections:"] = "חיבורים שכיחים:"; +App::$strings["Global Directory"] = "ספרייה גלובלית"; +App::$strings["Local Directory"] = "ספרייה מקומית"; +App::$strings["Find"] = "מצא"; +App::$strings["Finding:"] = ""; +App::$strings["Channel Suggestions"] = "הצעות ערוץ"; +App::$strings["next page"] = "עמוד הבא"; +App::$strings["previous page"] = "עמוד קודם"; +App::$strings["Sort options"] = "אפשרויות מיון"; +App::$strings["Alphabetic"] = "אלפבתי"; +App::$strings["Reverse Alphabetic"] = "אלפבתי הפוך"; +App::$strings["Newest to Oldest"] = "מהחדשים יותר לישנים יותר"; +App::$strings["Oldest to Newest"] = "מהישנים יותר לחדשים יותר"; +App::$strings["No entries (some entries may be hidden)."] = ""; +App::$strings["Item not found."] = "פריט לא נמצא."; +App::$strings["Item not found"] = "פריט לא נמצא"; +App::$strings["Title (optional)"] = "כותרת (רשות):"; +App::$strings["Edit Block"] = ""; +App::$strings["No channel."] = "אין ערוץ."; +App::$strings["Common connections"] = "חיבורים מצויים"; +App::$strings["No connections in common."] = ""; +App::$strings["Blocked"] = ""; +App::$strings["Ignored"] = ""; +App::$strings["Hidden"] = "מוסתר"; +App::$strings["Archived"] = "גנוזים"; +App::$strings["New"] = "חדש"; +App::$strings["New Connections"] = "חיבורים חדשים"; +App::$strings["Show pending (new) connections"] = ""; +App::$strings["All Connections"] = "כל החיבורים"; +App::$strings["Show all connections"] = "הצג את כל החיבורים"; +App::$strings["Only show blocked connections"] = "הצג רק חיבורים חסומים"; +App::$strings["Only show ignored connections"] = "הצג רק חיבורים מנוכרים"; +App::$strings["Only show archived connections"] = "הצג רק חיבורים גנוזים"; +App::$strings["Only show hidden connections"] = "הצג רק חיבורים מוסתרים"; +App::$strings["Pending approval"] = "ממתין לאישור"; +App::$strings["%1\$s [%2\$s]"] = ""; +App::$strings["Edit connection"] = "ערוך חיבור"; +App::$strings["Delete connection"] = "מחק חיבור"; +App::$strings["Channel address"] = "כתובת ערוץ"; +App::$strings["Network"] = "רשת"; +App::$strings["Status"] = "מצב"; +App::$strings["Connected"] = "מחובר"; +App::$strings["Approve connection"] = "אשר חיבור"; +App::$strings["Approve"] = "אשר"; +App::$strings["Ignore connection"] = "התעלם מחיבור"; +App::$strings["Recent activity"] = "פעילות אחרונה"; App::$strings["Connections"] = "חיבורים"; -App::$strings["Notices"] = "הודעות"; -App::$strings["Notifications"] = "התראות"; -App::$strings["See all notifications"] = "צפה בכל ההתראות"; -App::$strings["Mark all system notifications seen"] = "סמן את כל התראות המערכת כנקראו"; -App::$strings["Mail"] = "דואר"; -App::$strings["Private mail"] = "דואר פרטי"; -App::$strings["See all private messages"] = "צפה בכל ההודעות הפרטיות"; -App::$strings["Mark all private messages seen"] = "סמן את כל ההודעות הפרטיות כנקראו"; -App::$strings["Inbox"] = "תיבה נכנסת"; -App::$strings["Outbox"] = "תיבה יוצאת"; -App::$strings["New Message"] = "הודעה חדשה"; -App::$strings["Events"] = "אירועים"; -App::$strings["Event Calendar"] = "לוח שנה אירועים"; -App::$strings["See all events"] = "ראה את כל האירועים"; -App::$strings["Mark all events seen"] = "סמן את כל האירועים כנקראו"; +App::$strings["Search"] = "חיפוש"; +App::$strings["Search your connections"] = "חפש את החיבורים שלך"; +App::$strings["Connections search"] = "חיפוש חיבורים"; +App::$strings["Image uploaded but image cropping failed."] = ""; +App::$strings["Cover Photos"] = "תצלומי שער"; +App::$strings["Image resize failed."] = "שינוי גודל תמונה נכשל."; +App::$strings["Unable to process image"] = "לא מסוגל לעבד תמונה"; +App::$strings["Image upload failed."] = "העלאת תמונה נכשלה."; +App::$strings["Unable to process image."] = "לא מסוגל לעבד תמונה."; +App::$strings["female"] = "נקבה"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s עדכנה את ה%2\$s שלה"; +App::$strings["male"] = "זכר"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s עדכן את ה%2\$s שלו"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s עדכנו את ה%2\$s שלהם"; +App::$strings["cover photo"] = "תצלום שער"; +App::$strings["Photo not available."] = "תצלום לא זמין."; +App::$strings["Upload File:"] = "העלה קובץ:"; +App::$strings["Select a profile:"] = "בחר פרופיל:"; +App::$strings["Upload Cover Photo"] = "העלה תצלום שער"; +App::$strings["or"] = "או"; +App::$strings["skip this step"] = "דלג על צעד זה"; +App::$strings["select a photo from your photo albums"] = ""; +App::$strings["Crop Image"] = "גזור תמונה"; +App::$strings["Please adjust the image cropping for optimum viewing."] = ""; +App::$strings["Done Editing"] = "סיים לערוך"; +App::$strings["Item is not editable"] = "פריט אינו עריך."; +App::$strings["Edit post"] = "ערוך פוסט"; +App::$strings["Calendar entries imported."] = "רשומות לוח שנה הובאו."; +App::$strings["No calendar entries found."] = "לא נמצאו רשומות לוח שנה."; +App::$strings["Event can not end before it has started."] = ""; +App::$strings["Unable to generate preview."] = "לא מסוגל להפיק תצוגה מקדימה."; +App::$strings["Event title and start time are required."] = "כותרת וזמן תחילת אירוע נדרשים"; +App::$strings["Event not found."] = "אירוע לא נמצא."; +App::$strings["event"] = "אירוע"; +App::$strings["Edit event title"] = "ערוך כותרת אירוע"; +App::$strings["Event title"] = "כותרת אירוע"; +App::$strings["Required"] = "נדרש"; +App::$strings["Categories (comma-separated list)"] = "קטגוריות (רשימה מופרדת פסיקים)"; +App::$strings["Edit Category"] = "ערוך קטגוריה"; +App::$strings["Category"] = "קטגוריה"; +App::$strings["Edit start date and time"] = "ערוך זמן ותאריך התחלה"; +App::$strings["Start date and time"] = "זמן ותאריך התחלה"; +App::$strings["Finish date and time are not known or not relevant"] = ""; +App::$strings["Edit finish date and time"] = "ערוך זמן ותאריך סיום"; +App::$strings["Finish date and time"] = "זמן ותאריך סיום"; +App::$strings["Adjust for viewer timezone"] = ""; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; +App::$strings["Edit Description"] = "ערוך תיאור"; +App::$strings["Description"] = "תיאור"; +App::$strings["Edit Location"] = "ערוך מיקום"; +App::$strings["Location"] = "מיקום"; +App::$strings["Share this event"] = "שתף את אירוע זה"; +App::$strings["Preview"] = "תצוגה מקדימה"; +App::$strings["Permission settings"] = "הגדרות הרשאה"; +App::$strings["Advanced Options"] = "אפשרויות מתקדמות"; +App::$strings["Edit event"] = "ערוך אירוע"; +App::$strings["Delete event"] = "מחק אירוע"; +App::$strings["calendar"] = "לוח שנה"; +App::$strings["Event removed"] = "אירוע הוסר"; +App::$strings["Failed to remove event"] = "נכשל להסיר אירוע"; +App::$strings["Photos"] = "תצלומים"; +App::$strings["Cancel"] = "ביטול"; +App::$strings["This site is not a directory server"] = "אתר זה אינו שרת ספרייה"; +App::$strings["This directory server requires an access token"] = ""; +App::$strings["Save to Folder:"] = "שמור לתיקייה:"; +App::$strings["- select -"] = "- בחר -"; +App::$strings["Save"] = "שמור"; +App::$strings["Invalid message"] = "הודעה שגויה"; +App::$strings["no results"] = "אין תוצאות"; +App::$strings["Delivery report for %1\$s"] = "דיווח מסירה עבור %1\$s"; +App::$strings["channel sync processed"] = ""; +App::$strings["queued"] = "בתור"; +App::$strings["posted"] = "פורסם"; +App::$strings["accepted for delivery"] = "נתקבל לצורך מסירה"; +App::$strings["updated"] = "עודכן"; +App::$strings["update ignored"] = "עדכון נוכר"; +App::$strings["permission denied"] = "הרשאה נדחתה"; +App::$strings["recipient not found"] = "נמען לא נמצא"; +App::$strings["mail recalled"] = "דואר הוחזר"; +App::$strings["duplicate mail received"] = "דואר כפול נתקבל"; +App::$strings["mail delivered"] = "דואר נמסר"; +App::$strings["Layout Name"] = ""; +App::$strings["Layout Description (Optional)"] = ""; +App::$strings["Edit Layout"] = ""; +App::$strings["Page link"] = "קישור עמוד"; +App::$strings["Edit Webpage"] = "ערוך עמוד רשת"; +App::$strings["Channel added."] = "ערוץ נתווסף."; +App::$strings["network"] = "רשת"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "קבוצת פרטיות נוצרה."; +App::$strings["Could not create privacy group."] = "לא היתה אפשרות ליצור קבוצת פרטיות."; +App::$strings["Privacy group not found."] = "קבוצת פרטיות לא נמצאה."; +App::$strings["Privacy group updated."] = "קבוצת פרטיות עודכנה."; +App::$strings["Create a group of channels."] = "צור אשכול של ערוצים."; +App::$strings["Privacy group name: "] = "שם קבוצת פרטיות:"; +App::$strings["Members are visible to other channels"] = "חברים הינם נראים לערוצים אחרים"; +App::$strings["Privacy group removed."] = "קבוצת פרטיות הוסרה."; +App::$strings["Unable to remove privacy group."] = "לא מסוגל להסיר קבוצת פרטיות."; +App::$strings["Privacy group editor"] = "עורך קבוצת פרטיות"; +App::$strings["Members"] = "חברים"; +App::$strings["All Connected Channels"] = "כל הערוצים המחוברים"; +App::$strings["Click on a channel to add or remove."] = "לחץ על ערוץ כדי להוסיף או להסיר"; +App::$strings["Share content from Firefox to \$Projectname"] = "שתף תוכן מתוך Firefox אל \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "הפעל את ספק \$Projectname של Firefox"; +App::$strings["Authorize application connection"] = ""; +App::$strings["Return to your app and insert this Securty Code:"] = ""; +App::$strings["Please login to continue."] = "אנא התחבר כדי להמשיך."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; +App::$strings["Documentation Search"] = "חיפוש תיעוד"; +App::$strings["Help:"] = "עזרה:"; +App::$strings["Help"] = "עזרה"; +App::$strings["\$Projectname Documentation"] = "תיעוד \$Projectname"; +App::$strings["Permission Denied."] = "הרשאה נדחתה."; +App::$strings["File not found."] = "קובץ לא נמצא."; +App::$strings["Edit file permissions"] = "ערוך הרשאות קובץ"; +App::$strings["Set/edit permissions"] = "קבע/ערוך הרשאות"; +App::$strings["Include all files and sub folders"] = "כלול כל קובץ ותיקיית משנה"; +App::$strings["Return to file list"] = ""; +App::$strings["Copy/paste this code to attach file to a post"] = ""; +App::$strings["Copy/paste this URL to link file from a web page"] = ""; +App::$strings["Share this file"] = "שתף את קובץ זה"; +App::$strings["Show URL to this file"] = "הצג URL לקובץ זה"; +App::$strings["Notify your contacts about this file"] = ""; +App::$strings["Apps"] = "אפליקציות"; +App::$strings["Item not available."] = "פריט לא נמצא."; +App::$strings["Your service plan only allows %d channels."] = ""; +App::$strings["Nothing to import."] = "אין דבר ליבא."; +App::$strings["Unable to download data from old server"] = ""; +App::$strings["Imported file is empty."] = "קובץ מיובא הינו ריק"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = ""; +App::$strings["Cloned channel not found. Import failed."] = ""; +App::$strings["No channel. Import failed."] = ""; +App::$strings["Import completed."] = "יבוא הושלם."; +App::$strings["You must be logged in to use this feature."] = ""; +App::$strings["Import Channel"] = "יבא ערוץ"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "השתמש בטופס זה כדי ליבא ערוץ קיים מתוך שרת/מוקד אחר. באפשרותך לאחזר את זהות הערוץ מתוך שרת/מוקד ישן דרך הרשת או לספק קובץ יצוא."; +App::$strings["File to Upload"] = "קובץ להעלאה"; +App::$strings["Or provide the old server/hub details"] = "או ספק פרטי שרת/מוקד ישנים"; +App::$strings["Your old identity address (xyz@example.com)"] = "כתובת זיהוי ישנה (xyz@example.com)"; +App::$strings["Your old login email address"] = "כתובת דוא״ל כניסה ישנה"; +App::$strings["Your old login password"] = "סיסמת כניסה ישנה"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; +App::$strings["Make this hub my primary location"] = "הפוך את מוקד זה למיקום העיקרי שלי"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = ""; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = ""; +App::$strings["Unable to locate original post."] = "לא מסוגל לאתר פוסט מקורי."; +App::$strings["Empty post discarded."] = "פוסט ריק סולק."; +App::$strings["Executable content type not permitted to this channel."] = ""; +App::$strings["Duplicate post suppressed."] = "פוסט כפול הודחק."; +App::$strings["System error. Post not saved."] = "שגיאת מערכת. פוסט לא נשמר."; +App::$strings["Unable to obtain post information from database."] = ""; +App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; +App::$strings["You have reached your limit of %1$.0f webpages."] = ""; +App::$strings["Layouts"] = ""; +App::$strings["Comanche page description language help"] = ""; +App::$strings["Layout Description"] = ""; +App::$strings["Download PDL file"] = "הורד קובץ PDL"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "ברוכים הבאים אל %s"; +App::$strings["First Name"] = "שם פרטי"; +App::$strings["Last Name"] = "שם משפחה"; +App::$strings["Nickname"] = "שם כינוי"; +App::$strings["Full Name"] = "שם מלא"; +App::$strings["Email"] = "דוא״ל"; +App::$strings["Profile Photo"] = "תצלום פרופיל"; +App::$strings["Profile Photo 16px"] = "תצלום פרופיל 16 פיקסל"; +App::$strings["Profile Photo 32px"] = "תצלום פרופיל 32 פיקסל"; +App::$strings["Profile Photo 48px"] = "תצלום פרופיל 48 פיקסל"; +App::$strings["Profile Photo 64px"] = "תצלום פרופיל 64 פיקסל"; +App::$strings["Profile Photo 80px"] = "תצלום פרופיל 80 פיקסל"; +App::$strings["Profile Photo 128px"] = "תצלום פרופיל 128 פיקסל"; +App::$strings["Timezone"] = "אזור זמן"; +App::$strings["Homepage URL"] = ""; +App::$strings["Language"] = "שפה"; +App::$strings["Birth Year"] = "שנת הולדת"; +App::$strings["Birth Month"] = "חודש הולדת"; +App::$strings["Birth Day"] = "יום הולדת"; +App::$strings["Birthdate"] = "יום הולדת"; +App::$strings["Gender"] = "מין"; +App::$strings["Male"] = "זכר"; +App::$strings["Female"] = "נקבה"; +App::$strings["webpage"] = "עמוד רשת"; +App::$strings["block"] = ""; +App::$strings["layout"] = ""; +App::$strings["menu"] = "תפריט"; +App::$strings["%s element installed"] = ""; +App::$strings["%s element installation failed"] = ""; +App::$strings["Like/Dislike"] = ""; +App::$strings["This action is restricted to members."] = ""; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; +App::$strings["Invalid request."] = "בקשה שגויה."; +App::$strings["channel"] = "ערוץ"; +App::$strings["thing"] = "דבר"; +App::$strings["Channel unavailable."] = "עמוד לא זמין."; +App::$strings["Previous action reversed."] = ""; +App::$strings["photo"] = "תצלום"; +App::$strings["status"] = "סטטוס"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; +App::$strings["Action completed."] = "פעולה הושלמה."; +App::$strings["Thank you."] = "תודה."; +App::$strings["Import completed"] = "יבוא הושלם"; +App::$strings["Import Items"] = "יבוא פריטים"; +App::$strings["Use this form to import existing posts and content from an export file."] = ""; +App::$strings["Total invitation limit exceeded."] = "סך מגבלת הזמנות נגמרה."; +App::$strings["%s : Not a valid email address."] = "%s : כתובת דוא״ל לא תקינה."; +App::$strings["Please join us on \$Projectname"] = "נשמח אם תצטרף אלינו ברשת \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "מגבלת הזמנות נגמרה. אנא צור קשר עם מנהל האתר שלך."; +App::$strings["%s : Message delivery failed."] = "%s : מסירת הודעה נכשלה."; +App::$strings["%d message sent."] = array( + 0 => "הודעה %d נשלחה.", + 1 => "%d הודעות נשלחו.", +); +App::$strings["You have no more invitations available"] = "לא נותרו לך עוד הזמנות זמינות"; +App::$strings["Send invitations"] = "שלח הזמנות"; +App::$strings["Enter email addresses, one per line:"] = "הזן כתובות דוא״ל, אחת בכל שורה:"; +App::$strings["Your message:"] = "הודעתך:"; +App::$strings["Please join my community on \$Projectname."] = "אשמח אם תצטרף לקהילה שלי ברשת \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "יהיה עליך לספק את קוד הזמנה זה:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. הירשם בכל מיקום \$Projectname (כולם מחוברים ב אופן הדדי)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. הזן את כתובת רשת \$Projectname שלי לתוך שורת החיפוש של האתר."; +App::$strings["or visit"] = "או בקר בכתובת"; +App::$strings["3. Click [Connect]"] = "3. לחץ [התחבר]"; +App::$strings["Remote privacy information not available."] = ""; +App::$strings["Visible to:"] = "נראה לאלו:"; +App::$strings["Location not found."] = "מיקום לא נמצא."; +App::$strings["Location lookup failed."] = ""; +App::$strings["Please select another location to become primary before removing the primary location."] = ""; +App::$strings["Syncing locations"] = ""; +App::$strings["No locations found."] = "לא נמצאו מיקומים."; +App::$strings["Manage Channel Locations"] = "נהל מיקומי ערוץ"; +App::$strings["Address"] = "כתובת"; +App::$strings["Primary"] = ""; +App::$strings["Drop"] = ""; +App::$strings["Sync Now"] = "סנכרן עכשיו"; +App::$strings["Please wait several minutes between consecutive operations."] = ""; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "כאשר ניתן, השמט מיקום על ידי כניסה לתוך אתר רשת/מוקד והסרת הערוץ שלך."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "השתמש בטופס זה כדי לנטוש את המיקום אם המוקד אינו פועל עוד."; +App::$strings["Hub not found."] = "מוקד לא נמצא."; +App::$strings["Unable to lookup recipient."] = ""; +App::$strings["Unable to communicate with requested channel."] = "לא מסוגל לתקשר עם ערוץ מבוקש"; +App::$strings["Cannot verify requested channel."] = "לא יכול לאמת ערוץ מבוקש."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "על הערוץ הנבחר מוטלות הגבלות הודעה פרטית. שליחה נכשלה."; +App::$strings["Messages"] = "הודעות"; +App::$strings["Message recalled."] = "הודעה הוחזרה."; +App::$strings["Conversation removed."] = "דיון הוסר."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "פג YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "הערוץ המבוקש אינו נמצא ברשת זו"; +App::$strings["Send Private Message"] = "שלח הודעה פרטית"; +App::$strings["To:"] = "לכבוד:"; +App::$strings["Subject:"] = "נושא:"; +App::$strings["Attach file"] = "צרף קובץ"; +App::$strings["Send"] = "שלח"; +App::$strings["Set expiration date"] = "קבע תאריך תפוגה"; +App::$strings["Delete message"] = "מחק הודעה"; +App::$strings["Delivery report"] = "דיווח מסירה"; +App::$strings["Recall message"] = "בטל הודעה"; +App::$strings["Message has been recalled."] = "הודעה הוחזרה."; +App::$strings["Delete Conversation"] = "מחק דיון"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "אין חיבורים מאובטחים זמינים. אפשרי כי תהא באפשרותך להשיב מתוך עמוד הפרופיל של השולח."; +App::$strings["Send Reply"] = "שלח משוב"; +App::$strings["Your message for %s (%s):"] = "הודעתך עבור %s ‏(%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; +App::$strings["Create a new channel"] = "צור ערוץ חדש"; App::$strings["Channel Manager"] = "מנהל ערוץ"; -App::$strings["Manage Your Channels"] = "נהל את הערוצים שלך"; +App::$strings["Current Channel"] = "ערוץ נוכחי"; +App::$strings["Switch to one of your channels by selecting it."] = ""; +App::$strings["Default Channel"] = "ערוץ שגרתי"; +App::$strings["Make Default"] = "הפוך לשגרתי"; +App::$strings["%d new messages"] = "%d הודעות חדשות"; +App::$strings["%d new introductions"] = ""; +App::$strings["Delegated Channel"] = ""; +App::$strings["No valid account found."] = "לא נמצא חשבון תקין."; +App::$strings["Password reset request issued. Check your email."] = ""; +App::$strings["Site Member (%s)"] = "חבר אתר (%s)"; +App::$strings["Password reset requested at %s"] = "בקשת איפוס סיסמה נתבקשה אצל %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; +App::$strings["Password Reset"] = "איפוס סיסמה"; +App::$strings["Your password has been reset as requested."] = "הסיסמה שלך אותחלה כנדרש."; +App::$strings["Your new password is"] = "הסיסמה החדשה שלך היא"; +App::$strings["Save or copy your new password - and then"] = ""; +App::$strings["click here to login"] = "לחץ כאן כדי להיכנס"; +App::$strings["Your password may be changed from the Settings page after successful login."] = ""; +App::$strings["Your password has changed at %s"] = "הסיסמה שלך נשתנתה אצל %s"; +App::$strings["Forgot your Password?"] = "שכחת את הסיסמה שלך?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; +App::$strings["Email Address"] = "כתובת דוא״ל"; +App::$strings["Reset"] = "אפס"; +App::$strings["Unable to update menu."] = "לא מסוגל לעדכן תפריט."; +App::$strings["Unable to create menu."] = "לא מסוגל ליצור תפריט."; +App::$strings["Menu Name"] = "שם תפריט"; +App::$strings["Unique name (not visible on webpage) - required"] = "שם ייחודי (לא נראה בבלוג רשת) - נדרש"; +App::$strings["Menu Title"] = "כותרת תפריט"; +App::$strings["Visible on webpage - leave empty for no title"] = ""; +App::$strings["Allow Bookmarks"] = "התר סימניות"; +App::$strings["Menu may be used to store saved bookmarks"] = ""; +App::$strings["Submit and proceed"] = "שלח והמשך"; +App::$strings["Menus"] = "תפריטים"; +App::$strings["Bookmarks allowed"] = "סימניות מותרות"; +App::$strings["Delete this menu"] = "מחק את תפריט זה"; +App::$strings["Edit menu contents"] = "ערוך תכני תפריט"; +App::$strings["Edit this menu"] = "ערוך את תפריט זה"; +App::$strings["Menu could not be deleted."] = "תפריט לא יכול היה להימחק."; +App::$strings["Menu not found."] = "תפריט לא נמצא."; +App::$strings["Edit Menu"] = "ערוך תפריט"; +App::$strings["Add or remove entries to this menu"] = "הוסף או הסר רשומות מתפריט זה"; +App::$strings["Menu name"] = "שם תפריט"; +App::$strings["Must be unique, only seen by you"] = ""; +App::$strings["Menu title"] = "כותרת תפריט"; +App::$strings["Menu title as seen by others"] = ""; +App::$strings["Allow bookmarks"] = "התר סימניות"; +App::$strings["Not found."] = "לא נמצא."; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; +App::$strings["Mood"] = "מצב רוח"; +App::$strings["Set your current mood and tell your friends"] = ""; +App::$strings["Profile Match"] = ""; +App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; +App::$strings["is interested in:"] = ""; +App::$strings["No matches"] = "אין התאמות"; +App::$strings["No such group"] = "אין קבוצה כזו"; +App::$strings["No such channel"] = "אין ערוץ כזה"; +App::$strings["forum"] = "פורום"; +App::$strings["Search Results For:"] = "תוצאות חיפוש עבור:"; +App::$strings["Privacy group is empty"] = "קבוצת פרטיות הינה ריקה"; +App::$strings["Privacy group: "] = "קבוצת פרטיות: "; +App::$strings["Invalid connection."] = "חיבור שגוי."; +App::$strings["No more system notifications."] = "אין עוד התראות מערכת"; +App::$strings["System Notifications"] = "התראות מערכת"; +App::$strings["Unable to create element."] = "לא מסוגל ליצור אלמנט"; +App::$strings["Unable to update menu element."] = "לא מסוגל לעדכן אלמנט תפריט."; +App::$strings["Unable to add menu element."] = "לא מסוגל להוסיף אלמנט תפריט."; +App::$strings["Menu Item Permissions"] = "הרשאות פריט תפריט"; +App::$strings["(click to open/close)"] = "(לחץ כדי לפתוח/לסגור)"; +App::$strings["Link Name"] = "שם קישור"; +App::$strings["Link or Submenu Target"] = ""; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; +App::$strings["Use magic-auth if available"] = ""; +App::$strings["Open link in new window"] = "פתח בתוך חלון חדש"; +App::$strings["Order in list"] = ""; +App::$strings["Higher numbers will sink to bottom of listing"] = ""; +App::$strings["Submit and finish"] = "שלח וסיים"; +App::$strings["Submit and continue"] = "שלח והמשך"; +App::$strings["Menu:"] = "תפריט:"; +App::$strings["Link Target"] = "יעד קישור"; +App::$strings["Edit menu"] = "ערוך תפריט"; +App::$strings["Edit element"] = "ערוך אלמנט"; +App::$strings["Drop element"] = "הטל אלמנט"; +App::$strings["New element"] = "אלמנט חדש"; +App::$strings["Edit this menu container"] = "ערוך את מכיל תפריט זה"; +App::$strings["Add menu element"] = "הוסף אלמנט תפריט"; +App::$strings["Delete this menu item"] = "מחק את פריט תפריט זה"; +App::$strings["Edit this menu item"] = "ערוך את פריט תפריט זה"; +App::$strings["Menu item not found."] = "פריט תפריט לא נמצא."; +App::$strings["Menu item deleted."] = "פריט תפריט נמחק."; +App::$strings["Menu item could not be deleted."] = "פריט תפריט לא יכול היה להימחק."; +App::$strings["Edit Menu Element"] = "ערוך אלמנט תפריט"; +App::$strings["Link text"] = ""; +App::$strings["Name or caption"] = "שם או דברי הסבר"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "דוגמאות: \"בוב ג׳יימסון\", \"ליסה והסוסים שלה\", \"טניס\", \"קבוצת תעופה\""; +App::$strings["Choose a short nickname"] = "בחר שם כינוי קצר"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "שם כינוי ישמש אותך כדי ליצור כתובת ערוץ קלה לזכירה למשל nickname%s"; +App::$strings["Channel role and privacy"] = ""; +App::$strings["Select a channel role with your privacy requirements."] = ""; +App::$strings["Read more about roles"] = ""; +App::$strings["Create Channel"] = "צור ערוץ"; +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."] = "ערוץ הוא הזהות שלך ברשת זו. זה יכול לייצג אדם, בלוג, או פורום (נמנו רק אחדים). ערוצים יכולים ליצור חיבורים עם ערוצים אחרים כדי לשתף מידע בעזרת הרשאות מפורטות מאוד."; +App::$strings["or import an existing channel from another location."] = ""; +App::$strings["Invalid request identifier."] = "מזהה מבקש לא תקין."; +App::$strings["Discard"] = "סלק"; +App::$strings["Mark all system notifications seen"] = "סמן את כל התראות המערכת כנקראו"; +App::$strings["Page owner information could not be retrieved."] = ""; +App::$strings["Profile Photos"] = "תצלומי פרופיל"; +App::$strings["Album not found."] = "אלבום לא נמצא."; +App::$strings["Delete 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"] = "מחק תצלום"; +App::$strings["No photos selected"] = "לא נבחרו תצלומים"; +App::$strings["Access to this item is restricted."] = ""; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; +App::$strings["%1$.2f MB photo storage used."] = ""; +App::$strings["Upload Photos"] = "העלה תצלומים"; +App::$strings["Enter an album name"] = "הזן שם אלבום"; +App::$strings["or select an existing album (doubleclick)"] = "או בחר אלבום קיים (לחיצה כפולה)"; +App::$strings["Create a status post for this upload"] = ""; +App::$strings["Caption (optional):"] = "דברי הסבר (רשות):"; +App::$strings["Description (optional):"] = "תיאור (רשות):"; +App::$strings["Album name could not be decoded"] = ""; +App::$strings["Contact Photos"] = "תצלומי איש קשר"; +App::$strings["Show Newest First"] = "הצג את החדשים יותר בתחילה"; +App::$strings["Show Oldest First"] = "הצג את הישנים יותר בתחילה"; +App::$strings["View Photo"] = "צפה בתצלום"; +App::$strings["Edit Album"] = "ערוך אלבום"; +App::$strings["Permission denied. Access to this item may be restricted."] = ""; +App::$strings["Photo not available"] = "תצלום לא זמין"; +App::$strings["Use as profile photo"] = "השתמש בתור תצלום פרופיל"; +App::$strings["Use as cover photo"] = "השתמש בתור תצלום שער"; +App::$strings["Private Photo"] = "תצלום פרטי"; +App::$strings["View Full Size"] = "צפה בגודל מלא"; +App::$strings["Remove"] = "הסר"; +App::$strings["Edit photo"] = "ערוך תצלום"; +App::$strings["Rotate CW (right)"] = "סובב כיוון-שעון (ימין)"; +App::$strings["Rotate CCW (left)"] = "סובב נגד כיוון-שעון (שמאל)"; +App::$strings["Enter a new album name"] = "הזן שם אלבום חדש"; +App::$strings["or select an existing one (doubleclick)"] = "או בחר באחד קיים (לחיצה כפולה)"; +App::$strings["Caption"] = "דברי הסבר"; +App::$strings["Add a Tag"] = "הוסף תגית"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "דוגמא: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = ""; +App::$strings["I like this (toggle)"] = "אהבתי את זה (החלף)"; +App::$strings["I don't like this (toggle)"] = "לא אהבתי את זה (החלף)"; +App::$strings["Please wait"] = "אנא המתן"; +App::$strings["This is you"] = "זה את/ה"; +App::$strings["Comment"] = "תגובה"; +App::$strings["__ctx:title__ Likes"] = "אוהב"; +App::$strings["__ctx:title__ Dislikes"] = "לא אוהב"; +App::$strings["__ctx:title__ Agree"] = "מסכים"; +App::$strings["__ctx:title__ Disagree"] = "לא מסכים"; +App::$strings["__ctx:title__ Abstain"] = "נמנע"; +App::$strings["__ctx:title__ Attending"] = "נוכח"; +App::$strings["__ctx:title__ Not attending"] = "לא נוכח"; +App::$strings["__ctx:title__ Might attend"] = "עשוי להיווכח"; +App::$strings["View all"] = "צפה בכולם"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "אוהב", + 1 => "אוהבים", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "לא אוהב", + 1 => "לא אוהבים", +); +App::$strings["Photo Tools"] = "כלי תצלום"; +App::$strings["In This Photo:"] = "בתצלום זה:"; +App::$strings["Map"] = "מפה"; +App::$strings["__ctx:noun__ Likes"] = "אוהב"; +App::$strings["__ctx:noun__ Dislikes"] = "לא אוהב"; +App::$strings["Close"] = "סגור"; +App::$strings["View Album"] = "צפה באלבום"; +App::$strings["Recent Photos"] = "תצלומים אחרונים"; +App::$strings["sent you a private message"] = "שלח לך הודעה פרטית"; +App::$strings["added your channel"] = "הוסיף את הערוץ שלך"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[היום]"; +App::$strings["posted an event"] = "פרסם אירוע"; +App::$strings["Unable to find your hub."] = "לא מסוגל למצוא את המוקד שלך."; +App::$strings["Post successful."] = "פרסום הצליח."; +App::$strings["OpenID protocol error. No ID returned."] = "שגיאת פרוטוקול OpenID. לא הוחזר ID."; +App::$strings["Login failed."] = "התחברות נכשלה."; +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."] = ""; +App::$strings["This setting requires special processing and editing has been blocked."] = ""; +App::$strings["Configuration Editor"] = "עורך תצורה"; +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."] = ""; +App::$strings["Layout updated."] = ""; +App::$strings["Edit System Page Description"] = ""; +App::$strings["Layout not found."] = ""; +App::$strings["Module Name:"] = "שם מודול:"; +App::$strings["Layout Help"] = ""; +App::$strings["Poke"] = ""; +App::$strings["Poke somebody"] = ""; +App::$strings["Poke/Prod"] = "דחוף/עורר"; +App::$strings["Poke, prod or do other things to somebody"] = ""; +App::$strings["Recipient"] = "נמען"; +App::$strings["Choose what you wish to do to recipient"] = "בחר מה ברצונך לעשות לנמען"; +App::$strings["Make this post private"] = "הפוך את פוסט זה לפרטי"; +App::$strings["Fetching URL returns error: %1\$s"] = ""; +App::$strings["Profile not found."] = "פרופיל לא נמצא."; +App::$strings["Profile deleted."] = "פרופיל נמחק."; +App::$strings["Profile-"] = "פרופיל-"; +App::$strings["New profile created."] = "פרופיל חדש נוצר."; +App::$strings["Profile unavailable to clone."] = ""; +App::$strings["Profile unavailable to export."] = ""; +App::$strings["Profile Name is required."] = "נדרש שם פרופיל."; +App::$strings["Marital Status"] = "מצב משפחתי"; +App::$strings["Romantic Partner"] = "שותף רומנטי"; +App::$strings["Likes"] = "אוהב"; +App::$strings["Dislikes"] = "לא אוהב"; +App::$strings["Work/Employment"] = ""; +App::$strings["Religion"] = "דת"; +App::$strings["Political Views"] = "השקפות פוליטיות"; +App::$strings["Sexual Preference"] = "העדפה מינית"; +App::$strings["Homepage"] = "עמוד בית"; +App::$strings["Interests"] = ""; +App::$strings["Profile updated."] = ""; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = ""; +App::$strings["View this profile"] = "צפה בפרופיל זה"; +App::$strings["Edit visibility"] = "ערוך נראות"; +App::$strings["Profile Tools"] = "כלי פרופיל"; +App::$strings["Change cover photo"] = "שנה תצלום שער"; +App::$strings["Change profile photo"] = "שנה תצלום פרופיל"; +App::$strings["Create a new profile using these settings"] = "צור פרופיל חדש באמצעות הגדרות אלו"; +App::$strings["Clone this profile"] = "שבט את פרופיל זה"; +App::$strings["Delete this profile"] = "מחק את פרופיל זה"; +App::$strings["Add profile things"] = "הוסף דברי פרופיל"; +App::$strings["Personal"] = "אישי"; +App::$strings["Relation"] = "יחס"; +App::$strings["Miscellaneous"] = "שונות"; +App::$strings["Import profile from file"] = "יבא פרופיל מתוך קובץ"; +App::$strings["Export profile to file"] = "יצא פרופיל לתוך קובץ"; +App::$strings["Your gender"] = "המין שלך"; +App::$strings["Marital status"] = "מצב משפחתי"; +App::$strings["Sexual preference"] = "העדפה מינית"; +App::$strings["Profile name"] = "שם פרופיל"; +App::$strings["This is your default profile."] = "זהו הפרופיל השגרתי שלך."; +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"] = ""; +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"] = ""; +App::$strings["Musical interests"] = ""; +App::$strings["Books, literature"] = "ספרים, ספרות"; +App::$strings["Television"] = "טלוויזיה"; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = ""; +App::$strings["Love/Romance"] = "אהבה/רומנטיקה"; +App::$strings["School/Education"] = "בית ספר/חינוך"; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = "הערוצים האחרים שלי"; +App::$strings["Profile Image"] = "תמונת פרופיל"; +App::$strings["Edit Profiles"] = "ערוך פרופילים"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; +App::$strings["Upload Profile Photo"] = "העלה תצלום פרופיל"; +App::$strings["Invalid profile identifier."] = "מזהה פרופיל לא תקין."; +App::$strings["Profile Visibility Editor"] = ""; +App::$strings["Profile"] = "פרופיל"; +App::$strings["Click on a contact to add or remove."] = ""; +App::$strings["Visible To"] = ""; +App::$strings["Public 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."] = ""; +App::$strings["Hub URL"] = ""; +App::$strings["Access Type"] = "טיפוס גישה"; +App::$strings["Registration Policy"] = "מדיניות רישום"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = "תוכנה"; +App::$strings["Ratings"] = "דירוג"; +App::$strings["Rate"] = "דרג"; +App::$strings["Website:"] = "אתר רשת:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "ערוץ מרוחק [%s] (לא מוכר עדיין באתר זה)"; +App::$strings["Rating (this information is public)"] = "דירוג (מידע זה הינו ציבורי)"; +App::$strings["Optionally explain your rating (this information is public)"] = "הסבר לפי הצורך את הדירוג שלך (מידע זה הינו ציבורי)"; +App::$strings["No ratings"] = "אין דירוג"; +App::$strings["Rating: "] = "דירוג: "; +App::$strings["Website: "] = "אתר רשת:"; +App::$strings["Description: "] = "תיאור: "; +App::$strings["Theme settings updated."] = "הגדרות ערכת נושא עודכנו."; +App::$strings["# Accounts"] = "# חשבונות"; +App::$strings["# blocked accounts"] = "# חשבונות חסומים"; +App::$strings["# expired accounts"] = ""; +App::$strings["# expiring accounts"] = ""; +App::$strings["# Channels"] = "# ערוצים"; +App::$strings["# primary"] = "# עיקרי"; +App::$strings["# clones"] = "# שיבוטים"; +App::$strings["Message queues"] = "תור הודעות"; +App::$strings["Your software should be updated"] = "התוכנה שלך אמורה להיות מעודכנת"; +App::$strings["Administration"] = "הנהלה"; +App::$strings["Summary"] = "סיכום"; +App::$strings["Registered accounts"] = "חשבונות רשומים"; +App::$strings["Pending registrations"] = "הרשמות תלויות ועומדות"; +App::$strings["Registered channels"] = "ערוצים רשומים"; +App::$strings["Active plugins"] = "תוספים פעילים"; +App::$strings["Version"] = "גרסא"; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; +App::$strings["Site settings updated."] = "הגדרות אתר עודכנו."; +App::$strings["Default"] = "ברירת מחדל"; +App::$strings["mobile"] = "נייד"; +App::$strings["experimental"] = "ניסיוני"; +App::$strings["unsupported"] = "לא נתמך"; +App::$strings["Yes - with approval"] = "כן - עם אימות"; +App::$strings["My site is not a public server"] = "האתר שלי אינו שרת פומבי"; +App::$strings["My site has paid access only"] = "לאתר שלי ישנה גישה בתשלום בלבד"; +App::$strings["My site has free access only"] = "לאתר שלי ישנה גישה חופשית בלבד"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "האתר שלי מציע חשבונות בחינם לצד אפשרות לשדרוגים בתשלום"; +App::$strings["Site"] = "אתר"; +App::$strings["Registration"] = "רישום"; +App::$strings["File upload"] = "העלאת קובץ"; +App::$strings["Policies"] = "מדינויות"; +App::$strings["Advanced"] = "מתקדם"; +App::$strings["Site name"] = "שם אתר"; +App::$strings["Banner/Logo"] = "באנר/לוגו"; +App::$strings["Administrator Information"] = "מידע מנהל"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; +App::$strings["System language"] = "שפת מערכת"; +App::$strings["System theme"] = "מוטיב מערכת"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +App::$strings["Mobile system theme"] = ""; +App::$strings["Theme for mobile devices"] = ""; +App::$strings["Allow Feeds as Connections"] = ""; +App::$strings["(Heavy system resource usage)"] = ""; +App::$strings["Maximum image size"] = "גודל תמונה מרבי"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +App::$strings["Does this site allow new member registration?"] = ""; +App::$strings["Invitation only"] = "הזמנה בלבד"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = ""; +App::$strings["Which best describes the types of account offered by this hub?"] = ""; +App::$strings["Register text"] = ""; +App::$strings["Will be displayed prominently on the registration page."] = ""; +App::$strings["Site homepage to show visitors (default: login box)"] = ""; +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."] = ""; +App::$strings["Preserve site homepage URL"] = ""; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = ""; +App::$strings["Accounts abandoned after x days"] = ""; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; +App::$strings["Allowed friend domains"] = ""; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Allowed email domains"] = "מתחמי דוא״ל מורשים"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +App::$strings["Not allowed email domains"] = "מתחמי דוא״ל לא מורשים"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; +App::$strings["Verify Email Addresses"] = ""; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; +App::$strings["Force publish"] = ""; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +App::$strings["Import Public Streams"] = ""; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = ""; +App::$strings["Login on Homepage"] = "התחבר בעמוד בית"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = ""; +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"] = ""; +App::$strings["Default directory server"] = "שרת ספרייה שגרתי"; +App::$strings["Proxy user"] = "משתמש פרוקסי"; +App::$strings["Proxy URL"] = "URL פרוקסי"; +App::$strings["Network timeout"] = "פקיעת זמן רשת"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +App::$strings["Delivery interval"] = "תדירות שגרתית"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +App::$strings["Deliveries per process"] = ""; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = ""; +App::$strings["Poll interval"] = ""; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +App::$strings["Maximum Load Average"] = "עומס ממוצע מרבי"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +App::$strings["Expiration period in days for imported (grid/network) content"] = ""; +App::$strings["0 for no expiration of imported content"] = ""; +App::$strings["Off"] = ""; +App::$strings["On"] = ""; +App::$strings["Lock feature %s"] = "נעל תכונת %s"; +App::$strings["Manage Additional Features"] = "נהל תכונות נוספות"; +App::$strings["No server found"] = "לא נמצא שרת"; +App::$strings["ID"] = "מזהה"; +App::$strings["for channel"] = "לערוץ"; +App::$strings["on server"] = "בשרת"; +App::$strings["Server"] = "שרת"; +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"] = "אבטחה"; +App::$strings["Block public"] = ""; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = ""; +App::$strings["Set \"Transport Security\" HTTP header"] = ""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = ""; +App::$strings["Allow communications only from these sites"] = ""; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = ""; +App::$strings["Block communications from these sites"] = ""; +App::$strings["Allow communications only from these channels"] = "התר התקשרויות רק מתוך ערוצים אלה"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = ""; +App::$strings["Block communications from these channels"] = "חסום התקשרויות מתוך ערוצים אלה"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "התר שיבוצים מתוך אתרים וקישורים נאובטחים (SSL) בלבד."; +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"] = ""; +App::$strings["Update has been marked successful"] = ""; +App::$strings["Executing %s failed. Check system logs."] = ""; +App::$strings["Update %s was successfully applied."] = ""; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; +App::$strings["Update function %s could not be found."] = ""; +App::$strings["No failed updates."] = "אין עדכונים כושלים."; +App::$strings["Failed Updates"] = "עדכונים כושלים"; +App::$strings["Mark success (if update was manually applied)"] = ""; +App::$strings["Attempt to execute this update step automatically"] = ""; +App::$strings["Queue Statistics"] = ""; +App::$strings["Total Entries"] = ""; +App::$strings["Priority"] = "עדיפות"; +App::$strings["Destination URL"] = ""; +App::$strings["Mark hub permanently offline"] = "סמן מוקד בלתי מקוון לצמיתות"; +App::$strings["Empty queue for this hub"] = "רוקן תור עבור מוקד זה"; +App::$strings["Last known contact"] = "איש קשר מוכר אחרון"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s account deleted"] = array( + 0 => "חשבון %s נמחק", + 1 => "%s חשבונות נמחקו", +); +App::$strings["Account not found"] = "חשבון לא נמצא"; +App::$strings["Account '%s' deleted"] = "חשבון '%s' נמחק"; +App::$strings["Account '%s' blocked"] = "חשבון '%s' נחסם"; +App::$strings["Account '%s' unblocked"] = "חשבון '%s' נפתח"; +App::$strings["Accounts"] = "חשבונות"; +App::$strings["select all"] = "בחר הכל"; +App::$strings["Registrations waiting for confirm"] = "הרשמות ממתינות לצורך אישור"; +App::$strings["Request date"] = "תאריך בקשה"; +App::$strings["No registrations."] = "אין הרשמות."; +App::$strings["Deny"] = "אסור"; +App::$strings["All Channels"] = "כל הערוצים"; +App::$strings["Register date"] = "תאריך רישום"; +App::$strings["Last login"] = "כניסה אחרונה"; +App::$strings["Expires"] = "פג"; +App::$strings["Service Class"] = "מחלקת שירות"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "", + 1 => "", +); +App::$strings["%s channel deleted"] = array( + 0 => "ערוץ %s נמחק", + 1 => "%s ערוצים נמחקו", +); +App::$strings["Channel not found"] = "ערוץ לא נמצא"; +App::$strings["Channel '%s' deleted"] = "ערוץ '%s' נמחק"; +App::$strings["Channel '%s' censored"] = "ערוץ '%s' צונזר"; +App::$strings["Channel '%s' uncensored"] = "ערוץ '%s' יצא מכלל צנזורה"; +App::$strings["Channel '%s' code allowed"] = ""; +App::$strings["Channel '%s' code disallowed"] = ""; +App::$strings["Channels"] = "ערוצים"; +App::$strings["Censor"] = "צנזר"; +App::$strings["Uncensor"] = ""; +App::$strings["Allow Code"] = "התר קוד"; +App::$strings["Disallow Code"] = "אסור קוד"; +App::$strings["Channel"] = "ערוץ"; +App::$strings["UID"] = ""; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["Plugin %s disabled."] = "תוסף %s מנוטרל."; +App::$strings["Plugin %s enabled."] = "תוסף %s מאופשר."; +App::$strings["Disable"] = "נטרל"; +App::$strings["Enable"] = "אפשר"; +App::$strings["Plugins"] = "תוספות"; +App::$strings["Toggle"] = "החלף"; App::$strings["Settings"] = "הגדרות"; -App::$strings["Account/Channel Settings"] = "הגדרות חשבון/ערוץ"; -App::$strings["Admin"] = "מנהל"; -App::$strings["Site Setup and Configuration"] = "הבניית והגדרת אתר"; -App::$strings["Loading..."] = "כעת טוען..."; -App::$strings["@name, #tag, content"] = "@שם, #תגית, תוכן"; -App::$strings["Please wait..."] = "אנא המתן..."; -App::$strings["view full size"] = ""; -App::$strings["\$Projectname Notification"] = ""; -App::$strings["\$projectname"] = ""; +App::$strings["Author: "] = "מחבר: "; +App::$strings["Maintainer: "] = "מתחזק: "; +App::$strings["Minimum project version: "] = "גרסת פרויקט נומינלית: "; +App::$strings["Maximum project version: "] = "גרסת פרויקט מרבית: "; +App::$strings["Minimum PHP version: "] = "גרסת PHP נומינלית: "; +App::$strings["Requires: "] = "מצריך: "; +App::$strings["Disabled - version incompatibility"] = ""; +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"] = "התקן"; +App::$strings["Manage Repos"] = "נהל מאגרים"; +App::$strings["Installed Plugin Repositories"] = "מאגרי תוסף מותקנים"; +App::$strings["Install a New Plugin Repository"] = "התקן מאגר תוסף חדש"; +App::$strings["Update"] = "עדכן"; +App::$strings["Switch branch"] = "החלף ענף"; +App::$strings["No themes found."] = "לא נמצאו מוטיבים."; +App::$strings["Screenshot"] = "צילום מסך"; +App::$strings["Themes"] = "ערכות נושא"; +App::$strings["[Experimental]"] = "[ניסיוני]"; +App::$strings["[Unsupported]"] = "[לא נתמך]"; +App::$strings["Log settings updated."] = "הגדרות יומן עדכנו."; +App::$strings["Logs"] = "יומנים"; +App::$strings["Clear"] = "טהר"; +App::$strings["Debugging"] = "דיבאג"; +App::$strings["Log file"] = "קובץ יומן"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Log level"] = ""; +App::$strings["New Profile Field"] = "שדה פרופיל חדש"; +App::$strings["Field nickname"] = "שם כינוי שדה"; +App::$strings["System name of field"] = "שם מערכת של שדה"; +App::$strings["Input type"] = "טיפוס קלט"; +App::$strings["Field Name"] = "שם שדה"; +App::$strings["Label on profile pages"] = ""; +App::$strings["Help text"] = "טקסט עזרה"; +App::$strings["Additional info (optional)"] = "מידע נוסף (רשות)"; +App::$strings["Field definition not found"] = "הגדרת שדה לא נמצאה"; +App::$strings["Edit Profile Field"] = "ערוך שדה פרופיל"; +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::$strings["Malformed app."] = "אפליקציה פגומה."; +App::$strings["Embed code"] = "הטמע קוד"; +App::$strings["Edit App"] = "ערוך אפליקציה"; +App::$strings["Create App"] = "צור אפליקציה"; +App::$strings["Name of app"] = "שם של אפליקציה"; +App::$strings["Location (URL) of app"] = "מיקום (URL) של אפליקציה"; +App::$strings["Photo icon URL"] = ""; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 פיקסלים - רשות"; +App::$strings["Categories (optional, comma separated list)"] = "קטגוריות (רשות, רשימה מופרדת פסיקים)"; +App::$strings["Version ID"] = "מזהה גרסא"; +App::$strings["Price of app"] = "מחיר אפליקציה"; +App::$strings["Location (URL) to purchase app"] = "מיקום (URL) כדי לרכוש אפליקציה"; +App::$strings["Select a bookmark folder"] = "בחר תיקיית סימניות"; +App::$strings["Save Bookmark"] = "שמור סימנייה"; +App::$strings["URL of bookmark"] = "URL של סימנייה"; +App::$strings["Or enter new bookmark folder name"] = "או הזן שם תיקיית סימניות חדש"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; +App::$strings["Passwords do not match."] = "סיסמאות לא תואמות."; +App::$strings["Registration successful. Please check your email for validation instructions."] = ""; +App::$strings["Your registration is pending approval by the site owner."] = ""; +App::$strings["Your registration can not be processed."] = "הרשמתך לא ניתנת לעיבוד"; +App::$strings["Registration on this hub is disabled."] = "רישום על מוקד זה הינו מנוטרל."; +App::$strings["Registration on this hub is by approval only."] = "רישום על מוקד זה הינו מותנה באישור."; +App::$strings["Register at another affiliated hub."] = "הירשם במוקד מקושר אחר."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; +App::$strings["Terms of Service"] = "תנאי שימוש"; +App::$strings["I accept the %s for this website"] = "אני מקבל את ה%s לאתר רשת זה"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה"; +App::$strings["Your email address"] = "כתובת דוא״ל שלך"; +App::$strings["Choose a password"] = "בחר סיסמה"; +App::$strings["Please re-enter your password"] = "בבקשה הזן שוב את סיסמתך"; +App::$strings["Please enter your invitation code"] = ""; +App::$strings["no"] = "לא"; +App::$strings["yes"] = "כן"; +App::$strings["Membership on this site is by invitation only."] = "חברות באתר זה היא באמצעות הזמנה בלבד."; +App::$strings["Register"] = "הרשמה"; +App::$strings["Proceed to create your first channel"] = "המשך כדי ליצור את הערוץ הראשון שלך"; +App::$strings["Please login."] = "אנא התחבר."; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Remove This Account"] = "הסר את חשבון זה"; +App::$strings["WARNING: "] = "אזהרה: "; +App::$strings["This account and all its channels will be completely removed from the network. "] = ""; +App::$strings["This action is permanent and can not be undone!"] = ""; +App::$strings["Please enter your password for verification:"] = "אנא הזן את הסיסמה שלך לצורך אימות:"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; +App::$strings["Remove Account"] = "הסר חשבון"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; +App::$strings["Remove This Channel"] = "הסר את ערוץ זה"; +App::$strings["This channel will be completely removed from the network. "] = ""; +App::$strings["Remove this channel and all its clones from the network"] = ""; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; +App::$strings["Remove Channel"] = "הסר ערוץ"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +App::$strings["The error message was:"] = ""; +App::$strings["Authentication failed."] = "אימות נכשל."; +App::$strings["Remote Authentication"] = "אימות מרוחק"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; +App::$strings["Authenticate"] = ""; +App::$strings["Items tagged with: %s"] = "פריטים מתוייגים עם: %s"; +App::$strings["Search results for: %s"] = "תוצאות חיפוש עבור: %s"; +App::$strings["No service class restrictions found."] = "לא נמצאו הגבלות מחלקת ערוץ."; +App::$strings["Name is required"] = "נדרש שם"; +App::$strings["Key and Secret are required"] = "מפתח וגם סוד הינם בגדר חובה."; +App::$strings["Not valid email."] = "לא דוא״ל תקף."; +App::$strings["Protected email address. Cannot change to that email."] = "כתובת דוא״ל מוגנת. לא מסוגל לשנות לדוא״ל זה."; +App::$strings["System failure storing new email. Please try again."] = ""; +App::$strings["Password verification failed."] = "אימות סיסמה נכשל."; +App::$strings["Passwords do not match. Password unchanged."] = "סיסמאות לא תואמות. סיסמה לא שונתה."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "סיסמאות ריקות לא מותרות. סיסמה לא שונתה."; +App::$strings["Password changed."] = "סיסמה שונתה."; +App::$strings["Password update failed. Please try again."] = "עדכון סיסמה נכשל. אנא נסה שוב."; +App::$strings["Settings updated."] = "הגדרות עודכנו."; +App::$strings["Add application"] = "הוסף אפליקציה"; +App::$strings["Name of application"] = "שם של אפליקציה"; +App::$strings["Consumer Key"] = "מפתח צרכן"; +App::$strings["Automatically generated - change if desired. Max length 20"] = ""; +App::$strings["Consumer Secret"] = "סוד צרכן"; +App::$strings["Redirect"] = ""; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; +App::$strings["Icon url"] = ""; +App::$strings["Optional"] = "רשות"; +App::$strings["Application not found."] = "יישום לא נמצא."; +App::$strings["Connected Apps"] = "אפליקציות מחוברות"; +App::$strings["Client key starts with"] = ""; +App::$strings["No name"] = "אין שם"; +App::$strings["Remove authorization"] = "הסר אישור"; +App::$strings["No feature settings configured"] = ""; +App::$strings["Feature/Addon Settings"] = ""; +App::$strings["Account Settings"] = "הגדרות חשבון"; +App::$strings["Current Password"] = "סיסמה נוכחית"; +App::$strings["Enter New Password"] = "הזן סיסמה חדשה"; +App::$strings["Confirm New Password"] = "אמת סיסמה חדשה"; +App::$strings["Leave password fields blank unless changing"] = "השאר דשות סיסמה ריקים אלא אם כן ברצונך לשנות"; +App::$strings["Email Address:"] = "כתובת דוא״ל:"; +App::$strings["Remove this account including all its channels"] = "הסר את חשבון זה לרבות כל הערוצים שלו"; +App::$strings["Additional Features"] = "תכונות נוספות"; +App::$strings["Connector Settings"] = "הגדרות מקשר"; +App::$strings["No special theme for mobile devices"] = "אין ערכת נושא מיוחדת להתקנים ניידים"; +App::$strings["%s - (Experimental)"] = "%s - (ניסיוני)"; +App::$strings["Display Settings"] = "הגדרות תצוגה"; +App::$strings["Theme Settings"] = "הגדרות ערכת נושא"; +App::$strings["Custom Theme Settings"] = "הגדרות ערכת נושא מותאמת"; +App::$strings["Content Settings"] = "הגדרות תוכן"; +App::$strings["Display Theme:"] = ""; +App::$strings["Mobile Theme:"] = ""; +App::$strings["Preload images before rendering the page"] = ""; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = ""; +App::$strings["Enable user zoom on mobile devices"] = ""; +App::$strings["Update browser every xx seconds"] = "עדכן דפדפן כל xx שניות"; +App::$strings["Minimum of 10 seconds, no maximum"] = "מינימום של 10 שניות, אין מקסימום"; +App::$strings["Maximum number of conversations to load at any time:"] = ""; +App::$strings["Maximum of 100 items"] = "מקסימום של 100 פריטים"; +App::$strings["Show emoticons (smilies) as images"] = ""; +App::$strings["Link post titles to source"] = ""; +App::$strings["System Page Layout Editor - (advanced)"] = ""; +App::$strings["Use blog/list mode on channel page"] = ""; +App::$strings["(comments displayed separately)"] = "(תגובות מוצגות בנפרד)"; +App::$strings["Use blog/list mode on grid page"] = ""; +App::$strings["Channel page max height of content (in pixels)"] = ""; +App::$strings["click to expand content exceeding this height"] = ""; +App::$strings["Grid page max height of content (in pixels)"] = ""; +App::$strings["Nobody except yourself"] = "אף אחד חוץ ממך"; +App::$strings["Only those you specifically allow"] = "רק אלו שהתרת להם במפורש"; +App::$strings["Approved connections"] = "חיבורים מאושרים"; +App::$strings["Any connections"] = "כל חיבור"; +App::$strings["Anybody on this website"] = "כל אחד באתר רשת זה"; +App::$strings["Anybody in this network"] = "כל אחד ברשת זו"; +App::$strings["Anybody authenticated"] = "כל אחד שאושר"; +App::$strings["Anybody on the internet"] = "כל אחד באינטרנט"; +App::$strings["Publish your default profile in the network directory"] = ""; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; +App::$strings["Your channel address is"] = "כתובת הערוץ שלך היא"; +App::$strings["Channel Settings"] = "הגדרות ערוץ"; +App::$strings["Basic Settings"] = "הגדרות בסיסיות"; +App::$strings["Full Name:"] = "שם מלא:"; +App::$strings["Your Timezone:"] = "אזור זמן שלך:"; +App::$strings["Default Post Location:"] = "מיקום פוסט שגרתי:"; +App::$strings["Geographical location to display on your posts"] = "מיקום גיאוגרפי להצגה בפוסטים שלך"; +App::$strings["Use Browser Location:"] = "השתמש במיקום דפדפן:"; +App::$strings["Adult Content"] = "תוכן מבוגרים"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "ערוץ זה מפרסם תוכן למבוגרים באופן תדיר או שגרתי. (אנא תייג כל חומר למבוגרים ו/או עירום עם NSFW#)"; +App::$strings["Security and Privacy Settings"] = "הגדרות אבטחה ופרטיות"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = ""; +App::$strings["Hide my online presence"] = "הסתר את הנוכחות המקוונת שלי"; +App::$strings["Prevents displaying in your profile that you are online"] = ""; +App::$strings["Simple Privacy Settings:"] = "הגדרות פרטיות פשוטות:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "ציבורי מאוד - מתירני ביותר (יש להשתמש בזהירות)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "טיפוסי - ציבורי שגרתי, פרטיות לפי דרישה (דומה להרשאות רשת חברתית אולם לצד פרטיות משופרת)"; +App::$strings["Private - default private, never open or public"] = "פרטי - פרטי שגרתי, אף פעם לא פתוח או ציבורי"; +App::$strings["Blocked - default blocked to/from everybody"] = "חסום - חסום שגרתי אל/מן כל אחד"; +App::$strings["Allow others to tag your posts"] = "התר לאחרים לתייג את הפוסטים שלך"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; +App::$strings["Advanced Privacy Settings"] = "הגדרות פרטיות מתקדמות"; +App::$strings["Expire other channel content after this many days"] = ""; +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:"] = ""; +App::$strings["May reduce spam activity"] = ""; +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:"] = ""; +App::$strings["Maximum private messages per day from unknown people:"] = ""; +App::$strings["Useful to reduce spamming"] = ""; +App::$strings["Notification Settings"] = "הגדרות התראה"; +App::$strings["By default post a status message when:"] = ""; +App::$strings["accepting a friend request"] = ""; +App::$strings["joining a forum/community"] = ""; +App::$strings["making an interesting profile change"] = ""; +App::$strings["Send a notification email when:"] = "שלח דוא״ל התראה כאשר:"; +App::$strings["You receive a connection request"] = "קיבלת בקשת חיבור"; +App::$strings["Your connections are confirmed"] = "החיבורים שלך הינם מאומתים"; +App::$strings["Someone writes on your profile wall"] = "מישהו כותב על קיר הפרופיל שלך"; +App::$strings["Someone writes a followup comment"] = "מישהו רושם תגובת המשך"; +App::$strings["You receive a private message"] = "קיבלת הודעה פרטית"; +App::$strings["You receive a friend suggestion"] = "קיבלת הצעת ידידים"; +App::$strings["You are tagged in a post"] = ""; +App::$strings["You are poked/prodded/etc. in a post"] = ""; +App::$strings["Show visual notifications including:"] = ""; +App::$strings["Unseen grid activity"] = ""; +App::$strings["Unseen channel activity"] = "פעילות ערוץ לא נראית"; +App::$strings["Unseen private messages"] = "הודעות ערוץ לא נראות"; +App::$strings["Recommended"] = ""; +App::$strings["Upcoming events"] = "אירועים קרובים"; +App::$strings["Events today"] = "אירועים היום"; +App::$strings["Upcoming birthdays"] = "ימי הולדת קרובים"; +App::$strings["Not available in all themes"] = ""; +App::$strings["System (personal) notifications"] = ""; +App::$strings["System info messages"] = "הודעות מידע מערכת"; +App::$strings["System critical alerts"] = ""; +App::$strings["New connections"] = "חיבורים חדשים"; +App::$strings["System Registrations"] = "הרשמות מערכת"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = ""; +App::$strings["Notify me of events this many days in advance"] = ""; +App::$strings["Must be greater than 0"] = ""; +App::$strings["Advanced Account/Page Type Settings"] = ""; +App::$strings["Change the behaviour of this account for special situations"] = ""; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; +App::$strings["Miscellaneous Settings"] = "הגדרות שונות"; +App::$strings["Default photo upload folder"] = "תיקיית העלאת תצלום שגרתית"; +App::$strings["%Y - current year, %m - current month"] = "%Y - שנה נוכחית, %m - חודש נוכחי"; +App::$strings["Default file upload folder"] = "תיקיית העלאת קובץ שגרתית"; +App::$strings["Personal menu to display in your channel pages"] = ""; +App::$strings["Remove this channel."] = "הסר את ערוץ זה."; +App::$strings["Firefox Share \$Projectname provider"] = ""; +App::$strings["Start calendar week on monday"] = ""; +App::$strings["\$Projectname Server - Setup"] = "שרת \$Projectname - הבנייה"; +App::$strings["Could not connect to database."] = "לא היתה אפשרות להתחבר למסד נתונים."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; +App::$strings["Could not create table."] = ""; +App::$strings["Your site database has been installed."] = ""; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; +App::$strings["System check"] = "בדיקת מערכת"; +App::$strings["Check again"] = "בדוק שוב"; +App::$strings["Database connection"] = "חיבור מסד נתונים"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; +App::$strings["Database Server Name"] = "שם שרת מסד נתונים"; +App::$strings["Default is 127.0.0.1"] = "ברירת מחדל 127.0.0.1"; +App::$strings["Database Port"] = "פורט מסד נתונים"; +App::$strings["Communication port number - use 0 for default"] = ""; +App::$strings["Database Login Name"] = "שם כניסה מסד נתונים"; +App::$strings["Database Login Password"] = "סיסמה מסד נתונים"; +App::$strings["Database Name"] = "שם מסד נתונים"; +App::$strings["Database Type"] = "טיפוס מסד נתונים"; +App::$strings["Site administrator email address"] = "כתובת דוא״ל מנהל אתר"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; +App::$strings["Website URL"] = "כתובת אתר אינטרנט"; +App::$strings["Please use SSL (https) URL if available."] = "אנא השתמש בכתובת SSL (כלומר, https) אם זמינה."; +App::$strings["Please select a default timezone for your website"] = ""; +App::$strings["Site settings"] = "הגדרות אתר"; +App::$strings["Enable \$Projectname advanced features?"] = "אפשר תכונות מתקדמות בפרויקט \$Projectname?"; +App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = ""; +App::$strings["PHP version 5.5 or greater is required."] = ""; +App::$strings["PHP version"] = ""; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; +App::$strings["PHP executable path"] = "נתיב PHP נתון ליישום"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +App::$strings["Command line PHP"] = "שורת פקודה PHP"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; +App::$strings["This is required for message delivery to work."] = ""; +App::$strings["PHP register_argc_argv"] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = ""; +App::$strings["You can adjust these settings in the servers php.ini."] = ""; +App::$strings["PHP upload limits"] = ""; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; +App::$strings["Generate encryption keys"] = "הפק מפתחות הצפנה"; +App::$strings["libCurl PHP module"] = "מודול libCurl PHP"; +App::$strings["GD graphics PHP module"] = ""; +App::$strings["OpenSSL PHP module"] = "מודול OpenSSL PHP"; +App::$strings["mysqli or postgres PHP module"] = "מודול mysqli PHP או postgres"; +App::$strings["mb_string PHP module"] = "מודול mb_string PHP"; +App::$strings["mcrypt PHP module"] = "מודול mcrypt PHP"; +App::$strings["xml PHP module"] = "מודול xml PHP"; +App::$strings["Apache mod_rewrite module"] = "מודול Apache mod_rewrite"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["Error: libCURL PHP module required but not installed."] = ""; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +App::$strings["Error: openssl PHP module required but not installed."] = ""; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = ""; +App::$strings["Error: mb_string PHP module required but not installed."] = ""; +App::$strings["Error: mcrypt PHP module required but not installed."] = ""; +App::$strings["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."] = ""; +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."] = ""; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = ""; +App::$strings[".htconfig.php is writable"] = ".htconfig.php הינו כתיב"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +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."] = ""; +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."] = ""; +App::$strings["%s is writable"] = "%s הינו כתיב"; +App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = ""; +App::$strings["store is writable"] = ""; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +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!"] = ""; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; +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."] = ""; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; +App::$strings["SSL certificate validation"] = "הוכחת תקפות של תעודת SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; +App::$strings["Url rewrite is working"] = ""; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +App::$strings["Errors encountered creating database tables."] = ""; +App::$strings["

What next

"] = "

מה הלאה

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; +App::$strings["Files: shared with me"] = ""; +App::$strings["NEW"] = "חדש"; +App::$strings["Remove all files"] = "הסר את כל הקבצים"; +App::$strings["Remove this file"] = "הסר את קובץ זה"; +App::$strings["Version %s"] = "גרסא %s"; +App::$strings["Installed plugins/addons/apps:"] = ""; +App::$strings["No installed plugins/addons/apps"] = ""; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "זהו מוקד של \$Projectname - רשת קואופרטיבית מבוזרת של אתרי רשת בעלי פרטיות משוכללת."; +App::$strings["Tag: "] = "תגית: "; +App::$strings["Last background fetch: "] = ""; +App::$strings["Current load average: "] = "עומס ממוצע נוכחי: "; +App::$strings["Running at web location"] = ""; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "אנא בקר באתר hubzilla.org כדי ללמוד עוד אודות \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = ""; +App::$strings["\$projectname issues"] = "סוגיות \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = ""; +App::$strings["Site Administrators"] = "מנהלי אתר"; +App::$strings["Failed to create source. No channel selected."] = ""; +App::$strings["Source created."] = "מקור נוצר."; +App::$strings["Source updated."] = "מקור עודכן."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "מקורות ערוץ"; +App::$strings["Manage remote sources of content for your channel."] = ""; +App::$strings["New Source"] = "מקור חדש"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; +App::$strings["Only import content with these words (one per line)"] = ""; +App::$strings["Leave blank to import all public content"] = ""; +App::$strings["Channel Name"] = "שם ערוץ"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; +App::$strings["Source not found."] = "מקור לא נמצא."; +App::$strings["Edit Source"] = "ערוך מקור"; +App::$strings["Delete Source"] = "מחק מקור"; +App::$strings["Source removed"] = "מקור הוסר"; +App::$strings["Unable to remove source."] = ""; +App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = ""; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; +App::$strings["Ignore/Hide"] = "התעלם/הסתר"; +App::$strings["post"] = "פוסט"; +App::$strings["comment"] = "תגובה"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; +App::$strings["Tag removed"] = ""; +App::$strings["Remove Item Tag"] = ""; +App::$strings["Select a tag to remove: "] = ""; +App::$strings["Thing updated"] = ""; +App::$strings["Object store: failed"] = ""; +App::$strings["Thing added"] = ""; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +App::$strings["Show Thing"] = "הצג דבר"; +App::$strings["item not found."] = "פריט לא נמצא"; +App::$strings["Edit Thing"] = "ערוך דבר"; +App::$strings["Select a profile"] = "בחר פרופיל"; +App::$strings["Post an activity"] = "פרסם פעילות"; +App::$strings["Only sends to viewers of the applicable profile"] = ""; +App::$strings["Name of thing e.g. something"] = "שם של דבר, לדוגמא: משהו"; +App::$strings["URL of thing (optional)"] = "URL של דבר (רשות)"; +App::$strings["URL for photo of thing (optional)"] = "URL עבור תצלום של משהו (רשות)"; +App::$strings["Add Thing to your Profile"] = "הוסף דבר לפרופיל שלך"; +App::$strings["Export Channel"] = "יצא ערוץ"; +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."] = ""; +App::$strings["Export Content"] = "יצא תוכן"; +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."] = ""; +App::$strings["Export your posts from a given year."] = "יצא פוסטים מתוך שנה נתונה."; +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."] = ""; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = ""; +App::$strings["To select all posts for a given month, such as January of this year, visit %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)."] = ""; +App::$strings["No connections."] = "אין חיבורים."; +App::$strings["Visit %s's profile [%s]"] = ""; +App::$strings["View Connections"] = "צפה בחיבורים"; +App::$strings["Source of Item"] = "מקור פריט"; +App::$strings["Webpages"] = "עמודי רשת"; +App::$strings["Actions"] = "פעולות"; +App::$strings["Page Link"] = "קישור עמוד"; +App::$strings["Page Title"] = "כותרת עמוד"; +App::$strings["Xchan Lookup"] = "חיפוש Xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = ""; +App::$strings["Wiki"] = "ויקי"; +App::$strings["Sandbox"] = "ארגז חול"; +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["Missing room name"] = ""; +App::$strings["Duplicate room name"] = ""; +App::$strings["Invalid room specifier."] = "מציין חדר שגוי"; +App::$strings["Room not found."] = "חדר לא נמצא."; +App::$strings["Room is full"] = "חדר מלא"; +App::$strings["\$Projectname Notification"] = "התראות \$Projectname"; +App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "תודה,"; App::$strings["%s Administrator"] = "הנהלת %s"; -App::$strings["Administrator"] = "מנהל"; -App::$strings["No Subject"] = "אין נושא"; +App::$strings["%s "] = ""; +App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:התראה] דואר חדש נתקבל %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s של לך הודעה פרטית חדשה באתר %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s שלח לך %2\$s."; +App::$strings["a private message"] = "הודעה פרטית"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "אנא בקר בכתובת %s כדי לצפות ו/או להשיב להודעות הפרטיות שלך."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:התראה] תגובה לדיון #%1\$d מאת %2\$s"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; +App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:התראה] %s פרסם לקיר הפרופיל שלך"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:התראה] %s תייג אותך"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = ""; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:התראה] %s תייג פוסט שלך"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:התראה] היכרות פורמלית נתקבלה"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; +App::$strings["You may visit their profile at %s"] = "אתה יכול לבקר את הפרופיל שלהם בקישור %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = ""; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:התראה] הצעת חבר נתקבלה"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; +App::$strings["Name:"] = "שם:"; +App::$strings["Photo:"] = "תצלום:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = ""; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:התראה]"; +App::$strings["created a new post"] = "צור פוסט חדש"; +App::$strings["commented on %s's post"] = "הגיב/ה על פוסט של %s"; +App::$strings["Private Message"] = "הודעה פרטית"; +App::$strings["Select"] = "בחר"; +App::$strings["Save to Folder"] = "שמור לתיקייה"; +App::$strings["I will attend"] = "אני אופיע"; +App::$strings["I will not attend"] = "אני לא אופיע"; +App::$strings["I might attend"] = "אני עשוי/ה להופיע"; +App::$strings["I agree"] = "אני מסכים/ה"; +App::$strings["I disagree"] = "אני לא מסכים/ה"; +App::$strings["I abstain"] = "אני נמנע/ת"; +App::$strings["Add Star"] = "הוסף כוכב"; +App::$strings["Remove Star"] = "הסר כוכב"; +App::$strings["Toggle Star Status"] = ""; +App::$strings["starred"] = ""; +App::$strings["Message signature validated"] = ""; +App::$strings["Message signature incorrect"] = ""; +App::$strings["Add Tag"] = "הוסף תגית"; +App::$strings["like"] = ""; +App::$strings["dislike"] = ""; +App::$strings["Share This"] = "שתף זאת"; +App::$strings["share"] = "שתף"; +App::$strings["Delivery Report"] = ""; +App::$strings["%d comment"] = array( + 0 => "תגובה %d", + 1 => "%d תגובות", +); +App::$strings["View %s's profile - %s"] = ""; +App::$strings["to"] = "אל"; +App::$strings["via"] = "מתוך"; +App::$strings["Wall-to-Wall"] = "קיר-אל-קיר"; +App::$strings["via Wall-To-Wall:"] = "מתוך קיר-אל-קיר:"; +App::$strings["from %s"] = "מאת %s"; +App::$strings["last edited: %s"] = "נערך לאחרונה: %s"; +App::$strings["Expires: %s"] = "פג: %s"; +App::$strings["Save Bookmarks"] = "שמור סימניות"; +App::$strings["Add to Calendar"] = "הוסף ללוח שנה"; +App::$strings["Mark all seen"] = "סמן את הכל כנקראו"; +App::$strings["[+] show all"] = "[+] הצג הכל"; +App::$strings["Bold"] = "מובלט"; +App::$strings["Italic"] = "נטוי"; +App::$strings["Underline"] = "קו תחתון"; +App::$strings["Quote"] = "ציטוט"; +App::$strings["Code"] = "קוד"; +App::$strings["Image"] = "תמונה"; +App::$strings["Insert Link"] = "הכנס קישור"; +App::$strings["Video"] = "וידאו"; +App::$strings["Site Admin"] = "מנהל אתר"; +App::$strings["Bug Report"] = "דיווח באג"; +App::$strings["View Bookmarks"] = "הצג סימניות"; +App::$strings["My Chatrooms"] = "חדרי השיחה שלי"; +App::$strings["Firefox Share"] = ""; +App::$strings["Remote Diagnostics"] = ""; +App::$strings["Suggest Channels"] = "הצע ערוצים"; +App::$strings["Login"] = "כניסה"; +App::$strings["Grid"] = ""; +App::$strings["Channel Home"] = "ערוץ בית"; +App::$strings["Events"] = "אירועים"; +App::$strings["Directory"] = "ספרייה"; +App::$strings["Mail"] = "דואר"; +App::$strings["Chat"] = "שיחה"; +App::$strings["Probe"] = ""; +App::$strings["Suggest"] = "הצע"; +App::$strings["Random Channel"] = "ערוץ אקראי"; +App::$strings["Invite"] = "הזמן"; +App::$strings["Features"] = "תכונות"; +App::$strings["Post"] = "פוסט"; +App::$strings["Purchase"] = "רכוש"; +App::$strings["No username found in import file."] = ""; +App::$strings["Unable to create a unique channel address. Import failed."] = ""; +App::$strings["Cannot locate DNS info for database server '%s'"] = ""; +App::$strings["Categories"] = "קטגוריות"; +App::$strings["Tags"] = "תגיות"; +App::$strings["Keywords"] = "מילות מפתח"; +App::$strings["have"] = ""; +App::$strings["has"] = ""; +App::$strings["want"] = "רוצים"; +App::$strings["wants"] = "רוצה"; +App::$strings["likes"] = "אוהב"; +App::$strings["dislikes"] = "לא אוהב"; +App::$strings["Image exceeds website size limit of %lu bytes"] = ""; +App::$strings["Image file is empty."] = "קובץ תמונה הינו ריק."; +App::$strings["Photo storage failed."] = "אחסון תצלום נכשל"; +App::$strings["a new photo"] = "תצלום חדש"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = ""; +App::$strings["Photo Albums"] = "אלבומי תמונה"; +App::$strings["Upload New Photos"] = "העלה תצלומים חדשים"; App::$strings["prev"] = "קודם"; App::$strings["first"] = "ראשון"; App::$strings["last"] = "אחרון"; @@ -113,12 +1550,7 @@ App::$strings["next"] = "הבא"; App::$strings["older"] = "ישן יותר"; App::$strings["newer"] = "חדש יותר"; App::$strings["No connections"] = "אין חיבורים"; -App::$strings["%d Connection"] = array( - 0 => "חיבור %d", - 1 => "%d חיבורים", -); -App::$strings["View Connections"] = "צפה בחיבורים"; -App::$strings["Save"] = "שמור"; +App::$strings["View all %s connections"] = ""; App::$strings["poke"] = ""; App::$strings["poked"] = ""; App::$strings["ping"] = ""; @@ -137,7 +1569,7 @@ App::$strings["mellow"] = "מתון"; App::$strings["tired"] = "עייף"; App::$strings["perky"] = "חצוף"; App::$strings["angry"] = "כועס"; -App::$strings["stupified"] = ""; +App::$strings["stupefied"] = ""; App::$strings["puzzled"] = "נבוך"; App::$strings["interested"] = "מגלה עניין"; App::$strings["bitter"] = "מר"; @@ -171,373 +1603,99 @@ App::$strings["September"] = "ספטמבר"; App::$strings["October"] = "אוקטובר"; App::$strings["November"] = "נובמבר"; App::$strings["December"] = "דצמבר"; -App::$strings["unknown.???"] = ""; -App::$strings["bytes"] = "בייטים"; -App::$strings["remove category"] = ""; -App::$strings["remove from file"] = ""; -App::$strings["Click to open/close"] = "לחץ כדי לפתוח/לסגור"; -App::$strings["Link to Source"] = ""; +App::$strings["Unknown Attachment"] = "תצריף לא מוכר"; +App::$strings["unknown"] = "לא מוכר"; +App::$strings["remove category"] = "הסר קטגוריה"; +App::$strings["remove from file"] = "הסר מתוך קובץ"; App::$strings["default"] = "ברירת מחדל"; App::$strings["Page layout"] = ""; App::$strings["You can create your own with the layouts tool"] = ""; -App::$strings["Page content type"] = ""; -App::$strings["Select an alternate language"] = ""; -App::$strings["photo"] = "תצלום"; -App::$strings["event"] = "אירוע"; -App::$strings["status"] = "סטטוס"; -App::$strings["comment"] = "תגובה"; +App::$strings["Page content type"] = "טיפוס תוכן עמוד"; +App::$strings["Select an alternate language"] = "בחר שפה חלופית"; App::$strings["activity"] = "פעילות"; -App::$strings["Design Tools"] = ""; -App::$strings["Blocks"] = ""; -App::$strings["Menus"] = "תפריטים"; -App::$strings["Layouts"] = ""; +App::$strings["Design Tools"] = "כלי עיצוב"; App::$strings["Pages"] = "עמודים"; -App::$strings["Categories"] = "קטגוריות"; -App::$strings["System"] = "מערכת"; -App::$strings["Personal"] = "אישי"; -App::$strings["Create Personal App"] = "צור אפליקציה אישית"; -App::$strings["Edit Personal App"] = "ערוך אפליקציה אישית"; -App::$strings["Connect"] = "התחבר"; -App::$strings["Ignore/Hide"] = "התעלם/הסתר"; -App::$strings["Suggestions"] = "הצעות"; -App::$strings["See more..."] = "צפה בעוד..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; -App::$strings["Add New Connection"] = ""; -App::$strings["Enter the channel address"] = ""; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = ""; -App::$strings["Notes"] = "תזכירים"; -App::$strings["Remove term"] = ""; -App::$strings["Saved Searches"] = ""; -App::$strings["add"] = "להוסיף"; -App::$strings["Saved Folders"] = ""; -App::$strings["Everything"] = "כל דבר"; -App::$strings["Archives"] = "ארכיונים"; -App::$strings["Me"] = "אני"; -App::$strings["Family"] = "משפחה"; -App::$strings["Friends"] = "חברים"; -App::$strings["Acquaintances"] = "מכרים"; -App::$strings["All"] = "הכל"; -App::$strings["Refresh"] = "רענן"; -App::$strings["Account settings"] = "הגדרות חשבון"; -App::$strings["Channel settings"] = "הגדרות ערוץ"; -App::$strings["Additional features"] = "תכונות נוספות"; -App::$strings["Feature/Addon settings"] = ""; -App::$strings["Display settings"] = "הגדרות תצוגה"; -App::$strings["Connected apps"] = "אפליקציות מחוברות"; -App::$strings["Export channel"] = "יצא ערוץ"; -App::$strings["Connection Default Permissions"] = ""; -App::$strings["Premium Channel Settings"] = ""; -App::$strings["Channel Sources"] = "מקורות ערוץ"; -App::$strings["Messages"] = "הודעות"; -App::$strings["Check Mail"] = "בדוק דואר"; -App::$strings["Chat Rooms"] = "חדרי שיחה"; -App::$strings["Bookmarked Chatrooms"] = "חדרי שיחה מסומנים"; -App::$strings["Suggested Chatrooms"] = "חדרי שיחה מוצעים"; -App::$strings["photo/image"] = "תצלום/תמונה"; -App::$strings["Rate Me"] = "דרג אותי"; -App::$strings["View Ratings"] = "צפה בדירוגים"; -App::$strings["Public Hubs"] = "מוקדים פומביים"; -App::$strings["New window"] = "חלון חדש"; -App::$strings["Open the selected location in a different window or browser tab"] = "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים"; -App::$strings["User '%s' deleted"] = "משתמש '%s' נמחק"; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "מתחיל:"; +App::$strings["Finishes:"] = "נגמר:"; +App::$strings["This event has been added to your calendar."] = "אירוע זה התווסף ללוח שנה שלך."; +App::$strings["Not specified"] = "לא צוין"; +App::$strings["Needs Action"] = "מצריך פעולה"; +App::$strings["Completed"] = "הושלם"; +App::$strings["In Process"] = "בתהליך"; +App::$strings["Cancelled"] = "בוטל"; App::$strings["No recipient provided."] = ""; App::$strings["[no subject]"] = "[אין נושא]"; App::$strings["Unable to determine sender."] = ""; App::$strings["Stored post could not be verified."] = ""; -App::$strings["Invalid data packet"] = ""; -App::$strings["Unable to verify channel signature"] = ""; -App::$strings["Unable to verify site signature for %s"] = ""; -App::$strings["created a new post"] = "צור פוסט חדש"; -App::$strings["commented on %s's post"] = "הגיב/ה על פוסט של %s"; -App::$strings["Private Message"] = "הודעה פרטית"; -App::$strings["Select"] = "בחר"; -App::$strings["Save to Folder"] = "שמור לתיקייה"; -App::$strings["I will attend"] = "אני אופיע"; -App::$strings["I will not attend"] = "אני לא אופיע"; -App::$strings["I might attend"] = "אני עשוי/ה להופיע"; -App::$strings["I agree"] = "אני מסכים/ה"; -App::$strings["I disagree"] = "אני לא מסכים/ה"; -App::$strings["I abstain"] = "אני נמנע/ת"; -App::$strings["View all"] = "צפה בכולם"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "", - 1 => "", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "", - 1 => "", -); -App::$strings["Add Star"] = "הוסף כוכב"; -App::$strings["Remove Star"] = "הסר כוכב"; -App::$strings["Toggle Star Status"] = ""; -App::$strings["starred"] = ""; -App::$strings["Message signature validated"] = ""; -App::$strings["Message signature incorrect"] = ""; -App::$strings["Add Tag"] = "הוסף תגית"; -App::$strings["I like this (toggle)"] = "אהבתי את זה (החלף)"; -App::$strings["like"] = ""; -App::$strings["I don't like this (toggle)"] = "לא אהבתי את זה (החלף)"; -App::$strings["dislike"] = ""; -App::$strings["Share This"] = "שתף זאת"; -App::$strings["share"] = "שתף"; -App::$strings["%d comment"] = array( - 0 => "", - 1 => "", -); -App::$strings["View %s's profile - %s"] = ""; -App::$strings["to"] = "אל"; -App::$strings["via"] = ""; -App::$strings["Wall-to-Wall"] = ""; -App::$strings["via Wall-To-Wall:"] = ""; -App::$strings["from %s"] = ""; -App::$strings["last edited: %s"] = ""; -App::$strings["Expires: %s"] = ""; -App::$strings["Save Bookmarks"] = ""; -App::$strings["Add to Calendar"] = ""; -App::$strings["Mark all seen"] = "סמן את הכל כנקראו"; -App::$strings["__ctx:noun__ Likes"] = ""; -App::$strings["__ctx:noun__ Dislikes"] = ""; -App::$strings["Close"] = "סגור"; -App::$strings["Please wait"] = "אנא המתן"; -App::$strings["[+] show all"] = "[+] הצג הכל"; -App::$strings["This is you"] = "זה את/ה"; -App::$strings["Comment"] = "תגובה"; -App::$strings["Submit"] = "שלח"; -App::$strings["Bold"] = "מובלט"; -App::$strings["Italic"] = "נטוי"; -App::$strings["Underline"] = "קו תחתון"; -App::$strings["Quote"] = "ציטוט"; -App::$strings["Code"] = "קוד"; -App::$strings["Image"] = "תמונה"; -App::$strings["Insert Link"] = "הכנס קישור"; -App::$strings["Video"] = "וידאו"; -App::$strings["Preview"] = "תצוגה מקדימה"; -App::$strings["Encrypt text"] = "הצפן טקסט"; -App::$strings["Not a valid email address"] = "כתובת דוא״ל לא תקינה"; -App::$strings["Your email domain is not among those allowed on this site"] = ""; -App::$strings["Your email address is already registered at this site."] = ""; -App::$strings["An invitation is required."] = "נדרשת הזמנה."; -App::$strings["Invitation could not be verified."] = "אימות הזמנה לא התאפשר."; -App::$strings["Please enter the required information."] = "אנא הזן את המידע הנחוץ."; -App::$strings["Failed to store account information."] = "נכשל לאחסן מידע חשבון."; -App::$strings["Registration confirmation for %s"] = "אימות רישום עבור %s"; -App::$strings["Registration request at %s"] = "בקשת רישום אצל %s"; -App::$strings["your registration password"] = "סיסמת רישום שלך"; -App::$strings["Registration details for %s"] = "פרטי רישום עבור %s"; -App::$strings["Account approved."] = "חשבון אושר."; -App::$strings["Registration revoked for %s"] = "רישום בוטל עבור %s"; -App::$strings["Account verified. Please login."] = "חשבון אומת. אנא התחבר."; -App::$strings["Click here to upgrade."] = "לחץ כאן כדי לשדרג."; -App::$strings["This action exceeds the limits set by your subscription plan."] = ""; -App::$strings["This action is not available under your subscription plan."] = ""; -App::$strings["Embedded content"] = ""; -App::$strings["Embedding disabled"] = ""; -App::$strings["Visible to your default audience"] = ""; -App::$strings["Show"] = "הצג"; -App::$strings["Don't show"] = "אל תציג"; -App::$strings["Permissions"] = "הרשאות"; -App::$strings[" and "] = " וגם "; -App::$strings["public profile"] = "פרופיל פומבי"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; -App::$strings["Visit %1\$s's %2\$s"] = ""; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -App::$strings["Public Timeline"] = "ציר זמן פומבי"; -App::$strings["Site Admin"] = "מנהל אתר"; -App::$strings["Address Book"] = "פנקס כתובות"; -App::$strings["Profile"] = "פרופיל"; -App::$strings["Mood"] = "מצב רוח"; -App::$strings["Poke"] = ""; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = "הצע"; -App::$strings["Random Channel"] = ""; -App::$strings["Invite"] = "הזמן"; -App::$strings["Features"] = "תכונות"; -App::$strings["Language"] = "שפה"; -App::$strings["Post"] = "פוסט"; -App::$strings["Profile Photo"] = "תצלום פרופיל"; -App::$strings["Update"] = "עדכן"; -App::$strings["Install"] = "התקן"; -App::$strings["Purchase"] = "רכוש"; -App::$strings["Permission denied."] = "הרשאה נדחתה."; -App::$strings["Item was not found."] = "פריט לא נמצא."; -App::$strings["No source file."] = "אין קובץ מקור."; -App::$strings["Cannot locate file to replace"] = ""; -App::$strings["Cannot locate file to revise/update"] = ""; -App::$strings["File exceeds size limit of %d"] = ""; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; -App::$strings["File upload failed. Possible system limit or action terminated."] = ""; -App::$strings["Stored file could not be verified. Upload failed."] = ""; -App::$strings["Path not available."] = "נתיב לא זמין."; -App::$strings["Empty pathname"] = ""; -App::$strings["duplicate filename or path"] = ""; -App::$strings["Path not found."] = "נתיב לא נמצא."; -App::$strings["mkdir failed."] = "mkdir נכשל."; -App::$strings["database storage failed."] = ""; -App::$strings["Logged out."] = "מנותק."; -App::$strings["Failed authentication"] = "אימות נכשל"; -App::$strings["Login failed."] = "התחברות נכשלה."; -App::$strings["Attachments:"] = "תצריפים:"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["\$Projectname event notification:"] = ""; -App::$strings["Starts:"] = "מתחיל:"; -App::$strings["Finishes:"] = "נגמר:"; -App::$strings["Location:"] = "מיקום:"; -App::$strings["Image/photo"] = "תמונה/תצלום"; -App::$strings["Encrypted content"] = "תוכן מוצפן"; -App::$strings["Install %s element: "] = ""; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = ""; -App::$strings["webpage"] = "עמוד רשת"; -App::$strings["layout"] = ""; -App::$strings["block"] = ""; -App::$strings["menu"] = "תפריט"; -App::$strings["QR code"] = "קוד QR"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; -App::$strings["post"] = "פוסט"; -App::$strings["Different viewers will see this text differently"] = ""; -App::$strings["$1 spoiler"] = ""; -App::$strings["$1 wrote:"] = "$1 כתב(ה):"; -App::$strings["%1\$s's bookmarks"] = ""; -App::$strings["Missing room name"] = ""; -App::$strings["Duplicate room name"] = ""; -App::$strings["Invalid room specifier."] = ""; -App::$strings["Room not found."] = "חדר לא נמצא."; -App::$strings["Room is full"] = "חדר מלא"; -App::$strings["Default"] = "ברירת מחדל"; -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."] = ""; -App::$strings["Frequently"] = "באופן תדיר"; -App::$strings["Hourly"] = "כל שעה"; -App::$strings["Twice daily"] = "פעמיים ביום"; -App::$strings["Daily"] = "יומי"; -App::$strings["Weekly"] = "שבועי"; -App::$strings["Monthly"] = "חודשי"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "דוא״ל"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "פייסבוק"; -App::$strings["Zot!"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["%d invitation available"] = array( - 0 => "הזמנה %d זמינה", - 1 => "%d הזמנות זמינות", -); -App::$strings["Advanced"] = "מתקדם"; -App::$strings["Find Channels"] = "מצא ערוצים"; -App::$strings["Enter name or interest"] = "הזן שם או עניין"; -App::$strings["Connect/Follow"] = "התחבר/עקוב"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; -App::$strings["Find"] = "מצא"; -App::$strings["Channel Suggestions"] = "הצעות ערוץ"; -App::$strings["Random Profile"] = "פרופיל אקראי"; -App::$strings["Invite Friends"] = "הזמן חברים"; -App::$strings["Advanced example: name=fred and country=iceland"] = "דוגמא מתקדמת: name=פרד וגם country=איסלנד"; -App::$strings["%d connection in common"] = array( - 0 => "", - 1 => "", -); -App::$strings["show more"] = "הצג עוד"; -App::$strings["channel"] = "ערוץ"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is now connected with %2\$s"] = ""; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s כעת מחובר עם %2\$s"; App::$strings["%1\$s poked %2\$s"] = ""; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; -App::$strings["__ctx:title__ Likes"] = ""; -App::$strings["__ctx:title__ Dislikes"] = ""; -App::$strings["__ctx:title__ Agree"] = "מסכים"; -App::$strings["__ctx:title__ Disagree"] = "לא מסכים"; -App::$strings["__ctx:title__ Abstain"] = "נמנע"; -App::$strings["__ctx:title__ Attending"] = "נוכח"; -App::$strings["__ctx:title__ Not attending"] = "לא נוכח"; -App::$strings["__ctx:title__ Might attend"] = "עשוי להיווכח"; App::$strings["View %s's profile @ %s"] = ""; App::$strings["Categories:"] = "קטגוריות:"; App::$strings["Filed under:"] = "תויק תחת:"; -App::$strings["View in context"] = ""; +App::$strings["View in context"] = "צפה בתוך הקשר"; App::$strings["remove"] = "להסיר"; -App::$strings["Delete Selected Items"] = ""; +App::$strings["Loading..."] = "כעת טוען..."; +App::$strings["Delete Selected Items"] = "מחק פריטים נבחרים"; App::$strings["View Source"] = "צפה במקור"; App::$strings["Follow Thread"] = "עקוב שרשור"; -App::$strings["View Status"] = "צפה בסטטוס"; -App::$strings["View Photos"] = "צפה בתצלומים"; -App::$strings["Matrix Activity"] = "פעילות מטריצה"; -App::$strings["Edit Contact"] = "ערוך איש קשר"; -App::$strings["Send PM"] = "שלח הודעה פרטית"; -App::$strings["%s likes this."] = ""; -App::$strings["%s doesn't like this."] = ""; +App::$strings["Unfollow Thread"] = "נקר שרשור"; +App::$strings["Activity/Posts"] = "פעילות/פוסטים"; +App::$strings["Edit Connection"] = "ערוך חיבור"; +App::$strings["Message"] = "הודעה"; +App::$strings["%s likes this."] = "%s אהב זאת."; +App::$strings["%s doesn't like this."] = "%s לא אוהב זאת."; App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "", + 0 => "איש %2\$d אוהב זאת.", + 1 => "%2\$d אנשים אוהבים זאת.", ); App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "", + 0 => "איש %2\$d לא אוהב זאת.", + 1 => "%2\$d אנשים לא אוהבים זאת.", ); -App::$strings["and"] = ""; +App::$strings["and"] = "ועוד"; App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "", + 0 => ", ועוד איש %d אחר", + 1 => ", ועוד %d אנשים אחרים", ); -App::$strings["%s like this."] = ""; -App::$strings["%s don't like this."] = ""; -App::$strings["Visible to everybody"] = ""; -App::$strings["Please enter a link URL:"] = ""; -App::$strings["Please enter a video link/URL:"] = ""; -App::$strings["Please enter an audio link/URL:"] = ""; +App::$strings["%s like this."] = "%s אוהבים זאת."; +App::$strings["%s don't like this."] = "%s לא אוהבים זאת."; +App::$strings["Set your location"] = "קבע את המיקום שלך"; +App::$strings["Clear browser location"] = "טהר מיקום דפדפן"; +App::$strings["Embed image from photo albums"] = ""; App::$strings["Tag term:"] = ""; -App::$strings["Save to Folder:"] = "שמור לתיקייה:"; -App::$strings["Where are you right now?"] = ""; -App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; -App::$strings["Share"] = "שתף"; -App::$strings["Page link name"] = ""; -App::$strings["Post as"] = ""; -App::$strings["Upload photo"] = "העלה תצלום"; -App::$strings["upload photo"] = "העלה תצלום"; -App::$strings["Attach file"] = "צרף קובץ"; -App::$strings["attach file"] = "צרף קובץ"; -App::$strings["Insert web link"] = "הכנס קישור רשת"; -App::$strings["web link"] = "קישור רשת"; -App::$strings["Insert video link"] = "הכנס קישור וידאו"; -App::$strings["video link"] = "קישור וידאו"; -App::$strings["Insert audio link"] = "הכנס קישור אודיו"; -App::$strings["audio link"] = "קישור אודיו"; -App::$strings["Set your location"] = ""; -App::$strings["set location"] = ""; -App::$strings["Toggle voting"] = ""; -App::$strings["Clear browser location"] = ""; -App::$strings["clear location"] = ""; -App::$strings["Title (optional)"] = ""; -App::$strings["Categories (optional, comma-separated list)"] = ""; -App::$strings["Permission settings"] = ""; -App::$strings["permissions"] = "הרשאות"; -App::$strings["Public post"] = ""; -App::$strings["Example: bob@example.com, mary@example.com"] = ""; -App::$strings["Set expiration date"] = ""; +App::$strings["Where are you right now?"] = "היכן אתה כעת?"; +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["Page link name"] = "שם קישור עמוד"; +App::$strings["Post as"] = "פרסם בתור"; +App::$strings["Embed an image from your albums"] = ""; App::$strings["OK"] = "אישור"; -App::$strings["Cancel"] = "ביטול"; -App::$strings["Discover"] = ""; -App::$strings["Imported public streams"] = ""; +App::$strings["Toggle voting"] = ""; +App::$strings["Categories (optional, comma-separated list)"] = "קטגוריות (רשות, רשימה מופרדת פסיקים)"; +App::$strings["Set publish date"] = ""; +App::$strings["Discover"] = "גלה"; +App::$strings["Imported public streams"] = "זרמים ציבוריים מיובאים"; App::$strings["Commented Order"] = ""; App::$strings["Sort by Comment Date"] = ""; App::$strings["Posted Order"] = ""; -App::$strings["Sort by Post Date"] = ""; -App::$strings["Posts that mention or involve you"] = ""; -App::$strings["New"] = "חדש"; -App::$strings["Activity Stream - by date"] = ""; +App::$strings["Sort by Post Date"] = "מיין לפי תאריך פוסט"; +App::$strings["Posts that mention or involve you"] = "פוסטים אשר מציינים או מערבים אותך"; +App::$strings["Activity Stream - by date"] = "זרם פעילות - לפי תאריך"; App::$strings["Starred"] = ""; -App::$strings["Favourite Posts"] = ""; +App::$strings["Favourite Posts"] = "פוסטים מועדפים"; App::$strings["Spam"] = "ספאם"; App::$strings["Posts flagged as SPAM"] = "פוסטים מסומנים בתור ספאם"; -App::$strings["Channel"] = "ערוץ"; App::$strings["Status Messages and Posts"] = "הודעות ופרסומי סטטוס"; App::$strings["About"] = "אודות"; App::$strings["Profile Details"] = "פרטי פרופיל"; -App::$strings["Photo Albums"] = "אלבומי תמונה"; App::$strings["Files and Storage"] = "קבצים ואחסון"; App::$strings["Chatrooms"] = "חדרי שיחה"; +App::$strings["Bookmarks"] = "סימניות"; App::$strings["Saved Bookmarks"] = "סימניות שמורות"; App::$strings["Manage Webpages"] = "נהל עמודי רשת"; App::$strings["__ctx:noun__ Attending"] = array( @@ -553,323 +1711,112 @@ App::$strings["__ctx:noun__ Undecided"] = array( 1 => "", ); App::$strings["__ctx:noun__ Agree"] = array( - 0 => "", - 1 => "", + 0 => "מסכים", + 1 => "מסכימים", ); App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "", - 1 => "", + 0 => "לא מסכים", + 1 => "לא מסכימים", ); App::$strings["__ctx:noun__ Abstain"] = array( 0 => "", 1 => "", ); -App::$strings["Miscellaneous"] = "שונות"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD או MM-DD"; -App::$strings["Required"] = "דָרוּשׁ"; -App::$strings["never"] = "לעולם לא"; -App::$strings["less than a second ago"] = "לפני פחות משניה"; -App::$strings["year"] = "שנה"; -App::$strings["years"] = "שנים"; -App::$strings["month"] = "חודש"; -App::$strings["months"] = "חודשים"; -App::$strings["week"] = "שבוע"; -App::$strings["weeks"] = "שבועות"; -App::$strings["day"] = "יום"; -App::$strings["days"] = "ימים"; -App::$strings["hour"] = "שעה"; -App::$strings["hours"] = "שעות"; -App::$strings["minute"] = "דקה"; -App::$strings["minutes"] = "דקות"; -App::$strings["second"] = "שניה"; -App::$strings["seconds"] = "שניות"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "לפני %1\$d %2\$s"; -App::$strings["%1\$s's birthday"] = ""; -App::$strings["Happy Birthday %1\$s"] = ""; -App::$strings["Please choose"] = "לבחירתך"; -App::$strings["Agree"] = "מסכים/ה"; -App::$strings["Disagree"] = "לא מסכים/ה"; -App::$strings["Abstain"] = "נמנע/ת"; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; -App::$strings["Directory Options"] = ""; -App::$strings["Safe Mode"] = "מצב בטוח"; -App::$strings["No"] = "לא"; -App::$strings["Yes"] = "כן"; -App::$strings["Public Forums Only"] = ""; -App::$strings["This Website Only"] = ""; -App::$strings["%s "] = ""; -App::$strings["[Red:Notify] New mail received at %s"] = ""; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = ""; -App::$strings["%1\$s sent you %2\$s."] = ""; -App::$strings["a private message"] = "הודעה פרטית"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; -App::$strings["Please visit %s to view and/or reply to the conversation."] = ""; -App::$strings["[Red:Notify] %s posted to your profile wall"] = ""; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; -App::$strings["[Red:Notify] %s tagged you"] = ""; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; -App::$strings["[Red:Notify] %1\$s poked you"] = ""; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -App::$strings["[Red:Notify] %s tagged your post"] = ""; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; -App::$strings["[Red:Notify] Introduction received"] = ""; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; -App::$strings["You may visit their profile at %s"] = ""; -App::$strings["Please visit %s to approve or reject the connection request."] = ""; -App::$strings["[Red:Notify] Friend suggestion received"] = ""; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; -App::$strings["Name:"] = "שם:"; -App::$strings["Photo:"] = "תצלום:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = ""; -App::$strings["[Red:Notify]"] = ""; -App::$strings["This event has been added to your calendar."] = "אירוע זה התווסף ללוח שנה שלך."; -App::$strings["General Features"] = ""; -App::$strings["Content Expiration"] = ""; -App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; -App::$strings["Multiple Profiles"] = ""; -App::$strings["Ability to create multiple profiles"] = ""; -App::$strings["Advanced Profiles"] = ""; -App::$strings["Additional profile sections and selections"] = ""; -App::$strings["Profile Import/Export"] = ""; -App::$strings["Save and load profile details across sites/channels"] = ""; -App::$strings["Web Pages"] = "עמודי רשת"; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Private Notes"] = ""; -App::$strings["Enables a tool to store notes and reminders"] = ""; -App::$strings["Navigation Channel Select"] = ""; -App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; -App::$strings["Photo Location"] = "מיקום תצלום"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; -App::$strings["Expert Mode"] = "מצב מומחה"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; -App::$strings["Premium Channel"] = ""; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; -App::$strings["Post Composition Features"] = ""; -App::$strings["Use Markdown"] = ""; -App::$strings["Allow use of \"Markdown\" to format posts"] = ""; -App::$strings["Large Photos"] = ""; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = ""; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["Even More Encryption"] = ""; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; -App::$strings["Enable voting tools"] = ""; -App::$strings["Provide a class of post which others can vote on"] = ""; -App::$strings["Network and Stream Filtering"] = ""; -App::$strings["Search by Date"] = "חפש לפי תאריך"; -App::$strings["Ability to select posts by date ranges"] = "מסנן אוספים"; -App::$strings["Collections Filter"] = "מסנן אוספים"; -App::$strings["Enable widget to display Network posts only from selected collections"] = ""; -App::$strings["Save search terms for re-use"] = ""; -App::$strings["Network Personal Tab"] = ""; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; -App::$strings["Network New Tab"] = ""; -App::$strings["Enable tab to display all new Network activity"] = ""; -App::$strings["Affinity Tool"] = ""; -App::$strings["Filter stream activity by depth of relationships"] = ""; -App::$strings["Connection Filtering"] = ""; -App::$strings["Filter incoming posts from connections based on keywords/content"] = ""; -App::$strings["Suggest Channels"] = ""; -App::$strings["Show channel suggestions"] = ""; -App::$strings["Post/Comment Tools"] = ""; -App::$strings["Tagging"] = ""; -App::$strings["Ability to tag existing posts"] = ""; -App::$strings["Post Categories"] = ""; -App::$strings["Add categories to your posts"] = ""; -App::$strings["Ability to file posts under folders"] = ""; -App::$strings["Dislike Posts"] = ""; -App::$strings["Ability to dislike posts/comments"] = ""; -App::$strings["Star Posts"] = ""; -App::$strings["Ability to mark special posts with a star indicator"] = ""; -App::$strings["Tag Cloud"] = ""; -App::$strings["Provide a personal tag cloud on your channel page"] = ""; -App::$strings["Channel is blocked on this site."] = ""; -App::$strings["Channel location missing."] = ""; +App::$strings["Channel is blocked on this site."] = "ערוץ חסום באתר זה."; +App::$strings["Channel location missing."] = "מיקום ערוץ חסר."; App::$strings["Response from remote channel was incomplete."] = ""; App::$strings["Channel was deleted and no longer exists."] = ""; -App::$strings["Protocol disabled."] = ""; -App::$strings["Protocol blocked for this channel."] = ""; -App::$strings["Channel discovery failed."] = ""; -App::$strings["local account not found."] = ""; -App::$strings["Cannot connect to yourself."] = ""; -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."] = ""; -App::$strings["Default privacy group for new contacts"] = ""; -App::$strings["All Channels"] = "כל הערוצים"; -App::$strings["edit"] = "ערוך"; -App::$strings["Collections"] = "אוספים"; -App::$strings["Edit collection"] = "ערוך אוסף"; -App::$strings["Add new collection"] = "הוסף אוסף חדש"; -App::$strings["Channels not in any collection"] = ""; -App::$strings["Unable to obtain identity information from database"] = ""; -App::$strings["Empty name"] = "שם ריק"; -App::$strings["Name too long"] = "שם ארוך מדי"; -App::$strings["No account identifier"] = "אין מזהה חשבון"; -App::$strings["Nickname is required."] = "נדרש שם כינוי."; -App::$strings["Reserved nickname. Please choose another."] = ""; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = "פרופיל שגרתי"; -App::$strings["Requested channel is not available."] = ""; -App::$strings["Requested profile is not available."] = ""; -App::$strings["Change profile photo"] = ""; -App::$strings["Profiles"] = "פרופילים"; -App::$strings["Manage/edit profiles"] = ""; -App::$strings["Create New Profile"] = "צור פרופיל חדש"; -App::$strings["Profile Image"] = "תמונת פרופיל"; -App::$strings["visible to everybody"] = ""; -App::$strings["Edit visibility"] = ""; -App::$strings["Gender:"] = "מין:"; -App::$strings["Status:"] = "מצב:"; -App::$strings["Homepage:"] = "עמוד בית:"; -App::$strings["Online Now"] = "מקוון כעת"; -App::$strings["g A l F d"] = ""; -App::$strings["F d"] = ""; -App::$strings["[today]"] = "[היום]"; -App::$strings["Birthday Reminders"] = ""; -App::$strings["Birthdays this week:"] = ""; -App::$strings["[No description]"] = "[אין תיאור]"; -App::$strings["Event Reminders"] = ""; -App::$strings["Events this week:"] = ""; -App::$strings["Full Name:"] = "שם מלא:"; -App::$strings["Like this channel"] = ""; -App::$strings["j F, Y"] = ""; -App::$strings["j F"] = ""; -App::$strings["Birthday:"] = "יום הולדת:"; -App::$strings["Age:"] = "גיל:"; -App::$strings["for %1\$d %2\$s"] = ""; -App::$strings["Sexual Preference:"] = "העדפה מינית:"; -App::$strings["Hometown:"] = "עיר מגורים:"; -App::$strings["Tags:"] = "תגיות:"; -App::$strings["Political Views:"] = "השקפות פוליטיות:"; -App::$strings["Religion:"] = "דת:"; -App::$strings["About:"] = "אודות:"; -App::$strings["Hobbies/Interests:"] = "תחביבים/עניין:"; -App::$strings["Likes:"] = "אוהב:"; -App::$strings["Dislikes:"] = "שונא:"; -App::$strings["Contact information and Social Networks:"] = ""; -App::$strings["My other channels:"] = ""; -App::$strings["Musical interests:"] = ""; -App::$strings["Books, literature:"] = ""; -App::$strings["Television:"] = "טלוויזיה:"; -App::$strings["Film/dance/culture/entertainment:"] = ""; -App::$strings["Love/Romance:"] = ""; -App::$strings["Work/employment:"] = ""; -App::$strings["School/education:"] = ""; -App::$strings["Like this thing"] = ""; -App::$strings["Permission denied"] = ""; -App::$strings["(Unknown)"] = "(לא ידוע)"; -App::$strings["Visible to anybody on the internet."] = "נראה לכל אחד באינטרנט."; -App::$strings["Visible to you only."] = "נראה לך בלבד."; -App::$strings["Visible to anybody in this network."] = "נראה לכל אחד ברשת זו."; -App::$strings["Visible to anybody authenticated."] = "נראה לכל מי שהוא מאומת."; -App::$strings["Visible to anybody on %s."] = "נראה לכל אחד אצל %s."; -App::$strings["Visible to all connections."] = "נראה לכל החיבורים."; -App::$strings["Visible to approved connections."] = "נראה לחיבורים מאושרים."; -App::$strings["Visible to specific connections."] = "נראה לחיבורים מסוימים."; -App::$strings["Item not found."] = "פריט לא נמצא."; -App::$strings["Collection not found."] = "אוסף לא נמצא."; -App::$strings["Collection is empty."] = "אוסף הינו ריק."; -App::$strings["Collection: %s"] = "אוסף: %s"; -App::$strings["Connection: %s"] = "חיבור: %s"; -App::$strings["Connection not found."] = "חיבור לא נמצא."; -App::$strings["Delete this item?"] = "למחוק את פריט זה?"; -App::$strings["[-] show less"] = "[-] הצג פחות"; -App::$strings["[+] expand"] = "[+] הרחב"; -App::$strings["[-] collapse"] = "[-] צמצם"; -App::$strings["Password too short"] = "סיסמה קצרה מדי"; -App::$strings["Passwords do not match"] = "סיסמאות לא תואמות"; -App::$strings["everybody"] = "כולם"; -App::$strings["Secret Passphrase"] = "מימרת סיסמה סודית"; -App::$strings["Passphrase hint"] = ""; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; -App::$strings["close all"] = "סגור הכל"; -App::$strings["Nothing new here"] = "אין דבר חדש כאן"; -App::$strings["Rate This Channel (this is public)"] = ""; -App::$strings["Rating"] = ""; -App::$strings["Describe (optional)"] = "תאר (רשות)"; -App::$strings["Please enter a link URL"] = ""; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "לפני"; -App::$strings["from now"] = "מעכשיו"; -App::$strings["less than a minute"] = "פחות מדקה"; -App::$strings["about a minute"] = "דקה לערך"; -App::$strings["%d minutes"] = "%d דקות"; -App::$strings["about an hour"] = "שעה לערך"; -App::$strings["about %d hours"] = " %d שעות לערך"; -App::$strings["a day"] = "יום"; -App::$strings["%d days"] = "%d ימים"; -App::$strings["about a month"] = "חודש לערך"; -App::$strings["%d months"] = "%d חודשים"; -App::$strings["about a year"] = "שנה לערך"; -App::$strings["%d years"] = "%d שנים"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["New Page"] = "עמוד חדש"; -App::$strings["View"] = "תצוגה"; -App::$strings["Actions"] = "פעולות"; -App::$strings["Page Link"] = "קישור עמוד"; -App::$strings["Title"] = "כותרת"; -App::$strings["Created"] = "נוצר"; -App::$strings["Edited"] = "נערך"; -App::$strings["Can view my normal stream and posts"] = ""; -App::$strings["Can view my default channel profile"] = ""; -App::$strings["Can view my photo albums"] = ""; -App::$strings["Can view my connections"] = ""; -App::$strings["Can view my file storage"] = ""; -App::$strings["Can view my webpages"] = ""; -App::$strings["Can send me their channel stream and posts"] = ""; -App::$strings["Can post on my channel page (\"wall\")"] = ""; -App::$strings["Can comment on or like my posts"] = ""; -App::$strings["Can send me private mail messages"] = ""; -App::$strings["Can post photos to my photo albums"] = ""; -App::$strings["Can like/dislike stuff"] = ""; -App::$strings["Profiles and things other than posts/comments"] = ""; -App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; -App::$strings["Advanced - useful for creating group forum channels"] = ""; -App::$strings["Can chat with me (when available)"] = ""; -App::$strings["Can write to my file storage"] = ""; -App::$strings["Can edit my webpages"] = ""; -App::$strings["Can source my public posts in derived channels"] = ""; -App::$strings["Somewhat advanced - very useful in open communities"] = ""; -App::$strings["Can administer my channel resources"] = ""; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -App::$strings["Social Networking"] = "רשת חברתית"; -App::$strings["Mostly Public"] = ""; -App::$strings["Restricted"] = ""; -App::$strings["Private"] = "פרטי"; -App::$strings["Community Forum"] = ""; -App::$strings["Feed Republish"] = ""; -App::$strings["Special Purpose"] = ""; -App::$strings["Celebrity/Soapbox"] = ""; -App::$strings["Group Repository"] = ""; -App::$strings["Other"] = "אחר"; -App::$strings["Custom/Expert Mode"] = ""; -App::$strings["Image exceeds website size limit of %lu bytes"] = ""; -App::$strings["Image file is empty."] = ""; -App::$strings["Unable to process image"] = ""; -App::$strings["Photo storage failed."] = ""; -App::$strings["Upload New Photos"] = "העלה תצלומים חדשים"; -App::$strings["Tags"] = "תגיות"; -App::$strings["Keywords"] = "מילות מפתח"; -App::$strings["have"] = ""; -App::$strings["has"] = ""; -App::$strings["want"] = ""; -App::$strings["wants"] = ""; -App::$strings["likes"] = ""; -App::$strings["dislikes"] = ""; -App::$strings["Male"] = "זכר"; -App::$strings["Female"] = "נקבה"; +App::$strings["Protocol disabled."] = "פרוטוקול הינו מנוטרל."; +App::$strings["Channel discovery failed."] = "גילוי ערוץ נכשל."; +App::$strings["Cannot connect to yourself."] = "לא ניתן להתחבר לעצמך."; +App::$strings["Image/photo"] = "תמונה/תצלום"; +App::$strings["Encrypted content"] = "תוכן מוצפן"; +App::$strings["Install %s element: "] = "התקן אלמנט %s: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = ""; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = ""; +App::$strings["Click to open/close"] = "לחץ כדי לפתוח/לסגור"; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = "צופים שונים ייראו את טקסט זה בצורה שונה"; +App::$strings["$1 wrote:"] = "$1 כתב(ה):"; +App::$strings["%1\$s's bookmarks"] = ""; +App::$strings["Directory Options"] = "אפשרויות ספרייה"; +App::$strings["Safe Mode"] = "מצב בטוח"; +App::$strings["Public Forums Only"] = "פורומים ציבוריים בלבד"; +App::$strings["This Website Only"] = "אתר רשת זה בלבד"; +App::$strings["Invalid data packet"] = ""; +App::$strings["Unable to verify channel signature"] = ""; +App::$strings["Unable to verify site signature for %s"] = ""; +App::$strings["invalid target signature"] = ""; +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."] = ""; +App::$strings["Logout"] = "יציאה"; +App::$strings["End this session"] = "סיים את סשן זה"; +App::$strings["Home"] = "בית"; +App::$strings["Your posts and conversations"] = "הפרסומים והדיונים שלך"; +App::$strings["Your profile page"] = "עמוד הפרופיל שלך"; +App::$strings["Manage/Edit profiles"] = "נהל/ערוך פרופילים"; +App::$strings["Edit Profile"] = "ערוך פרופיל"; +App::$strings["Edit your profile"] = "ערוך את הפרופיל שלך"; +App::$strings["Your photos"] = "התצלומים שלך"; +App::$strings["Your files"] = "הקבצים שלך"; +App::$strings["Your chatrooms"] = "החדרי שיחה שלך"; +App::$strings["Your bookmarks"] = "הסימניות שלך"; +App::$strings["Your webpages"] = "העמודי רשת שלך"; +App::$strings["Sign in"] = "התחברות"; +App::$strings["%s - click to logout"] = "%s - לחץ כדי להתנתק"; +App::$strings["Remote authentication"] = "אימות מרוחק"; +App::$strings["Click to authenticate to your home hub"] = "לחץ כדי לאמת את מוקד הבית שלך"; +App::$strings["Home Page"] = "עמוד בית"; +App::$strings["Create an account"] = "צור חשבון"; +App::$strings["Help and documentation"] = "עזרה ותיעוד"; +App::$strings["Applications, utilities, links, games"] = "אפליקציות, עזרים, קישורים, משחקים"; +App::$strings["Search site @name, #tag, ?docs, content"] = ""; +App::$strings["Channel Directory"] = "ערוץ ספרייה"; +App::$strings["Your grid"] = ""; +App::$strings["Mark all grid notifications seen"] = ""; +App::$strings["Channel home"] = "ערוץ בית"; +App::$strings["Mark all channel notifications seen"] = "סמן את כל התראות הערוץ כנקראו"; +App::$strings["Notices"] = "הודעות"; +App::$strings["Notifications"] = "התראות"; +App::$strings["See all notifications"] = "צפה בכל ההתראות"; +App::$strings["Private mail"] = "דואר פרטי"; +App::$strings["See all private messages"] = "צפה בכל ההודעות הפרטיות"; +App::$strings["Mark all private messages seen"] = "סמן את כל ההודעות הפרטיות כנקראו"; +App::$strings["Inbox"] = "תיבה נכנסת"; +App::$strings["Outbox"] = "תיבה יוצאת"; +App::$strings["New Message"] = "הודעה חדשה"; +App::$strings["Event Calendar"] = "לוח שנה אירועים"; +App::$strings["See all events"] = "ראה את כל האירועים"; +App::$strings["Mark all events seen"] = "סמן את כל האירועים כנקראו"; +App::$strings["Manage Your Channels"] = "נהל את הערוצים שלך"; +App::$strings["Account/Channel Settings"] = "הגדרות חשבון/ערוץ"; +App::$strings["Admin"] = "מנהל"; +App::$strings["Site Setup and Configuration"] = "הבניית והגדרת אתר"; +App::$strings["@name, #tag, ?doc, content"] = "@name, #tag, ?doc, content"; +App::$strings["Please wait..."] = "אנא המתן..."; +App::$strings["%d invitation available"] = array( + 0 => "הזמנה %d זמינה", + 1 => "%d הזמנות זמינות", +); +App::$strings["Find Channels"] = "מצא ערוצים"; +App::$strings["Enter name or interest"] = "הזן שם או עניין"; +App::$strings["Connect/Follow"] = "התחבר/עקוב"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = ""; +App::$strings["Random Profile"] = "פרופיל אקראי"; +App::$strings["Invite Friends"] = "הזמן חברים"; +App::$strings["Advanced example: name=fred and country=iceland"] = "דוגמא מתקדמת: name=פרד וגם country=איסלנד"; +App::$strings["Saved Folders"] = "תיקיות שמורות"; +App::$strings["Everything"] = "כל דבר"; +App::$strings["%d connection in common"] = array( + 0 => "", + 1 => "", +); +App::$strings["show more"] = "הצג עוד"; +App::$strings["Frequently"] = "באופן תדיר"; +App::$strings["Hourly"] = "כל שעה"; +App::$strings["Twice daily"] = "פעמיים ביום"; +App::$strings["Daily"] = "יומי"; +App::$strings["Weekly"] = "שבועי"; +App::$strings["Monthly"] = "חודשי"; App::$strings["Currently Male"] = "כעת זכר"; App::$strings["Currently Female"] = "כעת נקבה"; App::$strings["Mostly Male"] = "בעיקר זכר"; @@ -880,15 +1827,16 @@ App::$strings["Transsexual"] = "טרנסקסואל"; App::$strings["Hermaphrodite"] = "אנדרוגיני"; App::$strings["Neuter"] = "ניטראלי"; App::$strings["Non-specific"] = ""; -App::$strings["Undecided"] = ""; +App::$strings["Other"] = "אחר"; +App::$strings["Undecided"] = "לא מוכרע"; App::$strings["Males"] = "זכרים"; App::$strings["Females"] = "נקבות"; App::$strings["Gay"] = "הומו"; App::$strings["Lesbian"] = "לסבית"; App::$strings["No Preference"] = "אין העדפה"; App::$strings["Bisexual"] = "דו מיני"; -App::$strings["Autosexual"] = ""; -App::$strings["Abstinent"] = ""; +App::$strings["Autosexual"] = "אוטוסקסואלי"; +App::$strings["Abstinent"] = "מתנזר"; App::$strings["Virgin"] = "בתול/ה"; App::$strings["Deviant"] = "סוטה"; App::$strings["Fetish"] = "פטיש"; @@ -924,1206 +1872,406 @@ App::$strings["Uncertain"] = ""; App::$strings["It's complicated"] = "זה מורכב"; App::$strings["Don't care"] = "לא משנה"; App::$strings["Ask me"] = "תשאלו אותי"; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = ""; -App::$strings["Cannot verify requested channel."] = ""; -App::$strings["Selected channel has private message restrictions. Send failed."] = ""; -App::$strings["Message deleted."] = "הודעה נמחקה."; -App::$strings["Message recalled."] = "הודעה הוחזרה."; -App::$strings["Send Private Message"] = "שלח הודעה פרטית"; -App::$strings["To:"] = "לכבוד:"; -App::$strings["Subject:"] = "נושא:"; -App::$strings["Your message:"] = "הודעתך:"; -App::$strings["Send"] = "שלח"; -App::$strings["Message not found."] = "הודעה לא נמצאה."; -App::$strings["Delete message"] = "מחק הודעה"; -App::$strings["Recall message"] = "בטל הודעה"; -App::$strings["Message has been recalled."] = ""; -App::$strings["Private Conversation"] = ""; -App::$strings["Delete conversation"] = "מחק דיון"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -App::$strings["Send Reply"] = "שלח משוב"; -App::$strings["Hub not found."] = ""; -App::$strings["Some blurb about what to do when you're new here"] = ""; -App::$strings["Invalid item."] = "פריט שגוי."; -App::$strings["Channel not found."] = ""; -App::$strings["Page not found."] = "עמוד לא נמצא."; -App::$strings["Lorem Ipsum"] = ""; -App::$strings["network"] = "רשת"; -App::$strings["RSS"] = "RSS"; -App::$strings["Theme settings updated."] = ""; -App::$strings["Site"] = "אתר"; -App::$strings["Accounts"] = "חשבונות"; -App::$strings["Channels"] = "ערוצים"; -App::$strings["Plugins"] = "תוספות"; -App::$strings["Themes"] = "ערכות נושא"; -App::$strings["Inspect queue"] = ""; -App::$strings["Profile Config"] = ""; -App::$strings["DB updates"] = ""; -App::$strings["Logs"] = "יומנים"; -App::$strings["Plugin Features"] = ""; -App::$strings["User registrations waiting for confirmation"] = ""; -App::$strings["# Accounts"] = "# חשבונות"; -App::$strings["# blocked accounts"] = "# חשבונות חסומים"; -App::$strings["# expired accounts"] = ""; -App::$strings["# expiring accounts"] = ""; -App::$strings["# Channels"] = "# ערוצים"; -App::$strings["# primary"] = ""; -App::$strings["# clones"] = "# שיבוטים"; -App::$strings["Message queues"] = ""; -App::$strings["Administration"] = "הנהלה"; -App::$strings["Summary"] = "סיכום"; -App::$strings["Registered accounts"] = "חשבונות רשומים"; -App::$strings["Pending registrations"] = ""; -App::$strings["Registered channels"] = "ערוצים רשומים"; -App::$strings["Active plugins"] = "תוספים פעילים"; -App::$strings["Version"] = "גרסא"; -App::$strings["Site settings updated."] = ""; -App::$strings["mobile"] = ""; -App::$strings["experimental"] = ""; -App::$strings["unsupported"] = ""; -App::$strings["Yes - with approval"] = ""; -App::$strings["My site is not a public server"] = ""; -App::$strings["My site has paid access only"] = ""; -App::$strings["My site has free access only"] = ""; -App::$strings["My site offers free accounts with optional paid upgrades"] = ""; -App::$strings["Registration"] = "רישום"; -App::$strings["File upload"] = ""; -App::$strings["Policies"] = "מדינויות"; -App::$strings["Site name"] = "שם אתר"; -App::$strings["Banner/Logo"] = ""; -App::$strings["Administrator Information"] = "מידע מנהל"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["System language"] = "שפת מערכת"; -App::$strings["System theme"] = "מוטיב מערכת"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -App::$strings["Mobile system theme"] = ""; -App::$strings["Theme for mobile devices"] = ""; -App::$strings["Enable Diaspora Protocol"] = "אפשר פרוטוקול Diaspora"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = ""; -App::$strings["Allow Feeds as Connections"] = ""; -App::$strings["(Heavy system resource usage)"] = ""; -App::$strings["Maximum image size"] = ""; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -App::$strings["Does this site allow new member registration?"] = ""; -App::$strings["Which best describes the types of account offered by this hub?"] = ""; -App::$strings["Register text"] = ""; -App::$strings["Will be displayed prominently on the registration page."] = ""; -App::$strings["Site homepage to show visitors (default: login box)"] = ""; -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."] = ""; -App::$strings["Preserve site homepage URL"] = ""; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = ""; -App::$strings["Accounts abandoned after x days"] = ""; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -App::$strings["Allowed friend domains"] = ""; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Not allowed email domains"] = ""; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = ""; -App::$strings["Block public"] = ""; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -App::$strings["Verify Email Addresses"] = ""; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = ""; -App::$strings["Force publish"] = ""; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -App::$strings["Disable discovery tab"] = ""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; -App::$strings["login on Homepage"] = ""; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = ""; -App::$strings["Proxy user"] = ""; -App::$strings["Proxy URL"] = ""; -App::$strings["Network timeout"] = ""; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -App::$strings["Delivery interval"] = ""; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -App::$strings["Poll interval"] = ""; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -App::$strings["Maximum Load Average"] = ""; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -App::$strings["Expiration period in days for imported (matrix/network) content"] = ""; -App::$strings["0 for no expiration of imported content"] = ""; -App::$strings["No server found"] = "לא נמצא שרת"; -App::$strings["ID"] = "מזהה"; -App::$strings["for channel"] = "לערוץ"; -App::$strings["on server"] = "בשרת"; -App::$strings["Status"] = "מצב"; -App::$strings["Server"] = "שרת"; -App::$strings["Update has been marked successful"] = ""; -App::$strings["Executing %s failed. Check system logs."] = ""; -App::$strings["Update %s was successfully applied."] = ""; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -App::$strings["Update function %s could not be found."] = ""; -App::$strings["No failed updates."] = ""; -App::$strings["Failed Updates"] = ""; -App::$strings["Mark success (if update was manually applied)"] = ""; -App::$strings["Attempt to execute this update step automatically"] = ""; -App::$strings["Queue Statistics"] = ""; -App::$strings["Total Entries"] = ""; -App::$strings["Priority"] = "עדיפות"; -App::$strings["Destination URL"] = ""; -App::$strings["Mark hub permanently offline"] = ""; -App::$strings["Empty queue for this hub"] = ""; -App::$strings["Last known contact"] = ""; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s account deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Account not found"] = "חשבון לא נמצא"; -App::$strings["Account '%s' deleted"] = "חשבון '%s' נמחק"; -App::$strings["Account '%s' blocked"] = "חשבון '%s' נחסם"; -App::$strings["Account '%s' unblocked"] = "חשבון '%s' נפתח"; -App::$strings["Users"] = "משתמשים"; -App::$strings["select all"] = "בחר הכל"; -App::$strings["User registrations waiting for confirm"] = "הרשמות משתמש אשר ממתינות לאישור"; -App::$strings["Request date"] = ""; -App::$strings["No registrations."] = "אין הרשמות."; -App::$strings["Approve"] = ""; -App::$strings["Deny"] = "לאסור"; -App::$strings["Block"] = "חסום"; -App::$strings["Unblock"] = "בטל חסימה"; -App::$strings["Register date"] = ""; -App::$strings["Last login"] = ""; -App::$strings["Expires"] = ""; -App::$strings["Service Class"] = ""; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "", - 1 => "", -); -App::$strings["%s channel deleted"] = array( - 0 => "", - 1 => "", -); -App::$strings["Channel not found"] = "ערוץ לא נמצא"; -App::$strings["Channel '%s' deleted"] = ""; -App::$strings["Channel '%s' censored"] = ""; -App::$strings["Channel '%s' uncensored"] = ""; -App::$strings["Channel '%s' code allowed"] = ""; -App::$strings["Channel '%s' code disallowed"] = ""; -App::$strings["Censor"] = ""; -App::$strings["Uncensor"] = ""; -App::$strings["Allow Code"] = ""; -App::$strings["Disallow Code"] = ""; -App::$strings["UID"] = ""; -App::$strings["Address"] = "כתובת"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["Plugin %s disabled."] = ""; -App::$strings["Plugin %s enabled."] = ""; -App::$strings["Disable"] = ""; -App::$strings["Enable"] = ""; -App::$strings["Toggle"] = ""; -App::$strings["Author: "] = "מחבר: "; -App::$strings["Maintainer: "] = "מתחזק: "; -App::$strings["No themes found."] = "לא נמצאו מוטיבים."; -App::$strings["Screenshot"] = "צילום מסך"; -App::$strings["[Experimental]"] = "[ניסיוני]"; -App::$strings["[Unsupported]"] = "[לא נתמך]"; -App::$strings["Log settings updated."] = ""; -App::$strings["Clear"] = "טהר"; -App::$strings["Debugging"] = "דיבאג"; -App::$strings["Log file"] = "קובץ יומן"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = ""; -App::$strings["Log level"] = ""; -App::$strings["New Profile Field"] = ""; -App::$strings["Field nickname"] = ""; -App::$strings["System name of field"] = ""; -App::$strings["Input type"] = "טיפוס קלט"; -App::$strings["Field Name"] = "שם שדה"; -App::$strings["Label on profile pages"] = ""; -App::$strings["Help text"] = "טקסט עזרה"; -App::$strings["Additional info (optional)"] = "מידע נוסף (רשות)"; -App::$strings["Field definition not found"] = ""; -App::$strings["Edit Profile Field"] = ""; -App::$strings["This setting requires special processing and editing has been blocked."] = ""; -App::$strings["Configuration Editor"] = "עורך תצורה"; -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."] = ""; -App::$strings["Authorize application connection"] = ""; -App::$strings["Return to your app and insert this Securty Code:"] = ""; -App::$strings["Please login to continue."] = "אנא התחבר כדי להמשיך."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; -App::$strings["Layout updated."] = ""; -App::$strings["Edit System Page Description"] = ""; -App::$strings["Layout not found."] = ""; -App::$strings["Module Name:"] = ""; -App::$strings["Layout Help"] = ""; -App::$strings["App installed."] = "אפליקציה מותקנת."; -App::$strings["Malformed app."] = "אפליקציה פגומה."; -App::$strings["Embed code"] = ""; -App::$strings["Edit App"] = "ערוך אפליקציה"; -App::$strings["Create App"] = "צור אפליקציה"; -App::$strings["Name of app"] = "שם של אפליקציה"; -App::$strings["Location (URL) of app"] = ""; -App::$strings["Description"] = "תיאור"; -App::$strings["Photo icon URL"] = ""; -App::$strings["80 x 80 pixels - optional"] = ""; -App::$strings["Version ID"] = ""; -App::$strings["Price of app"] = ""; -App::$strings["Location (URL) to purchase app"] = ""; -App::$strings["Page owner information could not be retrieved."] = ""; -App::$strings["Album not found."] = "אלבום לא נמצא."; -App::$strings["Delete Album"] = "מחק אלבום"; -App::$strings["Delete Photo"] = "מחק תצלום"; -App::$strings["Public access denied."] = ""; -App::$strings["No photos selected"] = "לא נבחרו תצלומים"; -App::$strings["Access to this item is restricted."] = ""; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = ""; -App::$strings["%1$.2f MB photo storage used."] = ""; -App::$strings["Upload Photos"] = "העלה תצלומים"; -App::$strings["Enter a new album name"] = "הזן שם אלבום חדש"; -App::$strings["or select an existing one (doubleclick)"] = "או בחר באחד קיים (לחיצה כפולה)"; -App::$strings["Create a status post for this upload"] = ""; -App::$strings["Album name could not be decoded"] = ""; -App::$strings["Contact Photos"] = "תצלומי איש קשר"; -App::$strings["Show Newest First"] = ""; -App::$strings["Show Oldest First"] = ""; -App::$strings["View Photo"] = "צפה בתצלום"; -App::$strings["Edit Album"] = "ערוך אלבום"; -App::$strings["Permission denied. Access to this item may be restricted."] = ""; -App::$strings["Photo not available"] = "תצלום לא זמין"; -App::$strings["Use as profile photo"] = ""; -App::$strings["Private Photo"] = "תצלום פרטי"; -App::$strings["Previous"] = "קודם"; -App::$strings["View Full Size"] = ""; -App::$strings["Next"] = "הבא"; -App::$strings["Remove"] = "הסר"; -App::$strings["Edit photo"] = "ערוך תצלום"; -App::$strings["Rotate CW (right)"] = ""; -App::$strings["Rotate CCW (left)"] = ""; -App::$strings["Caption"] = "דברי הסבר"; -App::$strings["Add a Tag"] = "הוסף תגית"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = ""; -App::$strings["Flag as adult in album view"] = ""; -App::$strings["In This Photo:"] = ""; -App::$strings["Map"] = "מפה"; -App::$strings["View Album"] = ""; -App::$strings["Recent Photos"] = ""; -App::$strings["Item not available."] = "פריט לא נמצא."; -App::$strings["sent you a private message"] = ""; -App::$strings["added your channel"] = ""; -App::$strings["posted an event"] = ""; -App::$strings["Block Name"] = ""; -App::$strings["Block Title"] = ""; -App::$strings["Poke/Prod"] = "דחוף/עורר"; -App::$strings["poke, prod or do other things to somebody"] = "דחוף, עורר או עשה דברים אחרים למישהו"; -App::$strings["Recipient"] = ""; -App::$strings["Choose what you wish to do to recipient"] = ""; -App::$strings["Make this post private"] = ""; -App::$strings["Bookmark added"] = "סימנייה התווספה"; -App::$strings["My Bookmarks"] = "הסימניות שלי"; -App::$strings["My Connections Bookmarks"] = "סימניות החיבורים שלי"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; -App::$strings["Create a new channel"] = "צור ערוץ חדש"; -App::$strings["Current Channel"] = "ערוץ נוכחי"; -App::$strings["Switch to one of your channels by selecting it."] = ""; -App::$strings["Default Channel"] = "ערוץ שגרתי"; -App::$strings["Make Default"] = "הפוך לשגרתי"; -App::$strings["%d new messages"] = "%d הודעות חדשות"; -App::$strings["%d new introductions"] = ""; -App::$strings["Delegated Channels"] = ""; -App::$strings["Profile Match"] = ""; -App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; -App::$strings["is interested in:"] = ""; -App::$strings["No matches"] = ""; -App::$strings["Members"] = "חברים"; -App::$strings["All Connected Channels"] = ""; -App::$strings["Click on a channel to add or remove."] = ""; -App::$strings["Poll"] = "הצבעה"; -App::$strings["View Results"] = "צפה בתוצאות"; -App::$strings["You must be logged in to see this page."] = ""; -App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -App::$strings["Welcome %s. Remote authentication successful."] = ""; -App::$strings["Room not found"] = ""; -App::$strings["Leave Room"] = "עזוב חדר"; -App::$strings["Delete This Room"] = "מחק את חדר זה"; -App::$strings["I am away right now"] = "אני נעדר/ת ברגע זה"; -App::$strings["I am online"] = "אני במצב מקוון"; -App::$strings["Bookmark this room"] = "סמן את חדר זה"; -App::$strings["New Chatroom"] = "חדר שיחה חדש"; -App::$strings["Chatroom Name"] = "שם חדר שיחה"; -App::$strings["%1\$s's Chatrooms"] = "חדרי שיחה של %1\$s"; -App::$strings["Away"] = "נעדר"; -App::$strings["Online"] = "מקוון"; -App::$strings["Fetching URL returns error: %1\$s"] = ""; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = ""; -App::$strings["No channel."] = "אין ערוץ."; -App::$strings["Common connections"] = "חיבורים מצויים"; -App::$strings["No connections in common."] = ""; -App::$strings["Image uploaded but image cropping failed."] = ""; -App::$strings["Image resize failed."] = ""; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -App::$strings["Image exceeds size limit of %d"] = ""; -App::$strings["Unable to process image."] = ""; -App::$strings["Photo not available."] = "תצלום לא זמין."; -App::$strings["Upload File:"] = "העלה קובץ:"; -App::$strings["Select a profile:"] = "בחר פרופיל:"; -App::$strings["Upload Profile Photo"] = ""; -App::$strings["or"] = "או"; -App::$strings["skip this step"] = "דלג על צעד זה"; -App::$strings["select a photo from your photo albums"] = ""; -App::$strings["Crop Image"] = ""; -App::$strings["Please adjust the image cropping for optimum viewing."] = ""; -App::$strings["Done Editing"] = ""; -App::$strings["Image uploaded successfully."] = ""; -App::$strings["Image upload failed."] = ""; -App::$strings["Image size reduction [%s] failed."] = ""; -App::$strings["Continue"] = "המשך"; -App::$strings["Premium Channel Setup"] = ""; -App::$strings["Enable premium channel connection restrictions"] = ""; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; -App::$strings["Potential connections will then see the following text before proceeding:"] = ""; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; -App::$strings["Restricted or Premium Channel"] = ""; -App::$strings["Invalid request identifier."] = ""; -App::$strings["Discard"] = ""; -App::$strings["Ignore"] = "התעלמות"; -App::$strings["No more system notifications."] = ""; -App::$strings["System Notifications"] = ""; -App::$strings["Blocked"] = ""; -App::$strings["Ignored"] = ""; -App::$strings["Hidden"] = "מוסתר"; -App::$strings["Archived"] = ""; -App::$strings["Suggest new connections"] = ""; -App::$strings["New Connections"] = "חיבורים חדשים"; -App::$strings["Show pending (new) connections"] = ""; -App::$strings["All Connections"] = "כל החיבורים"; -App::$strings["Show all connections"] = ""; -App::$strings["Unblocked"] = ""; -App::$strings["Only show unblocked connections"] = ""; -App::$strings["Only show blocked connections"] = ""; -App::$strings["Only show ignored connections"] = ""; -App::$strings["Only show archived connections"] = ""; -App::$strings["Only show hidden connections"] = ""; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = ""; -App::$strings["Search your connections"] = ""; -App::$strings["Finding: "] = ""; -App::$strings["Profile not found."] = "פרופיל לא נמצא."; -App::$strings["Profile deleted."] = "פרופיל נמחק."; -App::$strings["Profile-"] = "פרופיל-"; -App::$strings["New profile created."] = "פרופיל חדש נוצר."; -App::$strings["Profile unavailable to clone."] = ""; -App::$strings["Profile unavailable to export."] = ""; -App::$strings["Profile Name is required."] = ""; -App::$strings["Marital Status"] = ""; -App::$strings["Romantic Partner"] = ""; -App::$strings["Likes"] = ""; -App::$strings["Dislikes"] = ""; -App::$strings["Work/Employment"] = ""; -App::$strings["Religion"] = "דת"; -App::$strings["Political Views"] = "השקפות פוליטיות"; -App::$strings["Gender"] = "מין"; -App::$strings["Sexual Preference"] = "העדפה מינית"; -App::$strings["Homepage"] = "עמוד בית"; -App::$strings["Interests"] = ""; -App::$strings["Location"] = "מיקום"; -App::$strings["Profile updated."] = ""; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = ""; -App::$strings["Edit Profile Details"] = ""; -App::$strings["View this profile"] = ""; -App::$strings["Change Profile Photo"] = ""; -App::$strings["Create a new profile using these settings"] = ""; -App::$strings["Clone this profile"] = "שבט את פרופיל זה"; -App::$strings["Delete this profile"] = "מחק את פרופיל זה"; -App::$strings["Import profile from file"] = ""; -App::$strings["Export profile to file"] = ""; -App::$strings["Profile Name:"] = "שם פרופיל:"; -App::$strings["Your Full Name:"] = "שמך המלא:"; -App::$strings["Title/Description:"] = "כותרת/תיאור:"; -App::$strings["Your Gender:"] = "המין שלך:"; -App::$strings["Birthday :"] = "יום הולדת:"; -App::$strings["Street Address:"] = "כתובת רחוב:"; -App::$strings["Locality/City:"] = ""; -App::$strings["Postal/Zip Code:"] = ""; -App::$strings["Country:"] = "ארץ:"; -App::$strings["Region/State:"] = ""; -App::$strings[" Marital Status:"] = ""; -App::$strings["Who: (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = ""; -App::$strings["Since [date]:"] = ""; -App::$strings["Homepage URL:"] = ""; -App::$strings["Religious Views:"] = ""; -App::$strings["Keywords:"] = "מילות מפתח:"; -App::$strings["Example: fishing photography software"] = ""; -App::$strings["Used in directory listings"] = ""; -App::$strings["Tell us about yourself..."] = ""; -App::$strings["Hobbies/Interests"] = ""; -App::$strings["Contact information and Social Networks"] = ""; -App::$strings["My other channels"] = ""; -App::$strings["Musical interests"] = ""; -App::$strings["Books, literature"] = ""; -App::$strings["Television"] = "טלוויזיה"; -App::$strings["Film/dance/culture/entertainment"] = ""; -App::$strings["Love/romance"] = ""; -App::$strings["Work/employment"] = ""; -App::$strings["School/education"] = ""; -App::$strings["This is your default profile."] = ""; -App::$strings["Age: "] = "גיל: "; -App::$strings["Edit/Manage Profiles"] = ""; -App::$strings["Add profile things"] = ""; -App::$strings["Include desirable objects in your profile"] = ""; -App::$strings["Could not access contact record."] = ""; -App::$strings["Could not locate selected profile."] = ""; -App::$strings["Connection updated."] = ""; -App::$strings["Failed to update connection record."] = ""; -App::$strings["is now connected to"] = ""; -App::$strings["Could not access address book record."] = ""; -App::$strings["Refresh failed - channel is currently unavailable."] = ""; -App::$strings["Unable to set address book parameters."] = ""; -App::$strings["Connection has been removed."] = ""; -App::$strings["View %s's profile"] = ""; -App::$strings["Refresh Permissions"] = ""; -App::$strings["Fetch updated permissions"] = ""; -App::$strings["Recent Activity"] = ""; -App::$strings["View recent posts and comments"] = ""; -App::$strings["Block (or Unblock) all communications with this connection"] = ""; -App::$strings["This connection is blocked!"] = ""; -App::$strings["Unignore"] = ""; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = ""; -App::$strings["This connection is ignored!"] = ""; -App::$strings["Unarchive"] = ""; -App::$strings["Archive"] = ""; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = ""; -App::$strings["This connection is archived!"] = ""; -App::$strings["Unhide"] = ""; -App::$strings["Hide"] = "הסתר"; -App::$strings["Hide or Unhide this connection from your other connections"] = ""; -App::$strings["This connection is hidden!"] = "חיבור זה הינו מוסתר!"; -App::$strings["Delete this connection"] = "מחק את חיבור זה"; -App::$strings["Approve this connection"] = "אשר את חיבור זה"; -App::$strings["Accept connection to allow communication"] = "אשר חיבור כדי להתיר תקשורת"; -App::$strings["Set Affinity"] = ""; -App::$strings["Set Profile"] = ""; -App::$strings["Set Affinity & Profile"] = ""; -App::$strings["Apply these permissions automatically"] = ""; -App::$strings["This connection's address is"] = ""; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = ""; -App::$strings["Slide to adjust your degree of friendship"] = ""; -App::$strings["Slide to adjust your rating"] = ""; -App::$strings["Optionally explain your rating"] = ""; -App::$strings["Custom Filter"] = ""; -App::$strings["Only import posts with this text"] = ""; -App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = ""; -App::$strings["Do not import posts with this text"] = ""; -App::$strings["This information is public!"] = ""; -App::$strings["Connection Pending Approval"] = ""; -App::$strings["Connection Request"] = ""; -App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = ""; -App::$strings["Approve Later"] = ""; -App::$strings["inherited"] = ""; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -App::$strings["Their Settings"] = "ההגדרות שלהם"; -App::$strings["My Settings"] = "ההגדרות שלי"; -App::$strings["Individual Permissions"] = ""; -App::$strings["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."] = ""; -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."] = ""; -App::$strings["Last update:"] = ""; -App::$strings["Invalid profile identifier."] = ""; -App::$strings["Profile Visibility Editor"] = ""; -App::$strings["Click on a contact to add or remove."] = ""; -App::$strings["Visible To"] = ""; -App::$strings["\$Projectname channel"] = "ערוץ \$Projectname"; -App::$strings["%d rating"] = array( - 0 => "", - 1 => "", -); -App::$strings["Gender: "] = "מין: "; -App::$strings["Status: "] = "מצב: "; -App::$strings["Homepage: "] = "עמוד בית: "; -App::$strings["Description:"] = "תיאור:"; -App::$strings["Public Forum:"] = "פורום פומבי:"; -App::$strings["Keywords: "] = "מילות מפתח: "; -App::$strings["Don't suggest"] = "אל תציע"; -App::$strings["Common connections:"] = "חיבורים שכיחים:"; -App::$strings["Global Directory"] = "ספרייה גלובלית"; -App::$strings["Local Directory"] = "ספרייה מקומית"; -App::$strings["Finding:"] = ""; -App::$strings["next page"] = "עמוד הבא"; -App::$strings["previous page"] = "עמוד קודם"; -App::$strings["Sort options"] = "אפשרויות מיון"; -App::$strings["Alphabetic"] = "אלפבתי"; -App::$strings["Reverse Alphabetic"] = ""; -App::$strings["Newest to Oldest"] = ""; -App::$strings["Oldest to Newest"] = ""; -App::$strings["No entries (some entries may be hidden)."] = ""; -App::$strings["Public Sites"] = ""; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; -App::$strings["Rate this hub"] = ""; -App::$strings["Site URL"] = "URL אתר"; -App::$strings["Access Type"] = "טיפוס גישה"; -App::$strings["Registration Policy"] = "מדיניות רישום"; -App::$strings["Project"] = "פרויקט"; -App::$strings["View hub ratings"] = ""; -App::$strings["Rate"] = ""; -App::$strings["View ratings"] = ""; -App::$strings["This site is not a directory server"] = ""; -App::$strings["This directory server requires an access token"] = ""; -App::$strings["Item not found"] = "פריט לא נמצא"; -App::$strings["Delete block?"] = ""; -App::$strings["Insert YouTube video"] = "הכנס וידאו YouTube"; -App::$strings["Insert Vorbis [.ogg] video"] = "הכנס וידאו Vorbis [.ogg]‎"; -App::$strings["Insert Vorbis [.ogg] audio"] = "הכנס אודיו Vorbis [.ogg]‎"; -App::$strings["Edit Block"] = ""; -App::$strings["Delete layout?"] = ""; -App::$strings["Layout Description (Optional)"] = ""; -App::$strings["Layout Name"] = ""; -App::$strings["Edit Layout"] = ""; -App::$strings["Item is not editable"] = "פריט אינו עריך."; -App::$strings["Delete item?"] = "למחוק פריט?"; -App::$strings["Edit post"] = "ערוך פוסט"; -App::$strings["Unable to find your hub."] = ""; -App::$strings["Post successful."] = ""; -App::$strings["Delete webpage?"] = "למחוק עמוד רשת?"; -App::$strings["Page link title"] = ""; -App::$strings["Edit Webpage"] = "ערוך עמוד רשת"; -App::$strings["Website:"] = "אתר רשת:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = ""; -App::$strings["Rating (this information is public)"] = ""; -App::$strings["Optionally explain your rating (this information is public)"] = ""; -App::$strings["Calendar entries imported."] = ""; -App::$strings["No calendar entries found."] = ""; -App::$strings["Event can not end before it has started."] = ""; -App::$strings["Unable to generate preview."] = ""; -App::$strings["Event title and start time are required."] = ""; -App::$strings["Event not found."] = "אירוע לא נמצא."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "ערוך אירוע"; -App::$strings["Delete event"] = "מחק אירוע"; -App::$strings["calendar"] = "לוח שנה"; -App::$strings["Create New Event"] = "צור אירוע חדש"; -App::$strings["Export"] = "יצא"; -App::$strings["Import"] = "יבא"; -App::$strings["Event removed"] = "אירוע הוסר"; -App::$strings["Failed to remove event"] = "נכשל להסיר אירוע"; -App::$strings["Event details"] = "פרטי אירוע"; -App::$strings["Starting date and Title are required."] = ""; -App::$strings["Categories (comma-separated list)"] = ""; -App::$strings["Event Starts:"] = "אירוע מתחיל:"; -App::$strings["Finish date/time is not known or not relevant"] = ""; -App::$strings["Event Finishes:"] = "אירוע מסתיים:"; -App::$strings["Adjust for viewer timezone"] = ""; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = ""; -App::$strings["Title:"] = "כותרת:"; -App::$strings["Share this event"] = "שתף את אירוע זה"; -App::$strings["No ratings"] = ""; -App::$strings["Ratings"] = ""; -App::$strings["Rating: "] = ""; -App::$strings["Website: "] = "אתר רשת:"; -App::$strings["Description: "] = "תיאור: "; -App::$strings["Select a bookmark folder"] = ""; -App::$strings["Save Bookmark"] = ""; -App::$strings["URL of bookmark"] = ""; -App::$strings["Or enter new bookmark folder name"] = ""; -App::$strings["- select -"] = "- בחר -"; -App::$strings["Permission Denied."] = ""; -App::$strings["File not found."] = "קובץ לא נמצא."; -App::$strings["Edit file permissions"] = ""; -App::$strings["Set/edit permissions"] = ""; -App::$strings["Include all files and sub folders"] = ""; -App::$strings["Return to file list"] = ""; -App::$strings["Copy/paste this code to attach file to a post"] = ""; -App::$strings["Copy/paste this URL to link file from a web page"] = ""; -App::$strings["Share this file"] = "שתף את קובץ זה"; -App::$strings["Show URL to this file"] = "הצג URL לקובץ זה"; -App::$strings["Notify your contacts about this file"] = ""; -App::$strings["Channel added."] = ""; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; -App::$strings["Passwords do not match."] = ""; -App::$strings["Registration successful. Please check your email for validation instructions."] = ""; -App::$strings["Your registration is pending approval by the site owner."] = ""; -App::$strings["Your registration can not be processed."] = ""; -App::$strings["Registration on this site/hub is by approval only."] = ""; -App::$strings["Register at another affiliated site/hub"] = ""; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -App::$strings["Terms of Service"] = "תנאי שימוש"; -App::$strings["I accept the %s for this website"] = "אני מקבל את ה%s לאתר רשת זה"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "גילי מעל 13 שנה ואני מקבל את ה%s לאתר רשת זה"; -App::$strings["Membership on this site is by invitation only."] = ""; -App::$strings["Please enter your invitation code"] = ""; -App::$strings["Your email address"] = "כתובת דוא״ל שלך"; -App::$strings["Choose a password"] = "בחר סיסמה"; -App::$strings["Please re-enter your password"] = "בבקשה הזן שוב את סיסמתך"; -App::$strings["Contact not found."] = "איש קשר לא נמצא."; -App::$strings["Friend suggestion sent."] = ""; -App::$strings["Suggest Friends"] = ""; -App::$strings["Suggest a friend for %s"] = ""; -App::$strings["Please login."] = "אנא התחבר."; -App::$strings["Collection created."] = ""; -App::$strings["Could not create collection."] = ""; -App::$strings["Collection updated."] = ""; -App::$strings["Create a collection of channels."] = ""; -App::$strings["Collection Name: "] = "שם אוסף: "; -App::$strings["Members are visible to other channels"] = ""; -App::$strings["Collection removed."] = "אוסף הוסר."; -App::$strings["Unable to remove collection."] = "לא מסוגל להסיר אוסף."; -App::$strings["Collection Editor"] = ""; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Account"] = "הסר את חשבון זה"; -App::$strings["WARNING: "] = "אזהרה: "; -App::$strings["This account and all its channels will be completely removed from the network. "] = ""; -App::$strings["This action is permanent and can not be undone!"] = ""; -App::$strings["Please enter your password for verification:"] = ""; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = ""; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = ""; -App::$strings["Remove Account"] = "הסר חשבון"; -App::$strings["Help:"] = "עזרה:"; -App::$strings["Not Found"] = "לא נמצא"; -App::$strings["\$Projectname Documentation"] = "תיעוד \$Projectname"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = ""; -App::$strings["Remove This Channel"] = ""; -App::$strings["This channel will be completely removed from the network. "] = ""; -App::$strings["Remove this channel and all its clones from the network"] = ""; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; -App::$strings["Remove Channel"] = "הסר ערוץ"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "ברוכים הבאים אל %s"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -App::$strings["The error message was:"] = ""; -App::$strings["Authentication failed."] = ""; -App::$strings["Remote Authentication"] = ""; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = ""; -App::$strings["Authenticate"] = ""; -App::$strings["First Name"] = "שם פרטי"; -App::$strings["Last Name"] = "שם משפחה"; -App::$strings["Nickname"] = "שם כינוי"; -App::$strings["Full Name"] = "שם מלא"; -App::$strings["Profile Photo 16px"] = ""; -App::$strings["Profile Photo 32px"] = ""; -App::$strings["Profile Photo 48px"] = ""; -App::$strings["Profile Photo 64px"] = ""; -App::$strings["Profile Photo 80px"] = ""; -App::$strings["Profile Photo 128px"] = ""; -App::$strings["Timezone"] = ""; -App::$strings["Homepage URL"] = ""; -App::$strings["Birth Year"] = "שנת הולדת"; -App::$strings["Birth Month"] = "חודש הולדת"; -App::$strings["Birth Day"] = "יום הולדת"; -App::$strings["Birthdate"] = "יום הולדת"; -App::$strings["%s element installed"] = ""; -App::$strings["%s element installation failed"] = ""; -App::$strings["Items tagged with: %s"] = ""; -App::$strings["Search results for: %s"] = ""; -App::$strings["Your service plan only allows %d channels."] = ""; -App::$strings["Nothing to import."] = "אין דבר ליבא."; -App::$strings["Unable to download data from old server"] = ""; -App::$strings["Imported file is empty."] = ""; -App::$strings["The data provided is not compatible with this project."] = ""; -App::$strings["Warning: Database versions differ by %1\$d updates."] = ""; +App::$strings["Unable to obtain identity information from database"] = ""; +App::$strings["Empty name"] = "שם ריק"; +App::$strings["Name too long"] = "שם ארוך מדי"; +App::$strings["No account identifier"] = "אין מזהה חשבון"; +App::$strings["Nickname is required."] = "נדרש שם כינוי."; +App::$strings["Reserved nickname. Please choose another."] = ""; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = ""; +App::$strings["Unable to retrieve created identity"] = ""; +App::$strings["Default Profile"] = "פרופיל שגרתי"; +App::$strings["Requested channel is not available."] = "ערוץ מבוקש אינו זמין."; +App::$strings["Create New Profile"] = "צור פרופיל חדש"; +App::$strings["Visible to everybody"] = "נראה לכל אחד"; +App::$strings["Gender:"] = "מין:"; +App::$strings["Status:"] = "מצב:"; +App::$strings["Homepage:"] = "עמוד בית:"; +App::$strings["Online Now"] = "מקוון כעת"; +App::$strings["Like this channel"] = ""; +App::$strings["j F, Y"] = "j F, Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "יום הולדת:"; +App::$strings["for %1\$d %2\$s"] = ""; +App::$strings["Sexual Preference:"] = "העדפה מינית:"; +App::$strings["Tags:"] = "תגיות:"; +App::$strings["Political Views:"] = "השקפות פוליטיות:"; +App::$strings["Religion:"] = "דת:"; +App::$strings["Hobbies/Interests:"] = "תחביבים/עניין:"; +App::$strings["Likes:"] = "אוהב:"; +App::$strings["Dislikes:"] = "שונא:"; +App::$strings["Contact information and Social Networks:"] = ""; +App::$strings["My other channels:"] = "הערוצים האחרים שלי:"; +App::$strings["Musical interests:"] = ""; +App::$strings["Books, literature:"] = "ספרים, ספרות:"; +App::$strings["Television:"] = "טלוויזיה:"; +App::$strings["Film/dance/culture/entertainment:"] = ""; +App::$strings["Love/Romance:"] = "אהבה/רומנטיקה:"; +App::$strings["Work/employment:"] = "עבודה/תעסוקה:"; +App::$strings["School/education:"] = "בי״ס/חינוך:"; +App::$strings["Like this thing"] = ""; +App::$strings["Visible to your default audience"] = "נראה לקהל השגרתי שלך"; +App::$strings["Only me"] = "רק אני"; +App::$strings["Public"] = "ציבורי"; +App::$strings["Anybody in the \$Projectname network"] = ""; +App::$strings["Any account on %s"] = "כל חחשבון אצל %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"] = "כתובת דוא״ל לא תקינה"; +App::$strings["Your email domain is not among those allowed on this site"] = ""; +App::$strings["Your email address is already registered at this site."] = ""; +App::$strings["An invitation is required."] = "נדרשת הזמנה."; +App::$strings["Invitation could not be verified."] = "אימות הזמנה לא התאפשר."; +App::$strings["Please enter the required information."] = "אנא הזן את המידע הנחוץ."; +App::$strings["Failed to store account information."] = "נכשל לאחסן מידע חשבון."; +App::$strings["Registration confirmation for %s"] = "אימות רישום עבור %s"; +App::$strings["Registration request at %s"] = "בקשת רישום אצל %s"; +App::$strings["Administrator"] = "מנהל"; +App::$strings["your registration password"] = "סיסמת רישום שלך"; +App::$strings["Registration details for %s"] = "פרטי רישום עבור %s"; +App::$strings["Account approved."] = "חשבון אושר."; +App::$strings["Registration revoked for %s"] = "רישום בוטל עבור %s"; +App::$strings["Account verified. Please login."] = "חשבון אומת. אנא התחבר."; +App::$strings["Click here to upgrade."] = "לחץ כאן כדי לשדרג."; +App::$strings["This action exceeds the limits set by your subscription plan."] = ""; +App::$strings["This action is not available under your subscription plan."] = ""; +App::$strings["Item was not found."] = "פריט לא נמצא."; +App::$strings["No source file."] = "אין קובץ מקור."; +App::$strings["Cannot locate file to replace"] = ""; +App::$strings["Cannot locate file to revise/update"] = ""; +App::$strings["File exceeds size limit of %d"] = ""; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +App::$strings["File upload failed. Possible system limit or action terminated."] = ""; +App::$strings["Stored file could not be verified. Upload failed."] = ""; +App::$strings["Path not available."] = "נתיב לא זמין."; +App::$strings["Empty pathname"] = "שם נתיב ריק"; +App::$strings["duplicate filename or path"] = "שם קובץ או נתיב כפול"; +App::$strings["Path not found."] = "נתיב לא נמצא."; +App::$strings["mkdir failed."] = "mkdir נכשל."; +App::$strings["database storage failed."] = "אחסון מסד נתונים נכשל."; +App::$strings["Empty path"] = "נתיב ריק"; +App::$strings["General Features"] = "תכונות כלליות"; +App::$strings["Content Expiration"] = "פקיעת תוכן"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = ""; +App::$strings["Multiple Profiles"] = "פרופילים מרובים"; +App::$strings["Ability to create multiple profiles"] = ""; +App::$strings["Advanced Profiles"] = "פרופיל מתקדמים"; +App::$strings["Additional profile sections and selections"] = ""; +App::$strings["Profile Import/Export"] = "יבוא/יצוא פרופיל"; +App::$strings["Save and load profile details across sites/channels"] = ""; +App::$strings["Web Pages"] = "עמודי רשת"; +App::$strings["Provide managed web pages on your channel"] = ""; +App::$strings["Hide Rating"] = "הסתר דירוג"; +App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = ""; +App::$strings["Private Notes"] = "פתקים פרטיים"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "מאפשר כלי לאחסון פתקים ותזכורות (הערה: לא מוצפן)"; +App::$strings["Navigation Channel Select"] = ""; +App::$strings["Change channels directly from within the navigation dropdown menu"] = ""; +App::$strings["Photo Location"] = "מיקום תצלום"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = ""; +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"] = "מצב מומחה"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; +App::$strings["Premium Channel"] = "ערוץ פרמיה"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; +App::$strings["Post Composition Features"] = ""; +App::$strings["Large Photos"] = "תצלומים גדולים"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = ""; +App::$strings["Automatically import channel content from other channels or feeds"] = ""; +App::$strings["Even More Encryption"] = "אפילו עוד הצפנה"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; +App::$strings["Enable Voting Tools"] = "אפשר כלי הצבעה"; +App::$strings["Provide a class of post which others can vote on"] = ""; +App::$strings["Delayed Posting"] = ""; +App::$strings["Allow posts to be published at a later date"] = ""; +App::$strings["Suppress Duplicate Posts/Comments"] = ""; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = ""; +App::$strings["Network and Stream Filtering"] = "סינון רשת וזרם"; +App::$strings["Search by Date"] = "חפש לפי תאריך"; +App::$strings["Ability to select posts by date ranges"] = "מסנן אוספים"; +App::$strings["Privacy Groups"] = "קבוצת פרטיות"; +App::$strings["Enable management and selection of privacy groups"] = ""; +App::$strings["Saved Searches"] = "חיפושים שמורים"; +App::$strings["Save search terms for re-use"] = ""; +App::$strings["Network Personal Tab"] = ""; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; +App::$strings["Network New Tab"] = ""; +App::$strings["Enable tab to display all new Network activity"] = ""; +App::$strings["Affinity Tool"] = "כלי קירבה"; +App::$strings["Filter stream activity by depth of relationships"] = ""; +App::$strings["Connection Filtering"] = "סינון חיבור"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = ""; +App::$strings["Show channel suggestions"] = "הצג הצעות ערוץ"; +App::$strings["Post/Comment Tools"] = ""; +App::$strings["Community Tagging"] = ""; +App::$strings["Ability to tag existing posts"] = ""; +App::$strings["Post Categories"] = ""; +App::$strings["Add categories to your posts"] = ""; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["Ability to file posts under folders"] = ""; +App::$strings["Dislike Posts"] = ""; +App::$strings["Ability to dislike posts/comments"] = ""; +App::$strings["Star Posts"] = ""; +App::$strings["Ability to mark special posts with a star indicator"] = ""; +App::$strings["Tag Cloud"] = "ענן תגיות"; +App::$strings["Provide a personal tag cloud on your channel page"] = ""; +App::$strings["Embedded content"] = "תוכן מוטמע"; +App::$strings["Embedding disabled"] = "הטמעה הינה מנוטרלת"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; App::$strings["Channel clone failed. Import failed."] = ""; -App::$strings["Cloned channel not found. Import failed."] = ""; -App::$strings["You must be logged in to use this feature."] = ""; -App::$strings["Import Channel"] = ""; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = ""; -App::$strings["File to Upload"] = ""; -App::$strings["Or provide the old server/hub details"] = ""; -App::$strings["Your old identity address (xyz@example.com)"] = ""; -App::$strings["Your old login email address"] = ""; -App::$strings["Your old login password"] = ""; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -App::$strings["Make this hub my primary location"] = ""; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = ""; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = ""; -App::$strings["No service class restrictions found."] = ""; -App::$strings["Total invitation limit exceeded."] = ""; -App::$strings["%s : Not a valid email address."] = ""; -App::$strings["Please join us on Red"] = ""; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -App::$strings["%s : Message delivery failed."] = ""; -App::$strings["%d message sent."] = array( - 0 => "", - 1 => "", +App::$strings["New window"] = "חלון חדש"; +App::$strings["Open the selected location in a different window or browser tab"] = "פתח את המיקום הנבחר בתוך חלון או סימניית דפדפן אחרים"; +App::$strings["User '%s' deleted"] = "משתמש '%s' נמחק"; +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"] = "הצג"; +App::$strings["Don't show"] = "אל תציג"; +App::$strings["Other networks and post services"] = "שירותי רשת ופרסום אחרים"; +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."] = "מנותק."; +App::$strings["Failed authentication"] = "אימות נכשל"; +App::$strings["Birthday"] = "יום הולדת"; +App::$strings["Age: "] = "גיל: "; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD או MM-DD"; +App::$strings["never"] = ""; +App::$strings["less than a second ago"] = "לפניי פחות משניה"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "לפני %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "שנה", + 1 => "שנים", ); -App::$strings["You have no more invitations available"] = ""; -App::$strings["Send invitations"] = "שלח הזמנות"; -App::$strings["Enter email addresses, one per line:"] = "הזן כתובות דוא״ל, אחת בכל שורה:"; -App::$strings["Please join my community on \$Projectname."] = ""; -App::$strings["You will need to supply this invitation code: "] = ""; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = ""; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = ""; -App::$strings["or visit "] = "או בקר "; -App::$strings["3. Click [Connect]"] = "3. לחץ [התחבר]"; -App::$strings["Name is required"] = "נדרש שם"; -App::$strings["Key and Secret are required"] = ""; -App::$strings["Diaspora Policy Settings updated."] = "הגדרות פוליסת Diaspora עודכנו."; -App::$strings["Passwords do not match. Password unchanged."] = ""; -App::$strings["Empty passwords are not allowed. Password unchanged."] = ""; -App::$strings["Password changed."] = "סיסמה שונתה."; -App::$strings["Password update failed. Please try again."] = "עדכון סיסמה נכשל. אנא נסה שוב."; -App::$strings["Not valid email."] = "לא דוא״ל תקף."; -App::$strings["Protected email address. Cannot change to that email."] = "כתובת דוא״ל מוגנת. לא מסוגל לשנות לדוא״ל זה."; -App::$strings["System failure storing new email. Please try again."] = ""; -App::$strings["Settings updated."] = "הגדרות עודכנו."; -App::$strings["Add application"] = "הוסף אפליקציה"; -App::$strings["Name of application"] = "שם של אפליקציה"; -App::$strings["Consumer Key"] = "מפתח צרכן"; -App::$strings["Automatically generated - change if desired. Max length 20"] = ""; -App::$strings["Consumer Secret"] = "סוד צרכן"; -App::$strings["Redirect"] = ""; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; -App::$strings["Icon url"] = ""; -App::$strings["Optional"] = ""; -App::$strings["You can't edit this application."] = ""; -App::$strings["Connected Apps"] = "אפליקציות מחוברות"; -App::$strings["Client key starts with"] = ""; -App::$strings["No name"] = "אין שם"; -App::$strings["Remove authorization"] = ""; -App::$strings["No feature settings configured"] = ""; -App::$strings["Feature/Addon Settings"] = ""; -App::$strings["Settings for the built-in Diaspora emulator"] = ""; -App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; -App::$strings["Enable the Diaspora protocol for this channel"] = ""; -App::$strings["Diaspora Policy Settings"] = ""; -App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; -App::$strings["Account Settings"] = "הגדרות חשבון"; -App::$strings["Enter New Password:"] = "הזן סיסמה חדשה:"; -App::$strings["Confirm New Password:"] = "אמת סיסמה חדשה:"; -App::$strings["Leave password fields blank unless changing"] = ""; -App::$strings["Email Address:"] = "כתובת דוא״ל:"; -App::$strings["Remove this account including all its channels"] = ""; -App::$strings["Off"] = ""; -App::$strings["On"] = ""; -App::$strings["Additional Features"] = ""; -App::$strings["Connector Settings"] = ""; -App::$strings["No special theme for mobile devices"] = ""; -App::$strings["%s - (Experimental)"] = ""; -App::$strings["Display Settings"] = ""; -App::$strings["Theme Settings"] = ""; -App::$strings["Custom Theme Settings"] = ""; -App::$strings["Content Settings"] = ""; -App::$strings["Display Theme:"] = ""; -App::$strings["Mobile Theme:"] = ""; -App::$strings["Enable user zoom on mobile devices"] = ""; -App::$strings["Update browser every xx seconds"] = ""; -App::$strings["Minimum of 10 seconds, no maximum"] = ""; -App::$strings["Maximum number of conversations to load at any time:"] = ""; -App::$strings["Maximum of 100 items"] = ""; -App::$strings["Show emoticons (smilies) as images"] = ""; -App::$strings["Link post titles to source"] = ""; -App::$strings["System Page Layout Editor - (advanced)"] = ""; -App::$strings["Use blog/list mode on channel page"] = ""; -App::$strings["(comments displayed separately)"] = ""; -App::$strings["Use blog/list mode on matrix page"] = ""; -App::$strings["Channel page max height of content (in pixels)"] = ""; -App::$strings["click to expand content exceeding this height"] = ""; -App::$strings["Matrix page max height of content (in pixels)"] = ""; -App::$strings["Nobody except yourself"] = ""; -App::$strings["Only those you specifically allow"] = ""; -App::$strings["Approved connections"] = ""; -App::$strings["Any connections"] = ""; -App::$strings["Anybody on this website"] = ""; -App::$strings["Anybody in this network"] = ""; -App::$strings["Anybody authenticated"] = ""; -App::$strings["Anybody on the internet"] = ""; -App::$strings["Publish your default profile in the network directory"] = ""; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; -App::$strings["Your channel address is"] = ""; -App::$strings["Channel Settings"] = "הגדרות ערוץ"; -App::$strings["Basic Settings"] = "הגדרות בסיסיות"; -App::$strings["Your Timezone:"] = ""; -App::$strings["Default Post Location:"] = ""; -App::$strings["Geographical location to display on your posts"] = ""; -App::$strings["Use Browser Location:"] = ""; -App::$strings["Adult Content"] = "תוכן מבוגרים"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; -App::$strings["Security and Privacy Settings"] = ""; -App::$strings["Your permissions are already configured. Click to view/adjust"] = ""; -App::$strings["Hide my online presence"] = ""; -App::$strings["Prevents displaying in your profile that you are online"] = ""; -App::$strings["Simple Privacy Settings:"] = ""; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = ""; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; -App::$strings["Private - default private, never open or public"] = ""; -App::$strings["Blocked - default blocked to/from everybody"] = ""; -App::$strings["Allow others to tag your posts"] = ""; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; -App::$strings["Advanced Privacy Settings"] = "הגדרות פרטיות מתקדמות"; -App::$strings["Expire other channel content after this many days"] = ""; -App::$strings["0 or blank prevents expiration"] = ""; -App::$strings["Maximum Friend Requests/Day:"] = ""; -App::$strings["May reduce spam activity"] = ""; -App::$strings["Default Post Permissions"] = ""; -App::$strings["(click to open/close)"] = "(לחץ כדי לפתוח/לסגור)"; -App::$strings["Channel permissions category:"] = ""; -App::$strings["Maximum private messages per day from unknown people:"] = ""; -App::$strings["Useful to reduce spamming"] = ""; -App::$strings["Notification Settings"] = "הגדרות התראה"; -App::$strings["By default post a status message when:"] = ""; -App::$strings["accepting a friend request"] = ""; -App::$strings["joining a forum/community"] = ""; -App::$strings["making an interesting profile change"] = ""; -App::$strings["Send a notification email when:"] = ""; -App::$strings["You receive a connection request"] = ""; -App::$strings["Your connections are confirmed"] = ""; -App::$strings["Someone writes on your profile wall"] = ""; -App::$strings["Someone writes a followup comment"] = ""; -App::$strings["You receive a private message"] = ""; -App::$strings["You receive a friend suggestion"] = ""; -App::$strings["You are tagged in a post"] = ""; -App::$strings["You are poked/prodded/etc. in a post"] = ""; -App::$strings["Show visual notifications including:"] = ""; -App::$strings["Unseen matrix activity"] = "פעילות מטריצה לא נראית"; -App::$strings["Unseen channel activity"] = "פעילות ערוץ לא נראית"; -App::$strings["Unseen private messages"] = "הודעות ערוץ לא נראות"; -App::$strings["Recommended"] = ""; -App::$strings["Upcoming events"] = ""; -App::$strings["Events today"] = ""; -App::$strings["Upcoming birthdays"] = ""; -App::$strings["Not available in all themes"] = ""; -App::$strings["System (personal) notifications"] = ""; -App::$strings["System info messages"] = ""; -App::$strings["System critical alerts"] = ""; -App::$strings["New connections"] = "חיבורים חדשים"; -App::$strings["System Registrations"] = "הרשמות מערכת"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = ""; -App::$strings["Notify me of events this many days in advance"] = ""; -App::$strings["Must be greater than 0"] = ""; -App::$strings["Advanced Account/Page Type Settings"] = ""; -App::$strings["Change the behaviour of this account for special situations"] = ""; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; -App::$strings["Miscellaneous Settings"] = ""; -App::$strings["Personal menu to display in your channel pages"] = ""; -App::$strings["Remove this channel."] = "הסר את ערוץ זה."; -App::$strings["Unable to locate original post."] = "לא מסוגל לאתר פוסט מקורי."; -App::$strings["Empty post discarded."] = ""; -App::$strings["Executable content type not permitted to this channel."] = ""; -App::$strings["System error. Post not saved."] = ""; -App::$strings["Unable to obtain post information from database."] = ""; -App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; -App::$strings["You have reached your limit of %1$.0f webpages."] = ""; -App::$strings["\$Projectname Server - Setup"] = ""; -App::$strings["Could not connect to database."] = ""; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; -App::$strings["Could not create table."] = ""; -App::$strings["Your site database has been installed."] = ""; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = ""; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = ""; -App::$strings["System check"] = ""; -App::$strings["Check again"] = "בדוק שוב"; -App::$strings["Database connection"] = "חיבור מסד נתונים"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = ""; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -App::$strings["Database Server Name"] = ""; -App::$strings["Default is localhost"] = ""; -App::$strings["Database Port"] = "פורט מסד נתונים"; -App::$strings["Communication port number - use 0 for default"] = ""; -App::$strings["Database Login Name"] = ""; -App::$strings["Database Login Password"] = ""; -App::$strings["Database Name"] = "שם מסד נתונים"; -App::$strings["Database Type"] = "טיפוס מסד נתונים"; -App::$strings["Site administrator email address"] = ""; -App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = ""; -App::$strings["Please use SSL (https) URL if available."] = ""; -App::$strings["Please select a default timezone for your website"] = ""; -App::$strings["Site settings"] = "הגדרות אתר"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -App::$strings["PHP executable path"] = ""; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -App::$strings["Command line PHP"] = ""; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -App::$strings["This is required for message delivery to work."] = ""; -App::$strings["PHP register_argc_argv"] = ""; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = ""; -App::$strings["You can adjust these settings in the servers php.ini."] = ""; -App::$strings["PHP upload limits"] = ""; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = ""; -App::$strings["Generate encryption keys"] = ""; -App::$strings["libCurl PHP module"] = ""; -App::$strings["GD graphics PHP module"] = ""; -App::$strings["OpenSSL PHP module"] = ""; -App::$strings["mysqli or postgres PHP module"] = ""; -App::$strings["mb_string PHP module"] = ""; -App::$strings["mcrypt PHP module"] = ""; -App::$strings["xml PHP module"] = ""; -App::$strings["Apache mod_rewrite module"] = ""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = ""; -App::$strings["proc_open"] = ""; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -App::$strings["Error: openssl PHP module required but not installed."] = ""; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = ""; -App::$strings["Error: mb_string PHP module required but not installed."] = ""; -App::$strings["Error: mcrypt PHP module required but not installed."] = ""; -App::$strings["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."] = ""; -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."] = ""; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = ""; -App::$strings[".htconfig.php is writable"] = ".htconfig.php הינו כתיב"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = ""; -App::$strings["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."] = ""; -App::$strings["%s is writable"] = "%s הינו כתיב"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = ""; -App::$strings["store is writable"] = ""; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -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!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; -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."] = ""; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; -App::$strings["SSL certificate validation"] = "הוכחת תקפות של תעודת SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; -App::$strings["Url rewrite is working"] = ""; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["

What next

"] = "

מה הלאה

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["Comanche page description language help"] = ""; -App::$strings["Layout Description"] = ""; -App::$strings["Download PDL file"] = "הורד קובץ PDL"; -App::$strings["Files: shared with me"] = ""; -App::$strings["NEW"] = "חדש"; -App::$strings["Remove all files"] = "הסר את כל הקבצים"; -App::$strings["Remove this file"] = "הסר את קובץ זה"; -App::$strings["Like/Dislike"] = ""; -App::$strings["This action is restricted to members."] = ""; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = ""; -App::$strings["Invalid request."] = "בקשה שגויה."; -App::$strings["thing"] = "דבר"; -App::$strings["Channel unavailable."] = "עמוד לא זמין."; -App::$strings["Previous action reversed."] = ""; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = ""; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = ""; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = ""; -App::$strings["Action completed."] = "פעולה הושלמה."; -App::$strings["Thank you."] = "תודה."; -App::$strings["Version %s"] = ""; -App::$strings["Installed plugins/addons/apps:"] = ""; -App::$strings["No installed plugins/addons/apps"] = ""; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = ""; -App::$strings["Tag: "] = "תגית: "; -App::$strings["Last background fetch: "] = ""; -App::$strings["Running at web location"] = ""; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = ""; -App::$strings["Bug reports and issues: please visit"] = ""; -App::$strings["\$projectname issues"] = "סוגיות \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = ""; -App::$strings["Site Administrators"] = "מנהלי אתר"; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = ""; -App::$strings["Location not found."] = "מיקום לא נמצא."; -App::$strings["Primary location cannot be removed."] = ""; -App::$strings["No locations found."] = "לא נמצאו מיקומים."; -App::$strings["Manage Channel Locations"] = ""; -App::$strings["Location (address)"] = "מיקום (כתובת)"; -App::$strings["Primary Location"] = ""; -App::$strings["Drop location"] = ""; -App::$strings["Failed to create source. No channel selected."] = ""; -App::$strings["Source created."] = ""; -App::$strings["Source updated."] = ""; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = ""; -App::$strings["New Source"] = "מקור חדש"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; -App::$strings["Only import content with these words (one per line)"] = ""; -App::$strings["Leave blank to import all public content"] = ""; -App::$strings["Channel Name"] = "שם ערוץ"; -App::$strings["Source not found."] = "מקור לא נמצא."; -App::$strings["Edit Source"] = "ערוך מקור"; -App::$strings["Delete Source"] = "מחק מקור"; -App::$strings["Source removed"] = "מקור הוסר"; -App::$strings["Unable to remove source."] = ""; -App::$strings["No valid account found."] = ""; -App::$strings["Password reset request issued. Check your email."] = ""; -App::$strings["Site Member (%s)"] = "חבר אתר (%s)"; -App::$strings["Password reset requested at %s"] = ""; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -App::$strings["Password Reset"] = "איפוס סיסמה"; -App::$strings["Your password has been reset as requested."] = ""; -App::$strings["Your new password is"] = "הסיסמה החדשה שלך היא"; -App::$strings["Save or copy your new password - and then"] = ""; -App::$strings["click here to login"] = "לחץ כאן כדי להיכנס"; -App::$strings["Your password may be changed from the Settings page after successful login."] = ""; -App::$strings["Your password has changed at %s"] = ""; -App::$strings["Forgot your Password?"] = "שכחת את הסיסמה שלך?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -App::$strings["Email Address"] = "כתובת דוא״ל"; -App::$strings["Reset"] = "אפס"; -App::$strings["Unable to update menu."] = ""; -App::$strings["Unable to create menu."] = ""; -App::$strings["Menu Name"] = "שם תפריט"; -App::$strings["Unique name (not visible on webpage) - required"] = ""; -App::$strings["Menu Title"] = "כותרת תפריט"; -App::$strings["Visible on webpage - leave empty for no title"] = ""; -App::$strings["Allow Bookmarks"] = ""; -App::$strings["Menu may be used to store saved bookmarks"] = ""; -App::$strings["Submit and proceed"] = ""; -App::$strings["Drop"] = ""; -App::$strings["Bookmarks allowed"] = ""; -App::$strings["Delete this menu"] = ""; -App::$strings["Edit menu contents"] = "ערוך תכני תפריט"; -App::$strings["Edit this menu"] = "ערוך את תפריט זה"; -App::$strings["Menu could not be deleted."] = "תפריט לא יכול היה להימחק."; -App::$strings["Menu not found."] = "תפריט לא נמצא."; -App::$strings["Edit Menu"] = "ערוך תפריט"; -App::$strings["Add or remove entries to this menu"] = ""; -App::$strings["Menu name"] = "שם תפריט"; -App::$strings["Must be unique, only seen by you"] = ""; -App::$strings["Menu title"] = "כותרת תפריט"; -App::$strings["Menu title as seen by others"] = ""; -App::$strings["Allow bookmarks"] = ""; -App::$strings["Not found."] = "לא נמצא."; -App::$strings["Conversation removed."] = ""; +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "חודש", + 1 => "חודשים", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "שבוע", + 1 => "שבועות", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "יום", + 1 => "ימים", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "שעה", + 1 => "שעות", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "דקה", + 1 => "דקות", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "שניה", + 1 => "שניות", +); +App::$strings["%1\$s's birthday"] = ""; +App::$strings["Happy Birthday %1\$s"] = "יום הולדת שמח %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."] = ""; +App::$strings["Add new connections to this privacy group"] = "הוסף חיבורים חדשים לקבוצת פרטיות זו"; +App::$strings["edit"] = "ערוך"; +App::$strings["Edit group"] = "ערוך קבוצה"; +App::$strings["Add privacy group"] = "הוסף קבוצת פרטיות"; +App::$strings["Channels not in any privacy group"] = ""; +App::$strings["add"] = "להוסיף"; +App::$strings["Delete this item?"] = "למחוק את פריט זה?"; +App::$strings["[-] show less"] = "[-] הצג פחות"; +App::$strings["[+] expand"] = "[+] הרחב"; +App::$strings["[-] collapse"] = "[-] צמצם"; +App::$strings["Password too short"] = "סיסמה קצרה מדי"; +App::$strings["Passwords do not match"] = "סיסמאות לא תואמות"; +App::$strings["everybody"] = "כולם"; +App::$strings["Secret Passphrase"] = "מימרת סיסמה סודית"; +App::$strings["Passphrase hint"] = ""; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; +App::$strings["close all"] = "סגור הכל"; +App::$strings["Nothing new here"] = "אין דבר חדש כאן"; +App::$strings["Rate This Channel (this is public)"] = ""; +App::$strings["Describe (optional)"] = "תאר (רשות)"; +App::$strings["Please enter a link URL"] = ""; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = ""; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "לפני"; +App::$strings["from now"] = "מעכשיו"; +App::$strings["less than a minute"] = "פחות מדקה"; +App::$strings["about a minute"] = "דקה לערך"; +App::$strings["%d minutes"] = "%d דקות"; +App::$strings["about an hour"] = "שעה לערך"; +App::$strings["about %d hours"] = " %d שעות לערך"; +App::$strings["a day"] = "יום"; +App::$strings["%d days"] = "%d ימים"; +App::$strings["about a month"] = "חודש לערך"; +App::$strings["%d months"] = "%d חודשים"; +App::$strings["about a year"] = "שנה לערך"; +App::$strings["%d years"] = "%d שנים"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "מאי"; +App::$strings["Jan"] = "ינו׳"; +App::$strings["Feb"] = "פבר׳"; +App::$strings["Mar"] = "מרץ"; +App::$strings["Apr"] = "אפר׳"; +App::$strings["__ctx:short__ May"] = "מאי"; +App::$strings["Jun"] = "יונ׳"; +App::$strings["Jul"] = "יול׳"; +App::$strings["Aug"] = "אוג׳"; +App::$strings["Sep"] = "ספט׳"; +App::$strings["Oct"] = "אוק׳"; +App::$strings["Nov"] = "נוב׳"; +App::$strings["Dec"] = "דצמ׳"; +App::$strings["Sun"] = "א׳"; +App::$strings["Mon"] = "ב׳"; +App::$strings["Tue"] = "ג׳"; +App::$strings["Wed"] = "ד׳"; +App::$strings["Thu"] = "ה׳"; +App::$strings["Fri"] = "ו׳"; +App::$strings["Sat"] = "ש׳"; +App::$strings["__ctx:calendar__ today"] = "היום"; +App::$strings["__ctx:calendar__ month"] = "חודש"; +App::$strings["__ctx:calendar__ week"] = "שבוע"; +App::$strings["__ctx:calendar__ day"] = "יום"; +App::$strings["__ctx:calendar__ All day"] = "כל היום"; +App::$strings["view full size"] = "צפה בגודל מלא"; +App::$strings["No Subject"] = "אין נושא"; +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"] = "פייסבוק"; +App::$strings["Zot"] = ""; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["(Unknown)"] = "(לא ידוע)"; +App::$strings["Visible to anybody on the internet."] = "נראה לכל אחד באינטרנט."; +App::$strings["Visible to you only."] = "נראה לך בלבד."; +App::$strings["Visible to anybody in this network."] = "נראה לכל אחד ברשת זו."; +App::$strings["Visible to anybody authenticated."] = "נראה לכל מי שהוא מאומת."; +App::$strings["Visible to anybody on %s."] = "נראה לכל אחד אצל %s."; +App::$strings["Visible to all connections."] = "נראה לכל החיבורים."; +App::$strings["Visible to approved connections."] = "נראה לחיבורים מאושרים."; +App::$strings["Visible to specific connections."] = "נראה לחיבורים מסוימים."; +App::$strings["Privacy group is empty."] = "קבוצת פרטיות הינה ריקה"; +App::$strings["Privacy group: %s"] = "קבוצת פרטיות: %s"; +App::$strings["Connection not found."] = "חיבור לא נמצא."; +App::$strings["profile photo"] = "תצלום פרופיל"; +App::$strings["New Page"] = "עמוד חדש"; +App::$strings["Title"] = "כותרת"; +App::$strings["System"] = "מערכת"; +App::$strings["New App"] = "אפליקציה חדשה"; +App::$strings["Suggestions"] = "הצעות"; +App::$strings["See more..."] = "צפה בעוד..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; +App::$strings["Add New Connection"] = "הוסף חיבור חדש"; +App::$strings["Enter channel address"] = "הזן כתובת ערוץ"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "דוגמאות: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "תזכירים"; +App::$strings["Remove term"] = "הסר פריט"; +App::$strings["Archives"] = "ארכיונים"; +App::$strings["Refresh"] = "רענן"; +App::$strings["Account settings"] = "הגדרות חשבון"; +App::$strings["Channel settings"] = "הגדרות ערוץ"; +App::$strings["Additional features"] = "תכונות נוספות"; +App::$strings["Feature/Addon settings"] = ""; +App::$strings["Display settings"] = "הגדרות תצוגה"; +App::$strings["Manage locations"] = "נהל מיקומים"; +App::$strings["Export channel"] = "יצא ערוץ"; +App::$strings["Connected apps"] = "אפליקציות מחוברות"; +App::$strings["Premium Channel Settings"] = "הגדרות ערוץ פרמיה"; +App::$strings["Private Mail Menu"] = "תפריט דואר פרטי"; +App::$strings["Combined View"] = "תצוגה משולבת"; +App::$strings["Conversations"] = "דיונים"; +App::$strings["Received Messages"] = "הודעות שנתקבלו"; +App::$strings["Sent Messages"] = "הודעות שנשלחו"; App::$strings["No messages."] = "אין הודעות."; -App::$strings["D, d M Y - g:i A"] = ""; -App::$strings["Unable to create element."] = ""; -App::$strings["Unable to update menu element."] = ""; -App::$strings["Unable to add menu element."] = ""; -App::$strings["Menu Item Permissions"] = ""; -App::$strings["Link Name"] = "שם קישור"; -App::$strings["Link or Submenu Target"] = ""; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = ""; -App::$strings["Use magic-auth if available"] = ""; -App::$strings["Open link in new window"] = "פתח בתוך חלון חדש"; -App::$strings["Order in list"] = ""; -App::$strings["Higher numbers will sink to bottom of listing"] = ""; -App::$strings["Submit and finish"] = ""; -App::$strings["Submit and continue"] = ""; -App::$strings["Menu:"] = "תפריט:"; -App::$strings["Link Target"] = ""; -App::$strings["Edit menu"] = "ערוך תפריט"; -App::$strings["Edit element"] = "ערוך אלמנט"; -App::$strings["Drop element"] = ""; -App::$strings["New element"] = "אלמנט חדש"; -App::$strings["Edit this menu container"] = ""; -App::$strings["Add menu element"] = ""; -App::$strings["Delete this menu item"] = ""; -App::$strings["Edit this menu item"] = ""; -App::$strings["Menu item not found."] = ""; -App::$strings["Menu item deleted."] = ""; -App::$strings["Menu item could not be deleted."] = ""; -App::$strings["Edit Menu Element"] = ""; -App::$strings["Link text"] = ""; -App::$strings["%1\$s is following %2\$s's %3\$s"] = ""; -App::$strings["Set your current mood and tell your friends"] = ""; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -App::$strings["Tag removed"] = ""; -App::$strings["Remove Item Tag"] = ""; -App::$strings["Select a tag to remove: "] = ""; -App::$strings["No such group"] = ""; -App::$strings["No such channel"] = ""; -App::$strings["Search Results For:"] = ""; -App::$strings["Collection is empty"] = ""; -App::$strings["Collection: "] = "אוסף: "; -App::$strings["Connection: "] = "חיבור: "; -App::$strings["Invalid connection."] = "חיבור שגוי."; -App::$strings["OpenID protocol error. No ID returned."] = ""; -App::$strings["Add a Channel"] = "הוסף ערוץ"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; -App::$strings["Choose a short nickname"] = ""; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; -App::$strings["Or import an existing channel from another location"] = ""; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = ""; -App::$strings["Channel Type"] = "טיפוס ערוץ"; -App::$strings["Read more about roles"] = ""; -App::$strings["Thing updated"] = ""; -App::$strings["Object store: failed"] = ""; -App::$strings["Thing added"] = ""; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = ""; -App::$strings["item not found."] = "פריט לא נמצא"; -App::$strings["Edit Thing"] = ""; -App::$strings["Select a profile"] = "בחר פרופיל"; -App::$strings["Post an activity"] = "פרסם פעילות"; -App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = ""; -App::$strings["URL of thing (optional)"] = ""; -App::$strings["URL for photo of thing (optional)"] = ""; -App::$strings["Add Thing to your Profile"] = ""; -App::$strings["Export Channel"] = ""; -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."] = ""; -App::$strings["Export Content"] = ""; -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."] = ""; -App::$strings["Export your posts from a given year or month:"] = ""; -App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = ""; -App::$strings["Jan"] = ""; -App::$strings["Feb"] = ""; -App::$strings["Mar"] = ""; -App::$strings["Apr"] = ""; -App::$strings["Jun"] = ""; -App::$strings["Jul"] = ""; -App::$strings["Aug"] = ""; -App::$strings["Sep"] = ""; -App::$strings["Oct"] = ""; -App::$strings["Nov"] = ""; -App::$strings["Dec"] = ""; -App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = ""; -App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; %1\$s/2013 or the month September 2013; %1\$s/2013/9"] = ""; -App::$strings["Please visit"] = "אנא בקר"; -App::$strings["on another hub to import the backup files(s)."] = ""; -App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = ""; -App::$strings["[Embedded content - reload page to view]"] = ""; -App::$strings["No connections."] = "אין חיבורים."; -App::$strings["Visit %s's profile [%s]"] = ""; -App::$strings["Source of Item"] = ""; -App::$strings["Total votes"] = ""; -App::$strings["Average Rating"] = ""; -App::$strings["Page Title"] = "כותרת עמוד"; -App::$strings["Xchan Lookup"] = ""; -App::$strings["Lookup xchan beginning with (or webbie): "] = ""; -App::$strings["invalid target signature"] = ""; -App::$strings["Schema Default"] = ""; -App::$strings["Sans-Serif"] = ""; -App::$strings["Monospace"] = ""; -App::$strings["Theme settings"] = ""; -App::$strings["Set scheme"] = ""; -App::$strings["Set font-size for posts and comments"] = ""; -App::$strings["Set font face"] = ""; -App::$strings["Set iconset"] = ""; -App::$strings["Set big shadow size, default 15px 15px 15px"] = ""; -App::$strings["Set small shadow size, default 5px 5px 5px"] = ""; -App::$strings["Set shadow color, default #000"] = ""; -App::$strings["Set radius size, default 5px"] = ""; -App::$strings["Set line-height for posts and comments"] = ""; -App::$strings["Set background image"] = ""; -App::$strings["Set background attachment"] = ""; -App::$strings["Set background color"] = ""; -App::$strings["Set section background image"] = ""; -App::$strings["Set section background color"] = ""; -App::$strings["Set color of items - use hex"] = ""; -App::$strings["Set color of links - use hex"] = ""; -App::$strings["Set max-width for items. Default 400px"] = ""; -App::$strings["Set min-width for items. Default 240px"] = ""; -App::$strings["Set the generic content wrapper width. Default 48%"] = ""; -App::$strings["Set color of fonts - use hex"] = ""; -App::$strings["Set background-size element"] = ""; -App::$strings["Item opacity"] = ""; -App::$strings["Display post previews only"] = ""; -App::$strings["Display side bar on channel page"] = ""; -App::$strings["Colour of the navigation bar"] = ""; -App::$strings["Item float"] = ""; -App::$strings["Left offset of the section element"] = ""; -App::$strings["Right offset of the section element"] = ""; -App::$strings["Section width"] = ""; -App::$strings["Left offset of the aside"] = ""; -App::$strings["Right offset of the aside element"] = ""; -App::$strings["Light (Red Matrix default)"] = ""; +App::$strings["Delete conversation"] = "מחק דיון"; +App::$strings["Events Menu"] = "תפריט אירועים"; +App::$strings["Day View"] = "תצוגת יום"; +App::$strings["Week View"] = "תצוגת שבוע"; +App::$strings["Month View"] = "תצוגת חודש"; +App::$strings["Events Tools"] = "כלי אירוע"; +App::$strings["Export Calendar"] = "יצא לוח שנה"; +App::$strings["Import Calendar"] = "יבא לוח שנה"; +App::$strings["Overview"] = "סקירה"; +App::$strings["Chat Members"] = "חברי שיחה"; +App::$strings["Wiki List"] = "רשימת ויקי"; +App::$strings["Wiki Pages"] = "עמודי ויקי"; +App::$strings["Bookmarked Chatrooms"] = "חדרי שיחה מסומנים"; +App::$strings["Suggested Chatrooms"] = "חדרי שיחה מוצעים"; +App::$strings["photo/image"] = "תצלום/תמונה"; +App::$strings["Click to show more"] = "לחץ כדי להציג עוד"; +App::$strings["Rating Tools"] = "כלי דירוג"; +App::$strings["Rate Me"] = "דרג אותי"; +App::$strings["View Ratings"] = "צפה בדירוגים"; +App::$strings["Forums"] = "פורומים"; +App::$strings["Tasks"] = "משימות"; +App::$strings["Documentation"] = "תיעוד"; +App::$strings["Project/Site Information"] = "מידע פרויקט/אתר"; +App::$strings["For Members"] = "לחברים"; +App::$strings["For Administrators"] = "למנהלים"; +App::$strings["For Developers"] = "למפתחים"; +App::$strings["Member registrations waiting for confirmation"] = "רישומי חברות אשר ממתינים לאישור"; +App::$strings["Inspect queue"] = ""; +App::$strings["DB updates"] = "עדכוני מסד נתונים"; +App::$strings["Plugin Features"] = "תכונות תוסף"; +App::$strings["Can view my normal stream and posts"] = ""; +App::$strings["Can view my default channel profile"] = ""; +App::$strings["Can view my connections"] = ""; +App::$strings["Can view my file storage and photos"] = ""; +App::$strings["Can view my webpages"] = ""; +App::$strings["Can send me their channel stream and posts"] = ""; +App::$strings["Can post on my channel page (\"wall\")"] = ""; +App::$strings["Can comment on or like my posts"] = ""; +App::$strings["Can send me private mail messages"] = ""; +App::$strings["Can like/dislike stuff"] = ""; +App::$strings["Profiles and things other than posts/comments"] = ""; +App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; +App::$strings["Advanced - useful for creating group forum channels"] = ""; +App::$strings["Can chat with me (when available)"] = "מסוגל לשוחח עמי (כאשר זמין)"; +App::$strings["Can write to my file storage and photos"] = "מסוגל לכתוב אל האחסון והתצלומים שלי"; +App::$strings["Can edit my webpages"] = "מסוגל לערוך עמודי רשת"; +App::$strings["Can source my public posts in derived channels"] = ""; +App::$strings["Somewhat advanced - very useful in open communities"] = ""; +App::$strings["Can administer my channel resources"] = ""; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; +App::$strings["Social Networking"] = "רשת חברתית"; +App::$strings["Social - Mostly Public"] = "חברתי - ציבורי בעיקר"; +App::$strings["Social - Restricted"] = "חברתי - מוגבל"; +App::$strings["Social - Private"] = "חברתי - פרטי"; +App::$strings["Community Forum"] = "פורום קהילה"; +App::$strings["Forum - Mostly Public"] = "פורום - ציבורי בעיקר"; +App::$strings["Forum - Restricted"] = "פורום - מוגבל"; +App::$strings["Forum - Private"] = "פורום - פרטי"; +App::$strings["Feed Republish"] = ""; +App::$strings["Feed - Mostly Public"] = "ערוץ - ציבורי בעיקר"; +App::$strings["Feed - Restricted"] = "ערוץ - מוגבל"; +App::$strings["Special Purpose"] = "מטרה מיוחדת"; +App::$strings["Special - Celebrity/Soapbox"] = ""; +App::$strings["Special - Group Repository"] = ""; +App::$strings["Custom/Expert Mode"] = ""; +App::$strings[" and "] = " וגם "; +App::$strings["public profile"] = "פרופיל ציבורי"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +App::$strings["Visit %1\$s's %2\$s"] = ""; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; +App::$strings["Attachments:"] = "תצריפים:"; +App::$strings["\$Projectname event notification:"] = ""; +App::$strings["Public Timeline"] = "ציר זמן ציבורי"; +App::$strings["Focus (Hubzilla default)"] = ""; +App::$strings["Theme settings"] = "הגדרות ערכת נושא"; App::$strings["Select scheme"] = ""; App::$strings["Narrow navbar"] = ""; App::$strings["Navigation bar background color"] = ""; @@ -2145,24 +2293,27 @@ App::$strings["Set the indent for comments"] = ""; App::$strings["Set the basic color for item icons"] = ""; App::$strings["Set the hover color for item icons"] = ""; App::$strings["Set font-size for the entire application"] = ""; -App::$strings["Example: 14px"] = ""; +App::$strings["Example: 14px"] = "דוגמא: 14px"; +App::$strings["Set font-size for posts and comments"] = ""; App::$strings["Set font-color for posts and comments"] = ""; App::$strings["Set radius of corners"] = ""; App::$strings["Set shadow depth of photos"] = ""; App::$strings["Set maximum width of content region in pixel"] = ""; -App::$strings["Leave empty for default width"] = ""; -App::$strings["Center page content"] = ""; +App::$strings["Leave empty for default width"] = "השאר ריק לצורך רוחב שגרתי"; +App::$strings["Left align page content"] = ""; App::$strings["Set minimum opacity of nav bar - to hide it"] = ""; App::$strings["Set size of conversation author photo"] = ""; App::$strings["Set size of followup author photos"] = ""; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = ""; App::$strings["Update Error at %s"] = ""; -App::$strings["Create an account to access services and applications within the Red Matrix"] = ""; +App::$strings["Create an account to access services and applications within the Hubzilla"] = ""; App::$strings["Password"] = "סיסמה"; App::$strings["Remember me"] = "זכור אותי"; App::$strings["Forgot your password?"] = "שכחת את הסיסמה שלך?"; App::$strings["toggle mobile"] = ""; -App::$strings["Website SSL certificate is not valid. Please correct."] = ""; -App::$strings["[red] Website SSL error for %s"] = ""; -App::$strings["Cron/Scheduled tasks not running."] = ""; -App::$strings["[red] Cron tasks not running on %s"] = ""; +App::$strings["Website SSL certificate is not valid. Please correct."] = "תעודת SSL אתר רשת אינה תקינה. אנא תקן."; +App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] שגיאת SSL אתר רשת עבור %s"; +App::$strings["Cron/Scheduled tasks not running."] = "משימות Cron/מתוזמנות לא רצות."; +App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] משימות Cron לא רצות על %s"; diff --git a/view/it/hmessages.po b/view/it/hmessages.po deleted file mode 100644 index fc4772846..000000000 --- a/view/it/hmessages.po +++ /dev/null @@ -1,13914 +0,0 @@ -# hubzilla -# Copyright (C) 2012-2016 hubzilla -# This file is distributed under the same license as the hubzilla package. -# -# Translators: -# Davide Pesenti , 2015-2016,2018 -# Paolo Wave , 2015-2016,2018 -# Paolo Wave , 2015 -msgid "" -msgstr "" -"Project-Id-Version: Redmatrix\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-04-18 08:37+0200\n" -"PO-Revision-Date: 2018-04-19 07:57+0000\n" -"Last-Translator: Davide Pesenti \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" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Può vedere i post e i contenuti del mio canale" - -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" - -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" -msgstr "Può vedere il profilo predefinito del canale" - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "Può vedere i miei contatti" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "Può vedere il mio archivio file e foto" - -#: ../../Zotlabs/Access/Permissions.php:61 -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:62 -msgid "Can view my channel webpages" -msgstr "Può vedere le pagine web del mio canale" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" -msgstr "Può vedere le pagine del mio wiki" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" -msgstr "Può creare o modificare le pagine web del mio canale" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" -msgstr "Può scrivere nelle pagine del mio wiki" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" -msgstr "Può postare sulla mia bacheca" - -#: ../../Zotlabs/Access/Permissions.php:67 -msgid "Can comment on or like my posts" -msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" - -#: ../../Zotlabs/Access/Permissions.php:68 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" - -#: ../../Zotlabs/Access/Permissions.php:69 -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:70 -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:71 -msgid "Can chat with me" -msgstr "Può aprire una chat con me" - -#: ../../Zotlabs/Access/Permissions.php:72 -msgid "Can source my public posts in derived channels" -msgstr "Può usare i miei post pubblici per creare canali derivati" - -#: ../../Zotlabs/Access/Permissions.php:73 -msgid "Can administer my channel" -msgstr "Può amministrare il mio canale" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "Social network" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Party" -msgstr "Social - Party" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "Social - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "Social - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "Social - Privato" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "Forum di discussione" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "Social - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "Forum - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "Forum - Privato" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "Aggregatore di feed esterni" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "Feed - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "Feed - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "Per finalità speciali" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciale - Pagina per fan" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "Speciale - Repository di gruppo" - -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 -#: ../../Zotlabs/Module/Settings/Channel.php:479 -#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 -#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:697 -#: ../../include/connections.php:704 -msgid "Other" -msgstr "Altro" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "Personalizzazione per esperti" - -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 -msgid "Requested profile is not available." -msgstr "Il profilo richiesto non è disponibile." - -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 -#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Article_edit.php:51 -#: ../../Zotlabs/Module/New_channel.php:91 -#: ../../Zotlabs/Module/New_channel.php:116 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Settings/Features.php:38 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 -#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 -#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Cover_photo.php:281 -#: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:85 -#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 -#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 -#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 -#: ../../include/attach.php:197 ../../include/attach.php:270 -#: ../../include/attach.php:284 ../../include/attach.php:293 -#: ../../include/attach.php:366 ../../include/attach.php:380 -#: ../../include/attach.php:387 ../../include/attach.php:469 -#: ../../include/attach.php:1029 ../../include/attach.php:1103 -#: ../../include/attach.php:1268 ../../include/items.php:3706 -#: ../../include/photos.php:27 -msgid "Permission denied." -msgstr "Permesso negato." - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:113 -msgid "Block Name" -msgstr "Nome del block" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 -msgid "Blocks" -msgstr "Block" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" - -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 -msgid "Created" -msgstr "Creato" - -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 -msgid "Edited" -msgstr "Modificato" - -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -msgid "Create" -msgstr "Crea" - -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Article_edit.php:99 -#: ../../Zotlabs/Module/Admin/Profs.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Layouts.php:193 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 -#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../include/menu.php:113 -msgid "Edit" -msgstr "Modifica" - -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 -#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../include/conversation.php:1366 -msgid "Share" -msgstr "Condividi" - -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 -#: ../../Zotlabs/Module/Profiles.php:800 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 -#: ../../include/conversation.php:690 ../../include/conversation.php:733 -msgid "Delete" -msgstr "Elimina" - -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 -msgid "View" -msgstr "Guarda" - -#: ../../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:67 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" - -#: ../../Zotlabs/Module/Invite.php:77 -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:82 -#: ../../addon/notifyadmin/notifyadmin.php:40 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../Zotlabs/Module/Invite.php:86 -#, 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:107 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "Send invitations" -msgstr "Spedisci inviti" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." - -#: ../../Zotlabs/Module/Invite.php:143 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" - -#: ../../Zotlabs/Module/Invite.php:144 -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:146 -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:147 -msgid "or visit" -msgstr "oppure visita" - -#: ../../Zotlabs/Module/Invite.php:149 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" - -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Appman.php:153 -#: ../../Zotlabs/Module/Import_items.php:129 -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 -#: ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:296 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Channel.php:495 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 -#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 -#: ../../Zotlabs/Widget/Eventstools.php:16 -#: ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:97 -#: ../../view/theme/redbasic_c/php/config.php:95 -#: ../../view/theme/redbasic/php/config.php:93 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 -#: ../../addon/planets/planets.php:153 -#: ../../addon/openclipatar/openclipatar.php:53 -#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 -#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 -#: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:823 -#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 -#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 -#: ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:168 -#: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 -#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1069 -#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 -#: ../../addon/flattrwidget/flattrwidget.php:124 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:380 -#: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 -#: ../../addon/twitter/twitter.php:265 -#: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 -#: ../../addon/pageheader/pageheader.php:48 -#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 -#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 -#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 -msgid "Submit" -msgstr "Salva" - -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 -#: ../../include/nav.php:469 -msgid "Articles" -msgstr "Articoli" - -#: ../../Zotlabs/Module/Articles.php:95 -msgid "Add Article" -msgstr "Aggiungi un articolo" - -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 -#: ../../Zotlabs/Module/Card_edit.php:33 -msgid "Item not found" -msgstr "Elemento non trovato" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Name" -msgstr "Nome layout" - -#: ../../Zotlabs/Module/Editlayout.php:129 -#: ../../Zotlabs/Module/Layouts.php:132 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "Modifica il layout" - -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 -#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 -#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 -#: ../../include/items.php:358 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" - -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 -msgid "Profile" -msgstr "Profilo" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../Zotlabs/Module/Profperm.php:140 -#: ../../Zotlabs/Module/Connections.php:200 -msgid "All Connections" -msgstr "Tutti i contatti" - -#: ../../Zotlabs/Module/Cdav.php:785 -msgid "INVALID EVENT DISMISSED!" -msgstr "EVENTO NON VALIDO ELIMINATO!" - -#: ../../Zotlabs/Module/Cdav.php:786 -msgid "Summary: " -msgstr "Sommario:" - -#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 -#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:878 -#: ../../include/conversation.php:1160 -msgid "Unknown" -msgstr "Sconosciuto" - -#: ../../Zotlabs/Module/Cdav.php:787 -msgid "Date: " -msgstr "Data:" - -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 -msgid "Reason: " -msgstr "Motivo:" - -#: ../../Zotlabs/Module/Cdav.php:793 -msgid "INVALID CARD DISMISSED!" -msgstr "CARD NON VALIDA ELIMINATA!" - -#: ../../Zotlabs/Module/Cdav.php:794 -msgid "Name: " -msgstr "Nome:" - -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 -msgid "Event title" -msgstr "Titolo dell'evento" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 -msgid "Start date and time" -msgstr "Data e ora di inizio" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "Esempio: YYYY-MM-DD HH:mm" - -#: ../../Zotlabs/Module/Cdav.php:870 -msgid "End date and time" -msgstr "Data e ora di fine" - -#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../addon/rendezvous/rendezvous.php:173 -msgid "Description" -msgstr "Descrizione" - -#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 -#: ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" - -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 -msgid "Previous" -msgstr "Precendente" - -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Photos.php:980 -msgid "Next" -msgstr "Successivo" - -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 -msgid "Today" -msgstr "Oggi" - -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 -msgid "Month" -msgstr "Mese" - -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 -msgid "Week" -msgstr "Settimana" - -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 -msgid "Day" -msgstr "Giorno" - -#: ../../Zotlabs/Module/Cdav.php:885 -msgid "List month" -msgstr "Lista del mese" - -#: ../../Zotlabs/Module/Cdav.php:886 -msgid "List week" -msgstr "Lista della settimana" - -#: ../../Zotlabs/Module/Cdav.php:887 -msgid "List day" -msgstr "Lista del giorno" - -#: ../../Zotlabs/Module/Cdav.php:894 -msgid "More" -msgstr "Di più" - -#: ../../Zotlabs/Module/Cdav.php:895 -msgid "Less" -msgstr "Meno" - -#: ../../Zotlabs/Module/Cdav.php:896 -msgid "Select calendar" -msgstr "Seleziona calendario" - -#: ../../Zotlabs/Module/Cdav.php:898 -msgid "Delete all" -msgstr "Elimina tutto" - -#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Admin/Plugins.php:423 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 -msgid "Cancel" -msgstr "Annulla" - -#: ../../Zotlabs/Module/Cdav.php:900 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile." - -#: ../../Zotlabs/Module/Cdav.php:1170 -#: ../../Zotlabs/Module/Sharedwithme.php:105 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:283 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../addon/rendezvous/rendezvous.php:172 -msgid "Name" -msgstr "Nome" - -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 -msgid "Organisation" -msgstr "Organizzazione" - -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 -msgid "Title" -msgstr "Titolo" - -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "Telefono" - -#: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 -#: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 -msgid "Email" -msgstr "Email" - -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "Messaggistica istantanea" - -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "Sito web" - -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "Indirizzo" - -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "Nota" - -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 -#: ../../include/connections.php:690 -msgid "Mobile" -msgstr "Mobile" - -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 -#: ../../include/connections.php:691 -msgid "Home" -msgstr "Bacheca" - -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 -#: ../../include/connections.php:694 -msgid "Work" -msgstr "Lavoro" - -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/jappixmini.php:368 -msgid "Add Contact" -msgstr "Aggiungi contatto" - -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "Aggiungi campo" - -#: ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Admin/Plugins.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:39 -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 -#: ../../Zotlabs/Lib/Apps.php:393 -msgid "Update" -msgstr "Aggiorna" - -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 -msgid "P.O. Box" -msgstr "P.O. Box" - -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 -msgid "Additional" -msgstr "Aggiuntivo" - -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 -msgid "Street" -msgstr "Via" - -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 -msgid "Locality" -msgstr "Località" - -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 -msgid "Region" -msgstr "Regione" - -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 -msgid "ZIP Code" -msgstr "CAP" - -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "Nazione" - -#: ../../Zotlabs/Module/Cdav.php:1242 -msgid "Default Calendar" -msgstr "Calendario predefinito" - -#: ../../Zotlabs/Module/Cdav.php:1252 -msgid "Default Addressbook" -msgstr "Rubrica predefinita" - -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" - -#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." - -#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "Post e commenti" - -#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "Solo post" - -#: ../../Zotlabs/Module/Channel.php:107 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "Esporta il canale" - -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "Esporta i contenuti" - -#: ../../Zotlabs/Module/Uexport.php:61 -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/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." - -#: ../../Zotlabs/Module/Uexport.php:65 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." - -#: ../../Zotlabs/Module/Uexport.php:66 -#, 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:67 -#, 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:68 -#, 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/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "Benvenuto su Hubzilla!" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "Non hai post non letti..." - -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." - -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 -#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1051 ../../include/text.php:1063 -#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 -msgid "Search" -msgstr "Cerca" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" - -#: ../../Zotlabs/Module/Pubstream.php:95 -#: ../../Zotlabs/Widget/Notifications.php:131 -msgid "Public Stream" -msgstr "Flusso pubblico" - -#: ../../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 ../../Zotlabs/Module/Admin.php:111 -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/Apporder.php:44 -msgid "Change Order of Pinned Navbar Apps" -msgstr "Cambia l'ordine della app bloccate sulla barra di navigazione" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of App Tray Apps" -msgstr "Cambia l'ordine delle app elencate nel menu delle app" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the" -" navbar" -msgstr "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "Utilizza le frecce per spostare l'app su o giù nel menu delle app" - -#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 -msgid "Menu not found." -msgstr "Menù non trovato." - -#: ../../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:120 ../../Zotlabs/Module/Menu.php:166 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" - -#: ../../Zotlabs/Module/Mitem.php:161 -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:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:259 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/rtof/rtof.php:81 ../../addon/rtof/rtof.php:85 -#: ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "No" -msgstr "No" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 -#: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:261 -#: ../../Zotlabs/Module/Settings/Channel.php:307 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 -#: ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Filestorage.php:155 -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic_c/php/config.php:115 -#: ../../view/theme/redbasic/php/config.php:98 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 -#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 -#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 -#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 -#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 -#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 -#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 -#: ../../addon/rtof/rtof.php:81 ../../addon/rtof/rtof.php:85 -#: ../../addon/jappixmini/jappixmini.php:309 -#: ../../addon/jappixmini/jappixmini.php:313 -#: ../../addon/jappixmini/jappixmini.php:343 -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 -#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 -#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 -#: ../../addon/libertree/libertree.php:81 -#: ../../addon/flattrwidget/flattrwidget.php:120 -#: ../../addon/statusnet/statusnet.php:389 -#: ../../addon/statusnet/statusnet.php:411 -#: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 -#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 -#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 -#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -msgid "Yes" -msgstr "Sì" - -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" - -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" - -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" - -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" - -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" - -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" - -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." - -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." - -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." - -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" - -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" - -#: ../../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:110 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 -#: ../../include/text.php:2008 ../../include/event.php:1153 -msgid "event" -msgstr "l'evento" - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 -#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 -#: ../../include/datetime.php:211 -msgid "Required" -msgstr "Obbligatorio" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "Modifica la categoria" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -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:469 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "Data e ora di fine" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" - -#: ../../Zotlabs/Module/Events.php:471 -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:473 -msgid "Edit Description" -msgstr "Modifica la descrizione" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Modifica il luogo" - -#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 -#: ../../include/conversation.php:1333 -msgid "Preview" -msgstr "Anteprima" - -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "Fuso orario: " - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "Opzioni avanzate" - -#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 -msgid "l, F j" -msgstr "l j F" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "Modifica l'evento" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "Elimina l'evento" - -#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1827 -msgid "Link to Source" -msgstr "Link al sito d'origine" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "calendario" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Edit Event" -msgstr "Modifica l'evento" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Create Event" -msgstr "Crea un evento" - -#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1647 -msgid "Export" -msgstr "Esporta" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "Evento eliminato" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "App installata" - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "L'app contiene errori" - -#: ../../Zotlabs/Module/Appman.php:130 -msgid "Embed code" -msgstr "Inserisci il codice" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Edit App" -msgstr "Modifica app" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Create App" -msgstr "Crea una app" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Name of app" -msgstr "Nome app" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Photo icon URL" -msgstr "URL icona" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Version ID" -msgstr "ID versione" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Price of app" -msgstr "Prezzo app" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Effettua l'accesso." - -#: ../../Zotlabs/Module/Magic.php:72 -msgid "Hub not found." -msgstr "Hub non trovato." - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 -#: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1388 -#: ../../include/conversation.php:116 ../../include/text.php:2005 -msgid "photo" -msgstr "la foto" - -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1388 -#: ../../include/conversation.php:144 ../../include/text.php:2011 -msgid "status" -msgstr "messaggio di stato" - -#: ../../Zotlabs/Module/Subthread.php:142 -#, 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:144 -#, 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/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 -#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Card_edit.php:44 -msgid "Channel not found." -msgstr "Canale non trovato." - -#: ../../Zotlabs/Module/Article_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../include/conversation.php:1278 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" - -#: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../include/conversation.php:1401 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "Modifica l'articolo" - -#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 -#: ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" - -#: ../../Zotlabs/Module/Import_items.php:77 -#: ../../Zotlabs/Module/Import.php:102 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../Zotlabs/Module/Import_items.php:93 -#, 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_items.php:108 -msgid "Import completed" -msgstr "Importazione completata" - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "Importa i contenuti" - -#: ../../Zotlabs/Module/Import_items.php:126 -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/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:517 -msgid "File to Upload" -msgstr "File da caricare" - -#: ../../Zotlabs/Module/New_channel.php:133 -#: ../../Zotlabs/Module/Manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -msgid "Name or caption" -msgstr "Nome o titolo" - -#: ../../Zotlabs/Module/New_channel.php:146 -#: ../../Zotlabs/Module/Register.php:254 -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:148 -#: ../../Zotlabs/Module/Register.php:256 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../Zotlabs/Module/New_channel.php:148 -#: ../../Zotlabs/Module/Register.php:256 -#, 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:149 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" - -#: ../../Zotlabs/Module/New_channel.php:149 -#: ../../Zotlabs/Module/Register.php:257 -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:149 -#: ../../Zotlabs/Module/Register.php:257 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" - -#: ../../Zotlabs/Module/New_channel.php:152 -msgid "Create Channel" -msgstr "Crea un canale" - -#: ../../Zotlabs/Module/New_channel.php:153 -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:154 -msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." - -#: ../../Zotlabs/Module/New_channel.php:159 -msgid "Validate" -msgstr "Validazione" - -#: ../../Zotlabs/Module/Removeme.php:35 -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 -msgid "Remove This Channel" -msgstr "Elimina questo canale" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "ATTENZIONE:" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" - -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../Zotlabs/Module/Removeme.php:63 -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 -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/Channel.php:600 -msgid "Remove Channel" -msgstr "Elimina questo canale" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Files: shared with me" -msgstr "File: condivisi con me" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -msgid "NEW" -msgstr "NOVITÀ" - -#: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 -msgid "Size" -msgstr "Dimensione" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:286 -msgid "Last Modified" -msgstr "Ultima modifica" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove all files" -msgstr "Elimina tutti i file" - -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove this file" -msgstr "Elimina questo file" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "Verifica del sistema" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "Verifica di nuovo" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "Connessione al database" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "Server del database" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "Port del database" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "Utente database" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "Password database" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "Nome database" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "Tipo database" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "URL completo del sito" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "Impostazioni del hub" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "Versione PHP" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "Path del comando PHP" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario." - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../Zotlabs/Module/Setup.php:446 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." - -#: ../../Zotlabs/Module/Setup.php:451 -msgid "You can adjust these settings in the server php.ini file." -msgstr "Puoi modificare queste impostazione nel file php.ini del server." - -#: ../../Zotlabs/Module/Setup.php:453 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" - -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../Zotlabs/Module/Setup.php:480 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: ../../Zotlabs/Module/Setup.php:499 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: ../../Zotlabs/Module/Setup.php:500 -msgid "PDO database PHP module" -msgstr "PDO database PHP module" - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "xml PHP module" -msgstr "modulo xml PHP" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "zip PHP module" -msgstr "modulo zip del PHP" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" - -#: ../../Zotlabs/Module/Setup.php:507 -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:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" -msgstr "exec" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" -msgstr "shell_exec" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: shell_exec è richiesto ma non è installato o è stato disabilitato in php.ini" - -#: ../../Zotlabs/Module/Setup.php:527 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." - -#: ../../Zotlabs/Module/Setup.php:531 -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:535 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." - -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: PDO database PHP module required but not installed." -msgstr "Errore: PDO database PHP module è richiesto ma non installato." - -#: ../../Zotlabs/Module/Setup.php:543 -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:547 -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:551 -msgid "Error: zip PHP module required but not installed." -msgstr "Errore: il modulo zip del PHP necessario ma non installato." - -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: ../../Zotlabs/Module/Setup.php:575 -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:576 -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:577 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "Leggi il file 'install/INSTALL.txt' per maggiori informazioni." - -#: ../../Zotlabs/Module/Setup.php:593 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione." - -#: ../../Zotlabs/Module/Setup.php:594 -#, 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" - -#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 -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:596 -#, 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:599 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" - -#: ../../Zotlabs/Module/Setup.php:615 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level" -" web folder" -msgstr "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web" - -#: ../../Zotlabs/Module/Setup.php:619 -msgid "store is writable" -msgstr "l'archivio è scrivibile" - -#: ../../Zotlabs/Module/Setup.php:651 -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:652 -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:653 -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:654 -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:655 -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:656 -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:658 -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:660 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" - -#: ../../Zotlabs/Module/Setup.php:666 -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:669 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" - -#: ../../Zotlabs/Module/Setup.php:683 -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:707 -#: ../../addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: ../../Zotlabs/Module/Setup.php:747 -msgid "

What next?

" -msgstr "

E ora?

" - -#: ../../Zotlabs/Module/Setup.php:748 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." - -#: ../../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/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "Statistiche della coda" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "Totale" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "Priorità" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "URL di destinazione" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "Ultimo scambio dati" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "Off" -msgstr "Off" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "On" -msgstr "On" - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../Zotlabs/Module/Admin/Plugins.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:453 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3619 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." - -#: ../../Zotlabs/Module/Admin/Plugins.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." - -#: ../../Zotlabs/Module/Admin/Plugins.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "Disattiva" - -#: ../../Zotlabs/Module/Admin/Plugins.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "Attiva" - -#: ../../Zotlabs/Module/Admin/Plugins.php:341 -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:294 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../Zotlabs/Module/Admin/Plugins.php:342 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -#: ../../Zotlabs/Widget/Admin.php:27 -msgid "Plugins" -msgstr "Plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "Attiva/disattiva" - -#: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 -#: ../../include/nav.php:192 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "Autore:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "Gestore:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" - -#: ../../Zotlabs/Module/Admin/Plugins.php:354 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" - -#: ../../Zotlabs/Module/Admin/Plugins.php:355 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:356 -msgid "Compatible Server Roles: " -msgstr "Ruoli previsti per questo server" - -#: ../../Zotlabs/Module/Admin/Plugins.php:357 -msgid "Requires: " -msgstr "Necessita di:" - -#: ../../Zotlabs/Module/Admin/Plugins.php:358 -#: ../../Zotlabs/Module/Admin/Plugins.php:442 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" - -#: ../../Zotlabs/Module/Admin/Plugins.php:411 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." - -#: ../../Zotlabs/Module/Admin/Plugins.php:412 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" - -#: ../../Zotlabs/Module/Admin/Plugins.php:413 -msgid "(optional)" -msgstr "(facoltativo)" - -#: ../../Zotlabs/Module/Admin/Plugins.php:414 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:421 -msgid "Install new repo" -msgstr "Installa un nuovo repository" - -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 -msgid "Install" -msgstr "Installa" - -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -msgid "Manage Repos" -msgstr "Gestisci i repository" - -#: ../../Zotlabs/Module/Admin/Plugins.php:446 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" - -#: ../../Zotlabs/Module/Admin/Plugins.php:447 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" - -#: ../../Zotlabs/Module/Admin/Plugins.php:454 -msgid "Switch branch" -msgstr "Cambia branch" - -#: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../addon/superblock/superblock.php:116 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "Account non trovato" - -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" - -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 -msgid "Accounts" -msgstr "Account" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 -msgid "Approve" -msgstr "Approva" - -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Authorize.php:26 -msgid "Deny" -msgstr "Nega" - -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Block" -msgstr "Blocca" - -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 -msgid "All Channels" -msgstr "Tutti i canali" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "Con scadenza" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "Classe dell'account" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." - -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 -#: ../../Zotlabs/Widget/Admin.php:58 -msgid "Logs" -msgstr "Log" - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Pulisci" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Debugging" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "File di log" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Livello di log" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "Canale non trovato" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" - -#: ../../Zotlabs/Module/Admin/Channels.php:146 -#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 -msgid "Channels" -msgstr "Canali" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "Applica censura" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "Rimuovi censura" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "Permetti codice" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "Non permettere codice" - -#: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1811 ../../include/nav.php:378 -msgid "Channel" -msgstr "Canale" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "UID" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "Istantanea dello schermo" - -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 -msgid "Themes" -msgstr "Temi" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../Zotlabs/Module/Admin/Site.php:165 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." - -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 -msgid "Default" -msgstr "Predefinito" - -#: ../../Zotlabs/Module/Admin/Site.php:202 -#: ../../Zotlabs/Module/Settings/Display.php:130 -#, php-format -msgid "%s - (Incompatible)" -msgstr "%s - (Incompatibile)" - -#: ../../Zotlabs/Module/Admin/Site.php:209 -msgid "mobile" -msgstr "mobile" - -#: ../../Zotlabs/Module/Admin/Site.php:211 -msgid "experimental" -msgstr "sperimentale" - -#: ../../Zotlabs/Module/Admin/Site.php:213 -msgid "unsupported" -msgstr "non supportato" - -#: ../../Zotlabs/Module/Admin/Site.php:260 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" - -#: ../../Zotlabs/Module/Admin/Site.php:266 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" - -#: ../../Zotlabs/Module/Admin/Site.php:267 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" - -#: ../../Zotlabs/Module/Admin/Site.php:268 -msgid "My site has free access only" -msgstr "È un servizio gratuito" - -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" - -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Beginner/Basic" -msgstr "Principiante" - -#: ../../Zotlabs/Module/Admin/Site.php:282 -msgid "Novice - not skilled but willing to learn" -msgstr "Novizio - disposto a imparare" - -#: ../../Zotlabs/Module/Admin/Site.php:283 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedio - con alcune conoscenze tecniche" - -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Advanced - very comfortable" -msgstr "Avanzato - a mio agio con gli aspetti tecnici" - -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Expert - I can write computer code" -msgstr "Esperto - posso scrivere codice" - -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "Wizard - I probably know more than you do" -msgstr "Genio - probabilmente ne so più di te!" - -#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 -msgid "Site" -msgstr "Sito" - -#: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../Zotlabs/Module/Register.php:269 -msgid "Registration" -msgstr "Registrazione" - -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Policies" -msgstr "Politiche" - -#: ../../Zotlabs/Module/Admin/Site.php:300 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" - -#: ../../Zotlabs/Module/Admin/Site.php:304 -#: ../../addon/statusnet/statusnet.php:891 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Site default technical skill level" -msgstr "Livello tecnico predefinito per gli utenti del sito" - -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Lock the technical skill level setting" -msgstr "Il livello tecnico non potrà essere modificato" - -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Members can set their own technical comfort level by default" -msgstr "Gli utenti possono scegliere il livello tecnico preferito" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Banner/Logo" -msgstr "Banner o logo" - -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "È permesso un contenuto HTML/CSS/JS non filtrato" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Information" -msgstr "Informazioni sul sito" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare il BBCode" - -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" - -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" - -#: ../../Zotlabs/Module/Admin/Site.php:318 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "Invitation only" -msgstr "Solo con invito" - -#: ../../Zotlabs/Module/Admin/Site.php:320 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age" -msgstr "Età minima" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Minimum age (in years) for who may register on this site." -msgstr "L'età minima (in anni) richiesta per registrarsi su questo sito." - -#: ../../Zotlabs/Module/Admin/Site.php:322 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Register text" -msgstr "Testo di registrazione" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" - -#: ../../Zotlabs/Module/Admin/Site.php:328 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" - -#: ../../Zotlabs/Module/Admin/Site.php:329 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Site only Public Streams" -msgstr "Solo i flussi pubblici su questo sito" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "Consenti l'accesso a contenuti pubblici originati solo da questo sito se se è disabilitata l'importazione di flussi pubblici." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "Permetti a chiunque su internet di accedere ai flussi pubblici" - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "Disabilita per richiedere di autenticarsi prima di visualizzare. Attenzione: questo contenuto non è moderato." - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Login on Homepage" -msgstr "Login sulla homepage" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Reply-to email address for system generated email." -msgstr "Indirizzo Reply-to per mail generate dal sistema." - -#: ../../Zotlabs/Module/Admin/Site.php:337 -msgid "Sender (From) email address for system generated email." -msgstr "Indirzzo email del mittente (From) per mail generate dal sistema." - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Name of email sender for system generated email." -msgstr "Nome del mittente per mail generate dal sistema" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Directory Server URL" -msgstr "URL del directory server" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Default directory server" -msgstr "Directory server predefinito" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Proxy user" -msgstr "Utente proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Delivery interval" -msgstr "Recapito ritardato" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Queue Threshold" -msgstr "Threshold della coda" - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi." - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "Poll interval" -msgstr "Intervallo di polling" - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "Path to ImageMagick convert program" -msgstr "Percorso del comando convert di ImageMagic" - -#: ../../Zotlabs/Module/Admin/Site.php:349 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "Allow SVG thumbnails in file browser" -msgstr "Permetti le anteprime SVG nell'elenco dei file" - -#: ../../Zotlabs/Module/Admin/Site.php:350 -msgid "WARNING: SVG images may contain malicious code." -msgstr "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo." - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" - -#: ../../Zotlabs/Module/Admin/Site.php:353 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "Non far scadere nessun post che ha commenti più recenti di questo numero di giorni" - -#: ../../Zotlabs/Module/Admin/Site.php:355 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "Server pubblici: Landing page (marketing) opzionale per utenti appena registrati" - -#: ../../Zotlabs/Module/Admin/Site.php:355 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "Crea questa pagina prima. Il default è %s/register" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Page to display after creating a new channel" -msgstr "Pagina da visualizzare dopo la creazione di un nuovo canale" - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Recommend: profiles, go, or settings" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Optional: site location" -msgstr "Opzionale: site location" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Region or country" -msgstr "Regione o Paese" - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "Nome breve del campo" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "Nome di sistema del campo" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "Tipo di dati" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "Nome del campo" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "Testo di aiuto" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" - -#: ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 -#: ../../include/text.php:1064 -msgid "Save" -msgstr "Salva" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" - -#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 -msgid "Profile Fields" -msgstr "Campi del profilo" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "Tutti i campi disponibili" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "Campi personalizzati" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "La password per l'utente %d è cambiata." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "L'impostazioni sono state aggiornate." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "Account non trovato." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "Modifica le impostazioni" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "Nuova password" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "Ripeti la nuova password" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Livello tecnico" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "Lingua (per le email di sistema)" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "Classe dell'account" - -#: ../../Zotlabs/Module/Admin/Security.php:77 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." - -#: ../../Zotlabs/Module/Admin/Security.php:80 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" - -#: ../../Zotlabs/Module/Admin/Security.php:81 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" - -#: ../../Zotlabs/Module/Admin/Security.php:82 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." - -#: ../../Zotlabs/Module/Admin/Security.php:87 -#: ../../Zotlabs/Widget/Admin.php:25 -msgid "Security" -msgstr "Sicurezza" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." - -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" - -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" - -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" - -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" - -#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 -msgctxt "acl" -msgid "Profile" -msgstr "Profilo" - -#: ../../Zotlabs/Module/Moderate.php:62 -msgid "Comment approved" -msgstr "Commento approvato" - -#: ../../Zotlabs/Module/Moderate.php:66 -msgid "Comment deleted" -msgstr "Commento eliminato" - -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "Categoria di permessi salvata" - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Usa questo modulo per definire i permessi specifici per classi di persone o connessioni." - -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -msgid "Permission Categories" -msgstr "Categorie di permessi" - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Nome del permesso" - -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -msgid "My Settings" -msgstr "Permessi che concedo" - -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -msgid "inherited" -msgstr "derivato" - -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -msgid "Individual Permissions" -msgstr "Permessi individuali" - -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:894 -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 "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/Settings/Channel.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:83 -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:123 ../../include/channel.php:437 -#: ../../include/channel.php:438 ../../include/channel.php:445 -msgid "Friends" -msgstr "Amici" - -#: ../../Zotlabs/Module/Settings/Channel.php:264 -#: ../../Zotlabs/Module/Defperms.php:103 -#: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:184 -#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:102 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../Zotlabs/Module/Settings/Channel.php:325 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" - -#: ../../Zotlabs/Module/Settings/Channel.php:326 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" - -#: ../../Zotlabs/Module/Settings/Channel.php:327 -msgid "Approved connections" -msgstr "Contatti approvati" - -#: ../../Zotlabs/Module/Settings/Channel.php:328 -msgid "Any connections" -msgstr "Tutti i contatti" - -#: ../../Zotlabs/Module/Settings/Channel.php:329 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" - -#: ../../Zotlabs/Module/Settings/Channel.php:330 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" - -#: ../../Zotlabs/Module/Settings/Channel.php:331 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" - -#: ../../Zotlabs/Module/Settings/Channel.php:332 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" - -#: ../../Zotlabs/Module/Settings/Channel.php:407 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" - -#: ../../Zotlabs/Module/Settings/Channel.php:412 -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/Channel.php:416 -msgid "or" -msgstr "o" - -#: ../../Zotlabs/Module/Settings/Channel.php:425 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" - -#: ../../Zotlabs/Module/Settings/Channel.php:428 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "I tuoi file/foto sono accessibili via WebDAV all'indirizzo" - -#: ../../Zotlabs/Module/Settings/Channel.php:493 -msgid "Channel Settings" -msgstr "Impostazioni del canale" - -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Basic Settings" -msgstr "Impostazioni di base" - -#: ../../Zotlabs/Module/Settings/Channel.php:501 -#: ../../include/channel.php:1521 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../Zotlabs/Module/Settings/Channel.php:502 -#: ../../Zotlabs/Module/Settings/Account.php:119 -msgid "Email Address:" -msgstr "Indirizzo email:" - -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" - -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Adult Content" -msgstr "Contenuto per adulti" - -#: ../../Zotlabs/Module/Settings/Channel.php:507 -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/Channel.php:509 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../Zotlabs/Module/Settings/Channel.php:511 -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/Channel.php:513 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" - -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" - -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" - -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" - -#: ../../Zotlabs/Module/Settings/Channel.php:517 -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/Channel.php:518 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" - -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -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/Channel.php:523 -msgid "Channel Permission Limits" -msgstr "Limiti sui permessi del canale" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -#, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" - -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "Default Privacy Group" -msgstr "Privacy Group predefinito" - -#: ../../Zotlabs/Module/Settings/Channel.php:529 -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" - -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "Profile to assign new connections" -msgstr "Profilo da associare ai nuovi contatti" - -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default Permissions Group" -msgstr "Permission Group predefinito" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" - -#: ../../Zotlabs/Module/Settings/Channel.php:549 -#: ../../Zotlabs/Lib/Enotify.php:68 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" - -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" - -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" - -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" - -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" - -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" - -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" - -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" - -#: ../../Zotlabs/Module/Settings/Channel.php:559 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" - -#: ../../Zotlabs/Module/Settings/Channel.php:562 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" - -#: ../../Zotlabs/Module/Settings/Channel.php:564 -msgid "Someone likes your post/comment" -msgstr "Qualcuno mette mi piace al tuo post/commento" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" - -#: ../../Zotlabs/Module/Settings/Channel.php:569 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" - -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Unseen channel activity" -msgstr "Novità nei canali" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:576 -#: ../../Zotlabs/Module/Settings/Channel.php:577 -#: ../../Zotlabs/Module/Settings/Channel.php:578 -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Recommended" -msgstr "Consigliato" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Upcoming events" -msgstr "Prossimi eventi" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "Events today" -msgstr "Eventi di oggi" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "System info messages" -msgstr "Notifiche di sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "New connections" -msgstr "Nuovi contatti" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "System Registrations" -msgstr "Registrazioni" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "Unseen shared files" -msgstr "File condivisi non ancora visitati" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "Unseen public activity" -msgstr "Attività pubblica non letta" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "Unseen likes and dislikes" -msgstr "Mi piace e non mi piace da leggere" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "Email notification hub (hostname)" -msgstr "Hub di notifica (hostname)" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "Se il tuo canale è replicato su molti hub, scegli qui da dove saranno inviati i messaggi. Serve ad evitare di ricevere notifiche duplicate. Esempio: %s" - -#: ../../Zotlabs/Module/Settings/Channel.php:584 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "Mostra i nuovi post in bacheca, i messaggi privati e le connessioni come Notifiche" - -#: ../../Zotlabs/Module/Settings/Channel.php:586 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" - -#: ../../Zotlabs/Module/Settings/Channel.php:586 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" - -#: ../../Zotlabs/Module/Settings/Channel.php:599 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" - -#: ../../Zotlabs/Module/Settings/Channel.php:601 -msgid "Remove this channel." -msgstr "Elimina questo canale." - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Start calendar week on Monday" -msgstr "Inizia la settimana nel calendario da lunedì" - -#: ../../Zotlabs/Module/Settings/Features.php:73 -msgid "Additional Features" -msgstr "Funzionalità opzionali" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "Il tuo livello tecnico" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Serve ad adeguare l'interfaccia e le funzionalità mostrate alla tua dimestichezza" - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." - -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Token salvato." - -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -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 private content." -msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." - -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -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/Tokens.php:150 -#: ../../Zotlabs/Widget/Settings_menu.php:100 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Nome utente" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Password" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" - -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:890 -msgid "Their Settings" -msgstr "Permessi concessi a te" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:35 -msgid "Name and Secret are required" -msgstr "Nome e Password sono obbligatori" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:83 -msgid "Add OAuth2 application" -msgstr "Aggiungi applicazione OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Nome dell'applicazione" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Redirect" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -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/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -msgid "Grant Types" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "leave blank unless your application sepcifically requires this" -msgstr "lascia bianco a meno che la applicazione non lo richieda esplicitamente" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Authorization scope" -msgstr "Ambito dell'autorizzazione" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:102 -msgid "OAuth2 Application not found." -msgstr "Applicazione OAuth2 non trovata." - -#: ../../Zotlabs/Module/Settings/Oauth2.php:111 -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Aggiungi una app" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:147 -msgid "Connected OAuth2 Apps" -msgstr "Applicazioni OAuth2 connesse" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "La client key inizia con" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Nessun nome" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" - -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "Email non valida." - -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." - -#: ../../Zotlabs/Module/Settings/Account.php:32 -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/Account.php:40 -msgid "Technical skill level updated" -msgstr "Livello tecnico aggiornato" - -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "Verifica della password fallita." - -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." - -#: ../../Zotlabs/Module/Settings/Account.php:112 -msgid "Account Settings" -msgstr "Il tuo account" - -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" -msgstr "Password attuale" - -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" -msgstr "Nuova password" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" - -#: ../../Zotlabs/Module/Settings/Account.php:120 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" - -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" - -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "Impostazioni dell'Affinity Slider salvate." - -#: ../../Zotlabs/Module/Settings/Featured.php:38 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "Livello di affinità predefinito massimo " - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "0-99 predefinito 99" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "Livello di affinità predefinito minimo" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "0-99 - predefinito 0" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "Impostazioni dell'Affinity Slider" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 -msgid "Addon Settings" -msgstr "Impostazioni del componente aggiuntivo" - -#: ../../Zotlabs/Module/Settings/Featured.php:68 -msgid "Please save/submit changes to any panel before opening another." -msgstr "Salva/invia i cambiamenti prima di cambiare pannello." - -#: ../../Zotlabs/Module/Settings/Display.php:139 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Display Settings" -msgstr "Aspetto" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Theme Settings" -msgstr "Impostazioni del tema" - -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Select scheme" -msgstr "Scegli uno schema" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -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/Display.php:200 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum of 100 items" -msgstr "Massimo 100" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Provide channel menu in navigation bar" -msgstr "Visualizza il menu del canale nella barra di navigazione" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Default: channel menu located in app menu" -msgstr "Predefinito: menu del canale nel menu delle app" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Manual conversation updates" -msgstr "Aggiornamenti manuali alla conversazione" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "Se non è attiva può causare scorrimenti imprevisti della pagina" - -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" - -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" - -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" - -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" -msgstr "Il nome è obbligatorio" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" - -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "Url icona" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Applicazione non trovata." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "App connesse" - -#: ../../Zotlabs/Module/Embedphotos.php:140 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 -#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "Guarda la foto" - -#: ../../Zotlabs/Module/Embedphotos.php:156 -#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Module/Photos.php:712 -#: ../../Zotlabs/Module/Profile_photo.php:458 -#: ../../Zotlabs/Module/Cover_photo.php:362 -#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 -#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Widget/Album.php:97 -msgid "Upload" -msgstr "Carica" - -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" - -#: ../../Zotlabs/Module/Thing.php:120 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "Mostra l'oggetto" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "non trovato." - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "Scegli un profilo" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "Pubblica un'attività" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi può vedere il profilo scelto" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (facoltativo)" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" - -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:123 -msgid "Permissions" -msgstr "Permessi" - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:57 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." - -#: ../../Zotlabs/Module/Notify.php:65 -#: ../../Zotlabs/Module/Notifications.php:61 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "Contatto aggiunto." - -#: ../../Zotlabs/Module/Import.php:144 -#, 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:158 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." - -#: ../../Zotlabs/Module/Import.php:482 -#: ../../addon/diaspora/import_diaspora.php:139 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." - -#: ../../Zotlabs/Module/Import.php:510 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." - -#: ../../Zotlabs/Module/Import.php:515 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../Zotlabs/Module/Import.php:516 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." - -#: ../../Zotlabs/Module/Import.php:518 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" - -#: ../../Zotlabs/Module/Import.php:519 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" - -#: ../../Zotlabs/Module/Import.php:520 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" - -#: ../../Zotlabs/Module/Import.php:521 -msgid "Your old login password" -msgstr "La password per il vecchio hub" - -#: ../../Zotlabs/Module/Import.php:522 -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/Import.php:523 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" - -#: ../../Zotlabs/Module/Import.php:524 -msgid "Move this channel (disable all previous locations)" -msgstr "Sposta questo canale (disabilita le posizioni precedenti)" - -#: ../../Zotlabs/Module/Import.php:525 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Importa alcune mesi di post se possibile (dipende dalla memoria disponibile" - -#: ../../Zotlabs/Module/Import.php:526 -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/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 -#: ../../include/channel.php:2318 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" - -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 -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:77 ../../include/channel.php:2320 -msgid "Authenticate" -msgstr "Accedi" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." - -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 -msgid "Import" -msgstr "Importa" - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "Autorizza la app" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "Modifica il block" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "vcard" - -#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 -msgid "Apps" -msgstr "App" - -#: ../../Zotlabs/Module/Apps.php:51 -msgid "Manage apps" -msgstr "Gestisci le app" - -#: ../../Zotlabs/Module/Apps.php:52 -msgid "Create new app" -msgstr "Crea nuova app" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 -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/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Active" -msgstr "Attivo" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Ignored" -msgstr "Ignorati" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Hidden" -msgstr "Nascosti" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Archived/Unreachable" -msgstr "Archiviato/Irraggiungibile" - -#: ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 -#: ../../Zotlabs/Module/Notifications.php:52 -#: ../../include/conversation.php:1717 -msgid "New" -msgstr "Novità" - -#: ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 -msgid "All" -msgstr "Tutti" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "Contatto Attivo" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "Mostra i contatti atttivi" - -#: ../../Zotlabs/Module/Connections.php:147 -#: ../../Zotlabs/Widget/Notifications.php:84 -msgid "New Connections" -msgstr "Nuovi contatti" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show archived/unreachable connections" -msgstr "Mostra solo i contatti archiviati/irraggiungibili" - -#: ../../Zotlabs/Module/Connections.php:188 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" - -#: ../../Zotlabs/Module/Connections.php:203 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Pending approval" -msgstr "In attesa di conferma" - -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Archived" -msgstr "Archiviati" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Not connected at this location" -msgstr "Non connesso a questa location" - -#: ../../Zotlabs/Module/Connections.php:279 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Edit connection" -msgstr "Modifica il contatto" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Delete connection" -msgstr "Elimina il contatto" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Channel address" -msgstr "Indirizzo del canale" - -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Network" -msgstr "Network" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Call" -msgstr "Chiama" - -#: ../../Zotlabs/Module/Connections.php:298 -msgid "Status" -msgstr "Stato" - -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Connected" -msgstr "In contatto" - -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Approve connection" -msgstr "Approva questo contatto" - -#: ../../Zotlabs/Module/Connections.php:304 -msgid "Ignore connection" -msgstr "Ignora il contatto" - -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Ignore" -msgstr "Ignora" - -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Recent activity" -msgstr "Attività recenti" - -#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/text.php:973 -msgid "Connections" -msgstr "Contatti" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "Cerca tra i contatti" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "Ricerca tra i contatti" - -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "elemento" - -#: ../../Zotlabs/Module/Viewsrc.php:55 -msgid "Source of Item" -msgstr "Sorgente" - -#: ../../Zotlabs/Module/Bookmarks.php:56 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../Zotlabs/Module/Bookmarks.php:90 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -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 -msgid "Remove This Account" -msgstr "Elimina questo account" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -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:60 -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 -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/Photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." - -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "Elimina album" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 -msgid "Delete Photo" -msgstr "Elimina foto" - -#: ../../Zotlabs/Module/Photos.php:551 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../Zotlabs/Module/Photos.php:600 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." - -#: ../../Zotlabs/Module/Photos.php:646 -#, 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:649 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." - -#: ../../Zotlabs/Module/Photos.php:691 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:696 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" - -#: ../../Zotlabs/Module/Photos.php:699 -msgid "Description (optional)" -msgstr "Descrizione (opzionale)" - -#: ../../Zotlabs/Module/Photos.php:785 -msgid "Show Newest First" -msgstr "Prima i più recenti" - -#: ../../Zotlabs/Module/Photos.php:787 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" - -#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 -msgid "Add Photos" -msgstr "Aggiungi foto" - -#: ../../Zotlabs/Module/Photos.php:892 -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:894 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../Zotlabs/Module/Photos.php:952 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../Zotlabs/Module/Photos.php:953 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" - -#: ../../Zotlabs/Module/Photos.php:960 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../Zotlabs/Module/Photos.php:975 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" - -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Edit photo" -msgstr "Modifica la foto" - -#: ../../Zotlabs/Module/Photos.php:1059 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" - -#: ../../Zotlabs/Module/Photos.php:1060 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" - -#: ../../Zotlabs/Module/Photos.php:1063 -msgid "Move photo to album" -msgstr "Sposta la foto in un album" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" - -#: ../../Zotlabs/Module/Photos.php:1065 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:1070 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../Zotlabs/Module/Photos.php:1078 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1081 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" - -#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 -#: ../../include/conversation.php:785 -msgid "Please wait" -msgstr "Attendere" - -#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:749 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Likes" -msgstr "\"Mi piace\"" - -#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 -msgctxt "title" -msgid "Dislikes" -msgstr "\"Non mi piace\"" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" - -#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" - -#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 -#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 -msgid "View all" -msgstr "Vedi tutto" - -#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1981 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:660 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "\"Mi piace\"" - -#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 -#: ../../include/conversation.php:1984 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "\"Non mi piace\"" - -#: ../../Zotlabs/Module/Photos.php:1265 -msgid "Photo Tools" -msgstr "Gestione foto" - -#: ../../Zotlabs/Module/Photos.php:1274 -msgid "In This Photo:" -msgstr "In questa foto:" - -#: ../../Zotlabs/Module/Photos.php:1279 -msgid "Map" -msgstr "Mappa" - -#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 -msgctxt "noun" -msgid "Likes" -msgstr "\"Mi piace\"" - -#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 -msgctxt "noun" -msgid "Dislikes" -msgstr "\"Non mi piace\"" - -#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:125 -msgid "Close" -msgstr "Chiudi" - -#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 -#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:663 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 -msgid "Profile Unavailable." -msgstr "Profilo non dispobibile" - -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 -msgid "Not found" -msgstr "Non trovato" - -#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 -#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 -msgid "Invalid channel" -msgstr "Canale non valido" - -#: ../../Zotlabs/Module/Wiki.php:124 -msgid "Error retrieving wiki" -msgstr "Errore caricamento wiki" - -#: ../../Zotlabs/Module/Wiki.php:131 -msgid "Error creating zip file export folder" -msgstr "Errore nella creazione della cartella per l'esportazione in zip" - -#: ../../Zotlabs/Module/Wiki.php:182 -msgid "Error downloading wiki: " -msgstr "Errore scaricamento wiki:" - -#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 -#: ../../include/nav.php:494 -msgid "Wikis" -msgstr "Pagine wiki" - -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Download" -msgstr "Scarica" - -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 -#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 -msgid "Create New" -msgstr "Crea nuova" - -#: ../../Zotlabs/Module/Wiki.php:207 -msgid "Wiki name" -msgstr "Nome wiki" - -#: ../../Zotlabs/Module/Wiki.php:208 -msgid "Content type" -msgstr "Tipo di contenuto" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 -#: ../../include/text.php:1869 -msgid "Markdown" -msgstr "Markdown" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 -msgid "BBcode" -msgstr "BBCode" - -#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 -msgid "Text" -msgstr "Testo" - -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 -msgid "Type" -msgstr "Tipo" - -#: ../../Zotlabs/Module/Wiki.php:211 -msgid "Any type" -msgstr "Qualsiasi tipo" - -#: ../../Zotlabs/Module/Wiki.php:218 -msgid "Lock content type" -msgstr "Blocca il tipo di contenuto" - -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Create a status post for this wiki" -msgstr "Crea un messaggio di stato per questo wiki" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Edit Wiki Name" -msgstr "Modifica il nome del Wiki" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "Wiki not found" -msgstr "Wiki non trovato" - -#: ../../Zotlabs/Module/Wiki.php:286 -msgid "Rename page" -msgstr "Rinomina la pagina" - -#: ../../Zotlabs/Module/Wiki.php:307 -msgid "Error retrieving page content" -msgstr "Errore nel caricamento del contenuto della pagina" - -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 -msgid "New page" -msgstr "Nuova pagina" - -#: ../../Zotlabs/Module/Wiki.php:345 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" - -#: ../../Zotlabs/Module/Wiki.php:346 -msgid "Revert" -msgstr "Ripristina" - -#: ../../Zotlabs/Module/Wiki.php:353 -msgid "Short description of your changes (optional)" -msgstr "Breve descrizione delle tue modifiche (opzionale)" - -#: ../../Zotlabs/Module/Wiki.php:362 -msgid "Source" -msgstr "Sorgente" - -#: ../../Zotlabs/Module/Wiki.php:372 -msgid "New page name" -msgstr "Nome della nuova pagina" - -#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" - -#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" - -#: ../../Zotlabs/Module/Wiki.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:367 -#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:381 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:368 -#: ../../include/conversation.php:1320 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" - -#: ../../Zotlabs/Module/Wiki.php:382 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:369 -#: ../../include/conversation.php:1321 -msgid "Choose an album" -msgstr "Scegli un album" - -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:370 -msgid "Choose a different album" -msgstr "Scegli un album diverso" - -#: ../../Zotlabs/Module/Wiki.php:384 -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:371 -#: ../../include/conversation.php:1323 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" - -#: ../../Zotlabs/Module/Wiki.php:385 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:372 -#: ../../include/conversation.php:1324 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" - -#: ../../Zotlabs/Module/Wiki.php:386 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:373 -#: ../../include/conversation.php:1325 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" - -#: ../../Zotlabs/Module/Wiki.php:462 -msgid "Error creating wiki. Invalid name." -msgstr "Errore nella creazione. Nome non valido." - -#: ../../Zotlabs/Module/Wiki.php:469 -msgid "A wiki with this name already exists." -msgstr "Un Wiki con questo nome esiste già" - -#: ../../Zotlabs/Module/Wiki.php:482 -msgid "Wiki created, but error creating Home page." -msgstr "Wiki creato, ma c'è stato un errore nella creazione della Home page." - -#: ../../Zotlabs/Module/Wiki.php:489 -msgid "Error creating wiki" -msgstr "Errore nella creazione del Wiki" - -#: ../../Zotlabs/Module/Wiki.php:512 -msgid "Error updating wiki. Invalid name." -msgstr "Errore nell'aggiornamento del Wiki. Nome non valido." - -#: ../../Zotlabs/Module/Wiki.php:532 -msgid "Error updating wiki" -msgstr "Errore nell'aggiornamento del Wiki" - -#: ../../Zotlabs/Module/Wiki.php:547 -msgid "Wiki delete permission denied." -msgstr "Permesso negato nell'eliminare del Wiki" - -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error deleting wiki" -msgstr "Errore nell'eliminare il Wiki" - -#: ../../Zotlabs/Module/Wiki.php:590 -msgid "New page created" -msgstr "Nuova pagina creata" - -#: ../../Zotlabs/Module/Wiki.php:711 -msgid "Cannot delete Home" -msgstr "Non è possibile eliminare la Home" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Current Revision" -msgstr "Revisione corrente" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Selected Revision" -msgstr "Revisione selezionata" - -#: ../../Zotlabs/Module/Wiki.php:825 -msgid "You must be authenticated." -msgstr "Devi autenticarti." - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "attiva/disattiva schermo intero" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Layout aggiornato." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." - -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" - -#: ../../Zotlabs/Module/Pdledit.php:68 -msgid "(modified)" -msgstr "(modificato)" - -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Reimposta" - -#: ../../Zotlabs/Module/Pdledit.php:85 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../Zotlabs/Module/Pdledit.php:91 -msgid "Module Name:" -msgstr "Nome del modulo:" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout Help" -msgstr "Guida al layout" - -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Edit another layout" -msgstr "Modifica un altro layout" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "System layout" -msgstr "Layout di sistema" - -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 -#: ../../include/conversation.php:1092 -msgid "Poke" -msgstr "Poke" - -#: ../../Zotlabs/Module/Poke.php:183 -msgid "Poke somebody" -msgstr "Manda un poke" - -#: ../../Zotlabs/Module/Poke.php:186 -msgid "Poke/Prod" -msgstr "Poke/Prod" - -#: ../../Zotlabs/Module/Poke.php:187 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" - -#: ../../Zotlabs/Module/Poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" - -#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 -msgid "Make this post private" -msgstr "Rendi privato questo post" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:56 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:740 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:159 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." - -#: ../../Zotlabs/Module/Profile_photo.php:218 -#: ../../addon/openclipatar/openclipatar.php:298 -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:225 -#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:197 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:214 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:307 -#: ../../Zotlabs/Module/Cover_photo.php:322 -msgid "Photo not available." -msgstr "Foto non disponibile." - -#: ../../Zotlabs/Module/Profile_photo.php:455 -#: ../../Zotlabs/Module/Cover_photo.php:359 -msgid "Upload File:" -msgstr "Carica un file:" - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Use Photo for Profile" -msgstr "Usa la foto per il profilo" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use" -msgstr "Usa" - -#: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:364 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "Use a photo from your albums" -msgstr "Usa una foto presa dai tuoi album" - -#: ../../Zotlabs/Module/Profile_photo.php:473 -#: ../../Zotlabs/Module/Cover_photo.php:376 -msgid "Select existing photo" -msgstr "Seleziona una foto esistente" - -#: ../../Zotlabs/Module/Profile_photo.php:492 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:394 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." - -#: ../../Zotlabs/Module/Profile_photo.php:495 -#: ../../Zotlabs/Module/Cover_photo.php:396 -msgid "Done Editing" -msgstr "Modifica terminata" - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "Assente" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "Online" - -#: ../../Zotlabs/Module/Item.php:194 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../Zotlabs/Module/Item.php:477 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." - -#: ../../Zotlabs/Module/Item.php:874 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." - -#: ../../Zotlabs/Module/Item.php:1019 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." - -#: ../../Zotlabs/Module/Item.php:1055 -msgid "Your comment is awaiting approval." -msgstr "Il tuo contenuto è in attesa di approvazione." - -#: ../../Zotlabs/Module/Item.php:1160 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." - -#: ../../Zotlabs/Module/Item.php:1189 -#, 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:1196 -#, 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/Ping.php:330 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" - -#: ../../Zotlabs/Module/Ping.php:383 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" - -#: ../../Zotlabs/Module/Ping.php:407 -msgid "requires approval" -msgstr "richiede approvazione" - -#: ../../Zotlabs/Module/Ping.php:417 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:435 -msgid "[today]" -msgstr "[oggi]" - -#: ../../Zotlabs/Module/Ping.php:444 -msgid "posted an event" -msgstr "ha creato un evento" - -#: ../../Zotlabs/Module/Ping.php:477 -msgid "shared a file with you" -msgstr "ha condiviso un file con te" - -#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 -msgid "Invalid item." -msgstr "Elemento non valido." - -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 -#: ../../Zotlabs/Module/Display.php:175 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 -#: ../../include/help.php:81 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: ../../Zotlabs/Module/Page.php:173 -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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "Contatto aggiornato." - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." - -#: ../../Zotlabs/Module/Connedit.php:302 -msgid "is now connected to" -msgstr "ha come nuovo contatto" - -#: ../../Zotlabs/Module/Connedit.php:427 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." - -#: ../../Zotlabs/Module/Connedit.php:475 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." - -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." - -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 -#: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:114 -msgid "View Profile" -msgstr "Profilo" - -#: ../../Zotlabs/Module/Connedit.php:597 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" - -#: ../../Zotlabs/Module/Connedit.php:601 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" - -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Photo" -msgstr "Ricarica la foto" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated photo" -msgstr "Aggiorna la foto" - -#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 -msgid "Recent Activity" -msgstr "Attività recenti" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" - -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Unignore" -msgstr "Non ignorare" - -#: ../../Zotlabs/Module/Connedit.php:633 -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:634 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Unarchive" -msgstr "Non archiviare" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Archive" -msgstr "Archivia" - -#: ../../Zotlabs/Module/Connedit.php:641 -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:642 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Unhide" -msgstr "Non nascondere" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Hide" -msgstr "Nascondi" - -#: ../../Zotlabs/Module/Connedit.php:649 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" - -#: ../../Zotlabs/Module/Connedit.php:650 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" - -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "Delete this connection" -msgstr "Elimina questo contatto" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Fetch Vcard" -msgstr "Aggiorna la Vcard" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Fetch electronic calling card for this connection" -msgstr "Scarica la scheda con le informazioni di questo contatto" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Open Individual Permissions section by default" -msgstr "Apri automaticamente la sezione Permessi individuali" - -#: ../../Zotlabs/Module/Connedit.php:702 -msgid "Affinity" -msgstr "Affinità" - -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Open Set Affinity section by default" -msgstr "Apri la sezione Imposta affinità per default" - -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 -msgid "Me" -msgstr "Me" - -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 -msgid "Family" -msgstr "Famiglia" - -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 -msgid "Acquaintances" -msgstr "Conoscenti" - -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "Filter" -msgstr "Filtra" - -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Open Custom Filter section by default" -msgstr "Apri automaticamente la sezione con i Filtri personalizzati" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Approve this connection" -msgstr "Approva questo contatto" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Set Affinity" -msgstr "Scegli l'affinità" - -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" - -#: ../../Zotlabs/Module/Connedit.php:790 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" - -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This connection is unreachable from this location." -msgstr "Questo contatto non è raggiungibile dal server in uso" - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "This connection may be unreachable from other channel locations." -msgstr "Questo contatto potrebbe non essere raggiungibile da altri canali" - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Location independence is not supported by their network." -msgstr "Nella loro rete la location independence non è supportata." - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "Il contatto indicato non è raggiungibile. Nella loro rete la location independence non è supportata." - -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -#: ../../Zotlabs/Widget/Settings_menu.php:117 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" - -#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" - -#: ../../Zotlabs/Module/Connedit.php:851 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -msgid "Permission role" -msgstr "Ruolo" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 -msgid "Loading" -msgstr "Sto caricando" - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 -msgid "Add permission role" -msgstr "Aggiungi un ruolo" - -#: ../../Zotlabs/Module/Connedit.php:860 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" - -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Available locations:" -msgstr "Indirizzi disponibili" - -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 -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:867 -msgid "Connection Tools" -msgstr "Gestione del contatto" - -#: ../../Zotlabs/Module/Connedit.php:869 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" - -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" - -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" - -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" - -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Custom Filter" -msgstr "Filtro personalizzato" - -#: ../../Zotlabs/Module/Connedit.php:875 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" - -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -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:876 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" - -#: ../../Zotlabs/Module/Connedit.php:888 -#, 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:895 -msgid "" -"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." -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:896 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "Details" -msgstr "Dettagli" - -#: ../../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:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 -#: ../../include/conversation.php:1435 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" - -#: ../../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:250 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "Expiration" -msgstr "Scadenza" - -#: ../../Zotlabs/Module/Chat.php:260 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 -#: ../../include/conversation.php:1834 ../../include/nav.php:401 -msgid "Photos" -msgstr "Foto" - -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 -#: ../../include/nav.php:409 -msgid "Files" -msgstr "Archivio file" - -#: ../../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:2423 -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: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/Layouts.php:184 ../../include/text.php:2424 -msgid "Layouts" -msgstr "Layout" - -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 -#: ../../include/nav.php:176 ../../include/nav.php:280 -#: ../../include/help.php:68 ../../include/help.php:74 -msgid "Help" -msgstr "Guida" - -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" - -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" -msgstr "Descrizione del layout" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "Scarica il file PDL" - -#: ../../Zotlabs/Module/Cloud.php:120 -msgid "Please refresh page" -msgstr "Per favore ricarica la pagina" - -#: ../../Zotlabs/Module/Cloud.php:123 -msgid "Unknown error" -msgstr "Errore sconosciuto" - -#: ../../Zotlabs/Module/Email_validation.php:24 -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "Verifica del token fallita" - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "È richiesta una verifica della mail" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "Un token di verifica è stato spedito al tuo indirizzo email [%s]. Inserisci il token qui per completare la verifica dell'account. Per favore attendi qualche minuti e controlla lo spam se non vedi il messaggio." - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "Reinvia la mail" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "Token di validazione" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "Post non trovato." - -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:352 -msgid "post" -msgstr "il post" - -#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2013 -msgid "comment" -msgstr "il commento" - -#: ../../Zotlabs/Module/Tagger.php:119 -#, 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/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/Defperms.php:239 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Se abilitato, le richieste di contatto saranno approvate automaticamente" - -#: ../../Zotlabs/Module/Defperms.php:246 -msgid "Automatic approval settings" -msgstr "Impostazioni di approvazione automatica" - -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "" - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "Applicazione sconosciuta" - -#: ../../Zotlabs/Module/Authorize.php:22 -msgid "Authorize" -msgstr "Autorizza" - -#: ../../Zotlabs/Module/Authorize.php:23 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "Autorizzi la app %s ad accedere ai dati del tuo canale?" - -#: ../../Zotlabs/Module/Authorize.php:25 -msgid "Allow" -msgstr "Autorizza" - -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4181 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." - -#: ../../Zotlabs/Module/Group.php:92 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" - -#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." - -#: ../../Zotlabs/Module/Group.php:115 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." - -#: ../../Zotlabs/Module/Group.php:185 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" - -#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 -msgid "Members" -msgstr "Membri" - -#: ../../Zotlabs/Module/Group.php:201 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" - -#: ../../Zotlabs/Module/Group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "Stato sentimentale" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "Partner affettivo" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "\"Mi piace\"" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "\"Non mi piace\"" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "Lavoro/impiego" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "Religione" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "Orientamento politico" - -#: ../../Zotlabs/Module/Profiles.php:486 -#: ../../addon/openid/MysqlProvider.php:74 -msgid "Gender" -msgstr "Sesso" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "Home page" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "Interessi" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "Guarda questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1319 -msgid "Edit visibility" -msgstr "Cambia la visibilità" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "Gestione del profilo" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" - -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" - -#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 -msgid "Personal" -msgstr "Personali" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "Relazione" - -#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../include/datetime.php:58 -msgid "Miscellaneous" -msgstr "Altro" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "Sesso" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "Stato civile" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "Preferenze sessuali" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "Nome del profilo" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "Il tuo nome completo" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "Titolo/descrizione" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "Località" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "Regione/stato" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "CAP" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "dal (data)" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." - -#: ../../Zotlabs/Module/Profiles.php:767 -#: ../../addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" -msgstr "Indirizzo home page" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "Città dove vivo" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "Orientamento politico" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "Orientamento religioso" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "Televisione" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "Amore" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "Scuola/educazione" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "Contatti e social network" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "I miei altri canali" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "Comunicazioni" - -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 -msgid "Profile Image" -msgstr "Immagine del profilo" - -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 -#: ../../include/nav.php:117 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "Questa pagina è accessibile solo agli utenti registrati" - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "Benvenuto" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "Vorresti farlo?" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "Per favore metti questa pagina nei preferiti se vuoi ritornarci in futuro" - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "Carica una foto per il profilo" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "Carica una foto di copertina" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "Modifica il tuo profilo predefinito" - -#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 -msgid "View friend suggestions" -msgstr "Guarda i suggerimenti di amicizia" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "Guarda l'elenco dei canali" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "Guarda/modifica le impostazioni del tuo canale" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "Guarda la documentazione del sito o del progetto" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "Visita la pagina iniziale del tuo canale" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "Guarda i tuoi contatti e/o aggiungine qualcuno di cui hai l'indirizzo" - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "Guarda il tuo flusso personale (potrebbe essere vuoto finché non aggiungi connessioni)" - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "Vedi il flusso pubblico. Attenzione: contenuti non moderati" - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "Link alla pagina" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" - -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "Canale delegato" - -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 -#: ../../include/features.php:123 ../../include/nav.php:458 -msgid "Cards" -msgstr "Card" - -#: ../../Zotlabs/Module/Cards.php:99 -msgid "Add Card" -msgstr "Aggiungi card" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" - -#: ../../Zotlabs/Module/Siteinfo.php:18 -msgid "About this site" -msgstr "Informazioni su questo sito" - -#: ../../Zotlabs/Module/Siteinfo.php:19 -msgid "Site Name" -msgstr "Nome del sito" - -#: ../../Zotlabs/Module/Siteinfo.php:23 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Software and Project information" -msgstr "Informazioni sul software e sul progetto" - -#: ../../Zotlabs/Module/Siteinfo.php:27 -msgid "This site is powered by $Projectname" -msgstr "Questo sito è costruito con $Projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "Project homepage" -msgstr "Homepage del progetto" - -#: ../../Zotlabs/Module/Siteinfo.php:32 -msgid "Developer homepage" -msgstr "Homepege dello sviluppatore" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" - -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:1082 -msgid "Ratings" -msgstr "Valutazioni" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sito web:" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" - -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" - -#: ../../Zotlabs/Module/Webpages.php:55 -msgid "Import selected" -msgstr "Importa i selezionati" - -#: ../../Zotlabs/Module/Webpages.php:78 -msgid "Export Webpage Elements" -msgstr "Esporta gli elementi della pagina web" - -#: ../../Zotlabs/Module/Webpages.php:79 -msgid "Export selected" -msgstr "Esporta i selezionati" - -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 -#: ../../include/conversation.php:1915 ../../include/nav.php:481 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Actions" -msgstr "Azioni" - -#: ../../Zotlabs/Module/Webpages.php:249 -msgid "Page Link" -msgstr "Link alla pagina" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Titolo della pagina" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Tipo di file non valido." - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Importazione completata." - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account" -" password." -msgstr "Non è possibile cambiare il nome del canale entro le 48 dal cambio della password dell'account." - -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 -#: ../../include/channel.php:599 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 -#: ../../include/channel.php:604 -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." - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "Cambia il nome/indirizzo del canale" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "Tutti i contatti su altre reti saranno persi!" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "Modifica post" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "Messaggio non valido" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "nessun risultato" - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "in coda" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "inviato" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "aggiornato" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "aggiornamento ignorato" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "permessi non sufficienti" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "Destinatario non trovato" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "messaggio recapitato" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" - -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Options" -msgstr "Opzioni" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "Reinvia" - -#: ../../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 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 -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 "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" - -#: ../../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/Like.php:54 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" - -#: ../../Zotlabs/Module/Like.php:59 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." - -#: ../../Zotlabs/Module/Like.php:60 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." - -#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 -msgid "channel" -msgstr "il canale" - -#: ../../Zotlabs/Module/Like.php:150 -msgid "thing" -msgstr "Oggetto" - -#: ../../Zotlabs/Module/Like.php:196 -msgid "Channel unavailable." -msgstr "Canale non trovato." - -#: ../../Zotlabs/Module/Like.php:244 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." - -#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 -#: ../../addon/pubcrawl/as.php:1423 ../../include/conversation.php:160 -#, 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:440 ../../addon/pubcrawl/as.php:1425 -#: ../../include/conversation.php:163 -#, 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:442 -#, 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:444 -#, 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:446 -#, 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:448 ../../addon/diaspora/Receiver.php:2072 -#, 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:450 ../../addon/diaspora/Receiver.php:2074 -#, 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:452 ../../addon/diaspora/Receiver.php:2076 -#, 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:564 -msgid "Action completed." -msgstr "Comando completato." - -#: ../../Zotlabs/Module/Like.php:565 -msgid "Thank you." -msgstr "Grazie." - -#: ../../Zotlabs/Module/Directory.php:106 -msgid "No default suggestions were found." -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:255 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../Zotlabs/Module/Directory.php:266 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../Zotlabs/Module/Directory.php:268 -msgid "Status: " -msgstr "Stato:" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 -msgid "Age:" -msgstr "Età:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 -#: ../../include/event.php:54 ../../include/event.php:86 -msgid "Location:" -msgstr "Luogo:" - -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 -msgid "Hometown:" -msgstr "Città dove vivo:" - -#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 -msgid "About:" -msgstr "Informazioni:" - -#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1052 ../../include/channel.php:1376 -#: ../../include/connections.php:110 -msgid "Connect" -msgstr "Aggiungi" - -#: ../../Zotlabs/Module/Directory.php:339 -msgid "Public Forum:" -msgstr "Forum pubblico:" - -#: ../../Zotlabs/Module/Directory.php:342 -msgid "Keywords: " -msgstr "Parole chiave:" - -#: ../../Zotlabs/Module/Directory.php:345 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" - -#: ../../Zotlabs/Module/Directory.php:347 -msgid "Common connections (estimated):" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Finding:" -msgstr "Ricerca:" - -#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "next page" -msgstr "pagina successiva" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "previous page" -msgstr "pagina precedente" - -#: ../../Zotlabs/Module/Directory.php:408 -msgid "Sort options" -msgstr "Opzioni di ordinamento" - -#: ../../Zotlabs/Module/Directory.php:409 -msgid "Alphabetic" -msgstr "Alfabetico" - -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" - -#: ../../Zotlabs/Module/Directory.php:429 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" - -#: ../../Zotlabs/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 ../../Zotlabs/Widget/Suggestions.php:46 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../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/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../Zotlabs/Module/Mail.php:105 -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:160 -msgid "Messages" -msgstr "Messaggi" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "A:" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -#: ../../include/conversation.php:1385 -msgid "Attach file" -msgstr "Allega file" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "Invia" - -#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../include/conversation.php:1430 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" - -#: ../../Zotlabs/Module/Mail.php:416 -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:420 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 -msgid "Public Hubs" -msgstr "Hub pubblici" - -#: ../../Zotlabs/Module/Pubsites.php:27 -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 fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "Valuta" - -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 -msgid "webpage" -msgstr "pagina web" - -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 -msgid "block" -msgstr "block" - -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 -msgid "layout" -msgstr "layout" - -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 -msgid "menu" -msgstr "menu" - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Salva segnalibro" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del segnalibro" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 -msgid "Save to Folder" -msgstr "Salva nella cartella" - -#: ../../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/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "" - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." - -#: ../../Zotlabs/Module/Register.php:202 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." - -#: ../../Zotlabs/Module/Register.php:212 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: ../../Zotlabs/Module/Register.php:238 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" - -#: ../../Zotlabs/Module/Register.php:245 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "" - -#: ../../Zotlabs/Module/Register.php:250 -msgid "Your email address" -msgstr "Il tuo indirizzo email" - -#: ../../Zotlabs/Module/Register.php:251 -msgid "Choose a password" -msgstr "Scegli una password" - -#: ../../Zotlabs/Module/Register.php:252 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" - -#: ../../Zotlabs/Module/Register.php:253 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:258 -msgid "yes" -msgstr "sì" - -#: ../../Zotlabs/Module/Register.php:274 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." - -#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 -#: ../../include/nav.php:164 -msgid "Register" -msgstr "Registrati" - -#: ../../Zotlabs/Module/Register.php:287 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "" - -#: ../../Zotlabs/Module/Cover_photo.php:136 -#: ../../Zotlabs/Module/Cover_photo.php:186 -msgid "Cover Photos" -msgstr "Copertine del canale" - -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 -msgid "female" -msgstr "femmina" - -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" - -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 -msgid "male" -msgstr "maschio" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" - -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" - -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 -msgid "cover photo" -msgstr "Copertina del canale" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -msgid "Change Cover Photo" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "Ricerca nella guida" - -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 -#: ../../include/nav.php:391 -msgid "About" -msgstr "Informazioni" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:394 -msgid "Article" -msgstr "" - -#: ../../Zotlabs/Module/Display.php:446 -msgid "Item has been removed." -msgstr "" - -#: ../../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/Network.php:100 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" - -#: ../../Zotlabs/Module/Network.php:142 -msgid "No such channel" -msgstr "Canale sconosciuto" - -#: ../../Zotlabs/Module/Network.php:147 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:159 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../Zotlabs/Module/Network.php:229 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" - -#: ../../Zotlabs/Module/Network.php:238 -msgid "Privacy group: " -msgstr "Gruppo di canali:" - -#: ../../Zotlabs/Module/Network.php:265 -msgid "Invalid connection." -msgstr "Contatto non valido." - -#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 -msgid "Invalid channel." -msgstr "" - -#: ../../Zotlabs/Module/Acl.php:361 -msgid "network" -msgstr "rete" - -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" - -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." -msgstr "Permesso negato." - -#: ../../Zotlabs/Module/Filestorage.php:95 -msgid "File not found." -msgstr "File non trovato." - -#: ../../Zotlabs/Module/Filestorage.php:142 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" - -#: ../../Zotlabs/Module/Filestorage.php:154 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" - -#: ../../Zotlabs/Module/Filestorage.php:155 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" - -#: ../../Zotlabs/Module/Filestorage.php:158 -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:159 -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:161 -msgid "Share this file" -msgstr "Condividi questo file" - -#: ../../Zotlabs/Module/Filestorage.php:162 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" - -#: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:397 -msgid "Show in your contacts shared folder" -msgstr "" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "Nessun contatto in comune." - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "" - -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "Elenco contatti" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "Account bloccati" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:112 -msgid "Clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:118 -msgid "Message queues" -msgstr "Coda messaggi in uscita" - -#: ../../Zotlabs/Module/Admin.php:132 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" - -#: ../../Zotlabs/Module/Admin.php:137 -msgid "Summary" -msgstr "Riepilogo" - -#: ../../Zotlabs/Module/Admin.php:140 -msgid "Registered accounts" -msgstr "Account creati" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" - -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Registered channels" -msgstr "Canali creati" - -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Version" -msgstr "Versione" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" - -#: ../../Zotlabs/Module/Rate.php:159 -#, 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:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "" - -#: ../../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:108 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" - -#: ../../Zotlabs/Module/Lostpass.php:68 -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:91 ../../boot.php:1598 -msgid "Password Reset" -msgstr "Reimposta la password" - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "clicca qui per accedere" - -#: ../../Zotlabs/Module/Lostpass.php:96 -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:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "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:132 -msgid "Email Address" -msgstr "Indirizzo email" - -#: ../../Zotlabs/Module/Notifications.php:62 -#: ../../Zotlabs/Lib/ThreadItem.php:408 -msgid "Mark all seen" -msgstr "Marca tutto come letto" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Site Admin" -msgstr "Amministrazione sito" - -#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "Segnala il bug" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "View Bookmarks" -msgstr "Vedi i segnalibri" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "My Chatrooms" -msgstr "Le mie aree chat" - -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Firefox Share" -msgstr "Firefox Share" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Remote Diagnostics" -msgstr "Diagnostica remota" - -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 -msgid "Suggest Channels" -msgstr "Suggerisci canali" - -#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Login" -msgstr "Accedi" - -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Activity" -msgstr "Attività" - -#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 -#: ../../include/features.php:96 ../../include/nav.php:497 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Lib/Apps.php:246 -msgid "Channel Home" -msgstr "Bacheca del canale" - -#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 -msgid "Events" -msgstr "Eventi" - -#: ../../Zotlabs/Lib/Apps.php:250 -msgid "Directory" -msgstr "Elenchi pubblici dei canali" - -#: ../../Zotlabs/Lib/Apps.php:252 -msgid "Mail" -msgstr "Messaggi" - -#: ../../Zotlabs/Lib/Apps.php:255 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:257 -msgid "Probe" -msgstr "Diagnostica" - -#: ../../Zotlabs/Lib/Apps.php:258 -msgid "Suggest" -msgstr "Suggerisci" - -#: ../../Zotl -msgid "This email was sent by %1$s at %2$s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:120 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:124 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Notifica] Nuovo messaggio su %s" - -#: ../../Zotlabs/Lib/Enotify.php:126 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:127 -msgid "a private message" -msgstr "un messaggio privato" - -#: ../../Zotlabs/Lib/Enotify.php:128 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." - -#: ../../Zotlabs/Lib/Enotify.php:141 -msgid "commented on" -msgstr "ha commentato" - -#: ../../Zotlabs/Lib/Enotify.php:152 -msgid "liked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "disliked" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:198 -#, php-format -msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:207 -#, php-format -msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:217 -#, php-format -msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notifica] Nuovo commento di %2$s alla conversazione #%1$d" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 -#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 -#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, a %2$s [zrl=%3$s]tuo %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1$d di %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:315 -#, php-format -msgid "%1$s, %2$s liked an item/conversation you created." -msgstr "%1$s, a %2$s piace l'elemento/conversazione che hai creato" - -#: ../../Zotlabs/Lib/Enotify.php:326 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Notifica] %s ha scritto sulla tua bacheca" - -#: ../../Zotlabs/Lib/Enotify.php:328 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:330 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Notifica] %s ti ha taggato" - -#: ../../Zotlabs/Lib/Enotify.php:355 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:356 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:368 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Notifica] %1$s ti ha mandato un poke" - -#: ../../Zotlabs/Lib/Enotify.php:369 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:370 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:386 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Notifica] %s ha taggato il tuo post" - -#: ../../Zotlabs/Lib/Enotify.php:387 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:400 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Notifica] Hai una richiesta di amicizia" - -#: ../../Zotlabs/Lib/Enotify.php:401 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" - -#: ../../Zotlabs/Lib/Enotify.php:408 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." - -#: ../../Zotlabs/Lib/Enotify.php:415 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Notifica] Ti è stato suggerito un amico" - -#: ../../Zotlabs/Lib/Enotify.php:416 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:417 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." - -#: ../../Zotlabs/Lib/Enotify.php:423 -msgid "Name:" -msgstr "Nome:" - -#: ../../Zotlabs/Lib/Enotify.php:424 -msgid "Photo:" -msgstr "Foto:" - -#: ../../Zotlabs/Lib/Enotify.php:427 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." - -#: ../../Zotlabs/Lib/Enotify.php:647 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Notifica]" - -#: ../../Zotlabs/Lib/Enotify.php:815 -msgid "created a new post" -msgstr "Ha creato un nuovo post" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" - -#: ../../Zotlabs/Lib/Enotify.php:823 -#, php-format -msgid "edited a post dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:827 -#, php-format -msgid "edited a comment dated %s" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWiki.php:151 -msgid "Wiki updated successfully" -msgstr "" - -#: ../../Zotlabs/Lib/NativeWiki.php:198 -msgid "Wiki files deleted successfully" -msgstr "" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "Errore di aggiornamento su %s" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s: aggiornamento fallito. Controlla i log di errore." - -#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 -msgid "Select" -msgstr "Scegli" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will attend" -msgstr "Parteciperò" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I will not attend" -msgstr "Non parteciperò" - -#: ../../Zotlabs/Lib/ThreadItem.php:172 -msgid "I might attend" -msgstr "Forse parteciperò" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I agree" -msgstr "Sono d'accordo" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I disagree" -msgstr "Non sono d'accordo" - -#: ../../Zotlabs/Lib/ThreadItem.php:182 -msgid "I abstain" -msgstr "Mi astengo" - -#: ../../Zotlabs/Lib/ThreadItem.php:238 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" - -#: ../../Zotlabs/Lib/ThreadItem.php:239 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" - -#: ../../Zotlabs/Lib/ThreadItem.php:240 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" - -#: ../../Zotlabs/Lib/ThreadItem.php:244 -msgid "starred" -msgstr "preferito" - -#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" - -#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" - -#: ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "Add Tag" -msgstr "Aggiungi un tag" - -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 -msgid "like" -msgstr "mi piace" - -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 -msgid "dislike" -msgstr "non mi piace" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "Share This" -msgstr "Condividi" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "share" -msgstr "condividi" - -#: ../../Zotlabs/Lib/ThreadItem.php:295 -msgid "Delivery Report" -msgstr "Rapporto di trasmissione" - -#: ../../Zotlabs/Lib/ThreadItem.php:313 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 -msgid "to" -msgstr "a" - -#: ../../Zotlabs/Lib/ThreadItem.php:348 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:349 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../Zotlabs/Lib/ThreadItem.php:350 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" - -#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 -#, php-format -msgid "from %s" -msgstr "da %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:374 -msgid "Attend" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:375 -msgid "Attendance Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:376 -msgid "Vote" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:377 -msgid "Voting Options" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../addon/bookmarker/bookmarker.php:38 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" - -#: ../../Zotlabs/Lib/ThreadItem.php:399 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" - -#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 -msgid "This is an unsaved preview" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" - -#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 -msgid "Bold" -msgstr "Grassetto" - -#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 -msgid "Italic" -msgstr "Corsivo" - -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 -msgid "Quote" -msgstr "Citazione" - -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 -msgid "Code" -msgstr "Codice" - -#: ../../Zotlabs/Lib/ThreadItem.php:756 -msgid "Image" -msgstr "Immagine" - -#: ../../Zotlabs/Lib/ThreadItem.php:757 -msgid "Attach File" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:758 -msgid "Insert Link" -msgstr "Collegamento" - -#: ../../Zotlabs/Lib/ThreadItem.php:759 -msgid "Video" -msgstr "Video" - -#: ../../Zotlabs/Lib/ThreadItem.php:769 -msgid "Your full name (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:770 -msgid "Your email address (required)" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:771 -msgid "Your website URL (optional)" -msgstr "" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo." - -#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 -#: ../../addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 -msgid "parent" -msgstr "cartella superiore" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 -msgid "Collection" -msgstr "Cartella" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Principale" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Rubrica" - -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 -#: ../../include/nav.php:423 -msgid "Calendar" -msgstr "Calendario" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Appuntamenti ricevuti" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Appuntamenti inviati" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "Totale" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "Condiviso" - -#: ../../Zotlabs/Storage/Browser.php:353 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Stai usando %1$s dello spazio disponibile per i tuoi file." - -#: ../../Zotlabs/Storage/Browser.php:358 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Stai usando %1$s di %2$s che hai a disposizione per i file. (%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:369 -msgid "WARNING:" -msgstr "ATTENZIONE:" - -#: ../../Zotlabs/Storage/Browser.php:381 -msgid "Create new folder" -msgstr "Nuova cartella" - -#: ../../Zotlabs/Storage/Browser.php:383 -msgid "Upload file" -msgstr "Carica un file" - -#: ../../Zotlabs/Storage/Browser.php:396 -msgid "Drop files here to immediately upload" -msgstr "Trascina i file qui per caricarli al volo" - -#: ../../Zotlabs/Widget/Forums.php:100 -msgid "Forums" -msgstr "Forum" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "" - -#: ../../Zotlabs/Widget/Appcategories.php:40 -#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 -#: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 -#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 -#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 -msgid "Categories" -msgstr "Categorie" - -#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 -msgid "Everything" -msgstr "Tutto" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "Gestione eventi" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "Esporta calendario" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "Importa calendario" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "Vista combinata" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "Inviati" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1864 ../../include/conversation.php:1867 -#: ../../include/nav.php:434 ../../include/nav.php:437 -msgid "Chatrooms" -msgstr "Chat" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "Riepilogo" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "Valutazione" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "Valutami" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "Attività" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "Indirizzo del canale" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Per esempio: bob@example.com, https://example.com/barbara" - -#: ../../Zotlabs/Widget/Wiki_list.php:15 ../../addon/gitwiki/gitwiki.php:95 -msgid "Wiki List" -msgstr "Elenco wiki" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "Archivi" - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "Ricevuti" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "Inviati" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "Conversazioni" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "Partecipanti" - -#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 -msgid "photo/image" -msgstr "foto/immagine" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 -msgid "add" -msgstr "aggiungi" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Note" - -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:89 ../../addon/gitwiki/gitwiki.php:81 -msgid "Add new page" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_pages.php:83 ../../addon/gitwiki/gitwiki.php:76 -msgid "Wiki Pages" -msgstr "Pagine wiki" - -#: ../../Zotlabs/Widget/Wiki_pages.php:94 ../../addon/gitwiki/gitwiki.php:82 -msgid "Page name" -msgstr "" - -#: ../../Zotlabs/Widget/Affinity.php:45 -msgid "Refresh" -msgstr "Aggiorna" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "Attività" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "Altro..." - -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:443 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "Profile Creation" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Upload profile photo" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:36 -msgid "Upload cover photo" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "Find and Connect with others" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:44 -msgid "Manage your connections" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Communicate" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:49 -msgid "View your channel homepage" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:50 -msgid "View your network stream" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:56 -msgid "Documentation" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:67 -msgid "View public stream. Warning: not moderated" -msgstr "" - -#: ../../Zotlabs/Widget/Newmember.php:71 -msgid "New Member Links" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "Coda di attesa" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "Plugin" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "Il tuo account" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "Impostazioni del canale" - -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Funzionalità opzionali" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Display settings" -msgstr "Aspetto" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "Manage locations" -msgstr "Gestione cloni del tuo canale" - -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Esporta il canale" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "Connected apps" -msgstr "App connesse" - -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 -msgid "Permission Groups" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:117 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "Nuova attività nella tua rete" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:141 -msgid "Show new posts only" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:142 -msgid "Filter by name" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:138 -msgid "Mark all notifications seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "Avvisi" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:121 -msgid "New Registrations" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:122 -msgid "New Registrations Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "Public Stream Notifications" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:135 -msgid "View the public stream" -msgstr "" - -#: ../../Zotlabs/Widget/Notifications.php:150 -msgid "Sorry, you have got no notifications at the moment" -msgstr "" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "" - -#: ../../boot.php:1562 -msgid "Create an account to access services and applications" -msgstr "" - -#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 -#: ../../include/nav.php:159 -msgid "Logout" -msgstr "Esci" - -#: ../../boot.php:1585 -msgid "Login/Email" -msgstr "Login/Email" - -#: ../../boot.php:1586 -msgid "Password" -msgstr "Password" - -#: ../../boot.php:1587 -msgid "Remember me" -msgstr "Resta connesso" - -#: ../../boot.php:1590 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" - -#: ../../boot.php:2347 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "" - -#: ../../boot.php:2352 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." - -#: ../../boot.php:2468 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "" - -#: ../../boot.php:2473 -msgid "Cron/Scheduled tasks not running." -msgstr "Processi cron non avviati." - -#: ../../boot.php:2474 ../../include/datetime.php:232 -msgid "never" -msgstr "mai" - -#: ../../view/theme/redbasic_c/php/config.php:16 -#: ../../view/theme/redbasic_c/php/config.php:19 -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "Focus (predefinito)" - -#: ../../view/theme/redbasic_c/php/config.php:99 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "Impostazioni del tema" - -#: ../../view/theme/redbasic_c/php/config.php:100 -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "Barra di navigazione ristretta" - -#: ../../view/theme/redbasic_c/php/config.php:101 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "Barra di navigazione: Colore di sfondo" - -#: ../../view/theme/redbasic_c/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "Barra di navigazione: Colore delle icone" - -#: ../../view/theme/redbasic_c/php/config.php:103 -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "Barra di navigazione: Colore dell'icona attiva" - -#: ../../view/theme/redbasic_c/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "Colore del font del banner" - -#: ../../view/theme/redbasic_c/php/config.php:106 -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "Colore di sfondo" - -#: ../../view/theme/redbasic_c/php/config.php:107 -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "Immagine di sfondo" - -#: ../../view/theme/redbasic_c/php/config.php:108 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "Colore di sfondo degli oggetti" - -#: ../../view/theme/redbasic_c/php/config.php:109 -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "Colore di sfondo dei commenti" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "Dimensione font per tutto il sito" - -#: ../../view/theme/redbasic_c/php/config.php:110 -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "" - -#: ../../view/theme/redbasic_c/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "Colore del carattere per post e commenti" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "Raggio degli angoli stondati" - -#: ../../view/theme/redbasic_c/php/config.php:112 -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "Esempio: 4px" - -#: ../../view/theme/redbasic_c/php/config.php:113 -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "Profondità dell'ombra delle foto" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "Larghezza massima dell'area dei contenuti in pixel" - -#: ../../view/theme/redbasic_c/php/config.php:114 -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "Lascia vuoto per usare il valore predefinito" - -#: ../../view/theme/redbasic_c/php/config.php:115 -msgid "Left align page content" -msgstr "Allinea a sinistra il contenuto della pagina" - -#: ../../view/theme/redbasic_c/php/config.php:116 -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "Dimensione foto dell'autore della conversazione" - -#: ../../view/theme/redbasic_c/php/config.php:117 -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "Dimensione foto dei partecipanti alla conversazione" - -#: ../../addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "Errore nella cancellazione della tabella" - -#: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:779 -msgid "Submit Settings" -msgstr "Invia impostazioni" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with" -" the other members, tap the GPS control. When your location is discovered, a" -" red dot will appear and others will be able to see you on the map." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "Incontriamoci qui" - -#: ../../addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "Nuovo segnaposto" - -#: ../../addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "Modifica segnaposto" - -#: ../../addon/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "Nuova identità" - -#: ../../addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "Elimina segnaposto" - -#: ../../addon/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "Elimina membro" - -#: ../../addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius" -" of you.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:180 -#: ../../addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "distanza" - -#: ../../addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:182 -#: ../../addon/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the" -" marker location.

Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "Nota per il promemoria" - -#: ../../addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "" - -#: ../../addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or" -" share their own locations with the group." -msgstr "" - -#: ../../addon/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "" - -#: ../../addon/skeleton/skeleton.php:61 -msgid "A setting" -msgstr "" - -#: ../../addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:247 -msgid "GNU-Social Protocol Settings updated." -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:266 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:269 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:273 -msgid "GNU-Social Protocol Settings" -msgstr "" - -#: ../../addon/gnusoc/gnusoc.php:464 -msgid "Follow" -msgstr "Segui" - -#: ../../addon/gnusoc/gnusoc.php:467 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "%1$s sta ora seguendo %2$s" - -#: ../../addon/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "" - -#: ../../addon/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "" - -#: ../../addon/planets/planets.php:153 -msgid "Planets Settings" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:50 -#: ../../addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 -#: ../../include/nav.php:119 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../addon/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:62 -#: ../../addon/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "Caricato da:" - -#: ../../addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "Usa questa immagine" - -#: ../../addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "" - -#: ../../addon/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "Termine di ricerca" - -#: ../../addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "Errore sconosciuto. Per favore riprova più tardi." - -#: ../../addon/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "" - -#: ../../addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "Marca le foto per adulti" - -#: ../../addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "Permetti di nascondere le foto inappropriate nella visualizzazione degli album" - -#: ../../addon/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "" - -#: ../../addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "" - -#: ../../addon/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "" - -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "" - -#: ../../addon/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "" - -#: ../../addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "" - -#: ../../addon/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "" - -#: ../../addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "" - -#: ../../addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "" - -#: ../../addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "" - -#: ../../addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "" - -#: ../../addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." -msgstr "" - -#: ../../addon/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and" -" can thereby be used as a general purpose content filter." -msgstr "" - -#: ../../addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "" - -#: ../../addon/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "" - -#: ../../addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "" - -#: ../../addon/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "" - -#: ../../addon/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "" - -#: ../../addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "" - -#: ../../addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "" - -#: ../../addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "Metti un like su Hubzilla" - -#: ../../addon/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "" - -#: ../../addon/redphotos/redphotos.php:131 -#: ../../addon/redfiles/redfiles.php:121 -msgid "Redmatrix Server base URL" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:132 -#: ../../addon/redfiles/redfiles.php:122 -msgid "Redmatrix Login Username" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:133 -#: ../../addon/redfiles/redfiles.php:123 -msgid "Redmatrix Login Password" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "" - -#: ../../addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "" - -#: ../../addon/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "" - -#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 -msgid "Comma separated list" -msgstr "" - -#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "" - -#: ../../addon/irc/irc.php:53 -msgid "IRC Settings" -msgstr "" - -#: ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "" - -#: ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "" - -#: ../../addon/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../addon/openid/openid.php:49 -msgid "The error message was:" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 -msgid "Nickname" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "" - -#: ../../addon/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "" - -#: ../../addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1481 -msgid "Male" -msgstr "Maschio" - -#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1479 -msgid "Female" -msgstr "Femmina" - -#: ../../addon/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "" - -#: ../../addon/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "" - -#: ../../addon/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "" - -#: ../../addon/randpost/randpost.php:100 -msgid "<blush>" -msgstr "" - -#: ../../addon/startpage/startpage.php:109 -msgid "Page to load after login" -msgstr "" - -#: ../../addon/startpage/startpage.php:109 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "" - -#: ../../addon/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patent" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -msgid "patented" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hug" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murder" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worship" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insult" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praise" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -msgid "praised" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "eat" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -msgid "ate" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glare" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "" - -#: ../../addon/diaspora/diaspora.php:778 -msgid "Diaspora Protocol Settings updated." -msgstr "" - -#: ../../addon/diaspora/diaspora.php:797 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../addon/diaspora/diaspora.php:800 -msgid "Enable the Diaspora protocol for this channel" -msgstr "" - -#: ../../addon/diaspora/diaspora.php:804 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "" - -#: ../../addon/diaspora/diaspora.php:808 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "" - -#: ../../addon/diaspora/diaspora.php:812 -msgid "" -"Sign and forward posts and comments with no existing Diaspora signature" -msgstr "" - -#: ../../addon/diaspora/diaspora.php:817 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "" - -#: ../../addon/diaspora/diaspora.php:822 -msgid "Diaspora Protocol Settings" -msgstr "" - -#: ../../addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "" - -#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:62 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." - -#: ../../addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "" - -#: ../../addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "" - -#: ../../addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "" - -#: ../../addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "" - -#: ../../addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "" - -#: ../../addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "" - -#: ../../addon/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "Information" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "" - -#: ../../addon/gravatar/gravatar.php:150 -#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 -msgid "Save Settings" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "" - -#: ../../addon/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "" - -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "" - -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "" - -#: ../../addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "" - -#: ../../addon/visage/visage.php:99 -msgid "your feature settings page" -msgstr "" - -#: ../../addon/visage/visage.php:112 -msgid "No entries." -msgstr "" - -#: ../../addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "" - -#: ../../addon/visage/visage.php:170 -msgid "Visage Settings" -msgstr "" - -#: ../../addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "" - -#: ../../addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "" - -#: ../../addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "" - -#: ../../addon/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "" - -#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "" - -#: ../../addon/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "" - -#: ../../addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "" - -#: ../../addon/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "" - -#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "" - -#: ../../addon/mdpost/mdpost.php:41 -msgid "Use markdown for editing posts" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." -msgstr "" - -#: ../../addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "" - -#: ../../addon/rtof/rtof.php:45 -msgid "Post to Friendica" -msgstr "" - -#: ../../addon/rtof/rtof.php:62 -msgid "rtof Settings saved." -msgstr "" - -#: ../../addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" -msgstr "" - -#: ../../addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" -msgstr "" - -#: ../../addon/rtof/rtof.php:89 -msgid "Friendica API Path" -msgstr "" - -#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 -msgid "https://{sitename}/api" -msgstr "" - -#: ../../addon/rtof/rtof.php:93 -msgid "Friendica login name" -msgstr "" - -#: ../../addon/rtof/rtof.php:97 -msgid "Friendica password" -msgstr "" - -#: ../../addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 -#: ../../include/channel.php:1568 -msgid "Status:" -msgstr "Stato:" - -#: ../../addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "" - -#: ../../addon/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "Attualmente bloccati" - -#: ../../addon/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "Nessun canale attualmente bloccato" - -#: ../../addon/superblock/superblock.php:120 -msgid "\"Superblock\" Settings" -msgstr "" - -#: ../../addon/superblock/superblock.php:345 -msgid "Block Completely" -msgstr "" - -#: ../../addon/superblock/superblock.php:394 -msgid "superblock settings updated" -msgstr "" - -#: ../../addon/nofed/nofed.php:42 -msgid "Federate" -msgstr "" - -#: ../../addon/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "" - -#: ../../addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "" - -#: ../../addon/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "" - -#: ../../addon/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "" - -#: ../../addon/redred/redred.php:45 -msgid "Post to Red" -msgstr "" - -#: ../../addon/redred/redred.php:60 -msgid "Channel is required." -msgstr "" - -#: ../../addon/redred/redred.php:76 -msgid "redred Settings saved." -msgstr "" - -#: ../../addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" -msgstr "" - -#: ../../addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" -msgstr "" - -#: ../../addon/redred/redred.php:103 -msgid "Hubzilla API Path" -msgstr "" - -#: ../../addon/redred/redred.php:107 -msgid "Hubzilla login name" -msgstr "" - -#: ../../addon/redred/redred.php:111 -msgid "Hubzilla channel name" -msgstr "" - -#: ../../addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" -msgstr "" - -#: ../../addon/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "" - -#: ../../addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "" - -#: ../../addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "" - -#: ../../addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:91 -msgid "Friendica Photo Album Import" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:92 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "" - -#: ../../addon/frphotos/frphotos.php:93 -msgid "Friendica Server base URL" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:94 -msgid "Friendica Login Username" -msgstr "" - -#: ../../addon/frphotos/frphotos.php:95 -msgid "Friendica Login Password" -msgstr "" - -#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 -#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 -msgid "ActivityPub" -msgstr "" - -#: ../../addon/pubcrawl/pubcrawl.php:1034 -msgid "ActivityPub Protocol Settings updated." -msgstr "" - -#: ../../addon/pubcrawl/pubcrawl.php:1043 -msgid "" -"The ActivityPub protocol does not support location independence. Connections" -" you make within that network may be unreachable from alternate channel " -"locations." -msgstr "" - -#: ../../addon/pubcrawl/pubcrawl.php:1046 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "" - -#: ../../addon/pubcrawl/pubcrawl.php:1049 -msgid "Send multi-media HTML articles" -msgstr "" - -#: ../../addon/pubcrawl/pubcrawl.php:1049 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "" - -#: ../../addon/pubcrawl/pubcrawl.php:1053 -msgid "ActivityPub Protocol Settings" -msgstr "" - -#: ../../addon/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "" - -#: ../../addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "" - -#: ../../addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "" - -#: ../../addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "" - -#: ../../addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "" - -#: ../../addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "" - -#: ../../addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and" -" privacy." -msgstr "" - -#: ../../addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "" - -#: ../../addon/donate/donate.php:60 -msgid "Donate" -msgstr "" - -#: ../../addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "" - -#: ../../addon/donate/donate.php:63 -msgid "Donate Now" -msgstr "" - -#: ../../addon/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project " -"only)" -msgstr "" - -#: ../../addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "" - -#: ../../addon/donate/donate.php:66 -msgid "Sponsor" -msgstr "" - -#: ../../addon/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "" - -#: ../../addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa." - -#: ../../addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug." - -#: ../../addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." - -#: ../../addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "Accordi per chitarra" - -#: ../../addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "Il dizionario completo degli accordi online" - -#: ../../addon/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "Accordatura" - -#: ../../addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "Nome accordo: per esempio Em7" - -#: ../../addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "Mostra l'accordatura per mancini" - -#: ../../addon/chords/chords.php:33 -msgid "Quick Reference" -msgstr "Riferimento veloce" - -#: ../../addon/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "" - -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "" - -#: ../../addon/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "" - -#: ../../addon/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "" - -#: ../../addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "" - -#: ../../addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "" - -#: ../../addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:195 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:266 -msgid "GNU social settings updated." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as" -" an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Base API Path" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:341 -msgid "Remember the trailing /" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:345 -msgid "GNU social application name" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:370 -msgid "Log in with GNU social" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:385 -msgid "Current GNU social API is" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 -msgid "Currently connected to: " -msgstr "" - -#: ../../addon/statusnet/statusnet.php:406 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 -msgid "Clear OAuth configuration" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:892 -msgid "API URL" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:895 -msgid "Application name" -msgstr "" - -#: ../../addon/qrator/qrator.php:48 -msgid "QR code" -msgstr "" - -#: ../../addon/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "" - -#: ../../addon/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "" - -#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 -msgid "Invalid game." -msgstr "" - -#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 -msgid "You are not a player in this game." -msgstr "" - -#: ../../addon/chess/chess.php:415 -msgid "You must be a local channel to create a game." -msgstr "" - -#: ../../addon/chess/chess.php:433 -msgid "You must select one opponent that is not yourself." -msgstr "" - -#: ../../addon/chess/chess.php:444 -msgid "Random color chosen." -msgstr "" - -#: ../../addon/chess/chess.php:452 -msgid "Error creating new game." -msgstr "" - -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../addon/chess/chess.php:500 -msgid "You must select a local channel /chess/channelname" -msgstr "" - -#: ../../addon/chess/chess.php:1066 -msgid "Enable notifications" -msgstr "" - -#: ../../addon/twitter/twitter.php:99 -msgid "Post to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:155 -msgid "Twitter settings updated." -msgstr "" - -#: ../../addon/twitter/twitter.php:184 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "" - -#: ../../addon/twitter/twitter.php:206 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input" -" box below and submit the form. Only your public posts will" -" be posted to Twitter." -msgstr "" - -#: ../../addon/twitter/twitter.php:208 -msgid "Log in with Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:211 -msgid "Copy the PIN from Twitter here" -msgstr "" - -#: ../../addon/twitter/twitter.php:238 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "" - -#: ../../addon/twitter/twitter.php:243 -msgid "Allow posting to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:243 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "" - -#: ../../addon/twitter/twitter.php:247 -msgid "Twitter post length" -msgstr "" - -#: ../../addon/twitter/twitter.php:247 -msgid "Maximum tweet length" -msgstr "" - -#: ../../addon/twitter/twitter.php:252 -msgid "Send public postings to Twitter by default" -msgstr "" - -#: ../../addon/twitter/twitter.php:252 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "" - -#: ../../addon/twitter/twitter.php:270 -msgid "Twitter Post Settings" -msgstr "" - -#: ../../addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" -msgstr "" - -#: ../../addon/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." -msgstr "" - -#: ../../addon/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" -msgstr "" - -#: ../../addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" - -#: ../../addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "" - -#: ../../addon/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "" - -#: ../../addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "" - -#: ../../addon/piwik/piwik.php:97 -msgid "Site ID" -msgstr "" - -#: ../../addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "" - -#: ../../addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "" - -#: ../../addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "" - -#: ../../addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "" - -#: ../../addon/tour/tour.php:75 -msgid "Edit your profile and change settings." -msgstr "" - -#: ../../addon/tour/tour.php:76 -msgid "Click here to see activity from your connections." -msgstr "" - -#: ../../addon/tour/tour.php:77 -msgid "Click here to see your channel home." -msgstr "" - -#: ../../addon/tour/tour.php:78 -msgid "You can access your private messages from here." -msgstr "" - -#: ../../addon/tour/tour.php:79 -msgid "Create new events here." -msgstr "" - -#: ../../addon/tour/tour.php:80 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "" - -#: ../../addon/tour/tour.php:81 -msgid "System notifications will arrive here" -msgstr "" - -#: ../../addon/tour/tour.php:82 -msgid "Search for content and users" -msgstr "" - -#: ../../addon/tour/tour.php:83 -msgid "Browse for new contacts" -msgstr "" - -#: ../../addon/tour/tour.php:84 -msgid "Launch installed apps" -msgstr "" - -#: ../../addon/tour/tour.php:85 -msgid "Looking for help? Click here." -msgstr "" - -#: ../../addon/tour/tour.php:86 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "" - -#: ../../addon/tour/tour.php:87 -msgid "You have received a new private message. Click here to see from who!" -msgstr "Hai ricevuto un nuovo messaggio privato. Clicca qui per sapere da chi!" - -#: ../../addon/tour/tour.php:88 -msgid "There are events this week. Click here too see which!" -msgstr "" - -#: ../../addon/tour/tour.php:89 -msgid "You have received a new introduction. Click here to see who!" -msgstr "Hai ricevuto una nuova richiesta di amicizia. Clicca qui per sapere da chi!" - -#: ../../addon/tour/tour.php:90 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "" - -#: ../../addon/tour/tour.php:93 -msgid "Click here to share text, images, videos and sound." -msgstr "" - -#: ../../addon/tour/tour.php:94 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "" - -#: ../../addon/tour/tour.php:95 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "" - -#: ../../addon/tour/tour.php:96 -msgid "Share photos, links, location, etc." -msgstr "" - -#: ../../addon/tour/tour.php:97 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "" - -#: ../../addon/tour/tour.php:98 -msgid "You can password protect content." -msgstr "" - -#: ../../addon/tour/tour.php:99 -msgid "Choose who you share with." -msgstr "" - -#: ../../addon/tour/tour.php:101 -msgid "Click here when you are done." -msgstr "" - -#: ../../addon/tour/tour.php:104 -msgid "Adjust from which channels posts should be displayed." -msgstr "" - -#: ../../addon/tour/tour.php:105 -msgid "Only show posts from channels in the specified privacy group." -msgstr "" - -#: ../../addon/tour/tour.php:109 -msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "" - -#: ../../addon/tour/tour.php:110 -msgid "Easily find posts in given category." -msgstr "" - -#: ../../addon/tour/tour.php:111 -msgid "Easily find posts by date." -msgstr "" - -#: ../../addon/tour/tour.php:112 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we" -" think you might find interesting." -msgstr "" - -#: ../../addon/tour/tour.php:113 -msgid "Here you see channels you have connected to." -msgstr "" - -#: ../../addon/tour/tour.php:114 -msgid "Save your search so you can repeat it at a later date." -msgstr "" - -#: ../../addon/tour/tour.php:117 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It" -" is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "" - -#: ../../addon/tour/tour.php:118 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "" - -#: ../../addon/tour/tour.php:125 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI?

Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina.

Puoi anche andare avanti premendo il tasto invio" - -#: ../../addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "" - -#: ../../addon/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "" - -#: ../../addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "" - -#: ../../addon/tictac/tictac.php:59 -msgid "New game" -msgstr "" - -#: ../../addon/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "" - -#: ../../addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "" - -#: ../../addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "" - -#: ../../addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "" - -#: ../../addon/tictac/tictac.php:183 -msgid "You go first..." -msgstr "" - -#: ../../addon/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "" - -#: ../../addon/tictac/tictac.php:194 -msgid "You won!" -msgstr "" - -#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "" - -#: ../../addon/tictac/tictac.php:223 -msgid "I won!" -msgstr "" - -#: ../../addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "" - -#: ../../addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" -msgstr "" - -#: ../../addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." -msgstr "" - -#: ../../addon/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "" - -#: ../../addon/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "" - -#: ../../addon/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "" - -#: ../../addon/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "" - -#: ../../addon/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:21 -msgid "horny" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:29 -msgid "high" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:31 -msgid "in love" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:33 -msgid "naked" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:39 -msgid "envious" -msgstr "" - -#: ../../addon/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:31 -msgid "XMPP settings updated." -msgstr "" - -#: ../../addon/xmpp/xmpp.php:53 -msgid "Enable Chat" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:58 -msgid "Individual credentials" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:69 -msgid "XMPP Settings" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "Use central userbase" -msgstr "" - -#: ../../addon/xmpp/xmpp.php:93 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "" - -#: ../../addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "Chi mi ha messo un mi piace?" - -#: ../../addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "" - -#: ../../addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "" - -#: ../../addon/ldapauth/ldapauth.php:61 -msgid "An account has been created for you." -msgstr "" - -#: ../../addon/ldapauth/ldapauth.php:68 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "" - -#: ../../addon/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Cerca %1$s (%2$s)" - -#: ../../addon/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "" - -#: ../../addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "" - -#: ../../addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "" - -#: ../../addon/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "" - -#: ../../addon/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "" - -#: ../../addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "" - -#: ../../addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "" - -#: ../../addon/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "" - -#: ../../addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ogni ora" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Due volte al giorno" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ogni giorno" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ogni settimana" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ogni mese" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/selectors.php:49 ../../include/channel.php:1485 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/selectors.php:49 ../../include/channel.php:1487 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Maschi" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmine" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Senza preferenza" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Feticista" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Da solo" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Ha una cotta" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Infatuato/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Disponibile a un incontro" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infedele" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Impegnato" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Sposato/a" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "ha messo mi piace al %2$s di %1$s" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "ha messo non mi piace al %2$s di %1$s" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" - -#: ../../include/conversation.php:251 ../../include/text.php:1129 -#: ../../include/text.php:1133 -msgid "poked" -msgstr "ha mandato un poke" - -#: ../../include/conversation.php:736 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:756 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:757 -msgid "Filed under:" -msgstr "Classificato come:" - -#: ../../include/conversation.php:783 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../include/conversation.php:884 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:888 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/conversation.php:889 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" - -#: ../../include/conversation.php:932 -msgid "View Source" -msgstr "Vedi il sorgente" - -#: ../../include/conversation.php:942 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" - -#: ../../include/conversation.php:1042 -msgid "Activity/Posts" -msgstr "Attività e Post" - -#: ../../include/conversation.php:1062 -msgid "Edit Connection" -msgstr "Modifica il contatto" - -#: ../../include/conversation.php:1072 -msgid "Message" -msgstr "Messaggio" - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1206 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1210 -#, 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:1212 -#, 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:1218 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:1221 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" - -#: ../../include/conversation.php:1222 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1222 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1265 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1266 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1314 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1315 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1320 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." - -#: ../../include/conversation.php:1324 -msgid "Comments enabled" -msgstr "Commenti abilitati" - -#: ../../include/conversation.php:1325 -msgid "Comments disabled" -msgstr "Commenti disabilitati" - -#: ../../include/conversation.php:1372 -msgid "Page link name" -msgstr "Nome del link alla pagina" - -#: ../../include/conversation.php:1375 -msgid "Post as" -msgstr "Pubblica come " - -#: ../../include/conversation.php:1389 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" - -#: ../../include/conversation.php:1392 -msgid "Disable comments" -msgstr "Disabilita i commenti" - -#: ../../include/conversation.php:1393 -msgid "Toggle comments" -msgstr "Abilita/disabilita i commenti" - -#: ../../include/conversation.php:1401 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" - -#: ../../include/conversation.php:1424 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" - -#: ../../include/conversation.php:1430 -msgid "Set publish date" -msgstr "Data di uscita programmata" - -#: ../../include/conversation.php:1690 -msgid "Commented Order" -msgstr "Commenti recenti" - -#: ../../include/conversation.php:1693 -msgid "Sort by Comment Date" -msgstr "Per data del commento" - -#: ../../include/conversation.php:1697 -msgid "Posted Order" -msgstr "Post recenti" - -#: ../../include/conversation.php:1700 -msgid "Sort by Post Date" -msgstr "Per data di creazione" - -#: ../../include/conversation.php:1708 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" - -#: ../../include/conversation.php:1717 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" - -#: ../../include/conversation.php:1723 -msgid "Starred" -msgstr "Preferiti" - -#: ../../include/conversation.php:1726 -msgid "Favourite Posts" -msgstr "Post preferiti" - -#: ../../include/conversation.php:1733 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1736 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" - -#: ../../include/conversation.php:1811 ../../include/nav.php:381 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" - -#: ../../include/conversation.php:1824 ../../include/nav.php:394 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: ../../include/conversation.php:1834 ../../include/nav.php:404 -#: ../../include/photos.php:655 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/conversation.php:1842 ../../include/nav.php:412 -msgid "Files and Storage" -msgstr "Archivio file" - -#: ../../include/conversation.php:1879 ../../include/nav.php:447 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/conversation.php:1882 ../../include/nav.php:450 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" - -#: ../../include/conversation.php:1893 ../../include/nav.php:461 -msgid "View Cards" -msgstr "" - -#: ../../include/conversation.php:1901 -msgid "articles" -msgstr "" - -#: ../../include/conversation.php:1904 ../../include/nav.php:472 -msgid "View Articles" -msgstr "" - -#: ../../include/conversation.php:1915 ../../include/nav.php:484 -msgid "View Webpages" -msgstr "" - -#: ../../include/conversation.php:1984 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" - -#: ../../include/conversation.php:1987 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" - -#: ../../include/conversation.php:1990 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" - -#: ../../include/conversation.php:1993 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" - -#: ../../include/conversation.php:1996 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" - -#: ../../include/conversation.php:1999 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" - -#: ../../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/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" - -#: ../../include/import.php:41 -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:106 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../include/text.php:492 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:494 -msgid "first" -msgstr "inizio" - -#: ../../include/text.php:523 -msgid "last" -msgstr "fine" - -#: ../../include/text.php:526 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:537 -msgid "older" -msgstr "più recenti" - -#: ../../include/text.php:539 -msgid "newer" -msgstr "più nuovi" - -#: ../../include/text.php:961 -msgid "No connections" -msgstr "Nessun contatto" - -#: ../../include/text.php:993 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" - -#: ../../include/text.php:1129 ../../include/text.php:1133 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:1134 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1134 -msgid "pinged" -msgstr "ha effettuato un ping" - -#: ../../include/text.php:1135 -msgid "prod" -msgstr "spintone" - -#: ../../include/text.php:1135 -msgid "prodded" -msgstr "ha ricevuto uno spintone" - -#: ../../include/text.php:1136 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:1136 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:1137 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1137 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:1138 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:1138 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" - -#: ../../include/text.php:1161 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:1162 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1163 -msgid "mellow" -msgstr "calmo" - -#: ../../include/text.php:1164 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:1165 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:1166 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:1167 -msgid "stupefied" -msgstr "stupito" - -#: ../../include/text.php:1168 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1169 -msgid "interested" -msgstr "attento" - -#: ../../include/text.php:1170 -msgid "bitter" -msgstr "amaro" - -#: ../../include/text.php:1171 -msgid "cheerful" -msgstr "allegro" - -#: ../../include/text.php:1172 -msgid "alive" -msgstr "vivace" - -#: ../../include/text.php:1173 -msgid "annoyed" -msgstr "seccato" - -#: ../../include/text.php:1174 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1175 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:1176 -msgid "disturbed" -msgstr "turbato" - -#: ../../include/text.php:1177 -msgid "frustrated" -msgstr "frustrato" - -#: ../../include/text.php:1178 -msgid "depressed" -msgstr "in depressione" - -#: ../../include/text.php:1179 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:1180 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:1181 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1360 ../../include/js_strings.php:76 -msgid "Monday" -msgstr "lunedì" - -#: ../../include/text.php:1360 ../../include/js_strings.php:77 -msgid "Tuesday" -msgstr "martedì" - -#: ../../include/text.php:1360 ../../include/js_strings.php:78 -msgid "Wednesday" -msgstr "mercoledì" - -#: ../../include/text.php:1360 ../../include/js_strings.php:79 -msgid "Thursday" -msgstr "giovedì" - -#: ../../include/text.php:1360 ../../include/js_strings.php:80 -msgid "Friday" -msgstr "venerdì" - -#: ../../include/text.php:1360 ../../include/js_strings.php:81 -msgid "Saturday" -msgstr "sabato" - -#: ../../include/text.php:1360 ../../include/js_strings.php:75 -msgid "Sunday" -msgstr "domenica" - -#: ../../include/text.php:1364 ../../include/js_strings.php:51 -msgid "January" -msgstr "gennaio" - -#: ../../include/text.php:1364 ../../include/js_strings.php:52 -msgid "February" -msgstr "febbraio" - -#: ../../include/text.php:1364 ../../include/js_strings.php:53 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1364 ../../include/js_strings.php:54 -msgid "April" -msgstr "aprile" - -#: ../../include/text.php:1364 -msgid "May" -msgstr "Mag" - -#: ../../include/text.php:1364 ../../include/js_strings.php:56 -msgid "June" -msgstr "giugno" - -#: ../../include/text.php:1364 ../../include/js_strings.php:57 -msgid "July" -msgstr "luglio" - -#: ../../include/text.php:1364 ../../include/js_strings.php:58 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1364 ../../include/js_strings.php:59 -msgid "September" -msgstr "settembre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:60 -msgid "October" -msgstr "ottobre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:61 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1364 ../../include/js_strings.php:62 -msgid "December" -msgstr "dicembre" - -#: ../../include/text.php:1428 ../../include/text.php:1432 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" - -#: ../../include/text.php:1434 ../../include/feedutils.php:852 -msgid "unknown" -msgstr "sconosciuta" - -#: ../../include/text.php:1470 -msgid "remove category" -msgstr "rimuovi la categoria" - -#: ../../include/text.php:1544 -msgid "remove from file" -msgstr "rimuovi dal file" - -#: ../../include/text.php:1686 ../../include/message.php:12 -msgid "Download binary/encrypted content" -msgstr "" - -#: ../../include/text.php:1848 ../../include/language.php:397 -msgid "default" -msgstr "predefinito" - -#: ../../include/text.php:1856 -msgid "Page layout" -msgstr "Layout della pagina" - -#: ../../include/text.php:1856 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" - -#: ../../include/text.php:1867 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1870 -msgid "Comanche Layout" -msgstr "" - -#: ../../include/text.php:1875 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1884 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" - -#: ../../include/text.php:2017 -msgid "activity" -msgstr "l'attività" - -#: ../../include/text.php:2099 -msgid "a-z, 0-9, -, and _ only" -msgstr "" - -#: ../../include/text.php:2399 -msgid "Design Tools" -msgstr "Strumenti di design" - -#: ../../include/text.php:2405 -msgid "Pages" -msgstr "Pagine" - -#: ../../include/text.php:2427 -msgid "Import website..." -msgstr "Importazione sito web..." - -#: ../../include/text.php:2428 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" - -#: ../../include/text.php:2429 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" - -#: ../../include/text.php:2430 -msgid "Import from cloud files:" -msgstr "Importa da un file su cloud:" - -#: ../../include/text.php:2431 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/posizione/della/cartella" - -#: ../../include/text.php:2432 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" - -#: ../../include/text.php:2433 -msgid "Select folder" -msgstr "Scegli la cartella" - -#: ../../include/text.php:2434 -msgid "Export website..." -msgstr "Esporta il sito web..." - -#: ../../include/text.php:2435 -msgid "Export to a zip file" -msgstr "Esporta come file zip" - -#: ../../include/text.php:2436 -msgid "website.zip" -msgstr "sitoweb.zip" - -#: ../../include/text.php:2437 -msgid "Enter a name for the zip file." -msgstr "Scegli il nome del file zip." - -#: ../../include/text.php:2438 -msgid "Export to cloud files" -msgstr "Esporta nell'archivio cloud" - -#: ../../include/text.php:2439 -msgid "/path/to/export/folder" -msgstr "/percorso/alla/cartella" - -#: ../../include/text.php:2440 -msgid "Enter a path to a cloud files destination." -msgstr "Scegli la posizione su una cartella cloud." - -#: ../../include/text.php:2441 -msgid "Specify folder" -msgstr "Scegli la cartella" - -#: ../../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:223 -msgid "Common Connections" -msgstr "" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "" - -#: ../../include/markdown.php:158 ../../include/bbcode.php:343 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:101 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:156 -msgid "Remote channel or protocol unavailable." -msgstr "" - -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:191 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:202 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../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" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s mostra tutto" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s minimizza" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Password troppo corta" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Le password non corrispondono" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "tutti" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Parola chiave per decifrare" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Suggerimento per la parola chiave" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "chiudi tutto" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valuta questo canale (visibile a tutti)" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Descrizione (facoltativa)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Inserisci l'URL di un link" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" - -#: ../../include/js_strings.php:31 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:32 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:33 -msgid "timeago.suffixAgo" -msgstr "" - -#: ../../include/js_strings.php:34 -msgid "timeago.suffixFromNow" -msgstr "" - -#: ../../include/js_strings.php:37 -msgid "less than a minute" -msgstr "meno di un minuto" - -#: ../../include/js_strings.php:38 -msgid "about a minute" -msgstr "circa un minuto" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d minutes" -msgstr "%d minuti" - -#: ../../include/js_strings.php:40 -msgid "about an hour" -msgstr "circa un’ora" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "about %d hours" -msgstr "circa %d ore" - -#: ../../include/js_strings.php:42 -msgid "a day" -msgstr "un giorno" - -#: ../../include/js_strings.php:43 -#, php-format -msgid "%d days" -msgstr "%d giorni" - -#: ../../include/js_strings.php:44 -msgid "about a month" -msgstr "circa un mese" - -#: ../../include/js_strings.php:45 -#, php-format -msgid "%d months" -msgstr "%d mesi" - -#: ../../include/js_strings.php:46 -msgid "about a year" -msgstr "circa un anno" - -#: ../../include/js_strings.php:47 -#, php-format -msgid "%d years" -msgstr "%d anni" - -#: ../../include/js_strings.php:48 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:49 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:55 -msgctxt "long" -msgid "May" -msgstr "maggio" - -#: ../../include/js_strings.php:63 -msgid "Jan" -msgstr "Gen" - -#: ../../include/js_strings.php:64 -msgid "Feb" -msgstr "Feb" - -#: ../../include/js_strings.php:65 -msgid "Mar" -msgstr "Mar" - -#: ../../include/js_strings.php:66 -msgid "Apr" -msgstr "Apr" - -#: ../../include/js_strings.php:67 -msgctxt "short" -msgid "May" -msgstr "maggio" - -#: ../../include/js_strings.php:68 -msgid "Jun" -msgstr "Mag" - -#: ../../include/js_strings.php:69 -msgid "Jul" -msgstr "Giu" - -#: ../../include/js_strings.php:70 -msgid "Aug" -msgstr "Ago" - -#: ../../include/js_strings.php:71 -msgid "Sep" -msgstr "Set" - -#: ../../include/js_strings.php:72 -msgid "Oct" -msgstr "Ott" - -#: ../../include/js_strings.php:73 -msgid "Nov" -msgstr "Nov" - -#: ../../include/js_strings.php:74 -msgid "Dec" -msgstr "Dic" - -#: ../../include/js_strings.php:82 -msgid "Sun" -msgstr "Dom" - -#: ../../include/js_strings.php:83 -msgid "Mon" -msgstr "Lun" - -#: ../../include/js_strings.php:84 -msgid "Tue" -msgstr "Mar" - -#: ../../include/js_strings.php:85 -msgid "Wed" -msgstr "Mer" - -#: ../../include/js_strings.php:86 -msgid "Thu" -msgstr "Gio" - -#: ../../include/js_strings.php:87 -msgid "Fri" -msgstr "Ven" - -#: ../../include/js_strings.php:88 -msgid "Sat" -msgstr "Sab" - -#: ../../include/js_strings.php:89 -msgctxt "calendar" -msgid "today" -msgstr "oggi" - -#: ../../include/js_strings.php:90 -msgctxt "calendar" -msgid "month" -msgstr "mese" - -#: ../../include/js_strings.php:91 -msgctxt "calendar" -msgid "week" -msgstr "settimana" - -#: ../../include/js_strings.php:92 -msgctxt "calendar" -msgid "day" -msgstr "giorno" - -#: ../../include/js_strings.php:93 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" - -#: ../../include/message.php:40 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." - -#: ../../include/message.php:79 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." - -#: ../../include/message.php:84 -msgid "[no subject]" -msgstr "[nessun titolo]" - -#: ../../include/message.php:214 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." - -#: ../../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/attach.php:265 ../../include/attach.php:361 -msgid "Item was not found." -msgstr "Elemento non trovato." - -#: ../../include/attach.php:554 -msgid "No source file." -msgstr "Nessun file di origine." - -#: ../../include/attach.php:576 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" - -#: ../../include/attach.php:595 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" - -#: ../../include/attach.php:737 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../include/attach.php:758 -#, 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:940 -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:959 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." - -#: ../../include/attach.php:1033 ../../include/attach.php:1049 -msgid "Path not available." -msgstr "Percorso non disponibile." - -#: ../../include/attach.php:1098 ../../include/attach.php:1263 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" - -#: ../../include/attach.php:1124 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" - -#: ../../include/attach.php:1149 -msgid "Path not found." -msgstr "Percorso del file non trovato." - -#: ../../include/attach.php:1217 -msgid "mkdir failed." -msgstr "mkdir fallito." - -#: ../../include/attach.php:1221 -msgid "database storage failed." -msgstr "scrittura su database fallita." - -#: ../../include/attach.php:1269 -msgid "Empty path" -msgstr "La posizione è vuota" - -#: ../../include/security.php:532 -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/items.php:885 ../../include/items.php:945 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1129 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1131 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1133 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1135 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1137 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." - -#: ../../include/items.php:1139 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1141 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1143 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:4147 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." - -#: ../../include/items.php:4154 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" - -#: ../../include/items.php:4166 -msgid "Connection not found." -msgstr "Contatto non trovato." - -#: ../../include/items.php:4515 -msgid "profile photo" -msgstr "foto del profilo" - -#: ../../include/items.php:4706 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4706 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4706 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/channel.php:35 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/channel.php:68 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/channel.php:71 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/channel.php:188 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/channel.php:200 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/channel.php:277 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/channel.php:373 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/channel.php:532 ../../include/channel.php:621 -msgid "Unable to retrieve modified identity" -msgstr "" - -#: ../../include/channel.php:1298 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/channel.php:1319 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/channel.php:1396 ../../include/channel.php:1524 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/channel.php:1398 ../../include/channel.php:1579 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1399 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1452 -msgid "Change your profile photo" -msgstr "" - -#: ../../include/channel.php:1483 -msgid "Trans" -msgstr "" - -#: ../../include/channel.php:1529 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/channel.php:1553 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1554 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1561 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/channel.php:1574 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/channel.php:1577 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../include/channel.php:1583 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/channel.php:1585 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/channel.php:1587 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/channel.php:1591 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" - -#: ../../include/channel.php:1593 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/channel.php:1595 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/channel.php:1597 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" - -#: ../../include/channel.php:1599 -msgid "My other channels:" -msgstr "I miei altri canali:" - -#: ../../include/channel.php:1601 -msgid "Musical interests:" -msgstr "Gusti musicali:" - -#: ../../include/channel.php:1603 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/channel.php:1605 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/channel.php:1607 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" - -#: ../../include/channel.php:1609 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/channel.php:1611 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/channel.php:1613 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/channel.php:1636 -msgid "Like this thing" -msgstr "Mi piace" - -#: ../../include/event.php:24 ../../include/event.php:71 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:32 ../../include/event.php:75 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/event.php:42 ../../include/event.php:79 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/event.php:1011 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" - -#: ../../include/event.php:1227 -msgid "Not specified" -msgstr "Non specificato" - -#: ../../include/event.php:1228 -msgid "Needs Action" -msgstr "Necessita di un intervento" - -#: ../../include/event.php:1229 -msgid "Completed" -msgstr "Completato" - -#: ../../include/event.php:1230 -msgid "In Process" -msgstr "In corso" - -#: ../../include/event.php:1231 -msgid "Cancelled" -msgstr "Annullato" - -#: ../../include/event.php:1310 ../../include/connections.php:684 -msgid "Home, Voice" -msgstr "" - -#: ../../include/event.php:1311 ../../include/connections.php:685 -msgid "Home, Fax" -msgstr "" - -#: ../../include/event.php:1313 ../../include/connections.php:687 -msgid "Work, Voice" -msgstr "" - -#: ../../include/event.php:1314 ../../include/connections.php:688 -msgid "Work, Fax" -msgstr "" - -#: ../../include/network.php:762 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1769 ../../include/network.php:1770 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:1771 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:1772 -msgid "GNU-Social" -msgstr "GNU-Social" - -#: ../../include/network.php:1773 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:1776 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:1777 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:1778 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:1779 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:1780 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:1781 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "Chi può vederlo?" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "Selezione personalizzata" - -#: ../../include/acl_selectors.php:115 -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:116 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:150 -#, 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/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 -#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 -#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 -#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 -#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 -#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 -#: ../../include/bbcode.php:1190 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 -msgid "Encrypted content" -msgstr "Contenuto cifrato" - -#: ../../include/bbcode.php:253 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "" - -#: ../../include/bbcode.php:257 -#, 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:335 -msgid "card" -msgstr "" - -#: ../../include/bbcode.php:337 -msgid "article" -msgstr "" - -#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/bbcode.php:428 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:441 -msgid "View article" -msgstr "" - -#: ../../include/bbcode.php:441 -msgid "View summary" -msgstr "" - -#: ../../include/bbcode.php:1139 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/oembed.php:328 -msgid " by " -msgstr "di" - -#: ../../include/oembed.php:329 -msgid " on " -msgstr "su" - -#: ../../include/oembed.php:358 -msgid "Embedded content" -msgstr "Contenuti incorporati" - -#: ../../include/oembed.php:367 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" - -#: ../../include/zid.php:346 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "" - -#: ../../include/features.php:54 -msgid "General Features" -msgstr "Funzionalità di base" - -#: ../../include/features.php:60 -msgid "Advanced Profiles" -msgstr "Profili avanzati" - -#: ../../include/features.php:61 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" - -#: ../../include/features.php:69 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" - -#: ../../include/features.php:70 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" - -#: ../../include/features.php:78 -msgid "Web Pages" -msgstr "Pagine web" - -#: ../../include/features.php:79 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" - -#: ../../include/features.php:88 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" - -#: ../../include/features.php:105 -msgid "Private Notes" -msgstr "Note private" - -#: ../../include/features.php:106 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" - -#: ../../include/features.php:115 -msgid "Create personal planning cards" -msgstr "" - -#: ../../include/features.php:125 -msgid "Create interactive articles" -msgstr "" - -#: ../../include/features.php:133 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" - -#: ../../include/features.php:134 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" - -#: ../../include/features.php:142 -msgid "Photo Location" -msgstr "Posizione geografica" - -#: ../../include/features.php:143 -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:151 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" - -#: ../../include/features.php:152 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato." - -#: ../../include/features.php:161 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" - -#: ../../include/features.php:162 -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:170 -msgid "Event Timezone Selection" -msgstr "" - -#: ../../include/features.php:171 -msgid "Allow event creation in timezones other than your own." -msgstr "" - -#: ../../include/features.php:180 -msgid "Premium Channel" -msgstr "Canale premium" - -#: ../../include/features.php:181 -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:189 -msgid "Advanced Directory Search" -msgstr "Ricerca avanzata sugli elenchi pubblici" - -#: ../../include/features.php:190 -msgid "Allows creation of complex directory search queries" -msgstr "Permette la creazione di ricerche complesse negli elenchi" - -#: ../../include/features.php:198 -msgid "Advanced Theme and Layout Settings" -msgstr "Impostazioni avanzate del tema e dei layout" - -#: ../../include/features.php:199 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permette una personalizzazione accurata del tema e dei layout" - -#: ../../include/features.php:208 -msgid "Access Control and Permissions" -msgstr "" - -#: ../../include/features.php:212 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Gruppi di canali" - -#: ../../include/features.php:213 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" - -#: ../../include/features.php:221 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:222 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" - -#: ../../include/features.php:232 -msgid "Provide alternate connection permission roles." -msgstr "" - -#: ../../include/features.php:240 -msgid "OAuth Clients" -msgstr "" - -#: ../../include/features.php:241 -msgid "Manage authenticatication tokens for mobile and remote apps." -msgstr "" - -#: ../../include/features.php:249 -msgid "Access Tokens" -msgstr "" - -#: ../../include/features.php:250 -msgid "Create access tokens so that non-members can access private content." -msgstr "" - -#: ../../include/features.php:261 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" - -#: ../../include/features.php:265 -msgid "Large Photos" -msgstr "Foto grandi" - -#: ../../include/features.php:266 -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:275 -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:283 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" - -#: ../../include/features.php:284 -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:292 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" - -#: ../../include/features.php:293 -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:301 -msgid "Disable Comments" -msgstr "Disabilita i commenti" - -#: ../../include/features.php:302 -msgid "Provide the option to disable comments for a post" -msgstr "Permetti di disabilitare i commenti" - -#: ../../include/features.php:310 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" - -#: ../../include/features.php:311 -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:319 -msgid "Content Expiration" -msgstr "Scadenza" - -#: ../../include/features.php:320 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" - -#: ../../include/features.php:328 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" - -#: ../../include/features.php:329 -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:340 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" - -#: ../../include/features.php:344 -msgid "Search by Date" -msgstr "Ricerca per data" - -#: ../../include/features.php:345 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" - -#: ../../include/features.php:355 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" - -#: ../../include/features.php:363 -msgid "Network Personal Tab" -msgstr "Attività personale" - -#: ../../include/features.php:364 -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:372 -msgid "Network New Tab" -msgstr "Contenuti nuovi" - -#: ../../include/features.php:373 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" - -#: ../../include/features.php:381 -msgid "Affinity Tool" -msgstr "Filtro per affinità" - -#: ../../include/features.php:382 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" - -#: ../../include/features.php:391 -msgid "Show friend and connection suggestions" -msgstr "Mostra suggerimenti di contatti e amici" - -#: ../../include/features.php:399 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" - -#: ../../include/features.php:400 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" - -#: ../../include/features.php:412 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" - -#: ../../include/features.php:416 -msgid "Community Tagging" -msgstr "Tag della comunità" - -#: ../../include/features.php:417 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" - -#: ../../include/features.php:425 -msgid "Post Categories" -msgstr "Categorie dei post" - -#: ../../include/features.php:426 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" - -#: ../../include/features.php:434 -msgid "Emoji Reactions" -msgstr "Risposte emoji" - -#: ../../include/features.php:435 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti di rispondere ai post con degli emoji" - -#: ../../include/features.php:444 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" - -#: ../../include/features.php:452 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: ../../include/features.php:453 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" - -#: ../../include/features.php:461 -msgid "Star Posts" -msgstr "Post con stella" - -#: ../../include/features.php:462 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" - -#: ../../include/features.php:470 -msgid "Tag Cloud" -msgstr "Nuvola di tag" - -#: ../../include/features.php:471 -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/taxonomy.php:384 ../../include/taxonomy.php:405 -msgid "Tags" -msgstr "Tag" - -#: ../../include/taxonomy.php:487 -msgid "Keywords" -msgstr "Parole chiave" - -#: ../../include/taxonomy.php:508 -msgid "have" -msgstr "ho" - -#: ../../include/taxonomy.php:508 -msgid "has" -msgstr "ha" - -#: ../../include/taxonomy.php:509 -msgid "want" -msgstr "voglio" - -#: ../../include/taxonomy.php:509 -msgid "wants" -msgstr "vuole" - -#: ../../include/taxonomy.php:510 -msgid "likes" -msgstr "gli piace" - -#: ../../include/taxonomy.php:511 -msgid "dislikes" -msgstr "non gli piace" - -#: ../../include/account.php:35 -msgid "Not a valid email address" -msgstr "Email non valida" - -#: ../../include/account.php:37 -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:43 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:75 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:79 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:157 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:224 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:313 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:382 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:404 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:410 ../../include/account.php:472 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:483 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:523 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../include/account.php:802 ../../include/account.php:804 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/account.php:810 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." - -#: ../../include/account.php:815 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." - -#: ../../include/datetime.php:134 -msgid "Birthday" -msgstr "Compleanno" - -#: ../../include/datetime.php:134 -msgid "Age: " -msgstr "Età:" - -#: ../../include/datetime.php:134 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" - -#: ../../include/datetime.php:238 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:256 -#, 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:267 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" - -#: ../../include/datetime.php:270 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" - -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" - -#: ../../include/datetime.php:514 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" - -#: ../../include/datetime.php:515 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/nav.php:96 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" - -#: ../../include/nav.php:96 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" - -#: ../../include/nav.php:102 ../../include/nav.php:190 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" - -#: ../../include/nav.php:105 ../../include/nav.php:192 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" - -#: ../../include/nav.php:111 ../../include/nav.php:140 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:114 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:117 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" - -#: ../../include/nav.php:126 ../../include/nav.php:130 -msgid "Sign in" -msgstr "Accedi" - -#: ../../include/nav.php:157 -msgid "Take me home" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Log me out of this site" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:176 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:179 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" - -#: ../../include/nav.php:199 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" - -#: ../../include/nav.php:290 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" - -#: ../../include/nav.php:291 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/nav.php:297 -msgid "Add Apps" -msgstr "Aggiungi App" - -#: ../../include/nav.php:298 -msgid "Arrange Apps" -msgstr "Ordina le App" - -#: ../../include/nav.php:299 -msgid "Toggle System Apps" -msgstr "Attiva/disattiva Apps" - -#: ../../include/photos.php:150 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" - -#: ../../include/photos.php:161 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../include/photos.php:322 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." - -#: ../../include/photos.php:364 -msgid "a new photo" -msgstr "una nuova foto" - -#: ../../include/photos.php:368 -#, 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:660 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/zot.php:767 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:794 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2529 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/zot.php:4180 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" - -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Aggiungi nuovi contatti a questo gruppo di canali" - -#: ../../include/group.php:306 -msgid "edit" -msgstr "modifica" - -#: ../../include/group.php:329 -msgid "Edit group" -msgstr "Modifica il gruppo" - -#: ../../include/group.php:330 -msgid "Add privacy group" -msgstr "Crea un gruppo di canali" - -#: ../../include/group.php:331 -msgid "Channels not in any privacy group" -msgstr "Canali che non sono in nessun gruppo" - -#: ../../include/connections.php:128 -msgid "New window" -msgstr "Nuova finestra" - -#: ../../include/connections.php:129 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" - -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:263 -msgid "Email validation is incomplete. Please check your email." -msgstr "Validazione via mail non completa. Per favore controlla la tua mail." - -#: ../../include/auth.php:279 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/help.php:34 -msgid "Help:" -msgstr "Guida:" - -#: ../../include/help.php:78 -msgid "Not Found" -msgstr "Non disponibile" diff --git a/view/it/hstrings.php b/view/it/hstrings.php deleted file mode 100644 index 42fc58347..000000000 --- a/view/it/hstrings.php +++ /dev/null @@ -1,3168 +0,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["Submit"] = "Salva"; -App::$strings["Articles"] = "Articoli"; -App::$strings["Add Article"] = "Aggiungi un articolo"; -App::$strings["Item not found"] = "Elemento non trovato"; -App::$strings["Layout Name"] = "Nome layout"; -App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; -App::$strings["Edit Layout"] = "Modifica il layout"; -App::$strings["Permission denied"] = "Permesso negato"; -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["All Connections"] = "Tutti i contatti"; -App::$strings["INVALID EVENT DISMISSED!"] = "EVENTO NON VALIDO ELIMINATO!"; -App::$strings["Summary: "] = "Sommario:"; -App::$strings["Unknown"] = "Sconosciuto"; -App::$strings["Date: "] = "Data:"; -App::$strings["Reason: "] = "Motivo:"; -App::$strings["INVALID CARD DISMISSED!"] = "CARD NON VALIDA ELIMINATA!"; -App::$strings["Name: "] = "Nome:"; -App::$strings["Event title"] = "Titolo dell'evento"; -App::$strings["Start date and time"] = "Data e ora di inizio"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "Esempio: YYYY-MM-DD HH:mm"; -App::$strings["End date and time"] = "Data e ora di fine"; -App::$strings["Description"] = "Descrizione"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["Previous"] = "Precendente"; -App::$strings["Next"] = "Successivo"; -App::$strings["Today"] = "Oggi"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["List month"] = "Lista del mese"; -App::$strings["List week"] = "Lista della settimana"; -App::$strings["List day"] = "Lista del giorno"; -App::$strings["More"] = "Di più"; -App::$strings["Less"] = "Meno"; -App::$strings["Select calendar"] = "Seleziona calendario"; -App::$strings["Delete all"] = "Elimina tutto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile."; -App::$strings["Name"] = "Nome"; -App::$strings["Organisation"] = "Organizzazione"; -App::$strings["Title"] = "Titolo"; -App::$strings["Phone"] = "Telefono"; -App::$strings["Email"] = "Email"; -App::$strings["Instant messenger"] = "Messaggistica istantanea"; -App::$strings["Website"] = "Sito web"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Note"] = "Nota"; -App::$strings["Mobile"] = "Mobile"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Work"] = "Lavoro"; -App::$strings["Add Contact"] = "Aggiungi contatto"; -App::$strings["Add Field"] = "Aggiungi campo"; -App::$strings["Update"] = "Aggiorna"; -App::$strings["P.O. Box"] = "P.O. Box"; -App::$strings["Additional"] = "Aggiuntivo"; -App::$strings["Street"] = "Via"; -App::$strings["Locality"] = "Località"; -App::$strings["Region"] = "Regione"; -App::$strings["ZIP Code"] = "CAP"; -App::$strings["Country"] = "Nazione"; -App::$strings["Default Calendar"] = "Calendario predefinito"; -App::$strings["Default Addressbook"] = "Rubrica predefinita"; -App::$strings["This site is not a directory server"] = "Questo non è un directory server"; -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["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["Welcome to Hubzilla!"] = "Benvenuto su Hubzilla!"; -App::$strings["You have got no unseen posts..."] = "Non hai post non letti..."; -App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["Search"] = "Cerca"; -App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; -App::$strings["Public Stream"] = "Flusso pubblico"; -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["Change Order of Pinned Navbar Apps"] = "Cambia l'ordine della app bloccate sulla barra di navigazione"; -App::$strings["Change Order of App Tray Apps"] = "Cambia l'ordine delle app elencate nel menu delle app"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione"; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Utilizza le frecce per spostare l'app su o giù nel menu delle app"; -App::$strings["Menu not found."] = "Menù non trovato."; -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["Not found."] = "Non trovato."; -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["No"] = "No"; -App::$strings["Yes"] = "Sì"; -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["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["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["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["Edit Location"] = "Modifica il luogo"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; -App::$strings["Timezone:"] = "Fuso orario: "; -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["Export"] = "Esporta"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -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["Please login."] = "Effettua l'accesso."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "messaggio di stato"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s"; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; -App::$strings["Title (optional)"] = "Titolo (facoltativo)"; -App::$strings["Edit Article"] = "Modifica l'articolo"; -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"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; -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["File to Upload"] = "File da caricare"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -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["Validate"] = "Validazione"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; -App::$strings["Remove This Channel"] = "Elimina questo canale"; -App::$strings["WARNING: "] = "ATTENZIONE:"; -App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; -App::$strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; -App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -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["Files: shared with me"] = "File: condivisi con me"; -App::$strings["NEW"] = "NOVITÀ"; -App::$strings["Size"] = "Dimensione"; -App::$strings["Last Modified"] = "Ultima modifica"; -App::$strings["Remove all files"] = "Elimina tutti i file"; -App::$strings["Remove this file"] = "Elimina questo file"; -App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; -App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; -App::$strings["Could not create table."] = "Impossibile creare le tabelle."; -App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; -App::$strings["System check"] = "Verifica del sistema"; -App::$strings["Check again"] = "Verifica di nuovo"; -App::$strings["Database connection"] = "Connessione al database"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; -App::$strings["Database Server Name"] = "Server del database"; -App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1"; -App::$strings["Database Port"] = "Port del database"; -App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; -App::$strings["Database Login Name"] = "Utente database"; -App::$strings["Database Login Password"] = "Password database"; -App::$strings["Database Name"] = "Nome database"; -App::$strings["Database Type"] = "Tipo database"; -App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."; -App::$strings["Website URL"] = "URL completo del sito"; -App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; -App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; -App::$strings["Site settings"] = "Impostazioni del hub"; -App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; -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."; -App::$strings["PHP executable path"] = "Path del comando PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; -App::$strings["Command line PHP"] = "PHP da riga di comando"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Puoi modificare queste impostazione nel file php.ini del server."; -App::$strings["PHP upload limits"] = "Limiti PHP in upload"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura"; -App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; -App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -App::$strings["PDO database PHP module"] = "PDO database PHP module"; -App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; -App::$strings["xml PHP module"] = "modulo xml PHP"; -App::$strings["zip PHP module"] = "modulo zip del 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"; -App::$strings["exec"] = "exec"; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini"; -App::$strings["shell_exec"] = "shell_exec"; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Errore: shell_exec è richiesto ma non è installato o è stato disabilitato in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; -App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; -App::$strings["Error: PDO database PHP module required but not installed."] = "Errore: PDO database PHP module è 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: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; -App::$strings["Error: zip PHP module required but not installed."] = "Errore: il modulo zip del PHP necessario ma non installato."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -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."; -App::$strings["Please see install/INSTALL.txt for additional information."] = "Leggi il file 'install/INSTALL.txt' per maggiori informazioni."; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione."; -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["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 top level web folder"] = "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web"; -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!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; -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"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -App::$strings["

What next?

"] = "

E ora?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -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["Queue Statistics"] = "Statistiche della coda"; -App::$strings["Total Entries"] = "Totale"; -App::$strings["Priority"] = "Priorità"; -App::$strings["Destination URL"] = "URL di destinazione"; -App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; -App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; -App::$strings["Last known contact"] = "Ultimo scambio dati"; -App::$strings["Off"] = "Off"; -App::$strings["On"] = "On"; -App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; -App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; -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."; -App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -App::$strings["Failed Updates"] = "Aggiornamenti falliti."; -App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; -App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; -App::$strings["Disable"] = "Disattiva"; -App::$strings["Enable"] = "Attiva"; -App::$strings["Administration"] = "Amministrazione"; -App::$strings["Plugins"] = "Plugin"; -App::$strings["Toggle"] = "Attiva/disattiva"; -App::$strings["Settings"] = "Impostazioni"; -App::$strings["Author: "] = "Autore:"; -App::$strings["Maintainer: "] = "Gestore:"; -App::$strings["Minimum project version: "] = "Minima versione hubzilla"; -App::$strings["Maximum project version: "] = "Massima versione hubzilla"; -App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; -App::$strings["Compatible Server Roles: "] = "Ruoli previsti per questo server"; -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["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["Installed Plugin Repositories"] = "Repository per i plugin installati"; -App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; -App::$strings["Switch branch"] = "Cambia branch"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "Modificato il blocco su %s account", - 1 => "Modificato il blocco verso %s", -); -App::$strings["%s account deleted"] = array( - 0 => "%s account eliminato", - 1 => "%s account eliminati", -); -App::$strings["Account not found"] = "Account non trovato"; -App::$strings["Account '%s' deleted"] = "Account '%s' eliminato"; -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["Request date"] = "Data richiesta"; -App::$strings["No registrations."] = "Nessuna registrazione."; -App::$strings["Approve"] = "Approva"; -App::$strings["Deny"] = "Nega"; -App::$strings["Block"] = "Blocca"; -App::$strings["Unblock"] = "Sblocca"; -App::$strings["ID"] = "ID"; -App::$strings["All Channels"] = "Tutti i canali"; -App::$strings["Register date"] = "Data registrazione"; -App::$strings["Last login"] = "Ultimo accesso"; -App::$strings["Expires"] = "Con scadenza"; -App::$strings["Service Class"] = "Classe dell'account"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; -App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; -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["Log level"] = "Livello di log"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "Censura modificata per %s canale", - 1 => "Censura modificata per %s canali", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s canale permette/non permette codice nei contenuti", - 1 => "%s canali permettono/non permettono codice nei contenuti", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", -); -App::$strings["Channel not found"] = "Canale non trovato"; -App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; -App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; -App::$strings["Channels"] = "Canali"; -App::$strings["Censor"] = "Applica censura"; -App::$strings["Uncensor"] = "Rimuovi censura"; -App::$strings["Allow Code"] = "Permetti codice"; -App::$strings["Disallow Code"] = "Non permettere codice"; -App::$strings["Channel"] = "Canale"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -App::$strings["No themes found."] = "Nessun tema trovato."; -App::$strings["Screenshot"] = "Istantanea dello schermo"; -App::$strings["Themes"] = "Temi"; -App::$strings["[Experimental]"] = "[Sperimentale]"; -App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; -App::$strings["Default"] = "Predefinito"; -App::$strings["%s - (Incompatible)"] = "%s - (Incompatibile)"; -App::$strings["mobile"] = "mobile"; -App::$strings["experimental"] = "sperimentale"; -App::$strings["unsupported"] = "non supportato"; -App::$strings["Yes - with approval"] = "Sì - con approvazione"; -App::$strings["My site is not a public server"] = "Non è un server pubblico"; -App::$strings["My site has paid access only"] = "È un servizio a pagamento"; -App::$strings["My site has free access only"] = "È un servizio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -App::$strings["Beginner/Basic"] = "Principiante"; -App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; -App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; -App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; -App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te!"; -App::$strings["Site"] = "Sito"; -App::$strings["Registration"] = "Registrazione"; -App::$strings["File upload"] = "Caricamento file"; -App::$strings["Policies"] = "Politiche"; -App::$strings["Advanced"] = "Avanzate"; -App::$strings["Site name"] = "Nome del sito"; -App::$strings["Site default technical skill level"] = "Livello tecnico predefinito per gli utenti del sito"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze"; -App::$strings["Lock the technical skill level setting"] = "Il livello tecnico non potrà essere modificato"; -App::$strings["Members can set their own technical comfort level by default"] = "Gli utenti possono scegliere il livello tecnico preferito"; -App::$strings["Banner/Logo"] = "Banner o logo"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "È permesso un contenuto HTML/CSS/JS non filtrato"; -App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -App::$strings["Site Information"] = "Informazioni sul sito"; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare il BBCode"; -App::$strings["System language"] = "Lingua di sistema"; -App::$strings["System theme"] = "Tema di sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; -App::$strings["Maximum image size"] = "Dimensione massima immagini"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -App::$strings["Invitation only"] = "Solo con invito"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."; -App::$strings["Minimum age"] = "Età minima"; -App::$strings["Minimum age (in years) for who may register on this site."] = "L'età minima (in anni) richiesta per registrarsi su questo sito."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -App::$strings["Register text"] = "Testo di registrazione"; -App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; -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."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; -App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; -App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; -App::$strings["Force publish"] = "Forza la publicazione del profilo"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito."; -App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."; -App::$strings["Site only Public Streams"] = "Solo i flussi pubblici su questo sito"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Consenti l'accesso a contenuti pubblici originati solo da questo sito se se è disabilitata l'importazione di flussi pubblici."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Permetti a chiunque su internet di accedere ai flussi pubblici"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Disabilita per richiedere di autenticarsi prima di visualizzare. Attenzione: questo contenuto non è moderato."; -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["Reply-to email address for system generated email."] = "Indirizzo Reply-to per mail generate dal sistema."; -App::$strings["Sender (From) email address for system generated email."] = "Indirzzo email del mittente (From) per mail generate dal sistema."; -App::$strings["Name of email sender for system generated email."] = "Nome del mittente per mail generate dal sistema"; -App::$strings["Directory Server URL"] = "URL del directory server"; -App::$strings["Default directory server"] = "Directory server predefinito"; -App::$strings["Proxy user"] = "Utente proxy"; -App::$strings["Proxy URL"] = "URL proxy"; -App::$strings["Network timeout"] = "Timeout rete"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -App::$strings["Delivery interval"] = "Recapito ritardato"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -App::$strings["Deliveries per process"] = "Tentativi di recapito per processo"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; -App::$strings["Queue Threshold"] = "Threshold della coda"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi."; -App::$strings["Poll interval"] = "Intervallo di polling"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -App::$strings["Path to ImageMagick convert program"] = "Percorso del comando convert di ImageMagic"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Permetti le anteprime SVG nell'elenco dei file"; -App::$strings["WARNING: SVG images may contain malicious code."] = "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo."; -App::$strings["Maximum Load Average"] = "Carico massimo medio"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; -App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Non far scadere nessun post che ha commenti più recenti di questo numero di giorni"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Server pubblici: Landing page (marketing) opzionale per utenti appena registrati"; -App::$strings["Create this page first. Default is %s/register"] = "Crea questa pagina prima. Il default è %s/register"; -App::$strings["Page to display after creating a new channel"] = "Pagina da visualizzare dopo la creazione di un nuovo canale"; -App::$strings["Recommend: profiles, go, or settings"] = ""; -App::$strings["Optional: site location"] = "Opzionale: site location"; -App::$strings["Region or country"] = "Regione o Paese"; -App::$strings["New Profile Field"] = "Nuovo campo del profilo"; -App::$strings["Field nickname"] = "Nome breve del campo"; -App::$strings["System name of field"] = "Nome di sistema del campo"; -App::$strings["Input type"] = "Tipo di dati"; -App::$strings["Field Name"] = "Nome del campo"; -App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; -App::$strings["Help text"] = "Testo di aiuto"; -App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; -App::$strings["Save"] = "Salva"; -App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; -App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; -App::$strings["Profile Fields"] = "Campi del profilo"; -App::$strings["Basic Profile Fields"] = "Campi base del profilo"; -App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo"; -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["Password changed for account %d."] = "La password per l'utente %d è cambiata."; -App::$strings["Account settings updated."] = "L'impostazioni sono state aggiornate."; -App::$strings["Account not found."] = "Account non trovato."; -App::$strings["Account Edit"] = "Modifica le impostazioni"; -App::$strings["New Password"] = "Nuova password"; -App::$strings["New Password again"] = "Ripeti la nuova password"; -App::$strings["Technical skill level"] = "Livello tecnico"; -App::$strings["Account language (for emails)"] = "Lingua (per le email di sistema)"; -App::$strings["Service class"] = "Classe dell'account"; -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["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["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["Allowed email domains"] = "Domini email consentiti"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -App::$strings["Not allowed email domains"] = "Domini email non consentiti"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -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["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; -App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -App::$strings["Visible to:"] = "Visibile a:"; -App::$strings["__ctx:acl__ Profile"] = "Profilo"; -App::$strings["Comment approved"] = "Commento approvato"; -App::$strings["Comment deleted"] = "Commento eliminato"; -App::$strings["Permission Name is required."] = ""; -App::$strings["Permission category saved."] = "Categoria di permessi salvata"; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Usa questo modulo per definire i permessi specifici per classi di persone o connessioni."; -App::$strings["Permission Categories"] = "Categorie di permessi"; -App::$strings["Permission Name"] = "Nome del permesso"; -App::$strings["My Settings"] = "Permessi che concedo"; -App::$strings["inherited"] = "derivato"; -App::$strings["Individual Permissions"] = "Permessi individuali"; -App::$strings["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."] = "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."; -App::$strings["Friends"] = "Amici"; -App::$strings["Settings updated."] = "Impostazioni aggiornate."; -App::$strings["Nobody except yourself"] = "Nessuno tranne te"; -App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Approved connections"] = "Contatti approvati"; -App::$strings["Any connections"] = "Tutti i contatti"; -App::$strings["Anybody on this website"] = "Chiunque su questo hub"; -App::$strings["Anybody in this network"] = "Chiunque su questa rete"; -App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; -App::$strings["Anybody on the internet"] = "Chiunque su internet"; -App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; -App::$strings["or"] = "o"; -App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "I tuoi file/foto sono accessibili via WebDAV all'indirizzo"; -App::$strings["Channel Settings"] = "Impostazioni del canale"; -App::$strings["Basic Settings"] = "Impostazioni di base"; -App::$strings["Full Name:"] = "Nome completo:"; -App::$strings["Email Address:"] = "Indirizzo email:"; -App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; -App::$strings["Default Post Location:"] = "Località predefinita:"; -App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; -App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -App::$strings["Adult Content"] = "Contenuto per adulti"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; -App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; -App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; -App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; -App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; -App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; -App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; -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 server ha la precedenza, se minore di quello impostato da te."; -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 Privacy Group"] = "Privacy Group predefinito"; -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["Profile to assign new connections"] = "Profilo da associare ai nuovi contatti"; -App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; -App::$strings["Default Permissions Group"] = "Permission Group predefinito"; -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"; -App::$strings["Notification Settings"] = "Impostazioni di notifica"; -App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; -App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; -App::$strings["joining a forum/community"] = "entro a far parte di un forum"; -App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; -App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; -App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; -App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; -App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; -App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; -App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; -App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; -App::$strings["You are tagged in a post"] = "Sei taggato in un post"; -App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; -App::$strings["Someone likes your post/comment"] = "Qualcuno mette mi piace al tuo post/commento"; -App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; -App::$strings["Unseen grid activity"] = "Nuove attività nella rete"; -App::$strings["Unseen channel activity"] = "Novità nei canali"; -App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; -App::$strings["Recommended"] = "Consigliato"; -App::$strings["Upcoming events"] = "Prossimi eventi"; -App::$strings["Events today"] = "Eventi di oggi"; -App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; -App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; -App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; -App::$strings["System info messages"] = "Notifiche di sistema"; -App::$strings["System critical alerts"] = "Avvisi critici di sistema"; -App::$strings["New connections"] = "Nuovi contatti"; -App::$strings["System Registrations"] = "Registrazioni"; -App::$strings["Unseen shared files"] = "File condivisi non ancora visitati"; -App::$strings["Unseen public activity"] = "Attività pubblica non letta"; -App::$strings["Unseen likes and dislikes"] = "Mi piace e non mi piace da leggere"; -App::$strings["Email notification hub (hostname)"] = "Hub di notifica (hostname)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Se il tuo canale è replicato su molti hub, scegli qui da dove saranno inviati i messaggi. Serve ad evitare di ricevere notifiche duplicate. Esempio: %s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostra i nuovi post in bacheca, i messaggi privati e le connessioni come Notifiche"; -App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; -App::$strings["Must be greater than 0"] = "Maggiore di 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; -App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; -App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; -App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; -App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; -App::$strings["Remove this channel."] = "Elimina questo canale."; -App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["Start calendar week on Monday"] = "Inizia la settimana nel calendario da lunedì"; -App::$strings["Additional Features"] = "Funzionalità opzionali"; -App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Serve ad adeguare l'interfaccia e le funzionalità mostrate alla tua dimestichezza"; -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["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 private content."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a 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["Their Settings"] = "Permessi concessi a te"; -App::$strings["Name and Secret are required"] = "Nome e Password sono obbligatori"; -App::$strings["Add OAuth2 application"] = "Aggiungi applicazione OAuth2"; -App::$strings["Name of application"] = "Nome dell'applicazione"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -App::$strings["Redirect"] = "Redirect"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; -App::$strings["Grant Types"] = ""; -App::$strings["leave blank unless your application sepcifically requires this"] = "lascia bianco a meno che la applicazione non lo richieda esplicitamente"; -App::$strings["Authorization scope"] = "Ambito dell'autorizzazione"; -App::$strings["OAuth2 Application not found."] = "Applicazione OAuth2 non trovata."; -App::$strings["Add application"] = "Aggiungi una app"; -App::$strings["Connected OAuth2 Apps"] = "Applicazioni OAuth2 connesse"; -App::$strings["Client key starts with"] = "La client key inizia con"; -App::$strings["No name"] = "Nessun nome"; -App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; -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."; -App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; -App::$strings["Password verification failed."] = "Verifica della password fallita."; -App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -App::$strings["Password changed."] = "Password cambiata."; -App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -App::$strings["Account Settings"] = "Il tuo account"; -App::$strings["Current Password"] = "Password attuale"; -App::$strings["Enter New Password"] = "Nuova password"; -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["Remove Account"] = "Elimina l'account"; -App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["Affinity Slider settings updated."] = "Impostazioni dell'Affinity Slider salvate."; -App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -App::$strings["Default maximum affinity level"] = "Livello di affinità predefinito massimo "; -App::$strings["0-99 default 99"] = "0-99 predefinito 99"; -App::$strings["Default minimum affinity level"] = "Livello di affinità predefinito minimo"; -App::$strings["0-99 - default 0"] = "0-99 - predefinito 0"; -App::$strings["Affinity Slider Settings"] = "Impostazioni dell'Affinity Slider"; -App::$strings["Addon Settings"] = "Impostazioni del componente aggiuntivo"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Salva/invia i cambiamenti prima di cambiare pannello."; -App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; -App::$strings["Display Settings"] = "Aspetto"; -App::$strings["Theme Settings"] = "Impostazioni del tema"; -App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; -App::$strings["Content Settings"] = "Impostazioni dei contenuti"; -App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; -App::$strings["Select scheme"] = "Scegli uno schema"; -App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; -App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; -App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; -App::$strings["Maximum of 100 items"] = "Massimo 100"; -App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; -App::$strings["Provide channel menu in navigation bar"] = "Visualizza il menu del canale nella barra di navigazione"; -App::$strings["Default: channel menu located in app menu"] = "Predefinito: menu del canale nel menu delle app"; -App::$strings["Manual conversation updates"] = "Aggiornamenti manuali alla conversazione"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "Se non è attiva può causare scorrimenti imprevisti della pagina"; -App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; -App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; -App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; -App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; -App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; -App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; -App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; -App::$strings["Name is required"] = "Il nome è obbligatorio"; -App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Icon url"] = "Url icona"; -App::$strings["Optional"] = "Facoltativo"; -App::$strings["Application not found."] = "Applicazione non trovata."; -App::$strings["Connected Apps"] = "App connesse"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Upload"] = "Carica"; -App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; -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["Permissions"] = "Permessi"; -App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Connection added."] = "Contatto aggiunto."; -App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; -App::$strings["Import completed."] = "L'importazione è terminata con successo."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; -App::$strings["Your old login password"] = "La password per il vecchio hub"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; -App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; -App::$strings["Move this channel (disable all previous locations)"] = "Sposta questo canale (disabilita le posizioni precedenti)"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importa alcune mesi di post se possibile (dipende dalla memoria disponibile"; -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["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["Permissions denied."] = "Permesso negato."; -App::$strings["Import"] = "Importa"; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -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["Item not available."] = "Elemento non disponibile."; -App::$strings["Edit Block"] = "Modifica il block"; -App::$strings["vcard"] = "vcard"; -App::$strings["Apps"] = "App"; -App::$strings["Manage apps"] = "Gestisci le app"; -App::$strings["Create new app"] = "Crea nuova app"; -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["Active"] = "Attivo"; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived/Unreachable"] = "Archiviato/Irraggiungibile"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["Active Connections"] = "Contatto Attivo"; -App::$strings["Show active connections"] = "Mostra i contatti atttivi"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived/unreachable connections"] = "Mostra solo i contatti archiviati/irraggiungibili"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["Not connected at this location"] = "Non connesso a questa location"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Call"] = "Chiama"; -App::$strings["Status"] = "Stato"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Find"] = "Cerca"; -App::$strings["item"] = "elemento"; -App::$strings["Source of Item"] = "Sorgente"; -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["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"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Description (optional)"] = "Descrizione (opzionale)"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["Add Photos"] = "Aggiungi foto"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Move photo to album"] = "Sposta la foto in un album"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["__ctx:title__ Likes"] = "\"Mi piace\""; -App::$strings["__ctx:title__ Dislikes"] = "\"Non mi piace\""; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "\"Mi piace\"", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "\"Non mi piace\"", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "\"Mi piace\""; -App::$strings["__ctx:noun__ Dislikes"] = "\"Non mi piace\""; -App::$strings["Close"] = "Chiudi"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["Profile Unavailable."] = "Profilo non dispobibile"; -App::$strings["Not found"] = "Non trovato"; -App::$strings["Invalid channel"] = "Canale non valido"; -App::$strings["Error retrieving wiki"] = "Errore caricamento wiki"; -App::$strings["Error creating zip file export folder"] = "Errore nella creazione della cartella per l'esportazione in zip"; -App::$strings["Error downloading wiki: "] = "Errore scaricamento wiki:"; -App::$strings["Wikis"] = "Pagine wiki"; -App::$strings["Download"] = "Scarica"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Wiki name"] = "Nome wiki"; -App::$strings["Content type"] = "Tipo di contenuto"; -App::$strings["Markdown"] = "Markdown"; -App::$strings["BBcode"] = "BBCode"; -App::$strings["Text"] = "Testo"; -App::$strings["Type"] = "Tipo"; -App::$strings["Any type"] = "Qualsiasi tipo"; -App::$strings["Lock content type"] = "Blocca il tipo di contenuto"; -App::$strings["Create a status post for this wiki"] = "Crea un messaggio di stato per questo wiki"; -App::$strings["Edit Wiki Name"] = "Modifica il nome del Wiki"; -App::$strings["Wiki not found"] = "Wiki non trovato"; -App::$strings["Rename page"] = "Rinomina la pagina"; -App::$strings["Error retrieving page content"] = "Errore nel caricamento del contenuto della pagina"; -App::$strings["New page"] = "Nuova pagina"; -App::$strings["Revision Comparison"] = "Confronto tra revisioni"; -App::$strings["Revert"] = "Ripristina"; -App::$strings["Short description of your changes (optional)"] = "Breve descrizione delle tue modifiche (opzionale)"; -App::$strings["Source"] = "Sorgente"; -App::$strings["New page name"] = "Nome della nuova pagina"; -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 album diverso"; -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["Error creating wiki. Invalid name."] = "Errore nella creazione. Nome non valido."; -App::$strings["A wiki with this name already exists."] = "Un Wiki con questo nome esiste già"; -App::$strings["Wiki created, but error creating Home page."] = "Wiki creato, ma c'è stato un errore nella creazione della Home page."; -App::$strings["Error creating wiki"] = "Errore nella creazione del Wiki"; -App::$strings["Error updating wiki. Invalid name."] = "Errore nell'aggiornamento del Wiki. Nome non valido."; -App::$strings["Error updating wiki"] = "Errore nell'aggiornamento del Wiki"; -App::$strings["Wiki delete permission denied."] = "Permesso negato nell'eliminare del Wiki"; -App::$strings["Error deleting wiki"] = "Errore nell'eliminare il Wiki"; -App::$strings["New page created"] = "Nuova pagina creata"; -App::$strings["Cannot delete Home"] = "Non è possibile eliminare la Home"; -App::$strings["Current Revision"] = "Revisione corrente"; -App::$strings["Selected Revision"] = "Revisione selezionata"; -App::$strings["You must be authenticated."] = "Devi autenticarti."; -App::$strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["(modified)"] = "(modificato)"; -App::$strings["Reset"] = "Reimposta"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; -App::$strings["Edit another layout"] = "Modifica un altro layout"; -App::$strings["System layout"] = "Layout 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["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -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["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Use Photo for Profile"] = "Usa la foto per il profilo"; -App::$strings["Change Profile Photo"] = "Cambia la foto del profilo"; -App::$strings["Use"] = "Usa"; -App::$strings["Use a photo from your albums"] = "Usa una foto presa dai tuoi album"; -App::$strings["Select existing photo"] = "Seleziona una foto esistente"; -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["Away"] = "Assente"; -App::$strings["Online"] = "Online"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Your comment is awaiting approval."] = "Il tuo contenuto è in attesa di approvazione."; -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["sent you a private message"] = "ti ha inviato un messaggio privato"; -App::$strings["added your channel"] = "ha aggiunto il tuo canale"; -App::$strings["requires approval"] = "richiede approvazione"; -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["shared a file with you"] = "ha condiviso un file con te"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Page not found."] = "Pagina non trovata."; -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["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."; -App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -App::$strings["is now connected to"] = "ha come nuovo contatto"; -App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; -App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; -App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; -App::$strings["View Profile"] = "Profilo"; -App::$strings["View %s's profile"] = "Guarda il profilo di %s"; -App::$strings["Refresh Permissions"] = "Modifica i permessi"; -App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; -App::$strings["Refresh Photo"] = "Ricarica la foto"; -App::$strings["Fetch updated photo"] = "Aggiorna la foto"; -App::$strings["Recent Activity"] = "Attività recenti"; -App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; -App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; -App::$strings["Unignore"] = "Non ignorare"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; -App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; -App::$strings["Unarchive"] = "Non archiviare"; -App::$strings["Archive"] = "Archivia"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; -App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; -App::$strings["Unhide"] = "Non nascondere"; -App::$strings["Hide"] = "Nascondi"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; -App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; -App::$strings["Delete this connection"] = "Elimina questo contatto"; -App::$strings["Fetch Vcard"] = "Aggiorna la Vcard"; -App::$strings["Fetch electronic calling card for this connection"] = "Scarica la scheda con le informazioni di questo contatto"; -App::$strings["Open Individual Permissions section by default"] = "Apri automaticamente la sezione Permessi individuali"; -App::$strings["Affinity"] = "Affinità"; -App::$strings["Open Set Affinity section by default"] = "Apri la sezione Imposta affinità per default"; -App::$strings["Me"] = "Me"; -App::$strings["Family"] = "Famiglia"; -App::$strings["Acquaintances"] = "Conoscenti"; -App::$strings["Filter"] = "Filtra"; -App::$strings["Open Custom Filter section by default"] = "Apri automaticamente la sezione con i Filtri personalizzati"; -App::$strings["Approve this connection"] = "Approva questo contatto"; -App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; -App::$strings["Set Affinity"] = "Scegli l'affinità"; -App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; -App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; -App::$strings["This connection is unreachable from this location."] = "Questo contatto non è raggiungibile dal server in uso"; -App::$strings["This connection may be unreachable from other channel locations."] = "Questo contatto potrebbe non essere raggiungibile da altri canali"; -App::$strings["Location independence is not supported by their network."] = "Nella loro rete la location independence non è supportata."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Il contatto indicato non è raggiungibile. Nella loro rete la location independence non è supportata."; -App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; -App::$strings["Connection: %s"] = "Contatto: %s"; -App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; -App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; -App::$strings["Permission role"] = "Ruolo"; -App::$strings["Loading"] = "Sto caricando"; -App::$strings["Add permission role"] = "Aggiungi un ruolo"; -App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; -App::$strings["Available locations:"] = "Indirizzi disponibili"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; -App::$strings["Connection Tools"] = "Gestione del contatto"; -App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; -App::$strings["Optionally explain your rating"] = "Commento facoltativo"; -App::$strings["Custom Filter"] = "Filtro personalizzato"; -App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; -App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; -App::$strings["This information is public!"] = "Questa informazione è pubblica!"; -App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; -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["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["Details"] = "Dettagli"; -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["New Chatroom"] = "Nuova chat"; -App::$strings["Chatroom name"] = "Nome chat"; -App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; -App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; -App::$strings["Expiration"] = "Scadenza"; -App::$strings["min"] = "min"; -App::$strings["Photos"] = "Foto"; -App::$strings["Files"] = "Archivio file"; -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["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["Layouts"] = "Layout"; -App::$strings["Help"] = "Guida"; -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["Please refresh page"] = "Per favore ricarica la pagina"; -App::$strings["Unknown error"] = "Errore sconosciuto"; -App::$strings["Token verification failed."] = "Verifica del token fallita"; -App::$strings["Email Verification Required"] = "È richiesta una verifica della mail"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Un token di verifica è stato spedito al tuo indirizzo email [%s]. Inserisci il token qui per completare la verifica dell'account. Per favore attendi qualche minuti e controlla lo spam se non vedi il messaggio."; -App::$strings["Resend Email"] = "Reinvia la mail"; -App::$strings["Validation token"] = "Token di validazione"; -App::$strings["Post not found."] = "Post non trovato."; -App::$strings["post"] = "il post"; -App::$strings["comment"] = "il commento"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; -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["If enabled, connection requests will be approved without your interaction"] = "Se abilitato, le richieste di contatto saranno approvate automaticamente"; -App::$strings["Automatic approval settings"] = "Impostazioni di approvazione automatica"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; -App::$strings["Unknown App"] = "Applicazione sconosciuta"; -App::$strings["Authorize"] = "Autorizza"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorizzi la app %s ad accedere ai dati del tuo canale?"; -App::$strings["Allow"] = "Autorizza"; -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."; -App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; -App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; -App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; -App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; -App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; -App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; -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["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["Gender"] = "Sesso"; -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["Relationship"] = "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["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["Homepage URL"] = "Indirizzo home page"; -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["Communications"] = "Comunicazioni"; -App::$strings["Profile Image"] = "Immagine del profilo"; -App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; -App::$strings["This page is available only to site members"] = "Questa pagina è accessibile solo agli utenti registrati"; -App::$strings["Welcome"] = "Benvenuto"; -App::$strings["What would you like to do?"] = "Vorresti farlo?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Per favore metti questa pagina nei preferiti se vuoi ritornarci in futuro"; -App::$strings["Upload a profile photo"] = "Carica una foto per il profilo"; -App::$strings["Upload a cover photo"] = "Carica una foto di copertina"; -App::$strings["Edit your default profile"] = "Modifica il tuo profilo predefinito"; -App::$strings["View friend suggestions"] = "Guarda i suggerimenti di amicizia"; -App::$strings["View the channel directory"] = "Guarda l'elenco dei canali"; -App::$strings["View/edit your channel settings"] = "Guarda/modifica le impostazioni del tuo canale"; -App::$strings["View the site or project documentation"] = "Guarda la documentazione del sito o del progetto"; -App::$strings["Visit your channel homepage"] = "Visita la pagina iniziale del tuo canale"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Guarda i tuoi contatti e/o aggiungine qualcuno di cui hai l'indirizzo"; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Guarda il tuo flusso personale (potrebbe essere vuoto finché non aggiungi connessioni)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Vedi il flusso pubblico. Attenzione: contenuti non moderati"; -App::$strings["Page link"] = "Link alla pagina"; -App::$strings["Edit Webpage"] = "Modifica la pagina web"; -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["Cards"] = "Card"; -App::$strings["Add Card"] = "Aggiungi card"; -App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; -App::$strings["About this site"] = "Informazioni su questo sito"; -App::$strings["Site Name"] = "Nome del sito"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["Software and Project information"] = "Informazioni sul software e sul progetto"; -App::$strings["This site is powered by \$Projectname"] = "Questo sito è costruito con \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; -App::$strings["Version %s"] = "Versione %s"; -App::$strings["Project homepage"] = "Homepage del progetto"; -App::$strings["Developer homepage"] = "Homepege dello sviluppatore"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; -App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; -App::$strings["Import selected"] = "Importa i selezionati"; -App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; -App::$strings["Export selected"] = "Esporta i selezionati"; -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["Invalid file type."] = "Tipo di file non valido."; -App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; -App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; -App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; -App::$strings["Import complete."] = "Importazione completata."; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Non è possibile cambiare il nome del canale entro le 48 dal cambio della password dell'account."; -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["Change channel nickname/address"] = "Cambia il nome/indirizzo del canale"; -App::$strings["Any/all connections on other networks will be lost!"] = "Tutti i contatti su altre reti saranno persi!"; -App::$strings["New channel address"] = ""; -App::$strings["Rename Channel"] = ""; -App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -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["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."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Sorgenti del canale"; -App::$strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; -App::$strings["New Source"] = "Nuova sorgente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; -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["Source not found."] = "Sorgente non trovata."; -App::$strings["Edit Source"] = "Modifica la sorgente"; -App::$strings["Delete Source"] = "Elimina la sorgente"; -App::$strings["Source removed"] = "Sorgente eliminata"; -App::$strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; -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["%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["No default suggestions were found."] = ""; -App::$strings["%d rating"] = array( - 0 => "%d valutazione", - 1 => "%d valutazioni", -); -App::$strings["Gender: "] = "Sesso:"; -App::$strings["Status: "] = "Stato:"; -App::$strings["Homepage: "] = "Homepage:"; -App::$strings["Age:"] = "Età:"; -App::$strings["Location:"] = "Luogo:"; -App::$strings["Description:"] = "Descrizione:"; -App::$strings["Hometown:"] = "Città dove vivo:"; -App::$strings["About:"] = "Informazioni:"; -App::$strings["Connect"] = "Aggiungi"; -App::$strings["Public Forum:"] = "Forum pubblico:"; -App::$strings["Keywords: "] = "Parole chiave:"; -App::$strings["Don't suggest"] = "Non fornire suggerimenti"; -App::$strings["Common connections (estimated):"] = ""; -App::$strings["Global Directory"] = "Elenchi pubblici globali"; -App::$strings["Local Directory"] = "Elenco canali su questo hub"; -App::$strings["Finding:"] = "Ricerca:"; -App::$strings["Channel Suggestions"] = "Canali suggeriti"; -App::$strings["next page"] = "pagina successiva"; -App::$strings["previous page"] = "pagina precedente"; -App::$strings["Sort options"] = "Opzioni di ordinamento"; -App::$strings["Alphabetic"] = "Alfabetico"; -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["Xchan Lookup"] = "Ricerca canale"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; -App::$strings["Ignore/Hide"] = "Ignora/nascondi"; -App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -App::$strings["Post successful."] = "Inviato!"; -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"] = ""; -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["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 fornire alcune funzionalità o l'intero servizio 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["Rate"] = "Valuta"; -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["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; -App::$strings["Save Bookmark"] = "Salva segnalibro"; -App::$strings["URL of bookmark"] = "URL del segnalibro"; -App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -App::$strings["Enter a folder name"] = ""; -App::$strings["or select an existing folder (doubleclick)"] = ""; -App::$strings["Save to Folder"] = "Salva nella cartella"; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Continue to create your first channel..."] = ""; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; -App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; -App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over %s years of age and accept the %s for this website"] = ""; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -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 requires email verification. After completing this form, please check your email for further instructions."] = ""; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Change Cover Photo"] = ""; -App::$strings["Documentation Search"] = "Ricerca nella guida"; -App::$strings["About"] = "Informazioni"; -App::$strings["Administrators"] = ""; -App::$strings["Developers"] = ""; -App::$strings["Tutorials"] = ""; -App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Contents"] = ""; -App::$strings["Article"] = ""; -App::$strings["Item has been removed."] = ""; -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["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["Invalid channel."] = ""; -App::$strings["network"] = "rete"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; -App::$strings["Permission Denied."] = "Permesso negato."; -App::$strings["File not found."] = "File non trovato."; -App::$strings["Edit file permissions"] = "Modifica i permessi del file"; -App::$strings["Set/edit permissions"] = "Modifica i permessi"; -App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -App::$strings["Return to file list"] = "Torna all'elenco dei file"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -App::$strings["Share this file"] = "Condividi questo file"; -App::$strings["Show URL to this file"] = "Mostra l'URL del file"; -App::$strings["Show in your contacts shared folder"] = ""; -App::$strings["No channel."] = "Nessun canale."; -App::$strings["No connections in common."] = "Nessun contatto in comune."; -App::$strings["View Common Connections"] = ""; -App::$strings["Email verification resent"] = ""; -App::$strings["Unable to resend email verification message."] = ""; -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["Blocked accounts"] = "Account bloccati"; -App::$strings["Expired accounts"] = ""; -App::$strings["Expiring accounts"] = ""; -App::$strings["Clones"] = ""; -App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; -App::$strings["Summary"] = "Riepilogo"; -App::$strings["Registered accounts"] = "Account creati"; -App::$strings["Pending registrations"] = "Registrazioni da approvare"; -App::$strings["Registered channels"] = "Canali creati"; -App::$strings["Active plugins"] = "Plugin attivi"; -App::$strings["Version"] = "Versione"; -App::$strings["Repository version (master)"] = "Versione del repository (master)"; -App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; -App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; -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["Edit Card"] = ""; -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["Mark all seen"] = "Marca tutto come letto"; -App::$strings["0. Beginner/Basic"] = ""; -App::$strings["1. Novice - not skilled but willing to learn"] = ""; -App::$strings["2. Intermediate - somewhat comfortable"] = ""; -App::$strings["3. Advanced - very comfortable"] = ""; -App::$strings["4. Expert - I can write computer code"] = ""; -App::$strings["5. Wizard - I probably know more than you do"] = ""; -App::$strings["Site Admin"] = "Amministrazione sito"; -App::$strings["Report Bug"] = "Segnala il bug"; -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["Activity"] = "Attività"; -App::$strings["Wiki"] = "Wiki"; -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["This email was sent by %1\$s at %2\$s."] = ""; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; -App::$strings["To stop receiving these messages, please adjust your %s."] = ""; -App::$strings["%s "] = "%s "; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notifica] Nuovo messaggio su %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; -App::$strings["a private message"] = "un messaggio privato"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; -App::$strings["commented on"] = "ha commentato"; -App::$strings["liked"] = ""; -App::$strings["disliked"] = ""; -App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = ""; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; -App::$strings["Please visit %s to approve or reject this comment."] = ""; -App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, a %2\$s [zrl=%3\$s]tuo %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1\$d di %2\$s"; -App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, a %2\$s piace l'elemento/conversazione che hai creato"; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notifica] %s ha scritto sulla tua bacheca"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notifica] %s ti ha taggato"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notifica] %1\$s ti ha mandato un poke"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notifica] %s ha taggato il tuo post"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notifica] Hai una richiesta di amicizia"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; -App::$strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notifica] Ti è stato suggerito un amico"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; -App::$strings["Name:"] = "Nome:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notifica]"; -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["edited a post dated %s"] = ""; -App::$strings["edited a comment dated %s"] = ""; -App::$strings["Wiki updated successfully"] = ""; -App::$strings["Wiki files deleted successfully"] = ""; -App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s"; -App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; -App::$strings["Private Message"] = "Messaggio privato"; -App::$strings["Select"] = "Scegli"; -App::$strings["I will attend"] = "Parteciperò"; -App::$strings["I will not attend"] = "Non parteciperò"; -App::$strings["I might attend"] = "Forse parteciperò"; -App::$strings["I agree"] = "Sono d'accordo"; -App::$strings["I disagree"] = "Non sono d'accordo"; -App::$strings["I abstain"] = "Mi astengo"; -App::$strings["Add Star"] = "Aggiungi ai preferiti"; -App::$strings["Remove Star"] = "Rimuovi dai preferiti"; -App::$strings["Toggle Star Status"] = "Attiva/disattiva preferito"; -App::$strings["starred"] = "preferito"; -App::$strings["Message signature validated"] = "Messaggio con firma verificata"; -App::$strings["Message signature incorrect"] = "Massaggio con firma non corretta"; -App::$strings["Add Tag"] = "Aggiungi un tag"; -App::$strings["like"] = "mi piace"; -App::$strings["dislike"] = "non mi piace"; -App::$strings["Share This"] = "Condividi"; -App::$strings["share"] = "condividi"; -App::$strings["Delivery Report"] = "Rapporto di trasmissione"; -App::$strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -App::$strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -App::$strings["from %s"] = "da %s"; -App::$strings["last edited: %s"] = "ultima modifica: %s"; -App::$strings["Expires: %s"] = "Scadenza: %s"; -App::$strings["Attend"] = ""; -App::$strings["Attendance Options"] = ""; -App::$strings["Vote"] = ""; -App::$strings["Voting Options"] = ""; -App::$strings["Save Bookmarks"] = "Salva segnalibro"; -App::$strings["Add to Calendar"] = "Aggiungi al calendario"; -App::$strings["This is an unsaved preview"] = ""; -App::$strings["%s show all"] = "%s mostra tutto"; -App::$strings["Bold"] = "Grassetto"; -App::$strings["Italic"] = "Corsivo"; -App::$strings["Underline"] = "Sottolineato"; -App::$strings["Quote"] = "Citazione"; -App::$strings["Code"] = "Codice"; -App::$strings["Image"] = "Immagine"; -App::$strings["Attach File"] = ""; -App::$strings["Insert Link"] = "Collegamento"; -App::$strings["Video"] = "Video"; -App::$strings["Your full name (required)"] = ""; -App::$strings["Your email address (required)"] = ""; -App::$strings["Your website URL (optional)"] = ""; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo."; -App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; -App::$strings["parent"] = "cartella superiore"; -App::$strings["Collection"] = "Cartella"; -App::$strings["Principal"] = "Principale"; -App::$strings["Addressbook"] = "Rubrica"; -App::$strings["Calendar"] = "Calendario"; -App::$strings["Schedule Inbox"] = "Appuntamenti ricevuti"; -App::$strings["Schedule Outbox"] = "Appuntamenti inviati"; -App::$strings["Total"] = "Totale"; -App::$strings["Shared"] = "Condiviso"; -App::$strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s%)"; -App::$strings["WARNING:"] = "ATTENZIONE:"; -App::$strings["Create new folder"] = "Nuova cartella"; -App::$strings["Upload file"] = "Carica un file"; -App::$strings["Drop files here to immediately upload"] = "Trascina i file qui per caricarli al volo"; -App::$strings["Forums"] = "Forum"; -App::$strings["Select Channel"] = ""; -App::$strings["Read-write"] = ""; -App::$strings["Read-only"] = ""; -App::$strings["My Calendars"] = ""; -App::$strings["Shared Calendars"] = ""; -App::$strings["Share this calendar"] = ""; -App::$strings["Calendar name and color"] = ""; -App::$strings["Create new calendar"] = ""; -App::$strings["Calendar Name"] = ""; -App::$strings["Calendar Tools"] = ""; -App::$strings["Import calendar"] = ""; -App::$strings["Select a calendar to import to"] = ""; -App::$strings["Addressbooks"] = ""; -App::$strings["Addressbook name"] = ""; -App::$strings["Create new addressbook"] = ""; -App::$strings["Addressbook Name"] = ""; -App::$strings["Addressbook Tools"] = ""; -App::$strings["Import addressbook"] = ""; -App::$strings["Select an addressbook to import to"] = ""; -App::$strings["Categories"] = "Categorie"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["HQ Control Panel"] = ""; -App::$strings["Create a new post"] = ""; -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["Chatrooms"] = "Chat"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["__ctx:widget__ Activity"] = "Attività"; -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["Wiki List"] = "Elenco wiki"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Saved Searches"] = "Ricerche salvate"; -App::$strings["add"] = "aggiungi"; -App::$strings["Notes"] = "Note"; -App::$strings["Add new page"] = ""; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Page name"] = ""; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Profile Creation"] = ""; -App::$strings["Upload profile photo"] = ""; -App::$strings["Upload cover photo"] = ""; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Find and Connect with others"] = ""; -App::$strings["Manage your connections"] = ""; -App::$strings["Communicate"] = ""; -App::$strings["View your channel homepage"] = ""; -App::$strings["View your network stream"] = ""; -App::$strings["Documentation"] = ""; -App::$strings["View public stream. Warning: not moderated"] = ""; -App::$strings["New Member Links"] = ""; -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["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Addon settings"] = ""; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione cloni del tuo canale"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Permission Groups"] = ""; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["New Network Activity"] = "Nuova attività nella tua rete"; -App::$strings["New Network Activity Notifications"] = ""; -App::$strings["View your network activity"] = ""; -App::$strings["Mark all notifications read"] = ""; -App::$strings["Show new posts only"] = ""; -App::$strings["Filter by name"] = ""; -App::$strings["New Home Activity"] = ""; -App::$strings["New Home Activity Notifications"] = ""; -App::$strings["View your home activity"] = ""; -App::$strings["Mark all notifications seen"] = ""; -App::$strings["New Mails"] = ""; -App::$strings["New Mails Notifications"] = ""; -App::$strings["View your private mails"] = ""; -App::$strings["Mark all messages seen"] = ""; -App::$strings["New Events"] = ""; -App::$strings["New Events Notifications"] = ""; -App::$strings["View events"] = ""; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["New Connections Notifications"] = ""; -App::$strings["View all connections"] = ""; -App::$strings["New Files"] = ""; -App::$strings["New Files Notifications"] = ""; -App::$strings["Notices"] = "Avvisi"; -App::$strings["View all notices"] = ""; -App::$strings["Mark all notices seen"] = ""; -App::$strings["New Registrations"] = ""; -App::$strings["New Registrations Notifications"] = ""; -App::$strings["Public Stream Notifications"] = ""; -App::$strings["View the public stream"] = ""; -App::$strings["Sorry, you have got no notifications at the moment"] = ""; -App::$strings["Source channel not found."] = ""; -App::$strings["Create an account to access services and applications"] = ""; -App::$strings["Logout"] = "Esci"; -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?"; -App::$strings["[\$Projectname] Website SSL error for %s"] = ""; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; -App::$strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati."; -App::$strings["never"] = "mai"; -App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; -App::$strings["Theme settings"] = "Impostazioni del tema"; -App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; -App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; -App::$strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone"; -App::$strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva"; -App::$strings["Link color"] = ""; -App::$strings["Set font-color for banner"] = "Colore del font del banner"; -App::$strings["Set the background color"] = "Colore di sfondo"; -App::$strings["Set the background image"] = "Immagine di sfondo"; -App::$strings["Set the background color of items"] = "Colore di sfondo degli oggetti"; -App::$strings["Set the background color of comments"] = "Colore di sfondo dei commenti"; -App::$strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; -App::$strings["Examples: 1rem, 100%, 16px"] = ""; -App::$strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti"; -App::$strings["Set radius of corners"] = "Raggio degli angoli stondati"; -App::$strings["Example: 4px"] = "Esempio: 4px"; -App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; -App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel"; -App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito"; -App::$strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina"; -App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione"; -App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; -App::$strings["Errors encountered deleting database table "] = "Errore nella cancellazione della tabella"; -App::$strings["Submit Settings"] = "Invia impostazioni"; -App::$strings["Drop tables when uninstalling?"] = ""; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = ""; -App::$strings["Mapbox Access Token"] = ""; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = ""; -App::$strings["Rendezvous"] = ""; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = ""; -App::$strings["Welcome to Rendezvous!"] = ""; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = ""; -App::$strings["Let's meet here"] = "Incontriamoci qui"; -App::$strings["New marker"] = "Nuovo segnaposto"; -App::$strings["Edit marker"] = "Modifica segnaposto"; -App::$strings["New identity"] = "Nuova identità"; -App::$strings["Delete marker"] = "Elimina segnaposto"; -App::$strings["Delete member"] = "Elimina membro"; -App::$strings["Edit proximity alert"] = ""; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = ""; -App::$strings["distance"] = "distanza"; -App::$strings["Proximity alert distance (meters)"] = ""; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = ""; -App::$strings["Marker proximity alert"] = ""; -App::$strings["Reminder note"] = "Nota per il promemoria"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = ""; -App::$strings["Add new rendezvous"] = ""; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = ""; -App::$strings["Some setting"] = ""; -App::$strings["A setting"] = ""; -App::$strings["Skeleton Settings"] = ""; -App::$strings["GNU-Social Protocol Settings updated."] = ""; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; -App::$strings["Enable the GNU-Social protocol for this channel"] = ""; -App::$strings["GNU-Social Protocol Settings"] = ""; -App::$strings["Follow"] = "Segui"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s sta ora seguendo %2\$s"; -App::$strings["Planets Settings updated."] = ""; -App::$strings["Enable Planets Plugin"] = ""; -App::$strings["Planets Settings"] = ""; -App::$strings["System defaults:"] = ""; -App::$strings["Preferred Clipart IDs"] = ""; -App::$strings["List of preferred clipart ids. These will be shown first."] = ""; -App::$strings["Default Search Term"] = ""; -App::$strings["The default search term. These will be shown second."] = ""; -App::$strings["Return After"] = ""; -App::$strings["Page to load after image selection."] = ""; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Profile List"] = ""; -App::$strings["Order of Preferred"] = ""; -App::$strings["Sort order of preferred clipart ids."] = ""; -App::$strings["Newest first"] = ""; -App::$strings["As entered"] = ""; -App::$strings["Order of other"] = ""; -App::$strings["Sort order of other clipart ids."] = ""; -App::$strings["Most downloaded first"] = ""; -App::$strings["Most liked first"] = ""; -App::$strings["Preferred IDs Message"] = ""; -App::$strings["Message to display above preferred results."] = ""; -App::$strings["Uploaded by: "] = "Caricato da:"; -App::$strings["Drawn by: "] = ""; -App::$strings["Use this image"] = "Usa questa immagine"; -App::$strings["Or select from a free OpenClipart.org image:"] = ""; -App::$strings["Search Term"] = "Termine di ricerca"; -App::$strings["Unknown error. Please try again later."] = "Errore sconosciuto. Per favore riprova più tardi."; -App::$strings["Profile photo updated successfully."] = ""; -App::$strings["Flag Adult Photos"] = "Marca le foto per adulti"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Permetti di nascondere le foto inappropriate nella visualizzazione degli album"; -App::$strings["Post to WordPress"] = ""; -App::$strings["Enable WordPress Post Plugin"] = ""; -App::$strings["WordPress username"] = ""; -App::$strings["WordPress password"] = ""; -App::$strings["WordPress API URL"] = ""; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = ""; -App::$strings["WordPress blogid"] = ""; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = ""; -App::$strings["Post to WordPress by default"] = ""; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = ""; -App::$strings["WordPress Post Settings"] = ""; -App::$strings["Wordpress Settings saved."] = ""; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; -App::$strings["Enable Content filter"] = ""; -App::$strings["Comma separated list of keywords to hide"] = ""; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; -App::$strings["Not Safe For Work Settings"] = ""; -App::$strings["General Purpose Content Filter"] = ""; -App::$strings["NSFW Settings saved."] = ""; -App::$strings["Possible adult content"] = ""; -App::$strings["%s - view"] = ""; -App::$strings["Post to Insanejournal"] = ""; -App::$strings["Enable InsaneJournal Post Plugin"] = ""; -App::$strings["InsaneJournal username"] = ""; -App::$strings["InsaneJournal password"] = ""; -App::$strings["Post to InsaneJournal by default"] = ""; -App::$strings["InsaneJournal Post Settings"] = ""; -App::$strings["Insane Journal Settings saved."] = ""; -App::$strings["Post to Dreamwidth"] = ""; -App::$strings["Enable Dreamwidth Post Plugin"] = ""; -App::$strings["Dreamwidth username"] = ""; -App::$strings["Dreamwidth password"] = ""; -App::$strings["Post to Dreamwidth by default"] = ""; -App::$strings["Dreamwidth Post Settings"] = ""; -App::$strings["New registration"] = ""; -App::$strings["Message sent to %s. New account registration: %s"] = ""; -App::$strings["Hubzilla Directory Stats"] = ""; -App::$strings["Total Hubs"] = ""; -App::$strings["Hubzilla Hubs"] = ""; -App::$strings["Friendica Hubs"] = ""; -App::$strings["Diaspora Pods"] = ""; -App::$strings["Hubzilla Channels"] = ""; -App::$strings["Friendica Channels"] = ""; -App::$strings["Diaspora Channels"] = ""; -App::$strings["Aged 35 and above"] = ""; -App::$strings["Aged 34 and under"] = ""; -App::$strings["Average Age"] = ""; -App::$strings["Known Chatrooms"] = ""; -App::$strings["Known Tags"] = ""; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; -App::$strings["Your Webbie:"] = ""; -App::$strings["Fontsize (px):"] = ""; -App::$strings["Link:"] = ""; -App::$strings["Like us on Hubzilla"] = "Metti un like su Hubzilla"; -App::$strings["Embed:"] = ""; -App::$strings["Photos imported"] = ""; -App::$strings["Redmatrix Photo Album Import"] = ""; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = ""; -App::$strings["Redmatrix Server base URL"] = ""; -App::$strings["Redmatrix Login Username"] = ""; -App::$strings["Redmatrix Login Password"] = ""; -App::$strings["Import just this album"] = ""; -App::$strings["Leave blank to import all albums"] = ""; -App::$strings["Maximum count to import"] = ""; -App::$strings["0 or blank to import all available"] = ""; -App::$strings["Channels to auto connect"] = ""; -App::$strings["Comma separated list"] = ""; -App::$strings["Popular Channels"] = ""; -App::$strings["IRC Settings"] = ""; -App::$strings["IRC settings saved."] = ""; -App::$strings["IRC Chatroom"] = ""; -App::$strings["Post to LiveJournal"] = ""; -App::$strings["Enable LiveJournal Post Plugin"] = ""; -App::$strings["LiveJournal username"] = ""; -App::$strings["LiveJournal password"] = ""; -App::$strings["Post to LiveJournal by default"] = ""; -App::$strings["LiveJournal Post Settings"] = ""; -App::$strings["LiveJournal Settings saved."] = ""; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -App::$strings["The error message was:"] = ""; -App::$strings["First Name"] = ""; -App::$strings["Last Name"] = ""; -App::$strings["Nickname"] = ""; -App::$strings["Full Name"] = ""; -App::$strings["Profile Photo 16px"] = ""; -App::$strings["Profile Photo 32px"] = ""; -App::$strings["Profile Photo 48px"] = ""; -App::$strings["Profile Photo 64px"] = ""; -App::$strings["Profile Photo 80px"] = ""; -App::$strings["Profile Photo 128px"] = ""; -App::$strings["Timezone"] = ""; -App::$strings["Birth Year"] = ""; -App::$strings["Birth Month"] = ""; -App::$strings["Birth Day"] = ""; -App::$strings["Birthdate"] = ""; -App::$strings["OpenID protocol error. No ID returned."] = ""; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings["Male"] = "Maschio"; -App::$strings["Female"] = "Femmina"; -App::$strings["You're welcome."] = ""; -App::$strings["Ah shucks..."] = ""; -App::$strings["Don't mention it."] = ""; -App::$strings["<blush>"] = ""; -App::$strings["Page to load after login"] = ""; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = ""; -App::$strings["Startpage Settings"] = ""; -App::$strings["bitchslap"] = ""; -App::$strings["bitchslapped"] = ""; -App::$strings["shag"] = ""; -App::$strings["shagged"] = ""; -App::$strings["patent"] = ""; -App::$strings["patented"] = ""; -App::$strings["hug"] = ""; -App::$strings["hugged"] = ""; -App::$strings["murder"] = ""; -App::$strings["murdered"] = ""; -App::$strings["worship"] = ""; -App::$strings["worshipped"] = ""; -App::$strings["kiss"] = ""; -App::$strings["kissed"] = ""; -App::$strings["tempt"] = ""; -App::$strings["tempted"] = ""; -App::$strings["raise eyebrows at"] = ""; -App::$strings["raised their eyebrows at"] = ""; -App::$strings["insult"] = ""; -App::$strings["insulted"] = ""; -App::$strings["praise"] = ""; -App::$strings["praised"] = ""; -App::$strings["be dubious of"] = ""; -App::$strings["was dubious of"] = ""; -App::$strings["eat"] = ""; -App::$strings["ate"] = ""; -App::$strings["giggle and fawn at"] = ""; -App::$strings["giggled and fawned at"] = ""; -App::$strings["doubt"] = ""; -App::$strings["doubted"] = ""; -App::$strings["glare"] = ""; -App::$strings["glared at"] = ""; -App::$strings["fuck"] = ""; -App::$strings["fucked"] = ""; -App::$strings["bonk"] = ""; -App::$strings["bonked"] = ""; -App::$strings["declare undying love for"] = ""; -App::$strings["declared undying love for"] = ""; -App::$strings["Diaspora Protocol Settings updated."] = ""; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; -App::$strings["Enable the Diaspora protocol for this channel"] = ""; -App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; -App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = ""; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = ""; -App::$strings["Diaspora Protocol Settings"] = ""; -App::$strings["No username found in import file."] = ""; -App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; -App::$strings["Your account on %s will expire in a few days."] = ""; -App::$strings["Your $Productname test account is about to expire."] = ""; -App::$strings["Enable Rainbowtag"] = ""; -App::$strings["Rainbowtag Settings"] = ""; -App::$strings["Rainbowtag Settings saved."] = ""; -App::$strings["Show Upload Limits"] = ""; -App::$strings["Hubzilla configured maximum size: "] = ""; -App::$strings["PHP upload_max_filesize: "] = ""; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; -App::$strings["generic profile image"] = ""; -App::$strings["random geometric pattern"] = ""; -App::$strings["monster face"] = ""; -App::$strings["computer generated face"] = ""; -App::$strings["retro arcade style face"] = ""; -App::$strings["Hub default profile photo"] = ""; -App::$strings["Information"] = ""; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; -App::$strings["Save Settings"] = ""; -App::$strings["Default avatar image"] = ""; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = ""; -App::$strings["Rating of images"] = ""; -App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; -App::$strings["Gravatar settings updated."] = ""; -App::$strings["Hubzilla File Storage Import"] = ""; -App::$strings["This will import all your cloud files from another server."] = ""; -App::$strings["Hubzilla Server base URL"] = ""; -App::$strings["Since modified date yyyy-mm-dd"] = ""; -App::$strings["Until modified date yyyy-mm-dd"] = ""; -App::$strings["Recent Channel/Profile Viewers"] = ""; -App::$strings["This plugin/addon has not been configured."] = ""; -App::$strings["Please visit the Visage settings on %s"] = ""; -App::$strings["your feature settings page"] = ""; -App::$strings["No entries."] = ""; -App::$strings["Enable Visage Visitor Logging"] = ""; -App::$strings["Visage Settings"] = ""; -App::$strings["Nsabait Settings updated."] = ""; -App::$strings["Enable NSAbait Plugin"] = ""; -App::$strings["NSAbait Settings"] = ""; -App::$strings["Send test email"] = ""; -App::$strings["No recipients found."] = ""; -App::$strings["Mail sent."] = ""; -App::$strings["Sending of mail failed."] = ""; -App::$strings["Mail Test"] = ""; -App::$strings["Message subject"] = ""; -App::$strings["Use markdown for editing posts"] = ""; -App::$strings["View Larger"] = ""; -App::$strings["Tile Server URL"] = ""; -App::$strings["A list of public tile servers"] = ""; -App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; -App::$strings["A list of Nominatim servers"] = ""; -App::$strings["Default zoom"] = ""; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = ""; -App::$strings["Include marker on map"] = ""; -App::$strings["Include a marker on the map."] = ""; -App::$strings["text to include in all outgoing posts from this site"] = ""; -App::$strings["Post to Friendica"] = ""; -App::$strings["rtof Settings saved."] = ""; -App::$strings["Allow posting to Friendica"] = ""; -App::$strings["Send public postings to Friendica by default"] = ""; -App::$strings["Friendica API Path"] = ""; -App::$strings["https://{sitename}/api"] = ""; -App::$strings["Friendica login name"] = ""; -App::$strings["Friendica password"] = ""; -App::$strings["Hubzilla to Friendica Post Settings"] = ""; -App::$strings["Status:"] = "Stato:"; -App::$strings["Activate addon"] = ""; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = ""; -App::$strings["Jabber username"] = ""; -App::$strings["Jabber server"] = ""; -App::$strings["Jabber BOSH host URL"] = ""; -App::$strings["Jabber password"] = ""; -App::$strings["Encrypt Jabber password with Hubzilla password"] = ""; -App::$strings["Hubzilla password"] = ""; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = ""; -App::$strings["Purge internal list of jabber addresses of contacts"] = ""; -App::$strings["Configuration Help"] = ""; -App::$strings["Jappix Mini Settings"] = ""; -App::$strings["Currently blocked"] = "Attualmente bloccati"; -App::$strings["No channels currently blocked"] = "Nessun canale attualmente bloccato"; -App::$strings["\"Superblock\" Settings"] = ""; -App::$strings["Block Completely"] = ""; -App::$strings["superblock settings updated"] = ""; -App::$strings["Federate"] = ""; -App::$strings["nofed Settings saved."] = ""; -App::$strings["Allow Federation Toggle"] = ""; -App::$strings["Federate posts by default"] = ""; -App::$strings["NoFed Settings"] = ""; -App::$strings["Post to Red"] = ""; -App::$strings["Channel is required."] = ""; -App::$strings["redred Settings saved."] = ""; -App::$strings["Allow posting to another Hubzilla Channel"] = ""; -App::$strings["Send public postings to Hubzilla channel by default"] = ""; -App::$strings["Hubzilla API Path"] = ""; -App::$strings["Hubzilla login name"] = ""; -App::$strings["Hubzilla channel name"] = ""; -App::$strings["Hubzilla Crosspost Settings"] = ""; -App::$strings["Logfile archive directory"] = ""; -App::$strings["Directory to store rotated logs"] = ""; -App::$strings["Logfile size in bytes before rotating"] = ""; -App::$strings["Number of logfiles to retain"] = ""; -App::$strings["Friendica Photo Album Import"] = ""; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = ""; -App::$strings["Friendica Server base URL"] = ""; -App::$strings["Friendica Login Username"] = ""; -App::$strings["Friendica Login Password"] = ""; -App::$strings["ActivityPub"] = ""; -App::$strings["ActivityPub Protocol Settings updated."] = ""; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; -App::$strings["Enable the ActivityPub protocol for this channel"] = ""; -App::$strings["Send multi-media HTML articles"] = ""; -App::$strings["Not supported by some microblog services such as Mastodon"] = ""; -App::$strings["ActivityPub Protocol Settings"] = ""; -App::$strings["Project Servers and Resources"] = ""; -App::$strings["Project Creator and Tech Lead"] = ""; -App::$strings["Admin, developer, directorymin, support bloke"] = ""; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = ""; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = ""; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = ""; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = ""; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = ""; -App::$strings["Donate"] = ""; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = ""; -App::$strings["Donate Now"] = ""; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = ""; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = ""; -App::$strings["Sponsor"] = ""; -App::$strings["Special thanks to: "] = ""; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa."; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug."; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; -App::$strings["Guitar Chords"] = "Accordi per chitarra"; -App::$strings["The complete online chord dictionary"] = "Il dizionario completo degli accordi online"; -App::$strings["Tuning"] = "Accordatura"; -App::$strings["Chord name: example: Em7"] = "Nome accordo: per esempio Em7"; -App::$strings["Show for left handed stringing"] = "Mostra l'accordatura per mancini"; -App::$strings["Quick Reference"] = "Riferimento veloce"; -App::$strings["Post to Libertree"] = ""; -App::$strings["Enable Libertree Post Plugin"] = ""; -App::$strings["Libertree API token"] = ""; -App::$strings["Libertree site URL"] = ""; -App::$strings["Post to Libertree by default"] = ""; -App::$strings["Libertree Post Settings"] = ""; -App::$strings["Libertree Settings saved."] = ""; -App::$strings["Flattr this!"] = ""; -App::$strings["Flattr widget settings updated."] = ""; -App::$strings["Flattr user"] = ""; -App::$strings["URL of the Thing to flattr"] = ""; -App::$strings["If empty channel URL is used"] = ""; -App::$strings["Title of the Thing to flattr"] = ""; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = ""; -App::$strings["Static or dynamic flattr button"] = ""; -App::$strings["static"] = ""; -App::$strings["dynamic"] = ""; -App::$strings["Alignment of the widget"] = ""; -App::$strings["left"] = ""; -App::$strings["right"] = ""; -App::$strings["Enable Flattr widget"] = ""; -App::$strings["Flattr Widget Settings"] = ""; -App::$strings["Post to GNU social"] = ""; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = ""; -App::$strings["We could not contact the GNU social API with the Path you entered."] = ""; -App::$strings["GNU social settings updated."] = ""; -App::$strings["Globally Available GNU social OAuthKeys"] = ""; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = ""; -App::$strings["Provide your own OAuth Credentials"] = ""; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = ""; -App::$strings["OAuth Consumer Key"] = ""; -App::$strings["OAuth Consumer Secret"] = ""; -App::$strings["Base API Path"] = ""; -App::$strings["Remember the trailing /"] = ""; -App::$strings["GNU social application name"] = ""; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = ""; -App::$strings["Log in with GNU social"] = ""; -App::$strings["Copy the security code from GNU social here"] = ""; -App::$strings["Cancel Connection Process"] = ""; -App::$strings["Current GNU social API is"] = ""; -App::$strings["Cancel GNU social Connection"] = ""; -App::$strings["Currently connected to: "] = ""; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -App::$strings["Allow posting to GNU social"] = ""; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = ""; -App::$strings["Post to GNU social by default"] = ""; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = ""; -App::$strings["Clear OAuth configuration"] = ""; -App::$strings["GNU social Post Settings"] = ""; -App::$strings["API URL"] = ""; -App::$strings["Application name"] = ""; -App::$strings["QR code"] = ""; -App::$strings["QR Generator"] = ""; -App::$strings["Enter some text"] = ""; -App::$strings["Invalid game."] = ""; -App::$strings["You are not a player in this game."] = ""; -App::$strings["You must be a local channel to create a game."] = ""; -App::$strings["You must select one opponent that is not yourself."] = ""; -App::$strings["Random color chosen."] = ""; -App::$strings["Error creating new game."] = ""; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["You must select a local channel /chess/channelname"] = ""; -App::$strings["Enable notifications"] = ""; -App::$strings["Post to Twitter"] = ""; -App::$strings["Twitter settings updated."] = ""; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = ""; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = ""; -App::$strings["Log in with Twitter"] = ""; -App::$strings["Copy the PIN from Twitter here"] = ""; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; -App::$strings["Allow posting to Twitter"] = ""; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = ""; -App::$strings["Twitter post length"] = ""; -App::$strings["Maximum tweet length"] = ""; -App::$strings["Send public postings to Twitter by default"] = ""; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = ""; -App::$strings["Twitter Post Settings"] = ""; -App::$strings["Deactivate the feature"] = ""; -App::$strings["Hide the button and show the smilies directly."] = ""; -App::$strings["Smileybutton Settings"] = ""; -App::$strings["This website is tracked using the Piwik analytics tool."] = ""; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = ""; -App::$strings["Piwik Base URL"] = ""; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; -App::$strings["Site ID"] = ""; -App::$strings["Show opt-out cookie link?"] = ""; -App::$strings["Asynchronous tracking"] = ""; -App::$strings["Enable frontend JavaScript error tracking"] = ""; -App::$strings["This feature requires Piwik >= 2.2.0"] = ""; -App::$strings["Edit your profile and change settings."] = ""; -App::$strings["Click here to see activity from your connections."] = ""; -App::$strings["Click here to see your channel home."] = ""; -App::$strings["You can access your private messages from here."] = ""; -App::$strings["Create new events here."] = ""; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = ""; -App::$strings["System notifications will arrive here"] = ""; -App::$strings["Search for content and users"] = ""; -App::$strings["Browse for new contacts"] = ""; -App::$strings["Launch installed apps"] = ""; -App::$strings["Looking for help? Click here."] = ""; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = ""; -App::$strings["You have received a new private message. Click here to see from who!"] = "Hai ricevuto un nuovo messaggio privato. Clicca qui per sapere da chi!"; -App::$strings["There are events this week. Click here too see which!"] = ""; -App::$strings["You have received a new introduction. Click here to see who!"] = "Hai ricevuto una nuova richiesta di amicizia. Clicca qui per sapere da chi!"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = ""; -App::$strings["Click here to share text, images, videos and sound."] = ""; -App::$strings["You can write an optional title for your update (good for long posts)."] = ""; -App::$strings["Entering some categories here makes it easier to find your post later."] = ""; -App::$strings["Share photos, links, location, etc."] = ""; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = ""; -App::$strings["You can password protect content."] = ""; -App::$strings["Choose who you share with."] = ""; -App::$strings["Click here when you are done."] = ""; -App::$strings["Adjust from which channels posts should be displayed."] = ""; -App::$strings["Only show posts from channels in the specified privacy group."] = ""; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = ""; -App::$strings["Easily find posts in given category."] = ""; -App::$strings["Easily find posts by date."] = ""; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = ""; -App::$strings["Here you see channels you have connected to."] = ""; -App::$strings["Save your search so you can repeat it at a later date."] = ""; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = ""; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = ""; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI?

Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina.

Puoi anche andare avanti premendo il tasto invio"; -App::$strings["Extended Identity Sharing"] = ""; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = ""; -App::$strings["Three Dimensional Tic-Tac-Toe"] = ""; -App::$strings["3D Tic-Tac-Toe"] = ""; -App::$strings["New game"] = ""; -App::$strings["New game with handicap"] = ""; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = ""; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = ""; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = ""; -App::$strings["You go first..."] = ""; -App::$strings["I'm going first this time..."] = ""; -App::$strings["You won!"] = ""; -App::$strings["\"Cat\" game!"] = ""; -App::$strings["I won!"] = ""; -App::$strings["Message to display on every page on this server"] = ""; -App::$strings["Pageheader Settings"] = ""; -App::$strings["pageheader Settings saved."] = ""; -App::$strings["Only authenticate automatically to sites of your friends"] = ""; -App::$strings["By default you are automatically authenticated anywhere in the network"] = ""; -App::$strings["Authchoose Settings"] = ""; -App::$strings["Atuhchoose Settings updated."] = ""; -App::$strings["lonely"] = ""; -App::$strings["drunk"] = ""; -App::$strings["horny"] = ""; -App::$strings["stoned"] = ""; -App::$strings["fucked up"] = ""; -App::$strings["clusterfucked"] = ""; -App::$strings["crazy"] = ""; -App::$strings["hurt"] = ""; -App::$strings["sleepy"] = ""; -App::$strings["grumpy"] = ""; -App::$strings["high"] = ""; -App::$strings["semi-conscious"] = ""; -App::$strings["in love"] = ""; -App::$strings["in lust"] = ""; -App::$strings["naked"] = ""; -App::$strings["stinky"] = ""; -App::$strings["sweaty"] = ""; -App::$strings["bleeding out"] = ""; -App::$strings["victorious"] = ""; -App::$strings["defeated"] = ""; -App::$strings["envious"] = ""; -App::$strings["jealous"] = ""; -App::$strings["XMPP settings updated."] = ""; -App::$strings["Enable Chat"] = ""; -App::$strings["Individual credentials"] = ""; -App::$strings["Jabber BOSH server"] = ""; -App::$strings["XMPP Settings"] = ""; -App::$strings["Jabber BOSH host"] = ""; -App::$strings["Use central userbase"] = ""; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; -App::$strings["Who likes me?"] = "Chi mi ha messo un mi piace?"; -App::$strings["You are now authenticated to pumpio."] = ""; -App::$strings["return to the featured settings page"] = ""; -App::$strings["Post to Pump.io"] = ""; -App::$strings["Pump.io servername"] = ""; -App::$strings["Without \"http://\" or \"https://\""] = ""; -App::$strings["Pump.io username"] = ""; -App::$strings["Without the servername"] = ""; -App::$strings["You are not authenticated to pumpio"] = ""; -App::$strings["(Re-)Authenticate your pump.io connection"] = ""; -App::$strings["Enable pump.io Post Plugin"] = ""; -App::$strings["Post to pump.io by default"] = ""; -App::$strings["Should posts be public"] = ""; -App::$strings["Mirror all public posts"] = ""; -App::$strings["Pump.io Post Settings"] = ""; -App::$strings["PumpIO Settings saved."] = ""; -App::$strings["An account has been created for you."] = ""; -App::$strings["Authentication successful but rejected: account creation is disabled."] = ""; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Search \$Projectname"] = ""; -App::$strings["Redmatrix File Storage Import"] = ""; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = ""; -App::$strings["file"] = ""; -App::$strings["Send email to all members"] = ""; -App::$strings["%1\$d of %2\$d messages sent."] = ""; -App::$strings["Send email to all hub members."] = ""; -App::$strings["Sender Email address"] = ""; -App::$strings["Test mode (only send to hub administrator)"] = ""; -App::$strings["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["likes %1\$s's %2\$s"] = "ha messo mi piace al %2\$s di %1\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "ha messo non mi piace al %2\$s di %1\$s"; -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["Loading..."] = "Caricamento in corso..."; -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["Choose a different album..."] = "Scegli un altro album..."; -App::$strings["Comments enabled"] = "Commenti abilitati"; -App::$strings["Comments disabled"] = "Commenti disabilitati"; -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["Disable comments"] = "Disabilita i commenti"; -App::$strings["Toggle comments"] = "Abilita/disabilita i commenti"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; -App::$strings["Set publish date"] = "Data di uscita programmata"; -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["Profile Details"] = "Dettagli del profilo"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Files and Storage"] = "Archivio file"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; -App::$strings["View Cards"] = ""; -App::$strings["articles"] = ""; -App::$strings["View Articles"] = ""; -App::$strings["View Webpages"] = ""; -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["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["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -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["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -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["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; -App::$strings["Sunday"] = "domenica"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; -App::$strings["May"] = "Mag"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["Download binary/encrypted content"] = ""; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["HTML"] = ""; -App::$strings["Comanche Layout"] = ""; -App::$strings["PHP"] = ""; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["activity"] = "l'attività"; -App::$strings["a-z, 0-9, -, and _ only"] = ""; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Export website..."] = "Esporta il sito web..."; -App::$strings["Export to a zip file"] = "Esporta come file zip"; -App::$strings["website.zip"] = "sitoweb.zip"; -App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; -App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; -App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; -App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; -App::$strings["Specify folder"] = "Scegli la cartella"; -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["Common Connections"] = ""; -App::$strings["View all %d common connections"] = ""; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -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["Remote channel or protocol unavailable."] = ""; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -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["Password too short"] = "Password troppo corta"; -App::$strings["Passwords do not match"] = "Le password non corrispondono"; -App::$strings["everybody"] = "tutti"; -App::$strings["Secret Passphrase"] = "Parola chiave per decifrare"; -App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; -App::$strings["close all"] = "chiudi tutto"; -App::$strings["Nothing new here"] = "Niente di nuovo qui"; -App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; -App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; -App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["timeago.suffixAgo"] = ""; -App::$strings["timeago.suffixFromNow"] = ""; -App::$strings["less than a minute"] = "meno di un minuto"; -App::$strings["about a minute"] = "circa un minuto"; -App::$strings["%d minutes"] = "%d minuti"; -App::$strings["about an hour"] = "circa un’ora"; -App::$strings["about %d hours"] = "circa %d ore"; -App::$strings["a day"] = "un giorno"; -App::$strings["%d days"] = "%d giorni"; -App::$strings["about a month"] = "circa un mese"; -App::$strings["%d months"] = "%d mesi"; -App::$strings["about a year"] = "circa un anno"; -App::$strings["%d years"] = "%d anni"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "maggio"; -App::$strings["Jan"] = "Gen"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "maggio"; -App::$strings["Jun"] = "Mag"; -App::$strings["Jul"] = "Giu"; -App::$strings["Aug"] = "Ago"; -App::$strings["Sep"] = "Set"; -App::$strings["Oct"] = "Ott"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dic"; -App::$strings["Sun"] = "Dom"; -App::$strings["Mon"] = "Lun"; -App::$strings["Tue"] = "Mar"; -App::$strings["Wed"] = "Mer"; -App::$strings["Thu"] = "Gio"; -App::$strings["Fri"] = "Ven"; -App::$strings["Sat"] = "Sab"; -App::$strings["__ctx:calendar__ today"] = "oggi"; -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["Unable to determine sender."] = "Impossibile determinare il mittente."; -App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; -App::$strings["[no subject]"] = "[nessun titolo]"; -App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -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["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["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["[Edited %s]"] = ""; -App::$strings["__ctx:edit_activity__ Post"] = ""; -App::$strings["__ctx:edit_activity__ Comment"] = ""; -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["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Unable to retrieve modified identity"] = ""; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Change your profile photo"] = ""; -App::$strings["Trans"] = ""; -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["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["Home, Voice"] = ""; -App::$strings["Home, Fax"] = ""; -App::$strings["Work, Voice"] = ""; -App::$strings["Work, Fax"] = ""; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -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["Select an alternate language"] = "Seleziona una lingua diversa"; -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["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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %1\$s element %2\$s"] = ""; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; -App::$strings["card"] = ""; -App::$strings["article"] = ""; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["View article"] = ""; -App::$strings["View summary"] = ""; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings[" by "] = "di"; -App::$strings[" on "] = "su"; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; -App::$strings["General Features"] = "Funzionalità di base"; -App::$strings["Advanced Profiles"] = "Profili avanzati"; -App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; -App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; -App::$strings["Web Pages"] = "Pagine web"; -App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; -App::$strings["Private Notes"] = "Note private"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; -App::$strings["Create personal planning cards"] = ""; -App::$strings["Create interactive articles"] = ""; -App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; -App::$strings["Photo Location"] = "Posizione geografica"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; -App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; -App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato."; -App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; -App::$strings["Event Timezone Selection"] = ""; -App::$strings["Allow event creation in timezones other than your own."] = ""; -App::$strings["Premium Channel"] = "Canale premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; -App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici"; -App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; -App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; -App::$strings["Access Control and Permissions"] = ""; -App::$strings["Privacy Groups"] = "Gruppi di canali"; -App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; -App::$strings["Multiple Profiles"] = "Profili multipli"; -App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -App::$strings["Provide alternate connection permission roles."] = ""; -App::$strings["OAuth Clients"] = ""; -App::$strings["Manage authenticatication tokens for mobile and remote apps."] = ""; -App::$strings["Access Tokens"] = ""; -App::$strings["Create access tokens so that non-members can access private content."] = ""; -App::$strings["Post Composition Features"] = "Modalità di scrittura post"; -App::$strings["Large Photos"] = "Foto grandi"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -App::$strings["Even More Encryption"] = "Cifratura addizionale"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; -App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; -App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; -App::$strings["Disable Comments"] = "Disabilita i commenti"; -App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti"; -App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; -App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; -App::$strings["Content Expiration"] = "Scadenza"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; -App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; -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["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -App::$strings["Network Personal Tab"] = "Attività personale"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -App::$strings["Network New Tab"] = "Contenuti nuovi"; -App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -App::$strings["Affinity Tool"] = "Filtro per affinità"; -App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; -App::$strings["Community Tagging"] = "Tag della comunità"; -App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; -App::$strings["Post Categories"] = "Categorie dei post"; -App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Risposte emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; -App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; -App::$strings["Dislike Posts"] = "Non mi piace"; -App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; -App::$strings["Star Posts"] = "Post con stella"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; -App::$strings["Tag Cloud"] = "Nuvola di tag"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -App::$strings["Tags"] = "Tag"; -App::$strings["Keywords"] = "Parole chiave"; -App::$strings["have"] = "ho"; -App::$strings["has"] = "ha"; -App::$strings["want"] = "voglio"; -App::$strings["wants"] = "vuole"; -App::$strings["likes"] = "gli piace"; -App::$strings["dislikes"] = "non gli piace"; -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["Birthday"] = "Compleanno"; -App::$strings["Age: "] = "Età:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; -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["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["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["Take me home"] = ""; -App::$strings["Log me out of this site"] = ""; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; -App::$strings["Add Apps"] = "Aggiungi App"; -App::$strings["Arrange Apps"] = "Ordina le App"; -App::$strings["Toggle System Apps"] = "Attiva/disattiva Apps"; -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["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["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["Logged out."] = "Uscita effettuata."; -App::$strings["Email validation is incomplete. Please check your email."] = "Validazione via mail non completa. Per favore controlla la tua mail."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Help:"] = "Guida:"; -App::$strings["Not Found"] = "Non disponibile"; diff --git a/view/it/messages.po b/view/it/messages.po index 8f9008998..fc4772846 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -1,21 +1,17 @@ -# Red Matrix Project -# Copyright (C) 2012-2014 the Red Matrix Project -# This file is distributed under the same license as the Red package. +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. # # Translators: -# Davide Pesenti , 2016 -# fabrixxm , 2011 -# fabrixxm , 2011-2012 -# Francesco Apruzzese , 2012-2013 -# ufic , 2012 -# Paolo Wave , 2012 -# Paolo Wave , 2013-2015 +# Davide Pesenti , 2015-2016,2018 +# Paolo Wave , 2015-2016,2018 +# Paolo Wave , 2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-20 00:01-0700\n" -"PO-Revision-Date: 2016-03-09 09:28+0000\n" +"POT-Creation-Date: 2018-04-18 08:37+0200\n" +"PO-Revision-Date: 2018-04-19 07:57+0000\n" "Last-Translator: Davide Pesenti \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -24,3330 +20,12447 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "Può vedere i post e i contenuti del mio canale" -#: ../../include/Import/import_diaspora.php:42 ../../mod/import.php:156 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "È tra i canali che seguo" -#: ../../include/Import/import_diaspora.php:140 ../../mod/import.php:562 -msgid "Import completed." -msgstr "L'importazione è terminata con successo!" +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Può vedere il profilo predefinito del canale" -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "parent" -msgstr "cartella superiore" +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Può vedere i miei contatti" -#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2561 -msgid "Collection" -msgstr "Cartella" +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Può vedere il mio archivio file e foto" -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principale" +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "Può caricare o modificare i file e le foto del mio archivio" -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Rubrica" +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "Può vedere le pagine web del mio canale" -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendario" +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Può vedere le pagine del mio wiki" -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Appuntamenti ricevuti" - -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Appuntamenti inviati" - -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1030 -#: ../../mod/photos.php:693 ../../mod/photos.php:1131 -msgid "Unknown" -msgstr "Sconosciuto" - -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "%1$s occupati" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s occupati di %2$s (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/apps.php:135 ../../include/conversation.php:1620 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Archivio file" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Totale" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Condiviso" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/blocks.php:152 -#: ../../mod/layouts.php:175 ../../mod/menu.php:112 -#: ../../mod/new_channel.php:121 ../../mod/webpages.php:180 -msgid "Create" -msgstr "Crea" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:718 -#: ../../mod/photos.php:1248 ../../mod/profile_photo.php:362 -msgid "Upload" -msgstr "Carica" - -#: ../../include/RedDAV/RedBrowser.php:261 ../../mod/admin.php:994 -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nome" - -#: ../../include/RedDAV/RedBrowser.php:262 -msgid "Type" -msgstr "Tipo" - -#: ../../include/RedDAV/RedBrowser.php:263 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Dimensione" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Ultima modifica" - -#: ../../include/RedDAV/RedBrowser.php:266 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:108 -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/blocks.php:153 ../../mod/connections.php:242 -#: ../../mod/connections.php:255 ../../mod/connections.php:274 -#: ../../mod/editblock.php:134 ../../mod/editlayout.php:133 -#: ../../mod/editpost.php:106 ../../mod/editwebpage.php:178 -#: ../../mod/settings.php:650 ../../mod/layouts.php:183 ../../mod/menu.php:106 -#: ../../mod/thing.php:255 ../../mod/webpages.php:181 -msgid "Edit" -msgstr "Modifica" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:120 -#: ../../include/apps.php:255 ../../include/conversation.php:671 -#: ../../mod/admin.php:826 ../../mod/admin.php:988 ../../mod/photos.php:1062 -#: ../../mod/blocks.php:155 ../../mod/connedit.php:563 -#: ../../mod/editblock.php:180 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:225 ../../mod/group.php:176 -#: ../../mod/settings.php:651 ../../mod/thing.php:256 -#: ../../mod/webpages.php:183 -msgid "Delete" -msgstr "Elimina" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Crea una nuova cartella" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Carica un file" - -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/photo/photo_driver.php:703 ../../mod/photos.php:92 -#: ../../mod/photos.php:637 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1550 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Chiudi questa sessione" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Bacheca" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" - -#: ../../include/nav.php:91 ../../include/conversation.php:953 -#: ../../mod/connedit.php:510 -msgid "View Profile" -msgstr "Profilo" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Il tuo profilo" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Modifica i profili" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/nav.php:95 ../../include/identity.php:979 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Modifica il profilo" - -#: ../../include/nav.php:97 ../../include/apps.php:139 -#: ../../include/conversation.php:1611 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "I tuoi file" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Area chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Le tue aree chat" - -#: ../../include/nav.php:109 ../../include/apps.php:129 -#: ../../include/conversation.php:1646 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" - -#: ../../include/nav.php:113 ../../include/apps.php:136 -#: ../../include/conversation.php:1656 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Pagine web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Le tue pagine web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1551 -msgid "Login" -msgstr "Accedi" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Accedi" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Accedi tramite il tuo hub principale" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Bacheca" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1527 -msgid "Register" -msgstr "Iscriviti" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Guida" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:163 ../../include/widgets.php:91 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Apps" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" - -#: ../../include/nav.php:165 ../../include/text.php:914 -#: ../../include/text.php:926 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Cerca" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Cerca nel sito" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -msgid "Directory" -msgstr "Elenco pubblico" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Elenco pubblico canali" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "RedMatrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "La tua rete" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Segna come lette le notifiche della tua rete" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Bacheca del canale" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" - -#: ../../include/nav.php:187 ../../mod/connections.php:267 -msgid "Connections" -msgstr "Contatti" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Avvisi" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Messaggi" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Messaggi privati" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:199 ../../include/widgets.php:577 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:503 -msgid "Events" -msgstr "Eventi" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Calendario" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Guarda tutti gli eventi" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:166 -msgid "Channel Manager" -msgstr "Gestione canali" - -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" - -#: ../../include/nav.php:208 ../../include/widgets.php:556 -#: ../../include/apps.php:134 ../../mod/admin.php:1079 -#: ../../mod/admin.php:1279 -msgid "Settings" -msgstr "Impostazioni" - -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" - -#: ../../include/nav.php:216 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" - -#: ../../include/nav.php:247 ../../include/conversation.php:861 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@nome, #tag, testo" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Attendere..." - -#: ../../include/network.php:650 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1600 ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "Notifica $Projectname" - -#: ../../include/network.php:1601 ../../include/diaspora.php:2526 -#: ../../include/diaspora.php:2537 ../../include/enotify.php:59 -#: ../../mod/p.php:46 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/network.php:1603 ../../include/enotify.php:61 -msgid "Thank You," -msgstr "Grazie," - -#: ../../include/network.php:1605 ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "L'amministratore di %s" - -#: ../../include/network.php:1647 ../../include/account.php:314 -#: ../../include/account.php:341 ../../include/account.php:401 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../include/network.php:1661 -msgid "No Subject" -msgstr "Nessun titolo" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:393 -msgid "first" -msgstr "inizio" - -#: ../../include/text.php:422 -msgid "last" -msgstr "fine" - -#: ../../include/text.php:425 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:435 -msgid "older" -msgstr "più recenti" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "più nuovi" - -#: ../../include/text.php:830 -msgid "No connections" -msgstr "Nessun contatto" - -#: ../../include/text.php:844 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: ../../include/text.php:857 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Elenco contatti" - -#: ../../include/text.php:915 ../../include/text.php:927 -#: ../../include/widgets.php:192 ../../mod/admin.php:1457 -#: ../../mod/admin.php:1477 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 -msgid "Save" -msgstr "Salva" - -#: ../../include/text.php:990 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:990 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha mandato un poke" - -#: ../../include/text.php:991 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:991 -msgid "pinged" -msgstr "ha ricevuto un ping" - -#: ../../include/text.php:992 -msgid "prod" -msgstr "spintone" - -#: ../../include/text.php:992 -msgid "prodded" -msgstr "ha ricevuto uno spintone" - -#: ../../include/text.php:993 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:993 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:994 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:994 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:995 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:995 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" - -#: ../../include/text.php:1005 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:1006 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:1007 -msgid "mellow" -msgstr "calmo" - -#: ../../include/text.php:1008 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:1009 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:1010 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:1011 -msgid "stupified" -msgstr "stordito" - -#: ../../include/text.php:1012 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:1013 -msgid "interested" -msgstr "attento" - -#: ../../include/text.php:1014 -msgid "bitter" -msgstr "amaro" - -#: ../../include/text.php:1015 -msgid "cheerful" -msgstr "allegro" - -#: ../../include/text.php:1016 -msgid "alive" -msgstr "vivace" - -#: ../../include/text.php:1017 -msgid "annoyed" -msgstr "seccato" - -#: ../../include/text.php:1018 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:1019 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:1020 -msgid "disturbed" -msgstr "turbato" - -#: ../../include/text.php:1021 -msgid "frustrated" -msgstr "frustrato" - -#: ../../include/text.php:1022 -msgid "depressed" -msgstr "in depressione" - -#: ../../include/text.php:1023 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:1024 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:1025 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1197 -msgid "Monday" -msgstr "lunedì" - -#: ../../include/text.php:1197 -msgid "Tuesday" -msgstr "martedì" - -#: ../../include/text.php:1197 -msgid "Wednesday" -msgstr "mercoledì" - -#: ../../include/text.php:1197 -msgid "Thursday" -msgstr "giovedì" - -#: ../../include/text.php:1197 -msgid "Friday" -msgstr "venerdì" - -#: ../../include/text.php:1197 -msgid "Saturday" -msgstr "sabato" - -#: ../../include/text.php:1197 -msgid "Sunday" -msgstr "domenica" - -#: ../../include/text.php:1201 -msgid "January" -msgstr "gennaio" - -#: ../../include/text.php:1201 -msgid "February" -msgstr "febbraio" - -#: ../../include/text.php:1201 -msgid "March" -msgstr "marzo" - -#: ../../include/text.php:1201 -msgid "April" -msgstr "aprile" - -#: ../../include/text.php:1201 ../../mod/uexport.php:58 -#: ../../mod/uexport.php:59 -msgid "May" -msgstr "maggio" - -#: ../../include/text.php:1201 -msgid "June" -msgstr "giugno" - -#: ../../include/text.php:1201 -msgid "July" -msgstr "luglio" - -#: ../../include/text.php:1201 -msgid "August" -msgstr "agosto" - -#: ../../include/text.php:1201 -msgid "September" -msgstr "settembre" - -#: ../../include/text.php:1201 -msgid "October" -msgstr "ottobre" - -#: ../../include/text.php:1201 -msgid "November" -msgstr "novembre" - -#: ../../include/text.php:1201 -msgid "December" -msgstr "dicembre" - -#: ../../include/text.php:1306 -msgid "unknown.???" -msgstr "sconosciuto???" - -#: ../../include/text.php:1307 -msgid "bytes" -msgstr "byte" - -#: ../../include/text.php:1343 -msgid "remove category" -msgstr "rimuovi la categoria" - -#: ../../include/text.php:1418 -msgid "remove from file" -msgstr "rimuovi dal file" - -#: ../../include/text.php:1506 ../../include/text.php:1517 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1673 ../../mod/events.php:474 -msgid "Link to Source" -msgstr "Link al sito d'origine" - -#: ../../include/text.php:1694 ../../include/text.php:1765 -msgid "default" -msgstr "predefinito" - -#: ../../include/text.php:1702 -msgid "Page layout" -msgstr "Layout della pagina" - -#: ../../include/text.php:1702 -msgid "You can create your own with the layouts tool" -msgstr "Con la configurazione del layout puoi crearne uno tuo" - -#: ../../include/text.php:1743 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" - -#: ../../include/text.php:1777 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" - -#: ../../include/text.php:1896 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "la foto" - -#: ../../include/text.php:1899 ../../include/conversation.php:123 -#: ../../mod/like.php:351 ../../mod/tagger.php:47 -msgid "event" -msgstr "l'evento" - -#: ../../include/text.php:1902 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2123 ../../mod/like.php:349 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -msgid "status" -msgstr "il messaggio di stato" - -#: ../../include/text.php:1904 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "il commento" - -#: ../../include/text.php:1909 -msgid "activity" -msgstr "l'attività" - -#: ../../include/text.php:2204 -msgid "Design Tools" -msgstr "Strumenti di design" - -#: ../../include/text.php:2207 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Riquadri" - -#: ../../include/text.php:2208 ../../mod/menu.php:101 -msgid "Menus" -msgstr "Menù" - -#: ../../include/text.php:2209 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Layout" - -#: ../../include/text.php:2210 -msgid "Pages" -msgstr "Pagine" - -#: ../../include/widgets.php:35 ../../include/contact_widgets.php:92 -#: ../../include/taxonomy.php:264 -msgid "Categories" -msgstr "Categorie" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1515 -msgid "Personal" -msgstr "Personali" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Crea una app personale" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Modifica una app personale" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:956 -#: ../../include/identity.php:956 ../../mod/match.php:64 -#: ../../mod/directory.php:316 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Aggiungi" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../include/widgets.php:143 ../../mod/connections.php:128 -msgid "Suggestions" -msgstr "Suggerimenti" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Altro..." - -#: ../../include/widgets.php:166 -#, 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:172 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Scrivi l'indirizzo del canale" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Note" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../include/widgets.php:274 ../../include/features.php:70 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/widgets.php:275 ../../include/group.php:303 -msgid "add" -msgstr "aggiungi" - -#: ../../include/widgets.php:304 ../../include/contact_widgets.php:57 -#: ../../include/features.php:83 -msgid "Saved Folders" -msgstr "Cartelle salvate" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Archivi" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:583 -msgid "Me" -msgstr "Io" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:584 -msgid "Family" -msgstr "Famiglia" - -#: ../../include/widgets.php:431 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:585 -#: ../../mod/settings.php:345 ../../mod/settings.php:349 -#: ../../mod/settings.php:350 ../../mod/settings.php:353 -#: ../../mod/settings.php:364 -msgid "Friends" -msgstr "Amici" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:586 -msgid "Acquaintances" -msgstr "Conoscenti" - -#: ../../include/widgets.php:433 ../../mod/connections.php:91 -#: ../../mod/connections.php:106 ../../mod/connedit.php:587 -msgid "All" -msgstr "Tutti" - -#: ../../include/widgets.php:452 -msgid "Refresh" -msgstr "Aggiorna" - -#: ../../include/widgets.php:487 -msgid "Account settings" -msgstr "Il tuo account" - -#: ../../include/widgets.php:493 -msgid "Channel settings" -msgstr "Impostazioni del canale" - -#: ../../include/widgets.php:499 -msgid "Additional features" -msgstr "Funzionalità opzionali" - -#: ../../include/widgets.php:505 -msgid "Feature/Addon settings" -msgstr "Impostazioni dei componenti aggiuntivi" - -#: ../../include/widgets.php:511 -msgid "Display settings" -msgstr "Aspetto" - -#: ../../include/widgets.php:517 -msgid "Connected apps" -msgstr "App connesse" - -#: ../../include/widgets.php:523 -msgid "Export channel" -msgstr "Esporta il canale" - -#: ../../include/widgets.php:532 ../../mod/connedit.php:674 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" - -#: ../../include/widgets.php:540 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" - -#: ../../include/widgets.php:548 ../../include/features.php:59 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - -#: ../../include/widgets.php:569 ../../mod/mail.php:128 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Messaggi" - -#: ../../include/widgets.php:572 -msgid "Check Mail" -msgstr "Controlla i messaggi" - -#: ../../include/widgets.php:652 -msgid "Chat Rooms" -msgstr "Aree chat attive" - -#: ../../include/widgets.php:672 -msgid "Bookmarked Chatrooms" -msgstr "Aree chat nei segnalibri" - -#: ../../include/widgets.php:692 -msgid "Suggested Chatrooms" -msgstr "Aree chat suggerite" - -#: ../../include/widgets.php:819 ../../include/widgets.php:877 -msgid "photo/image" -msgstr "foto/immagine" - -#: ../../include/widgets.php:972 ../../include/widgets.php:974 -msgid "Rate Me" -msgstr "Valutami" - -#: ../../include/widgets.php:978 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" - -#: ../../include/widgets.php:989 -msgid "Public Hubs" -msgstr "Hub pubblici" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nuova finestra" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" - -#: ../../include/Contact.php:212 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[nessun titolo]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." - -#: ../../include/zot.php:685 -msgid "Invalid data packet" -msgstr "Dati non validi" - -#: ../../include/zot.php:701 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2209 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "Ha creato un nuovo post" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:678 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:670 -msgid "Select" -msgstr "Seleziona" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Salva nella cartella" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Parteciperò" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Non parteciperò" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Forse parteciperò" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Sono d'accordo" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Non sono d'accordo" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Mi astengo" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1015 -#: ../../mod/photos.php:1027 -msgid "View all" -msgstr "Vedi tutto" - -#: ../../include/ItemObject.php:179 ../../include/conversation.php:1712 -#: ../../include/identity.php:1266 ../../include/taxonomy.php:396 -#: ../../mod/photos.php:1019 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1024 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "preferito" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:685 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:686 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Aggiungi un tag" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:959 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "mi piace" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:960 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "non mi piace" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Condividi" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "condividi" - -#: ../../include/ItemObject.php:277 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: ../../include/ItemObject.php:295 ../../include/ItemObject.php:296 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" - -#: ../../include/ItemObject.php:299 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:300 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:301 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: ../../include/ItemObject.php:302 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" - -#: ../../include/ItemObject.php:313 ../../include/conversation.php:727 -#, php-format -msgid "from %s" -msgstr "da %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:730 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" - -#: ../../include/ItemObject.php:317 ../../include/conversation.php:731 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../include/ItemObject.php:338 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" - -#: ../../include/ItemObject.php:339 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" - -#: ../../include/ItemObject.php:348 -msgid "Mark all seen" -msgstr "Marca tutto come letto" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1145 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" - -#: ../../include/ItemObject.php:355 ../../mod/photos.php:1146 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../include/ItemObject.php:360 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1151 -msgid "Close" -msgstr "Chiudi" - -#: ../../include/ItemObject.php:365 ../../include/conversation.php:748 -#: ../../include/conversation.php:1220 ../../mod/mail.php:241 -#: ../../mod/mail.php:356 ../../mod/photos.php:962 ../../mod/editblock.php:149 -#: ../../mod/editlayout.php:147 ../../mod/editpost.php:123 -#: ../../mod/editwebpage.php:192 -msgid "Please wait" -msgstr "Attendere" - -#: ../../include/ItemObject.php:385 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] mostra tutto" - -#: ../../include/ItemObject.php:666 ../../mod/photos.php:978 -#: ../../mod/photos.php:1096 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../include/ItemObject.php:668 ../../include/js_strings.php:6 -#: ../../mod/photos.php:980 ../../mod/photos.php:1098 -msgid "Comment" -msgstr "Commento" - -#: ../../include/ItemObject.php:669 ../../include/js_strings.php:22 -#: ../../mod/mail.php:355 ../../mod/admin.php:453 ../../mod/admin.php:819 -#: ../../mod/admin.php:986 ../../mod/admin.php:1118 ../../mod/admin.php:1312 -#: ../../mod/admin.php:1397 ../../mod/pconfig.php:108 ../../mod/pdledit.php:58 -#: ../../mod/appman.php:99 ../../mod/photos.php:577 ../../mod/photos.php:654 -#: ../../mod/photos.php:941 ../../mod/photos.php:981 ../../mod/photos.php:1099 -#: ../../mod/poke.php:166 ../../mod/bulksetclose.php:24 ../../mod/poll.php:68 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/connect.php:93 -#: ../../mod/profiles.php:667 ../../mod/connedit.php:704 -#: ../../mod/rate.php:167 ../../mod/events.php:511 ../../mod/events.php:693 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/import.php:592 ../../mod/invite.php:142 -#: ../../mod/settings.php:588 ../../mod/settings.php:692 -#: ../../mod/settings.php:718 ../../mod/settings.php:746 -#: ../../mod/settings.php:769 ../../mod/settings.php:854 -#: ../../mod/settings.php:1050 ../../mod/setup.php:327 ../../mod/setup.php:367 -#: ../../mod/locs.php:105 ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/mitem.php:235 ../../mod/mood.php:134 ../../mod/thing.php:303 -#: ../../mod/thing.php:346 ../../mod/xchan.php:11 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Salva" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1192 -#: ../../mod/editblock.php:135 ../../mod/editlayout.php:134 -#: ../../mod/editpost.php:107 ../../mod/editwebpage.php:179 -msgid "Bold" -msgstr "Grassetto" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1193 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 -#: ../../mod/editpost.php:108 ../../mod/editwebpage.php:180 -msgid "Italic" -msgstr "Corsivo" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1194 -#: ../../mod/editblock.php:137 ../../mod/editlayout.php:136 -#: ../../mod/editpost.php:109 ../../mod/editwebpage.php:181 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1195 -#: ../../mod/editblock.php:138 ../../mod/editlayout.php:137 -#: ../../mod/editpost.php:110 ../../mod/editwebpage.php:182 -msgid "Quote" -msgstr "Citazione" - -#: ../../include/ItemObject.php:674 ../../include/conversation.php:1196 -#: ../../mod/editblock.php:139 ../../mod/editlayout.php:138 -#: ../../mod/editpost.php:111 ../../mod/editwebpage.php:183 -msgid "Code" -msgstr "Codice" - -#: ../../include/ItemObject.php:675 -msgid "Image" -msgstr "Immagine" - -#: ../../include/ItemObject.php:676 -msgid "Insert Link" -msgstr "Collegamento" - -#: ../../include/ItemObject.php:677 -msgid "Video" -msgstr "Video" - -#: ../../include/ItemObject.php:678 ../../include/conversation.php:1166 -#: ../../include/page_widgets.php:40 ../../mod/photos.php:982 -#: ../../mod/editblock.php:170 ../../mod/editpost.php:143 -#: ../../mod/editwebpage.php:214 ../../mod/events.php:690 -#: ../../mod/webpages.php:188 -msgid "Preview" -msgstr "Anteprima" - -#: ../../include/ItemObject.php:681 ../../include/conversation.php:1247 -#: ../../mod/mail.php:247 ../../mod/mail.php:361 ../../mod/editpost.php:151 -msgid "Encrypt text" -msgstr "Crittografia del testo" - -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Email non valida" - -#: ../../include/account.php:29 -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:35 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Registrazione verificata. Adesso puoi effettuare login." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." - -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Contenuti incorporati" - -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:248 ../../mod/photos.php:571 -#: ../../mod/photos.php:934 ../../mod/chat.php:209 ../../mod/events.php:691 -#: ../../mod/filestorage.php:147 -msgid "Permissions" -msgstr "Permessi" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "e" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." - -#: ../../include/api.php:1178 -msgid "Public Timeline" -msgstr "Diario pubblico" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Amministrazione sito" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Rubrica" - -#: ../../include/apps.php:138 ../../include/identity.php:1240 -#: ../../include/identity.php:1357 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profilo" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Umore" - -#: ../../include/apps.php:145 ../../include/conversation.php:959 -msgid "Poke" -msgstr "Poke" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Diagnostica" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Suggerisci" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Canale casuale" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Invita" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funzionalità" - -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Lingua" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Post" - -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Foto del profilo" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:614 -msgid "Update" -msgstr "Aggiorna" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installa" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Acquista" - -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:305 ../../include/attach.php:319 -#: ../../include/attach.php:350 ../../include/attach.php:546 -#: ../../include/attach.php:618 ../../include/chat.php:131 -#: ../../include/items.php:4383 ../../include/photos.php:26 -#: ../../mod/mail.php:114 ../../mod/achievements.php:30 ../../mod/page.php:31 -#: ../../mod/page.php:86 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/pdledit.php:21 ../../mod/appman.php:66 ../../mod/photos.php:69 -#: ../../mod/authtest.php:13 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/poke.php:128 -#: ../../mod/bookmarks.php:46 ../../mod/manage.php:6 ../../mod/channel.php:100 -#: ../../mod/channel.php:219 ../../mod/channel.php:262 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/common.php:35 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/notifications.php:66 -#: ../../mod/connections.php:29 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/connedit.php:348 -#: ../../mod/editblock.php:65 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/editpost.php:13 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/events.php:249 -#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 -#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 -#: ../../mod/register.php:72 ../../mod/fsuggest.php:78 ../../mod/regmod.php:17 -#: ../../mod/group.php:9 ../../mod/id.php:71 ../../mod/service_limits.php:7 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/settings.php:570 -#: ../../mod/item.php:206 ../../mod/item.php:214 ../../mod/item.php:1005 -#: ../../mod/setup.php:223 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/sharedwithme.php:7 -#: ../../mod/like.php:178 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:72 ../../mod/message.php:16 ../../mod/mitem.php:111 -#: ../../mod/mood.php:111 ../../mod/suggest.php:26 ../../mod/network.php:12 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/thing.php:269 ../../mod/thing.php:284 ../../mod/thing.php:318 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../mod/webpages.php:69 ../../index.php:186 -#: ../../index.php:397 +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "Può creare o modificare le pagine web del mio canale" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Può scrivere nelle pagine del mio wiki" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "Può postare sulla mia bacheca" + +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" + +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" +msgstr "Può inviarmi messaggi privati" + +#: ../../Zotlabs/Access/Permissions.php:69 +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:70 +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:71 +msgid "Can chat with me" +msgstr "Può aprire una chat con me" + +#: ../../Zotlabs/Access/Permissions.php:72 +msgid "Can source my public posts in derived channels" +msgstr "Può usare i miei post pubblici per creare canali derivati" + +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" +msgstr "Può amministrare il mio canale" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "Social network" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Party" +msgstr "Social - Party" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "Social - Prevalentemente pubblico" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "Social - Con restrizioni" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "Social - Privato" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "Forum di discussione" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "Social - Prevalentemente pubblico" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "Forum - Con restrizioni" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "Forum - Privato" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "Feed - Prevalentemente pubblico" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "Feed - Con restrizioni" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "Per finalità speciali" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciale - Pagina per fan" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "Speciale - Repository di gruppo" + +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:144 +#: ../../Zotlabs/Module/Settings/Channel.php:479 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:795 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:697 +#: ../../include/connections.php:704 +msgid "Other" +msgstr "Altro" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" + +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1197 +msgid "Requested profile is not available." +msgstr "Il profilo richiesto non è disponibile." + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:91 +#: ../../Zotlabs/Module/New_channel.php:116 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Settings/Features.php:38 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:280 +#: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1106 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 +#: ../../Zotlabs/Module/Display.php:449 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:85 +#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:150 +#: ../../include/attach.php:197 ../../include/attach.php:270 +#: ../../include/attach.php:284 ../../include/attach.php:293 +#: ../../include/attach.php:366 ../../include/attach.php:380 +#: ../../include/attach.php:387 ../../include/attach.php:469 +#: ../../include/attach.php:1029 ../../include/attach.php:1103 +#: ../../include/attach.php:1268 ../../include/items.php:3706 +#: ../../include/photos.php:27 msgid "Permission denied." msgstr "Permesso negato." -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Nome del block" -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2422 +msgid "Blocks" +msgstr "Block" -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titolo del block" -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "Creato" -#: ../../include/attach.php:410 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:160 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "Crea" + +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 +#: ../../Zotlabs/Module/Admin/Profs.php:175 +#: ../../Zotlabs/Module/Settings/Oauth2.php:149 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Lib/Apps.php:409 ../../Zotlabs/Lib/ThreadItem.php:121 +#: ../../Zotlabs/Storage/Browser.php:288 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../include/channel.php:1296 +#: ../../include/channel.php:1300 ../../include/menu.php:113 +msgid "Edit" +msgstr "Modifica" + +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 +#: ../../Zotlabs/Module/Wiki.php:287 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../include/conversation.php:1366 +msgid "Share" +msgstr "Condividi" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Settings/Oauth2.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Thing.php:267 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:289 +#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 +#: ../../include/conversation.php:690 ../../include/conversation.php:733 +msgid "Delete" +msgstr "Elimina" + +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +msgid "View" +msgstr "Guarda" + +#: ../../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 "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../include/attach.php:422 +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" + +#: ../../Zotlabs/Module/Invite.php:77 +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:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, 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." +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../include/attach.php:505 -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:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." - -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "Percorso non disponibile." - -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" - -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" - -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Percorso del file non trovato." - -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir fallito." - -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "scrittura su database fallita." - -#: ../../include/auth.php:131 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:272 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/auth.php:286 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/bb2diaspora.php:459 ../../include/event.php:22 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/bb2diaspora.php:461 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" - -#: ../../include/bb2diaspora.php:465 ../../include/event.php:30 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/bb2diaspora.php:473 ../../include/event.php:40 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/bb2diaspora.php:481 ../../include/event.php:50 -#: ../../include/identity.php:1007 ../../mod/directory.php:302 -#: ../../mod/events.php:684 -msgid "Location:" -msgstr "Luogo:" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:768 -#: ../../include/bbcode.php:771 ../../include/bbcode.php:776 -#: ../../include/bbcode.php:779 ../../include/bbcode.php:782 -#: ../../include/bbcode.php:785 ../../include/bbcode.php:790 -#: ../../include/bbcode.php:793 ../../include/bbcode.php:798 -#: ../../include/bbcode.php:801 ../../include/bbcode.php:804 -#: ../../include/bbcode.php:807 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:161 ../../include/bbcode.php:818 -msgid "Encrypted content" -msgstr "Contenuto crittografato" - -#: ../../include/bbcode.php:178 +#: ../../Zotlabs/Module/Invite.php:86 #, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../include/bbcode.php:182 -#, php-format +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Spedisci inviti" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." + +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" + +#: ../../Zotlabs/Module/Invite.php:144 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." +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../include/bbcode.php:192 ../../mod/impel.php:37 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Invite.php:146 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." -#: ../../include/bbcode.php:195 ../../mod/impel.php:47 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Invite.php:147 +msgid "or visit" +msgstr "oppure visita" -#: ../../include/bbcode.php:198 ../../mod/impel.php:42 -msgid "block" -msgstr "riquadro" +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../include/bbcode.php:201 ../../mod/impel.php:54 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 +#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Channel.php:495 +#: ../../Zotlabs/Module/Settings/Features.php:79 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Oauth2.php:84 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Import.php:530 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 +#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:114 +#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Lib/ThreadItem.php:752 +#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:275 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:823 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 +#: ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:97 ../../addon/pubcrawl/pubcrawl.php:1069 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 +#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/cart/cart.php:1104 ../../addon/piwik/piwik.php:95 +#: ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "Salva" -#: ../../include/bbcode.php:215 -msgid "QR code" -msgstr "QR code" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:191 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:133 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Articoli" -#: ../../include/bbcode.php:266 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Aggiungi un articolo" -#: ../../include/bbcode.php:268 ../../mod/tagger.php:51 -msgid "post" -msgstr "il post" +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../include/bbcode.php:518 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../include/bbcode.php:729 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../Zotlabs/Module/Editlayout.php:129 +#: ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../include/bbcode.php:756 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Cloud.php:117 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:358 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Area chat senza nome" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Il nome dell'area chat è duplicato" +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Il nome dell'area chat non è valido." +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1644 +msgid "Profile" +msgstr "Profilo" -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Area chat non trovata." +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "L'area chat è al completo" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Visibile a" -#: ../../include/comanche.php:34 ../../mod/admin.php:390 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:200 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../include/security.php:349 -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." +#: ../../Zotlabs/Module/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "EVENTO NON VALIDO ELIMINATO!" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Sommario:" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:833 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:878 +#: ../../include/conversation.php:1160 +msgid "Unknown" +msgstr "Sconosciuto" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al giorno" +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Data:" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Ogni giorno" +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Motivo:" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ogni settimana" +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "CARD NON VALIDA ELIMINATA!" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Ogni mese" +#: ../../Zotlabs/Module/Cdav.php:794 +msgid "Name: " +msgstr "Nome:" -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Titolo dell'evento" -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Data e ora di inizio" -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Esempio: YYYY-MM-DD HH:mm" -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:822 -#: ../../mod/admin.php:831 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1553 +#: ../../Zotlabs/Module/Cdav.php:870 +msgid "End date and time" +msgstr "Data e ora di fine" + +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +msgid "Description" +msgstr "Descrizione" + +#: ../../Zotlabs/Module/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" + +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 +msgid "Previous" +msgstr "Precendente" + +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Photos.php:980 +msgid "Next" +msgstr "Successivo" + +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Oggi" + +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "Mese" + +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "Settimana" + +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "Giorno" + +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Lista del mese" + +#: ../../Zotlabs/Module/Cdav.php:886 +msgid "List week" +msgstr "Lista della settimana" + +#: ../../Zotlabs/Module/Cdav.php:887 +msgid "List day" +msgstr "Lista del giorno" + +#: ../../Zotlabs/Module/Cdav.php:894 +msgid "More" +msgstr "Di più" + +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Meno" + +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Seleziona calendario" + +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Elimina tutto" + +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth2.php:85 +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../include/conversation.php:1389 ../../include/conversation.php:1438 +msgid "Cancel" +msgstr "Annulla" + +#: ../../Zotlabs/Module/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile." + +#: ../../Zotlabs/Module/Cdav.php:1170 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +msgid "Name" +msgstr "Nome" + +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Organizzazione" + +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Titolo" + +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "Telefono" + +#: ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:787 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 msgid "Email" msgstr "Email" -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "Messaggistica istantanea" -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "Sito web" -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "Indirizzo" -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "Nota" -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 +#: ../../include/connections.php:690 +msgid "Mobile" +msgstr "Mobile" -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 +#: ../../include/connections.php:691 +msgid "Home" +msgstr "Bacheca" -#: ../../include/contact_widgets.php:14 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 +#: ../../include/connections.php:694 +msgid "Work" +msgstr "Lavoro" + +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "Aggiungi contatto" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "Aggiungi campo" + +#: ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth2.php:39 +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Lib/Apps.php:393 +msgid "Update" +msgstr "Aggiorna" + +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "P.O. Box" + +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Aggiuntivo" + +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Via" + +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Località" + +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Regione" + +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "CAP" + +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "Nazione" + +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Calendario predefinito" + +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Rubrica predefinita" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" + +#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:25 ../../addon/chess/chess.php:508 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Post e commenti" + +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Solo post" + +#: ../../Zotlabs/Module/Channel.php:107 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Esporta il canale" + +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Esporta i contenuti" + +#: ../../Zotlabs/Module/Uexport.php:61 +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/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." + +#: ../../Zotlabs/Module/Uexport.php:65 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." + +#: ../../Zotlabs/Module/Uexport.php:66 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +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 " -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:457 +#: ../../Zotlabs/Module/Uexport.php:67 +#, 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:68 +#, 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/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "Benvenuto su Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "Non hai post non letti..." + +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." + +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:335 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 +msgid "Search" +msgstr "Cerca" + +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" + +#: ../../Zotlabs/Module/Pubstream.php:95 +#: ../../Zotlabs/Widget/Notifications.php:131 +msgid "Public Stream" +msgstr "Flusso pubblico" + +#: ../../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 ../../Zotlabs/Module/Admin.php:111 +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/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Cambia l'ordine della app bloccate sulla barra di navigazione" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Cambia l'ordine delle app elencate nel menu delle app" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the" +" navbar" +msgstr "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Utilizza le frecce per spostare l'app su o giù nel menu delle app" + +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../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:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" + +#: ../../Zotlabs/Module/Mitem.php:161 +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:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:259 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/rtof/rtof.php:81 ../../addon/rtof/rtof.php:85 +#: ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "No" +msgstr "No" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:261 +#: ../../Zotlabs/Module/Settings/Channel.php:307 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1594 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/rainbowtag/rainbowtag.php:81 +#: ../../addon/visage/visage.php:166 ../../addon/nsabait/nsabait.php:157 +#: ../../addon/rtof/rtof.php:81 ../../addon/rtof/rtof.php:85 +#: ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/cart/cart.php:1075 ../../addon/cart/cart.php:1082 +#: ../../addon/cart/cart.php:1090 ../../addon/authchoose/authchoose.php:67 +#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 +#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "Sì" + +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" + +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" + +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" + +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" + +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" + +#: ../../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:110 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "Evento non trovato." + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 +#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 +#: ../../include/text.php:2008 ../../include/event.php:1153 +msgid "event" +msgstr "l'evento" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:141 ../../Zotlabs/Module/Appman.php:142 +#: ../../Zotlabs/Module/Profiles.php:745 ../../Zotlabs/Module/Profiles.php:749 +#: ../../include/datetime.php:211 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Modifica la categoria" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +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:469 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Data e ora di fine" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" + +#: ../../Zotlabs/Module/Events.php:471 +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:473 +msgid "Edit Description" +msgstr "Modifica la descrizione" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Modifica il luogo" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../include/conversation.php:1333 +msgid "Preview" +msgstr "Anteprima" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1405 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Fuso orario: " + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Opzioni avanzate" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Elimina l'evento" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 +#: ../../include/text.php:1827 +msgid "Link to Source" +msgstr "Link al sito d'origine" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Crea un evento" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 +#: ../../include/channel.php:1647 +msgid "Export" +msgstr "Esporta" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "Evento eliminato" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "App installata" + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "L'app contiene errori" + +#: ../../Zotlabs/Module/Appman.php:130 +msgid "Embed code" +msgstr "Inserisci il codice" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Edit App" +msgstr "Modifica app" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Create App" +msgstr "Crea una app" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Name of app" +msgstr "Nome app" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Version ID" +msgstr "ID versione" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Effettua l'accesso." + +#: ../../Zotlabs/Module/Magic.php:72 +msgid "Hub not found." +msgstr "Hub non trovato." + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:384 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1388 +#: ../../include/conversation.php:116 ../../include/text.php:2005 +msgid "photo" +msgstr "la foto" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 +#: ../../addon/diaspora/Receiver.php:1500 ../../addon/pubcrawl/as.php:1388 +#: ../../include/conversation.php:144 ../../include/text.php:2011 +msgid "status" +msgstr "messaggio di stato" + +#: ../../Zotlabs/Module/Subthread.php:142 +#, 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:144 +#, 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/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "Canale non trovato." + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../include/conversation.php:1278 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:698 +#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../include/conversation.php:1401 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Modifica l'articolo" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" + +#: ../../Zotlabs/Module/Import_items.php:77 +#: ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." + +#: ../../Zotlabs/Module/Import_items.php:93 +#, 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_items.php:108 +msgid "Import completed" +msgstr "Importazione completata" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Importa i contenuti" + +#: ../../Zotlabs/Module/Import_items.php:126 +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/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:517 +msgid "File to Upload" +msgstr "File da caricare" + +#: ../../Zotlabs/Module/New_channel.php:133 +#: ../../Zotlabs/Module/Manage.php:138 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +msgid "Name or caption" +msgstr "Nome o titolo" + +#: ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Register.php:254 +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:148 +#: ../../Zotlabs/Module/Register.php:256 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../Zotlabs/Module/New_channel.php:148 +#: ../../Zotlabs/Module/Register.php:256 +#, 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:149 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" + +#: ../../Zotlabs/Module/New_channel.php:149 +#: ../../Zotlabs/Module/Register.php:257 +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:149 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" + +#: ../../Zotlabs/Module/New_channel.php:152 +msgid "Create Channel" +msgstr "Crea un canale" + +#: ../../Zotlabs/Module/New_channel.php:153 +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:154 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." + +#: ../../Zotlabs/Module/New_channel.php:159 +msgid "Validate" +msgstr "Validazione" + +#: ../../Zotlabs/Module/Removeme.php:35 +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 +msgid "Remove This Channel" +msgstr "Elimina questo canale" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "ATTENZIONE:" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" + +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../Zotlabs/Module/Removeme.php:63 +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 +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/Channel.php:600 +msgid "Remove Channel" +msgstr "Elimina questo canale" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "File: condivisi con me" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "NOVITÀ" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 +msgid "Size" +msgstr "Dimensione" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:286 +msgid "Last Modified" +msgstr "Ultima modifica" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Elimina tutti i file" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Elimina questo file" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" + +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." + +#: ../../Zotlabs/Module/Setup.php:178 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." + +#: ../../Zotlabs/Module/Setup.php:185 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." + +#: ../../Zotlabs/Module/Setup.php:197 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." + +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:749 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." + +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" +msgstr "Verifica del sistema" + +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" +msgstr "Verifica di nuovo" + +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" +msgstr "Connessione al database" + +#: ../../Zotlabs/Module/Setup.php:287 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." + +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Database Server Name" +msgstr "Server del database" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" +msgstr "Port del database" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" +msgstr "Utente database" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" +msgstr "Password database" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" +msgstr "Nome database" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Tipo database" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" +msgstr "URL completo del sito" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" + +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" +msgstr "Impostazioni del hub" + +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "Versione PHP" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" + +#: ../../Zotlabs/Module/Setup.php:402 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "PHP executable path" +msgstr "Path del comando PHP" + +#: ../../Zotlabs/Module/Setup.php:406 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." + +#: ../../Zotlabs/Module/Setup.php:411 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario." + +#: ../../Zotlabs/Module/Setup.php:424 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." + +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Puoi modificare queste impostazione nel file php.ini del server." + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" + +#: ../../Zotlabs/Module/Setup.php:476 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../Zotlabs/Module/Setup.php:480 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "PDO database PHP module" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "modulo xml PHP" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "modulo zip del PHP" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" + +#: ../../Zotlabs/Module/Setup.php:507 +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:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "exec" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "shell_exec" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: shell_exec è richiesto ma non è installato o è stato disabilitato in php.ini" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:531 +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:535 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "Errore: PDO database PHP module è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:543 +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:547 +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:551 +msgid "Error: zip PHP module required but not installed." +msgstr "Errore: il modulo zip del PHP necessario ma non installato." + +#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: ../../Zotlabs/Module/Setup.php:575 +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:576 +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:577 +msgid "Please see install/INSTALL.txt for additional information." +msgstr "Leggi il file 'install/INSTALL.txt' per maggiori informazioni." + +#: ../../Zotlabs/Module/Setup.php:593 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione." + +#: ../../Zotlabs/Module/Setup.php:594 +#, 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" + +#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 +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:596 +#, 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:599 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" + +#: ../../Zotlabs/Module/Setup.php:615 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level" +" web folder" +msgstr "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web" + +#: ../../Zotlabs/Module/Setup.php:619 +msgid "store is writable" +msgstr "l'archivio è scrivibile" + +#: ../../Zotlabs/Module/Setup.php:651 +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:652 +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:653 +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:654 +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:655 +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:656 +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:658 +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:660 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" + +#: ../../Zotlabs/Module/Setup.php:666 +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:669 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" + +#: ../../Zotlabs/Module/Setup.php:683 +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:707 +#: ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../Zotlabs/Module/Setup.php:747 +msgid "

What next?

" +msgstr "

E ora?

" + +#: ../../Zotlabs/Module/Setup.php:748 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." + +#: ../../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/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Statistiche della coda" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Totale" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Priorità" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "URL di destinazione" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Ultimo scambio dati" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "Off" +msgstr "Off" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "On" +msgstr "On" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../Zotlabs/Module/Admin/Plugins.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 +#: ../../Zotlabs/Module/Display.php:453 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3619 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." + +#: ../../Zotlabs/Module/Admin/Plugins.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." + +#: ../../Zotlabs/Module/Admin/Plugins.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "Disattiva" + +#: ../../Zotlabs/Module/Admin/Plugins.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "Attiva" + +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../Zotlabs/Module/Admin/Plugins.php:342 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +#: ../../Zotlabs/Widget/Admin.php:27 +msgid "Plugins" +msgstr "Plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "Attiva/disattiva" + +#: ../../Zotlabs/Module/Admin/Plugins.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Widget/Settings_menu.php:141 ../../include/nav.php:105 +#: ../../include/nav.php:192 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "Autore:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "Gestore:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" + +#: ../../Zotlabs/Module/Admin/Plugins.php:354 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" + +#: ../../Zotlabs/Module/Admin/Plugins.php:355 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:356 +msgid "Compatible Server Roles: " +msgstr "Ruoli previsti per questo server" + +#: ../../Zotlabs/Module/Admin/Plugins.php:357 +msgid "Requires: " +msgstr "Necessita di:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:358 +#: ../../Zotlabs/Module/Admin/Plugins.php:442 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" + +#: ../../Zotlabs/Module/Admin/Plugins.php:411 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." + +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "(optional)" +msgstr "(facoltativo)" + +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:421 +msgid "Install new repo" +msgstr "Installa un nuovo repository" + +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 +msgid "Install" +msgstr "Installa" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +msgid "Manage Repos" +msgstr "Gestisci i repository" + +#: ../../Zotlabs/Module/Admin/Plugins.php:446 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" + +#: ../../Zotlabs/Module/Admin/Plugins.php:447 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:454 +msgid "Switch branch" +msgstr "Cambia branch" + +#: ../../Zotlabs/Module/Admin/Plugins.php:455 +#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "Account non trovato" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2473 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "Account" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Connections.php:303 ../../include/conversation.php:732 +msgid "Approve" +msgstr "Approva" + +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Authorize.php:26 +msgid "Deny" +msgstr "Nega" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "Blocca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 ../../include/group.php:284 +msgid "All Channels" +msgstr "Tutti i canali" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "Con scadenza" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "Classe dell'account" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "Log" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Pulisci" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debugging" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "File di log" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Livello di log" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Canale non trovato" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "Canali" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Applica censura" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "Rimuovi censura" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Permetti codice" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Non permettere codice" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1811 ../../include/nav.php:378 +msgid "Channel" +msgstr "Canale" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Istantanea dello schermo" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "Temi" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../Zotlabs/Module/Admin/Site.php:165 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." + +#: ../../Zotlabs/Module/Admin/Site.php:191 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3106 +msgid "Default" +msgstr "Predefinito" + +#: ../../Zotlabs/Module/Admin/Site.php:202 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (Incompatibile)" + +#: ../../Zotlabs/Module/Admin/Site.php:209 +msgid "mobile" +msgstr "mobile" + +#: ../../Zotlabs/Module/Admin/Site.php:211 +msgid "experimental" +msgstr "sperimentale" + +#: ../../Zotlabs/Module/Admin/Site.php:213 +msgid "unsupported" +msgstr "non supportato" + +#: ../../Zotlabs/Module/Admin/Site.php:260 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" + +#: ../../Zotlabs/Module/Admin/Site.php:266 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "My site has free access only" +msgstr "È un servizio gratuito" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" + +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Beginner/Basic" +msgstr "Principiante" + +#: ../../Zotlabs/Module/Admin/Site.php:282 +msgid "Novice - not skilled but willing to learn" +msgstr "Novizio - disposto a imparare" + +#: ../../Zotlabs/Module/Admin/Site.php:283 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio - con alcune conoscenze tecniche" + +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Advanced - very comfortable" +msgstr "Avanzato - a mio agio con gli aspetti tecnici" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Expert - I can write computer code" +msgstr "Esperto - posso scrivere codice" + +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "Wizard - I probably know more than you do" +msgstr "Genio - probabilmente ne so più di te!" + +#: ../../Zotlabs/Module/Admin/Site.php:295 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "Sito" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Register.php:269 +msgid "Registration" +msgstr "Registrazione" + +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Policies" +msgstr "Politiche" + +#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Avanzate" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../addon/statusnet/statusnet.php:891 +msgid "Site name" +msgstr "Nome del sito" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Site default technical skill level" +msgstr "Livello tecnico predefinito per gli utenti del sito" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Lock the technical skill level setting" +msgstr "Il livello tecnico non potrà essere modificato" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:273 -#: ../../mod/directory.php:379 ../../mod/directory.php:384 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Members can set their own technical comfort level by default" +msgstr "Gli utenti possono scegliere il livello tecnico preferito" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:383 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "È permesso un contenuto HTML/CSS/JS non filtrato" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../include/contact_widgets.php:125 +#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Information" +msgstr "Informazioni sul sito" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare il BBCode" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Invitation only" +msgstr "Solo con invito" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age" +msgstr "Età minima" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Minimum age (in years) for who may register on this site." +msgstr "L'età minima (in anni) richiesta per registrarsi su questo sito." + +#: ../../Zotlabs/Module/Admin/Site.php:322 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Register text" +msgstr "Testo di registrazione" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" + +#: ../../Zotlabs/Module/Admin/Site.php:328 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" + +#: ../../Zotlabs/Module/Admin/Site.php:329 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Site only Public Streams" +msgstr "Solo i flussi pubblici su questo sito" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Consenti l'accesso a contenuti pubblici originati solo da questo sito se se è disabilitata l'importazione di flussi pubblici." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Permetti a chiunque su internet di accedere ai flussi pubblici" + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Disabilita per richiedere di autenticarsi prima di visualizzare. Attenzione: questo contenuto non è moderato." + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Login on Homepage" +msgstr "Login sulla homepage" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Reply-to email address for system generated email." +msgstr "Indirizzo Reply-to per mail generate dal sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Sender (From) email address for system generated email." +msgstr "Indirzzo email del mittente (From) per mail generate dal sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Name of email sender for system generated email." +msgstr "Nome del mittente per mail generate dal sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Directory Server URL" +msgstr "URL del directory server" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Default directory server" +msgstr "Directory server predefinito" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Proxy user" +msgstr "Utente proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Proxy URL" +msgstr "URL proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Delivery interval" +msgstr "Recapito ritardato" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Queue Threshold" +msgstr "Threshold della coda" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi." + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Poll interval" +msgstr "Intervallo di polling" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "Path to ImageMagick convert program" +msgstr "Percorso del comando convert di ImageMagic" + +#: ../../Zotlabs/Module/Admin/Site.php:349 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Allow SVG thumbnails in file browser" +msgstr "Permetti le anteprime SVG nell'elenco dei file" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "WARNING: SVG images may contain malicious code." +msgstr "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo." + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" + +#: ../../Zotlabs/Module/Admin/Site.php:353 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "Non far scadere nessun post che ha commenti più recenti di questo numero di giorni" + +#: ../../Zotlabs/Module/Admin/Site.php:355 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Server pubblici: Landing page (marketing) opzionale per utenti appena registrati" + +#: ../../Zotlabs/Module/Admin/Site.php:355 #, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" +msgid "Create this page first. Default is %s/register" +msgstr "Crea questa pagina prima. Il default è %s/register" -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "mostra tutto" +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Page to display after creating a new channel" +msgstr "Pagina da visualizzare dopo la creazione di un nuovo canale" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "canale" +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Recommend: profiles, go, or settings" +msgstr "" -#: ../../include/conversation.php:164 ../../include/diaspora.php:2152 -#: ../../mod/like.php:397 +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Optional: site location" +msgstr "Opzionale: site location" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Region or country" +msgstr "Regione o Paese" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Nome breve del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "Nome di sistema del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Tipo di dati" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Nome del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Testo di aiuto" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" + +#: ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 +msgid "Save" +msgstr "Salva" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:168 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "Campi del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Tutti i campi disponibili" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "Campi personalizzati" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +msgid "Password changed for account %d." +msgstr "La password per l'utente %d è cambiata." -#: ../../include/conversation.php:167 ../../mod/like.php:399 +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "L'impostazioni sono state aggiornate." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "Account non trovato." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Modifica le impostazioni" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Nuova password" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Ripeti la nuova password" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Livello tecnico" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Lingua (per le email di sistema)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Classe dell'account" + +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." + +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" + +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "https://youtube.com/
https://www.youtube.com/
https://youtu.be/
https://vimeo.com/
https://soundcloud.com/
" + +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." + +#: ../../Zotlabs/Module/Admin/Security.php:87 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "Sicurezza" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." + +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" + +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" + +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" + +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" + +#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "Profilo" + +#: ../../Zotlabs/Module/Moderate.php:62 +msgid "Comment approved" +msgstr "Commento approvato" + +#: ../../Zotlabs/Module/Moderate.php:66 +msgid "Comment deleted" +msgstr "Commento eliminato" + +#: ../../Zotlabs/Module/Settings/Permcats.php:23 +msgid "Permission Name is required." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:42 +msgid "Permission category saved." +msgstr "Categoria di permessi salvata" + +#: ../../Zotlabs/Module/Settings/Permcats.php:66 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Usa questo modulo per definire i permessi specifici per classi di persone o connessioni." + +#: ../../Zotlabs/Module/Settings/Permcats.php:99 +msgid "Permission Categories" +msgstr "Categorie di permessi" + +#: ../../Zotlabs/Module/Settings/Permcats.php:107 +msgid "Permission Name" +msgstr "Nome del permesso" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +msgid "My Settings" +msgstr "Permessi che concedo" + +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +msgid "inherited" +msgstr "derivato" + +#: ../../Zotlabs/Module/Settings/Permcats.php:113 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +msgid "Individual Permissions" +msgstr "Permessi individuali" + +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:894 +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 "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/Settings/Channel.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:83 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:437 +#: ../../include/channel.php:438 ../../include/channel.php:445 +msgid "Friends" +msgstr "Amici" + +#: ../../Zotlabs/Module/Settings/Channel.php:264 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: ../../Zotlabs/Module/Settings/Channel.php:325 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" + +#: ../../Zotlabs/Module/Settings/Channel.php:326 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Approved connections" +msgstr "Contatti approvati" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Any connections" +msgstr "Tutti i contatti" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" + +#: ../../Zotlabs/Module/Settings/Channel.php:331 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" + +#: ../../Zotlabs/Module/Settings/Channel.php:332 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" + +#: ../../Zotlabs/Module/Settings/Channel.php:407 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" + +#: ../../Zotlabs/Module/Settings/Channel.php:412 +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/Channel.php:416 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Settings/Channel.php:425 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" + +#: ../../Zotlabs/Module/Settings/Channel.php:428 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "I tuoi file/foto sono accessibili via WebDAV all'indirizzo" + +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Channel Settings" +msgstr "Impostazioni del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Basic Settings" +msgstr "Impostazioni di base" + +#: ../../Zotlabs/Module/Settings/Channel.php:501 +#: ../../include/channel.php:1521 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../Zotlabs/Module/Settings/Channel.php:502 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Indirizzo email:" + +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" + +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Adult Content" +msgstr "Contenuto per adulti" + +#: ../../Zotlabs/Module/Settings/Channel.php:507 +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/Channel.php:509 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: ../../Zotlabs/Module/Settings/Channel.php:511 +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/Channel.php:513 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" + +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" + +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" + +#: ../../Zotlabs/Module/Settings/Channel.php:517 +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/Channel.php:518 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +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/Channel.php:523 +msgid "Channel Permission Limits" +msgstr "Limiti sui permessi del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../include/conversation.php:204 +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "Default Privacy Group" +msgstr "Privacy Group predefinito" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +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" + +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Profile to assign new connections" +msgstr "Profilo da associare ai nuovi contatti" + +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default Permissions Group" +msgstr "Permission Group predefinito" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" + +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" + +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" + +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" + +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 +msgid "Someone likes your post/comment" +msgstr "Qualcuno mette mi piace al tuo post/commento" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Unseen channel activity" +msgstr "Novità nei canali" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:578 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "Consigliato" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Upcoming events" +msgstr "Prossimi eventi" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "Events today" +msgstr "Eventi di oggi" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "System info messages" +msgstr "Notifiche di sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "New connections" +msgstr "Nuovi contatti" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "System Registrations" +msgstr "Registrazioni" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "Unseen shared files" +msgstr "File condivisi non ancora visitati" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "Unseen public activity" +msgstr "Attività pubblica non letta" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "Unseen likes and dislikes" +msgstr "Mi piace e non mi piace da leggere" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "Email notification hub (hostname)" +msgstr "Hub di notifica (hostname)" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "Se il tuo canale è replicato su molti hub, scegli qui da dove saranno inviati i messaggi. Serve ad evitare di ricevere notifiche duplicate. Esempio: %s" -#: ../../include/conversation.php:239 +#: ../../Zotlabs/Module/Settings/Channel.php:584 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "Mostra i nuovi post in bacheca, i messaggi privati e le connessioni come Notifiche" + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" + +#: ../../Zotlabs/Module/Settings/Channel.php:586 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Remove this channel." +msgstr "Elimina questo canale." + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" + +#: ../../Zotlabs/Module/Settings/Channel.php:603 +msgid "Start calendar week on Monday" +msgstr "Inizia la settimana nel calendario da lunedì" + +#: ../../Zotlabs/Module/Settings/Features.php:73 +msgid "Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "Il tuo livello tecnico" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Serve ad adeguare l'interfaccia e le funzionalità mostrate alla tua dimestichezza" + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" -#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." + +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token salvato." + +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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 private content." +msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +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/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:100 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nome utente" + +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Password" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" + +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "Their Settings" +msgstr "Permessi concessi a te" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:35 +msgid "Name and Secret are required" +msgstr "Nome e Password sono obbligatori" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:83 +msgid "Add OAuth2 application" +msgstr "Aggiungi applicazione OAuth2" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +msgid "Name of application" +msgstr "Nome dell'applicazione" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Redirect" +msgstr "Redirect" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +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/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +msgid "Grant Types" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "leave blank unless your application sepcifically requires this" +msgstr "lascia bianco a meno che la applicazione non lo richieda esplicitamente" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "Authorization scope" +msgstr "Ambito dell'autorizzazione" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:102 +msgid "OAuth2 Application not found." +msgstr "Applicazione OAuth2 non trovata." + +#: ../../Zotlabs/Module/Settings/Oauth2.php:111 +#: ../../Zotlabs/Module/Settings/Oauth2.php:148 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +msgid "Add application" +msgstr "Aggiungi una app" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:147 +msgid "Connected OAuth2 Apps" +msgstr "Applicazioni OAuth2 connesse" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:151 +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "Client key starts with" +msgstr "La client key inizia con" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:152 +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "No name" +msgstr "Nessun nome" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:153 +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Email non valida." + +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." + +#: ../../Zotlabs/Module/Settings/Account.php:32 +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/Account.php:40 +msgid "Technical skill level updated" +msgstr "Livello tecnico aggiornato" + +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Verifica della password fallita." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Password cambiata." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." + +#: ../../Zotlabs/Module/Settings/Account.php:112 +msgid "Account Settings" +msgstr "Il tuo account" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Password attuale" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Nuova password" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" + +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Elimina l'account" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "Impostazioni dell'Affinity Slider salvate." + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "Livello di affinità predefinito massimo " + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 predefinito 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "Livello di affinità predefinito minimo" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - predefinito 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "Impostazioni dell'Affinity Slider" + +#: ../../Zotlabs/Module/Settings/Featured.php:67 +msgid "Addon Settings" +msgstr "Impostazioni del componente aggiuntivo" + +#: ../../Zotlabs/Module/Settings/Featured.php:68 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Salva/invia i cambiamenti prima di cambiare pannello." + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Aspetto" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Impostazioni del tema" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Scegli uno schema" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +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/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum of 100 items" +msgstr "Massimo 100" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "Visualizza il menu del canale nella barra di navigazione" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "Predefinito: menu del canale nel menu delle app" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "Aggiornamenti manuali alla conversazione" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "Se non è attiva può causare scorrimenti imprevisti della pagina" + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" + +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" + +#: ../../Zotlabs/Module/Settings/Oauth.php:35 +msgid "Name is required" +msgstr "Il nome è obbligatorio" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" + +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "Url icona" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facoltativo" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "Applicazione non trovata." + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "App connesse" + +#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "Guarda la foto" + +#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Photos.php:712 +#: ../../Zotlabs/Module/Profile_photo.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:362 +#: ../../Zotlabs/Storage/Browser.php:384 ../../Zotlabs/Widget/Cdav.php:133 +#: ../../Zotlabs/Widget/Cdav.php:169 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "Carica" + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" + +#: ../../Zotlabs/Module/Thing.php:120 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" + +#: ../../Zotlabs/Module/Thing.php:172 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." + +#: ../../Zotlabs/Module/Thing.php:176 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" + +#: ../../Zotlabs/Module/Thing.php:202 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../Zotlabs/Module/Thing.php:265 +msgid "Show Thing" +msgstr "Mostra l'oggetto" + +#: ../../Zotlabs/Module/Thing.php:272 +msgid "item not found." +msgstr "non trovato." + +#: ../../Zotlabs/Module/Thing.php:305 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 +msgid "Select a profile" +msgstr "Scegli un profilo" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Post an activity" +msgstr "Pubblica un'attività" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo scelto" + +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" + +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" + +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" + +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:147 +#: ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "Permessi" + +#: ../../Zotlabs/Module/Thing.php:362 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:57 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." + +#: ../../Zotlabs/Module/Notify.php:65 +#: ../../Zotlabs/Module/Notifications.php:61 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." +msgstr "Contatto aggiunto." + +#: ../../Zotlabs/Module/Import.php:144 +#, 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:158 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." + +#: ../../Zotlabs/Module/Import.php:482 +#: ../../addon/diaspora/import_diaspora.php:139 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." + +#: ../../Zotlabs/Module/Import.php:510 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." + +#: ../../Zotlabs/Module/Import.php:515 +msgid "Import Channel" +msgstr "Importa un canale" + +#: ../../Zotlabs/Module/Import.php:516 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." + +#: ../../Zotlabs/Module/Import.php:518 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" + +#: ../../Zotlabs/Module/Import.php:519 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" + +#: ../../Zotlabs/Module/Import.php:520 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" + +#: ../../Zotlabs/Module/Import.php:521 +msgid "Your old login password" +msgstr "La password per il vecchio hub" + +#: ../../Zotlabs/Module/Import.php:522 +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/Import.php:523 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" + +#: ../../Zotlabs/Module/Import.php:524 +msgid "Move this channel (disable all previous locations)" +msgstr "Sposta questo canale (disabilita le posizioni precedenti)" + +#: ../../Zotlabs/Module/Import.php:525 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Importa alcune mesi di post se possibile (dipende dalla memoria disponibile" + +#: ../../Zotlabs/Module/Import.php:526 +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/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Autenticazione fallita." + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1590 +#: ../../include/channel.php:2318 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2319 +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:77 ../../include/channel.php:2320 +msgid "Authenticate" +msgstr "Accedi" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2446 +msgid "Import" +msgstr "Importa" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Autorizza la app" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Modifica il block" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "vcard" + +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 +msgid "Apps" +msgstr "App" + +#: ../../Zotlabs/Module/Apps.php:51 +msgid "Manage apps" +msgstr "Gestisci le app" + +#: ../../Zotlabs/Module/Apps.php:52 +msgid "Create new app" +msgstr "Crea nuova app" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 #, php-format msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s è %2$s" -#: ../../include/conversation.php:583 ../../mod/photos.php:996 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 +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/Connections.php:55 +#: ../../Zotlabs/Module/Connections.php:112 +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Active" +msgstr "Attivo" + +#: ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Blocked" +msgstr "Bloccati" + +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Ignored" +msgstr "Ignorati" + +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:185 +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Hidden" +msgstr "Nascosti" + +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Archived/Unreachable" +msgstr "Archiviato/Irraggiungibile" + +#: ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:89 ../../Zotlabs/Module/Menu.php:116 +#: ../../Zotlabs/Module/Notifications.php:52 +#: ../../include/conversation.php:1717 +msgid "New" +msgstr "Novità" + +#: ../../Zotlabs/Module/Connections.php:94 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 +msgid "All" +msgstr "Tutti" + +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" +msgstr "Contatto Attivo" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" +msgstr "Mostra i contatti atttivi" + +#: ../../Zotlabs/Module/Connections.php:147 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "Nuovi contatti" + +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" + +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../Zotlabs/Module/Connections.php:174 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" + +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show archived/unreachable connections" +msgstr "Mostra solo i contatti archiviati/irraggiungibili" + +#: ../../Zotlabs/Module/Connections.php:188 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" + +#: ../../Zotlabs/Module/Connections.php:203 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" + +#: ../../Zotlabs/Module/Connections.php:257 +msgid "Pending approval" +msgstr "In attesa di conferma" + +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Archived" +msgstr "Archiviati" + +#: ../../Zotlabs/Module/Connections.php:262 +msgid "Not connected at this location" +msgstr "Non connesso a questa location" + +#: ../../Zotlabs/Module/Connections.php:279 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Edit connection" +msgstr "Modifica il contatto" + +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Delete connection" +msgstr "Elimina il contatto" + +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Channel address" +msgstr "Indirizzo del canale" + +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Network" +msgstr "Network" + +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Call" +msgstr "Chiama" + +#: ../../Zotlabs/Module/Connections.php:298 +msgid "Status" +msgstr "Stato" + +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Connected" +msgstr "In contatto" + +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Approve connection" +msgstr "Approva questo contatto" + +#: ../../Zotlabs/Module/Connections.php:304 +msgid "Ignore connection" +msgstr "Ignora il contatto" + +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Ignore" +msgstr "Ignora" + +#: ../../Zotlabs/Module/Connections.php:306 +msgid "Recent activity" +msgstr "Attività recenti" + +#: ../../Zotlabs/Module/Connections.php:331 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 +msgid "Connections" +msgstr "Contatti" + +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Search your connections" +msgstr "Cerca tra i contatti" + +#: ../../Zotlabs/Module/Connections.php:337 +msgid "Connections search" +msgstr "Ricerca tra i contatti" + +#: ../../Zotlabs/Module/Connections.php:338 +#: ../../Zotlabs/Module/Directory.php:401 +#: ../../Zotlabs/Module/Directory.php:406 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "elemento" + +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" +msgstr "Sorgente" + +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" + +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "I miei segnalibri" + +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +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 +msgid "Remove This Account" +msgstr "Elimina questo account" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +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:60 +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 +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/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 +msgid "Delete Photo" +msgstr "Elimina foto" + +#: ../../Zotlabs/Module/Photos.php:551 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../Zotlabs/Module/Photos.php:600 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." + +#: ../../Zotlabs/Module/Photos.php:646 +#, 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:649 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." + +#: ../../Zotlabs/Module/Photos.php:691 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" + +#: ../../Zotlabs/Module/Photos.php:696 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" + +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" + +#: ../../Zotlabs/Module/Photos.php:699 +msgid "Description (optional)" +msgstr "Descrizione (opzionale)" + +#: ../../Zotlabs/Module/Photos.php:785 +msgid "Show Newest First" +msgstr "Prima i più recenti" + +#: ../../Zotlabs/Module/Photos.php:787 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" + +#: ../../Zotlabs/Module/Photos.php:844 ../../Zotlabs/Module/Photos.php:1381 +msgid "Add Photos" +msgstr "Aggiungi foto" + +#: ../../Zotlabs/Module/Photos.php:892 +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:894 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../Zotlabs/Module/Photos.php:952 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" + +#: ../../Zotlabs/Module/Photos.php:960 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../Zotlabs/Module/Photos.php:975 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" + +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Edit photo" +msgstr "Modifica la foto" + +#: ../../Zotlabs/Module/Photos.php:1059 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" + +#: ../../Zotlabs/Module/Photos.php:1060 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" + +#: ../../Zotlabs/Module/Photos.php:1063 +msgid "Move photo to album" +msgstr "Sposta la foto in un album" + +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" + +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" + +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1081 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" + +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" + +#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" + +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 +#: ../../include/conversation.php:785 +msgid "Please wait" +msgstr "Attendere" + +#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:749 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" + +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 msgctxt "title" msgid "Likes" -msgstr "Mi piace" +msgstr "\"Mi piace\"" -#: ../../include/conversation.php:583 ../../mod/photos.php:996 +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 msgctxt "title" msgid "Dislikes" -msgstr "Non mi piace" +msgstr "\"Non mi piace\"" -#: ../../include/conversation.php:584 ../../mod/photos.php:997 +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 msgctxt "title" msgid "Agree" msgstr "D'accordo" -#: ../../include/conversation.php:584 ../../mod/photos.php:997 +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 msgctxt "title" msgid "Disagree" msgstr "Non d'accordo" -#: ../../include/conversation.php:584 ../../mod/photos.php:997 +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 msgctxt "title" msgid "Abstain" msgstr "Astenuti" -#: ../../include/conversation.php:585 ../../mod/photos.php:998 +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 msgctxt "title" msgid "Attending" msgstr "Partecipano" -#: ../../include/conversation.php:585 ../../mod/photos.php:998 +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 msgctxt "title" msgid "Not attending" msgstr "Non partecipano" -#: ../../include/conversation.php:585 ../../mod/photos.php:998 +#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:620 msgctxt "title" msgid "Might attend" msgstr "Forse partecipano" -#: ../../include/conversation.php:703 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: ../../Zotlabs/Module/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 +#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "View all" +msgstr "Vedi tutto" -#: ../../include/conversation.php:718 -msgid "Categories:" -msgstr "Categorie:" +#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 +#: ../../include/conversation.php:1981 ../../include/channel.php:1539 +#: ../../include/taxonomy.php:660 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "\"Mi piace\"" -#: ../../include/conversation.php:719 -msgid "Filed under:" -msgstr "Classificato come:" +#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 +#: ../../include/conversation.php:1984 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "\"Non mi piace\"" -#: ../../include/conversation.php:746 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../Zotlabs/Module/Photos.php:1265 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../include/conversation.php:857 -msgid "remove" -msgstr "rimuovi" +#: ../../Zotlabs/Module/Photos.php:1274 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../include/conversation.php:862 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "Map" +msgstr "Mappa" -#: ../../include/conversation.php:950 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 +msgctxt "noun" +msgid "Likes" +msgstr "\"Mi piace\"" -#: ../../include/conversation.php:951 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../Zotlabs/Module/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 +msgctxt "noun" +msgid "Dislikes" +msgstr "\"Non mi piace\"" -#: ../../include/conversation.php:952 -msgid "View Status" -msgstr "Guarda il messaggio di stato" +#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "Chiudi" -#: ../../include/conversation.php:954 -msgid "View Photos" -msgstr "Guarda le foto" +#: ../../Zotlabs/Module/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 +#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:663 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../include/conversation.php:955 -msgid "Matrix Activity" -msgstr "Attività nella tua rete" +#: ../../Zotlabs/Module/Wiki.php:30 ../../addon/cart/cart.php:1135 +msgid "Profile Unavailable." +msgstr "Profilo non dispobibile" -#: ../../include/conversation.php:957 -msgid "Edit Contact" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:114 +msgid "Not found" +msgstr "Non trovato" -#: ../../include/conversation.php:958 -msgid "Send PM" -msgstr "Invia messaggio privato" +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/cart/myshop.php:114 +#: ../../addon/cart/cart.php:1204 ../../addon/cart/manual_payments.php:58 +msgid "Invalid channel" +msgstr "Canale non valido" -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../Zotlabs/Module/Wiki.php:124 +msgid "Error retrieving wiki" +msgstr "Errore caricamento wiki" -#: ../../include/conversation.php:1073 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../Zotlabs/Module/Wiki.php:131 +msgid "Error creating zip file export folder" +msgstr "Errore nella creazione della cartella per l'esportazione in zip" -#: ../../include/conversation.php:1077 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." +#: ../../Zotlabs/Module/Wiki.php:182 +msgid "Error downloading wiki: " +msgstr "Errore scaricamento wiki:" -#: ../../include/conversation.php:1079 -#, 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." +#: ../../Zotlabs/Module/Wiki.php:197 ../../include/conversation.php:1928 +#: ../../include/nav.php:494 +msgid "Wikis" +msgstr "Pagine wiki" -#: ../../include/conversation.php:1085 -msgid "and" -msgstr "e" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Download" +msgstr "Scarica" -#: ../../include/conversation.php:1088 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:831 ../../Zotlabs/Module/Manage.php:145 +msgid "Create New" +msgstr "Crea nuova" -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../Zotlabs/Module/Wiki.php:207 +msgid "Wiki name" +msgstr "Nome wiki" -#: ../../include/conversation.php:1089 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../Zotlabs/Module/Wiki.php:208 +msgid "Content type" +msgstr "Tipo di contenuto" -#: ../../include/conversation.php:1151 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1869 +msgid "Markdown" +msgstr "Markdown" -#: ../../include/conversation.php:1152 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:350 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1867 +msgid "BBcode" +msgstr "BBCode" -#: ../../include/conversation.php:1153 -msgid "Please enter a video link/URL:" -msgstr "Inserisci l'indirizzo del video:" +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1870 +msgid "Text" +msgstr "Testo" -#: ../../include/conversation.php:1154 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci l'indirizzo dell'audio:" +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 +msgid "Type" +msgstr "Tipo" -#: ../../include/conversation.php:1155 -msgid "Tag term:" -msgstr "Tag:" +#: ../../Zotlabs/Module/Wiki.php:211 +msgid "Any type" +msgstr "Qualsiasi tipo" -#: ../../include/conversation.php:1156 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "Blocca il tipo di contenuto" -#: ../../include/conversation.php:1157 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Create a status post for this wiki" +msgstr "Crea un messaggio di stato per questo wiki" -#: ../../include/conversation.php:1158 ../../mod/mail.php:175 -#: ../../mod/mail.php:290 ../../mod/editpost.php:47 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "Modifica il nome del Wiki" -#: ../../include/conversation.php:1185 ../../mod/photos.php:961 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:184 -#: ../../mod/webpages.php:182 -msgid "Share" -msgstr "Condividi" +#: ../../Zotlabs/Module/Wiki.php:262 +msgid "Wiki not found" +msgstr "Wiki non trovato" -#: ../../include/conversation.php:1187 -msgid "Page link name" -msgstr "Nome del link alla pagina" +#: ../../Zotlabs/Module/Wiki.php:286 +msgid "Rename page" +msgstr "Rinomina la pagina" -#: ../../include/conversation.php:1190 -msgid "Post as" -msgstr "Pubblica come " +#: ../../Zotlabs/Module/Wiki.php:307 +msgid "Error retrieving page content" +msgstr "Errore nel caricamento del contenuto della pagina" -#: ../../include/conversation.php:1197 ../../mod/mail.php:238 -#: ../../mod/mail.php:352 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:139 ../../mod/editpost.php:112 -#: ../../mod/editwebpage.php:184 -msgid "Upload photo" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +msgid "New page" +msgstr "Nuova pagina" -#: ../../include/conversation.php:1198 -msgid "upload photo" -msgstr "carica foto" +#: ../../Zotlabs/Module/Wiki.php:345 +msgid "Revision Comparison" +msgstr "Confronto tra revisioni" -#: ../../include/conversation.php:1199 ../../mod/mail.php:239 -#: ../../mod/mail.php:353 ../../mod/editblock.php:142 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:185 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Wiki.php:346 +msgid "Revert" +msgstr "Ripristina" -#: ../../include/conversation.php:1200 -msgid "attach file" -msgstr "allega file" +#: ../../Zotlabs/Module/Wiki.php:353 +msgid "Short description of your changes (optional)" +msgstr "Breve descrizione delle tue modifiche (opzionale)" -#: ../../include/conversation.php:1201 ../../mod/mail.php:240 -#: ../../mod/mail.php:354 ../../mod/editblock.php:143 -#: ../../mod/editlayout.php:141 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:186 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Wiki.php:362 +msgid "Source" +msgstr "Sorgente" -#: ../../include/conversation.php:1202 -msgid "web link" -msgstr "link web" +#: ../../Zotlabs/Module/Wiki.php:372 +msgid "New page name" +msgstr "Nome della nuova pagina" -#: ../../include/conversation.php:1203 -msgid "Insert video link" -msgstr "Inserisci l'indirizzo di un video" +#: ../../Zotlabs/Module/Wiki.php:377 ../../include/conversation.php:1282 +msgid "Embed image from photo albums" +msgstr "Inserisci un'immagine dall'album foto" -#: ../../include/conversation.php:1204 -msgid "video link" -msgstr "link video" +#: ../../Zotlabs/Module/Wiki.php:378 ../../include/conversation.php:1388 +msgid "Embed an image from your albums" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../include/conversation.php:1205 -msgid "Insert audio link" -msgstr "Inserisci l'indirizzo di un audio" - -#: ../../include/conversation.php:1206 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1207 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:145 ../../mod/editpost.php:118 -#: ../../mod/editwebpage.php:190 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1208 -msgid "set location" -msgstr "la tua località" - -#: ../../include/conversation.php:1209 ../../mod/editpost.php:120 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" - -#: ../../include/conversation.php:1212 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:146 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:191 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1213 -msgid "clear location" -msgstr "rimuovi la località" - -#: ../../include/conversation.php:1215 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:135 ../../mod/editwebpage.php:207 -msgid "Title (optional)" -msgstr "Titolo (opzionale)" - -#: ../../include/conversation.php:1219 ../../mod/editblock.php:164 -#: ../../mod/editlayout.php:162 ../../mod/editpost.php:137 -#: ../../mod/editwebpage.php:209 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (lista separata da virgole)" - -#: ../../include/conversation.php:1221 ../../mod/editblock.php:150 -#: ../../mod/editlayout.php:148 ../../mod/editpost.php:124 -#: ../../mod/editwebpage.php:193 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../include/conversation.php:1222 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1230 ../../mod/editblock.php:158 -#: ../../mod/editlayout.php:155 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:202 -msgid "Public post" -msgstr "Post pubblico" - -#: ../../include/conversation.php:1232 ../../mod/editblock.php:165 -#: ../../mod/editlayout.php:163 ../../mod/editpost.php:138 -#: ../../mod/editwebpage.php:210 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Per esempio: mario@esempio.com, simona@esempio.com" - -#: ../../include/conversation.php:1245 ../../mod/mail.php:245 -#: ../../mod/mail.php:359 ../../mod/editblock.php:175 -#: ../../mod/editlayout.php:172 ../../mod/editpost.php:149 -#: ../../mod/editwebpage.php:219 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../include/conversation.php:1249 ../../mod/editpost.php:153 -#: ../../mod/events.php:674 +#: ../../Zotlabs/Module/Wiki.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:367 +#: ../../include/conversation.php:1390 ../../include/conversation.php:1437 msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1250 ../../mod/editpost.php:154 -#: ../../mod/events.php:673 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/settings.php:589 -#: ../../mod/settings.php:615 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:368 +#: ../../include/conversation.php:1320 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../include/conversation.php:1492 -msgid "Discover" -msgstr "Scopri" +#: ../../Zotlabs/Module/Wiki.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +#: ../../include/conversation.php:1321 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../include/conversation.php:1495 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../Zotlabs/Module/Wiki.php:383 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:370 +msgid "Choose a different album" +msgstr "Scegli un album diverso" -#: ../../include/conversation.php:1500 -msgid "Commented Order" -msgstr "Ultimi commenti" +#: ../../Zotlabs/Module/Wiki.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:371 +#: ../../include/conversation.php:1323 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../include/conversation.php:1503 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../Zotlabs/Module/Wiki.php:385 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:372 +#: ../../include/conversation.php:1324 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../include/conversation.php:1507 -msgid "Posted Order" -msgstr "Ultimi post" +#: ../../Zotlabs/Module/Wiki.php:386 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:373 +#: ../../include/conversation.php:1325 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../include/conversation.php:1510 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../Zotlabs/Module/Wiki.php:462 +msgid "Error creating wiki. Invalid name." +msgstr "Errore nella creazione. Nome non valido." -#: ../../include/conversation.php:1518 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano o ti menzionano" +#: ../../Zotlabs/Module/Wiki.php:469 +msgid "A wiki with this name already exists." +msgstr "Un Wiki con questo nome esiste già" -#: ../../include/conversation.php:1524 ../../mod/connections.php:72 -#: ../../mod/connections.php:85 ../../mod/menu.php:110 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Wiki.php:482 +msgid "Wiki created, but error creating Home page." +msgstr "Wiki creato, ma c'è stato un errore nella creazione della Home page." -#: ../../include/conversation.php:1527 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../Zotlabs/Module/Wiki.php:489 +msgid "Error creating wiki" +msgstr "Errore nella creazione del Wiki" -#: ../../include/conversation.php:1533 -msgid "Starred" -msgstr "Preferiti" +#: ../../Zotlabs/Module/Wiki.php:512 +msgid "Error updating wiki. Invalid name." +msgstr "Errore nell'aggiornamento del Wiki. Nome non valido." -#: ../../include/conversation.php:1536 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../Zotlabs/Module/Wiki.php:532 +msgid "Error updating wiki" +msgstr "Errore nell'aggiornamento del Wiki" -#: ../../include/conversation.php:1543 -msgid "Spam" -msgstr "Spam" +#: ../../Zotlabs/Module/Wiki.php:547 +msgid "Wiki delete permission denied." +msgstr "Permesso negato nell'eliminare del Wiki" -#: ../../include/conversation.php:1546 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error deleting wiki" +msgstr "Errore nell'eliminare il Wiki" -#: ../../include/conversation.php:1590 ../../mod/admin.php:993 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Wiki.php:590 +msgid "New page created" +msgstr "Nuova pagina creata" -#: ../../include/conversation.php:1593 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../Zotlabs/Module/Wiki.php:711 +msgid "Cannot delete Home" +msgstr "Non è possibile eliminare la Home" -#: ../../include/conversation.php:1602 -msgid "About" -msgstr "Informazioni" +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Current Revision" +msgstr "Revisione corrente" -#: ../../include/conversation.php:1605 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Selected Revision" +msgstr "Revisione selezionata" -#: ../../include/conversation.php:1614 ../../include/photos.php:359 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../Zotlabs/Module/Wiki.php:825 +msgid "You must be authenticated." +msgstr "Devi autenticarti." -#: ../../include/conversation.php:1623 -msgid "Files and Storage" +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "attiva/disattiva schermo intero" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." + +#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../Zotlabs/Module/Pdledit.php:68 +msgid "(modified)" +msgstr "(modificato)" + +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Reimposta" + +#: ../../Zotlabs/Module/Pdledit.php:85 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../Zotlabs/Module/Pdledit.php:91 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Edit another layout" +msgstr "Modifica un altro layout" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "System layout" +msgstr "Layout di sistema" + +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 +#: ../../include/conversation.php:1092 +msgid "Poke" +msgstr "Poke" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Manda un poke" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "Poke/Prod" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" + +#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Rendi privato questo post" + +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +#: ../../include/photo/photo_driver.php:740 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." + +#: ../../Zotlabs/Module/Profile_photo.php:218 +#: ../../addon/openclipatar/openclipatar.php:298 +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:225 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: ../../Zotlabs/Module/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." + +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." +msgstr "Foto non disponibile." + +#: ../../Zotlabs/Module/Profile_photo.php:455 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Upload File:" +msgstr "Carica un file:" + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:360 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Use Photo for Profile" +msgstr "Usa la foto per il profilo" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use" +msgstr "Usa" + +#: ../../Zotlabs/Module/Profile_photo.php:462 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:364 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "Use a photo from your albums" +msgstr "Usa una foto presa dai tuoi album" + +#: ../../Zotlabs/Module/Profile_photo.php:473 +#: ../../Zotlabs/Module/Cover_photo.php:376 +msgid "Select existing photo" +msgstr "Seleziona una foto esistente" + +#: ../../Zotlabs/Module/Profile_photo.php:492 +#: ../../Zotlabs/Module/Cover_photo.php:393 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:394 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." + +#: ../../Zotlabs/Module/Profile_photo.php:495 +#: ../../Zotlabs/Module/Cover_photo.php:396 +msgid "Done Editing" +msgstr "Modifica terminata" + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Assente" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "Online" + +#: ../../Zotlabs/Module/Item.php:194 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../Zotlabs/Module/Item.php:477 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." + +#: ../../Zotlabs/Module/Item.php:874 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." + +#: ../../Zotlabs/Module/Item.php:1019 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." + +#: ../../Zotlabs/Module/Item.php:1055 +msgid "Your comment is awaiting approval." +msgstr "Il tuo contenuto è in attesa di approvazione." + +#: ../../Zotlabs/Module/Item.php:1160 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." + +#: ../../Zotlabs/Module/Item.php:1189 +#, 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:1196 +#, 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/Ping.php:330 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" + +#: ../../Zotlabs/Module/Ping.php:383 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" + +#: ../../Zotlabs/Module/Ping.php:407 +msgid "requires approval" +msgstr "richiede approvazione" + +#: ../../Zotlabs/Module/Ping.php:417 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../Zotlabs/Module/Ping.php:435 +msgid "[today]" +msgstr "[oggi]" + +#: ../../Zotlabs/Module/Ping.php:444 +msgid "posted an event" +msgstr "ha creato un evento" + +#: ../../Zotlabs/Module/Ping.php:477 +msgid "shared a file with you" +msgstr "ha condiviso un file con te" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:141 ../../Zotlabs/Module/Display.php:158 +#: ../../Zotlabs/Module/Display.php:175 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 +#: ../../include/help.php:81 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../Zotlabs/Module/Page.php:173 +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/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "Contatto aggiornato." + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." + +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "ha come nuovo contatto" + +#: ../../Zotlabs/Module/Connedit.php:427 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." + +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." + +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." + +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 +msgid "View Profile" +msgstr "Profilo" + +#: ../../Zotlabs/Module/Connedit.php:597 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" + +#: ../../Zotlabs/Module/Connedit.php:601 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" + +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "Ricarica la foto" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "Aggiorna la foto" + +#: ../../Zotlabs/Module/Connedit.php:615 ../../include/conversation.php:1042 +msgid "Recent Activity" +msgstr "Attività recenti" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Non ignorare" + +#: ../../Zotlabs/Module/Connedit.php:633 +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:634 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Unarchive" +msgstr "Non archiviare" + +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Archive" +msgstr "Archivia" + +#: ../../Zotlabs/Module/Connedit.php:641 +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:642 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Unhide" +msgstr "Non nascondere" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Hide" +msgstr "Nascondi" + +#: ../../Zotlabs/Module/Connedit.php:649 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" + +#: ../../Zotlabs/Module/Connedit.php:650 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" + +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Delete this connection" +msgstr "Elimina questo contatto" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "Aggiorna la Vcard" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "Scarica la scheda con le informazioni di questo contatto" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "Apri automaticamente la sezione Permessi individuali" + +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "Affinità" + +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "Apri la sezione Imposta affinità per default" + +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +msgid "Me" +msgstr "Me" + +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +msgid "Family" +msgstr "Famiglia" + +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +msgid "Acquaintances" +msgstr "Conoscenti" + +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "Filtra" + +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "Apri automaticamente la sezione con i Filtri personalizzati" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Approve this connection" +msgstr "Approva questo contatto" + +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" + +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Scegli l'affinità" + +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" + +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" + +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "Questo contatto non è raggiungibile dal server in uso" + +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "Questo contatto potrebbe non essere raggiungibile da altri canali" + +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "Nella loro rete la location independence non è supportata." + +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "Il contatto indicato non è raggiungibile. Nella loro rete la location independence non è supportata." + +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" + +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4214 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" + +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" + +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "Ruolo" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Sto caricando" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "Aggiungi un ruolo" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" + +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Indirizzi disponibili" + +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +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:867 +msgid "Connection Tools" +msgstr "Gestione del contatto" + +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" + +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" + +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" + +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Filtro personalizzato" + +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" + +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +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:876 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" + +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" + +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" + +#: ../../Zotlabs/Module/Connedit.php:888 +#, 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:895 +msgid "" +"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." +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:896 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" + +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "Dettagli" + +#: ../../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:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1315 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:766 +#: ../../include/conversation.php:1435 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" + +#: ../../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:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Scadenza" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1834 ../../include/nav.php:401 +msgid "Photos" +msgstr "Foto" + +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1842 +#: ../../include/nav.php:409 +msgid "Files" msgstr "Archivio file" -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Area chat" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../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" -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../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ù" -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../include/datetime.php:48 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2423 +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: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/Layouts.php:184 ../../include/text.php:2424 +msgid "Layouts" +msgstr "Layout" + +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 +#: ../../include/help.php:68 ../../include/help.php:74 +msgid "Help" +msgstr "Guida" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Descrizione del layout" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Scarica il file PDL" + +#: ../../Zotlabs/Module/Cloud.php:120 +msgid "Please refresh page" +msgstr "Per favore ricarica la pagina" + +#: ../../Zotlabs/Module/Cloud.php:123 +msgid "Unknown error" +msgstr "Errore sconosciuto" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Verifica del token fallita" + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "È richiesta una verifica della mail" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Un token di verifica è stato spedito al tuo indirizzo email [%s]. Inserisci il token qui per completare la verifica dell'account. Per favore attendi qualche minuti e controlla lo spam se non vedi il messaggio." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Reinvia la mail" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Token di validazione" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "Post non trovato." + +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 +#: ../../include/bbcode.php:352 +msgid "post" +msgstr "il post" + +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2013 +msgid "comment" +msgstr "il commento" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, 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/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/Defperms.php:239 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Se abilitato, le richieste di contatto saranno approvate automaticamente" + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "Impostazioni di approvazione automatica" + +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "" + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "Applicazione sconosciuta" + +#: ../../Zotlabs/Module/Authorize.php:22 +msgid "Authorize" +msgstr "Autorizza" + +#: ../../Zotlabs/Module/Authorize.php:23 +#, php-format +msgid "Do you authorize the app %s to access your channel data?" +msgstr "Autorizzi la app %s ad accedere ai dati del tuo canale?" + +#: ../../Zotlabs/Module/Authorize.php:25 +msgid "Allow" +msgstr "Autorizza" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 +#: ../../include/items.php:4181 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." + +#: ../../Zotlabs/Module/Group.php:92 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" + +#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." + +#: ../../Zotlabs/Module/Group.php:115 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." + +#: ../../Zotlabs/Module/Group.php:185 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" + +#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "Membri" + +#: ../../Zotlabs/Module/Group.php:201 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" + +#: ../../Zotlabs/Module/Group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Profilo non trovato." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "Stato sentimentale" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Partner affettivo" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "\"Mi piace\"" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "\"Non mi piace\"" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "Lavoro/impiego" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Religione" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Orientamento politico" + +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "Sesso" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Home page" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Interessi" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "Guarda questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 +#: ../../include/channel.php:1319 +msgid "Edit visibility" +msgstr "Cambia la visibilità" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "Gestione del profilo" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" + +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1289 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" + +#: ../../Zotlabs/Module/Profiles.php:733 ../../include/conversation.php:1708 +msgid "Personal" +msgstr "Personali" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "Relazione" + +#: ../../Zotlabs/Module/Profiles.php:736 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "Altro" -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../include/datetime.php:235 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/events.php:672 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../include/datetime.php:262 ../../boot.php:2358 -msgid "never" -msgstr "mai" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "Sesso" -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "Stato civile" -#: ../../include/datetime.php:271 -msgid "year" -msgstr "anno" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../include/datetime.php:271 -msgid "years" -msgstr "anni" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../include/datetime.php:272 -msgid "month" -msgstr "mese" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../include/datetime.php:272 -msgid "months" -msgstr "mesi" +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../include/datetime.php:273 -msgid "week" -msgstr "settimana" +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "settimane" +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../include/datetime.php:274 -msgid "day" -msgstr "giorno" +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "Località" -#: ../../include/datetime.php:274 -msgid "days" -msgstr "giorni" +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "ora" +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "ore" +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "minuto" +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "minuti" +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../include/datetime.php:277 -msgid "second" -msgstr "secondo" +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "secondi" +#: ../../Zotlabs/Module/Profiles.php:767 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../include/datetime.php:285 +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "Città dove vivo" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "Orientamento politico" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "Orientamento religioso" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "Televisione" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "Amore" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "Scuola/educazione" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "Contatti e social network" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "I miei altri canali" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "Comunicazioni" + +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1315 +msgid "Profile Image" +msgstr "Immagine del profilo" + +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1296 +#: ../../include/nav.php:117 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Questa pagina è accessibile solo agli utenti registrati" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Benvenuto" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Vorresti farlo?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Per favore metti questa pagina nei preferiti se vuoi ritornarci in futuro" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Carica una foto per il profilo" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Carica una foto di copertina" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Modifica il tuo profilo predefinito" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:34 +msgid "View friend suggestions" +msgstr "Guarda i suggerimenti di amicizia" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "Guarda l'elenco dei canali" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Guarda/modifica le impostazioni del tuo canale" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Guarda la documentazione del sito o del progetto" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Visita la pagina iniziale del tuo canale" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Guarda i tuoi contatti e/o aggiungine qualcuno di cui hai l'indirizzo" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Guarda il tuo flusso personale (potrebbe essere vuoto finché non aggiungi connessioni)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Vedi il flusso pubblico. Attenzione: contenuti non moderati" + +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Link alla pagina" + +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" + +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Channel Manager" +msgstr "Gestione canali" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Canale attuale" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../Zotlabs/Module/Manage.php:178 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../include/datetime.php:519 +#: ../../Zotlabs/Module/Manage.php:179 #, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../include/datetime.php:520 +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Canale delegato" + +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1893 +#: ../../include/features.php:123 ../../include/nav.php:458 +msgid "Cards" +msgstr "Card" + +#: ../../Zotlabs/Module/Cards.php:99 +msgid "Add Card" +msgstr "Aggiungi card" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" + +#: ../../Zotlabs/Module/Siteinfo.php:18 +msgid "About this site" +msgstr "Informazioni su questo sito" + +#: ../../Zotlabs/Module/Siteinfo.php:19 +msgid "Site Name" +msgstr "Nome del sito" + +#: ../../Zotlabs/Module/Siteinfo.php:23 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Software and Project information" +msgstr "Informazioni sul software e sul progetto" + +#: ../../Zotlabs/Module/Siteinfo.php:27 +msgid "This site is powered by $Projectname" +msgstr "Questo sito è costruito con $Projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" + +#: ../../Zotlabs/Module/Siteinfo.php:30 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" +msgid "Version %s" +msgstr "Versione %s" -#: ../../include/diaspora.php:2498 -msgid "Please choose" -msgstr "La tua scelta" +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "Project homepage" +msgstr "Homepage del progetto" -#: ../../include/diaspora.php:2500 -msgid "Agree" -msgstr "Sono d'accordo" +#: ../../Zotlabs/Module/Siteinfo.php:32 +msgid "Developer homepage" +msgstr "Homepege dello sviluppatore" -#: ../../include/diaspora.php:2502 -msgid "Disagree" -msgstr "Non sono d'accordo" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../include/diaspora.php:2504 -msgid "Abstain" -msgstr "Mi astengo" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1082 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../include/dimport.php:34 ../../include/identity.php:217 +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" + +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" + +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Importa i selezionati" + +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" + +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "Esporta i selezionati" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1915 ../../include/nav.php:481 +msgid "Webpages" +msgstr "Pagine web" + +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Azioni" + +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Link alla pagina" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Titolo della pagina" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Tipo di file non valido." + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importazione completata." + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "Non è possibile cambiare il nome del canale entro le 48 dal cambio della password dell'account." + +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 +#: ../../include/channel.php:599 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." + +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:219 +#: ../../include/channel.php:604 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." -#: ../../include/dir_fns.php:126 -msgid "Directory Options" -msgstr "Opzioni elenco pubblico" +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Cambia il nome/indirizzo del canale" -#: ../../include/dir_fns.php:128 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "Tutti i contatti su altre reti saranno persi!" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:428 ../../mod/api.php:106 -#: ../../mod/photos.php:568 ../../mod/connedit.php:647 -#: ../../mod/connedit.php:675 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "" -#: ../../include/dir_fns.php:128 ../../include/dir_fns.php:129 -#: ../../include/dir_fns.php:130 ../../mod/admin.php:430 ../../mod/api.php:105 -#: ../../mod/photos.php:568 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/removeme.php:60 -#: ../../mod/settings.php:579 ../../mod/menu.php:94 ../../mod/menu.php:151 -#: ../../mod/mitem.php:159 ../../mod/mitem.php:160 ../../mod/mitem.php:232 -#: ../../mod/mitem.php:233 ../../view/theme/redbasic/php/config.php:104 -#: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1555 -msgid "Yes" -msgstr "Si" +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "" -#: ../../include/dir_fns.php:129 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../include/dir_fns.php:130 -msgid "This Website Only" -msgstr "Solo in questo sito" +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "Modifica post" -#: ../../include/enotify.php:96 +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "Messaggio non valido" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "nessun risultato" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "in coda" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "inviato" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "aggiornato" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "aggiornamento ignorato" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "permessi non sufficienti" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "Destinatario non trovato" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "messaggio recapitato" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" + +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Options" +msgstr "Opzioni" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "Reinvia" + +#: ../../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 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/features.php:292 +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 "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" + +#: ../../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/Like.php:54 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" + +#: ../../Zotlabs/Module/Like.php:59 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." + +#: ../../Zotlabs/Module/Like.php:60 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." + +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 +msgid "Invalid request." +msgstr "Richiesta non valida." + +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 +msgid "channel" +msgstr "il canale" + +#: ../../Zotlabs/Module/Like.php:150 +msgid "thing" +msgstr "Oggetto" + +#: ../../Zotlabs/Module/Like.php:196 +msgid "Channel unavailable." +msgstr "Canale non trovato." + +#: ../../Zotlabs/Module/Like.php:244 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." + +#: ../../Zotlabs/Module/Like.php:438 ../../addon/diaspora/Receiver.php:1529 +#: ../../addon/pubcrawl/as.php:1423 ../../include/conversation.php:160 +#, 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:440 ../../addon/pubcrawl/as.php:1425 +#: ../../include/conversation.php:163 +#, 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:442 +#, 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:444 +#, 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:446 +#, 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:448 ../../addon/diaspora/Receiver.php:2072 +#, 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:450 ../../addon/diaspora/Receiver.php:2074 +#, 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:452 ../../addon/diaspora/Receiver.php:2076 +#, 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:564 +msgid "Action completed." +msgstr "Comando completato." + +#: ../../Zotlabs/Module/Like.php:565 +msgid "Thank you." +msgstr "Grazie." + +#: ../../Zotlabs/Module/Directory.php:106 +msgid "No default suggestions were found." +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:255 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" + +#: ../../Zotlabs/Module/Directory.php:266 +msgid "Gender: " +msgstr "Sesso:" + +#: ../../Zotlabs/Module/Directory.php:268 +msgid "Status: " +msgstr "Stato:" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Homepage: " +msgstr "Homepage:" + +#: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1564 +msgid "Age:" +msgstr "Età:" + +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1391 +#: ../../include/event.php:54 ../../include/event.php:86 +msgid "Location:" +msgstr "Luogo:" + +#: ../../Zotlabs/Module/Directory.php:330 +msgid "Description:" +msgstr "Descrizione:" + +#: ../../Zotlabs/Module/Directory.php:335 ../../include/channel.php:1593 +msgid "Hometown:" +msgstr "Città dove vivo:" + +#: ../../Zotlabs/Module/Directory.php:337 ../../include/channel.php:1599 +msgid "About:" +msgstr "Informazioni:" + +#: ../../Zotlabs/Module/Directory.php:338 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1052 ../../include/channel.php:1376 +#: ../../include/connections.php:110 +msgid "Connect" +msgstr "Aggiungi" + +#: ../../Zotlabs/Module/Directory.php:339 +msgid "Public Forum:" +msgstr "Forum pubblico:" + +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Keywords: " +msgstr "Parole chiave:" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" + +#: ../../Zotlabs/Module/Directory.php:347 +msgid "Common connections (estimated):" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Finding:" +msgstr "Ricerca:" + +#: ../../Zotlabs/Module/Directory.php:405 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "next page" +msgstr "pagina successiva" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "previous page" +msgstr "pagina precedente" + +#: ../../Zotlabs/Module/Directory.php:408 +msgid "Sort options" +msgstr "Opzioni di ordinamento" + +#: ../../Zotlabs/Module/Directory.php:409 +msgid "Alphabetic" +msgstr "Alfabetico" + +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" + +#: ../../Zotlabs/Module/Directory.php:429 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" + +#: ../../Zotlabs/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 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" + +#: ../../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/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../Zotlabs/Module/Mail.php:105 +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:160 +msgid "Messages" +msgstr "Messaggi" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "A:" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +#: ../../include/conversation.php:1385 +msgid "Attach file" +msgstr "Allega file" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Invia" + +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1430 +msgid "Set expiration date" +msgstr "Data di scadenza" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Revoca il messaggio" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" + +#: ../../Zotlabs/Module/Mail.php:416 +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:420 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "Hub pubblici" + +#: ../../Zotlabs/Module/Pubsites.php:27 +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 fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Valuta" + +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 +msgid "webpage" +msgstr "pagina web" + +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 +msgid "block" +msgstr "block" + +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 +msgid "layout" +msgstr "layout" + +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 +msgid "menu" +msgstr "menu" + +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" + +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" + +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Salva segnalibro" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del segnalibro" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 +msgid "Save to Folder" +msgstr "Salva nella cartella" + +#: ../../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/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." + +#: ../../Zotlabs/Module/Register.php:202 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." + +#: ../../Zotlabs/Module/Register.php:212 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." + +#: ../../Zotlabs/Module/Register.php:238 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" + +#: ../../Zotlabs/Module/Register.php:245 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:250 +msgid "Your email address" +msgstr "Il tuo indirizzo email" + +#: ../../Zotlabs/Module/Register.php:251 +msgid "Choose a password" +msgstr "Scegli una password" + +#: ../../Zotlabs/Module/Register.php:252 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" + +#: ../../Zotlabs/Module/Register.php:253 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "no" +msgstr "no" + +#: ../../Zotlabs/Module/Register.php:258 +msgid "yes" +msgstr "sì" + +#: ../../Zotlabs/Module/Register.php:274 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." + +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1570 +#: ../../include/nav.php:164 +msgid "Register" +msgstr "Registrati" + +#: ../../Zotlabs/Module/Register.php:287 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "" + +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" +msgstr "Copertine del canale" + +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4558 +msgid "female" +msgstr "femmina" + +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4559 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" + +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4560 +msgid "male" +msgstr "maschio" + +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4561 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" + +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4563 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" + +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2070 +msgid "cover photo" +msgstr "Copertina del canale" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +msgid "Change Cover Photo" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1824 +#: ../../include/nav.php:391 +msgid "About" +msgstr "Informazioni" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:394 +msgid "Article" +msgstr "" + +#: ../../Zotlabs/Module/Display.php:446 +msgid "Item has been removed." +msgstr "" + +#: ../../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/Network.php:100 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" + +#: ../../Zotlabs/Module/Network.php:142 +msgid "No such channel" +msgstr "Canale sconosciuto" + +#: ../../Zotlabs/Module/Network.php:147 +msgid "forum" +msgstr "forum" + +#: ../../Zotlabs/Module/Network.php:159 +msgid "Search Results For:" +msgstr "Cerca risultati con:" + +#: ../../Zotlabs/Module/Network.php:229 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" + +#: ../../Zotlabs/Module/Network.php:238 +msgid "Privacy group: " +msgstr "Gruppo di canali:" + +#: ../../Zotlabs/Module/Network.php:265 +msgid "Invalid connection." +msgstr "Contatto non valido." + +#: ../../Zotlabs/Module/Network.php:285 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:361 +msgid "network" +msgstr "rete" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Filestorage.php:95 +msgid "File not found." +msgstr "File non trovato." + +#: ../../Zotlabs/Module/Filestorage.php:142 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" + +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" + +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" + +#: ../../Zotlabs/Module/Filestorage.php:158 +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:159 +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:161 +msgid "Share this file" +msgstr "Condividi questo file" + +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" + +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Show in your contacts shared folder" +msgstr "" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "Nessun contatto in comune." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Nessun contatto." + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "Elenco contatti" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "Account bloccati" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:112 +msgid "Clones" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:118 +msgid "Message queues" +msgstr "Coda messaggi in uscita" + +#: ../../Zotlabs/Module/Admin.php:132 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" + +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Summary" +msgstr "Riepilogo" + +#: ../../Zotlabs/Module/Admin.php:140 +msgid "Registered accounts" +msgstr "Account creati" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" + +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Registered channels" +msgstr "Canali creati" + +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Version" +msgstr "Versione" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Rate.php:159 +#, 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:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "" + +#: ../../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:108 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" + +#: ../../Zotlabs/Module/Lostpass.php:68 +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:91 ../../boot.php:1598 +msgid "Password Reset" +msgstr "Reimposta la password" + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" +msgstr "clicca qui per accedere" + +#: ../../Zotlabs/Module/Lostpass.php:96 +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:117 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" + +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "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:132 +msgid "Email Address" +msgstr "Indirizzo email" + +#: ../../Zotlabs/Module/Notifications.php:62 +#: ../../Zotlabs/Lib/ThreadItem.php:408 +msgid "Mark all seen" +msgstr "Marca tutto come letto" + +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "" + +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Site Admin" +msgstr "Amministrazione sito" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Segnala il bug" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "View Bookmarks" +msgstr "Vedi i segnalibri" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "My Chatrooms" +msgstr "Le mie aree chat" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Remote Diagnostics" +msgstr "Diagnostica remota" + +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:417 +msgid "Suggest Channels" +msgstr "Suggerisci canali" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1589 +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Login" +msgstr "Accedi" + +#: ../../Zotlabs/Lib/Apps.php:241 +msgid "Activity" +msgstr "Attività" + +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1931 +#: ../../include/features.php:96 ../../include/nav.php:497 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:246 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1853 +#: ../../include/conversation.php:1856 +msgid "Events" +msgstr "Eventi" + +#: ../../Zotlabs/Lib/Apps.php:250 +msgid "Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../Zotlabs/Lib/Apps.php:252 +msgid "Mail" +msgstr "Messaggi" + +#: ../../Zotlabs/Lib/Apps.php:255 +msgid "Chat" +msgstr "Chat" + +#: ../../Zotlabs/Lib/Apps.php:257 +msgid "Probe" +msgstr "Diagnostica" + +#: ../../Zotlabs/Lib/Apps.php:258 +msgid "Suggest" +msgstr "Suggerisci" + +#: ../../Zotl +msgid "This email was sent by %1$s at %2$s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:120 #, php-format msgid "%s " msgstr "%s " -#: ../../include/enotify.php:100 +#: ../../Zotlabs/Lib/Enotify.php:124 #, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[RedMatrix] Nuovo messaggio su %s" +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Notifica] Nuovo messaggio su %s" -#: ../../include/enotify.php:102 +#: ../../Zotlabs/Lib/Enotify.php:126 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." -#: ../../include/enotify.php:103 +#: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s ti ha mandato %2$s." -#: ../../include/enotify.php:103 +#: ../../Zotlabs/Lib/Enotify.php:127 msgid "a private message" msgstr "un messaggio privato" -#: ../../include/enotify.php:104 +#: ../../Zotlabs/Lib/Enotify.php:128 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" +msgstr "ha commentato" -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" +msgstr "" -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" +msgstr "" -#: ../../include/enotify.php:186 +#: ../../Zotlabs/Lib/Enotify.php:198 #, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[RedMatrix] Nuovo commento di %2$s alla conversazione #%1$d" +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "" -#: ../../include/enotify.php:187 +#: ../../Zotlabs/Lib/Enotify.php:207 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:217 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notifica] Nuovo commento di %2$s alla conversazione #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Visita %s per leggere o commentare la conversazione." -#: ../../include/enotify.php:196 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[RedMatrix] %s ha scritto sulla tua bacheca" +msgid "Please visit %s to approve or reject this comment." +msgstr "" -#: ../../include/enotify.php:198 +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, a %2$s [zrl=%3$s]tuo %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1$d di %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:315 +#, php-format +msgid "%1$s, %2$s liked an item/conversation you created." +msgstr "%1$s, a %2$s piace l'elemento/conversazione che hai creato" + +#: ../../Zotlabs/Lib/Enotify.php:326 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Notifica] %s ha scritto sulla tua bacheca" + +#: ../../Zotlabs/Lib/Enotify.php:328 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" -#: ../../include/enotify.php:200 +#: ../../Zotlabs/Lib/Enotify.php:330 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" -#: ../../include/enotify.php:224 +#: ../../Zotlabs/Lib/Enotify.php:354 #, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[RedMatrix] %s ti ha taggato" +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Notifica] %s ti ha taggato" -#: ../../include/enotify.php:225 +#: ../../Zotlabs/Lib/Enotify.php:355 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s ti ha taggato su %3$s" -#: ../../include/enotify.php:226 +#: ../../Zotlabs/Lib/Enotify.php:356 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." -#: ../../include/enotify.php:238 +#: ../../Zotlabs/Lib/Enotify.php:368 #, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[RedMatrix] %1$s ti ha mandato un poke" +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Notifica] %1$s ti ha mandato un poke" -#: ../../include/enotify.php:239 +#: ../../Zotlabs/Lib/Enotify.php:369 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" -#: ../../include/enotify.php:240 +#: ../../Zotlabs/Lib/Enotify.php:370 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -#: ../../include/enotify.php:256 +#: ../../Zotlabs/Lib/Enotify.php:386 #, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[RedMatrix] %s ha taggato il tuo post" +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Notifica] %s ha taggato il tuo post" -#: ../../include/enotify.php:257 +#: ../../Zotlabs/Lib/Enotify.php:387 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" -#: ../../include/enotify.php:258 +#: ../../Zotlabs/Lib/Enotify.php:388 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[RedMatrix] Hai una richiesta di amicizia" +#: ../../Zotlabs/Lib/Enotify.php:400 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Notifica] Hai una richiesta di amicizia" -#: ../../include/enotify.php:271 +#: ../../Zotlabs/Lib/Enotify.php:401 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" -#: ../../include/enotify.php:272 +#: ../../Zotlabs/Lib/Enotify.php:402 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." -#: ../../include/enotify.php:276 ../../include/enotify.php:295 +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 #, php-format msgid "You may visit their profile at %s" msgstr "Puoi visitare il suo profilo su %s" -#: ../../include/enotify.php:278 +#: ../../Zotlabs/Lib/Enotify.php:408 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[RedMatrix] Ti è stato suggerito un amico" +#: ../../Zotlabs/Lib/Enotify.php:415 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Notifica] Ti è stato suggerito un amico" -#: ../../include/enotify.php:286 +#: ../../Zotlabs/Lib/Enotify.php:416 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" -#: ../../include/enotify.php:287 +#: ../../Zotlabs/Lib/Enotify.php:417 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." -#: ../../include/enotify.php:293 +#: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" msgstr "Nome:" -#: ../../include/enotify.php:294 +#: ../../Zotlabs/Lib/Enotify.php:424 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:427 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[RedMatrix]" +#: ../../Zotlabs/Lib/Enotify.php:647 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Notifica]" -#: ../../include/event.php:549 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../Zotlabs/Lib/Enotify.php:815 +msgid "created a new post" +msgstr "Ha creato un nuovo post" -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "" -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "" -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "" -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../Zotlabs/Lib/NativeWiki.php:198 +msgid "Wiki files deleted successfully" +msgstr "" -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "Errore di aggiornamento su %s" -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su canali o siti diversi" +#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../include/conversation.php:689 +msgid "Select" +msgstr "Scegli" -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will attend" +msgstr "Parteciperò" -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will not attend" +msgstr "Non parteciperò" -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Note private" +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I might attend" +msgstr "Forse parteciperò" -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Abilita il riquadro per scrivere annotazioni" +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I agree" +msgstr "Sono d'accordo" -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I disagree" +msgstr "Non sono d'accordo" -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I abstain" +msgstr "Mi astengo" -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Lib/ThreadItem.php:238 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" -#: ../../include/features.php:47 -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." +#: ../../Zotlabs/Lib/ThreadItem.php:239 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Modalità esperto" +#: ../../Zotlabs/Lib/ThreadItem.php:240 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" +#: ../../Zotlabs/Lib/ThreadItem.php:244 +msgid "starred" +msgstr "preferito" -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../include/features.php:50 +#: ../../Zotlabs/Lib/ThreadItem.php:255 ../../include/conversation.php:705 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" + +#: ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "Add Tag" +msgstr "Aggiungi un tag" + +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 +msgid "like" +msgstr "mi piace" + +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 +msgid "dislike" +msgstr "non mi piace" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "Share This" +msgstr "Condividi" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "share" +msgstr "condividi" + +#: ../../Zotlabs/Lib/ThreadItem.php:295 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" + +#: ../../Zotlabs/Lib/ThreadItem.php:313 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:347 +msgid "to" +msgstr "a" + +#: ../../Zotlabs/Lib/ThreadItem.php:348 +msgid "via" +msgstr "via" + +#: ../../Zotlabs/Lib/ThreadItem.php:349 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: ../../Zotlabs/Lib/ThreadItem.php:350 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" + +#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 +#, php-format +msgid "from %s" +msgstr "da %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:374 +msgid "Attend" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:375 +msgid "Attendance Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:376 +msgid "Vote" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Voting Options" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" + +#: ../../Zotlabs/Lib/ThreadItem.php:399 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" + +#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostra tutto" + +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 +msgid "Bold" +msgstr "Grassetto" + +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 +msgid "Italic" +msgstr "Corsivo" + +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 +msgid "Quote" +msgstr "Citazione" + +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 +msgid "Code" +msgstr "Codice" + +#: ../../Zotlabs/Lib/ThreadItem.php:756 +msgid "Image" +msgstr "Immagine" + +#: ../../Zotlabs/Lib/ThreadItem.php:757 +msgid "Attach File" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:758 +msgid "Insert Link" +msgstr "Collegamento" + +#: ../../Zotlabs/Lib/ThreadItem.php:759 +msgid "Video" +msgstr "Video" + +#: ../../Zotlabs/Lib/ThreadItem.php:769 +msgid "Your full name (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:770 +msgid "Your email address (required)" +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:771 +msgid "Your website URL (optional)" +msgstr "" + +#: ../../Zotlabs/Zot/Auth.php:152 msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare delle restrizioni e dei termini d'uso a chi segue il canale" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo." -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Usa il markdown" +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 +msgid "parent" +msgstr "cartella superiore" -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Consenti l'uso del markdown per formattare i post" +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 +msgid "Collection" +msgstr "Cartella" -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Principale" -#: ../../include/features.php:58 +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Rubrica" + +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 +msgid "Calendar" +msgstr "Calendario" + +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Appuntamenti ricevuti" + +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Appuntamenti inviati" + +#: ../../Zotlabs/Storage/Browser.php:273 +msgid "Total" +msgstr "Totale" + +#: ../../Zotlabs/Storage/Browser.php:275 +msgid "Shared" +msgstr "Condiviso" + +#: ../../Zotlabs/Storage/Browser.php:353 +#, php-format +msgid "You are using %1$s of your available file storage." +msgstr "Stai usando %1$s dello spazio disponibile per i tuoi file." + +#: ../../Zotlabs/Storage/Browser.php:358 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Stai usando %1$s di %2$s che hai a disposizione per i file. (%3$s%)" + +#: ../../Zotlabs/Storage/Browser.php:369 +msgid "WARNING:" +msgstr "ATTENZIONE:" + +#: ../../Zotlabs/Storage/Browser.php:381 +msgid "Create new folder" +msgstr "Nuova cartella" + +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Upload file" +msgstr "Carica un file" + +#: ../../Zotlabs/Storage/Browser.php:396 +msgid "Drop files here to immediately upload" +msgstr "Trascina i file qui per caricarli al volo" + +#: ../../Zotlabs/Widget/Forums.php:100 +msgid "Forums" +msgstr "Forum" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "" + +#: ../../Zotlabs/Widget/Appcategories.php:40 +#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 +#: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 +msgid "Categories" +msgstr "Categorie" + +#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +msgid "Everything" +msgstr "Tutto" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Gestione eventi" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Esporta calendario" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Importa calendario" + +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Vista combinata" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Inviati" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1864 ../../include/conversation.php:1867 +#: ../../include/nav.php:434 ../../include/nav.php:437 +msgid "Chatrooms" +msgstr "Chat" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Riepilogo" + +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Valutazione" + +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "Valutami" + +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Attività" + +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." + +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Indirizzo del canale" + +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 ../../addon/gitwiki/gitwiki.php:95 +msgid "Wiki List" +msgstr "Elenco wiki" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Archivi" + +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Ricevuti" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Inviati" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Conversazioni" + +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Nessun messaggio." + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Partecipanti" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "foto/immagine" + +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 +msgid "add" +msgstr "aggiungi" + +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Note" + +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:89 ../../addon/gitwiki/gitwiki.php:81 +msgid "Add new page" +msgstr "" + +#: ../../Zotlabs/Widget/Wiki_pages.php:83 ../../addon/gitwiki/gitwiki.php:76 +msgid "Wiki Pages" +msgstr "Pagine wiki" + +#: ../../Zotlabs/Widget/Wiki_pages.php:94 ../../addon/gitwiki/gitwiki.php:82 +msgid "Page name" +msgstr "" + +#: ../../Zotlabs/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Attività" + +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Altro..." + +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:443 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "" + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "" + +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" + +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Coda di attesa" + +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "Aggiornamenti al DB" + +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" +msgstr "Plugin" + +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Il tuo account" + +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Impostazioni del canale" + +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Aspetto" + +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Gestione cloni del tuo canale" + +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Esporta il canale" + +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "Connected apps" +msgstr "App connesse" + +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 +msgid "Permission Groups" +msgstr "" + +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" + +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Nuova attività nella tua rete" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 +msgid "Show new posts only" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 +msgid "Mark all notifications seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Avvisi" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:121 +msgid "New Registrations" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:122 +msgid "New Registrations Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "Public Stream Notifications" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:135 +msgid "View the public stream" +msgstr "" + +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "" + +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "" + +#: ../../boot.php:1562 +msgid "Create an account to access services and applications" +msgstr "" + +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 +msgid "Logout" +msgstr "Esci" + +#: ../../boot.php:1585 +msgid "Login/Email" +msgstr "Login/Email" + +#: ../../boot.php:1586 +msgid "Password" +msgstr "Password" + +#: ../../boot.php:1587 +msgid "Remember me" +msgstr "Resta connesso" + +#: ../../boot.php:1590 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ../../boot.php:2347 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" + +#: ../../boot.php:2352 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." + +#: ../../boot.php:2468 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" + +#: ../../boot.php:2473 +msgid "Cron/Scheduled tasks not running." +msgstr "Processi cron non avviati." + +#: ../../boot.php:2474 ../../include/datetime.php:232 +msgid "never" +msgstr "mai" + +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (predefinito)" + +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Impostazioni del tema" + +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Barra di navigazione ristretta" + +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Barra di navigazione: Colore di sfondo" + +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Barra di navigazione: Colore delle icone" + +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Barra di navigazione: Colore dell'icona attiva" + +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Colore del font del banner" + +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Colore di sfondo" + +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Immagine di sfondo" + +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "Colore di sfondo degli oggetti" + +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Colore di sfondo dei commenti" + +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Dimensione font per tutto il sito" + +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "" + +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Colore del carattere per post e commenti" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Raggio degli angoli stondati" + +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "Esempio: 4px" + +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Profondità dell'ombra delle foto" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Larghezza massima dell'area dei contenuti in pixel" + +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Lascia vuoto per usare il valore predefinito" + +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "Allinea a sinistra il contenuto della pagina" + +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Dimensione foto dell'autore della conversazione" + +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Dimensione foto dei partecipanti alla conversazione" + +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "Errore nella cancellazione della tabella" + +#: ../../addon/rendezvous/rendezvous.php:95 +#: ../../addon/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "Invia impostazioni" + +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "" + +#: ../../addon/rendezvous/rendezvous.php:96 msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "" -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "" -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Crittografia addizionale" - -#: ../../include/features.php:60 +#: ../../addon/rendezvous/rendezvous.php:97 msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crittografia tra mittente e destinatario che condividono una chiave segreta" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "" -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "Permetti i post con votazione" +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "" -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "" -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "" -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with" +" the other members, tap the GPS control. When your location is discovered, a" +" red dot will appear and others will be able to see you on the map." +msgstr "" -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "Incontriamoci qui" -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtra per insiemi di canali" +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "Nuovo segnaposto" -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Mostra il riquadro per filtrare i post di certi insiemi di canali" +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "Modifica segnaposto" -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "Nuova identità" -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "Elimina segnaposto" -#: ../../include/features.php:71 -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" +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "Elimina membro" -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "" -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius" +" of you.

Enter a radius in meters (0 to disable):" +msgstr "" -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "distanza" -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "" -#: ../../include/features.php:74 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the" +" marker location.

Enter a radius in meters (0 to disable):" +msgstr "" -#: ../../include/features.php:74 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra con delle parole chiave i post che ricevi" +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "" -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Suggerisci canali" +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "Nota per il promemoria" -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "" -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "" -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Tag" +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or" +" share their own locations with the group." +msgstr "" -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "" -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "" -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "" -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in post" +#: ../../addon/gnusoc/gnusoc.php:247 +msgid "GNU-Social Protocol Settings updated." +msgstr "" -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../addon/gnusoc/gnusoc.php:266 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../addon/gnusoc/gnusoc.php:269 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "" -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../addon/gnusoc/gnusoc.php:273 +msgid "GNU-Social Protocol Settings" +msgstr "" -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../addon/gnusoc/gnusoc.php:464 +msgid "Follow" +msgstr "Segui" -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../addon/gnusoc/gnusoc.php:467 +#, php-format +msgid "%1$s is now following %2$s" +msgstr "%1$s sta ora seguendo %2$s" -#: ../../include/features.php:86 -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" +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "" -#: ../../include/follow.php:28 +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "" + +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 +#: ../../include/nav.php:119 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "Caricato da:" + +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Usa questa immagine" + +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "" + +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "Termine di ricerca" + +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "Errore sconosciuto. Per favore riprova più tardi." + +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "" + +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Marca le foto per adulti" + +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Permetti di nascondere le foto inappropriate nella visualizzazione degli album" + +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "" + +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "" + +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "" + +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "" + +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "" + +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "" + +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "" + +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "" + +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "" + +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "" + +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "" + +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "" + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "" + +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:222 +#, php-format +msgid "%s - view" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "" + +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "" + +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "" + +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Metti un like su Hubzilla" + +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "" + +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "" + +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "" + +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "" + +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" +msgstr "" + +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "" + +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" +msgstr "" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "" + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "" + +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "" + +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "" + +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 +msgid "Login failed." +msgstr "Accesso fallito." + +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 +msgid "Male" +msgstr "Maschio" + +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 +msgid "Female" +msgstr "Femmina" + +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "" + +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "" + +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "" + +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "" + +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "" + +#: ../../addon/startpage/startpage.php:109 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "" + +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:778 +msgid "Diaspora Protocol Settings updated." +msgstr "" + +#: ../../addon/diaspora/diaspora.php:797 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/diaspora/diaspora.php:800 +msgid "Enable the Diaspora protocol for this channel" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:804 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:808 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:812 +msgid "" +"Sign and forward posts and comments with no existing Diaspora signature" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:817 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "" + +#: ../../addon/diaspora/diaspora.php:822 +msgid "Diaspora Protocol Settings" +msgstr "" + +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "" + +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:62 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "" + +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "" + +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "" + +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "" + +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" + +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" + +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "" + +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "" + +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "" + +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "" + +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "" + +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "" + +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "" + +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "" + +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "" + +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "" + +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "" + +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "" + +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "" + +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "" + +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "" + +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "" + +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "" + +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "" + +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "" + +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "" + +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "" + +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "" + +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "" + +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "" + +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 +#: ../../include/channel.php:1568 +msgid "Status:" +msgstr "Stato:" + +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "" + +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "Attualmente bloccati" + +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "Nessun canale attualmente bloccato" + +#: ../../addon/superblock/superblock.php:120 +msgid "\"Superblock\" Settings" +msgstr "" + +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "" + +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "" + +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "" + +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "" + +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "" + +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "" + +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "" + +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "" + +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "" + +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "" + +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "" + +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "" + +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "" + +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "" + +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "" + +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "" + +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "" + +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:91 +msgid "Friendica Photo Album Import" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:92 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "" + +#: ../../addon/frphotos/frphotos.php:93 +msgid "Friendica Server base URL" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Login Username" +msgstr "" + +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Password" +msgstr "" + +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 +msgid "ActivityPub" +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1034 +msgid "ActivityPub Protocol Settings updated." +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1043 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1046 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1049 +msgid "Send multi-media HTML articles" +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1049 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "" + +#: ../../addon/pubcrawl/pubcrawl.php:1053 +msgid "ActivityPub Protocol Settings" +msgstr "" + +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "" + +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "" + +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "" + +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "" + +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "" + +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "" + +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and" +" privacy." +msgstr "" + +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "" + +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "" + +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "" + +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "" + +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project " +"only)" +msgstr "" + +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "" + +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "" + +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "" + +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa." + +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug." + +#: ../../addon/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." + +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Accordi per chitarra" + +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "Il dizionario completo degli accordi online" + +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Accordatura" + +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Nome accordo: per esempio Em7" + +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Mostra l'accordatura per mancini" + +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Riferimento veloce" + +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "" + +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "" + +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "" + +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "" + +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as" +" an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +msgid "Currently connected to: " +msgstr "" + +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +msgid "Clear OAuth configuration" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "" + +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "" + +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "" + +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "" + +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +msgid "Invalid game." +msgstr "" + +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "" + +#: ../../addon/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "" + +#: ../../addon/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "" + +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "" + +#: ../../addon/chess/chess.php:452 +msgid "Error creating new game." +msgstr "" + +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." + +#: ../../addon/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "" + +#: ../../addon/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "" + +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "" + +#: ../../addon/twitter/twitter.php:184 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" + +#: ../../addon/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "" + +#: ../../addon/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "" + +#: ../../addon/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "" + +#: ../../addon/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "" + +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "" + +#: ../../addon/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "" + +#: ../../addon/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "" + +#: ../../addon/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "" + +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "" + +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "" + +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "" + +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" + +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "" + +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "" + +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" + +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "" + +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "" + +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "" + +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "" + +#: ../../addon/tour/tour.php:75 +msgid "Edit your profile and change settings." +msgstr "" + +#: ../../addon/tour/tour.php:76 +msgid "Click here to see activity from your connections." +msgstr "" + +#: ../../addon/tour/tour.php:77 +msgid "Click here to see your channel home." +msgstr "" + +#: ../../addon/tour/tour.php:78 +msgid "You can access your private messages from here." +msgstr "" + +#: ../../addon/tour/tour.php:79 +msgid "Create new events here." +msgstr "" + +#: ../../addon/tour/tour.php:80 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "" + +#: ../../addon/tour/tour.php:81 +msgid "System notifications will arrive here" +msgstr "" + +#: ../../addon/tour/tour.php:82 +msgid "Search for content and users" +msgstr "" + +#: ../../addon/tour/tour.php:83 +msgid "Browse for new contacts" +msgstr "" + +#: ../../addon/tour/tour.php:84 +msgid "Launch installed apps" +msgstr "" + +#: ../../addon/tour/tour.php:85 +msgid "Looking for help? Click here." +msgstr "" + +#: ../../addon/tour/tour.php:86 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "" + +#: ../../addon/tour/tour.php:87 +msgid "You have received a new private message. Click here to see from who!" +msgstr "Hai ricevuto un nuovo messaggio privato. Clicca qui per sapere da chi!" + +#: ../../addon/tour/tour.php:88 +msgid "There are events this week. Click here too see which!" +msgstr "" + +#: ../../addon/tour/tour.php:89 +msgid "You have received a new introduction. Click here to see who!" +msgstr "Hai ricevuto una nuova richiesta di amicizia. Clicca qui per sapere da chi!" + +#: ../../addon/tour/tour.php:90 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "" + +#: ../../addon/tour/tour.php:93 +msgid "Click here to share text, images, videos and sound." +msgstr "" + +#: ../../addon/tour/tour.php:94 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "" + +#: ../../addon/tour/tour.php:95 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "" + +#: ../../addon/tour/tour.php:96 +msgid "Share photos, links, location, etc." +msgstr "" + +#: ../../addon/tour/tour.php:97 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "" + +#: ../../addon/tour/tour.php:98 +msgid "You can password protect content." +msgstr "" + +#: ../../addon/tour/tour.php:99 +msgid "Choose who you share with." +msgstr "" + +#: ../../addon/tour/tour.php:101 +msgid "Click here when you are done." +msgstr "" + +#: ../../addon/tour/tour.php:104 +msgid "Adjust from which channels posts should be displayed." +msgstr "" + +#: ../../addon/tour/tour.php:105 +msgid "Only show posts from channels in the specified privacy group." +msgstr "" + +#: ../../addon/tour/tour.php:109 +msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "" + +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts in given category." +msgstr "" + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts by date." +msgstr "" + +#: ../../addon/tour/tour.php:112 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we" +" think you might find interesting." +msgstr "" + +#: ../../addon/tour/tour.php:113 +msgid "Here you see channels you have connected to." +msgstr "" + +#: ../../addon/tour/tour.php:114 +msgid "Save your search so you can repeat it at a later date." +msgstr "" + +#: ../../addon/tour/tour.php:117 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It" +" is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "" + +#: ../../addon/tour/tour.php:118 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "" + +#: ../../addon/tour/tour.php:125 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI?

Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina.

Puoi anche andare avanti premendo il tasto invio" + +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "" + +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "" + +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "" + +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "" + +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" + +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" + +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" + +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "" + +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "" + +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "" + +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "" + +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "" + +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "" + +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "" + +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "" + +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "" + +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "" + +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "" + +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "" + +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "" + +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "Chi mi ha messo un mi piace?" + +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "" + +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "" + +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." +msgstr "" + +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" + +#: ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Cerca %1$s (%2$s)" + +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "" + +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "" + +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "" + +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "" + +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "" + +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "" + +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "" + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "" + +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "" + +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frequentemente" + +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Ogni ora" + +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Due volte al giorno" + +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Ogni giorno" + +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Ogni settimana" + +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Ogni mese" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Al momento maschio" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Al momento femmina" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transessuale" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Ermafrodito" + +#: ../../include/selectors.php:49 ../../include/channel.php:1485 +msgid "Neuter" +msgstr "Neutro" + +#: ../../include/selectors.php:49 ../../include/channel.php:1487 +msgid "Non-specific" +msgstr "Non specificato" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Maschi" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Femmine" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Gay" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Senza preferenza" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Feticista" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Da solo" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Ha una cotta" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Infatuato/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Disponibile a un incontro" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infedele" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sesso-dipendente" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amici con qualcosa in più" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Impegnato" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Sposato/a" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Con matrimonio immaginario" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Convivente" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio regolare" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felice" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Non in cerca" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Tradito/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separato/a" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Instabile" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorziato/a" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vedovo/a" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incerto/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Relazione complicata" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Chi se ne frega" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Chiedimelo" + +#: ../../include/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "ha messo mi piace al %2$s di %1$s" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "ha messo non mi piace al %2$s di %1$s" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" + +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 +msgid "poked" +msgstr "ha mandato un poke" + +#: ../../include/conversation.php:736 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: ../../include/conversation.php:756 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../include/conversation.php:757 +msgid "Filed under:" +msgstr "Classificato come:" + +#: ../../include/conversation.php:783 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../include/conversation.php:884 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:888 +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: ../../include/conversation.php:889 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" + +#: ../../include/conversation.php:932 +msgid "View Source" +msgstr "Vedi il sorgente" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" + +#: ../../include/conversation.php:1042 +msgid "Activity/Posts" +msgstr "Attività e Post" + +#: ../../include/conversation.php:1062 +msgid "Edit Connection" +msgstr "Modifica il contatto" + +#: ../../include/conversation.php:1072 +msgid "Message" +msgstr "Messaggio" + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1210 +#, 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:1212 +#, 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:1218 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1221 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1265 +msgid "Set your location" +msgstr "La tua località" + +#: ../../include/conversation.php:1266 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" + +#: ../../include/conversation.php:1314 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1315 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1320 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." + +#: ../../include/conversation.php:1324 +msgid "Comments enabled" +msgstr "Commenti abilitati" + +#: ../../include/conversation.php:1325 +msgid "Comments disabled" +msgstr "Commenti disabilitati" + +#: ../../include/conversation.php:1372 +msgid "Page link name" +msgstr "Nome del link alla pagina" + +#: ../../include/conversation.php:1375 +msgid "Post as" +msgstr "Pubblica come " + +#: ../../include/conversation.php:1389 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" + +#: ../../include/conversation.php:1392 +msgid "Disable comments" +msgstr "Disabilita i commenti" + +#: ../../include/conversation.php:1393 +msgid "Toggle comments" +msgstr "Abilita/disabilita i commenti" + +#: ../../include/conversation.php:1401 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../include/conversation.php:1424 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" + +#: ../../include/conversation.php:1430 +msgid "Set publish date" +msgstr "Data di uscita programmata" + +#: ../../include/conversation.php:1690 +msgid "Commented Order" +msgstr "Commenti recenti" + +#: ../../include/conversation.php:1693 +msgid "Sort by Comment Date" +msgstr "Per data del commento" + +#: ../../include/conversation.php:1697 +msgid "Posted Order" +msgstr "Post recenti" + +#: ../../include/conversation.php:1700 +msgid "Sort by Post Date" +msgstr "Per data di creazione" + +#: ../../include/conversation.php:1708 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" + +#: ../../include/conversation.php:1717 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" + +#: ../../include/conversation.php:1723 +msgid "Starred" +msgstr "Preferiti" + +#: ../../include/conversation.php:1726 +msgid "Favourite Posts" +msgstr "Post preferiti" + +#: ../../include/conversation.php:1733 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1736 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" + +#: ../../include/conversation.php:1811 ../../include/nav.php:381 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" + +#: ../../include/conversation.php:1824 ../../include/nav.php:394 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../include/conversation.php:1834 ../../include/nav.php:404 +#: ../../include/photos.php:655 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1842 ../../include/nav.php:412 +msgid "Files and Storage" +msgstr "Archivio file" + +#: ../../include/conversation.php:1879 ../../include/nav.php:447 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/conversation.php:1882 ../../include/nav.php:450 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" + +#: ../../include/conversation.php:1893 ../../include/nav.php:461 +msgid "View Cards" +msgstr "" + +#: ../../include/conversation.php:1901 +msgid "articles" +msgstr "" + +#: ../../include/conversation.php:1904 ../../include/nav.php:472 +msgid "View Articles" +msgstr "" + +#: ../../include/conversation.php:1915 ../../include/nav.php:484 +msgid "View Webpages" +msgstr "" + +#: ../../include/conversation.php:1984 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" + +#: ../../include/conversation.php:1987 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: ../../include/conversation.php:1990 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + +#: ../../include/conversation.php:1993 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" + +#: ../../include/conversation.php:1996 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" + +#: ../../include/conversation.php:1999 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" + +#: ../../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/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" + +#: ../../include/import.php:41 +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:106 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." + +#: ../../include/text.php:492 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:494 +msgid "first" +msgstr "inizio" + +#: ../../include/text.php:523 +msgid "last" +msgstr "fine" + +#: ../../include/text.php:526 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:537 +msgid "older" +msgstr "più recenti" + +#: ../../include/text.php:539 +msgid "newer" +msgstr "più nuovi" + +#: ../../include/text.php:961 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:993 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" + +#: ../../include/text.php:1129 ../../include/text.php:1133 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:1134 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1134 +msgid "pinged" +msgstr "ha effettuato un ping" + +#: ../../include/text.php:1135 +msgid "prod" +msgstr "spintone" + +#: ../../include/text.php:1135 +msgid "prodded" +msgstr "ha ricevuto uno spintone" + +#: ../../include/text.php:1136 +msgid "slap" +msgstr "schiaffo" + +#: ../../include/text.php:1136 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" + +#: ../../include/text.php:1137 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1137 +msgid "fingered" +msgstr "ha ricevuto un finger" + +#: ../../include/text.php:1138 +msgid "rebuff" +msgstr "rifiuto" + +#: ../../include/text.php:1138 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" + +#: ../../include/text.php:1161 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1162 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1163 +msgid "mellow" +msgstr "calmo" + +#: ../../include/text.php:1164 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1165 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1166 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1167 +msgid "stupefied" +msgstr "stupito" + +#: ../../include/text.php:1168 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:1169 +msgid "interested" +msgstr "attento" + +#: ../../include/text.php:1170 +msgid "bitter" +msgstr "amaro" + +#: ../../include/text.php:1171 +msgid "cheerful" +msgstr "allegro" + +#: ../../include/text.php:1172 +msgid "alive" +msgstr "vivace" + +#: ../../include/text.php:1173 +msgid "annoyed" +msgstr "seccato" + +#: ../../include/text.php:1174 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:1175 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:1176 +msgid "disturbed" +msgstr "turbato" + +#: ../../include/text.php:1177 +msgid "frustrated" +msgstr "frustrato" + +#: ../../include/text.php:1178 +msgid "depressed" +msgstr "in depressione" + +#: ../../include/text.php:1179 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:1180 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:1181 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1360 ../../include/js_strings.php:76 +msgid "Monday" +msgstr "lunedì" + +#: ../../include/text.php:1360 ../../include/js_strings.php:77 +msgid "Tuesday" +msgstr "martedì" + +#: ../../include/text.php:1360 ../../include/js_strings.php:78 +msgid "Wednesday" +msgstr "mercoledì" + +#: ../../include/text.php:1360 ../../include/js_strings.php:79 +msgid "Thursday" +msgstr "giovedì" + +#: ../../include/text.php:1360 ../../include/js_strings.php:80 +msgid "Friday" +msgstr "venerdì" + +#: ../../include/text.php:1360 ../../include/js_strings.php:81 +msgid "Saturday" +msgstr "sabato" + +#: ../../include/text.php:1360 ../../include/js_strings.php:75 +msgid "Sunday" +msgstr "domenica" + +#: ../../include/text.php:1364 ../../include/js_strings.php:51 +msgid "January" +msgstr "gennaio" + +#: ../../include/text.php:1364 ../../include/js_strings.php:52 +msgid "February" +msgstr "febbraio" + +#: ../../include/text.php:1364 ../../include/js_strings.php:53 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1364 ../../include/js_strings.php:54 +msgid "April" +msgstr "aprile" + +#: ../../include/text.php:1364 +msgid "May" +msgstr "Mag" + +#: ../../include/text.php:1364 ../../include/js_strings.php:56 +msgid "June" +msgstr "giugno" + +#: ../../include/text.php:1364 ../../include/js_strings.php:57 +msgid "July" +msgstr "luglio" + +#: ../../include/text.php:1364 ../../include/js_strings.php:58 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1364 ../../include/js_strings.php:59 +msgid "September" +msgstr "settembre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:60 +msgid "October" +msgstr "ottobre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:61 +msgid "November" +msgstr "novembre" + +#: ../../include/text.php:1364 ../../include/js_strings.php:62 +msgid "December" +msgstr "dicembre" + +#: ../../include/text.php:1428 ../../include/text.php:1432 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" + +#: ../../include/text.php:1434 ../../include/feedutils.php:852 +msgid "unknown" +msgstr "sconosciuta" + +#: ../../include/text.php:1470 +msgid "remove category" +msgstr "rimuovi la categoria" + +#: ../../include/text.php:1544 +msgid "remove from file" +msgstr "rimuovi dal file" + +#: ../../include/text.php:1686 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "" + +#: ../../include/text.php:1848 ../../include/language.php:397 +msgid "default" +msgstr "predefinito" + +#: ../../include/text.php:1856 +msgid "Page layout" +msgstr "Layout della pagina" + +#: ../../include/text.php:1856 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" + +#: ../../include/text.php:1867 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1870 +msgid "Comanche Layout" +msgstr "" + +#: ../../include/text.php:1875 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1884 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" + +#: ../../include/text.php:2017 +msgid "activity" +msgstr "l'attività" + +#: ../../include/text.php:2099 +msgid "a-z, 0-9, -, and _ only" +msgstr "" + +#: ../../include/text.php:2399 +msgid "Design Tools" +msgstr "Strumenti di design" + +#: ../../include/text.php:2405 +msgid "Pages" +msgstr "Pagine" + +#: ../../include/text.php:2427 +msgid "Import website..." +msgstr "Importazione sito web..." + +#: ../../include/text.php:2428 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" + +#: ../../include/text.php:2429 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" + +#: ../../include/text.php:2430 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" + +#: ../../include/text.php:2431 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/posizione/della/cartella" + +#: ../../include/text.php:2432 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" + +#: ../../include/text.php:2433 +msgid "Select folder" +msgstr "Scegli la cartella" + +#: ../../include/text.php:2434 +msgid "Export website..." +msgstr "Esporta il sito web..." + +#: ../../include/text.php:2435 +msgid "Export to a zip file" +msgstr "Esporta come file zip" + +#: ../../include/text.php:2436 +msgid "website.zip" +msgstr "sitoweb.zip" + +#: ../../include/text.php:2437 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." + +#: ../../include/text.php:2438 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" + +#: ../../include/text.php:2439 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" + +#: ../../include/text.php:2440 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." + +#: ../../include/text.php:2441 +msgid "Specify folder" +msgstr "Scegli la cartella" + +#: ../../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:223 +msgid "Common Connections" +msgstr "" + +#: ../../include/contact_widgets.php:228 +#, php-format +msgid "View all %d common connections" +msgstr "" + +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/follow.php:37 msgid "Channel is blocked on this site." msgstr "Il canale è bloccato per questo sito." -#: ../../include/follow.php:33 +#: ../../include/follow.php:42 msgid "Channel location missing." msgstr "Manca l'indirizzo del canale." -#: ../../include/follow.php:83 +#: ../../include/follow.php:84 msgid "Response from remote channel was incomplete." msgstr "La risposta dal canale non è completa." -#: ../../include/follow.php:100 +#: ../../include/follow.php:101 msgid "Channel was deleted and no longer exists." msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/follow.php:135 ../../include/follow.php:206 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:144 -msgid "Protocol blocked for this channel." -msgstr "Protocollo bloccato per questo canale." +#: ../../include/follow.php:156 +msgid "Remote channel or protocol unavailable." +msgstr "" #: ../../include/follow.php:179 msgid "Channel discovery failed." msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/follow.php:195 -msgid "local account not found." -msgstr "l'account locale non è stato trovato." +#: ../../include/follow.php:191 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/follow.php:224 +#: ../../include/follow.php:202 msgid "Cannot connect to yourself." msgstr "Non puoi connetterti a te stesso." -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Insieme predefinito per i canali che inizi a seguire" - -#: ../../include/group.php:254 ../../mod/admin.php:831 -msgid "All Channels" -msgstr "Tutti i canali" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "modifica" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Insiemi di canali" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Modifica l'insieme di canali" - -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Nuovo insieme" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Canali che non sono in un insieme" - -#: ../../include/identity.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/identity.php:67 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/identity.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/identity.php:186 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/identity.php:198 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/identity.php:212 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/identity.php:292 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/identity.php:350 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/identity.php:759 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../include/identity.php:806 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:27 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54 -#: ../../mod/hcard.php:8 ../../mod/layouts.php:29 ../../mod/webpages.php:29 -msgid "Requested profile is not available." -msgstr "Il profilo richiesto non è disponibile." - -#: ../../include/identity.php:969 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../include/identity.php:975 -msgid "Profiles" -msgstr "Profili" - -#: ../../include/identity.php:975 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/identity.php:976 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/identity.php:991 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Immagine del profilo" - -#: ../../include/identity.php:994 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: ../../include/identity.php:995 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Cambia la visibilità" - -#: ../../include/identity.php:1011 ../../include/identity.php:1250 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/identity.php:1012 ../../include/identity.php:1294 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/identity.php:1013 ../../include/identity.php:1305 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/identity.php:1014 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/identity.php:1097 ../../include/identity.php:1175 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../include/identity.php:1098 ../../include/identity.php:1176 -msgid "F d" -msgstr "d F" - -#: ../../include/identity.php:1143 ../../include/identity.php:1215 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[oggi]" - -#: ../../include/identity.php:1154 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: ../../include/identity.php:1155 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: ../../include/identity.php:1208 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: ../../include/identity.php:1226 -msgid "Event Reminders" -msgstr "Promemoria" - -#: ../../include/identity.php:1227 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: ../../include/identity.php:1248 ../../mod/settings.php:1056 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../include/identity.php:1255 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/identity.php:1279 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1280 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1287 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/identity.php:1291 ../../mod/directory.php:297 -msgid "Age:" -msgstr "Età:" - -#: ../../include/identity.php:1300 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/identity.php:1303 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../include/identity.php:1307 ../../mod/profiles.php:693 -#: ../../mod/directory.php:313 -msgid "Hometown:" -msgstr "Città dove vivo:" - -#: ../../include/identity.php:1309 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/identity.php:1311 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/identity.php:1313 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/identity.php:1315 ../../mod/directory.php:315 -msgid "About:" -msgstr "Informazioni:" - -#: ../../include/identity.php:1317 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" - -#: ../../include/identity.php:1319 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/identity.php:1321 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/identity.php:1323 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" - -#: ../../include/identity.php:1325 -msgid "My other channels:" -msgstr "I miei altri canali:" - -#: ../../include/identity.php:1327 -msgid "Musical interests:" -msgstr "Gusti musicali:" - -#: ../../include/identity.php:1329 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/identity.php:1331 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/identity.php:1333 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" - -#: ../../include/identity.php:1335 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/identity.php:1337 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/identity.php:1339 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/identity.php:1359 -msgid "Like this thing" -msgstr "Mi piace questo Oggetto" - -#: ../../include/items.php:413 ../../mod/bulksetclose.php:11 -#: ../../mod/profperm.php:23 ../../mod/group.php:68 ../../mod/like.php:273 -#: ../../mod/subthread.php:49 ../../index.php:396 -msgid "Permission denied" -msgstr "Permesso negato" - -#: ../../include/items.php:1101 ../../include/items.php:1147 -msgid "(Unknown)" -msgstr "(Sconosciuto)" - -#: ../../include/items.php:1373 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." - -#: ../../include/items.php:1375 -msgid "Visible to you only." -msgstr "Visibile solo a te." - -#: ../../include/items.php:1377 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." - -#: ../../include/items.php:1379 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." - -#: ../../include/items.php:1381 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti in %s." - -#: ../../include/items.php:1383 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." - -#: ../../include/items.php:1385 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." - -#: ../../include/items.php:1387 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." - -#: ../../include/items.php:4310 ../../mod/admin.php:167 -#: ../../mod/admin.php:1025 ../../mod/admin.php:1225 ../../mod/display.php:36 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:74 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../include/items.php:4787 ../../mod/bulksetclose.php:51 -#: ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Insieme di canali non trovato." - -#: ../../include/items.php:4803 -msgid "Collection is empty." -msgstr "L'insieme di canali è vuoto." - -#: ../../include/items.php:4810 -#, php-format -msgid "Collection: %s" -msgstr "Insieme: %s" - -#: ../../include/items.php:4820 ../../mod/connedit.php:674 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../include/items.php:4822 -msgid "Connection not found." -msgstr "Contatto non trovato." - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] riduci" +#, php-format +msgid "%s show less" +msgstr "%s riduci" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] mostra tutto" +#, php-format +msgid "%s expand" +msgstr "%s mostra tutto" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] riduci" +#, php-format +msgid "%s collapse" +msgstr "%s minimizza" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -3357,17 +12470,17 @@ msgstr "Password troppo corta" msgid "Passwords do not match" msgstr "Le password non corrispondono" -#: ../../include/js_strings.php:13 ../../mod/photos.php:40 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "tutti" #: ../../include/js_strings.php:14 msgid "Secret Passphrase" -msgstr "Chiave segreta" +msgstr "Parola chiave per decifrare" #: ../../include/js_strings.php:15 msgid "Passphrase hint" -msgstr "Suggerimento per la chiave segreta" +msgstr "Suggerimento per la parola chiave" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." @@ -3385,11 +12498,6 @@ msgstr "Niente di nuovo qui" msgid "Rate This Channel (this is public)" msgstr "Valuta questo canale (visibile a tutti)" -#: ../../include/js_strings.php:20 ../../mod/connedit.php:683 -#: ../../mod/rate.php:156 -msgid "Rating" -msgstr "Valutazioni" - #: ../../include/js_strings.php:21 msgid "Describe (optional)" msgstr "Descrizione (facoltativa)" @@ -3402,5771 +12510,1405 @@ msgstr "Inserisci l'URL di un link" msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "fa" +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "" -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "da adesso" +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "meno di un minuto" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "circa un minuto" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d minuti" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "circa un’ora" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "circa %d ore" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "un giorno" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d giorni" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "circa un mese" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d mesi" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "circa un anno" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d anni" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/js_strings.php:55 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:159 -#: ../../mod/layouts.php:188 ../../mod/webpages.php:187 -msgid "View" -msgstr "Guarda" +#: ../../include/js_strings.php:63 +msgid "Jan" +msgstr "Gen" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 -msgid "Actions" -msgstr "Azioni" +#: ../../include/js_strings.php:64 +msgid "Feb" +msgstr "Feb" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:190 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../include/js_strings.php:65 +msgid "Mar" +msgstr "Mar" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titolo" +#: ../../include/js_strings.php:66 +msgid "Apr" +msgstr "Apr" -#: ../../include/page_widgets.php:44 ../../mod/blocks.php:150 -#: ../../mod/layouts.php:181 ../../mod/menu.php:108 ../../mod/webpages.php:192 -msgid "Created" -msgstr "Creato" +#: ../../include/js_strings.php:67 +msgctxt "short" +msgid "May" +msgstr "maggio" -#: ../../include/page_widgets.php:45 ../../mod/blocks.php:151 -#: ../../mod/layouts.php:182 ../../mod/menu.php:109 ../../mod/webpages.php:193 -msgid "Edited" -msgstr "Modificato" +#: ../../include/js_strings.php:68 +msgid "Jun" +msgstr "Mag" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" +#: ../../include/js_strings.php:69 +msgid "Jul" +msgstr "Giu" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Può vedere il profilo predefinito del canale" +#: ../../include/js_strings.php:70 +msgid "Aug" +msgstr "Ago" -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Può vedere i miei album fotografici" +#: ../../include/js_strings.php:71 +msgid "Sep" +msgstr "Set" -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Può vedere i miei contatti" +#: ../../include/js_strings.php:72 +msgid "Oct" +msgstr "Ott" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Può vedere i miei file condivisi" +#: ../../include/js_strings.php:73 +msgid "Nov" +msgstr "Nov" -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../include/js_strings.php:74 +msgid "Dec" +msgstr "Dic" -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "È tra i canali che seguo" +#: ../../include/js_strings.php:82 +msgid "Sun" +msgstr "Dom" -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/js_strings.php:83 +msgid "Mon" +msgstr "Lun" -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" +#: ../../include/js_strings.php:84 +msgid "Tue" +msgstr "Mar" -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Può inviarmi messaggi privati" +#: ../../include/js_strings.php:85 +msgid "Wed" +msgstr "Mer" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Può aggiungere foto ai miei album" +#: ../../include/js_strings.php:86 +msgid "Thu" +msgstr "Gio" -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\"" +#: ../../include/js_strings.php:87 +msgid "Fri" +msgstr "Ven" -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profili e tutto ciò che non è post o commenti" +#: ../../include/js_strings.php:88 +msgid "Sat" +msgstr "Sab" -#: ../../include/permissions.php:41 -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/js_strings.php:89 +msgctxt "calendar" +msgid "today" +msgstr "oggi" -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/js_strings.php:90 +msgctxt "calendar" +msgid "month" +msgstr "mese" -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/js_strings.php:91 +msgctxt "calendar" +msgid "week" +msgstr "settimana" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Può scrivere sul mio archivio file" +#: ../../include/js_strings.php:92 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../include/js_strings.php:93 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Può usare i miei post pubblici per creare canali derivati" +#: ../../include/message.php:40 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/permissions.php:48 +#: ../../include/message.php:214 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." + +#: ../../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/attach.php:265 ../../include/attach.php:361 +msgid "Item was not found." +msgstr "Elemento non trovato." + +#: ../../include/attach.php:554 +msgid "No source file." +msgstr "Nessun file di origine." + +#: ../../include/attach.php:576 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" + +#: ../../include/attach.php:595 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" + +#: ../../include/attach.php:737 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" + +#: ../../include/attach.php:758 +#, 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:940 +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:959 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." + +#: ../../include/attach.php:1033 ../../include/attach.php:1049 +msgid "Path not available." +msgstr "Percorso non disponibile." + +#: ../../include/attach.php:1098 ../../include/attach.php:1263 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" + +#: ../../include/attach.php:1124 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" + +#: ../../include/attach.php:1149 +msgid "Path not found." +msgstr "Percorso del file non trovato." + +#: ../../include/attach.php:1217 +msgid "mkdir failed." +msgstr "mkdir fallito." + +#: ../../include/attach.php:1221 +msgid "database storage failed." +msgstr "scrittura su database fallita." + +#: ../../include/attach.php:1269 +msgid "Empty path" +msgstr "La posizione è vuota" + +#: ../../include/security.php:532 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" +"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/permissions.php:893 -msgid "Social Networking" -msgstr "Social network" +#: ../../include/items.php:885 ../../include/items.php:945 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Prevalentemente pubblico" +#: ../../include/items.php:1129 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Con restrizioni" +#: ../../include/items.php:1131 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privato" +#: ../../include/items.php:1133 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Forum di discussione" +#: ../../include/items.php:1135 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "Aggregatore di feed esterni" +#: ../../include/items.php:1137 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Per finalità speciali" +#: ../../include/items.php:1139 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Pagina per fan" +#: ../../include/items.php:1141 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Repository di gruppo" +#: ../../include/items.php:1143 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Altro" +#: ../../include/items.php:4147 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Personalizzazione per esperti" +#: ../../include/items.php:4154 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/photos.php:94 +#: ../../include/items.php:4166 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/items.php:4515 +msgid "profile photo" +msgstr "foto del profilo" + +#: ../../include/items.php:4706 +#, php-format +msgid "[Edited %s]" +msgstr "" + +#: ../../include/items.php:4706 +msgctxt "edit_activity" +msgid "Post" +msgstr "" + +#: ../../include/items.php:4706 +msgctxt "edit_activity" +msgid "Comment" +msgstr "" + +#: ../../include/channel.php:35 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" + +#: ../../include/channel.php:68 +msgid "Empty name" +msgstr "Nome vuoto" + +#: ../../include/channel.php:71 +msgid "Name too long" +msgstr "Nome troppo lungo" + +#: ../../include/channel.php:188 +msgid "No account identifier" +msgstr "Account senza identificativo" + +#: ../../include/channel.php:200 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." + +#: ../../include/channel.php:277 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" + +#: ../../include/channel.php:373 +msgid "Default Profile" +msgstr "Profilo predefinito" + +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "" + +#: ../../include/channel.php:1298 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../include/channel.php:1319 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/channel.php:1396 ../../include/channel.php:1524 +msgid "Gender:" +msgstr "Sesso:" + +#: ../../include/channel.php:1398 ../../include/channel.php:1579 +msgid "Homepage:" +msgstr "Home page:" + +#: ../../include/channel.php:1399 +msgid "Online Now" +msgstr "Online adesso" + +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "" + +#: ../../include/channel.php:1483 +msgid "Trans" +msgstr "" + +#: ../../include/channel.php:1529 +msgid "Like this channel" +msgstr "Mi piace questo canale" + +#: ../../include/channel.php:1553 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/channel.php:1554 +msgid "j F" +msgstr "j F" + +#: ../../include/channel.php:1561 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/channel.php:1574 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/channel.php:1577 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: ../../include/channel.php:1583 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/channel.php:1585 +msgid "Political Views:" +msgstr "Orientamento politico:" + +#: ../../include/channel.php:1587 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/channel.php:1591 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" + +#: ../../include/channel.php:1593 +msgid "Likes:" +msgstr "Mi piace:" + +#: ../../include/channel.php:1595 +msgid "Dislikes:" +msgstr "Non mi piace:" + +#: ../../include/channel.php:1597 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" + +#: ../../include/channel.php:1599 +msgid "My other channels:" +msgstr "I miei altri canali:" + +#: ../../include/channel.php:1601 +msgid "Musical interests:" +msgstr "Gusti musicali:" + +#: ../../include/channel.php:1603 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/channel.php:1605 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/channel.php:1607 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" + +#: ../../include/channel.php:1609 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/channel.php:1611 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/channel.php:1613 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/channel.php:1636 +msgid "Like this thing" +msgstr "Mi piace" + +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Inizio:" + +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Fine:" + +#: ../../include/event.php:1011 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" + +#: ../../include/event.php:1227 +msgid "Not specified" +msgstr "Non specificato" + +#: ../../include/event.php:1228 +msgid "Needs Action" +msgstr "Necessita di un intervento" + +#: ../../include/event.php:1229 +msgid "Completed" +msgstr "Completato" + +#: ../../include/event.php:1230 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1231 +msgid "Cancelled" +msgstr "Annullato" + +#: ../../include/event.php:1310 ../../include/connections.php:684 +msgid "Home, Voice" +msgstr "" + +#: ../../include/event.php:1311 ../../include/connections.php:685 +msgid "Home, Fax" +msgstr "" + +#: ../../include/event.php:1313 ../../include/connections.php:687 +msgid "Work, Voice" +msgstr "" + +#: ../../include/event.php:1314 ../../include/connections.php:688 +msgid "Work, Fax" +msgstr "" + +#: ../../include/network.php:762 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/network.php:1769 ../../include/network.php:1770 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:1771 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:1772 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:1773 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:1776 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:1777 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:1778 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:1779 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:1780 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:1781 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "Chi può vederlo?" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Selezione personalizzata" + +#: ../../include/acl_selectors.php:115 +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:116 +msgid "Show" +msgstr "Mostra" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "Non mostrare" + +#: ../../include/acl_selectors.php:150 +#, 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/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 +msgid "Image/photo" +msgstr "Immagine" + +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 +msgid "Encrypted content" +msgstr "Contenuto cifrato" + +#: ../../include/bbcode.php:253 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "" + +#: ../../include/bbcode.php:257 +#, 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:335 +msgid "card" +msgstr "" + +#: ../../include/bbcode.php:337 +msgid "article" +msgstr "" + +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/bbcode.php:428 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "" + +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "" + +#: ../../include/bbcode.php:1139 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/oembed.php:328 +msgid " by " +msgstr "di" + +#: ../../include/oembed.php:329 +msgid " on " +msgstr "su" + +#: ../../include/oembed.php:358 +msgid "Embedded content" +msgstr "Contenuti incorporati" + +#: ../../include/oembed.php:367 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" + +#: ../../include/zid.php:346 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" + +#: ../../include/features.php:54 +msgid "General Features" +msgstr "Funzionalità di base" + +#: ../../include/features.php:60 +msgid "Advanced Profiles" +msgstr "Profili avanzati" + +#: ../../include/features.php:61 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" + +#: ../../include/features.php:69 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" + +#: ../../include/features.php:70 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" + +#: ../../include/features.php:78 +msgid "Web Pages" +msgstr "Pagine web" + +#: ../../include/features.php:79 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" + +#: ../../include/features.php:88 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo canale" + +#: ../../include/features.php:105 +msgid "Private Notes" +msgstr "Note private" + +#: ../../include/features.php:106 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" + +#: ../../include/features.php:115 +msgid "Create personal planning cards" +msgstr "" + +#: ../../include/features.php:125 +msgid "Create interactive articles" +msgstr "" + +#: ../../include/features.php:133 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" + +#: ../../include/features.php:134 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" + +#: ../../include/features.php:142 +msgid "Photo Location" +msgstr "Posizione geografica" + +#: ../../include/features.php:143 +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:151 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" + +#: ../../include/features.php:152 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato." + +#: ../../include/features.php:161 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" + +#: ../../include/features.php:162 +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:170 +msgid "Event Timezone Selection" +msgstr "" + +#: ../../include/features.php:171 +msgid "Allow event creation in timezones other than your own." +msgstr "" + +#: ../../include/features.php:180 +msgid "Premium Channel" +msgstr "Canale premium" + +#: ../../include/features.php:181 +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:189 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" + +#: ../../include/features.php:190 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" + +#: ../../include/features.php:198 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" + +#: ../../include/features.php:199 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" + +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Gruppi di canali" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "" + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "" + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "" + +#: ../../include/features.php:261 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" + +#: ../../include/features.php:265 +msgid "Large Photos" +msgstr "Foto grandi" + +#: ../../include/features.php:266 +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:275 +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:283 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" + +#: ../../include/features.php:284 +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:292 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" + +#: ../../include/features.php:293 +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:301 +msgid "Disable Comments" +msgstr "Disabilita i commenti" + +#: ../../include/features.php:302 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" + +#: ../../include/features.php:310 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" + +#: ../../include/features.php:311 +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:319 +msgid "Content Expiration" +msgstr "Scadenza" + +#: ../../include/features.php:320 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" + +#: ../../include/features.php:328 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" + +#: ../../include/features.php:329 +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:340 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" + +#: ../../include/features.php:344 +msgid "Search by Date" +msgstr "Ricerca per data" + +#: ../../include/features.php:345 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" + +#: ../../include/features.php:355 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" + +#: ../../include/features.php:363 +msgid "Network Personal Tab" +msgstr "Attività personale" + +#: ../../include/features.php:364 +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:372 +msgid "Network New Tab" +msgstr "Contenuti nuovi" + +#: ../../include/features.php:373 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" + +#: ../../include/features.php:381 +msgid "Affinity Tool" +msgstr "Filtro per affinità" + +#: ../../include/features.php:382 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" + +#: ../../include/features.php:391 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" + +#: ../../include/features.php:399 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" + +#: ../../include/features.php:400 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" + +#: ../../include/features.php:412 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" + +#: ../../include/features.php:416 +msgid "Community Tagging" +msgstr "Tag della comunità" + +#: ../../include/features.php:417 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" + +#: ../../include/features.php:425 +msgid "Post Categories" +msgstr "Categorie dei post" + +#: ../../include/features.php:426 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" + +#: ../../include/features.php:434 +msgid "Emoji Reactions" +msgstr "Risposte emoji" + +#: ../../include/features.php:435 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" + +#: ../../include/features.php:444 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" + +#: ../../include/features.php:452 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:453 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" + +#: ../../include/features.php:461 +msgid "Star Posts" +msgstr "Post con stella" + +#: ../../include/features.php:462 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" + +#: ../../include/features.php:470 +msgid "Tag Cloud" +msgstr "Nuvola di tag" + +#: ../../include/features.php:471 +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/taxonomy.php:384 ../../include/taxonomy.php:405 +msgid "Tags" +msgstr "Tag" + +#: ../../include/taxonomy.php:487 +msgid "Keywords" +msgstr "Parole chiave" + +#: ../../include/taxonomy.php:508 +msgid "have" +msgstr "ho" + +#: ../../include/taxonomy.php:508 +msgid "has" +msgstr "ha" + +#: ../../include/taxonomy.php:509 +msgid "want" +msgstr "voglio" + +#: ../../include/taxonomy.php:509 +msgid "wants" +msgstr "vuole" + +#: ../../include/taxonomy.php:510 +msgid "likes" +msgstr "gli piace" + +#: ../../include/taxonomy.php:511 +msgid "dislikes" +msgstr "non gli piace" + +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Email non valida" + +#: ../../include/account.php:37 +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:43 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:157 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:224 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:313 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" + +#: ../../include/account.php:382 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php:404 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:410 ../../include/account.php:472 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:483 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:523 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../include/account.php:802 ../../include/account.php:804 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/account.php:810 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." + +#: ../../include/account.php:815 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + +#: ../../include/datetime.php:134 +msgid "Birthday" +msgstr "Compleanno" + +#: ../../include/datetime.php:134 +msgid "Age: " +msgstr "Età:" + +#: ../../include/datetime.php:134 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" + +#: ../../include/datetime.php:238 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:256 +#, 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:267 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" + +#: ../../include/datetime.php:270 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" + +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" + +#: ../../include/datetime.php:514 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" + +#: ../../include/datetime.php:515 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" + +#: ../../include/nav.php:96 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:96 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" + +#: ../../include/nav.php:105 ../../include/nav.php:192 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" + +#: ../../include/nav.php:111 ../../include/nav.php:140 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:114 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:117 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Sign in" +msgstr "Accedi" + +#: ../../include/nav.php:157 +msgid "Take me home" +msgstr "" + +#: ../../include/nav.php:159 +msgid "Log me out of this site" +msgstr "" + +#: ../../include/nav.php:164 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:176 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:179 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" + +#: ../../include/nav.php:199 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" + +#: ../../include/nav.php:290 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" + +#: ../../include/nav.php:291 +msgid "Please wait..." +msgstr "Attendere..." + +#: ../../include/nav.php:297 +msgid "Add Apps" +msgstr "Aggiungi App" + +#: ../../include/nav.php:298 +msgid "Arrange Apps" +msgstr "Ordina le App" + +#: ../../include/nav.php:299 +msgid "Toggle System Apps" +msgstr "Attiva/disattiva Apps" + +#: ../../include/photos.php:150 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/photos.php:101 +#: ../../include/photos.php:161 msgid "Image file is empty." msgstr "Il file dell'immagine è vuoto." -#: ../../include/photos.php:128 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../include/photos.php:199 +#: ../../include/photos.php:322 msgid "Photo storage failed." -msgstr "Impossibile caricare la foto." +msgstr "Impossibile salvare la foto." -#: ../../include/photos.php:363 +#: ../../include/photos.php:364 +msgid "a new photo" +msgstr "una nuova foto" + +#: ../../include/photos.php:368 +#, 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:660 msgid "Upload New Photos" msgstr "Carica nuove foto" -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Tag" +#: ../../include/zot.php:767 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/taxonomy.php:287 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/zot.php:794 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/taxonomy.php:308 -msgid "have" -msgstr "ho" - -#: ../../include/taxonomy.php:308 -msgid "has" -msgstr "ha" - -#: ../../include/taxonomy.php:309 -msgid "want" -msgstr "voglio" - -#: ../../include/taxonomy.php:309 -msgid "wants" -msgstr "vuole" - -#: ../../include/taxonomy.php:310 -msgid "likes" -msgstr "gli piace" - -#: ../../include/taxonomy.php:311 -msgid "dislikes" -msgstr "non gli piace" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Maschio" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Maschi" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Femmine" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Senza preferenza" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Feticista" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Da solo" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Ha una cotta" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Infatuato/a" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Disponibile a un incontro" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infedele" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Impegnato" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Sposato/a" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Convivente" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Matrimonio regolare" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Felice" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Non in cerca" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Scambista" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Tradito/a" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separato/a" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Instabile" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorziato/a" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Vedovo/a" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Incerto/a" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Relazione complicata" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Chi se ne frega" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "A:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/mail.php:235 ../../mod/mail.php:348 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Invia" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Messaggio non trovato." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Conversazione privata" - -#: ../../mod/mail.php:336 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcuna tecnologia per comunicare in modo sicuro. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Server non trovato." - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" - -#: ../../mod/page.php:36 ../../mod/block.php:27 -msgid "Invalid item." -msgstr "Elemento non valido." - -#: ../../mod/page.php:52 ../../mod/block.php:39 ../../mod/wall_upload.php:29 -msgid "Channel not found." -msgstr "Canale non trovato." - -#: ../../mod/page.php:89 ../../mod/block.php:75 ../../mod/display.php:110 -#: ../../mod/help.php:79 ../../index.php:245 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: ../../mod/page.php:126 -msgid "Lorem Ipsum" -msgstr "Lorem Ipsum" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "rete" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." - -#: ../../mod/admin.php:93 ../../mod/admin.php:452 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Account" - -#: ../../mod/admin.php:95 ../../mod/admin.php:985 -msgid "Channels" -msgstr "Canali" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1077 ../../mod/admin.php:1117 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1277 ../../mod/admin.php:1311 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Coda di attesa" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Configurazione del profilo" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1396 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Plugin" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# account" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# account bloccati" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# account scaduti" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# account in scadenza" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# canali" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# primari" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# cloni" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Coda messaggi in uscita" - -#: ../../mod/admin.php:240 ../../mod/admin.php:451 ../../mod/admin.php:548 -#: ../../mod/admin.php:817 ../../mod/admin.php:984 ../../mod/admin.php:1076 -#: ../../mod/admin.php:1116 ../../mod/admin.php:1276 ../../mod/admin.php:1310 -#: ../../mod/admin.php:1395 -msgid "Administration" -msgstr "Amministrazione" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Riepilogo" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Account creati" - -#: ../../mod/admin.php:245 ../../mod/admin.php:552 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Canali creati" - -#: ../../mod/admin.php:247 ../../mod/admin.php:553 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:363 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." - -#: ../../mod/admin.php:400 ../../mod/settings.php:813 -msgid "mobile" -msgstr "mobile" - -#: ../../mod/admin.php:402 -msgid "experimental" -msgstr "sperimentale" - -#: ../../mod/admin.php:404 -msgid "unsupported" -msgstr "non supportato" - -#: ../../mod/admin.php:429 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" - -#: ../../mod/admin.php:435 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" - -#: ../../mod/admin.php:436 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" - -#: ../../mod/admin.php:437 -msgid "My site has free access only" -msgstr "È un servizio gratuito" - -#: ../../mod/admin.php:438 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" - -#: ../../mod/admin.php:454 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:455 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:456 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:461 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../mod/admin.php:462 -msgid "Banner/Logo" -msgstr "Banner o logo" - -#: ../../mod/admin.php:463 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" - -#: ../../mod/admin.php:463 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" - -#: ../../mod/admin.php:464 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:465 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:465 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" - -#: ../../mod/admin.php:466 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" - -#: ../../mod/admin.php:466 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" - -#: ../../mod/admin.php:468 -msgid "Enable Diaspora Protocol" -msgstr "Abilita la comunicazione con Diaspora" - -#: ../../mod/admin.php:468 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Sperimentale - per comunicare con Diaspora e Friendica" - -#: ../../mod/admin.php:469 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" - -#: ../../mod/admin.php:469 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" - -#: ../../mod/admin.php:470 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" - -#: ../../mod/admin.php:470 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." - -#: ../../mod/admin.php:471 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" - -#: ../../mod/admin.php:472 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" - -#: ../../mod/admin.php:473 -msgid "Register text" -msgstr "Testo di registrazione" - -#: ../../mod/admin.php:473 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:474 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" - -#: ../../mod/admin.php:474 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." - -#: ../../mod/admin.php:475 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" - -#: ../../mod/admin.php:475 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." - -#: ../../mod/admin.php:476 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" - -#: ../../mod/admin.php:476 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." - -#: ../../mod/admin.php:477 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" - -#: ../../mod/admin.php:477 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." - -#: ../../mod/admin.php:478 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: ../../mod/admin.php:478 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" - -#: ../../mod/admin.php:479 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" - -#: ../../mod/admin.php:479 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." - -#: ../../mod/admin.php:480 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: ../../mod/admin.php:480 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." - -#: ../../mod/admin.php:481 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" - -#: ../../mod/admin.php:481 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." - -#: ../../mod/admin.php:482 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" - -#: ../../mod/admin.php:482 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito." - -#: ../../mod/admin.php:483 -msgid "Disable discovery tab" -msgstr "Disabilita la funzione 'scopri'" - -#: ../../mod/admin.php:483 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." - -#: ../../mod/admin.php:484 -msgid "login on Homepage" -msgstr "Mostra il login sulla homepage" - -#: ../../mod/admin.php:484 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." - -#: ../../mod/admin.php:486 -msgid "Proxy user" -msgstr "Utente proxy" - -#: ../../mod/admin.php:487 -msgid "Proxy URL" -msgstr "URL proxy" - -#: ../../mod/admin.php:488 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../mod/admin.php:488 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." - -#: ../../mod/admin.php:489 -msgid "Delivery interval" -msgstr "Recapito ritardato" - -#: ../../mod/admin.php:489 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." - -#: ../../mod/admin.php:490 -msgid "Poll interval" -msgstr "Intervallo di polling" - -#: ../../mod/admin.php:490 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." - -#: ../../mod/admin.php:491 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" - -#: ../../mod/admin.php:491 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../mod/admin.php:492 -msgid "Expiration period in days for imported (matrix/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" - -#: ../../mod/admin.php:492 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" - -#: ../../mod/admin.php:540 -msgid "No server found" -msgstr "Server non trovato" - -#: ../../mod/admin.php:547 ../../mod/admin.php:831 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:547 -msgid "for channel" -msgstr "per canale" - -#: ../../mod/admin.php:547 -msgid "on server" -msgstr "sul server" - -#: ../../mod/admin.php:547 -msgid "Status" -msgstr "Stato" - -#: ../../mod/admin.php:549 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:566 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." - -#: ../../mod/admin.php:576 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." - -#: ../../mod/admin.php:579 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." - -#: ../../mod/admin.php:583 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." - -#: ../../mod/admin.php:586 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../mod/admin.php:602 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:606 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." - -#: ../../mod/admin.php:608 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." - -#: ../../mod/admin.php:609 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." - -#: ../../mod/admin.php:641 -msgid "Queue Statistics" -msgstr "Statistiche della coda" - -#: ../../mod/admin.php:642 -msgid "Total Entries" -msgstr "Totale" - -#: ../../mod/admin.php:643 -msgid "Priority" -msgstr "Priorità" - -#: ../../mod/admin.php:644 -msgid "Destination URL" -msgstr "URL di destinazione" - -#: ../../mod/admin.php:645 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" - -#: ../../mod/admin.php:646 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" - -#: ../../mod/admin.php:647 -msgid "Last known contact" -msgstr "Ultimo scambio dati" - -#: ../../mod/admin.php:683 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" - -#: ../../mod/admin.php:691 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" - -#: ../../mod/admin.php:727 -msgid "Account not found" -msgstr "Account non trovato" - -#: ../../mod/admin.php:739 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" - -#: ../../mod/admin.php:747 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" - -#: ../../mod/admin.php:755 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" - -#: ../../mod/admin.php:818 ../../mod/admin.php:830 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:820 ../../mod/admin.php:987 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:821 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:822 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../mod/admin.php:823 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:824 ../../mod/connedit.php:699 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/admin.php:825 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:827 ../../mod/connedit.php:531 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:828 ../../mod/connedit.php:531 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:831 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:831 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:831 -msgid "Expires" -msgstr "Con scadenza" - -#: ../../mod/admin.php:831 -msgid "Service Class" -msgstr "Classe dell'account" - -#: ../../mod/admin.php:833 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" - -#: ../../mod/admin.php:834 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" - -#: ../../mod/admin.php:870 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" - -#: ../../mod/admin.php:879 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" - -#: ../../mod/admin.php:886 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" - -#: ../../mod/admin.php:906 -msgid "Channel not found" -msgstr "Canale non trovato" - -#: ../../mod/admin.php:917 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" - -#: ../../mod/admin.php:929 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" - -#: ../../mod/admin.php:940 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" - -#: ../../mod/admin.php:989 -msgid "Censor" -msgstr "Applica una censura" - -#: ../../mod/admin.php:990 -msgid "Uncensor" -msgstr "Rimuovi la censura" - -#: ../../mod/admin.php:991 -msgid "Allow Code" -msgstr "Permetti codice nei contenuti" - -#: ../../mod/admin.php:992 -msgid "Disallow Code" -msgstr "Non permettere codice nei contenuti" - -#: ../../mod/admin.php:994 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:994 ../../mod/profiles.php:447 -msgid "Address" -msgstr "Indirizzo" - -#: ../../mod/admin.php:996 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" - -#: ../../mod/admin.php:997 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" - -#: ../../mod/admin.php:1037 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." - -#: ../../mod/admin.php:1041 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." - -#: ../../mod/admin.php:1051 ../../mod/admin.php:1249 -msgid "Disable" -msgstr "Disattiva" - -#: ../../mod/admin.php:1054 ../../mod/admin.php:1251 -msgid "Enable" -msgstr "Attiva" - -#: ../../mod/admin.php:1078 ../../mod/admin.php:1278 -msgid "Toggle" -msgstr "Attiva/disattiva" - -#: ../../mod/admin.php:1086 ../../mod/admin.php:1288 -msgid "Author: " -msgstr "Autore:" - -#: ../../mod/admin.php:1087 ../../mod/admin.php:1289 -msgid "Maintainer: " -msgstr "Gestore:" - -#: ../../mod/admin.php:1214 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: ../../mod/admin.php:1270 -msgid "Screenshot" -msgstr "Istantanea dello schermo" - -#: ../../mod/admin.php:1316 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1317 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1341 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." - -#: ../../mod/admin.php:1398 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1404 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1405 -msgid "Log file" -msgstr "File di log" - -#: ../../mod/admin.php:1405 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato RedMatrix." - -#: ../../mod/admin.php:1406 -msgid "Log level" -msgstr "Livello di log" - -#: ../../mod/admin.php:1452 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "Field nickname" -msgstr "Nome breve del campo" - -#: ../../mod/admin.php:1453 ../../mod/admin.php:1473 -msgid "System name of field" -msgstr "Nome di sistema del campo" - -#: ../../mod/admin.php:1454 ../../mod/admin.php:1474 -msgid "Input type" -msgstr "Tipo di dati" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Field Name" -msgstr "Nome del campo" - -#: ../../mod/admin.php:1455 ../../mod/admin.php:1475 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Help text" -msgstr "Testo di aiuto" - -#: ../../mod/admin.php:1456 ../../mod/admin.php:1476 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (opzionali)" - -#: ../../mod/admin.php:1466 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" - -#: ../../mod/admin.php:1472 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" - -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" - -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Editor di configurazione" - -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "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." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la app" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Torna alla app e inserisci questo codice di sicurezza:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." - -#: ../../mod/api.php:104 -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?" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout aggiornato." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nome del modulo:" - -#: ../../mod/pdledit.php:55 -msgid "Layout Help" -msgstr "Guida al layout" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installata" - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "App non corretta" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Inserisci del codice" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Modifica app" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crea una app" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nome app" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" - -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 -msgid "Description" -msgstr "Descrizione" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL icona" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "ID versione" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prezzo app" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" - -#: ../../mod/photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." - -#: ../../mod/photos.php:98 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:120 ../../mod/photos.php:655 -msgid "Delete Album" -msgstr "Elimina album" - -#: ../../mod/photos.php:160 ../../mod/photos.php:942 -msgid "Delete Photo" -msgstr "Elimina foto" - -#: ../../mod/photos.php:441 ../../mod/directory.php:59 -#: ../../mod/display.php:13 ../../mod/ratings.php:82 ../../mod/search.php:13 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Accesso pubblico negato." - -#: ../../mod/photos.php:452 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../mod/photos.php:496 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." - -#: ../../mod/photos.php:535 -#, 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." - -#: ../../mod/photos.php:538 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." - -#: ../../mod/photos.php:562 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../mod/photos.php:566 ../../mod/photos.php:648 ../../mod/photos.php:927 -msgid "Enter a new album name" -msgstr "Inserisci il nome di un nuovo album" - -#: ../../mod/photos.php:567 ../../mod/photos.php:649 ../../mod/photos.php:928 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" - -#: ../../mod/photos.php:568 -msgid "Create a status post for this upload" -msgstr "Pubblica l'oggetto caricato sulla bacheca" - -#: ../../mod/photos.php:596 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" - -#: ../../mod/photos.php:637 ../../mod/photos.php:1169 -#: ../../mod/photos.php:1185 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../mod/photos.php:661 -msgid "Show Newest First" -msgstr "Prima i più recenti" - -#: ../../mod/photos.php:663 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" - -#: ../../mod/photos.php:687 ../../mod/photos.php:1217 -msgid "View Photo" -msgstr "Guarda la foto" - -#: ../../mod/photos.php:716 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../mod/photos.php:761 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." - -#: ../../mod/photos.php:763 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../mod/photos.php:821 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../mod/photos.php:828 -msgid "Private Photo" -msgstr "Foto privata" - -#: ../../mod/photos.php:839 ../../mod/events.php:505 -msgid "Previous" -msgstr "Precendente" - -#: ../../mod/photos.php:843 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" - -#: ../../mod/photos.php:848 ../../mod/events.php:506 ../../mod/setup.php:281 -msgid "Next" -msgstr "Successivo" - -#: ../../mod/photos.php:887 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Rimuovi" - -#: ../../mod/photos.php:921 -msgid "Edit photo" -msgstr "Modifica la foto" - -#: ../../mod/photos.php:923 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" - -#: ../../mod/photos.php:924 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" - -#: ../../mod/photos.php:931 -msgid "Caption" -msgstr "Titolo" - -#: ../../mod/photos.php:933 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../mod/photos.php:937 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../mod/photos.php:940 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" - -#: ../../mod/photos.php:1132 -msgid "In This Photo:" -msgstr "In questa foto:" - -#: ../../mod/photos.php:1137 -msgid "Map" -msgstr "Mappa" - -#: ../../mod/photos.php:1223 -msgid "View Album" -msgstr "Guarda l'album" - -#: ../../mod/photos.php:1246 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento non disponibile." - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Nome del riquadro" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Nome del riquadro" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Poke/Prod" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Manda un poke, un prod o altro" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Rendi privato questo post" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "I miei segnalibri" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" - -#: ../../mod/manage.php:167 -msgid "Current Channel" -msgstr "Canale attuale" - -#: ../../mod/manage.php:169 -msgid "Switch to one of your channels by selecting it." -msgstr "Per passare a un altro tuo canale selezionalo." - -#: ../../mod/manage.php:170 -msgid "Default Channel" -msgstr "Canale predefinito" - -#: ../../mod/manage.php:171 -msgid "Make Default" -msgstr "Rendi predefinito" - -#: ../../mod/manage.php:174 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" - -#: ../../mod/manage.php:175 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" - -#: ../../mod/manage.php:177 -msgid "Delegated Channels" -msgstr "Canali delegati" - -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: ../../mod/match.php:31 -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." - -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "interessi personali:" - -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../mod/bulksetclose.php:89 ../../mod/group.php:196 -msgid "Members" -msgstr "Membri" - -#: ../../mod/bulksetclose.php:91 ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" - -#: ../../mod/bulksetclose.php:126 ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Sondaggio" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Guarda i risultati" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." - -#: ../../mod/post.php:236 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione magica dal tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo." - -#: ../../mod/post.php:287 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Area chat non trovata" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lascia l'area chat" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Elimina questa chat" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Non sono presente" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Sono online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Aggiungi l'area chat ai segnalibri" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nuova area chat" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome dell'area chat" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le aree chat di %1$s" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Assente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "Login su $Projectname. Username: {la tua email}, Password: {la tua password} " - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Contatti in comune" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nessun contatto in comune." - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Foto non disponibile." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Carica un file:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../mod/profile_photo.php:366 ../../mod/settings.php:995 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Modifica terminata" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continua" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Canale premium - installazione" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" - -#: ../../mod/connect.php:88 -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." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -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:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -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." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Rifiuta" - -#: ../../mod/notifications.php:51 ../../mod/connedit.php:539 -msgid "Ignore" -msgstr "Ignora" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: ../../mod/connections.php:52 ../../mod/connections.php:153 -msgid "Blocked" -msgstr "Bloccati" - -#: ../../mod/connections.php:57 ../../mod/connections.php:160 -msgid "Ignored" -msgstr "Ignorati" - -#: ../../mod/connections.php:62 ../../mod/connections.php:174 -msgid "Hidden" -msgstr "Nascosti" - -#: ../../mod/connections.php:67 ../../mod/connections.php:167 -msgid "Archived" -msgstr "Archiviati" - -#: ../../mod/connections.php:131 -msgid "Suggest new connections" -msgstr "Suggerisci nuovi contatti" - -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nuovi contatti" - -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" - -#: ../../mod/connections.php:140 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Tutti i contatti" - -#: ../../mod/connections.php:143 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" - -#: ../../mod/connections.php:146 -msgid "Unblocked" -msgstr "Non bloccati" - -#: ../../mod/connections.php:149 -msgid "Only show unblocked connections" -msgstr "Mostra solo i contatti non bloccati" - -#: ../../mod/connections.php:156 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" - -#: ../../mod/connections.php:163 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" - -#: ../../mod/connections.php:170 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" - -#: ../../mod/connections.php:177 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" - -#: ../../mod/connections.php:232 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:233 -msgid "Edit connection" -msgstr "Modifica il contatto" - -#: ../../mod/connections.php:271 -msgid "Search your connections" -msgstr "Cerca tra i contatti" - -#: ../../mod/connections.php:272 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilo eliminato." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio ." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Stato sentimentale" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Partner affettivo" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Mi piace" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religione" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Orientamento politico" - -#: ../../mod/profiles.php:431 ../../mod/id.php:33 -msgid "Gender" -msgstr "Sesso" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Home page" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Interessi" - -#: ../../mod/profiles.php:454 ../../mod/pubsites.php:26 -msgid "Location" -msgstr "Posizione geografica" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Guarda questo profilo" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titolo/descrizione:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Sesso:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Compleanno:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Località:" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Nazione:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Regione/stato:" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "dal [data]:" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Indirizzo home page:" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Parole chiave, tag:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Visibile nell'elenco pubblico di canali" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Contatti personali e i tuoi social network" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "I miei altri canali" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." - -#: ../../mod/profiles.php:728 -msgid "Age: " -msgstr "Età:" - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Modifica/gestisci i profili" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Aggiungi Oggetti al profilo" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Aggiungi oggetti interessanti al tuo profilo" - -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." - -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." - -#: ../../mod/connedit.php:219 -msgid "Connection updated." -msgstr "Contatto aggiornato." - -#: ../../mod/connedit.php:221 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." - -#: ../../mod/connedit.php:267 -msgid "is now connected to" -msgstr "ha come nuovo contatto" - -#: ../../mod/connedit.php:392 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." - -#: ../../mod/connedit.php:406 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." - -#: ../../mod/connedit.php:418 ../../mod/connedit.php:430 -#: ../../mod/connedit.php:442 ../../mod/connedit.php:454 -#: ../../mod/connedit.php:470 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." - -#: ../../mod/connedit.php:494 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." - -#: ../../mod/connedit.php:513 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" - -#: ../../mod/connedit.php:517 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" - -#: ../../mod/connedit.php:520 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" - -#: ../../mod/connedit.php:524 -msgid "Recent Activity" -msgstr "Attività recenti" - -#: ../../mod/connedit.php:527 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" - -#: ../../mod/connedit.php:534 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" - -#: ../../mod/connedit.php:535 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" - -#: ../../mod/connedit.php:539 -msgid "Unignore" -msgstr "Non ignorare" - -#: ../../mod/connedit.php:542 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" - -#: ../../mod/connedit.php:543 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" - -#: ../../mod/connedit.php:547 -msgid "Unarchive" -msgstr "Non archiviare" - -#: ../../mod/connedit.php:547 -msgid "Archive" -msgstr "Archivia" - -#: ../../mod/connedit.php:550 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" - -#: ../../mod/connedit.php:551 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" - -#: ../../mod/connedit.php:555 -msgid "Unhide" -msgstr "Non nascondere" - -#: ../../mod/connedit.php:555 -msgid "Hide" -msgstr "Nascondi" - -#: ../../mod/connedit.php:558 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" - -#: ../../mod/connedit.php:559 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" - -#: ../../mod/connedit.php:566 -msgid "Delete this connection" -msgstr "Elimina questo contatto" - -#: ../../mod/connedit.php:647 -msgid "Approve this connection" -msgstr "Approva questo contatto" - -#: ../../mod/connedit.php:647 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" - -#: ../../mod/connedit.php:652 -msgid "Set Affinity" -msgstr "Scegli l'affinità" - -#: ../../mod/connedit.php:655 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" - -#: ../../mod/connedit.php:658 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" - -#: ../../mod/connedit.php:675 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" - -#: ../../mod/connedit.php:677 -msgid "This connection's address is" -msgstr "Indirizzo di questo contatto" - -#: ../../mod/connedit.php:680 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." - -#: ../../mod/connedit.php:682 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" - -#: ../../mod/connedit.php:684 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" - -#: ../../mod/connedit.php:685 ../../mod/connedit.php:690 -msgid "Optionally explain your rating" -msgstr "Commento opzionale" - -#: ../../mod/connedit.php:687 -msgid "Custom Filter" -msgstr "Filtro personalizzato" - -#: ../../mod/connedit.php:688 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono questo testo" - -#: ../../mod/connedit.php:688 ../../mod/connedit.php:689 -msgid "" -"words one per line or #tags or /patterns/, leave blank to import all posts" -msgstr "una parola per riga, oppure #tag o /pattern/ oppure lascia vuoto per importare tutto" - -#: ../../mod/connedit.php:689 -msgid "Do not import posts with this text" -msgstr "Non importare i post con questo testo" - -#: ../../mod/connedit.php:691 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" - -#: ../../mod/connedit.php:696 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" - -#: ../../mod/connedit.php:697 -msgid "Connection Request" -msgstr "Richiesta di entrare in contatto" - -#: ../../mod/connedit.php:698 -#, php-format -msgid "" -"(%s) would like to connect with you. Please approve this connection to allow" -" communication." -msgstr "(%s) vorrebbe entrare in contatto con te. Per permettere la comunicazione è necessario che tu approvi." - -#: ../../mod/connedit.php:700 -msgid "Approve Later" -msgstr "Approva più tardi" - -#: ../../mod/connedit.php:703 -msgid "inherited" -msgstr "derivato" - -#: ../../mod/connedit.php:705 -#, 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 quando visita il tuo profilo in modo sicuro." - -#: ../../mod/connedit.php:707 -msgid "Their Settings" -msgstr "Permessi concessi a te" - -#: ../../mod/connedit.php:708 -msgid "My Settings" -msgstr "I permessi che concedo" - -#: ../../mod/connedit.php:710 -msgid "Individual Permissions" -msgstr "Permessi individuali" - -#: ../../mod/connedit.php:711 -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 "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." - -#: ../../mod/connedit.php:712 -msgid "" -"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." -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 proprio le impostazioni generali." - -#: ../../mod/connedit.php:713 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visibile a" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "Canale $Projectname" - -#: ../../mod/directory.php:234 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../mod/directory.php:245 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../mod/directory.php:247 -msgid "Status: " -msgstr "Stato:" - -#: ../../mod/directory.php:249 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../mod/directory.php:308 ../../mod/events.php:682 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../mod/directory.php:317 -msgid "Public Forum:" -msgstr "Forum pubblico:" - -#: ../../mod/directory.php:320 -msgid "Keywords: " -msgstr "Parole chiave:" - -#: ../../mod/directory.php:323 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" - -#: ../../mod/directory.php:325 -msgid "Common connections:" -msgstr "Contatti in comune:" - -#: ../../mod/directory.php:374 -msgid "Global Directory" -msgstr "Elenco globale dei canali" - -#: ../../mod/directory.php:374 -msgid "Local Directory" -msgstr "Elenco canali su questo server" - -#: ../../mod/directory.php:380 -msgid "Finding:" -msgstr "Ricerca:" - -#: ../../mod/directory.php:385 -msgid "next page" -msgstr "pagina successiva" - -#: ../../mod/directory.php:385 -msgid "previous page" -msgstr "pagina precedente" - -#: ../../mod/directory.php:386 -msgid "Sort options" -msgstr "Opzioni di ordinamento" - -#: ../../mod/directory.php:387 -msgid "Alphabetic" -msgstr "Alfabetico" - -#: ../../mod/directory.php:388 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" - -#: ../../mod/directory.php:389 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" - -#: ../../mod/directory.php:390 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" - -#: ../../mod/directory.php:407 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Siti pubblici" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links 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." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Valuta questo hub" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "URL del sito" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../mod/pubsites.php:26 -msgid "Project" -msgstr "Progetto" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Vedi le valutazioni del hub" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Valuta" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Vedi le valutazioni" - -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45 -msgid "This site is not a directory server" -msgstr "Questo sito non è un server di elenchi pubblici" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" - -#: ../../mod/editblock.php:78 ../../mod/editblock.php:94 -#: ../../mod/editlayout.php:76 ../../mod/editpost.php:20 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Elemento non trovato" - -#: ../../mod/editblock.php:117 -msgid "Delete block?" -msgstr "Vuoi eliminare questo riquadro?" - -#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 -#: ../../mod/editpost.php:115 ../../mod/editwebpage.php:187 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" - -#: ../../mod/editblock.php:145 ../../mod/editlayout.php:143 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:188 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Vorbis [.ogg]" - -#: ../../mod/editblock.php:146 ../../mod/editlayout.php:144 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:189 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" - -#: ../../mod/editblock.php:179 -msgid "Edit Block" -msgstr "Modifica il riquadro" - -#: ../../mod/editlayout.php:111 -msgid "Delete layout?" -msgstr "Vuoi eliminare questo layout?" - -#: ../../mod/editlayout.php:158 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" - -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Nome layout" - -#: ../../mod/editlayout.php:177 -msgid "Edit Layout" -msgstr "Modifica il layout" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" - -#: ../../mod/editpost.php:48 -msgid "Delete item?" -msgstr "Eliminare questo elemento?" - -#: ../../mod/editpost.php:158 ../../mod/rpost.php:131 -msgid "Edit post" -msgstr "Modifica post" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Inviato!" - -#: ../../mod/editwebpage.php:152 -msgid "Delete webpage?" -msgstr "Vuoi eliminare questa pagina web?" - -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Link del titolo" - -#: ../../mod/editwebpage.php:224 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Sito web:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" - -#: ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" - -#: ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" - -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." - -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." - -#: ../../mod/events.php:101 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." - -#: ../../mod/events.php:103 ../../mod/events.php:112 ../../mod/events.php:130 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../mod/events.php:110 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../mod/events.php:128 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../mod/events.php:426 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:448 -msgid "Edit event" -msgstr "Modifica l'evento" - -#: ../../mod/events.php:449 -msgid "Delete event" -msgstr "Elimina l'evento" - -#: ../../mod/events.php:483 -msgid "calendar" -msgstr "calendario" - -#: ../../mod/events.php:504 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: ../../mod/events.php:507 -msgid "Export" -msgstr "Esporta" - -#: ../../mod/events.php:510 -msgid "Import" -msgstr "Importa" - -#: ../../mod/events.php:541 -msgid "Event removed" -msgstr "Evento eliminato" - -#: ../../mod/events.php:544 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" - -#: ../../mod/events.php:664 -msgid "Event details" -msgstr "Dettagli evento" - -#: ../../mod/events.php:665 -msgid "Starting date and Title are required." -msgstr "Titolo e data d'inizio sono obbligatori." - -#: ../../mod/events.php:667 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../mod/events.php:669 -msgid "Event Starts:" -msgstr "Inizio:" - -#: ../../mod/events.php:676 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è rilevante" - -#: ../../mod/events.php:678 -msgid "Event Finishes:" -msgstr "Fine:" - -#: ../../mod/events.php:680 ../../mod/events.php:681 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" - -#: ../../mod/events.php:680 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono in base all'orario di un luogo particolare." - -#: ../../mod/events.php:686 -msgid "Title:" -msgstr "Titolo:" - -#: ../../mod/events.php:688 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Nessuna valutazione" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valutazioni" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Valutazione:" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Sito web:" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Descrizione:" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Salva segnalibro" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL del segnalibro" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- scegli -" - -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Permesso negato." - -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "File non trovato." - -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" - -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" - -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" - -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" - -#: ../../mod/filestorage.php:155 -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" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Condividi questo file" - -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" - -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canale aggiunto." - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "La registrazione su questo sito è soggetta ad approvazione." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrati su un altro server affiliato" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo sito è necessario un invito." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Il tuo indirizzo email" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Scegli una password" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Effettua l'accesso." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "L'insieme di canali è stato creato." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Impossibile creare l'insieme." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Insieme aggiornato." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Crea un insieme di canali." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome dell'insieme:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali dell'insieme" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Insieme rimosso." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Impossibile rimuovere l'insieme." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Modifica l'insieme" - -#: ../../mod/removeaccount.php:30 -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." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ATTENZIONE:" - -#: ../../mod/removeaccount.php:58 -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." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - -#: ../../mod/removeaccount.php:60 -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." - -#: ../../mod/removeaccount.php:60 -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 server saranno rimossi dalla rete." - -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:720 -msgid "Remove Account" -msgstr "Elimina l'account" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Guida:" - -#: ../../mod/help.php:76 ../../index.php:242 -msgid "Not Found" -msgstr "Non disponibile" - -#: ../../mod/help.php:100 -msgid "$Projectname Documentation" -msgstr "Documentazione $Projectname" - -#: ../../mod/removeme.php:29 -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." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Elimina questo canale" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Rimuovi questo canale e tutti i suoi cloni dalla rete" - -#: ../../mod/removeme.php:60 -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" - -#: ../../mod/removeme.php:61 ../../mod/settings.php:1137 -msgid "Remove Channel" -msgstr "Elimina questo canale" - -#: ../../mod/home.php:58 ../../mod/home.php:66 ../../mod/siteinfo.php:155 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Non è possibile effettuare login con l'OpenID che hai fornito. Per favore controlla che sia scritto correttamente." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Messaggio di errore ricevuto:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Autenticazione fallita." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Accedi dal tuo hub" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Accedi" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Nome" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Cognome" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Nick" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nome e cognome" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto del profilo 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto del profilo 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto del profilo 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto del profilo 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto del profilo 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto del profilo 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Fuso orario" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "Indirizzo home page" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Anno di nascita" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mese di nascita" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Giorno di nascita" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Data di nascita" - -#: ../../mod/impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" - -#: ../../mod/impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" - -#: ../../mod/search.php:206 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: ../../mod/search.php:208 -#, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." - -#: ../../mod/import.php:60 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." - -#: ../../mod/import.php:84 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio server" - -#: ../../mod/import.php:90 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." - -#: ../../mod/import.php:110 -msgid "The data provided is not compatible with this project." -msgstr "I dati forniti non sono compatibili con questo hub." - -#: ../../mod/import.php:115 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." - -#: ../../mod/import.php:135 -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." - -#: ../../mod/import.php:176 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - -#: ../../mod/import.php:186 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." - -#: ../../mod/import.php:574 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." - -#: ../../mod/import.php:579 -msgid "Import Channel" -msgstr "Importa un canale" - -#: ../../mod/import.php:580 -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 server/hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file esportato in precedenza." - -#: ../../mod/import.php:581 -msgid "File to Upload" -msgstr "File da caricare" - -#: ../../mod/import.php:582 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio server/hub" - -#: ../../mod/import.php:583 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" - -#: ../../mod/import.php:584 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio server" - -#: ../../mod/import.php:585 -msgid "Your old login password" -msgstr "La password per il vecchio server" - -#: ../../mod/import.php:586 -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 server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc." - -#: ../../mod/import.php:587 -msgid "Make this hub my primary location" -msgstr "Rendi questo server il mio indirizzo primario" - -#: ../../mod/import.php:588 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" - -#: ../../mod/import.php:589 -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." - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Vieni con noi su RedMatrix" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Spedisci inviti" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Dovrai fornire questo codice di invito:" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "oppure visita " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" - -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Il nome è obbligatorio" - -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" - -#: ../../mod/settings.php:130 -msgid "Diaspora Policy Settings updated." -msgstr "Le regole per Diaspora sono state aggiornate." - -#: ../../mod/settings.php:238 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: ../../mod/settings.php:242 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: ../../mod/settings.php:256 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:258 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." - -#: ../../mod/settings.php:272 -msgid "Not valid email." -msgstr "Email non valida." - -#: ../../mod/settings.php:275 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." - -#: ../../mod/settings.php:284 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." - -#: ../../mod/settings.php:523 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -#: ../../mod/settings.php:649 -msgid "Add application" -msgstr "Aggiungi una app" - -#: ../../mod/settings.php:590 -msgid "Name of application" -msgstr "Nome dell'applicazione" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:591 ../../mod/settings.php:592 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Redirect" -msgstr "Redirect" - -#: ../../mod/settings.php:593 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione." - -#: ../../mod/settings.php:594 ../../mod/settings.php:620 -msgid "Icon url" -msgstr "Url icona" - -#: ../../mod/settings.php:594 -msgid "Optional" -msgstr "Opzionale" - -#: ../../mod/settings.php:605 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: ../../mod/settings.php:648 -msgid "Connected Apps" -msgstr "App connesse" - -#: ../../mod/settings.php:652 -msgid "Client key starts with" -msgstr "La client key inizia con" - -#: ../../mod/settings.php:653 -msgid "No name" -msgstr "Nessun nome" - -#: ../../mod/settings.php:654 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" - -#: ../../mod/settings.php:668 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" - -#: ../../mod/settings.php:685 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" - -#: ../../mod/settings.php:687 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Interconnessione con Diaspora" - -#: ../../mod/settings.php:688 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permetti a tutti gli utenti di Diaspora di commentare i tuoi post pubblici" - -#: ../../mod/settings.php:689 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Abilita il protocollo Diaspora per questo canale" - -#: ../../mod/settings.php:690 -msgid "Diaspora Policy Settings" -msgstr "Regole per Diaspora" - -#: ../../mod/settings.php:691 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Impedisci che i tuoi #tag puntino su altri siti" - -#: ../../mod/settings.php:715 -msgid "Account Settings" -msgstr "Il tuo account" - -#: ../../mod/settings.php:716 -msgid "Enter New Password:" -msgstr "Inserisci la nuova password:" - -#: ../../mod/settings.php:717 -msgid "Confirm New Password:" -msgstr "Conferma la nuova password:" - -#: ../../mod/settings.php:717 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non cambiare la password" - -#: ../../mod/settings.php:719 ../../mod/settings.php:1057 -msgid "Email Address:" -msgstr "Indirizzo email:" - -#: ../../mod/settings.php:721 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" - -#: ../../mod/settings.php:737 -msgid "Off" -msgstr "Off" - -#: ../../mod/settings.php:737 -msgid "On" -msgstr "On" - -#: ../../mod/settings.php:744 -msgid "Additional Features" -msgstr "Funzionalità opzionali" - -#: ../../mod/settings.php:768 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" - -#: ../../mod/settings.php:807 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" - -#: ../../mod/settings.php:810 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" - -#: ../../mod/settings.php:849 -msgid "Display Settings" -msgstr "Aspetto" - -#: ../../mod/settings.php:850 -msgid "Theme Settings" -msgstr "Impostazioni del tema" - -#: ../../mod/settings.php:851 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" - -#: ../../mod/settings.php:852 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" - -#: ../../mod/settings.php:858 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" - -#: ../../mod/settings.php:859 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" - -#: ../../mod/settings.php:860 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" - -#: ../../mod/settings.php:861 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: ../../mod/settings.php:861 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: ../../mod/settings.php:862 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" - -#: ../../mod/settings.php:862 -msgid "Maximum of 100 items" -msgstr "Massimo 100" - -#: ../../mod/settings.php:863 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" - -#: ../../mod/settings.php:864 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" - -#: ../../mod/settings.php:865 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" - -#: ../../mod/settings.php:868 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" - -#: ../../mod/settings.php:868 ../../mod/settings.php:869 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" - -#: ../../mod/settings.php:869 -msgid "Use blog/list mode on matrix page" -msgstr "Mostra la tua rete in modalità blog" - -#: ../../mod/settings.php:870 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" - -#: ../../mod/settings.php:870 ../../mod/settings.php:871 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare per mostrare i contenuti di dimensioni maggiori" - -#: ../../mod/settings.php:871 -msgid "Matrix page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" - -#: ../../mod/settings.php:905 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" - -#: ../../mod/settings.php:906 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" - -#: ../../mod/settings.php:907 -msgid "Approved connections" -msgstr "Contatti approvati" - -#: ../../mod/settings.php:908 -msgid "Any connections" -msgstr "Tutti i contatti" - -#: ../../mod/settings.php:909 -msgid "Anybody on this website" -msgstr "Chiunque su questo sito" - -#: ../../mod/settings.php:910 -msgid "Anybody in this network" -msgstr "Chiunque su Red" - -#: ../../mod/settings.php:911 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" - -#: ../../mod/settings.php:912 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" - -#: ../../mod/settings.php:986 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito nell'elenco pubblico dei canali" - -#: ../../mod/settings.php:991 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" - -#: ../../mod/settings.php:1000 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" - -#: ../../mod/settings.php:1048 -msgid "Channel Settings" -msgstr "Impostazioni del canale" - -#: ../../mod/settings.php:1055 -msgid "Basic Settings" -msgstr "Impostazioni di base" - -#: ../../mod/settings.php:1058 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" - -#: ../../mod/settings.php:1059 -msgid "Default Post Location:" -msgstr "Località predefinita:" - -#: ../../mod/settings.php:1059 -msgid "Geographical location to display on your posts" -msgstr "Posizione geografica da mostrare sui tuoi post" - -#: ../../mod/settings.php:1060 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" - -#: ../../mod/settings.php:1062 -msgid "Adult Content" -msgstr "Contenuto per adulti" - -#: ../../mod/settings.php:1062 -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)" - -#: ../../mod/settings.php:1064 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" - -#: ../../mod/settings.php:1066 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" - -#: ../../mod/settings.php:1068 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" - -#: ../../mod/settings.php:1068 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evita che sul tuo profilo compaia la tua presenza online" - -#: ../../mod/settings.php:1070 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" - -#: ../../mod/settings.php:1071 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" - -#: ../../mod/settings.php:1072 -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)" - -#: ../../mod/settings.php:1073 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" - -#: ../../mod/settings.php:1074 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" - -#: ../../mod/settings.php:1076 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" - -#: ../../mod/settings.php:1076 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" - -#: ../../mod/settings.php:1078 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" - -#: ../../mod/settings.php:1080 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" - -#: ../../mod/settings.php:1080 -msgid "0 or blank prevents expiration" -msgstr "Lascia vuoto oppure 0 per non impostare scadenze" - -#: ../../mod/settings.php:1081 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" - -#: ../../mod/settings.php:1081 -msgid "May reduce spam activity" -msgstr "Serve e ridurre lo spam" - -#: ../../mod/settings.php:1082 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i post" - -#: ../../mod/settings.php:1083 ../../mod/mitem.php:155 ../../mod/mitem.php:227 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: ../../mod/settings.php:1087 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" - -#: ../../mod/settings.php:1093 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" - -#: ../../mod/settings.php:1093 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" - -#: ../../mod/settings.php:1096 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" - -#: ../../mod/settings.php:1097 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" - -#: ../../mod/settings.php:1098 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" - -#: ../../mod/settings.php:1099 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" - -#: ../../mod/settings.php:1100 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" - -#: ../../mod/settings.php:1101 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" - -#: ../../mod/settings.php:1102 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" - -#: ../../mod/settings.php:1103 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" - -#: ../../mod/settings.php:1104 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" - -#: ../../mod/settings.php:1105 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" - -#: ../../mod/settings.php:1106 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: ../../mod/settings.php:1107 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" - -#: ../../mod/settings.php:1108 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" - -#: ../../mod/settings.php:1109 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" - -#: ../../mod/settings.php:1112 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" - -#: ../../mod/settings.php:1114 -msgid "Unseen matrix activity" -msgstr "Nuove attività nella rete" - -#: ../../mod/settings.php:1115 -msgid "Unseen channel activity" -msgstr "Novità nei canali" - -#: ../../mod/settings.php:1116 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" - -#: ../../mod/settings.php:1116 ../../mod/settings.php:1121 -#: ../../mod/settings.php:1122 ../../mod/settings.php:1123 -msgid "Recommended" -msgstr "Consigliato" - -#: ../../mod/settings.php:1117 -msgid "Upcoming events" -msgstr "Prossimi eventi" - -#: ../../mod/settings.php:1118 -msgid "Events today" -msgstr "Eventi di oggi" - -#: ../../mod/settings.php:1119 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" - -#: ../../mod/settings.php:1119 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" - -#: ../../mod/settings.php:1120 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" - -#: ../../mod/settings.php:1121 -msgid "System info messages" -msgstr "Notifiche di sistema" - -#: ../../mod/settings.php:1122 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" - -#: ../../mod/settings.php:1123 -msgid "New connections" -msgstr "Nuovi contatti" - -#: ../../mod/settings.php:1124 -msgid "System Registrations" -msgstr "Registrazioni" - -#: ../../mod/settings.php:1125 -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" - -#: ../../mod/settings.php:1127 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" - -#: ../../mod/settings.php:1127 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" - -#: ../../mod/settings.php:1129 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" - -#: ../../mod/settings.php:1130 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" - -#: ../../mod/settings.php:1133 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" - -#: ../../mod/settings.php:1134 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" - -#: ../../mod/settings.php:1136 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" - -#: ../../mod/settings.php:1138 -msgid "Remove this channel." -msgstr "Elimina questo canale." - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." - -#: ../../mod/item.php:914 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." - -#: ../../mod/item.php:1146 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." - -#: ../../mod/item.php:1153 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." - -#: ../../mod/item.php:1160 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." - -#: ../../mod/setup.php:187 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" - -#: ../../mod/setup.php:191 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." - -#: ../../mod/setup.php:195 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." - -#: ../../mod/setup.php:202 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: ../../mod/setup.php:207 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." - -#: ../../mod/setup.php:211 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." - -#: ../../mod/setup.php:212 ../../mod/setup.php:280 ../../mod/setup.php:730 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." - -#: ../../mod/setup.php:277 -msgid "System check" -msgstr "Verifica del sistema" - -#: ../../mod/setup.php:282 -msgid "Check again" -msgstr "Verifica di nuovo" - -#: ../../mod/setup.php:304 -msgid "Database connection" -msgstr "Connessione al database" - -#: ../../mod/setup.php:305 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." - -#: ../../mod/setup.php:306 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." - -#: ../../mod/setup.php:307 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." - -#: ../../mod/setup.php:311 -msgid "Database Server Name" -msgstr "Server del database" - -#: ../../mod/setup.php:311 -msgid "Default is localhost" -msgstr "'localhost' è il predefinito" - -#: ../../mod/setup.php:312 -msgid "Database Port" -msgstr "Port del database" - -#: ../../mod/setup.php:312 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" - -#: ../../mod/setup.php:313 -msgid "Database Login Name" -msgstr "Utente database" - -#: ../../mod/setup.php:314 -msgid "Database Login Password" -msgstr "Password utente database" - -#: ../../mod/setup.php:315 -msgid "Database Name" -msgstr "Nome database" - -#: ../../mod/setup.php:316 -msgid "Database Type" -msgstr "Tipo database" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: ../../mod/setup.php:318 ../../mod/setup.php:359 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Website URL" -msgstr "URL completo del sito" - -#: ../../mod/setup.php:319 ../../mod/setup.php:361 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." - -#: ../../mod/setup.php:321 ../../mod/setup.php:363 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: ../../mod/setup.php:348 -msgid "Site settings" -msgstr "Impostazioni del sito" - -#: ../../mod/setup.php:413 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" - -#: ../../mod/setup.php:414 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." - -#: ../../mod/setup.php:418 -msgid "PHP executable path" -msgstr "Path del comando PHP" - -#: ../../mod/setup.php:418 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." - -#: ../../mod/setup.php:423 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: ../../mod/setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." - -#: ../../mod/setup.php:433 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." - -#: ../../mod/setup.php:436 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." - -#: ../../mod/setup.php:459 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" - -#: ../../mod/setup.php:461 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" - -#: ../../mod/setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione" - -#: ../../mod/setup.php:485 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:488 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: ../../mod/setup.php:500 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: ../../mod/setup.php:501 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: ../../mod/setup.php:502 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: ../../mod/setup.php:503 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" - -#: ../../mod/setup.php:504 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: ../../mod/setup.php:505 -msgid "mcrypt PHP module" -msgstr "modulo PHP mcrypt" - -#: ../../mod/setup.php:506 -msgid "xml PHP module" -msgstr "modulo xml PHP" - -#: ../../mod/setup.php:510 ../../mod/setup.php:512 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" - -#: ../../mod/setup.php:510 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" - -#: ../../mod/setup.php:516 ../../mod/setup.php:519 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:516 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" - -#: ../../mod/setup.php:524 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." - -#: ../../mod/setup.php:528 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." - -#: ../../mod/setup.php:532 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." - -#: ../../mod/setup.php:536 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" - -#: ../../mod/setup.php:540 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." - -#: ../../mod/setup.php:544 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Errore: il modulo PHP mcrypt è richiesto ma non installato." - -#: ../../mod/setup.php:548 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." - -#: ../../mod/setup.php:566 -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 RedMatrix ma non è in grado di farlo." - -#: ../../mod/setup.php:567 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." - -#: ../../mod/setup.php:568 -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 RedMatrix." - -#: ../../mod/setup.php:569 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." - -#: ../../mod/setup.php:572 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: ../../mod/setup.php:586 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." - -#: ../../mod/setup.php:587 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di RedMatrix." - -#: ../../mod/setup.php:588 ../../mod/setup.php:609 -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 da parte di un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." - -#: ../../mod/setup.php:589 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." - -#: ../../mod/setup.php:592 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" - -#: ../../mod/setup.php:608 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "RedMatrix salva i file caricati nella cartella \"store\" sul server. Il server deve avere i diritti di scrittura su quella cartella che si trova dentro l'installazione di RedMatrix" - -#: ../../mod/setup.php:612 -msgid "store is writable" -msgstr "l'archivio è scrivibile" - -#: ../../mod/setup.php:645 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." - -#: ../../mod/setup.php:646 -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 generati da te!" - -#: ../../mod/setup.php:647 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." - -#: ../../mod/setup.php:648 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." - -#: ../../mod/setup.php:649 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." - -#: ../../mod/setup.php:650 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." - -#: ../../mod/setup.php:652 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" - -#: ../../mod/setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" - -#: ../../mod/setup.php:661 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" - -#: ../../mod/setup.php:670 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." - -#: ../../mod/setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: ../../mod/setup.php:728 -msgid "

What next

" -msgstr "

I prossimi passi

" - -#: ../../mod/setup.php:729 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Descrizione del layout" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "Scarica il file PDL" - -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "File: condivisi con me" - -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NOVITÀ" - -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Elimina tutti i file" - -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Elimina questo file" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Richiesta non valida." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "Oggetto" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Canale non trovato." - -#: ../../mod/like.php:231 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." - -#: ../../mod/like.php:401 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" - -#: ../../mod/like.php:403 -#, 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" - -#: ../../mod/like.php:405 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non ha preso una decisione" - -#: ../../mod/like.php:407 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" - -#: ../../mod/like.php:409 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" - -#: ../../mod/like.php:411 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" - -#: ../../mod/like.php:507 -msgid "Action completed." -msgstr "Comando completato." - -#: ../../mod/like.php:508 -msgid "Thank you." -msgstr "Grazie." - -#: ../../mod/siteinfo.php:112 -#, php-format -msgid "Version %s" -msgstr "Versione %s" - -#: ../../mod/siteinfo.php:133 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" - -#: ../../mod/siteinfo.php:146 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" - -#: ../../mod/siteinfo.php:156 -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. " - -#: ../../mod/siteinfo.php:158 -msgid "Tag: " -msgstr "Tag: " - -#: ../../mod/siteinfo.php:160 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" - -#: ../../mod/siteinfo.php:163 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." - -#: ../../mod/siteinfo.php:165 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" - -#: ../../mod/siteinfo.php:167 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" - -#: ../../mod/siteinfo.php:168 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../mod/siteinfo.php:170 -msgid "Site Administrators" -msgstr "Amministratori del sito" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Indirizzo non trovato." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "L'indirizzo principale non può essere rimosso." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Indirizzo" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Indirizzo primario" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Elimina un indirizzo" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Sorgente creata." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Sorgente aggiornata." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nuova sorgente" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nome del canale" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Sorgente non trovata." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Modifica la sorgente" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Elimina la sorgente" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Sorgente eliminata" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" - -#: ../../mod/lostpass.php:63 -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." - -#: ../../mod/lostpass.php:86 ../../boot.php:1559 -msgid "Password Reset" -msgstr "Reimposta la password" - -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." - -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "clicca qui per accedere" - -#: ../../mod/lostpass.php:91 -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." - -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" - -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: ../../mod/lostpass.php:124 -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." - -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Indirizzo email" - -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." - -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." - -#: ../../mod/menu.php:92 ../../mod/menu.php:104 -msgid "Menu Name" -msgstr "Nome del menu" - -#: ../../mod/menu.php:92 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" - -#: ../../mod/menu.php:93 ../../mod/menu.php:105 -msgid "Menu Title" -msgstr "Titolo del menu" - -#: ../../mod/menu.php:93 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" - -#: ../../mod/menu.php:94 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" - -#: ../../mod/menu.php:94 ../../mod/menu.php:151 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" - -#: ../../mod/menu.php:95 ../../mod/menu.php:153 -msgid "Submit and proceed" -msgstr "Salva e procedi" - -#: ../../mod/menu.php:107 -msgid "Drop" -msgstr "Elimina" - -#: ../../mod/menu.php:111 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" - -#: ../../mod/menu.php:113 -msgid "Delete this menu" -msgstr "Elimina questo menù" - -#: ../../mod/menu.php:114 ../../mod/menu.php:148 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" - -#: ../../mod/menu.php:115 -msgid "Edit this menu" -msgstr "Modifica questo menù" - -#: ../../mod/menu.php:130 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." - -#: ../../mod/menu.php:138 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menù non trovato." - -#: ../../mod/menu.php:143 -msgid "Edit Menu" -msgstr "Modifica menù" - -#: ../../mod/menu.php:147 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" - -#: ../../mod/menu.php:149 -msgid "Menu name" -msgstr "Nome del menù" - -#: ../../mod/menu.php:149 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" - -#: ../../mod/menu.php:150 -msgid "Menu title" -msgstr "Titolo del menù" - -#: ../../mod/menu.php:150 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" - -#: ../../mod/menu.php:151 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" - -#: ../../mod/menu.php:160 ../../mod/mitem.php:116 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Non trovato." - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nessun messaggio." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." - -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." - -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." - -#: ../../mod/mitem.php:154 ../../mod/mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" - -#: ../../mod/mitem.php:157 ../../mod/mitem.php:173 -msgid "Link Name" -msgstr "Nome link" - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destinazione del link o del sottomenu" - -#: ../../mod/mitem.php:158 -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" - -#: ../../mod/mitem.php:159 ../../mod/mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione magica se disponibile" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:233 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Order in list" -msgstr "Ordine dell'elenco" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" - -#: ../../mod/mitem.php:162 -msgid "Submit and finish" -msgstr "Salva e termina" - -#: ../../mod/mitem.php:163 -msgid "Submit and continue" -msgstr "Salva e continua" - -#: ../../mod/mitem.php:171 -msgid "Menu:" -msgstr "Menu:" - -#: ../../mod/mitem.php:174 -msgid "Link Target" -msgstr "Destinazione link" - -#: ../../mod/mitem.php:177 -msgid "Edit menu" -msgstr "Modifica il menù" - -#: ../../mod/mitem.php:180 -msgid "Edit element" -msgstr "Modifica l'elemento" - -#: ../../mod/mitem.php:181 -msgid "Drop element" -msgstr "Elimina l'elemento" - -#: ../../mod/mitem.php:182 -msgid "New element" -msgstr "Nuovo elemento" - -#: ../../mod/mitem.php:183 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" - -#: ../../mod/mitem.php:184 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" - -#: ../../mod/mitem.php:185 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" - -#: ../../mod/mitem.php:203 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." - -#: ../../mod/mitem.php:215 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." - -#: ../../mod/mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." - -#: ../../mod/mitem.php:224 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" - -#: ../../mod/mitem.php:230 -msgid "Link text" -msgstr "Testo del link" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" - -#: ../../mod/suggest.php:35 -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." - -#: ../../mod/tagger.php:96 -#, 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" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Impossibile trovare l'insieme" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "Canale sconosciuto" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Cerca risultati con:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "L'insieme di canali è vuoto" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Insieme:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Contatto:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Contatto non valido." - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore del protocollo OpenID. Nessun ID ricevuto in risposta." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Aggiungi un canale" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Oppure importa un tuo canale esistente da un altro server/hub" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. RedMatrix sceglierà per te i permessi più adatti." - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Tipo di canale" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "L'Oggetto è stato aggiornato" - -#: ../../mod/thing.php:167 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." - -#: ../../mod/thing.php:171 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" - -#: ../../mod/thing.php:203 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:254 -msgid "Show Thing" -msgstr "Mostra l'Oggetto" - -#: ../../mod/thing.php:261 -msgid "item not found." -msgstr "non trovato." - -#: ../../mod/thing.php:289 -msgid "Edit Thing" -msgstr "Modifica l'Oggetto" - -#: ../../mod/thing.php:291 ../../mod/thing.php:338 -msgid "Select a profile" -msgstr "Scegli un profilo" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Post an activity" -msgstr "Pubblica un'attività" - -#: ../../mod/thing.php:295 ../../mod/thing.php:341 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi segue il relativo canale" - -#: ../../mod/thing.php:297 ../../mod/thing.php:343 -msgid "Name of thing e.g. something" -msgstr "Nome dell'Oggetto" - -#: ../../mod/thing.php:299 ../../mod/thing.php:344 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'Oggetto (opzionale)" - -#: ../../mod/thing.php:301 ../../mod/thing.php:345 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'Oggetto (facoltativo)" - -#: ../../mod/thing.php:336 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'Oggetto al tuo profilo" - -#: ../../mod/uexport.php:50 ../../mod/uexport.php:51 -msgid "Export Channel" -msgstr "Esporta il canale" - -#: ../../mod/uexport.php:52 -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." - -#: ../../mod/uexport.php:53 -msgid "Export Content" -msgstr "Esporta i contenuti" - -#: ../../mod/uexport.php:54 -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." - -#: ../../mod/uexport.php:55 -msgid "Export your posts from a given year or month:" -msgstr "Puoi anche esportare i post relativi a un certo mese o anno" - -#: ../../mod/uexport.php:57 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Click on one of the recent years or months below." -msgstr "Puoi anche esportare i tuoi post e le conversazioni di un certo mese o anno. Clicca qua sotto su un mese o su un anno recente." - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jan" -msgstr "Gen" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Feb" -msgstr "Feb" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Mar" -msgstr "Mar" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Apr" -msgstr "Apr" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jun" -msgstr "Giu" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Jul" -msgstr "Lug" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Aug" -msgstr "Ago" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Sep" -msgstr "Set" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Oct" -msgstr "Ott" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Nov" -msgstr "Nov" - -#: ../../mod/uexport.php:58 ../../mod/uexport.php:59 -msgid "Dec" -msgstr "Dic" - -#: ../../mod/uexport.php:60 -msgid "" -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Se l'esportazione fallisce (di solito è per mancanza di memoria sullo hub), puoi provare nuovamente, ma scegliendo un intervallo di date più stretto." - -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"Or adjust the date in your browser location bar to select other dates. For " -"example the year 2013; %1$s/2013 or the month " -"September 2013; %1$s/2013/9" -msgstr "Oppure cambia le date nella barra degli indirizzi del tuo browser per selezionare altre date. Per esempio, l'anno 2013; %1$s/2013 o il mese di settembre 2013; %1$s/2013/9" - -#: ../../mod/uexport.php:62 -msgid "Please visit" -msgstr "Visita" - -#: ../../mod/uexport.php:62 -msgid "on another hub to import the backup files(s)." -msgstr "su un altro hub per importare il backup." - -#: ../../mod/uexport.php:63 -msgid "" -"We advise you to clone the channel on the new hub first and than to import " -"the backup file(s) (from the same channel) in chronological order. Importing" -" the backup files into another channel will certainly give permission " -"issues." -msgstr "Il consiglio è di clonare per prima cosa il canale sul nuovo hub e poi importare i file di backup creati dal canale originale in ordine cronologico. Importare contenuti di canali differenti darà sicuramente problemi sui diritti." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_home.php:21 ../../mod/update_network.php:23 -#: ../../mod/update_public.php:21 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/viewconnections.php:62 -msgid "No connections." -msgstr "Nessun contatto." - -#: ../../mod/viewconnections.php:75 +#: ../../include/zot.php:2529 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: ../../mod/viewsrc.php:38 -msgid "Source of Item" -msgstr "Sorgente" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totale voti" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Valutazione media" - -#: ../../mod/webpages.php:191 -msgid "Page Title" -msgstr "Titolo della pagina" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Ricerca canale" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../mod/zfinger.php:23 +#: ../../include/zot.php:4180 msgid "invalid target signature" msgstr "la firma ricevuta non è valida" -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schema predefinito" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Impostazioni del tema" - -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Schema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Dimensioni del carattere per post e commenti" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Tipo di carattere" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Set di icone" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Ombra grande, predefinita 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Ombra piccola, predefinita 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Colore dell'ombra, predefinito #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Raggio degli angoli, predefinito 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Altezza della riga per post e commenti" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Immagine di sfondo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Imposta un allegato di sfondo" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Colore di sfondo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Immagine di sfondo dei contenuti" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Colore di sfondo dei contenuti" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Colore degli elementi della pagina - esadecimale" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Colore dei link - esadecimale" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Larghezza massima degli elementi della pagina. Predefinita 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Larghezza minima degli elementi della pagina. Predefinita 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Larghezza dell'area dei contenuti. Predefinita: 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Colore dei caratteri - esadecimale" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Background-size" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacità degli elementi della pagina" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Mostra l'anteprima solo dei post" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Mostra la colonna laterale sulla pagina del canale" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Colore della barra di navigazione" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Float degli oggetti della pagina" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Margine sinistro dei contenuti" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Margine destro dei contenuti" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Larghezza dei contenuti" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Margine sinistro nella colonna laterale" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Margine destro nella colonna laterale" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Red Matrix default)" -msgstr "Light (predefinito)" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Select scheme" -msgstr "Scegli uno schema" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Barra di navigazione ristretta" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Barra di navigazione: Colore di sfondo" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Barra di navigazione: Gradiente superiore" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Barra di navigazione: Gradiente inferiore" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Bottone di navigazione attivo: Gradiente superiore" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Bottone di navigazione attivo: Gradiente inferiore" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Barra di navigazione: Colore del bordo" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Barra di navigazione: Colore delle icone" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Barra di navigazione: Colore dell'icona attiva" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "colore del link" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Colore del font del banner" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Imposta il colore di sfondo" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Immagine di sfondo" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Imposta il colore di sfondo degli oggetti" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Imposta il colore di sfondo dei commenti" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Imposta il colore del bordo dei commenti" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Imposta il lo spostamento a destra dei commenti" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Colore di base per le icone" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Colore per le icone in mouse-over" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Dimensione font per tutto il sito" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Example: 14px" -msgstr "Esempio: 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Imposta il colore del carattere per post e commenti" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Raggio degli angoli stondati" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Profondità dell'ombra delle foto" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of content region in pixel" -msgstr "Larghezza massima dell'area dei contenuti in pixel" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Leave empty for default width" -msgstr "Lascia vuoto per usare il valore predefinito" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center page content" -msgstr "Centra il contenuto della pagina" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Imposta l'opacità minima della barra di navigazione per nasconderla" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Dimensione foto dell'autore della conversazione" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Dimensione foto dei partecipanti alla conversazione" - -#: ../../boot.php:1356 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s: aggiornamento fallito. Controlla i log di errore." - -#: ../../boot.php:1359 -#, php-format -msgid "Update Error at %s" -msgstr "Errore di aggiornamento su %s" - -#: ../../boot.php:1526 +#: ../../include/group.php:22 msgid "" -"Create an account to access services and applications within the Red Matrix" -msgstr "Registrati per accedere ai servizi e alle applicazioni di RedMatrix" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." -#: ../../boot.php:1554 -msgid "Password" -msgstr "Password" +#: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Aggiungi nuovi contatti a questo gruppo di canali" -#: ../../boot.php:1555 -msgid "Remember me" -msgstr "Resta connesso" +#: ../../include/group.php:306 +msgid "edit" +msgstr "modifica" -#: ../../boot.php:1558 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" +#: ../../include/group.php:329 +msgid "Edit group" +msgstr "Modifica il gruppo" -#: ../../boot.php:2182 -msgid "toggle mobile" -msgstr "attiva/disattiva versione mobile" +#: ../../include/group.php:330 +msgid "Add privacy group" +msgstr "Crea un gruppo di canali" -#: ../../boot.php:2317 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." +#: ../../include/group.php:331 +msgid "Channels not in any privacy group" +msgstr "Canali che non sono in nessun gruppo" -#: ../../boot.php:2320 -#, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] Errore SSL %s " +#: ../../include/connections.php:128 +msgid "New window" +msgstr "Nuova finestra" -#: ../../boot.php:2357 -msgid "Cron/Scheduled tasks not running." -msgstr "Processi/cron non avviati." +#: ../../include/connections.php:129 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../boot.php:2361 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Processi cron non avviati su %s" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../include/auth.php:263 +msgid "Email validation is incomplete. Please check your email." +msgstr "Validazione via mail non completa. Per favore controlla la tua mail." + +#: ../../include/auth.php:279 +msgid "Failed authentication" +msgstr "Autenticazione fallita" + +#: ../../include/help.php:34 +msgid "Help:" +msgstr "Guida:" + +#: ../../include/help.php:78 +msgid "Not Found" +msgstr "Non disponibile" diff --git a/view/it/strings.php b/view/it/strings.php index da31a9a0c..42fc58347 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -4,269 +4,1750 @@ if(! function_exists("string_plural_select_it")) { function string_plural_select_it($n){ return ($n != 1);; }} -; -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["Import completed."] = "L'importazione è terminata con successo!"; -App::$strings["parent"] = "cartella superiore"; -App::$strings["Collection"] = "Cartella"; -App::$strings["Principal"] = "Principale"; -App::$strings["Addressbook"] = "Rubrica"; -App::$strings["Calendar"] = "Calendario"; -App::$strings["Schedule Inbox"] = "Appuntamenti ricevuti"; -App::$strings["Schedule Outbox"] = "Appuntamenti inviati"; -App::$strings["Unknown"] = "Sconosciuto"; -App::$strings["%1\$s used"] = "%1\$s occupati"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s occupati di %2\$s (%3\$s%)"; -App::$strings["Files"] = "Archivio file"; -App::$strings["Total"] = "Totale"; -App::$strings["Shared"] = "Condiviso"; +App::$rtl = 0; +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 view my wiki pages"] = "Può vedere le pagine del mio wiki"; +App::$strings["Can create/edit my channel webpages"] = "Può creare o modificare le pagine web del mio canale"; +App::$strings["Can write to my wiki pages"] = "Può scrivere nelle pagine del mio wiki"; +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["Social Networking"] = "Social network"; +App::$strings["Social - Party"] = "Social - Party"; +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["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; +App::$strings["Permission denied."] = "Permesso negato."; +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["Create"] = "Crea"; -App::$strings["Upload"] = "Carica"; +App::$strings["Edit"] = "Modifica"; +App::$strings["Share"] = "Condividi"; +App::$strings["Delete"] = "Elimina"; +App::$strings["View"] = "Guarda"; +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["Submit"] = "Salva"; +App::$strings["Articles"] = "Articoli"; +App::$strings["Add Article"] = "Aggiungi un articolo"; +App::$strings["Item not found"] = "Elemento non trovato"; +App::$strings["Layout Name"] = "Nome layout"; +App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; +App::$strings["Edit Layout"] = "Modifica il layout"; +App::$strings["Permission denied"] = "Permesso negato"; +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["All Connections"] = "Tutti i contatti"; +App::$strings["INVALID EVENT DISMISSED!"] = "EVENTO NON VALIDO ELIMINATO!"; +App::$strings["Summary: "] = "Sommario:"; +App::$strings["Unknown"] = "Sconosciuto"; +App::$strings["Date: "] = "Data:"; +App::$strings["Reason: "] = "Motivo:"; +App::$strings["INVALID CARD DISMISSED!"] = "CARD NON VALIDA ELIMINATA!"; +App::$strings["Name: "] = "Nome:"; +App::$strings["Event title"] = "Titolo dell'evento"; +App::$strings["Start date and time"] = "Data e ora di inizio"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Esempio: YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "Data e ora di fine"; +App::$strings["Description"] = "Descrizione"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["Previous"] = "Precendente"; +App::$strings["Next"] = "Successivo"; +App::$strings["Today"] = "Oggi"; +App::$strings["Month"] = "Mese"; +App::$strings["Week"] = "Settimana"; +App::$strings["Day"] = "Giorno"; +App::$strings["List month"] = "Lista del mese"; +App::$strings["List week"] = "Lista della settimana"; +App::$strings["List day"] = "Lista del giorno"; +App::$strings["More"] = "Di più"; +App::$strings["Less"] = "Meno"; +App::$strings["Select calendar"] = "Seleziona calendario"; +App::$strings["Delete all"] = "Elimina tutto"; +App::$strings["Cancel"] = "Annulla"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile."; App::$strings["Name"] = "Nome"; -App::$strings["Type"] = "Tipo"; +App::$strings["Organisation"] = "Organizzazione"; +App::$strings["Title"] = "Titolo"; +App::$strings["Phone"] = "Telefono"; +App::$strings["Email"] = "Email"; +App::$strings["Instant messenger"] = "Messaggistica istantanea"; +App::$strings["Website"] = "Sito web"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Note"] = "Nota"; +App::$strings["Mobile"] = "Mobile"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Work"] = "Lavoro"; +App::$strings["Add Contact"] = "Aggiungi contatto"; +App::$strings["Add Field"] = "Aggiungi campo"; +App::$strings["Update"] = "Aggiorna"; +App::$strings["P.O. Box"] = "P.O. Box"; +App::$strings["Additional"] = "Aggiuntivo"; +App::$strings["Street"] = "Via"; +App::$strings["Locality"] = "Località"; +App::$strings["Region"] = "Regione"; +App::$strings["ZIP Code"] = "CAP"; +App::$strings["Country"] = "Nazione"; +App::$strings["Default Calendar"] = "Calendario predefinito"; +App::$strings["Default Addressbook"] = "Rubrica predefinita"; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; +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["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["Welcome to Hubzilla!"] = "Benvenuto su Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "Non hai post non letti..."; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["Search"] = "Cerca"; +App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; +App::$strings["Public Stream"] = "Flusso pubblico"; +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["Change Order of Pinned Navbar Apps"] = "Cambia l'ordine della app bloccate sulla barra di navigazione"; +App::$strings["Change Order of App Tray Apps"] = "Cambia l'ordine delle app elencate nel menu delle app"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Utilizza le frecce per spostare l'app su o giù nel menu delle app"; +App::$strings["Menu not found."] = "Menù non trovato."; +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["Not found."] = "Non trovato."; +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["No"] = "No"; +App::$strings["Yes"] = "Sì"; +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["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["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["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["Edit Location"] = "Modifica il luogo"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; +App::$strings["Timezone:"] = "Fuso orario: "; +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["Export"] = "Esporta"; +App::$strings["Event removed"] = "Evento eliminato"; +App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +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["Please login."] = "Effettua l'accesso."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "messaggio di stato"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s"; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Title (optional)"] = "Titolo (facoltativo)"; +App::$strings["Edit Article"] = "Modifica l'articolo"; +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"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +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["File to Upload"] = "File da caricare"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +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["Validate"] = "Validazione"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; +App::$strings["Remove This Channel"] = "Elimina questo canale"; +App::$strings["WARNING: "] = "ATTENZIONE:"; +App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; +App::$strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; +App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +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["Files: shared with me"] = "File: condivisi con me"; +App::$strings["NEW"] = "NOVITÀ"; App::$strings["Size"] = "Dimensione"; App::$strings["Last Modified"] = "Ultima modifica"; -App::$strings["Edit"] = "Modifica"; -App::$strings["Delete"] = "Elimina"; -App::$strings["Create new folder"] = "Crea una nuova cartella"; -App::$strings["Upload file"] = "Carica un file"; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["Profile Photos"] = "Foto del profilo"; -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["View Profile"] = "Profilo"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Edit Profiles"] = "Modifica i profili"; -App::$strings["Manage/Edit profiles"] = "Gestisci/modifica i profili"; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Edit your profile"] = "Modifica il profilo"; -App::$strings["Photos"] = "Foto"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Chat"] = "Area chat"; -App::$strings["Your chatrooms"] = "Le tue aree chat"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Login"] = "Accedi"; -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"] = "Accedi tramite il tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Register"] = "Iscriviti"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help"] = "Guida"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Apps"] = "Apps"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search site content"] = "Cerca nel sito"; -App::$strings["Directory"] = "Elenco pubblico"; -App::$strings["Channel Directory"] = "Elenco pubblico canali"; -App::$strings["Matrix"] = "RedMatrix"; -App::$strings["Your matrix"] = "La tua rete"; -App::$strings["Mark all matrix notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel Home"] = "Bacheca del canale"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -App::$strings["Mail"] = "Messaggi"; -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["Events"] = "Eventi"; -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["Channel Manager"] = "Gestione canali"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Remove all files"] = "Elimina tutti i file"; +App::$strings["Remove this file"] = "Elimina questo file"; +App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; +App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; +App::$strings["Could not create table."] = "Impossibile creare le tabelle."; +App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; +App::$strings["System check"] = "Verifica del sistema"; +App::$strings["Check again"] = "Verifica di nuovo"; +App::$strings["Database connection"] = "Connessione al database"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; +App::$strings["Database Server Name"] = "Server del database"; +App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1"; +App::$strings["Database Port"] = "Port del database"; +App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; +App::$strings["Database Login Name"] = "Utente database"; +App::$strings["Database Login Password"] = "Password database"; +App::$strings["Database Name"] = "Nome database"; +App::$strings["Database Type"] = "Tipo database"; +App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."; +App::$strings["Website URL"] = "URL completo del sito"; +App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; +App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; +App::$strings["Site settings"] = "Impostazioni del hub"; +App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; +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."; +App::$strings["PHP executable path"] = "Path del comando PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; +App::$strings["Command line PHP"] = "PHP da riga di comando"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Puoi modificare queste impostazione nel file php.ini del server."; +App::$strings["PHP upload limits"] = "Limiti PHP in upload"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura"; +App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; +App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +App::$strings["PDO database PHP module"] = "PDO database PHP module"; +App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; +App::$strings["xml PHP module"] = "modulo xml PHP"; +App::$strings["zip PHP module"] = "modulo zip del 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"; +App::$strings["exec"] = "exec"; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini"; +App::$strings["shell_exec"] = "shell_exec"; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Errore: shell_exec è richiesto ma non è installato o è stato disabilitato in php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; +App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; +App::$strings["Error: PDO database PHP module required but not installed."] = "Errore: PDO database PHP module è 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: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; +App::$strings["Error: zip PHP module required but not installed."] = "Errore: il modulo zip del PHP necessario ma non installato."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +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."; +App::$strings["Please see install/INSTALL.txt for additional information."] = "Leggi il file 'install/INSTALL.txt' per maggiori informazioni."; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione."; +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["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 top level web folder"] = "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web"; +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!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; +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"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; +App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +App::$strings["

What next?

"] = "

E ora?

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; +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["Queue Statistics"] = "Statistiche della coda"; +App::$strings["Total Entries"] = "Totale"; +App::$strings["Priority"] = "Priorità"; +App::$strings["Destination URL"] = "URL di destinazione"; +App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; +App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; +App::$strings["Last known contact"] = "Ultimo scambio dati"; +App::$strings["Off"] = "Off"; +App::$strings["On"] = "On"; +App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; +App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; +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."; +App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; +App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; +App::$strings["Failed Updates"] = "Aggiornamenti falliti."; +App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; +App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; +App::$strings["Item not found."] = "Elemento non trovato."; +App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; +App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; +App::$strings["Disable"] = "Disattiva"; +App::$strings["Enable"] = "Attiva"; +App::$strings["Administration"] = "Amministrazione"; +App::$strings["Plugins"] = "Plugin"; +App::$strings["Toggle"] = "Attiva/disattiva"; App::$strings["Settings"] = "Impostazioni"; -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, content"] = "@nome, #tag, testo"; -App::$strings["Please wait..."] = "Attendere..."; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["\$Projectname Notification"] = "Notifica \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Grazie,"; -App::$strings["%s Administrator"] = "L'amministratore di %s"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["%d Connection"] = array( - 0 => "%d contatto", - 1 => "%d contatti", +App::$strings["Author: "] = "Autore:"; +App::$strings["Maintainer: "] = "Gestore:"; +App::$strings["Minimum project version: "] = "Minima versione hubzilla"; +App::$strings["Maximum project version: "] = "Massima versione hubzilla"; +App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; +App::$strings["Compatible Server Roles: "] = "Ruoli previsti per questo server"; +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["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["Installed Plugin Repositories"] = "Repository per i plugin installati"; +App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; +App::$strings["Switch branch"] = "Cambia branch"; +App::$strings["Remove"] = "Rimuovi"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "Modificato il blocco su %s account", + 1 => "Modificato il blocco verso %s", ); -App::$strings["View Connections"] = "Elenco contatti"; +App::$strings["%s account deleted"] = array( + 0 => "%s account eliminato", + 1 => "%s account eliminati", +); +App::$strings["Account not found"] = "Account non trovato"; +App::$strings["Account '%s' deleted"] = "Account '%s' eliminato"; +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["Request date"] = "Data richiesta"; +App::$strings["No registrations."] = "Nessuna registrazione."; +App::$strings["Approve"] = "Approva"; +App::$strings["Deny"] = "Nega"; +App::$strings["Block"] = "Blocca"; +App::$strings["Unblock"] = "Sblocca"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "Tutti i canali"; +App::$strings["Register date"] = "Data registrazione"; +App::$strings["Last login"] = "Ultimo accesso"; +App::$strings["Expires"] = "Con scadenza"; +App::$strings["Service Class"] = "Classe dell'account"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; +App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; +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["Log level"] = "Livello di log"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "Censura modificata per %s canale", + 1 => "Censura modificata per %s canali", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s canale permette/non permette codice nei contenuti", + 1 => "%s canali permettono/non permettono codice nei contenuti", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canale è stato rimosso", + 1 => "%s canali sono stati rimossi", +); +App::$strings["Channel not found"] = "Canale non trovato"; +App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; +App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; +App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; +App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; +App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; +App::$strings["Channels"] = "Canali"; +App::$strings["Censor"] = "Applica censura"; +App::$strings["Uncensor"] = "Rimuovi censura"; +App::$strings["Allow Code"] = "Permetti codice"; +App::$strings["Disallow Code"] = "Non permettere codice"; +App::$strings["Channel"] = "Canale"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +App::$strings["No themes found."] = "Nessun tema trovato."; +App::$strings["Screenshot"] = "Istantanea dello schermo"; +App::$strings["Themes"] = "Temi"; +App::$strings["[Experimental]"] = "[Sperimentale]"; +App::$strings["[Unsupported]"] = "[Non supportato]"; +App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; +App::$strings["Default"] = "Predefinito"; +App::$strings["%s - (Incompatible)"] = "%s - (Incompatibile)"; +App::$strings["mobile"] = "mobile"; +App::$strings["experimental"] = "sperimentale"; +App::$strings["unsupported"] = "non supportato"; +App::$strings["Yes - with approval"] = "Sì - con approvazione"; +App::$strings["My site is not a public server"] = "Non è un server pubblico"; +App::$strings["My site has paid access only"] = "È un servizio a pagamento"; +App::$strings["My site has free access only"] = "È un servizio gratuito"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; +App::$strings["Beginner/Basic"] = "Principiante"; +App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; +App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; +App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; +App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te!"; +App::$strings["Site"] = "Sito"; +App::$strings["Registration"] = "Registrazione"; +App::$strings["File upload"] = "Caricamento file"; +App::$strings["Policies"] = "Politiche"; +App::$strings["Advanced"] = "Avanzate"; +App::$strings["Site name"] = "Nome del sito"; +App::$strings["Site default technical skill level"] = "Livello tecnico predefinito per gli utenti del sito"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze"; +App::$strings["Lock the technical skill level setting"] = "Il livello tecnico non potrà essere modificato"; +App::$strings["Members can set their own technical comfort level by default"] = "Gli utenti possono scegliere il livello tecnico preferito"; +App::$strings["Banner/Logo"] = "Banner o logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "È permesso un contenuto HTML/CSS/JS non filtrato"; +App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; +App::$strings["Site Information"] = "Informazioni sul sito"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare il BBCode"; +App::$strings["System language"] = "Lingua di sistema"; +App::$strings["System theme"] = "Tema di sistema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; +App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; +App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; +App::$strings["Maximum image size"] = "Dimensione massima immagini"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; +App::$strings["Invitation only"] = "Solo con invito"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."; +App::$strings["Minimum age"] = "Età minima"; +App::$strings["Minimum age (in years) for who may register on this site."] = "L'età minima (in anni) richiesta per registrarsi su questo sito."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; +App::$strings["Register text"] = "Testo di registrazione"; +App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; +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."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; +App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; +App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; +App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; +App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; +App::$strings["Force publish"] = "Forza la publicazione del profilo"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito."; +App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."; +App::$strings["Site only Public Streams"] = "Solo i flussi pubblici su questo sito"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Consenti l'accesso a contenuti pubblici originati solo da questo sito se se è disabilitata l'importazione di flussi pubblici."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Permetti a chiunque su internet di accedere ai flussi pubblici"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Disabilita per richiedere di autenticarsi prima di visualizzare. Attenzione: questo contenuto non è moderato."; +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["Reply-to email address for system generated email."] = "Indirizzo Reply-to per mail generate dal sistema."; +App::$strings["Sender (From) email address for system generated email."] = "Indirzzo email del mittente (From) per mail generate dal sistema."; +App::$strings["Name of email sender for system generated email."] = "Nome del mittente per mail generate dal sistema"; +App::$strings["Directory Server URL"] = "URL del directory server"; +App::$strings["Default directory server"] = "Directory server predefinito"; +App::$strings["Proxy user"] = "Utente proxy"; +App::$strings["Proxy URL"] = "URL proxy"; +App::$strings["Network timeout"] = "Timeout rete"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; +App::$strings["Delivery interval"] = "Recapito ritardato"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; +App::$strings["Deliveries per process"] = "Tentativi di recapito per processo"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; +App::$strings["Queue Threshold"] = "Threshold della coda"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi."; +App::$strings["Poll interval"] = "Intervallo di polling"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; +App::$strings["Path to ImageMagick convert program"] = "Percorso del comando convert di ImageMagic"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Permetti le anteprime SVG nell'elenco dei file"; +App::$strings["WARNING: SVG images may contain malicious code."] = "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo."; +App::$strings["Maximum Load Average"] = "Carico massimo medio"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; +App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Non far scadere nessun post che ha commenti più recenti di questo numero di giorni"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Server pubblici: Landing page (marketing) opzionale per utenti appena registrati"; +App::$strings["Create this page first. Default is %s/register"] = "Crea questa pagina prima. Il default è %s/register"; +App::$strings["Page to display after creating a new channel"] = "Pagina da visualizzare dopo la creazione di un nuovo canale"; +App::$strings["Recommend: profiles, go, or settings"] = ""; +App::$strings["Optional: site location"] = "Opzionale: site location"; +App::$strings["Region or country"] = "Regione o Paese"; +App::$strings["New Profile Field"] = "Nuovo campo del profilo"; +App::$strings["Field nickname"] = "Nome breve del campo"; +App::$strings["System name of field"] = "Nome di sistema del campo"; +App::$strings["Input type"] = "Tipo di dati"; +App::$strings["Field Name"] = "Nome del campo"; +App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; +App::$strings["Help text"] = "Testo di aiuto"; +App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; App::$strings["Save"] = "Salva"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha ricevuto un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupified"] = "stordito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; -App::$strings["Sunday"] = "domenica"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; -App::$strings["May"] = "maggio"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; -App::$strings["unknown.???"] = "sconosciuto???"; -App::$strings["bytes"] = "byte"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["Link to Source"] = "Link al sito d'origine"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Con la configurazione del layout puoi crearne uno tuo"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["photo"] = "la foto"; -App::$strings["event"] = "l'evento"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["comment"] = "il commento"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Blocks"] = "Riquadri"; -App::$strings["Menus"] = "Menù"; -App::$strings["Layouts"] = "Layout"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Categories"] = "Categorie"; -App::$strings["System"] = "Sistema"; -App::$strings["Personal"] = "Personali"; -App::$strings["Create Personal App"] = "Crea una app personale"; -App::$strings["Edit Personal App"] = "Modifica una app personale"; -App::$strings["Connect"] = "Aggiungi"; -App::$strings["Ignore/Hide"] = "Ignora/nascondi"; -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 the channel address"] = "Scrivi l'indirizzo del canale"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.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["Me"] = "Io"; -App::$strings["Family"] = "Famiglia"; +App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; +App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; +App::$strings["Profile Fields"] = "Campi del profilo"; +App::$strings["Basic Profile Fields"] = "Campi base del profilo"; +App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo"; +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["Password changed for account %d."] = "La password per l'utente %d è cambiata."; +App::$strings["Account settings updated."] = "L'impostazioni sono state aggiornate."; +App::$strings["Account not found."] = "Account non trovato."; +App::$strings["Account Edit"] = "Modifica le impostazioni"; +App::$strings["New Password"] = "Nuova password"; +App::$strings["New Password again"] = "Ripeti la nuova password"; +App::$strings["Technical skill level"] = "Livello tecnico"; +App::$strings["Account language (for emails)"] = "Lingua (per le email di sistema)"; +App::$strings["Service class"] = "Classe dell'account"; +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["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["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["Allowed email domains"] = "Domini email consentiti"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; +App::$strings["Not allowed email domains"] = "Domini email non consentiti"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +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["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; +App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +App::$strings["Visible to:"] = "Visibile a:"; +App::$strings["__ctx:acl__ Profile"] = "Profilo"; +App::$strings["Comment approved"] = "Commento approvato"; +App::$strings["Comment deleted"] = "Commento eliminato"; +App::$strings["Permission Name is required."] = ""; +App::$strings["Permission category saved."] = "Categoria di permessi salvata"; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Usa questo modulo per definire i permessi specifici per classi di persone o connessioni."; +App::$strings["Permission Categories"] = "Categorie di permessi"; +App::$strings["Permission Name"] = "Nome del permesso"; +App::$strings["My Settings"] = "Permessi che concedo"; +App::$strings["inherited"] = "derivato"; +App::$strings["Individual Permissions"] = "Permessi individuali"; +App::$strings["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."] = "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."; App::$strings["Friends"] = "Amici"; -App::$strings["Acquaintances"] = "Conoscenti"; +App::$strings["Settings updated."] = "Impostazioni aggiornate."; +App::$strings["Nobody except yourself"] = "Nessuno tranne te"; +App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Approved connections"] = "Contatti approvati"; +App::$strings["Any connections"] = "Tutti i contatti"; +App::$strings["Anybody on this website"] = "Chiunque su questo hub"; +App::$strings["Anybody in this network"] = "Chiunque su questa rete"; +App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; +App::$strings["Anybody on the internet"] = "Chiunque su internet"; +App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; +App::$strings["or"] = "o"; +App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "I tuoi file/foto sono accessibili via WebDAV all'indirizzo"; +App::$strings["Channel Settings"] = "Impostazioni del canale"; +App::$strings["Basic Settings"] = "Impostazioni di base"; +App::$strings["Full Name:"] = "Nome completo:"; +App::$strings["Email Address:"] = "Indirizzo email:"; +App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; +App::$strings["Default Post Location:"] = "Località predefinita:"; +App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; +App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +App::$strings["Adult Content"] = "Contenuto per adulti"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; +App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; +App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; +App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; +App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; +App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; +App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; +App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; +App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; +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 server ha la precedenza, se minore di quello impostato da te."; +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 Privacy Group"] = "Privacy Group predefinito"; +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["Profile to assign new connections"] = "Profilo da associare ai nuovi contatti"; +App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; +App::$strings["Default Permissions Group"] = "Permission Group predefinito"; +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"; +App::$strings["Notification Settings"] = "Impostazioni di notifica"; +App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; +App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; +App::$strings["joining a forum/community"] = "entro a far parte di un forum"; +App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; +App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; +App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; +App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; +App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; +App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; +App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; +App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; +App::$strings["You are tagged in a post"] = "Sei taggato in un post"; +App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; +App::$strings["Someone likes your post/comment"] = "Qualcuno mette mi piace al tuo post/commento"; +App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; +App::$strings["Unseen grid activity"] = "Nuove attività nella rete"; +App::$strings["Unseen channel activity"] = "Novità nei canali"; +App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; +App::$strings["Recommended"] = "Consigliato"; +App::$strings["Upcoming events"] = "Prossimi eventi"; +App::$strings["Events today"] = "Eventi di oggi"; +App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; +App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; +App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; +App::$strings["System info messages"] = "Notifiche di sistema"; +App::$strings["System critical alerts"] = "Avvisi critici di sistema"; +App::$strings["New connections"] = "Nuovi contatti"; +App::$strings["System Registrations"] = "Registrazioni"; +App::$strings["Unseen shared files"] = "File condivisi non ancora visitati"; +App::$strings["Unseen public activity"] = "Attività pubblica non letta"; +App::$strings["Unseen likes and dislikes"] = "Mi piace e non mi piace da leggere"; +App::$strings["Email notification hub (hostname)"] = "Hub di notifica (hostname)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Se il tuo canale è replicato su molti hub, scegli qui da dove saranno inviati i messaggi. Serve ad evitare di ricevere notifiche duplicate. Esempio: %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Mostra i nuovi post in bacheca, i messaggi privati e le connessioni come Notifiche"; +App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; +App::$strings["Must be greater than 0"] = "Maggiore di 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; +App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; +App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; +App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; +App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; +App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; +App::$strings["Remove this channel."] = "Elimina questo canale."; +App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Start calendar week on Monday"] = "Inizia la settimana nel calendario da lunedì"; +App::$strings["Additional Features"] = "Funzionalità opzionali"; +App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Serve ad adeguare l'interfaccia e le funzionalità mostrate alla tua dimestichezza"; +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["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 private content."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a 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["Their Settings"] = "Permessi concessi a te"; +App::$strings["Name and Secret are required"] = "Nome e Password sono obbligatori"; +App::$strings["Add OAuth2 application"] = "Aggiungi applicazione OAuth2"; +App::$strings["Name of application"] = "Nome dell'applicazione"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; +App::$strings["Redirect"] = "Redirect"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; +App::$strings["Grant Types"] = ""; +App::$strings["leave blank unless your application sepcifically requires this"] = "lascia bianco a meno che la applicazione non lo richieda esplicitamente"; +App::$strings["Authorization scope"] = "Ambito dell'autorizzazione"; +App::$strings["OAuth2 Application not found."] = "Applicazione OAuth2 non trovata."; +App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Connected OAuth2 Apps"] = "Applicazioni OAuth2 connesse"; +App::$strings["Client key starts with"] = "La client key inizia con"; +App::$strings["No name"] = "Nessun nome"; +App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; +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."; +App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; +App::$strings["Password verification failed."] = "Verifica della password fallita."; +App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +App::$strings["Password changed."] = "Password cambiata."; +App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; +App::$strings["Account Settings"] = "Il tuo account"; +App::$strings["Current Password"] = "Password attuale"; +App::$strings["Enter New Password"] = "Nuova password"; +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["Remove Account"] = "Elimina l'account"; +App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; +App::$strings["Affinity Slider settings updated."] = "Impostazioni dell'Affinity Slider salvate."; +App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +App::$strings["Default maximum affinity level"] = "Livello di affinità predefinito massimo "; +App::$strings["0-99 default 99"] = "0-99 predefinito 99"; +App::$strings["Default minimum affinity level"] = "Livello di affinità predefinito minimo"; +App::$strings["0-99 - default 0"] = "0-99 - predefinito 0"; +App::$strings["Affinity Slider Settings"] = "Impostazioni dell'Affinity Slider"; +App::$strings["Addon Settings"] = "Impostazioni del componente aggiuntivo"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Salva/invia i cambiamenti prima di cambiare pannello."; +App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; +App::$strings["Display Settings"] = "Aspetto"; +App::$strings["Theme Settings"] = "Impostazioni del tema"; +App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; +App::$strings["Content Settings"] = "Impostazioni dei contenuti"; +App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; +App::$strings["Select scheme"] = "Scegli uno schema"; +App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; +App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; +App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; +App::$strings["Maximum of 100 items"] = "Massimo 100"; +App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; +App::$strings["Provide channel menu in navigation bar"] = "Visualizza il menu del canale nella barra di navigazione"; +App::$strings["Default: channel menu located in app menu"] = "Predefinito: menu del canale nel menu delle app"; +App::$strings["Manual conversation updates"] = "Aggiornamenti manuali alla conversazione"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "Se non è attiva può causare scorrimenti imprevisti della pagina"; +App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; +App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; +App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; +App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; +App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; +App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; +App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; +App::$strings["Name is required"] = "Il nome è obbligatorio"; +App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Icon url"] = "Url icona"; +App::$strings["Optional"] = "Facoltativo"; +App::$strings["Application not found."] = "Applicazione non trovata."; +App::$strings["Connected Apps"] = "App connesse"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Upload"] = "Carica"; +App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; +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["Permissions"] = "Permessi"; +App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +App::$strings["System Notifications"] = "Notifiche di sistema"; +App::$strings["Connection added."] = "Contatto aggiunto."; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +App::$strings["Import completed."] = "L'importazione è terminata con successo."; +App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +App::$strings["Import Channel"] = "Importa un canale"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "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."; +App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +App::$strings["Your old login password"] = "La password per il vecchio hub"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "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."; +App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +App::$strings["Move this channel (disable all previous locations)"] = "Sposta questo canale (disabilita le posizioni precedenti)"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Importa alcune mesi di post se possibile (dipende dalla memoria disponibile"; +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["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["Permissions denied."] = "Permesso negato."; +App::$strings["Import"] = "Importa"; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +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["Item not available."] = "Elemento non disponibile."; +App::$strings["Edit Block"] = "Modifica il block"; +App::$strings["vcard"] = "vcard"; +App::$strings["Apps"] = "App"; +App::$strings["Manage apps"] = "Gestisci le app"; +App::$strings["Create new app"] = "Crea nuova app"; +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["Active"] = "Attivo"; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived/Unreachable"] = "Archiviato/Irraggiungibile"; +App::$strings["New"] = "Novità"; App::$strings["All"] = "Tutti"; -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"] = "Impostazioni dei componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Active Connections"] = "Contatto Attivo"; +App::$strings["Show active connections"] = "Mostra i contatti atttivi"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived/unreachable connections"] = "Mostra solo i contatti archiviati/irraggiungibili"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["Not connected at this location"] = "Non connesso a questa location"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Call"] = "Chiama"; +App::$strings["Status"] = "Stato"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; +App::$strings["item"] = "elemento"; +App::$strings["Source of Item"] = "Sorgente"; +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["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"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina album"; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Description (optional)"] = "Descrizione (opzionale)"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["Add Photos"] = "Aggiungi foto"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Move photo to album"] = "Sposta la foto in un album"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["__ctx:title__ Likes"] = "\"Mi piace\""; +App::$strings["__ctx:title__ Dislikes"] = "\"Non mi piace\""; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "\"Mi piace\"", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "\"Non mi piace\"", +); +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "\"Mi piace\""; +App::$strings["__ctx:noun__ Dislikes"] = "\"Non mi piace\""; +App::$strings["Close"] = "Chiudi"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["Profile Unavailable."] = "Profilo non dispobibile"; +App::$strings["Not found"] = "Non trovato"; +App::$strings["Invalid channel"] = "Canale non valido"; +App::$strings["Error retrieving wiki"] = "Errore caricamento wiki"; +App::$strings["Error creating zip file export folder"] = "Errore nella creazione della cartella per l'esportazione in zip"; +App::$strings["Error downloading wiki: "] = "Errore scaricamento wiki:"; +App::$strings["Wikis"] = "Pagine wiki"; +App::$strings["Download"] = "Scarica"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Wiki name"] = "Nome wiki"; +App::$strings["Content type"] = "Tipo di contenuto"; +App::$strings["Markdown"] = "Markdown"; +App::$strings["BBcode"] = "BBCode"; +App::$strings["Text"] = "Testo"; +App::$strings["Type"] = "Tipo"; +App::$strings["Any type"] = "Qualsiasi tipo"; +App::$strings["Lock content type"] = "Blocca il tipo di contenuto"; +App::$strings["Create a status post for this wiki"] = "Crea un messaggio di stato per questo wiki"; +App::$strings["Edit Wiki Name"] = "Modifica il nome del Wiki"; +App::$strings["Wiki not found"] = "Wiki non trovato"; +App::$strings["Rename page"] = "Rinomina la pagina"; +App::$strings["Error retrieving page content"] = "Errore nel caricamento del contenuto della pagina"; +App::$strings["New page"] = "Nuova pagina"; +App::$strings["Revision Comparison"] = "Confronto tra revisioni"; +App::$strings["Revert"] = "Ripristina"; +App::$strings["Short description of your changes (optional)"] = "Breve descrizione delle tue modifiche (opzionale)"; +App::$strings["Source"] = "Sorgente"; +App::$strings["New page name"] = "Nome della nuova pagina"; +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 album diverso"; +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["Error creating wiki. Invalid name."] = "Errore nella creazione. Nome non valido."; +App::$strings["A wiki with this name already exists."] = "Un Wiki con questo nome esiste già"; +App::$strings["Wiki created, but error creating Home page."] = "Wiki creato, ma c'è stato un errore nella creazione della Home page."; +App::$strings["Error creating wiki"] = "Errore nella creazione del Wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Errore nell'aggiornamento del Wiki. Nome non valido."; +App::$strings["Error updating wiki"] = "Errore nell'aggiornamento del Wiki"; +App::$strings["Wiki delete permission denied."] = "Permesso negato nell'eliminare del Wiki"; +App::$strings["Error deleting wiki"] = "Errore nell'eliminare il Wiki"; +App::$strings["New page created"] = "Nuova pagina creata"; +App::$strings["Cannot delete Home"] = "Non è possibile eliminare la Home"; +App::$strings["Current Revision"] = "Revisione corrente"; +App::$strings["Selected Revision"] = "Revisione selezionata"; +App::$strings["You must be authenticated."] = "Devi autenticarti."; +App::$strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["(modified)"] = "(modificato)"; +App::$strings["Reset"] = "Reimposta"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; +App::$strings["Edit another layout"] = "Modifica un altro layout"; +App::$strings["System layout"] = "Layout 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["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +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["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Use Photo for Profile"] = "Usa la foto per il profilo"; +App::$strings["Change Profile Photo"] = "Cambia la foto del profilo"; +App::$strings["Use"] = "Usa"; +App::$strings["Use a photo from your albums"] = "Usa una foto presa dai tuoi album"; +App::$strings["Select existing photo"] = "Seleziona una foto esistente"; +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["Away"] = "Assente"; +App::$strings["Online"] = "Online"; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Your comment is awaiting approval."] = "Il tuo contenuto è in attesa di approvazione."; +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["sent you a private message"] = "ti ha inviato un messaggio privato"; +App::$strings["added your channel"] = "ha aggiunto il tuo canale"; +App::$strings["requires approval"] = "richiede approvazione"; +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["shared a file with you"] = "ha condiviso un file con te"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Page not found."] = "Pagina non trovata."; +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["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."; +App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; +App::$strings["is now connected to"] = "ha come nuovo contatto"; +App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; +App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; +App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; +App::$strings["View Profile"] = "Profilo"; +App::$strings["View %s's profile"] = "Guarda il profilo di %s"; +App::$strings["Refresh Permissions"] = "Modifica i permessi"; +App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; +App::$strings["Refresh Photo"] = "Ricarica la foto"; +App::$strings["Fetch updated photo"] = "Aggiorna la foto"; +App::$strings["Recent Activity"] = "Attività recenti"; +App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; +App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; +App::$strings["Unignore"] = "Non ignorare"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; +App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; +App::$strings["Unarchive"] = "Non archiviare"; +App::$strings["Archive"] = "Archivia"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; +App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; +App::$strings["Unhide"] = "Non nascondere"; +App::$strings["Hide"] = "Nascondi"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; +App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; +App::$strings["Delete this connection"] = "Elimina questo contatto"; +App::$strings["Fetch Vcard"] = "Aggiorna la Vcard"; +App::$strings["Fetch electronic calling card for this connection"] = "Scarica la scheda con le informazioni di questo contatto"; +App::$strings["Open Individual Permissions section by default"] = "Apri automaticamente la sezione Permessi individuali"; +App::$strings["Affinity"] = "Affinità"; +App::$strings["Open Set Affinity section by default"] = "Apri la sezione Imposta affinità per default"; +App::$strings["Me"] = "Me"; +App::$strings["Family"] = "Famiglia"; +App::$strings["Acquaintances"] = "Conoscenti"; +App::$strings["Filter"] = "Filtra"; +App::$strings["Open Custom Filter section by default"] = "Apri automaticamente la sezione con i Filtri personalizzati"; +App::$strings["Approve this connection"] = "Approva questo contatto"; +App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; +App::$strings["Set Affinity"] = "Scegli l'affinità"; +App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; +App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; +App::$strings["This connection is unreachable from this location."] = "Questo contatto non è raggiungibile dal server in uso"; +App::$strings["This connection may be unreachable from other channel locations."] = "Questo contatto potrebbe non essere raggiungibile da altri canali"; +App::$strings["Location independence is not supported by their network."] = "Nella loro rete la location independence non è supportata."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Il contatto indicato non è raggiungibile. Nella loro rete la location independence non è supportata."; App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Connection: %s"] = "Contatto: %s"; +App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; +App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; +App::$strings["Permission role"] = "Ruolo"; +App::$strings["Loading"] = "Sto caricando"; +App::$strings["Add permission role"] = "Aggiungi un ruolo"; +App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; +App::$strings["Available locations:"] = "Indirizzi disponibili"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; +App::$strings["Connection Tools"] = "Gestione del contatto"; +App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; +App::$strings["Optionally explain your rating"] = "Commento facoltativo"; +App::$strings["Custom Filter"] = "Filtro personalizzato"; +App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; +App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; +App::$strings["This information is public!"] = "Questa informazione è pubblica!"; +App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +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["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["Details"] = "Dettagli"; +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["New Chatroom"] = "Nuova chat"; +App::$strings["Chatroom name"] = "Nome chat"; +App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; +App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; +App::$strings["Expiration"] = "Scadenza"; +App::$strings["min"] = "min"; +App::$strings["Photos"] = "Foto"; +App::$strings["Files"] = "Archivio file"; +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["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["Layouts"] = "Layout"; +App::$strings["Help"] = "Guida"; +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["Please refresh page"] = "Per favore ricarica la pagina"; +App::$strings["Unknown error"] = "Errore sconosciuto"; +App::$strings["Token verification failed."] = "Verifica del token fallita"; +App::$strings["Email Verification Required"] = "È richiesta una verifica della mail"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Un token di verifica è stato spedito al tuo indirizzo email [%s]. Inserisci il token qui per completare la verifica dell'account. Per favore attendi qualche minuti e controlla lo spam se non vedi il messaggio."; +App::$strings["Resend Email"] = "Reinvia la mail"; +App::$strings["Validation token"] = "Token di validazione"; +App::$strings["Post not found."] = "Post non trovato."; +App::$strings["post"] = "il post"; +App::$strings["comment"] = "il commento"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +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["If enabled, connection requests will be approved without your interaction"] = "Se abilitato, le richieste di contatto saranno approvate automaticamente"; +App::$strings["Automatic approval settings"] = "Impostazioni di approvazione automatica"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; +App::$strings["Unknown App"] = "Applicazione sconosciuta"; +App::$strings["Authorize"] = "Autorizza"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "Autorizzi la app %s ad accedere ai dati del tuo canale?"; +App::$strings["Allow"] = "Autorizza"; +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."; +App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; +App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; +App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; +App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; +App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; +App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; +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["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["Gender"] = "Sesso"; +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["Relationship"] = "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["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["Homepage URL"] = "Indirizzo home page"; +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["Communications"] = "Comunicazioni"; +App::$strings["Profile Image"] = "Immagine del profilo"; +App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["This page is available only to site members"] = "Questa pagina è accessibile solo agli utenti registrati"; +App::$strings["Welcome"] = "Benvenuto"; +App::$strings["What would you like to do?"] = "Vorresti farlo?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Per favore metti questa pagina nei preferiti se vuoi ritornarci in futuro"; +App::$strings["Upload a profile photo"] = "Carica una foto per il profilo"; +App::$strings["Upload a cover photo"] = "Carica una foto di copertina"; +App::$strings["Edit your default profile"] = "Modifica il tuo profilo predefinito"; +App::$strings["View friend suggestions"] = "Guarda i suggerimenti di amicizia"; +App::$strings["View the channel directory"] = "Guarda l'elenco dei canali"; +App::$strings["View/edit your channel settings"] = "Guarda/modifica le impostazioni del tuo canale"; +App::$strings["View the site or project documentation"] = "Guarda la documentazione del sito o del progetto"; +App::$strings["Visit your channel homepage"] = "Visita la pagina iniziale del tuo canale"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Guarda i tuoi contatti e/o aggiungine qualcuno di cui hai l'indirizzo"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Guarda il tuo flusso personale (potrebbe essere vuoto finché non aggiungi connessioni)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Vedi il flusso pubblico. Attenzione: contenuti non moderati"; +App::$strings["Page link"] = "Link alla pagina"; +App::$strings["Edit Webpage"] = "Modifica la pagina web"; +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["Cards"] = "Card"; +App::$strings["Add Card"] = "Aggiungi card"; +App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["About this site"] = "Informazioni su questo sito"; +App::$strings["Site Name"] = "Nome del sito"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["Software and Project information"] = "Informazioni sul software e sul progetto"; +App::$strings["This site is powered by \$Projectname"] = "Questo sito è costruito con \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; +App::$strings["Version %s"] = "Versione %s"; +App::$strings["Project homepage"] = "Homepage del progetto"; +App::$strings["Developer homepage"] = "Homepege dello sviluppatore"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; +App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; +App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; +App::$strings["Export selected"] = "Esporta i selezionati"; +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["Invalid file type."] = "Tipo di file non valido."; +App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; +App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; +App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; +App::$strings["Import complete."] = "Importazione completata."; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Non è possibile cambiare il nome del canale entro le 48 dal cambio della password dell'account."; +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["Change channel nickname/address"] = "Cambia il nome/indirizzo del canale"; +App::$strings["Any/all connections on other networks will be lost!"] = "Tutti i contatti su altre reti saranno persi!"; +App::$strings["New channel address"] = ""; +App::$strings["Rename Channel"] = ""; +App::$strings["Item is not editable"] = "L'elemento non è modificabile"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +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["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."; +App::$strings["*"] = "*"; App::$strings["Channel Sources"] = "Sorgenti del canale"; +App::$strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; +App::$strings["New Source"] = "Nuova sorgente"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; +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["Source not found."] = "Sorgente non trovata."; +App::$strings["Edit Source"] = "Modifica la sorgente"; +App::$strings["Delete Source"] = "Elimina la sorgente"; +App::$strings["Source removed"] = "Sorgente eliminata"; +App::$strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; +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["%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["No default suggestions were found."] = ""; +App::$strings["%d rating"] = array( + 0 => "%d valutazione", + 1 => "%d valutazioni", +); +App::$strings["Gender: "] = "Sesso:"; +App::$strings["Status: "] = "Stato:"; +App::$strings["Homepage: "] = "Homepage:"; +App::$strings["Age:"] = "Età:"; +App::$strings["Location:"] = "Luogo:"; +App::$strings["Description:"] = "Descrizione:"; +App::$strings["Hometown:"] = "Città dove vivo:"; +App::$strings["About:"] = "Informazioni:"; +App::$strings["Connect"] = "Aggiungi"; +App::$strings["Public Forum:"] = "Forum pubblico:"; +App::$strings["Keywords: "] = "Parole chiave:"; +App::$strings["Don't suggest"] = "Non fornire suggerimenti"; +App::$strings["Common connections (estimated):"] = ""; +App::$strings["Global Directory"] = "Elenchi pubblici globali"; +App::$strings["Local Directory"] = "Elenco canali su questo hub"; +App::$strings["Finding:"] = "Ricerca:"; +App::$strings["Channel Suggestions"] = "Canali suggeriti"; +App::$strings["next page"] = "pagina successiva"; +App::$strings["previous page"] = "pagina precedente"; +App::$strings["Sort options"] = "Opzioni di ordinamento"; +App::$strings["Alphabetic"] = "Alfabetico"; +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["Xchan Lookup"] = "Ricerca canale"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; +App::$strings["Ignore/Hide"] = "Ignora/nascondi"; +App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +App::$strings["Post successful."] = "Inviato!"; +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["Check Mail"] = "Controlla i messaggi"; -App::$strings["Chat Rooms"] = "Aree chat attive"; -App::$strings["Bookmarked Chatrooms"] = "Aree chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Aree chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["message"] = ""; +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["Public Hubs"] = "Hub pubblici"; -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["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["Invalid data packet"] = "Dati 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["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 fornire alcune funzionalità o l'intero servizio 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["Rate"] = "Valuta"; +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["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; +App::$strings["Save Bookmark"] = "Salva segnalibro"; +App::$strings["URL of bookmark"] = "URL del segnalibro"; +App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; +App::$strings["Enter a folder name"] = ""; +App::$strings["or select an existing folder (doubleclick)"] = ""; +App::$strings["Save to Folder"] = "Salva nella cartella"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +App::$strings["Passwords do not match."] = "Le password non corrispondono."; +App::$strings["Registration successful. Continue to create your first channel..."] = ""; +App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; +App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over %s years of age and accept the %s for this website"] = ""; +App::$strings["Your email address"] = "Il tuo indirizzo email"; +App::$strings["Choose a password"] = "Scegli una password"; +App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; +App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +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 requires email verification. After completing this form, please check your email for further instructions."] = ""; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Change Cover Photo"] = ""; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["About"] = "Informazioni"; +App::$strings["Administrators"] = ""; +App::$strings["Developers"] = ""; +App::$strings["Tutorials"] = ""; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; +App::$strings["Contents"] = ""; +App::$strings["Article"] = ""; +App::$strings["Item has been removed."] = ""; +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["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["Invalid channel."] = ""; +App::$strings["network"] = "rete"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; +App::$strings["Permission Denied."] = "Permesso negato."; +App::$strings["File not found."] = "File non trovato."; +App::$strings["Edit file permissions"] = "Modifica i permessi del file"; +App::$strings["Set/edit permissions"] = "Modifica i permessi"; +App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; +App::$strings["Return to file list"] = "Torna all'elenco dei file"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; +App::$strings["Share this file"] = "Condividi questo file"; +App::$strings["Show URL to this file"] = "Mostra l'URL del file"; +App::$strings["Show in your contacts shared folder"] = ""; +App::$strings["No channel."] = "Nessun canale."; +App::$strings["No connections in common."] = "Nessun contatto in comune."; +App::$strings["View Common Connections"] = ""; +App::$strings["Email verification resent"] = ""; +App::$strings["Unable to resend email verification message."] = ""; +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["Blocked accounts"] = "Account bloccati"; +App::$strings["Expired accounts"] = ""; +App::$strings["Expiring accounts"] = ""; +App::$strings["Clones"] = ""; +App::$strings["Message queues"] = "Coda messaggi in uscita"; +App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; +App::$strings["Summary"] = "Riepilogo"; +App::$strings["Registered accounts"] = "Account creati"; +App::$strings["Pending registrations"] = "Registrazioni da approvare"; +App::$strings["Registered channels"] = "Canali creati"; +App::$strings["Active plugins"] = "Plugin attivi"; +App::$strings["Version"] = "Versione"; +App::$strings["Repository version (master)"] = "Versione del repository (master)"; +App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; +App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; +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["Edit Card"] = ""; +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["Mark all seen"] = "Marca tutto come letto"; +App::$strings["0. Beginner/Basic"] = ""; +App::$strings["1. Novice - not skilled but willing to learn"] = ""; +App::$strings["2. Intermediate - somewhat comfortable"] = ""; +App::$strings["3. Advanced - very comfortable"] = ""; +App::$strings["4. Expert - I can write computer code"] = ""; +App::$strings["5. Wizard - I probably know more than you do"] = ""; +App::$strings["Site Admin"] = "Amministrazione sito"; +App::$strings["Report Bug"] = "Segnala il bug"; +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["Activity"] = "Attività"; +App::$strings["Wiki"] = "Wiki"; +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["This email was sent by %1\$s at %2\$s."] = ""; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; +App::$strings["To stop receiving these messages, please adjust your %s."] = ""; +App::$strings["%s "] = "%s "; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notifica] Nuovo messaggio su %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; +App::$strings["a private message"] = "un messaggio privato"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; +App::$strings["commented on"] = "ha commentato"; +App::$strings["liked"] = ""; +App::$strings["disliked"] = ""; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; +App::$strings["Please visit %s to approve or reject this comment."] = ""; +App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, a %2\$s [zrl=%3\$s]tuo %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1\$d di %2\$s"; +App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, a %2\$s piace l'elemento/conversazione che hai creato"; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notifica] %s ha scritto sulla tua bacheca"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notifica] %s ti ha taggato"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notifica] %1\$s ti ha mandato un poke"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notifica] %s ha taggato il tuo post"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notifica] Hai una richiesta di amicizia"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; +App::$strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notifica] Ti è stato suggerito un amico"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; +App::$strings["Name:"] = "Nome:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notifica]"; 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["edited a post dated %s"] = ""; +App::$strings["edited a comment dated %s"] = ""; +App::$strings["Wiki updated successfully"] = ""; +App::$strings["Wiki files deleted successfully"] = ""; +App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s"; +App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; App::$strings["Private Message"] = "Messaggio privato"; -App::$strings["Select"] = "Seleziona"; -App::$strings["Save to Folder"] = "Salva nella cartella"; +App::$strings["Select"] = "Scegli"; App::$strings["I will attend"] = "Parteciperò"; App::$strings["I will not attend"] = "Non parteciperò"; App::$strings["I might attend"] = "Forse parteciperò"; App::$strings["I agree"] = "Sono d'accordo"; App::$strings["I disagree"] = "Non sono d'accordo"; App::$strings["I abstain"] = "Mi astengo"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); App::$strings["Add Star"] = "Aggiungi ai preferiti"; App::$strings["Remove Star"] = "Rimuovi dai preferiti"; App::$strings["Toggle Star Status"] = "Attiva/disattiva preferito"; @@ -274,12 +1755,11 @@ App::$strings["starred"] = "preferito"; App::$strings["Message signature validated"] = "Messaggio con firma verificata"; App::$strings["Message signature incorrect"] = "Massaggio con firma non corretta"; App::$strings["Add Tag"] = "Aggiungi un tag"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; App::$strings["like"] = "mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; App::$strings["dislike"] = "non mi piace"; App::$strings["Share This"] = "Condividi"; App::$strings["share"] = "condividi"; +App::$strings["Delivery Report"] = "Rapporto di trasmissione"; App::$strings["%d comment"] = array( 0 => "%d commento", 1 => "%d commenti", @@ -292,584 +1772,767 @@ App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; App::$strings["from %s"] = "da %s"; App::$strings["last edited: %s"] = "ultima modifica: %s"; App::$strings["Expires: %s"] = "Scadenza: %s"; +App::$strings["Attend"] = ""; +App::$strings["Attendance Options"] = ""; +App::$strings["Vote"] = ""; +App::$strings["Voting Options"] = ""; 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["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["[+] show all"] = "[+] mostra tutto"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["Submit"] = "Salva"; +App::$strings["This is an unsaved preview"] = ""; +App::$strings["%s show all"] = "%s mostra tutto"; App::$strings["Bold"] = "Grassetto"; App::$strings["Italic"] = "Corsivo"; App::$strings["Underline"] = "Sottolineato"; App::$strings["Quote"] = "Citazione"; App::$strings["Code"] = "Codice"; App::$strings["Image"] = "Immagine"; +App::$strings["Attach File"] = ""; App::$strings["Insert Link"] = "Collegamento"; App::$strings["Video"] = "Video"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Encrypt text"] = "Crittografia del testo"; -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["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["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Permissions"] = "Permessi"; -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["Public Timeline"] = "Diario pubblico"; -App::$strings["Site Admin"] = "Amministrazione sito"; -App::$strings["Address Book"] = "Rubrica"; -App::$strings["Profile"] = "Profilo"; -App::$strings["Mood"] = "Umore"; -App::$strings["Poke"] = "Poke"; -App::$strings["Probe"] = "Diagnostica"; -App::$strings["Suggest"] = "Suggerisci"; -App::$strings["Random Channel"] = "Canale casuale"; -App::$strings["Invite"] = "Invita"; -App::$strings["Features"] = "Funzionalità"; -App::$strings["Language"] = "Lingua"; -App::$strings["Post"] = "Post"; -App::$strings["Profile Photo"] = "Foto del profilo"; -App::$strings["Update"] = "Aggiorna"; -App::$strings["Install"] = "Installa"; -App::$strings["Purchase"] = "Acquista"; -App::$strings["Permission denied."] = "Permesso negato."; -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["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Your full name (required)"] = ""; +App::$strings["Your email address (required)"] = ""; +App::$strings["Your website URL (optional)"] = ""; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo."; +App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; +App::$strings["parent"] = "cartella superiore"; +App::$strings["Collection"] = "Cartella"; +App::$strings["Principal"] = "Principale"; +App::$strings["Addressbook"] = "Rubrica"; +App::$strings["Calendar"] = "Calendario"; +App::$strings["Schedule Inbox"] = "Appuntamenti ricevuti"; +App::$strings["Schedule Outbox"] = "Appuntamenti inviati"; +App::$strings["Total"] = "Totale"; +App::$strings["Shared"] = "Condiviso"; +App::$strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s%)"; +App::$strings["WARNING:"] = "ATTENZIONE:"; +App::$strings["Create new folder"] = "Nuova cartella"; +App::$strings["Upload file"] = "Carica un file"; +App::$strings["Drop files here to immediately upload"] = "Trascina i file qui per caricarli al volo"; +App::$strings["Forums"] = "Forum"; +App::$strings["Select Channel"] = ""; +App::$strings["Read-write"] = ""; +App::$strings["Read-only"] = ""; +App::$strings["My Calendars"] = ""; +App::$strings["Shared Calendars"] = ""; +App::$strings["Share this calendar"] = ""; +App::$strings["Calendar name and color"] = ""; +App::$strings["Create new calendar"] = ""; +App::$strings["Calendar Name"] = ""; +App::$strings["Calendar Tools"] = ""; +App::$strings["Import calendar"] = ""; +App::$strings["Select a calendar to import to"] = ""; +App::$strings["Addressbooks"] = ""; +App::$strings["Addressbook name"] = ""; +App::$strings["Create new addressbook"] = ""; +App::$strings["Addressbook Name"] = ""; +App::$strings["Addressbook Tools"] = ""; +App::$strings["Import addressbook"] = ""; +App::$strings["Select an addressbook to import to"] = ""; +App::$strings["Categories"] = "Categorie"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["HQ Control Panel"] = ""; +App::$strings["Create a new post"] = ""; +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["Chatrooms"] = "Chat"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["__ctx:widget__ Activity"] = "Attività"; +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["Wiki List"] = "Elenco wiki"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Saved Searches"] = "Ricerche salvate"; +App::$strings["add"] = "aggiungi"; +App::$strings["Notes"] = "Note"; +App::$strings["Add new page"] = ""; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Page name"] = ""; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Profile Creation"] = ""; +App::$strings["Upload profile photo"] = ""; +App::$strings["Upload cover photo"] = ""; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Find and Connect with others"] = ""; +App::$strings["Manage your connections"] = ""; +App::$strings["Communicate"] = ""; +App::$strings["View your channel homepage"] = ""; +App::$strings["View your network stream"] = ""; +App::$strings["Documentation"] = ""; +App::$strings["View public stream. Warning: not moderated"] = ""; +App::$strings["New Member Links"] = ""; +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["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Addon settings"] = ""; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione cloni del tuo canale"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Permission Groups"] = ""; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["New Network Activity"] = "Nuova attività nella tua rete"; +App::$strings["New Network Activity Notifications"] = ""; +App::$strings["View your network activity"] = ""; +App::$strings["Mark all notifications read"] = ""; +App::$strings["Show new posts only"] = ""; +App::$strings["Filter by name"] = ""; +App::$strings["New Home Activity"] = ""; +App::$strings["New Home Activity Notifications"] = ""; +App::$strings["View your home activity"] = ""; +App::$strings["Mark all notifications seen"] = ""; +App::$strings["New Mails"] = ""; +App::$strings["New Mails Notifications"] = ""; +App::$strings["View your private mails"] = ""; +App::$strings["Mark all messages seen"] = ""; +App::$strings["New Events"] = ""; +App::$strings["New Events Notifications"] = ""; +App::$strings["View events"] = ""; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["New Connections Notifications"] = ""; +App::$strings["View all connections"] = ""; +App::$strings["New Files"] = ""; +App::$strings["New Files Notifications"] = ""; +App::$strings["Notices"] = "Avvisi"; +App::$strings["View all notices"] = ""; +App::$strings["Mark all notices seen"] = ""; +App::$strings["New Registrations"] = ""; +App::$strings["New Registrations Notifications"] = ""; +App::$strings["Public Stream Notifications"] = ""; +App::$strings["View the public stream"] = ""; +App::$strings["Sorry, you have got no notifications at the moment"] = ""; +App::$strings["Source channel not found."] = ""; +App::$strings["Create an account to access services and applications"] = ""; +App::$strings["Logout"] = "Esci"; +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?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = ""; +App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; +App::$strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati."; +App::$strings["never"] = "mai"; +App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; +App::$strings["Theme settings"] = "Impostazioni del tema"; +App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; +App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; +App::$strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone"; +App::$strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva"; +App::$strings["Link color"] = ""; +App::$strings["Set font-color for banner"] = "Colore del font del banner"; +App::$strings["Set the background color"] = "Colore di sfondo"; +App::$strings["Set the background image"] = "Immagine di sfondo"; +App::$strings["Set the background color of items"] = "Colore di sfondo degli oggetti"; +App::$strings["Set the background color of comments"] = "Colore di sfondo dei commenti"; +App::$strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; +App::$strings["Examples: 1rem, 100%, 16px"] = ""; +App::$strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti"; +App::$strings["Set radius of corners"] = "Raggio degli angoli stondati"; +App::$strings["Example: 4px"] = "Esempio: 4px"; +App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; +App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel"; +App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito"; +App::$strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina"; +App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione"; +App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; +App::$strings["Errors encountered deleting database table "] = "Errore nella cancellazione della tabella"; +App::$strings["Submit Settings"] = "Invia impostazioni"; +App::$strings["Drop tables when uninstalling?"] = ""; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = ""; +App::$strings["Mapbox Access Token"] = ""; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = ""; +App::$strings["Rendezvous"] = ""; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = ""; +App::$strings["Welcome to Rendezvous!"] = ""; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = ""; +App::$strings["Let's meet here"] = "Incontriamoci qui"; +App::$strings["New marker"] = "Nuovo segnaposto"; +App::$strings["Edit marker"] = "Modifica segnaposto"; +App::$strings["New identity"] = "Nuova identità"; +App::$strings["Delete marker"] = "Elimina segnaposto"; +App::$strings["Delete member"] = "Elimina membro"; +App::$strings["Edit proximity alert"] = ""; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = ""; +App::$strings["distance"] = "distanza"; +App::$strings["Proximity alert distance (meters)"] = ""; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = ""; +App::$strings["Marker proximity alert"] = ""; +App::$strings["Reminder note"] = "Nota per il promemoria"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = ""; +App::$strings["Add new rendezvous"] = ""; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = ""; +App::$strings["Some setting"] = ""; +App::$strings["A setting"] = ""; +App::$strings["Skeleton Settings"] = ""; +App::$strings["GNU-Social Protocol Settings updated."] = ""; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the GNU-Social protocol for this channel"] = ""; +App::$strings["GNU-Social Protocol Settings"] = ""; +App::$strings["Follow"] = "Segui"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s sta ora seguendo %2\$s"; +App::$strings["Planets Settings updated."] = ""; +App::$strings["Enable Planets Plugin"] = ""; +App::$strings["Planets Settings"] = ""; +App::$strings["System defaults:"] = ""; +App::$strings["Preferred Clipart IDs"] = ""; +App::$strings["List of preferred clipart ids. These will be shown first."] = ""; +App::$strings["Default Search Term"] = ""; +App::$strings["The default search term. These will be shown second."] = ""; +App::$strings["Return After"] = ""; +App::$strings["Page to load after image selection."] = ""; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Profile List"] = ""; +App::$strings["Order of Preferred"] = ""; +App::$strings["Sort order of preferred clipart ids."] = ""; +App::$strings["Newest first"] = ""; +App::$strings["As entered"] = ""; +App::$strings["Order of other"] = ""; +App::$strings["Sort order of other clipart ids."] = ""; +App::$strings["Most downloaded first"] = ""; +App::$strings["Most liked first"] = ""; +App::$strings["Preferred IDs Message"] = ""; +App::$strings["Message to display above preferred results."] = ""; +App::$strings["Uploaded by: "] = "Caricato da:"; +App::$strings["Drawn by: "] = ""; +App::$strings["Use this image"] = "Usa questa immagine"; +App::$strings["Or select from a free OpenClipart.org image:"] = ""; +App::$strings["Search Term"] = "Termine di ricerca"; +App::$strings["Unknown error. Please try again later."] = "Errore sconosciuto. Per favore riprova più tardi."; +App::$strings["Profile photo updated successfully."] = ""; +App::$strings["Flag Adult Photos"] = "Marca le foto per adulti"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Permetti di nascondere le foto inappropriate nella visualizzazione degli album"; +App::$strings["Post to WordPress"] = ""; +App::$strings["Enable WordPress Post Plugin"] = ""; +App::$strings["WordPress username"] = ""; +App::$strings["WordPress password"] = ""; +App::$strings["WordPress API URL"] = ""; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = ""; +App::$strings["WordPress blogid"] = ""; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = ""; +App::$strings["Post to WordPress by default"] = ""; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = ""; +App::$strings["WordPress Post Settings"] = ""; +App::$strings["Wordpress Settings saved."] = ""; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; +App::$strings["Enable Content filter"] = ""; +App::$strings["Comma separated list of keywords to hide"] = ""; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; +App::$strings["Not Safe For Work Settings"] = ""; +App::$strings["General Purpose Content Filter"] = ""; +App::$strings["NSFW Settings saved."] = ""; +App::$strings["Possible adult content"] = ""; +App::$strings["%s - view"] = ""; +App::$strings["Post to Insanejournal"] = ""; +App::$strings["Enable InsaneJournal Post Plugin"] = ""; +App::$strings["InsaneJournal username"] = ""; +App::$strings["InsaneJournal password"] = ""; +App::$strings["Post to InsaneJournal by default"] = ""; +App::$strings["InsaneJournal Post Settings"] = ""; +App::$strings["Insane Journal Settings saved."] = ""; +App::$strings["Post to Dreamwidth"] = ""; +App::$strings["Enable Dreamwidth Post Plugin"] = ""; +App::$strings["Dreamwidth username"] = ""; +App::$strings["Dreamwidth password"] = ""; +App::$strings["Post to Dreamwidth by default"] = ""; +App::$strings["Dreamwidth Post Settings"] = ""; +App::$strings["New registration"] = ""; +App::$strings["Message sent to %s. New account registration: %s"] = ""; +App::$strings["Hubzilla Directory Stats"] = ""; +App::$strings["Total Hubs"] = ""; +App::$strings["Hubzilla Hubs"] = ""; +App::$strings["Friendica Hubs"] = ""; +App::$strings["Diaspora Pods"] = ""; +App::$strings["Hubzilla Channels"] = ""; +App::$strings["Friendica Channels"] = ""; +App::$strings["Diaspora Channels"] = ""; +App::$strings["Aged 35 and above"] = ""; +App::$strings["Aged 34 and under"] = ""; +App::$strings["Average Age"] = ""; +App::$strings["Known Chatrooms"] = ""; +App::$strings["Known Tags"] = ""; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; +App::$strings["Your Webbie:"] = ""; +App::$strings["Fontsize (px):"] = ""; +App::$strings["Link:"] = ""; +App::$strings["Like us on Hubzilla"] = "Metti un like su Hubzilla"; +App::$strings["Embed:"] = ""; +App::$strings["Photos imported"] = ""; +App::$strings["Redmatrix Photo Album Import"] = ""; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = ""; +App::$strings["Redmatrix Server base URL"] = ""; +App::$strings["Redmatrix Login Username"] = ""; +App::$strings["Redmatrix Login Password"] = ""; +App::$strings["Import just this album"] = ""; +App::$strings["Leave blank to import all albums"] = ""; +App::$strings["Maximum count to import"] = ""; +App::$strings["0 or blank to import all available"] = ""; +App::$strings["Channels to auto connect"] = ""; +App::$strings["Comma separated list"] = ""; +App::$strings["Popular Channels"] = ""; +App::$strings["IRC Settings"] = ""; +App::$strings["IRC settings saved."] = ""; +App::$strings["IRC Chatroom"] = ""; +App::$strings["Post to LiveJournal"] = ""; +App::$strings["Enable LiveJournal Post Plugin"] = ""; +App::$strings["LiveJournal username"] = ""; +App::$strings["LiveJournal password"] = ""; +App::$strings["Post to LiveJournal by default"] = ""; +App::$strings["LiveJournal Post Settings"] = ""; +App::$strings["LiveJournal Settings saved."] = ""; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +App::$strings["The error message was:"] = ""; +App::$strings["First Name"] = ""; +App::$strings["Last Name"] = ""; +App::$strings["Nickname"] = ""; +App::$strings["Full Name"] = ""; +App::$strings["Profile Photo 16px"] = ""; +App::$strings["Profile Photo 32px"] = ""; +App::$strings["Profile Photo 48px"] = ""; +App::$strings["Profile Photo 64px"] = ""; +App::$strings["Profile Photo 80px"] = ""; +App::$strings["Profile Photo 128px"] = ""; +App::$strings["Timezone"] = ""; +App::$strings["Birth Year"] = ""; +App::$strings["Birth Month"] = ""; +App::$strings["Birth Day"] = ""; +App::$strings["Birthdate"] = ""; +App::$strings["OpenID protocol error. No ID returned."] = ""; App::$strings["Login failed."] = "Accesso fallito."; -App::$strings["Attachments:"] = "Allegati:"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; -App::$strings["Location:"] = "Luogo:"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto crittografato"; -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["webpage"] = "pagina web"; -App::$strings["layout"] = "layout"; -App::$strings["block"] = "riquadro"; -App::$strings["menu"] = "menu"; -App::$strings["QR code"] = "QR code"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -App::$strings["post"] = "il post"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -App::$strings["Missing room name"] = "Area chat senza nome"; -App::$strings["Duplicate room name"] = "Il nome dell'area chat è duplicato"; -App::$strings["Invalid room specifier."] = "Il nome dell'area chat non è valido."; -App::$strings["Room not found."] = "Area chat non trovata."; -App::$strings["Room is full"] = "L'area chat è al completo"; -App::$strings["Default"] = "Predefinito"; -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["Male"] = "Maschio"; +App::$strings["Female"] = "Femmina"; +App::$strings["You're welcome."] = ""; +App::$strings["Ah shucks..."] = ""; +App::$strings["Don't mention it."] = ""; +App::$strings["<blush>"] = ""; +App::$strings["Page to load after login"] = ""; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = ""; +App::$strings["Startpage Settings"] = ""; +App::$strings["bitchslap"] = ""; +App::$strings["bitchslapped"] = ""; +App::$strings["shag"] = ""; +App::$strings["shagged"] = ""; +App::$strings["patent"] = ""; +App::$strings["patented"] = ""; +App::$strings["hug"] = ""; +App::$strings["hugged"] = ""; +App::$strings["murder"] = ""; +App::$strings["murdered"] = ""; +App::$strings["worship"] = ""; +App::$strings["worshipped"] = ""; +App::$strings["kiss"] = ""; +App::$strings["kissed"] = ""; +App::$strings["tempt"] = ""; +App::$strings["tempted"] = ""; +App::$strings["raise eyebrows at"] = ""; +App::$strings["raised their eyebrows at"] = ""; +App::$strings["insult"] = ""; +App::$strings["insulted"] = ""; +App::$strings["praise"] = ""; +App::$strings["praised"] = ""; +App::$strings["be dubious of"] = ""; +App::$strings["was dubious of"] = ""; +App::$strings["eat"] = ""; +App::$strings["ate"] = ""; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = ""; +App::$strings["doubted"] = ""; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = ""; +App::$strings["fucked"] = ""; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = ""; +App::$strings["declared undying love for"] = ""; +App::$strings["Diaspora Protocol Settings updated."] = ""; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the Diaspora protocol for this channel"] = ""; +App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; +App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = ""; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = ""; +App::$strings["Diaspora Protocol Settings"] = ""; +App::$strings["No username found in import file."] = ""; +App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; +App::$strings["Your account on %s will expire in a few days."] = ""; +App::$strings["Your $Productname test account is about to expire."] = ""; +App::$strings["Enable Rainbowtag"] = ""; +App::$strings["Rainbowtag Settings"] = ""; +App::$strings["Rainbowtag Settings saved."] = ""; +App::$strings["Show Upload Limits"] = ""; +App::$strings["Hubzilla configured maximum size: "] = ""; +App::$strings["PHP upload_max_filesize: "] = ""; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; +App::$strings["generic profile image"] = ""; +App::$strings["random geometric pattern"] = ""; +App::$strings["monster face"] = ""; +App::$strings["computer generated face"] = ""; +App::$strings["retro arcade style face"] = ""; +App::$strings["Hub default profile photo"] = ""; +App::$strings["Information"] = ""; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +App::$strings["Save Settings"] = ""; +App::$strings["Default avatar image"] = ""; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = ""; +App::$strings["Rating of images"] = ""; +App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; +App::$strings["Gravatar settings updated."] = ""; +App::$strings["Hubzilla File Storage Import"] = ""; +App::$strings["This will import all your cloud files from another server."] = ""; +App::$strings["Hubzilla Server base URL"] = ""; +App::$strings["Since modified date yyyy-mm-dd"] = ""; +App::$strings["Until modified date yyyy-mm-dd"] = ""; +App::$strings["Recent Channel/Profile Viewers"] = ""; +App::$strings["This plugin/addon has not been configured."] = ""; +App::$strings["Please visit the Visage settings on %s"] = ""; +App::$strings["your feature settings page"] = ""; +App::$strings["No entries."] = ""; +App::$strings["Enable Visage Visitor Logging"] = ""; +App::$strings["Visage Settings"] = ""; +App::$strings["Nsabait Settings updated."] = ""; +App::$strings["Enable NSAbait Plugin"] = ""; +App::$strings["NSAbait Settings"] = ""; +App::$strings["Send test email"] = ""; +App::$strings["No recipients found."] = ""; +App::$strings["Mail sent."] = ""; +App::$strings["Sending of mail failed."] = ""; +App::$strings["Mail Test"] = ""; +App::$strings["Message subject"] = ""; +App::$strings["Use markdown for editing posts"] = ""; +App::$strings["View Larger"] = ""; +App::$strings["Tile Server URL"] = ""; +App::$strings["A list of public tile servers"] = ""; +App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; +App::$strings["A list of Nominatim servers"] = ""; +App::$strings["Default zoom"] = ""; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = ""; +App::$strings["Include marker on map"] = ""; +App::$strings["Include a marker on the map."] = ""; +App::$strings["text to include in all outgoing posts from this site"] = ""; +App::$strings["Post to Friendica"] = ""; +App::$strings["rtof Settings saved."] = ""; +App::$strings["Allow posting to Friendica"] = ""; +App::$strings["Send public postings to Friendica by default"] = ""; +App::$strings["Friendica API Path"] = ""; +App::$strings["https://{sitename}/api"] = ""; +App::$strings["Friendica login name"] = ""; +App::$strings["Friendica password"] = ""; +App::$strings["Hubzilla to Friendica Post Settings"] = ""; +App::$strings["Status:"] = "Stato:"; +App::$strings["Activate addon"] = ""; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = ""; +App::$strings["Jabber username"] = ""; +App::$strings["Jabber server"] = ""; +App::$strings["Jabber BOSH host URL"] = ""; +App::$strings["Jabber password"] = ""; +App::$strings["Encrypt Jabber password with Hubzilla password"] = ""; +App::$strings["Hubzilla password"] = ""; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = ""; +App::$strings["Purge internal list of jabber addresses of contacts"] = ""; +App::$strings["Configuration Help"] = ""; +App::$strings["Jappix Mini Settings"] = ""; +App::$strings["Currently blocked"] = "Attualmente bloccati"; +App::$strings["No channels currently blocked"] = "Nessun canale attualmente bloccato"; +App::$strings["\"Superblock\" Settings"] = ""; +App::$strings["Block Completely"] = ""; +App::$strings["superblock settings updated"] = ""; +App::$strings["Federate"] = ""; +App::$strings["nofed Settings saved."] = ""; +App::$strings["Allow Federation Toggle"] = ""; +App::$strings["Federate posts by default"] = ""; +App::$strings["NoFed Settings"] = ""; +App::$strings["Post to Red"] = ""; +App::$strings["Channel is required."] = ""; +App::$strings["redred Settings saved."] = ""; +App::$strings["Allow posting to another Hubzilla Channel"] = ""; +App::$strings["Send public postings to Hubzilla channel by default"] = ""; +App::$strings["Hubzilla API Path"] = ""; +App::$strings["Hubzilla login name"] = ""; +App::$strings["Hubzilla channel name"] = ""; +App::$strings["Hubzilla Crosspost Settings"] = ""; +App::$strings["Logfile archive directory"] = ""; +App::$strings["Directory to store rotated logs"] = ""; +App::$strings["Logfile size in bytes before rotating"] = ""; +App::$strings["Number of logfiles to retain"] = ""; +App::$strings["Friendica Photo Album Import"] = ""; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = ""; +App::$strings["Friendica Server base URL"] = ""; +App::$strings["Friendica Login Username"] = ""; +App::$strings["Friendica Login Password"] = ""; +App::$strings["ActivityPub"] = ""; +App::$strings["ActivityPub Protocol Settings updated."] = ""; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the ActivityPub protocol for this channel"] = ""; +App::$strings["Send multi-media HTML articles"] = ""; +App::$strings["Not supported by some microblog services such as Mastodon"] = ""; +App::$strings["ActivityPub Protocol Settings"] = ""; +App::$strings["Project Servers and Resources"] = ""; +App::$strings["Project Creator and Tech Lead"] = ""; +App::$strings["Admin, developer, directorymin, support bloke"] = ""; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = ""; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = ""; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = ""; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = ""; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = ""; +App::$strings["Donate"] = ""; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = ""; +App::$strings["Donate Now"] = ""; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = ""; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = ""; +App::$strings["Sponsor"] = ""; +App::$strings["Special thanks to: "] = ""; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa."; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug."; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "Accordi per chitarra"; +App::$strings["The complete online chord dictionary"] = "Il dizionario completo degli accordi online"; +App::$strings["Tuning"] = "Accordatura"; +App::$strings["Chord name: example: Em7"] = "Nome accordo: per esempio Em7"; +App::$strings["Show for left handed stringing"] = "Mostra l'accordatura per mancini"; +App::$strings["Quick Reference"] = "Riferimento veloce"; +App::$strings["Post to Libertree"] = ""; +App::$strings["Enable Libertree Post Plugin"] = ""; +App::$strings["Libertree API token"] = ""; +App::$strings["Libertree site URL"] = ""; +App::$strings["Post to Libertree by default"] = ""; +App::$strings["Libertree Post Settings"] = ""; +App::$strings["Libertree Settings saved."] = ""; +App::$strings["Flattr this!"] = ""; +App::$strings["Flattr widget settings updated."] = ""; +App::$strings["Flattr user"] = ""; +App::$strings["URL of the Thing to flattr"] = ""; +App::$strings["If empty channel URL is used"] = ""; +App::$strings["Title of the Thing to flattr"] = ""; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = ""; +App::$strings["Static or dynamic flattr button"] = ""; +App::$strings["static"] = ""; +App::$strings["dynamic"] = ""; +App::$strings["Alignment of the widget"] = ""; +App::$strings["left"] = ""; +App::$strings["right"] = ""; +App::$strings["Enable Flattr widget"] = ""; +App::$strings["Flattr Widget Settings"] = ""; +App::$strings["Post to GNU social"] = ""; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = ""; +App::$strings["We could not contact the GNU social API with the Path you entered."] = ""; +App::$strings["GNU social settings updated."] = ""; +App::$strings["Globally Available GNU social OAuthKeys"] = ""; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = ""; +App::$strings["Provide your own OAuth Credentials"] = ""; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = ""; +App::$strings["OAuth Consumer Key"] = ""; +App::$strings["OAuth Consumer Secret"] = ""; +App::$strings["Base API Path"] = ""; +App::$strings["Remember the trailing /"] = ""; +App::$strings["GNU social application name"] = ""; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = ""; +App::$strings["Log in with GNU social"] = ""; +App::$strings["Copy the security code from GNU social here"] = ""; +App::$strings["Cancel Connection Process"] = ""; +App::$strings["Current GNU social API is"] = ""; +App::$strings["Cancel GNU social Connection"] = ""; +App::$strings["Currently connected to: "] = ""; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +App::$strings["Allow posting to GNU social"] = ""; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = ""; +App::$strings["Post to GNU social by default"] = ""; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = ""; +App::$strings["Clear OAuth configuration"] = ""; +App::$strings["GNU social Post Settings"] = ""; +App::$strings["API URL"] = ""; +App::$strings["Application name"] = ""; +App::$strings["QR code"] = ""; +App::$strings["QR Generator"] = ""; +App::$strings["Enter some text"] = ""; +App::$strings["Invalid game."] = ""; +App::$strings["You are not a player in this game."] = ""; +App::$strings["You must be a local channel to create a game."] = ""; +App::$strings["You must select one opponent that is not yourself."] = ""; +App::$strings["Random color chosen."] = ""; +App::$strings["Error creating new game."] = ""; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["You must select a local channel /chess/channelname"] = ""; +App::$strings["Enable notifications"] = ""; +App::$strings["Post to Twitter"] = ""; +App::$strings["Twitter settings updated."] = ""; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = ""; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = ""; +App::$strings["Log in with Twitter"] = ""; +App::$strings["Copy the PIN from Twitter here"] = ""; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +App::$strings["Allow posting to Twitter"] = ""; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = ""; +App::$strings["Twitter post length"] = ""; +App::$strings["Maximum tweet length"] = ""; +App::$strings["Send public postings to Twitter by default"] = ""; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = ""; +App::$strings["Twitter Post Settings"] = ""; +App::$strings["Deactivate the feature"] = ""; +App::$strings["Hide the button and show the smilies directly."] = ""; +App::$strings["Smileybutton Settings"] = ""; +App::$strings["This website is tracked using the Piwik analytics tool."] = ""; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = ""; +App::$strings["Piwik Base URL"] = ""; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; +App::$strings["Site ID"] = ""; +App::$strings["Show opt-out cookie link?"] = ""; +App::$strings["Asynchronous tracking"] = ""; +App::$strings["Enable frontend JavaScript error tracking"] = ""; +App::$strings["This feature requires Piwik >= 2.2.0"] = ""; +App::$strings["Edit your profile and change settings."] = ""; +App::$strings["Click here to see activity from your connections."] = ""; +App::$strings["Click here to see your channel home."] = ""; +App::$strings["You can access your private messages from here."] = ""; +App::$strings["Create new events here."] = ""; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = ""; +App::$strings["System notifications will arrive here"] = ""; +App::$strings["Search for content and users"] = ""; +App::$strings["Browse for new contacts"] = ""; +App::$strings["Launch installed apps"] = ""; +App::$strings["Looking for help? Click here."] = ""; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = ""; +App::$strings["You have received a new private message. Click here to see from who!"] = "Hai ricevuto un nuovo messaggio privato. Clicca qui per sapere da chi!"; +App::$strings["There are events this week. Click here too see which!"] = ""; +App::$strings["You have received a new introduction. Click here to see who!"] = "Hai ricevuto una nuova richiesta di amicizia. Clicca qui per sapere da chi!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = ""; +App::$strings["Click here to share text, images, videos and sound."] = ""; +App::$strings["You can write an optional title for your update (good for long posts)."] = ""; +App::$strings["Entering some categories here makes it easier to find your post later."] = ""; +App::$strings["Share photos, links, location, etc."] = ""; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = ""; +App::$strings["You can password protect content."] = ""; +App::$strings["Choose who you share with."] = ""; +App::$strings["Click here when you are done."] = ""; +App::$strings["Adjust from which channels posts should be displayed."] = ""; +App::$strings["Only show posts from channels in the specified privacy group."] = ""; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = ""; +App::$strings["Easily find posts in given category."] = ""; +App::$strings["Easily find posts by date."] = ""; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = ""; +App::$strings["Here you see channels you have connected to."] = ""; +App::$strings["Save your search so you can repeat it at a later date."] = ""; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = ""; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = ""; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI?

Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina.

Puoi anche andare avanti premendo il tasto invio"; +App::$strings["Extended Identity Sharing"] = ""; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = ""; +App::$strings["Three Dimensional Tic-Tac-Toe"] = ""; +App::$strings["3D Tic-Tac-Toe"] = ""; +App::$strings["New game"] = ""; +App::$strings["New game with handicap"] = ""; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = ""; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = ""; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = ""; +App::$strings["You go first..."] = ""; +App::$strings["I'm going first this time..."] = ""; +App::$strings["You won!"] = ""; +App::$strings["\"Cat\" game!"] = ""; +App::$strings["I won!"] = ""; +App::$strings["Message to display on every page on this server"] = ""; +App::$strings["Pageheader Settings"] = ""; +App::$strings["pageheader Settings saved."] = ""; +App::$strings["Only authenticate automatically to sites of your friends"] = ""; +App::$strings["By default you are automatically authenticated anywhere in the network"] = ""; +App::$strings["Authchoose Settings"] = ""; +App::$strings["Atuhchoose Settings updated."] = ""; +App::$strings["lonely"] = ""; +App::$strings["drunk"] = ""; +App::$strings["horny"] = ""; +App::$strings["stoned"] = ""; +App::$strings["fucked up"] = ""; +App::$strings["clusterfucked"] = ""; +App::$strings["crazy"] = ""; +App::$strings["hurt"] = ""; +App::$strings["sleepy"] = ""; +App::$strings["grumpy"] = ""; +App::$strings["high"] = ""; +App::$strings["semi-conscious"] = ""; +App::$strings["in love"] = ""; +App::$strings["in lust"] = ""; +App::$strings["naked"] = ""; +App::$strings["stinky"] = ""; +App::$strings["sweaty"] = ""; +App::$strings["bleeding out"] = ""; +App::$strings["victorious"] = ""; +App::$strings["defeated"] = ""; +App::$strings["envious"] = ""; +App::$strings["jealous"] = ""; +App::$strings["XMPP settings updated."] = ""; +App::$strings["Enable Chat"] = ""; +App::$strings["Individual credentials"] = ""; +App::$strings["Jabber BOSH server"] = ""; +App::$strings["XMPP Settings"] = ""; +App::$strings["Jabber BOSH host"] = ""; +App::$strings["Use central userbase"] = ""; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; +App::$strings["Who likes me?"] = "Chi mi ha messo un mi piace?"; +App::$strings["You are now authenticated to pumpio."] = ""; +App::$strings["return to the featured settings page"] = ""; +App::$strings["Post to Pump.io"] = ""; +App::$strings["Pump.io servername"] = ""; +App::$strings["Without \"http://\" or \"https://\""] = ""; +App::$strings["Pump.io username"] = ""; +App::$strings["Without the servername"] = ""; +App::$strings["You are not authenticated to pumpio"] = ""; +App::$strings["(Re-)Authenticate your pump.io connection"] = ""; +App::$strings["Enable pump.io Post Plugin"] = ""; +App::$strings["Post to pump.io by default"] = ""; +App::$strings["Should posts be public"] = ""; +App::$strings["Mirror all public posts"] = ""; +App::$strings["Pump.io Post Settings"] = ""; +App::$strings["PumpIO Settings saved."] = ""; +App::$strings["An account has been created for you."] = ""; +App::$strings["Authentication successful but rejected: account creation is disabled."] = ""; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = ""; +App::$strings["Redmatrix File Storage Import"] = ""; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = ""; +App::$strings["file"] = ""; +App::$strings["Send email to all members"] = ""; +App::$strings["%1\$d of %2\$d messages sent."] = ""; +App::$strings["Send email to all hub members."] = ""; +App::$strings["Sender Email address"] = ""; +App::$strings["Test mode (only send to hub administrator)"] = ""; App::$strings["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["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "Email"; -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["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -App::$strings["Advanced"] = "Avanzate"; -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["Find"] = "Cerca"; -App::$strings["Channel Suggestions"] = "Canali suggeriti"; -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["channel"] = "canale"; -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 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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View %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["View Status"] = "Guarda il messaggio di stato"; -App::$strings["View Photos"] = "Guarda le foto"; -App::$strings["Matrix Activity"] = "Attività nella tua rete"; -App::$strings["Edit Contact"] = "Modifica il contatto"; -App::$strings["Send PM"] = "Invia messaggio privato"; -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["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; -App::$strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["Where are you right now?"] = "Dove sei ora?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Condividi"; -App::$strings["Page link name"] = "Nome del link alla pagina"; -App::$strings["Post as"] = "Pubblica come "; -App::$strings["Upload photo"] = "Carica foto"; -App::$strings["upload photo"] = "carica foto"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["attach file"] = "allega file"; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; -App::$strings["web link"] = "link web"; -App::$strings["Insert video link"] = "Inserisci l'indirizzo di un video"; -App::$strings["video link"] = "link video"; -App::$strings["Insert audio link"] = "Inserisci l'indirizzo di un audio"; -App::$strings["audio link"] = "link audio"; -App::$strings["Set your location"] = "La tua località"; -App::$strings["set location"] = "la tua località"; -App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; -App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; -App::$strings["clear location"] = "rimuovi la località"; -App::$strings["Title (optional)"] = "Titolo (opzionale)"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorie (lista separata da virgole)"; -App::$strings["Permission settings"] = "Impostazioni permessi"; -App::$strings["permissions"] = "permessi"; -App::$strings["Public post"] = "Post pubblico"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Discover"] = "Scopri"; -App::$strings["Imported public streams"] = "Contenuti pubblici importati"; -App::$strings["Commented Order"] = "Ultimi commenti"; -App::$strings["Sort by Comment Date"] = "Per data del commento"; -App::$strings["Posted Order"] = "Ultimi post"; -App::$strings["Sort by Post Date"] = "Per data di creazione"; -App::$strings["Posts that mention or involve you"] = "Post che ti riguardano o ti menzionano"; -App::$strings["New"] = "Novità"; -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["Channel"] = "Canale"; -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["Chatrooms"] = "Area 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["Miscellaneous"] = "Altro"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "meno di un secondo fa"; -App::$strings["year"] = "anno"; -App::$strings["years"] = "anni"; -App::$strings["month"] = "mese"; -App::$strings["months"] = "mesi"; -App::$strings["week"] = "settimana"; -App::$strings["weeks"] = "settimane"; -App::$strings["day"] = "giorno"; -App::$strings["days"] = "giorni"; -App::$strings["hour"] = "ora"; -App::$strings["hours"] = "ore"; -App::$strings["minute"] = "minuto"; -App::$strings["minutes"] = "minuti"; -App::$strings["second"] = "secondo"; -App::$strings["seconds"] = "secondi"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; -App::$strings["Please choose"] = "La tua scelta"; -App::$strings["Agree"] = "Sono d'accordo"; -App::$strings["Disagree"] = "Non sono d'accordo"; -App::$strings["Abstain"] = "Mi astengo"; -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["Directory Options"] = "Opzioni elenco pubblico"; -App::$strings["Safe Mode"] = "Modalità SafeSearch"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Si"; -App::$strings["Public Forums Only"] = "Solo forum pubblici"; -App::$strings["This Website Only"] = "Solo in questo sito"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[RedMatrix] Nuovo messaggio su %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; -App::$strings["a private message"] = "un messaggio privato"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[RedMatrix] Nuovo commento di %2\$s alla conversazione #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[RedMatrix] %s ha scritto sulla tua bacheca"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[RedMatrix] %s ti ha taggato"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[RedMatrix] %1\$s ti ha mandato un poke"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[RedMatrix] %s ha taggato il tuo post"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[RedMatrix] Hai una richiesta di amicizia"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; -App::$strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[RedMatrix] Ti è stato suggerito un amico"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; -App::$strings["Name:"] = "Nome:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -App::$strings["[Red:Notify]"] = "[RedMatrix]"; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["General Features"] = "Funzionalità di base"; -App::$strings["Content Expiration"] = "Scadenza"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; -App::$strings["Multiple Profiles"] = "Profili multipli"; -App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -App::$strings["Advanced Profiles"] = "Profili avanzati"; -App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; -App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su canali o 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["Private Notes"] = "Note private"; -App::$strings["Enables a tool to store notes and reminders"] = "Abilita il riquadro per scrivere annotazioni"; -App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; -App::$strings["Photo Location"] = "Posizione geografica"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; -App::$strings["Expert Mode"] = "Modalità esperto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; -App::$strings["Premium Channel"] = "Canale premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare delle restrizioni e dei termini d'uso a chi segue il canale"; -App::$strings["Post Composition Features"] = "Modalità di scrittura post"; -App::$strings["Use Markdown"] = "Usa il markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Consenti l'uso del markdown per formattare i post"; -App::$strings["Large Photos"] = "Foto grandi"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Includi anteprime grandi delle foto nei post (640px). Se disabilitato le anteprime saranno piccole (320px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -App::$strings["Even More Encryption"] = "Crittografia addizionale"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crittografia tra mittente e destinatario che condividono una chiave segreta"; -App::$strings["Enable voting tools"] = "Permetti i post con votazione"; -App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; -App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; -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["Collections Filter"] = "Filtra per insiemi di canali"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Mostra il riquadro per filtrare i post di certi insiemi di canali"; -App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -App::$strings["Network Personal Tab"] = "Attività personale"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -App::$strings["Network New Tab"] = "Contenuti nuovi"; -App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -App::$strings["Affinity Tool"] = "Filtro per affinità"; -App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra con delle parole chiave i post che ricevi"; -App::$strings["Suggest Channels"] = "Suggerisci canali"; -App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; -App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; -App::$strings["Tagging"] = "Tag"; -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["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in post"; -App::$strings["Dislike Posts"] = "Non mi piace"; -App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; -App::$strings["Star Posts"] = "Post con stella"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; -App::$strings["Tag Cloud"] = "Nuvola di tag"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -App::$strings["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["Protocol blocked for this channel."] = "Protocollo bloccato per questo canale."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["local account not found."] = "l'account locale non è stato trovato."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -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."] = "È stato ripristinato un insieme con lo stesso nome che era stato eliminato in precedenza. I permessi già presenti potrebbero rimanere validi per i nuovi canali. Se non vuoi che ciò accada, devi creare un altro insieme con un nome diverso."; -App::$strings["Default privacy group for new contacts"] = "Insieme predefinito per i canali che inizi a seguire"; -App::$strings["All Channels"] = "Tutti i canali"; -App::$strings["edit"] = "modifica"; -App::$strings["Collections"] = "Insiemi di canali"; -App::$strings["Edit collection"] = "Modifica l'insieme di canali"; -App::$strings["Add new collection"] = "Nuovo insieme"; -App::$strings["Channels not in any collection"] = "Canali che non sono in un insieme"; -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["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["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; -App::$strings["Change profile photo"] = "Cambia la foto del profilo"; -App::$strings["Profiles"] = "Profili"; -App::$strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Profile Image"] = "Immagine del profilo"; -App::$strings["visible to everybody"] = "visibile a tutti"; -App::$strings["Edit visibility"] = "Cambia la visibilità"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["F d"] = "d F"; -App::$strings["[today]"] = "[oggi]"; -App::$strings["Birthday Reminders"] = "Promemoria compleanni"; -App::$strings["Birthdays this week:"] = "Compleanni questa settimana:"; -App::$strings["[No description]"] = "[Nessuna descrizione]"; -App::$strings["Event Reminders"] = "Promemoria"; -App::$strings["Events this week:"] = "Eventi di questa settimana:"; -App::$strings["Full Name:"] = "Nome completo:"; -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["Age:"] = "Età:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Hometown:"] = "Città dove vivo:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["About:"] = "Informazioni:"; -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 questo Oggetto"; -App::$strings["Permission denied"] = "Permesso negato"; -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 in %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["Item not found."] = "Elemento non trovato."; -App::$strings["Collection not found."] = "Insieme di canali non trovato."; -App::$strings["Collection is empty."] = "L'insieme di canali è vuoto."; -App::$strings["Collection: %s"] = "Insieme: %s"; -App::$strings["Connection: %s"] = "Contatto: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["Delete this item?"] = "Eliminare questo elemento?"; -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"; -App::$strings["Secret Passphrase"] = "Chiave segreta"; -App::$strings["Passphrase hint"] = "Suggerimento per la chiave segreta"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; -App::$strings["close all"] = "chiudi tutto"; -App::$strings["Nothing new here"] = "Niente di nuovo qui"; -App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; -App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "fa"; -App::$strings["from now"] = "da adesso"; -App::$strings["less than a minute"] = "meno di un minuto"; -App::$strings["about a minute"] = "circa un minuto"; -App::$strings["%d minutes"] = "%d minuti"; -App::$strings["about an hour"] = "circa un’ora"; -App::$strings["about %d hours"] = "circa %d ore"; -App::$strings["a day"] = "un giorno"; -App::$strings["%d days"] = "%d giorni"; -App::$strings["about a month"] = "circa un mese"; -App::$strings["%d months"] = "%d mesi"; -App::$strings["about a year"] = "circa un anno"; -App::$strings["%d years"] = "%d anni"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["View"] = "Guarda"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Title"] = "Titolo"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -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 photo albums"] = "Può vedere i miei album fotografici"; -App::$strings["Can view my connections"] = "Può vedere i miei contatti"; -App::$strings["Can view my file storage"] = "Può vedere i miei file condivisi"; -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 post photos to my photo albums"] = "Può aggiungere foto ai miei album"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\""; -App::$strings["Profiles and things other than posts/comments"] = "Profili e tutto ciò che non è post o commenti"; -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"] = "Può scrivere sul mio archivio file"; -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["Mostly Public"] = "Prevalentemente pubblico"; -App::$strings["Restricted"] = "Con restrizioni"; -App::$strings["Private"] = "Privato"; -App::$strings["Community Forum"] = "Forum di discussione"; -App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; -App::$strings["Special Purpose"] = "Per finalità speciali"; -App::$strings["Celebrity/Soapbox"] = "Pagina per fan"; -App::$strings["Group Repository"] = "Repository di gruppo"; -App::$strings["Other"] = "Altro"; -App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; -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["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Photo storage failed."] = "Impossibile caricare la foto."; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["Tags"] = "Tag"; -App::$strings["Keywords"] = "Parole chiave"; -App::$strings["have"] = "ho"; -App::$strings["has"] = "ha"; -App::$strings["want"] = "voglio"; -App::$strings["wants"] = "vuole"; -App::$strings["likes"] = "gli piace"; -App::$strings["dislikes"] = "non gli piace"; -App::$strings["Male"] = "Maschio"; -App::$strings["Female"] = "Femmina"; App::$strings["Currently Male"] = "Al momento maschio"; App::$strings["Currently Female"] = "Al momento femmina"; App::$strings["Mostly Male"] = "Prevalentemente maschio"; @@ -924,1245 +2587,582 @@ 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["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["Message deleted."] = "Messaggio eliminato."; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Send"] = "Invia"; -App::$strings["Message not found."] = "Messaggio non trovato."; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Private Conversation"] = "Conversazione privata"; -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 alcuna tecnologia per comunicare in modo sicuro. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Hub not found."] = "Server non trovato."; -App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Page not found."] = "Pagina non trovata."; -App::$strings["Lorem Ipsum"] = "Lorem Ipsum"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; -App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -App::$strings["Site"] = "Sito"; -App::$strings["Accounts"] = "Account"; -App::$strings["Channels"] = "Canali"; -App::$strings["Plugins"] = "Plugin"; -App::$strings["Themes"] = "Temi"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["Profile Config"] = "Configurazione del profilo"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Logs"] = "Log"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; -App::$strings["# Accounts"] = "# account"; -App::$strings["# blocked accounts"] = "# account bloccati"; -App::$strings["# expired accounts"] = "# account scaduti"; -App::$strings["# expiring accounts"] = "# account in scadenza"; -App::$strings["# Channels"] = "# canali"; -App::$strings["# primary"] = "# primari"; -App::$strings["# clones"] = "# cloni"; -App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Administration"] = "Amministrazione"; -App::$strings["Summary"] = "Riepilogo"; -App::$strings["Registered accounts"] = "Account creati"; -App::$strings["Pending registrations"] = "Registrazioni da approvare"; -App::$strings["Registered channels"] = "Canali creati"; -App::$strings["Active plugins"] = "Plugin attivi"; -App::$strings["Version"] = "Versione"; -App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; -App::$strings["mobile"] = "mobile"; -App::$strings["experimental"] = "sperimentale"; -App::$strings["unsupported"] = "non supportato"; -App::$strings["Yes - with approval"] = "Sì - con approvazione"; -App::$strings["My site is not a public server"] = "Non è un server pubblico"; -App::$strings["My site has paid access only"] = "È un servizio a pagamento"; -App::$strings["My site has free access only"] = "È un servizio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -App::$strings["Registration"] = "Registrazione"; -App::$strings["File upload"] = "Caricamento file"; -App::$strings["Policies"] = "Politiche"; -App::$strings["Site name"] = "Nome del sito"; -App::$strings["Banner/Logo"] = "Banner o logo"; -App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -App::$strings["System language"] = "Lingua di sistema"; -App::$strings["System theme"] = "Tema di sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; -App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; -App::$strings["Enable Diaspora Protocol"] = "Abilita la comunicazione con Diaspora"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Sperimentale - per comunicare con Diaspora e Friendica"; -App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; -App::$strings["Maximum image size"] = "Dimensione massima immagini"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -App::$strings["Register text"] = "Testo di registrazione"; -App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; -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."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; -App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; -App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -App::$strings["Allowed email domains"] = "Domini email consentiti"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -App::$strings["Not allowed email domains"] = "Domini email non consentiti"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -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 logged in."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; -App::$strings["Force publish"] = "Forza la publicazione del profilo"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare nell'elenco pubblico tutti i profili registrati su questo sito."; -App::$strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; -App::$strings["login on Homepage"] = "Mostra il 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["Proxy user"] = "Utente proxy"; -App::$strings["Proxy URL"] = "URL proxy"; -App::$strings["Network timeout"] = "Timeout rete"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -App::$strings["Delivery interval"] = "Recapito ritardato"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -App::$strings["Poll interval"] = "Intervallo di polling"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -App::$strings["Maximum Load Average"] = "Carico massimo medio"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -App::$strings["Expiration period in days for imported (matrix/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; -App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; -App::$strings["No server found"] = "Server non trovato"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "per canale"; -App::$strings["on server"] = "sul server"; -App::$strings["Status"] = "Stato"; -App::$strings["Server"] = "Server"; -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."; -App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; -App::$strings["Failed Updates"] = "Aggiornamenti falliti."; -App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -App::$strings["Queue Statistics"] = "Statistiche della coda"; -App::$strings["Total Entries"] = "Totale"; -App::$strings["Priority"] = "Priorità"; -App::$strings["Destination URL"] = "URL di destinazione"; -App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; -App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; -App::$strings["Last known contact"] = "Ultimo scambio dati"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "Modificato il blocco su %s account", - 1 => "Modificato il blocco verso %s", +App::$strings["likes %1\$s's %2\$s"] = "ha messo mi piace al %2\$s di %1\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "ha messo non mi piace al %2\$s di %1\$s"; +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["Loading..."] = "Caricamento in corso..."; +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["%s account deleted"] = array( - 0 => "%s account eliminato", - 1 => "%s account eliminati", +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", ); -App::$strings["Account not found"] = "Account non trovato"; -App::$strings["Account '%s' deleted"] = "Account '%s' eliminato"; -App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; -App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; -App::$strings["Users"] = "Utenti"; -App::$strings["select all"] = "seleziona tutti"; -App::$strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma"; -App::$strings["Request date"] = "Data richiesta"; -App::$strings["No registrations."] = "Nessuna registrazione."; -App::$strings["Approve"] = "Approva"; -App::$strings["Deny"] = "Nega"; -App::$strings["Block"] = "Blocca"; -App::$strings["Unblock"] = "Sblocca"; -App::$strings["Register date"] = "Data registrazione"; -App::$strings["Last login"] = "Ultimo accesso"; -App::$strings["Expires"] = "Con scadenza"; -App::$strings["Service Class"] = "Classe dell'account"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "Censura modificata per %s canale", - 1 => "Censura modificata per %s canali", +App::$strings["and"] = "e"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "e altre %d persone", ); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s canale permette/non permette codice nei contenuti", - 1 => "%s canali permettono/non permettono codice nei contenuti", +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["Choose a different album..."] = "Scegli un altro album..."; +App::$strings["Comments enabled"] = "Commenti abilitati"; +App::$strings["Comments disabled"] = "Commenti disabilitati"; +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["Disable comments"] = "Disabilita i commenti"; +App::$strings["Toggle comments"] = "Abilita/disabilita i commenti"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; +App::$strings["Set publish date"] = "Data di uscita programmata"; +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["Profile Details"] = "Dettagli del profilo"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; +App::$strings["View Cards"] = ""; +App::$strings["articles"] = ""; +App::$strings["View Articles"] = ""; +App::$strings["View Webpages"] = ""; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", ); -App::$strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", ); -App::$strings["Channel not found"] = "Canale non trovato"; -App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; -App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; -App::$strings["Censor"] = "Applica una censura"; -App::$strings["Uncensor"] = "Rimuovi la censura"; -App::$strings["Allow Code"] = "Permetti codice nei contenuti"; -App::$strings["Disallow Code"] = "Non permettere codice nei contenuti"; -App::$strings["UID"] = "UID"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; -App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; -App::$strings["Disable"] = "Disattiva"; -App::$strings["Enable"] = "Attiva"; -App::$strings["Toggle"] = "Attiva/disattiva"; -App::$strings["Author: "] = "Autore:"; -App::$strings["Maintainer: "] = "Gestore:"; -App::$strings["No themes found."] = "Nessun tema trovato."; -App::$strings["Screenshot"] = "Istantanea dello schermo"; -App::$strings["[Experimental]"] = "[Sperimentale]"; -App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; -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 Red top-level directory."] = "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato RedMatrix."; -App::$strings["Log level"] = "Livello di log"; -App::$strings["New Profile Field"] = "Nuovo campo del profilo"; -App::$strings["Field nickname"] = "Nome breve del campo"; -App::$strings["System name of field"] = "Nome di sistema del campo"; -App::$strings["Input type"] = "Tipo di dati"; -App::$strings["Field Name"] = "Nome del campo"; -App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; -App::$strings["Help text"] = "Testo di aiuto"; -App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (opzionali)"; -App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; -App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; -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["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["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["App installed."] = "App installata"; -App::$strings["Malformed app."] = "App non corretta"; -App::$strings["Embed code"] = "Inserisci del 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["Description"] = "Descrizione"; -App::$strings["Photo icon URL"] = "URL icona"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -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["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter a new album name"] = "Inserisci il nome di un nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica l'oggetto caricato sulla bacheca"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["Previous"] = "Precendente"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Next"] = "Successivo"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Caption"] = "Titolo"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["Item not available."] = "Elemento non disponibile."; -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["posted an event"] = "ha creato un evento"; -App::$strings["Block Name"] = "Nome del riquadro"; -App::$strings["Block Title"] = "Nome del riquadro"; -App::$strings["Poke/Prod"] = "Poke/Prod"; -App::$strings["poke, prod or do other things to somebody"] = "Manda un poke, un prod o altro"; -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["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -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["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Per passare a un altro tuo canale selezionalo."; -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 Channels"] = "Canali delegati"; -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["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["Poll"] = "Sondaggio"; -App::$strings["View Results"] = "Guarda i risultati"; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione magica dal tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo."; -App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; -App::$strings["Room not found"] = "Area chat non trovata"; -App::$strings["Leave Room"] = "Lascia l'area chat"; -App::$strings["Delete This 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 l'area chat ai segnalibri"; -App::$strings["New Chatroom"] = "Nuova area chat"; -App::$strings["Chatroom Name"] = "Nome dell'area chat"; -App::$strings["%1\$s's Chatrooms"] = "Le aree chat di %1\$s"; -App::$strings["Away"] = "Assente"; -App::$strings["Online"] = "Online"; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "Login su \$Projectname. Username: {la tua email}, Password: {la tua password} "; -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["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -App::$strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d"; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -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["Image uploaded successfully."] = "Immagine caricata con successo."; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Canale premium - installazione"; -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["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -App::$strings["Discard"] = "Rifiuta"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["Suggest new connections"] = "Suggerisci nuovi contatti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Unblocked"] = "Non bloccati"; -App::$strings["Only show unblocked connections"] = "Mostra solo i contatti non bloccati"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Finding: "] = "Ricerca: "; -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["Gender"] = "Sesso"; -App::$strings["Sexual Preference"] = "Preferenze sessuali"; -App::$strings["Homepage"] = "Home page"; -App::$strings["Interests"] = "Interessi"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["Profile updated."] = "Profilo aggiornato."; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici 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["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["Import profile from file"] = "Importa il profilo da un file"; -App::$strings["Export profile to file"] = "Esporta il profilo in un file"; -App::$strings["Profile Name:"] = "Nome del profilo:"; -App::$strings["Your Full Name:"] = "Il tuo nome completo:"; -App::$strings["Title/Description:"] = "Titolo/descrizione:"; -App::$strings["Your Gender:"] = "Sesso:"; -App::$strings["Birthday :"] = "Compleanno:"; -App::$strings["Street Address:"] = "Indirizzo (via/piazza):"; -App::$strings["Locality/City:"] = "Località:"; -App::$strings["Postal/Zip Code:"] = "CAP:"; -App::$strings["Country:"] = "Nazione:"; -App::$strings["Region/State:"] = "Regione/stato:"; -App::$strings[" Marital Status:"] = " Stato sentimentale:"; -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["Homepage URL:"] = "Indirizzo home page:"; -App::$strings["Religious Views:"] = "Orientamento religioso:"; -App::$strings["Keywords:"] = "Parole chiave, tag:"; -App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -App::$strings["Used in directory listings"] = "Visibile nell'elenco pubblico di canali"; -App::$strings["Tell us about yourself..."] = "Raccontaci di te..."; -App::$strings["Hobbies/Interests"] = "Hobby/interessi"; -App::$strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; -App::$strings["My other channels"] = "I miei altri canali"; -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["Love/romance"] = "Amore"; -App::$strings["Work/employment"] = "Lavoro/impiego"; -App::$strings["School/education"] = "Scuola/educazione"; -App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; -App::$strings["Age: "] = "Età:"; -App::$strings["Edit/Manage Profiles"] = "Modifica/gestisci i profili"; -App::$strings["Add profile things"] = "Aggiungi Oggetti al profilo"; -App::$strings["Include desirable objects in your profile"] = "Aggiungi oggetti interessanti al tuo profilo"; -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."; -App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -App::$strings["is now connected to"] = "ha come nuovo contatto"; -App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; -App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; -App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; -App::$strings["View %s's profile"] = "Guarda il profilo di %s"; -App::$strings["Refresh Permissions"] = "Modifica i permessi"; -App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; -App::$strings["Recent Activity"] = "Attività recenti"; -App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; -App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; -App::$strings["Unignore"] = "Non ignorare"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; -App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; -App::$strings["Unarchive"] = "Non archiviare"; -App::$strings["Archive"] = "Archivia"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; -App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; -App::$strings["Unhide"] = "Non nascondere"; -App::$strings["Hide"] = "Nascondi"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; -App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; -App::$strings["Delete this connection"] = "Elimina questo contatto"; -App::$strings["Approve this connection"] = "Approva questo contatto"; -App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; -App::$strings["Set Affinity"] = "Scegli l'affinità"; -App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; -App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; -App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; -App::$strings["This connection's address is"] = "Indirizzo di questo contatto"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; -App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; -App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; -App::$strings["Optionally explain your rating"] = "Commento opzionale"; -App::$strings["Custom Filter"] = "Filtro personalizzato"; -App::$strings["Only import posts with this text"] = "Importa solo i post che contengono questo testo"; -App::$strings["words one per line or #tags or /patterns/, leave blank to import all posts"] = "una parola per riga, oppure #tag o /pattern/ oppure lascia vuoto per importare tutto"; -App::$strings["Do not import posts with this text"] = "Non importare i post con questo testo"; -App::$strings["This information is public!"] = "Questa informazione è pubblica!"; -App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; -App::$strings["Connection Request"] = "Richiesta di entrare in contatto"; -App::$strings["(%s) would like to connect with you. Please approve this connection to allow communication."] = "(%s) vorrebbe entrare in contatto con te. Per permettere la comunicazione è necessario che tu approvi."; -App::$strings["Approve Later"] = "Approva più tardi"; -App::$strings["inherited"] = "derivato"; -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 quando visita il tuo profilo in modo sicuro."; -App::$strings["Their Settings"] = "Permessi concessi a te"; -App::$strings["My Settings"] = "I permessi che concedo"; -App::$strings["Individual Permissions"] = "Permessi individuali"; -App::$strings["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."] = "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."; -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 proprio le impostazioni generali."; -App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del 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["\$Projectname channel"] = "Canale \$Projectname"; -App::$strings["%d rating"] = array( - 0 => "%d valutazione", - 1 => "%d valutazioni", +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", ); -App::$strings["Gender: "] = "Sesso:"; -App::$strings["Status: "] = "Stato:"; -App::$strings["Homepage: "] = "Homepage:"; -App::$strings["Description:"] = "Descrizione:"; -App::$strings["Public Forum:"] = "Forum pubblico:"; -App::$strings["Keywords: "] = "Parole chiave:"; -App::$strings["Don't suggest"] = "Non fornire suggerimenti"; -App::$strings["Common connections:"] = "Contatti in comune:"; -App::$strings["Global Directory"] = "Elenco globale dei canali"; -App::$strings["Local Directory"] = "Elenco canali su questo server"; -App::$strings["Finding:"] = "Ricerca:"; -App::$strings["next page"] = "pagina successiva"; -App::$strings["previous page"] = "pagina precedente"; -App::$strings["Sort options"] = "Opzioni di ordinamento"; -App::$strings["Alphabetic"] = "Alfabetico"; -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["Public Sites"] = "Siti pubblici"; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links 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["Rate this hub"] = "Valuta questo hub"; -App::$strings["Site URL"] = "URL del sito"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Project"] = "Progetto"; -App::$strings["View hub ratings"] = "Vedi le valutazioni del hub"; -App::$strings["Rate"] = "Valuta"; -App::$strings["View ratings"] = "Vedi le valutazioni"; -App::$strings["This site is not a directory server"] = "Questo sito non è un server di elenchi pubblici"; -App::$strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; -App::$strings["Item not found"] = "Elemento non trovato"; -App::$strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; -App::$strings["Insert YouTube video"] = "Inserisci video da YouTube"; -App::$strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; -App::$strings["Edit Block"] = "Modifica il riquadro"; -App::$strings["Delete layout?"] = "Vuoi eliminare questo layout?"; -App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; -App::$strings["Layout Name"] = "Nome layout"; -App::$strings["Edit Layout"] = "Modifica il layout"; -App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Delete item?"] = "Eliminare questo elemento?"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; -App::$strings["Post successful."] = "Inviato!"; -App::$strings["Delete webpage?"] = "Vuoi eliminare questa pagina web?"; -App::$strings["Page link title"] = "Link del titolo"; -App::$strings["Edit Webpage"] = "Modifica la pagina web"; -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["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["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["calendar"] = "calendario"; -App::$strings["Create New Event"] = "Crea un nuovo evento"; -App::$strings["Export"] = "Esporta"; -App::$strings["Import"] = "Importa"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Event details"] = "Dettagli evento"; -App::$strings["Starting date and Title are required."] = "Titolo e data d'inizio sono obbligatori."; -App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -App::$strings["Event Starts:"] = "Inizio:"; -App::$strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è rilevante"; -App::$strings["Event Finishes:"] = "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 in base all'orario di un luogo particolare."; -App::$strings["Title:"] = "Titolo:"; -App::$strings["Share this event"] = "Condividi questo evento"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; -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"; -App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Permission Denied."] = "Permesso negato."; -App::$strings["File not found."] = "File non trovato."; -App::$strings["Edit file permissions"] = "Modifica i permessi del file"; -App::$strings["Set/edit permissions"] = "Modifica i permessi"; -App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -App::$strings["Return to file list"] = "Torna all'elenco dei file"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -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["Channel added."] = "Canale aggiunto."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore del sito."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this site/hub is by approval only."] = "La registrazione su questo sito è soggetta ad approvazione."; -App::$strings["Register at another affiliated site/hub"] = "Registrati su un altro server affiliato"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo sito è necessario un invito."; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Contact not found."] = "Contatto non trovato."; -App::$strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -App::$strings["Suggest Friends"] = "Suggerisci amici"; -App::$strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -App::$strings["Please login."] = "Effettua l'accesso."; -App::$strings["Collection created."] = "L'insieme di canali è stato creato."; -App::$strings["Could not create collection."] = "Impossibile creare l'insieme."; -App::$strings["Collection updated."] = "Insieme aggiornato."; -App::$strings["Create a collection of channels."] = "Crea un insieme di canali."; -App::$strings["Collection Name: "] = "Nome dell'insieme:"; -App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali dell'insieme"; -App::$strings["Collection removed."] = "Insieme rimosso."; -App::$strings["Unable to remove collection."] = "Impossibile rimuovere l'insieme."; -App::$strings["Collection Editor"] = "Modifica l'insieme"; -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"; -App::$strings["WARNING: "] = "ATTENZIONE:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."; -App::$strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; -App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo server saranno rimossi dalla rete."; -App::$strings["Remove Account"] = "Elimina l'account"; -App::$strings["Help:"] = "Guida:"; -App::$strings["Not Found"] = "Non disponibile"; -App::$strings["\$Projectname Documentation"] = "Documentazione \$Projectname"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; -App::$strings["Remove This Channel"] = "Elimina questo canale"; -App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; -App::$strings["Remove this channel and all its clones from the network"] = "Rimuovi 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["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; -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 dal 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["First Name"] = "Nome"; -App::$strings["Last Name"] = "Cognome"; -App::$strings["Nickname"] = "Nick"; -App::$strings["Full Name"] = "Nome e cognome"; -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["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["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; -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 server"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["The data provided is not compatible with this project."] = "I dati forniti non sono compatibili con questo hub."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +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["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["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; 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["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Usa questo modulo per importare un tuo canale da un altro server/hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro server/hub oppure tramite un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio server/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio server"; -App::$strings["Your old login password"] = "La password per il vecchio server"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo server, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i server, ma solamente uno sarà indicato come posizione in cui risiedono i tuoi file, foto, ecc."; -App::$strings["Make this hub my primary location"] = "Rendi questo server 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["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; -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 Red"] = "Vieni con noi su RedMatrix"; -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["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +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["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["Monday"] = "lunedì"; +App::$strings["Tuesday"] = "martedì"; +App::$strings["Wednesday"] = "mercoledì"; +App::$strings["Thursday"] = "giovedì"; +App::$strings["Friday"] = "venerdì"; +App::$strings["Saturday"] = "sabato"; +App::$strings["Sunday"] = "domenica"; +App::$strings["January"] = "gennaio"; +App::$strings["February"] = "febbraio"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "aprile"; +App::$strings["May"] = "Mag"; +App::$strings["June"] = "giugno"; +App::$strings["July"] = "luglio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "settembre"; +App::$strings["October"] = "ottobre"; +App::$strings["November"] = "novembre"; +App::$strings["December"] = "dicembre"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["Download binary/encrypted content"] = ""; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["HTML"] = ""; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["activity"] = "l'attività"; +App::$strings["a-z, 0-9, -, and _ only"] = ""; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Export website..."] = "Esporta il sito web..."; +App::$strings["Export to a zip file"] = "Esporta come file zip"; +App::$strings["website.zip"] = "sitoweb.zip"; +App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; +App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; +App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; +App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; +App::$strings["Specify folder"] = "Scegli la cartella"; +App::$strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", ); -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["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 di 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["Name is required"] = "Il nome è obbligatorio"; -App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["Diaspora Policy Settings updated."] = "Le regole per Diaspora sono state aggiornate."; -App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -App::$strings["Password changed."] = "Password cambiata."; -App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -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."; -App::$strings["Settings updated."] = "Impostazioni aggiornate."; -App::$strings["Add application"] = "Aggiungi una app"; -App::$strings["Name of application"] = "Nome dell'applicazione"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirect"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI ridirezionato - lasciare bianco se non richiesto specificamente dall'applicazione."; -App::$strings["Icon url"] = "Url icona"; -App::$strings["Optional"] = "Opzionale"; -App::$strings["You can't edit this application."] = "Non puoi modificare questa applicazione."; -App::$strings["Connected Apps"] = "App connesse"; -App::$strings["Client key starts with"] = "La client key inizia con"; -App::$strings["No name"] = "Nessun nome"; -App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; -App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; -App::$strings["Settings for the built-in Diaspora emulator"] = "Interconnessione con Diaspora"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Permetti a tutti gli utenti di Diaspora di commentare i tuoi post pubblici"; -App::$strings["Enable the Diaspora protocol for this channel"] = "Abilita il protocollo Diaspora per questo canale"; -App::$strings["Diaspora Policy Settings"] = "Regole per Diaspora"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Impedisci che i tuoi #tag puntino su altri siti"; -App::$strings["Account Settings"] = "Il tuo account"; -App::$strings["Enter New Password:"] = "Inserisci la nuova password:"; -App::$strings["Confirm New Password:"] = "Conferma la nuova password:"; -App::$strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco 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["Off"] = "Off"; -App::$strings["On"] = "On"; -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"; -App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; -App::$strings["Display Settings"] = "Aspetto"; -App::$strings["Theme Settings"] = "Impostazioni del tema"; -App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; -App::$strings["Content Settings"] = "Impostazioni dei contenuti"; -App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; -App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; -App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; -App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; -App::$strings["Maximum of 100 items"] = "Massimo 100"; -App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; -App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; -App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; -App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; -App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; -App::$strings["Use blog/list mode on matrix page"] = "Mostra la tua rete in modalità blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; -App::$strings["click to expand content exceeding this height"] = "dovrai cliccare per mostrare i contenuti di dimensioni maggiori"; -App::$strings["Matrix page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; -App::$strings["Nobody except yourself"] = "Nessuno tranne te"; -App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Approved connections"] = "Contatti approvati"; -App::$strings["Any connections"] = "Tutti i contatti"; -App::$strings["Anybody on this website"] = "Chiunque su questo sito"; -App::$strings["Anybody in this network"] = "Chiunque su Red"; -App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; -App::$strings["Anybody on the internet"] = "Chiunque su internet"; -App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito nell'elenco pubblico dei canali"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; -App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; -App::$strings["Channel Settings"] = "Impostazioni del canale"; -App::$strings["Basic Settings"] = "Impostazioni di base"; -App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; -App::$strings["Default Post Location:"] = "Località predefinita:"; -App::$strings["Geographical location to display on your posts"] = "Posizione geografica da mostrare sui tuoi post"; -App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -App::$strings["Adult Content"] = "Contenuto per adulti"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; -App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; -App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evita che sul tuo profilo compaia la tua presenza online"; -App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; -App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; -App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -App::$strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate"; -App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; -App::$strings["0 or blank prevents expiration"] = "Lascia vuoto oppure 0 per non impostare scadenze"; -App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; -App::$strings["May reduce spam activity"] = "Serve e ridurre lo spam"; -App::$strings["Default Post Permissions"] = "Permessi predefiniti per i post"; -App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -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"; -App::$strings["Notification Settings"] = "Impostazioni di notifica"; -App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; -App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; -App::$strings["joining a forum/community"] = "entro a far parte di un forum"; -App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; -App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; -App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; -App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; -App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; -App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; -App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; -App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; -App::$strings["You are tagged in a post"] = "Sei taggato in un post"; -App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; -App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; -App::$strings["Unseen matrix activity"] = "Nuove attività nella rete"; -App::$strings["Unseen channel activity"] = "Novità nei canali"; -App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; -App::$strings["Recommended"] = "Consigliato"; -App::$strings["Upcoming events"] = "Prossimi eventi"; -App::$strings["Events today"] = "Eventi di oggi"; -App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; -App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; -App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; -App::$strings["System info messages"] = "Notifiche di sistema"; -App::$strings["System critical alerts"] = "Avvisi critici di sistema"; -App::$strings["New connections"] = "Nuovi contatti"; -App::$strings["System Registrations"] = "Registrazioni"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"; -App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; -App::$strings["Must be greater than 0"] = "Maggiore di 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)"; -App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; -App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; -App::$strings["Remove this channel."] = "Elimina questo canale."; -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."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -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["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; -App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; -App::$strings["Could not create table."] = "Impossibile creare le tabelle."; -App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; -App::$strings["System check"] = "Verifica del sistema"; -App::$strings["Check again"] = "Verifica di nuovo"; -App::$strings["Database connection"] = "Connessione al database"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; -App::$strings["Database Server Name"] = "Server del database"; -App::$strings["Default is localhost"] = "'localhost' è il predefinito"; -App::$strings["Database Port"] = "Port del database"; -App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; -App::$strings["Database Login Name"] = "Utente database"; -App::$strings["Database Login Password"] = "Password utente database"; -App::$strings["Database Name"] = "Nome database"; -App::$strings["Database Type"] = "Tipo database"; -App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del sito"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."; -App::$strings["Website URL"] = "URL completo del sito"; -App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; -App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web"; -App::$strings["Site settings"] = "Impostazioni del sito"; -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."; -App::$strings["PHP executable path"] = "Path del comando PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; -App::$strings["Command line PHP"] = "PHP da riga di comando"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini"; -App::$strings["PHP upload limits"] = "Limiti PHP in upload"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di criptazione"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Genera chiavi di criptazione"; -App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; -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"; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; -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 RedMatrix 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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di RedMatrix."; -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."] = "Red 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 Red top level folder."] = "Per poter memorizzare i template compilati, il web server deve avere accesso in scrittura a %s sotto la cartella di installazione di RedMatrix."; -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 da parte di 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["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"] = "RedMatrix 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 generati da te!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; -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["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"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "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."; -App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -App::$strings["

What next

"] = "

I prossimi passi

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -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["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["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["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -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 ha preso una decisione"; -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["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["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["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["Primary location cannot be removed."] = "L'indirizzo principale non può essere rimosso."; -App::$strings["No locations found."] = "Nessun indirizzo trovato."; -App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Location (address)"] = "Indirizzo"; -App::$strings["Primary Location"] = "Indirizzo primario"; -App::$strings["Drop location"] = "Elimina un indirizzo"; -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."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Gestisci le sorgenti dei contenuti del tuo canale."; -App::$strings["New Source"] = "Nuova sorgente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente."; -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["Source not found."] = "Sorgente non trovata."; -App::$strings["Edit Source"] = "Modifica la sorgente"; -App::$strings["Delete Source"] = "Elimina la sorgente"; -App::$strings["Source removed"] = "Sorgente eliminata"; -App::$strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; -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["Drop"] = "Elimina"; -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["Conversation removed."] = "Conversazione rimossa."; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -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["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Destinazione 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 magica 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["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$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["No such group"] = "Impossibile trovare l'insieme"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Collection is empty"] = "L'insieme di canali è vuoto"; -App::$strings["Collection: "] = "Insieme:"; -App::$strings["Connection: "] = "Contatto:"; -App::$strings["Invalid connection."] = "Contatto non valido."; -App::$strings["OpenID protocol error. No ID returned."] = "Errore del protocollo OpenID. Nessun ID ricevuto in risposta."; -App::$strings["Add a Channel"] = "Aggiungi un canale"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "I contenuti che pubblichi sono mostrati nel tuo \"canale\". Un canale può essere usato come bacheca personale, come blog, oppure può essere un forum di discussione, un gruppo di interesse, una pagina di celebrità e molto altro. Puoi creare tanti canali quanti ne permette il tuo sito."; -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 easily remembered channel address (like an email address) which you can share with others."] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale (simile a una email). Così potrai condividerlo e gli altri potranno trovarti."; -App::$strings["Or import an existing channel from another location"] = "Oppure importa un tuo canale esistente da un altro server/hub"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Descrivi il tipo di canale che vorresti creare (per esempio se ti interessa più usarlo come social network, come un forum di discussione...) e il tipo di privacy che preferisci. RedMatrix sceglierà per te i permessi più adatti."; -App::$strings["Channel Type"] = "Tipo di canale"; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -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 segue il relativo canale"; -App::$strings["Name of thing e.g. something"] = "Nome dell'Oggetto"; -App::$strings["URL of thing (optional)"] = "Indirizzo web dell'Oggetto (opzionale)"; -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 or month:"] = "Puoi anche esportare i post relativi a un certo mese o anno"; -App::$strings["You may also export your posts and conversations for a particular year or month. Click on one of the recent years or months below."] = "Puoi anche esportare i tuoi post e le conversazioni di un certo mese o anno. Clicca qua sotto su un mese o su un anno recente."; +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["Common Connections"] = ""; +App::$strings["View all %d common connections"] = ""; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +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["Remote channel or protocol unavailable."] = ""; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +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["Password too short"] = "Password troppo corta"; +App::$strings["Passwords do not match"] = "Le password non corrispondono"; +App::$strings["everybody"] = "tutti"; +App::$strings["Secret Passphrase"] = "Parola chiave per decifrare"; +App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; +App::$strings["close all"] = "chiudi tutto"; +App::$strings["Nothing new here"] = "Niente di nuovo qui"; +App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; +App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; +App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["timeago.suffixAgo"] = ""; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = "meno di un minuto"; +App::$strings["about a minute"] = "circa un minuto"; +App::$strings["%d minutes"] = "%d minuti"; +App::$strings["about an hour"] = "circa un’ora"; +App::$strings["about %d hours"] = "circa %d ore"; +App::$strings["a day"] = "un giorno"; +App::$strings["%d days"] = "%d giorni"; +App::$strings["about a month"] = "circa un mese"; +App::$strings["%d months"] = "%d mesi"; +App::$strings["about a year"] = "circa un anno"; +App::$strings["%d years"] = "%d anni"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "maggio"; App::$strings["Jan"] = "Gen"; App::$strings["Feb"] = "Feb"; App::$strings["Mar"] = "Mar"; App::$strings["Apr"] = "Apr"; -App::$strings["Jun"] = "Giu"; -App::$strings["Jul"] = "Lug"; +App::$strings["__ctx:short__ May"] = "maggio"; +App::$strings["Jun"] = "Mag"; +App::$strings["Jul"] = "Giu"; App::$strings["Aug"] = "Ago"; App::$strings["Sep"] = "Set"; App::$strings["Oct"] = "Ott"; App::$strings["Nov"] = "Nov"; App::$strings["Dec"] = "Dic"; -App::$strings["If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Se l'esportazione fallisce (di solito è per mancanza di memoria sullo hub), puoi provare nuovamente, ma scegliendo un intervallo di date più stretto."; -App::$strings["Or adjust the date in your browser location bar to select other dates. For example the year 2013; %1\$s/2013 or the month September 2013; %1\$s/2013/9"] = "Oppure cambia le date nella barra degli indirizzi del tuo browser per selezionare altre date. Per esempio, l'anno 2013; %1\$s/2013 o il mese di settembre 2013; %1\$s/2013/9"; -App::$strings["Please visit"] = "Visita"; -App::$strings["on another hub to import the backup files(s)."] = "su un altro hub per importare il backup."; -App::$strings["We advise you to clone the channel on the new hub first and than to import the backup file(s) (from the same channel) in chronological order. Importing the backup files into another channel will certainly give permission issues."] = "Il consiglio è di clonare per prima cosa il canale sul nuovo hub e poi importare i file di backup creati dal canale originale in ordine cronologico. Importare contenuti di canali differenti darà sicuramente problemi sui diritti."; -App::$strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -App::$strings["No connections."] = "Nessun contatto."; -App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -App::$strings["Source of Item"] = "Sorgente"; -App::$strings["Total votes"] = "Totale voti"; -App::$strings["Average Rating"] = "Valutazione media"; -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["Sun"] = "Dom"; +App::$strings["Mon"] = "Lun"; +App::$strings["Tue"] = "Mar"; +App::$strings["Wed"] = "Mer"; +App::$strings["Thu"] = "Gio"; +App::$strings["Fri"] = "Ven"; +App::$strings["Sat"] = "Sab"; +App::$strings["__ctx:calendar__ today"] = "oggi"; +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["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +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["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["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["[Edited %s]"] = ""; +App::$strings["__ctx:edit_activity__ Post"] = ""; +App::$strings["__ctx:edit_activity__ Comment"] = ""; +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["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Unable to retrieve modified identity"] = ""; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Change your profile photo"] = ""; +App::$strings["Trans"] = ""; +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["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["Home, Voice"] = ""; +App::$strings["Home, Fax"] = ""; +App::$strings["Work, Voice"] = ""; +App::$strings["Work, Fax"] = ""; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +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["Select an alternate language"] = "Seleziona una lingua diversa"; +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["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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +App::$strings["Image/photo"] = "Immagine"; +App::$strings["Encrypted content"] = "Contenuto cifrato"; +App::$strings["Install %1\$s element %2\$s"] = ""; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +App::$strings["card"] = ""; +App::$strings["article"] = ""; +App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["View article"] = ""; +App::$strings["View summary"] = ""; +App::$strings["$1 wrote:"] = "$1 ha scritto:"; +App::$strings[" by "] = "di"; +App::$strings[" on "] = "su"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +App::$strings["General Features"] = "Funzionalità di base"; +App::$strings["Advanced Profiles"] = "Profili avanzati"; +App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; +App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; +App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; +App::$strings["Web Pages"] = "Pagine web"; +App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; +App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; +App::$strings["Private Notes"] = "Note private"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; +App::$strings["Create personal planning cards"] = ""; +App::$strings["Create interactive articles"] = ""; +App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; +App::$strings["Photo Location"] = "Posizione geografica"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; +App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; +App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato."; +App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; +App::$strings["Event Timezone Selection"] = ""; +App::$strings["Allow event creation in timezones other than your own."] = ""; +App::$strings["Premium Channel"] = "Canale premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; +App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici"; +App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; +App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; +App::$strings["Access Control and Permissions"] = ""; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Multiple Profiles"] = "Profili multipli"; +App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +App::$strings["Provide alternate connection permission roles."] = ""; +App::$strings["OAuth Clients"] = ""; +App::$strings["Manage authenticatication tokens for mobile and remote apps."] = ""; +App::$strings["Access Tokens"] = ""; +App::$strings["Create access tokens so that non-members can access private content."] = ""; +App::$strings["Post Composition Features"] = "Modalità di scrittura post"; +App::$strings["Large Photos"] = "Foto grandi"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; +App::$strings["Even More Encryption"] = "Cifratura addizionale"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; +App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; +App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; +App::$strings["Disable Comments"] = "Disabilita i commenti"; +App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti"; +App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; +App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; +App::$strings["Content Expiration"] = "Scadenza"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; +App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; +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["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; +App::$strings["Network Personal Tab"] = "Attività personale"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; +App::$strings["Network New Tab"] = "Contenuti nuovi"; +App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +App::$strings["Affinity Tool"] = "Filtro per affinità"; +App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +App::$strings["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; +App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; +App::$strings["Community Tagging"] = "Tag della comunità"; +App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; +App::$strings["Post Categories"] = "Categorie dei post"; +App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; +App::$strings["Emoji Reactions"] = "Risposte emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; +App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +App::$strings["Dislike Posts"] = "Non mi piace"; +App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; +App::$strings["Star Posts"] = "Post con stella"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; +App::$strings["Tag Cloud"] = "Nuvola di tag"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Tags"] = "Tag"; +App::$strings["Keywords"] = "Parole chiave"; +App::$strings["have"] = "ho"; +App::$strings["has"] = "ha"; +App::$strings["want"] = "voglio"; +App::$strings["wants"] = "vuole"; +App::$strings["likes"] = "gli piace"; +App::$strings["dislikes"] = "non gli piace"; +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["Birthday"] = "Compleanno"; +App::$strings["Age: "] = "Età:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; +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["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["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["Take me home"] = ""; +App::$strings["Log me out of this site"] = ""; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; +App::$strings["Add Apps"] = "Aggiungi App"; +App::$strings["Arrange Apps"] = "Ordina le App"; +App::$strings["Toggle System Apps"] = "Attiva/disattiva Apps"; +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["Schema Default"] = "Schema predefinito"; -App::$strings["Sans-Serif"] = "Sans-Serif"; -App::$strings["Monospace"] = "Monospace"; -App::$strings["Theme settings"] = "Impostazioni del tema"; -App::$strings["Set scheme"] = "Schema"; -App::$strings["Set font-size for posts and comments"] = "Dimensioni del carattere per post e commenti"; -App::$strings["Set font face"] = "Tipo di carattere"; -App::$strings["Set iconset"] = "Set di icone"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Ombra grande, predefinita 15px 15px 15px"; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Ombra piccola, predefinita 5px 5px 5px"; -App::$strings["Set shadow color, default #000"] = "Colore dell'ombra, predefinito #000"; -App::$strings["Set radius size, default 5px"] = "Raggio degli angoli, predefinito 5px"; -App::$strings["Set line-height for posts and comments"] = "Altezza della riga per post e commenti"; -App::$strings["Set background image"] = "Immagine di sfondo"; -App::$strings["Set background attachment"] = "Imposta un allegato di sfondo"; -App::$strings["Set background color"] = "Colore di sfondo"; -App::$strings["Set section background image"] = "Immagine di sfondo dei contenuti"; -App::$strings["Set section background color"] = "Colore di sfondo dei contenuti"; -App::$strings["Set color of items - use hex"] = "Colore degli elementi della pagina - esadecimale"; -App::$strings["Set color of links - use hex"] = "Colore dei link - esadecimale"; -App::$strings["Set max-width for items. Default 400px"] = "Larghezza massima degli elementi della pagina. Predefinita 400px"; -App::$strings["Set min-width for items. Default 240px"] = "Larghezza minima degli elementi della pagina. Predefinita 240px"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Larghezza dell'area dei contenuti. Predefinita: 48%"; -App::$strings["Set color of fonts - use hex"] = "Colore dei caratteri - esadecimale"; -App::$strings["Set background-size element"] = "Background-size"; -App::$strings["Item opacity"] = "Opacità degli elementi della pagina"; -App::$strings["Display post previews only"] = "Mostra l'anteprima solo dei post"; -App::$strings["Display side bar on channel page"] = "Mostra la colonna laterale sulla pagina del canale"; -App::$strings["Colour of the navigation bar"] = "Colore della barra di navigazione"; -App::$strings["Item float"] = "Float degli oggetti della pagina"; -App::$strings["Left offset of the section element"] = "Margine sinistro dei contenuti"; -App::$strings["Right offset of the section element"] = "Margine destro dei contenuti"; -App::$strings["Section width"] = "Larghezza dei contenuti"; -App::$strings["Left offset of the aside"] = "Margine sinistro nella colonna laterale"; -App::$strings["Right offset of the aside element"] = "Margine destro nella colonna laterale"; -App::$strings["Light (Red Matrix default)"] = "Light (predefinito)"; -App::$strings["Select scheme"] = "Scegli uno schema"; -App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; -App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; -App::$strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore"; -App::$strings["Navigation bar gradient bottom color"] = "Barra di navigazione: Gradiente inferiore"; -App::$strings["Navigation active button gradient top color"] = "Bottone di navigazione attivo: Gradiente superiore"; -App::$strings["Navigation active button gradient bottom color"] = "Bottone di navigazione attivo: Gradiente inferiore"; -App::$strings["Navigation bar border color "] = "Barra di navigazione: Colore del bordo"; -App::$strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone"; -App::$strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva"; -App::$strings["link color"] = "colore del link"; -App::$strings["Set font-color for banner"] = "Colore del font del banner"; -App::$strings["Set the background color"] = "Imposta il colore di sfondo"; -App::$strings["Set the background image"] = "Immagine di sfondo"; -App::$strings["Set the background color of items"] = "Imposta il colore di sfondo degli oggetti"; -App::$strings["Set the background color of comments"] = "Imposta il colore di sfondo dei commenti"; -App::$strings["Set the border color of comments"] = "Imposta il colore del bordo dei commenti"; -App::$strings["Set the indent for comments"] = "Imposta il lo spostamento a destra dei commenti"; -App::$strings["Set the basic color for item icons"] = "Colore di base per le icone"; -App::$strings["Set the hover color for item icons"] = "Colore per le icone in mouse-over"; -App::$strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; -App::$strings["Example: 14px"] = "Esempio: 14px"; -App::$strings["Set font-color for posts and comments"] = "Imposta il colore del carattere per post e commenti"; -App::$strings["Set radius of corners"] = "Raggio degli angoli stondati"; -App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; -App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel"; -App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito"; -App::$strings["Center page content"] = "Centra il contenuto della pagina"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Imposta l'opacità minima della barra di navigazione per nasconderla"; -App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione"; -App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; -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 Red Matrix"] = "Registrati per accedere ai servizi e alle applicazioni di RedMatrix"; -App::$strings["Password"] = "Password"; -App::$strings["Remember me"] = "Resta connesso"; -App::$strings["Forgot your password?"] = "Hai dimenticato la password?"; -App::$strings["toggle mobile"] = "attiva/disattiva versione mobile"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire."; -App::$strings["[red] Website SSL error for %s"] = "[red] Errore SSL %s "; -App::$strings["Cron/Scheduled tasks not running."] = "Processi/cron non avviati."; -App::$strings["[red] Cron tasks not running on %s"] = "[red] Processi cron non avviati su %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["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["Logged out."] = "Uscita effettuata."; +App::$strings["Email validation is incomplete. Please check your email."] = "Validazione via mail non completa. Per favore controlla la tua mail."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Help:"] = "Guida:"; +App::$strings["Not Found"] = "Non disponibile"; diff --git a/view/nb-no/hmessages.po b/view/nb-no/hmessages.po deleted file mode 100644 index bcb926d90..000000000 --- a/view/nb-no/hmessages.po +++ /dev/null @@ -1,9827 +0,0 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. -# -# Translators: -# Haakon Meland Eriksen , 2015-2016 -msgid "" -msgstr "" -"Project-Id-Version: Redmatrix\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 09:14+0000\n" -"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" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 -msgid "parent" -msgstr "opp et nivå" - -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 -msgid "Collection" -msgstr "Samling" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Viktigste" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Adressebok" - -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" -msgstr "Kalender" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Tidsplan innboks" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Tidsplan utboks" - -#: ../../Zotlabs/Storage/Browser.php:164 ../../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:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 -msgid "Files" -msgstr "Filer" - -#: ../../Zotlabs/Storage/Browser.php:227 -msgid "Total" -msgstr "Totalt" - -#: ../../Zotlabs/Storage/Browser.php:229 -msgid "Shared" -msgstr "Delt" - -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 -msgid "Create" -msgstr "Lag" - -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 -#: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 -msgid "Upload" -msgstr "Last opp" - -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 -#: ../../Zotlabs/Module/Sharedwithme.php:99 -msgid "Name" -msgstr "Navn" - -#: ../../Zotlabs/Storage/Browser.php:236 -msgid "Type" -msgstr "Type" - -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 -msgid "Size" -msgstr "Størrelse" - -#: ../../Zotlabs/Storage/Browser.php:238 -#: ../../Zotlabs/Module/Sharedwithme.php:102 -msgid "Last Modified" -msgstr "Sist endret" - -#: ../../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/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/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 -msgid "Delete" -msgstr "Slett" - -#: ../../Zotlabs/Storage/Browser.php:285 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Du bruker %1$s av din tilgjengelige lagringsplass." - -#: ../../Zotlabs/Storage/Browser.php:290 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Du bruker %1$s av %2$s tilgjengelig lagringsplass (%3$s%)" - -#: ../../Zotlabs/Storage/Browser.php:302 -msgid "WARNING:" -msgstr "ADVARSEL:" - -#: ../../Zotlabs/Storage/Browser.php:305 -msgid "Create new folder" -msgstr "Lag ny mappe" - -#: ../../Zotlabs/Storage/Browser.php:307 -msgid "Upload file" -msgstr "Last opp fil" - -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 -msgid "Permission denied" -msgstr "Tillatelse avvist" - -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 -#: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../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/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." - -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 -msgid "Not Found" -msgstr "Ikke funnet" - -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 -msgid "Page not found." -msgstr "Siden ikke funnet." - -#: ../../Zotlabs/Zot/Auth.php:138 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt." - -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Velkommen %s. Ekstern autentisering er vellykket." - -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 -msgid "Requested profile is not available." -msgstr "Forespurt profil er ikke tilgjengelig." - -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "En standardtekst om hva du bør gjøre som ny her" - -#: ../../Zotlabs/Module/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" - -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" - -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ugyldig element." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" - -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mine bokmerker" - -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortsett" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." - -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" - -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" - -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktinformasjonen." - -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Fant ikke valgt profil." - -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." -msgstr "Forbindelsen er oppdatert." - -#: ../../Zotlabs/Module/Connedit.php:229 -msgid "Failed to update connection record." -msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." - -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" -msgstr "er nå forbundet til" - -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "No" -msgstr "Nei" - -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "Yes" -msgstr "Ja" - -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." -msgstr "Fikk ikke tilgang til informasjonen i adresseboken." - -#: ../../Zotlabs/Module/Connedit.php:425 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." - -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 -msgid "Unable to set address book parameters." -msgstr "Ikke i stand til å angi parametre for adresseboken." - -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." -msgstr "Forbindelsen har blitt fjernet." - -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 -msgid "View Profile" -msgstr "Vis profil" - -#: ../../Zotlabs/Module/Connedit.php:522 -#, php-format -msgid "View %s's profile" -msgstr "Vis %s sin profil" - -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Refresh Permissions" -msgstr "Oppfrisk tillatelser" - -#: ../../Zotlabs/Module/Connedit.php:529 -msgid "Fetch updated permissions" -msgstr "Hent oppdaterte tillatelser" - -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Recent Activity" -msgstr "Nylig aktivitet" - -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "View recent posts and comments" -msgstr "Vis nylige innlegg og kommentarer" - -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Ikke blokker lenger" - -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blokker" - -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" - -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "This connection is blocked!" -msgstr "Denne forbindelsen er blokkert!" - -#: ../../Zotlabs/Module/Connedit.php:548 -msgid "Unignore" -msgstr "Ikke ignorer lenger" - -#: ../../Zotlabs/Module/Connedit.php:548 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../Zotlabs/Module/Connedit.php:551 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" - -#: ../../Zotlabs/Module/Connedit.php:552 -msgid "This connection is ignored!" -msgstr "Denne forbindelsen er ignorert!" - -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Unarchive" -msgstr "Ikke arkiver lenger" - -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Archive" -msgstr "Arkiver" - -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" - -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "This connection is archived!" -msgstr "Denne forbindelsen er arkivert!" - -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Unhide" -msgstr "Ikke skjul lenger" - -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Hide" -msgstr "Skjul" - -#: ../../Zotlabs/Module/Connedit.php: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:568 -msgid "This connection is hidden!" -msgstr "Denne forbindelsen er skjult!" - -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Delete this connection" -msgstr "Slett denne forbindelsen" - -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 -msgid "Me" -msgstr "Meg" - -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familie" - -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 -msgid "Friends" -msgstr "Venner" - -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Bekjente" - -#: ../../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:654 -msgid "Approve this connection" -msgstr "Godta denne forbindelsen" - -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Accept connection to allow communication" -msgstr "Godta denne forbindelsen for å tillate kommunikasjon" - -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Set Affinity" -msgstr "Angi nærhet" - -#: ../../Zotlabs/Module/Connedit.php:662 -msgid "Set Profile" -msgstr "Angi profil" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity & Profile" -msgstr "Angi nærhet og profil" - -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "none" -msgstr "ingen" - -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 -msgid "Connection Default Permissions" -msgstr "Forbindelsens standard tillatelser" - -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 -#, php-format -msgid "Connection: %s" -msgstr "Forbindelse: %s" - -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Apply these permissions automatically" -msgstr "Bruk disse tillatelsene automatisk" - -#: ../../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:705 -msgid "This connection's primary address is" -msgstr "Denne forbindelsens primære adresse er" - -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Available locations:" -msgstr "Tilgjengelige plasseringer:" - -#: ../../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:711 -msgid "Connection Tools" -msgstr "" - -#: ../../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:714 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Vurdering" - -#: ../../Zotlabs/Module/Connedit.php:715 -msgid "Slide to adjust your rating" -msgstr "Flytt for å justere din vurdering" - -#: ../../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:718 -msgid "Custom Filter" -msgstr "Tilpasset filter" - -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Only import posts with this text" -msgstr "Bare importer innlegg med disse ordene" - -#: ../../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:720 -msgid "Do not import posts with this text" -msgstr "Ikke importer innlegg med denne teksten" - -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "This information is public!" -msgstr "Denne informasjonen er offentlig!" - -#: ../../Zotlabs/Module/Connedit.php:727 -msgid "Connection Pending Approval" -msgstr "Forbindelse venter på godkjenning" - -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "inherited" -msgstr "arvet" - -#: ../../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:734 -msgid "Their Settings" -msgstr "Deres innstillinger" - -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "My Settings" -msgstr "Mine innstillinger" - -#: ../../Zotlabs/Module/Connedit.php:737 -msgid "Individual Permissions" -msgstr "Individuelle tillatelser" - -#: ../../Zotlabs/Module/Connedit.php:738 -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 "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:739 -msgid "" -"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." -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:740 -msgid "Last update:" -msgstr "Siste oppdatering:" - -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 -msgid "Public access denied." -msgstr "Offentlig tilgang avvist." - -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d vurdering" -msgstr[1] "%d vurderinger" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Kjønn:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Hjemmeside:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 -msgid "Age:" -msgstr "Alder:" - -#: ../../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:" - -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Beskrivelse:" - -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 -msgid "Hometown:" -msgstr "Hjemby:" - -#: ../../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/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 -msgid "Connect" -msgstr "Koble" - -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Offentlig forum:" - -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Nøkkelord:" - -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Ikke foreslå" - -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Felles forbindelser:" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Global katalog" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Lokal katalog" - -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Finn" - -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Finner:" - -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Kanalforslag" - -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "Neste side" - -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "Forrige side" - -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Sorteringsvalg" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetisk" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Omvendt alfabetisk" - -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Nyest til eldst" - -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Eldst til nyest" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." - -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Elementet ble ikke funnet." - -#: ../../Zotlabs/Module/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/Editblock.php:124 ../../include/conversation.php:1228 -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/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Blokkert" - -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorert" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Skjult" - -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Arkivert" - -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 -msgid "New" -msgstr "Nye" - -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nye forbindelser" - -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Vis ventende (nye) forbindelser" - -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle forbindelser" - -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Vis alle forbindelser" - -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Vis bare forbindelser som er blokkert" - -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Vis bare ignorerte forbindelser" - -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Vis bare arkiverte forbindelser" - -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Vis bare skjulte forbindelser" - -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Venter på godkjenning" - -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Endre forbindelse" - -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Slett forbindelse" - -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaladresse" - -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Nettverk" - -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Status" - -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Forbundet" - -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Godkjenn forbindelse" - -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Godkjenn" - -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignorer forbindelse" - -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Nylig aktivitet" - -#: ../../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:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "Søk" - -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Søk blant dine forbindelser" - -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Søk blant forbindelser" - -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." - -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Forsidebilder" - -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../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: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:217 -msgid "Image upload failed." -msgstr "Opplasting av bildet mislyktes." - -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../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:4270 -msgid "female" -msgstr "kvinne" - -#: ../../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:4272 -msgid "male" -msgstr "mann" - -#: ../../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: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:1661 -msgid "cover photo" -msgstr "forsidebilde" - -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "Bildet er ikke tilgjengelig." - -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "Last opp fil:" - -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "Velg en profil:" - -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Last opp forsidebilde" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "eller" - -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../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: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:390 -msgid "Crop Image" -msgstr "Beskjær bildet" - -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../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:393 -msgid "Done Editing" -msgstr "Avslutt redigering" - -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" - -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Endre innlegg" - -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalenderhendelsene er importert." - -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Ingen kalenderhendelser funnet." - -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." - -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." - -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." - -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." - -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "hendelse" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Endre tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Tittel på hendelse" - -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Påkrevd" - -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../Zotlabs/Module/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" -msgstr "Dette nettstedet er ikke en katalogtjener" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- velg -" - -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Lagre" - -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "Ugyldig melding" - -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "ingen resultater" - -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Leveringsrapport for %1$s" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanalsynkronisering er behandlet" - -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "lagt i kø" - -#: ../../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:127 -#: ../../Zotlabs/Module/Layouts.php:130 -msgid "Layout Description (Optional)" -msgstr "Layoutens beskrivelse (valgfritt)" - -#: ../../Zotlabs/Module/Editlayout.php:135 -msgid "Edit Layout" -msgstr "Endre layout" - -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" -msgstr "" - -#: ../../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." - -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Kunne ikke opprette personverngruppen." - -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 -msgid "Privacy group not found." -msgstr "Personverngruppen ble ikke funnet" - -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Personverngruppen er oppdatert." - -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Lag en gruppe av kanaler." - -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Personverngruppens navn:" - -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Medlemmer er synlig for andre kanaler" - -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Personverngruppen er fjernet." - -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Ikke i stand til å fjerne personverngruppen." - -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Personverngruppebehandler" - -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Medlemmer" - -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle tilkoblede kanaler" - -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Klikk på en kanal for å legge til eller fjerne." - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Del innhold fra Firefox til $Projectname" - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Skru på Firefox $Projectname tilbyderen" - -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" - -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" - -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." - -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Søk i dokumentasjon" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hjelp:" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "Hjelp" - -#: ../../Zotlabs/Module/Help.php:120 -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/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." - -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Ingenting å importere." - -#: ../../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/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Importert fil er tom." - -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." - -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." - -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Ingen kanal. Import mislyktes." - -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import ferdig." - -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." - -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Importer kanal" - -#: ../../Zotlabs/Module/Import.php:538 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." - -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" - -#: ../../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/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" - -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" - -#: ../../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/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" - -#: ../../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/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/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:183 -msgid "Comanche page description language help" -msgstr "Hjelp med Comanche sidebeskrivelsesspråk" - -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" -msgstr "Layout-beskrivelse" - -#: ../../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" - -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Denne handlingen er begrenset til medlemmer." - -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å fortsette" - -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." - -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanal" - -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ting" - -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanalen er utilgjengelig." - -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Forrige handling er omgjort." - -#: ../../Zotlabs/Module/Like.php: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:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 -msgid "status" -msgstr "status" - -#: ../../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: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: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: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: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: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: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: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:537 -msgid "Action completed." -msgstr "Handling ferdig." - -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "Tusen takk." - -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Import ferdig" - -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importer elementer" - -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : ikke en gyldig e-postadresse." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Bli med oss på $Projectname" - -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." - -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : meldingslevering feilet." - -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d melding sendt." -msgstr[1] "%d meldinger sendt." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du har ikke flere invitasjoner tilgjengelig" - -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Send invitasjoner" - -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" - -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Din melding:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Du er velkommen til å bli med i mitt fellesskap på $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Du må oppgi denne invitasjonskoden:" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrer ved enhver $Projectname-lokasjon (de er alle forbundet med hverandre)" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Skriv inn min $Projectname-adresse i nettstedets søkefelt." - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "eller besøke" - -#: ../../Zotlabs/Module/Invite.php:144 -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." - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Oppslag på plassering mislyktes." - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synkroniserer plasseringer" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Ingen plasseringer ble funnet." - -#: ../../Zotlabs/Module/Locs.php:116 -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 "" - -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Slett" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hubben ble ikke funnet." - -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Ikke i stand til å slå opp mottaker." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Ikke i stand til å kommunisere med forespurt kanal." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan ikke bekrefte forespurt kanal." - -#: ../../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:143 -msgid "Messages" -msgstr "Meldinger" - -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Innlegg tilbakekalt." - -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Samtale fjernet." - -#: ../../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:234 -msgid "Requested channel is not in this network" -msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." - -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Send privat melding" - -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Til:" - -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Emne:" - -#: ../../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:253 -msgid "Send" -msgstr "Send" - -#: ../../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:340 -msgid "Delete message" -msgstr "Slett melding" - -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Leveringsrapport" - -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Tilbakekall innlegg" - -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Innlegget har blitt tilbakekalt." - -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Slett samtale" - -#: ../../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:367 -msgid "Send Reply" -msgstr "Send svar" - -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Din melding til %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 har laget %1$.0f av %2$.0f tillatte kanaler." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Lag en ny kanal" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanalstyring" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Gjeldende kanal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Bytt til en av dine kanaler ved å velge den." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standardkanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Gjør til standard" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nye meldinger" - -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nye introduksjoner" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Tilbakestill passord" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klikke her for å logge inn" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the 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." -msgstr "Ikke i stand til å oppdatere meny." - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Ikke i stand til å lage meny." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menynavn" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menytittel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Synlig på websiden - la stå tomt for ingen tittel" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Tillat bokmerker" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyen kan brukes til å lagre lagrede bokmerker" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Send inn og fortsett" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menyer" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bokmerker tillatt" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Slett denne menyen" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Endre menyinnholdet" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Endre denne menyen" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menyen kunne ikke bli slettet." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menyen ble ikke funnet." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Endre meny" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Legg til eller fjern punkter i denne menyen" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menynavn" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Må være unik, ses bare av deg" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menytittel" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menytittelen andre ser" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Tillat bokmerker" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Ikke funnet." - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s er %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Stemning" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Angi ditt nåværende humør og fortell dine venner" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profiltreff" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "er interessert i:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Ingen treff" - -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Ingen slik kanal" - -#: ../../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." -msgstr "Klarer ikke å lage element." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Ikke i stand til å oppdatere menyelement." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Ikke i stand til å legge til menyelement." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Menyelement Tillatelser" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Lenkenavn" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Lenke- eller undermeny-mål" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Bruk magic-autent hvis mulig" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Åpne lenke i nytt vindu" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Ordne i liste" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Høyere tall vil synke mot bunnen av listen" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Send inn og avslutt" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Send inn og fortsett" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Meny:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Lenkemål" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Endre meny" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Endre element" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Slett element" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nytt element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Endre denne menybeholderen" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Legg til menyelement" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Slett dette menyelementet" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Endre dette menyelementet" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menyelement ble ikke funnet." - -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menyelement slettet." - -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menyelement kunne ikke bli slettet." - -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Endre menyelement" - -#: ../../Zotlabs/Module/Mitem.php:230 -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." - -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# Kontoer" - -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# blokkerte kontoer" - -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# utgåtte kontoer" - -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# kontoer som holder på å gå ut" - -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Kanaler" - -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# hoved" - -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# kloner" - -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Meldingskøer" - -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administrasjon" - -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Sammendrag" - -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Registrerte kontoer" - -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Ventende registreringer" - -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Registrerte kanaler" - -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Aktive tilleggsfunksjoner" - -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versjon" - -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Nettstedsinnstillinger er oppdatert." - -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 -msgid "Default" -msgstr "Standard" - -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "mobil" - -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "eksperimentell" - -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "ikke støttet" - -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - med godkjenning" - -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mitt nettsted er ikke en offentlig tjeneste" - -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Mitt nettsted gir kun tilgang mot betaling" - -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Mitt nettsted har kun gratis tilgang" - -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" - -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 -msgid "Site" -msgstr "Nettsted" - -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrering" - -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Last opp fil" - -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Retningslinjer" - -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avansert" - -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nettstedets navn" - -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Administratorinformasjon" - -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" - -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Systemspråk" - -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Systemtema" - -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" - -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" - -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Tillat strømmer som forbindelser" - -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Tung bruk av systemressurser)" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Største bildestørrelse" - -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." - -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Tillater dette nettstedet registrering av nye medlemmer?" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Kun inviterte" - -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja." - -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Registreringstekst" - -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Vil bli vist på en fremtredende måte på registreringssiden." - -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" - -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil." - -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Bevar URL-en til nettstedets hjemmeside" - -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere" - -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" - -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." - -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Tillatte vennedomener" - -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." - -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" - -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Ikke tillatte e-postdomener" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." - -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Bekreft e-postadresser" - -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." - -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Tving publisering" - -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." - -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Importer offentlige innholdsstrømmer" - -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert." - -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert." - -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Katalogtjener URL" - -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standard katalogtjener" - -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Brukernavn mellomtjener" - -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Mellomtjener URL" - -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Nettverk tidsavbrudd" - -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Leveringsinterval" - -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Leveranser per prosess" - -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Spørreintervall" - -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Største belastningsgjennomsnitt" - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Antall dager før importert innhold (nettet/nettverk) utgår" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 dersom importert innhold ikke skal utgå" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "Av" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "På" - -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Lås funksjon %s" - -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Håndter tilleggsfunksjoner" - -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Ingen tjener funnet" - -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "for kanalen" - -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "på tjener" - -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Tjener" - -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 -msgid "Security" -msgstr "Sikkerhet" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Blokker offentlig tilgang" - -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." - -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Tillat kommunikasjon med bare disse nettstedene" - -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard" - -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Blokker kommunikasjon fra disse nettstedene" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Tillat kommunikasjon med bare disse kanalene" - -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard" - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Blokker kommunikasjon fra disse kanalene" - -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Blokker innbygget HTML fra disse domenene" - -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Oppdateringen har blitt merket som en suksess" - -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s feilet. Sjekk systemlogger." - -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble gjennomført med suksess." - -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." - -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdatering av funksjon %s kunne ikke finnes." - -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." - -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" - -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" - -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" - -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Køstatistikk" - -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Totalt antall oppføringer" - -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Prioritet" - -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Mål-URL" - -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Merk hub som permanent offline" - -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Tøm køen for denne hubben" - -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Siste kjente kontakt" - -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s konto blokkert/ikke blokkert lenger" -msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" - -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s konto slettet" -msgstr[1] "%s kontoer slettet" - -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Kontoen ble ikke funnet" - -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Kontoen '%s' slettet" - -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Kontoen '%s' blokkert" - -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Kontoen '%s' er ikke blokkert lenger" - -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 -msgid "Accounts" -msgstr "Kontoer" - -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "velg alle" - -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Dato for forespørsel" - -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Ingen registreringer." - -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Avslå" - -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle kanaler" - -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Registreringsdato" - -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Siste innlogging" - -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Utløper" - -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Tjenesteklasse" - -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?" - -#: ../../Zotlabs/Module/Admin.php:1055 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" -msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" - -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s kanal med kode tillatt/ikke tillatt" -msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" - -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal slettet" -msgstr[1] "%s kanaler slettet" - -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanalen ble ikke funnet" - -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' er slettet" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanalen '%s' er sensurert" - -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanalen '%s' er ikke sensurert lenger" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Kanal '%s' kode tillatt" - -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Kanal '%s' kode ikke tillatt" - -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 -msgid "Channels" -msgstr "Kanaler" - -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Sensurer" - -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Ikke sensurer lenger" - -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Tillat kode" - -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Ikke tillat kode" - -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 -msgid "Channel" -msgstr "Kanal" - -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" - -#: ../../Zotlabs/Module/Admin.php:1226 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" - -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" - -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tilleggsfunksjonen %s er avskrudd." - -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tilleggsfunksjonen %s er påskrudd." - -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Skru av" - -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Skru på" - -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 -msgid "Plugins" -msgstr "Tilleggsfunksjoner" - -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Skru av og på" - -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 -msgid "Settings" -msgstr "Innstillinger" - -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Forfatter:" - -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Vedlikeholder:" - -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimum prosjektversjon:" - -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maksimum prosjektversjon:" - -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimum PHP-versjon:" - -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Krever:" - -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Skrudd av - versjonsinkompatibilitet" - -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 -msgid "Install" -msgstr "Installer" - -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" -msgstr "Oppdater" - -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Ingen temaer er funnet." - -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Skjermbilde" - -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 -msgid "Themes" -msgstr "Temaer" - -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Eksperimentelt]" - -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Ingen støtte]" - -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." - -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 -msgid "Logs" -msgstr "Logger" - -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Tøm" - -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Feilsøking" - -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Loggfil" - -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nytt profilfelt" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Feltets kallenavn" - -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systemnavnet til feltet" - -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Inndata-type" - -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Feltnavn" - -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Merkelapp på profilsider" - -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Hjelpetekst" - -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Tilleggsinformasjon (valgfritt)" - -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Feltdefinisjonen ble ikke funnet" - -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Endre profilfelt" - -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 -msgid "Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "" - -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installert." - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." - -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Innbyggingskode" - -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Endre app" - -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Lag app" - -#: ../../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 "" - -#: ../../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/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Velg en bokmerkemappe" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Lagre bokmerke" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL-en til bokmerket" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Eller skriv nytt navn på bokmerkemappe" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Passordene er ikke like." - -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen." - -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning av nettstedets eier." - -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." - -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Registrering ved dette nettstedet er skrudd av." - -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Registrering ved dette nettstedet skjer på godkjenning." - -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrer ved et annet tilsluttet nettsted." - -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen." - -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Tjenesteavtale" - -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Jeg godtar %s for dette nettstedet" - -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet." - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Din e-postadresse" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Velg et passord" - -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Vennligst skriv ditt passord en gang til" - -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Vennligst skriv din invitasjonskode" - -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "nei" - -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "ja" - -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." - -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 -msgid "Register" -msgstr "Registrer" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Gå videre for å lage din første kanal" - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Vennligst logg inn." - -#: ../../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:56 -msgid "Remove This Account" -msgstr "Slett denne kontoen" - -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "WARNING: " -msgstr "ADVARSEL:" - -#: ../../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: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: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: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: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:60 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Remove Account" -msgstr "Slett konto" - -#: ../../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:58 -msgid "Remove This Channel" -msgstr "Fjern denne kanalen" - -#: ../../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: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: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:62 ../../Zotlabs/Module/Settings.php:1124 -msgid "Remove Channel" -msgstr "Fjern kanal" - -#: ../../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/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementer merket med: %s" - -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Søkeresultater for: %s" - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Ingen restriksjoner er funnet i tjenesteklasse." - -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "Navn er påkrevd" - -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "Nøkkel og hemmelighet er påkrevd" - -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "Ikke gyldig e-post." - -#: ../../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: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:254 -msgid "Password verification failed." -msgstr "Passordbekreftelsen mislyktes." - -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Passordene stemmer ikke overens. Passord uforandret." - -#: ../../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:279 -msgid "Password changed." -msgstr "Passord endret." - -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." - -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "Innstillinger oppdatert." - -#: ../../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:592 -msgid "Name of application" -msgstr "Navn på program" - -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../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:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "Omdirigering" - -#: ../../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:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "Ikon-URL" - -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Valgfritt" - -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "Programmet ble ikke funnet." - -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "Tilkoblede app-er" - -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "Klientnøkkel starter med" - -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "Ikke noe navn" - -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "Fjern tillatelse" - -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "Ingen funksjonsinnstillinger er konfigurert" - -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "Funksjons-/Tilleggsinnstillinger" - -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "Kontoinnstillinger" - -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "Nåværende passord" - -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "Skriv nytt passord" - -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "Bekreft nytt passord" - -#: ../../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:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "E-postadresse:" - -#: ../../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:729 -msgid "Additional Features" -msgstr "Ekstra funksjoner" - -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "Koblingsinnstillinger" - -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "Ikke noe spesielt tema for mobile enheter" - -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Eksperimentelt)" - -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "Visningsinnstillinger" - -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "Temainnstillinger" - -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "Tilpassede temainnstillinger" - -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "Innholdsinnstillinger" - -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "Visningstema:" - -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobiltema:" - -#: ../../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: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:849 -msgid "Enable user zoom on mobile devices" -msgstr "Skru på brukerstyrt zoom på mobile enheter" - -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Oppdater nettleser hvert xx sekunder" - -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekunder, ikke noe maksimum" - -#: ../../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:851 -msgid "Maximum of 100 items" -msgstr "Maksimum 100 elementer" - -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Vis emoticons (smilefjes) som bilder" - -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "Lenk innleggets tittel til kilden" - -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Systemsidens layoutbehandler - (avansert)" - -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Bruk blogg-/listemodus på kanalsiden" - -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(kommentarer vist separat)" - -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "Bruk blogg-/liste-modus på nettverkssiden" - -#: ../../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: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:860 -msgid "Grid page max height of content (in pixels)" -msgstr "Nettverkssidens makshøyde for innhold (i piksler)" - -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "Ingen unntatt deg selv" - -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "Bare de du spesifikt tillater" - -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "Godkjente forbindelser" - -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "Enhver forbindelse" - -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "Enhver ved dette nettstedet" - -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "Enhver i dette nettverket" - -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "Enhver som er autentisert" - -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "Enhver på Internett" - -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "Publiser din standardprofil i nettverkskatalogen" - -#: ../../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:990 -msgid "Your channel address is" -msgstr "Din kanaladresse er" - -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "Kanalinnstillinger" - -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "Grunninnstillinger" - -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 -msgid "Full Name:" -msgstr "Fullt navn:" - -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "Din tidssone:" - -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "Standard plassering ved innlegg:" - -#: ../../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:1044 -msgid "Use Browser Location:" -msgstr "Bruk nettleseren sin plassering:" - -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "Voksent innhold" - -#: ../../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:1048 -msgid "Security and Privacy Settings" -msgstr "Sikkerhets- og personverninnstillinger" - -#: ../../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:1053 -msgid "Hide my online presence" -msgstr "Skjul min tilstedeværelse online" - -#: ../../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:1055 -msgid "Simple Privacy Settings:" -msgstr "Enkle personverninnstillinger:" - -#: ../../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: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:1058 -msgid "Private - default private, never open or public" -msgstr "Privat - standard er privat, aldri åpen eller offentlig" - -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blokkert - standard blokkert til/fra alle" - -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "Tillat andre å merke dine innlegg" - -#: ../../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:1063 -msgid "Advanced Privacy Settings" -msgstr "Avanserte personverninnstillinger" - -#: ../../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:1065 -msgid "0 or blank to use the website limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksimalt antall venneforespørsler per dag:" - -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "Kan redusere søppelpostaktivitet" - -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" -msgstr "" - -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "Kategori med kanaltillatelser:" - -#: ../../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:1078 -msgid "Useful to reduce spamming" -msgstr "Nyttig for å redusere søppelpost" - -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "Varslingsinnstillinger" - -#: ../../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:1083 -msgid "accepting a friend request" -msgstr "aksepterer en venneforespørsel" - -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "blir med i et forum/miljø" - -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "gjør en interessant profilendring" - -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "Send en varsel-e-post når:" - -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "Du har mottatt en forespørsel om forbindelse" - -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "Dine forbindelser er bekreftet" - -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "Noen skriver på din profilvegg" - -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "Noen skriver en oppfølgende kommentar" - -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "Du mottar en privat melding" - -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "Du mottok et venneforslag" - -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "Du merkes i et innlegg" - -#: ../../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:1097 -msgid "Show visual notifications including:" -msgstr "Vis visuelle varslinger om:" - -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "Usett nettverksaktivitet" - -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "Usett kanalaktivitet" - -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "Usette private meldinger" - -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "Anbefalt" - -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "Kommende hendelser" - -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "Hendelser idag" - -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "Kommende fødselsdager" - -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "Ikke tilgjengelig i alle temaer" - -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "System (personlige) varslinger" - -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "System infomeldinger" - -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "System kritiske varsel" - -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "Nye forbindelser" - -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "Systemregistreringer" - -#: ../../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: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:1112 -msgid "Must be greater than 0" -msgstr "Må være større enn 0" - -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "Avanserte innstillinger for konto/sidetype" - -#: ../../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: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:1119 -msgid "Miscellaneous Settings" -msgstr "Diverse innstillinger" - -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "Standard mappe for opplasting av bilder" - -#: ../../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:1121 -msgid "Default file upload folder" -msgstr "Standard mappe for opplasting av filer" - -#: ../../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:1125 -msgid "Remove this channel." -msgstr "Fjern denne kanalen." - -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname Firefox Share tilbyder" - -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "Start uken med mandag i kalenderen" - -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname-tjener - oppsett" - -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Fikk ikke kontakt med databasen." - -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS." - -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Kunne ikke lage tabellen." - -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Databasen til ditt nettsted har blitt installert." - -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." - -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Vennligst les filen \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Systemsjekk" - -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Sjekk igjen" - -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Databaseforbindelse" - -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "For å installere $Projectname må du oppgi hvordan din database kan kontaktes." - -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter." - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Navn på databasetjener" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Standard er 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Databaseport" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Kommunikasjonsportnummer - bruk 0 for standard" - -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Database innloggingsnavn" - -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Database innloggingspassord" - -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Databasenavn" - -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Databasetype" - -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "E-postadressen til administrator ved nettstedet" - -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet." - -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Nettstedets URL" - -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." - -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Vennligst velg en standard tidssone for ditt nettsted" - -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Nettstedets innstillinger" - -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Skru på avanserteWhat next" -msgstr "

Hva gjenstår

" - -#: ../../Zotlabs/Module/Setup.php:720 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren." - -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Filer: delt med meg" - -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NY" - -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Fjern alle filer" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -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" - -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Objektlagring: mislyktes" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ting lagt til" - -#: ../../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/Thing.php:259 -msgid "Show Thing" -msgstr "Vis ting" - -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "element ble ikke funnet." - -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Endre ting" - -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Velg en profil" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Legg inn en aktivitet" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sender bare til seere av den aktuelle profilen" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Navn på ting for eksempel noe" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL til ting (valgfritt)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL til bilde av ting (valgfritt)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Legg til ting i din profil" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Eksporter kanal" - -#: ../../Zotlabs/Module/Uexport.php:57 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." - -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Eksporter innhold" - -#: ../../Zotlabs/Module/Uexport.php:59 -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/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Eksporter dine innlegg fra et bestemt år" - -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." - -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"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/Viewconnections.php:62 -msgid "No connections." -msgstr "Ingen forbindelser." - -#: ../../Zotlabs/Module/Viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %s sin profil [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "Vis forbindelser" - -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Kilde til element" - -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Websider" - -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Handlinger" - -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Sidelenke" - -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Sidetittel" - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan oppslag" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Slå opp xchan som begynner med (eller webbie):" - -#: ../../Zotlabs/Lib/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" - -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Duplikat romnavn" - -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ugyldig rom-spesifisering" - -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Rommet ble ikke funnet." - -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Rommet er fullt" - -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 -msgid "$Projectname Notification" -msgstr "$Projectname varsling" - -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 -msgid "$projectname" -msgstr "$projectname" - -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 -msgid "Thank You," -msgstr "Tusen takk," - -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 -#, php-format -msgid "%s Administrator" -msgstr "%s administrator" - -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s" - -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendte deg %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "en privat melding" - -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." - -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" - -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" - -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg" - -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notify] %s merket deg" - -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s merket deg på %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notify] %1$s prikket deg" - -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s dyttet deg på %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notify] %s merket ditt innlegg" - -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s merket ditt innlegg på %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notify] Introduksjon mottatt" - -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kan besøke profilen deres på %s" - -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." - -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notify] Venneforslag mottatt" - -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" - -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " - -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Navn:" - -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Bilde:" - -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." - -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notify]" - -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "laget et nytt innlegg" - -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterte på %s sitt innlegg" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Privat melding" - -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 -msgid "Select" -msgstr "Velg" - -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Lagre i mappe" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Jeg vil delta" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Jeg deltar ikke" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Jeg vil kanskje delta" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Jeg er enig" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Jeg er uenig" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Jeg avstår" - -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Legg til stjerne" - -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Fjern stjerne" - -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Skru av og på stjernestatus" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "stjernemerket" - -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 -msgid "Message signature validated" -msgstr "Innleggets signatur er bekreftet" - -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 -msgid "Message signature incorrect" -msgstr "Innleggets signatur er feil" - -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Legg til merkelapp" - -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "liker" - -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "misliker" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Del dette" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "del" - -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Leveringsrapport" - -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" - -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Vis %s sin profil - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "til" - -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "via" - -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" - -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg:" - -#: ../../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:722 -#, php-format -msgid "last edited: %s" -msgstr "sist endret: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 -#, php-format -msgid "Expires: %s" -msgstr "Utløper: %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Lagre bokmerker" - -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Legg til i kalender" - -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Merk alle som sett" - -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Vis alle" - -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 -msgid "Bold" -msgstr "Uthevet" - -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 -msgid "Italic" -msgstr "Kursiv" - -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 -msgid "Underline" -msgstr "Understreket" - -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 -msgid "Quote" -msgstr "Sitat" - -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 -msgid "Code" -msgstr "Kode" - -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Bilde" - -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Sett inn lenke" - -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Video" - -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Ingen brukernavn ble funnet i importfilen." - -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." - -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" - -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Kategorier" - -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Merkelapper" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Nøkkelord" - -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "har" - -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "har" - -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "ønsker" - -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "ønsker" - -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "liker" - -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "misliker" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Starter:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Slutter:" - -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." - -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Ikke spesifisert" - -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Trenger handling" - -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Ferdig" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "Igang" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Avbrutt" - -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." - -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." - -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Ukjent)" - -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." - -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Synlig bare for deg." - -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." - -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." - -#: ../../include/items.php:1144 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." - -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." - -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." - -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." - -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Personverngruppen er tom." - -#: ../../include/items.php:3916 -#, php-format -msgid "Privacy group: %s" -msgstr "Personverngruppe: %s" - -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." - -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "profilbilde" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[ikke noe emne]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kan ikke avgjøre avsender." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." - -#: ../../include/text.php:428 -msgid "prev" -msgstr "forrige" - -#: ../../include/text.php:430 -msgid "first" -msgstr "første" - -#: ../../include/text.php:459 -msgid "last" -msgstr "siste" - -#: ../../include/text.php:462 -msgid "next" -msgstr "neste" - -#: ../../include/text.php:472 -msgid "older" -msgstr "eldre" - -#: ../../include/text.php:474 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Ingen forbindelser" - -#: ../../include/text.php:888 -#, php-format -msgid "View all %s connections" -msgstr "Vis alle %s forbindelser" - -#: ../../include/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" -msgstr "Nytt vindu" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" - -#: ../../include/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" -msgstr "%1$s er nå forbundet med %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s prikket %2$s" - -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vis %s sin profile @ %s" - -#: ../../include/conversation.php:710 -msgid "Categories:" -msgstr "Kategorier:" - -#: ../../include/conversation.php:711 -msgid "Filed under:" -msgstr "Sortert under:" - -#: ../../include/conversation.php:738 -msgid "View in context" -msgstr "Vis i sammenheng" - -#: ../../include/conversation.php:847 -msgid "remove" -msgstr "fjern" - -#: ../../include/conversation.php:852 -msgid "Delete Selected Items" -msgstr "Slett valgte elementer" - -#: ../../include/conversation.php:948 -msgid "View Source" -msgstr "Vis kilde" - -#: ../../include/conversation.php:949 -msgid "Follow Thread" -msgstr "Følg tråd" - -#: ../../include/conversation.php:950 -msgid "Unfollow Thread" -msgstr "Ikke følg tråd" - -#: ../../include/conversation.php:955 -msgid "Activity/Posts" -msgstr "Aktivitet/Innlegg" - -#: ../../include/conversation.php:957 -msgid "Edit Connection" -msgstr "Endre forbindelse" - -#: ../../include/conversation.php:958 -msgid "Message" -msgstr "Melding" - -#: ../../include/conversation.php:1075 -#, php-format -msgid "%s likes this." -msgstr "%s liker dette." - -#: ../../include/conversation.php:1075 -#, php-format -msgid "%s doesn't like this." -msgstr "%s liker ikke dette." - -#: ../../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: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:1087 -msgid "and" -msgstr "og" - -#: ../../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:1091 -#, php-format -msgid "%s like this." -msgstr "%s liker dette." - -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s don't like this." -msgstr "%s liker ikke dette." - -#: ../../include/conversation.php:1130 -msgid "Set your location" -msgstr "Angi din plassering" - -#: ../../include/conversation.php:1131 -msgid "Clear browser location" -msgstr "Fjern nettleserplassering" - -#: ../../include/conversation.php:1177 -msgid "Tag term:" -msgstr "Merkelapp:" - -#: ../../include/conversation.php:1178 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" - -#: ../../include/conversation.php:1210 -msgid "Page link name" -msgstr "Sidens lenkenavn" - -#: ../../include/conversation.php:1213 -msgid "Post as" -msgstr "Lag innlegg som" - -#: ../../include/conversation.php:1223 -msgid "Toggle voting" -msgstr "Skru av eller på stemming" - -#: ../../include/conversation.php:1231 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorier (valgfri, kommaseparert liste)" - -#: ../../include/conversation.php:1254 -msgid "Set publish date" -msgstr "Angi publiseringsdato" - -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 -msgid "Discover" -msgstr "Oppdage" - -#: ../../include/conversation.php:1506 -msgid "Imported public streams" -msgstr "Importerte offentlige strømmer" - -#: ../../include/conversation.php:1511 -msgid "Commented Order" -msgstr "Kommentert" - -#: ../../include/conversation.php:1514 -msgid "Sort by Comment Date" -msgstr "Sorter etter kommentert dato" - -#: ../../include/conversation.php:1518 -msgid "Posted Order" -msgstr "Lagt inn" - -#: ../../include/conversation.php:1521 -msgid "Sort by Post Date" -msgstr "Sorter etter innleggsdato" - -#: ../../include/conversation.php:1529 -msgid "Posts that mention or involve you" -msgstr "Innlegg som nevner eller involverer deg" - -#: ../../include/conversation.php:1538 -msgid "Activity Stream - by date" -msgstr "Aktivitetsstrøm - etter dato" - -#: ../../include/conversation.php:1544 -msgid "Starred" -msgstr "Stjerne" - -#: ../../include/conversation.php:1547 -msgid "Favourite Posts" -msgstr "Favorittinnlegg" - -#: ../../include/conversation.php:1554 -msgid "Spam" -msgstr "Søppel" - -#: ../../include/conversation.php:1557 -msgid "Posts flagged as SPAM" -msgstr "Innlegg merket som SØPPEL" - -#: ../../include/conversation.php:1614 -msgid "Status Messages and Posts" -msgstr "Statusmeldinger og -innlegg" - -#: ../../include/conversation.php:1623 -msgid "About" -msgstr "Om" - -#: ../../include/conversation.php:1626 -msgid "Profile Details" -msgstr "Profildetaljer" - -#: ../../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:1678 -msgid "Saved Bookmarks" -msgstr "Lagrede bokmerker" - -#: ../../include/conversation.php:1688 -msgid "Manage Webpages" -msgstr "Håndtere websider" - -#: ../../include/conversation.php:1747 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Deltar" -msgstr[1] "Deltar" - -#: ../../include/conversation.php:1750 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Deltar ikke" -msgstr[1] "Deltar ikke" - -#: ../../include/conversation.php:1753 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Ikke bestemt" -msgstr[1] "Ikke bestemt" - -#: ../../include/conversation.php:1756 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Enig" -msgstr[1] "Enige" - -#: ../../include/conversation.php:1759 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Uenig" -msgstr[1] "Uenige" - -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Avstår" -msgstr[1] "Avstår" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Ofte" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Hver time" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "To ganger daglig" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Daglig" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ukentlig" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Månedlig" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "For tiden mann" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "For tiden kvinne" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "For det meste mann" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "For det meste kvinne" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transkjønnet" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "interkjønnet" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksuell" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafroditt" - -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Intetkjønn" - -#: ../../include/selectors.php:49 -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" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Menn" - -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Kvinner" - -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homo" - -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisk" - -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Ingen preferanse" - -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksuell" - -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksuell" - -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Avholdende" - -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jomfru" - -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Avviker" - -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Masse" - -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Ikke-seksuell" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Enslig" - -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Ensom" - -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Tilgjengelig" - -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Ikke tilgjengelig" - -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Er forelsket" - -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Betatt" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Sammen med" - -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Utro" - -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexavhengig" - -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Venner med frynsegoder" - -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Tilfeldig" - -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Forlovet" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Gift" - -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gift i fantasien" - -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partnere" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samboer" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Samboer" - -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Lykkelig" - -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Ikke på utkikk" - -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Partnerbytte" - -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Bedratt" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separert" - -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Ustabilt" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Skilt" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Skilt i fantasien" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Enke" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Usikkert" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Det er komplisert" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Bryr meg ikke" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Spør meg" - -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" - -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "" - -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Offentlig" - -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "" - -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "" - -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../include/PermissionDescription.php:161 -msgid "" -"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" -msgstr "Generelle funksjoner" - -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Innholdet utløper" - -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" - -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Flere profiler" - -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Mulig å lage flere profiler" - -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Avanserte profiler" - -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Ytterlige seksjoner og utvalg til profilen" - -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profil-import/-eksport" - -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" - -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Web-sider" - -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Tilby kontrollerte web-sider på din kanal" - -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Skjul vurdering" - -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." - -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "Private merknader" - -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)" - -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "Navigasjon kanalvalg" - -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Endre kanaler direkte fra navigasjonsmenyen" - -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "Bildeplassering" - -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." - -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" -msgstr "" - -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." -msgstr "" - -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "" - -#: ../../include/features.php:60 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "" - -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "Ekspertmodus" - -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" - -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premiumkanal" - -#: ../../include/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:67 -msgid "Post Composition Features" -msgstr "Funksjoner for å lage innlegg" - -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Store bilder" - -#: ../../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: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:72 -msgid "Even More Encryption" -msgstr "Enda mer kryptering" - -#: ../../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:73 -msgid "Enable Voting Tools" -msgstr "Skru på verktøy for å stemme" - -#: ../../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:74 -msgid "Delayed Posting" -msgstr "Tidfest publisering" - -#: ../../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:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Forhindre duplikat av innlegg/kommentarer" - -#: ../../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:81 -msgid "Network and Stream Filtering" -msgstr "Nettverk- og strømfiltrering" - -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Søk etter dato" - -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Mulighet for å velge innlegg etter datoområde" - -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Personverngrupper" - -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Skru på håndtering og valg av personverngrupper" - -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Lagre søkeuttrykk for senere bruk" - -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Nettverk personlig fane" - -#: ../../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:86 -msgid "Network New Tab" -msgstr "Nettverk Ny fane" - -#: ../../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:87 -msgid "Affinity Tool" -msgstr "Nærhetsverktøy" - -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer strømaktiviteten etter releasjonsdybde" - -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Filtrer forbindelser" - -#: ../../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:89 -msgid "Show channel suggestions" -msgstr "Vis kanalforslag" - -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Innlegg-/Kommentar-verktøy" - -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Felleskapsmerkelapper" - -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Mulighet til å merke eksisterende meldinger" - -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Innleggskategorier" - -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Legg kategorier til dine innlegg" - -#: ../../include/features.php:97 -msgid "Emoji Reactions" -msgstr "" - -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "" - -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "Mulighet til å sortere innlegg i mapper" - -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "Mislik innlegg" - -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "Mulighet til å mislike innlegg/kommentarer" - -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "Stjerneinnlegg" - -#: ../../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:101 -msgid "Tag Cloud" -msgstr "Merkelappsky" - -#: ../../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 " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." - -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Legg nye forbindelser i denne personverngruppen" - -#: ../../include/group.php:289 -msgid "edit" -msgstr "endre" - -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Endre gruppe" - -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Legg til personverngruppe" - -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanaler uten personverngruppe" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Slett dette elementet?" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Vis mindre" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] Utvid" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] Lukk" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Passordet er for kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Passordene er ikke like" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "alle" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Hemmelig passordsetning" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hint om passordsetning" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Lukk alle" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Ikke noe nytt her" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Vurder denne kanalen (dette er offentlig)" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beskriv (valgfritt)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vennligst skriv inn en lenke URL:" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "siden" - -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "fra nå" - -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "mindre enn ett minutt" - -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "omtrent et minutt" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutter" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "omtrent en time" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "omtrent %d timer" - -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "en dag" - -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dager" - -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "omtrent en måned" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d måneder" - -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "omtrent et år" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d år" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mai" - -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Jan" - -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" - -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" - -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" - -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mai" - -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Jun" - -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Jul" - -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Aug" - -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Sep" - -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Okt" - -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" - -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Des" - -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Søn" - -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Man" - -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Tirs" - -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Ons" - -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Tors" - -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Fre" - -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Lør" - -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "idag" - -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "måned" - -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "uke" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Hele dagen" - -#: ../../include/network.php:657 -msgid "view full size" -msgstr "vis full størrelse" - -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Uten emne" - -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" - -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" - -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bildefilen er tom." - -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Bildelagring mislyktes." - -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "et nytt bilde" - -#: ../../include/photos.php:299 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s la inn %2$s til %3$s" - -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Last opp nye bilder" - -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "Ugyldig datapakke" - -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "Ikke i stand til å sjekke kanalsignaturen" - -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Ikke i stand til å bekrefte signaturen til %s" - -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "Målets signatur er ugyldig" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny side" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Tittel" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se min normale strøm og innlegg" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standard kanalprofil" - -#: ../../include/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)" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Theme settings" -msgstr "Temainnstillinger" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Velg skjema" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Narrow navbar" -msgstr "Smal navigasjonslinje" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar background color" -msgstr "Navigasjonslinjens bakgrunnsfarge" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient top color" -msgstr "Navigasjonslinjens graderte toppfarge" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation bar gradient bottom color" -msgstr "Navigasjonslinjens graderte bunnfarge" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient top color" -msgstr "Aktiv navigasjonsknapp sin graderte toppfarge" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation active button gradient bottom color" -msgstr "Aktiv navigasjonsknapp sin graderte bunnfarge" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar border color " -msgstr "Navigasjonslinjens kantfarge" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar icon color " -msgstr "Navigasjonslinjens ikonfarge" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Navigation bar active icon color " -msgstr "Navigasjonslinjens aktive ikoners farge" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "link color" -msgstr "lenkefarge" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set font-color for banner" -msgstr "Angi skriftfargen for banneret" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background color" -msgstr "Angi bakgrunnsfargen" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background image" -msgstr "Angi bakgrunnsbilde" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of items" -msgstr "Angi bakgrunnsfargen til elementer" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the background color of comments" -msgstr "Angi bakgrunnsfargen til kommentarer" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the border color of comments" -msgstr "Angi kantfargen til kommentarer" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the indent for comments" -msgstr "Angi innrykket til kommentarer" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the basic color for item icons" -msgstr "Angi grunnfargen for elementikoner" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set the hover color for item icons" -msgstr "Angi fargen til elementikoner ved berøring" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for the entire application" -msgstr "Angi skriftstørrelsen for hele programmet" - -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Example: 14px" -msgstr "Eksempel: 14px" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-size for posts and comments" -msgstr "Angi skriftstørrelse for innlegg og kommentarer" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set font-color for posts and comments" -msgstr "Angi skriftfargen for innlegg og kommentarer" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set radius of corners" -msgstr "Angi hjørneradius" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set shadow depth of photos" -msgstr "Angi skyggedybden til bilder" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set maximum width of content region in pixel" -msgstr "Angi største bredde for innholdsregionen i pixler" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Leave empty for default width" -msgstr "La feltet stå tomt for å bruke standard bredde" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Left align page content" -msgstr "Venstrejuster sideinnhold" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Angi minste dekkevne for navigasjonslinjen - for å skjule den" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of conversation author photo" -msgstr "Angi størrelsen for samtalens forfatterbilde" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Set size of followup author photos" -msgstr "Angi størrelsen på forfatterbilder ved oppfølging" - -#: ../../boot.php:1162 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "" - -#: ../../boot.php:1162 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "" - -#: ../../boot.php:1480 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Oppdatering %s mislyktes. Se feilloggen." - -#: ../../boot.php:1483 -#, php-format -msgid "Update Error at %s" -msgstr "Oppdateringsfeil ved %s" - -#: ../../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 "Password" -msgstr "Passord" - -#: ../../boot.php:1707 -msgid "Remember me" -msgstr "Husk meg" - -#: ../../boot.php:1710 -msgid "Forgot your password?" -msgstr "Glemt passordet ditt?" - -#: ../../boot.php:2276 -msgid "toggle mobile" -msgstr "Skru på mobil" - -#: ../../boot.php:2425 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." - -#: ../../boot.php:2428 -#, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "[hubzilla] SSL-feil ved nettsted hos %s" - -#: ../../boot.php:2469 -msgid "Cron/Scheduled tasks not running." -msgstr "Cron/planlagte oppgaver kjører ikke." - -#: ../../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 deleted file mode 100644 index e03ba321d..000000000 --- a/view/nb-no/hstrings.php +++ /dev/null @@ -1,2304 +0,0 @@ -privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "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."; -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["%d rating"] = array( - 0 => "%d vurdering", - 1 => "%d vurderinger", -); -App::$strings["Gender: "] = "Kjønn:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Hjemmeside:"; -App::$strings["Age:"] = "Alder:"; -App::$strings["Location:"] = "Plassering:"; -App::$strings["Description:"] = "Beskrivelse:"; -App::$strings["Hometown:"] = "Hjemby:"; -App::$strings["About:"] = "Om:"; -App::$strings["Connect"] = "Koble"; -App::$strings["Public Forum:"] = "Offentlig forum:"; -App::$strings["Keywords: "] = "Nøkkelord:"; -App::$strings["Don't suggest"] = "Ikke foreslå"; -App::$strings["Common connections:"] = "Felles forbindelser:"; -App::$strings["Global Directory"] = "Global katalog"; -App::$strings["Local Directory"] = "Lokal katalog"; -App::$strings["Find"] = "Finn"; -App::$strings["Finding:"] = "Finner:"; -App::$strings["Channel Suggestions"] = "Kanalforslag"; -App::$strings["next page"] = "Neste side"; -App::$strings["previous page"] = "Forrige side"; -App::$strings["Sort options"] = "Sorteringsvalg"; -App::$strings["Alphabetic"] = "Alfabetisk"; -App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; -App::$strings["Newest to Oldest"] = "Nyest til eldst"; -App::$strings["Oldest to Newest"] = "Eldst til nyest"; -App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; -App::$strings["Item not found."] = "Elementet ble ikke funnet."; -App::$strings["Item not found"] = "Elementet ble ikke funnet."; -App::$strings["Title (optional)"] = "Tittel (valgfri)"; -App::$strings["Edit Block"] = "Endre byggekloss"; -App::$strings["No channel."] = "Ingen kanal."; -App::$strings["Common connections"] = "Felles forbindelser"; -App::$strings["No connections in common."] = "Ingen forbindelser felles."; -App::$strings["Blocked"] = "Blokkert"; -App::$strings["Ignored"] = "Ignorert"; -App::$strings["Hidden"] = "Skjult"; -App::$strings["Archived"] = "Arkivert"; -App::$strings["New"] = "Nye"; -App::$strings["New Connections"] = "Nye forbindelser"; -App::$strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; -App::$strings["All Connections"] = "Alle forbindelser"; -App::$strings["Show all connections"] = "Vis alle forbindelser"; -App::$strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; -App::$strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; -App::$strings["Only show archived connections"] = "Vis bare arkiverte forbindelser"; -App::$strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; -App::$strings["Pending approval"] = "Venter på godkjenning"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Endre forbindelse"; -App::$strings["Delete connection"] = "Slett forbindelse"; -App::$strings["Channel address"] = "Kanaladresse"; -App::$strings["Network"] = "Nettverk"; -App::$strings["Status"] = "Status"; -App::$strings["Connected"] = "Forbundet"; -App::$strings["Approve connection"] = "Godkjenn forbindelse"; -App::$strings["Approve"] = "Godkjenn"; -App::$strings["Ignore connection"] = "Ignorer forbindelse"; -App::$strings["Recent activity"] = "Nylig aktivitet"; -App::$strings["Connections"] = "Forbindelser"; -App::$strings["Search"] = "Søk"; -App::$strings["Search your connections"] = "Søk blant dine forbindelser"; -App::$strings["Connections search"] = "Søk blant forbindelser"; -App::$strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; -App::$strings["Cover Photos"] = "Forsidebilder"; -App::$strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; -App::$strings["Unable to process image"] = "Kan ikke behandle bildet"; -App::$strings["Image upload failed."] = "Opplasting av bildet mislyktes."; -App::$strings["Unable to process image."] = "Kan ikke behandle bildet."; -App::$strings["female"] = "kvinne"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; -App::$strings["male"] = "mann"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres"; -App::$strings["cover photo"] = "forsidebilde"; -App::$strings["Photo not available."] = "Bildet er ikke tilgjengelig."; -App::$strings["Upload File:"] = "Last opp fil:"; -App::$strings["Select a profile:"] = "Velg en profil:"; -App::$strings["Upload Cover Photo"] = "Last opp forsidebilde"; -App::$strings["or"] = "eller"; -App::$strings["skip this step"] = "hopp over dette steget"; -App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; -App::$strings["Crop Image"] = "Beskjær bildet"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; -App::$strings["Done Editing"] = "Avslutt redigering"; -App::$strings["Item is not editable"] = "Elementet kan ikke endres"; -App::$strings["Edit post"] = "Endre innlegg"; -App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; -App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; -App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; -App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; -App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; -App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; -App::$strings["event"] = "hendelse"; -App::$strings["Edit event title"] = "Endre tittel på hendelse"; -App::$strings["Event title"] = "Tittel på hendelse"; -App::$strings["Required"] = "Påkrevd"; -App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; -App::$strings["Edit Category"] = "Endre kategori"; -App::$strings["Category"] = "Kategori"; -App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; -App::$strings["Start date and time"] = "Startdato og tidspunkt"; -App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; -App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; -App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; -App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; -App::$strings["Edit Description"] = "Endre beskrivelse"; -App::$strings["Description"] = "Beskrivelse"; -App::$strings["Edit Location"] = "Endre plassering"; -App::$strings["Location"] = "Plassering"; -App::$strings["Share this event"] = "Del denne hendelsen"; -App::$strings["Preview"] = "Forhåndsvisning"; -App::$strings["Permission settings"] = "Tillatelser - innstillinger"; -App::$strings["Advanced Options"] = "Avanserte alternativer"; -App::$strings["Edit event"] = "Endre hendelse"; -App::$strings["Delete event"] = "Slett hendelse"; -App::$strings["calendar"] = "kalender"; -App::$strings["Event removed"] = "Hendelse slettet"; -App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; -App::$strings["Photos"] = "Bilder"; -App::$strings["Cancel"] = "Avbryt"; -App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; -App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; -App::$strings["Save to Folder:"] = "Lagre til mappe:"; -App::$strings["- select -"] = "- velg -"; -App::$strings["Save"] = "Lagre"; -App::$strings["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"; -App::$strings["accepted for delivery"] = "akseptert for levering"; -App::$strings["updated"] = "oppdatert"; -App::$strings["update ignored"] = "oppdatering ignorert"; -App::$strings["permission denied"] = "tillatelse avvist"; -App::$strings["recipient not found"] = "mottaker ble ikke funnet"; -App::$strings["mail recalled"] = "melding tilbakekalt"; -App::$strings["duplicate mail received"] = "duplikat av melding mottatt"; -App::$strings["mail delivered"] = "melding mottatt"; -App::$strings["Layout Name"] = "Layout-navn"; -App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; -App::$strings["Edit Layout"] = "Endre layout"; -App::$strings["Page link"] = ""; -App::$strings["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"; -App::$strings["Privacy group updated."] = "Personverngruppen er oppdatert."; -App::$strings["Create a group of channels."] = "Lag en gruppe av kanaler."; -App::$strings["Privacy group name: "] = "Personverngruppens navn:"; -App::$strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; -App::$strings["Privacy group removed."] = "Personverngruppen er fjernet."; -App::$strings["Unable to remove privacy group."] = "Ikke i stand til å fjerne personverngruppen."; -App::$strings["Privacy group editor"] = "Personverngruppebehandler"; -App::$strings["Members"] = "Medlemmer"; -App::$strings["All Connected Channels"] = "Alle tilkoblede kanaler"; -App::$strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; -App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; -App::$strings["Authorize application connection"] = "Tillat programforbindelse"; -App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; -App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; -App::$strings["Documentation Search"] = "Søk i dokumentasjon"; -App::$strings["Help:"] = "Hjelp:"; -App::$strings["Help"] = "Hjelp"; -App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; -App::$strings["Permission Denied."] = "Tillatelse avvist."; -App::$strings["File not found."] = "Filen ble ikke funnet."; -App::$strings["Edit file permissions"] = "Endre filtillatelser"; -App::$strings["Set/edit permissions"] = "Angi/endre tillatelser"; -App::$strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; -App::$strings["Return to file list"] = "Gå tilbake til filoversikten"; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; -App::$strings["Share this file"] = "Del denne filen"; -App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; -App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; -App::$strings["Apps"] = "Apper"; -App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; -App::$strings["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"; -App::$strings["Imported file is empty."] = "Importert fil er tom."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer."; -App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; -App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; -App::$strings["Import completed."] = "Import ferdig."; -App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; -App::$strings["Import Channel"] = "Importer kanal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; -App::$strings["File to Upload"] = "Fil som skal lastes opp"; -App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; -App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; -App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; -App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; -App::$strings["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["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."; -App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret."; -App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; -App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; -App::$strings["Layouts"] = "Layout"; -App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; -App::$strings["Layout Description"] = "Layout-beskrivelse"; -App::$strings["Download PDL file"] = "Last ned PDL-fil"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Velkommen til %s"; -App::$strings["First Name"] = "Fornavn"; -App::$strings["Last Name"] = "Etternavn"; -App::$strings["Nickname"] = "Kallenavn"; -App::$strings["Full Name"] = "Fullt navn"; -App::$strings["Email"] = "E-post"; -App::$strings["Profile Photo"] = "Profilbilde"; -App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; -App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; -App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; -App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; -App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; -App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; -App::$strings["Timezone"] = "Tidssone"; -App::$strings["Homepage URL"] = "Hjemmeside URL"; -App::$strings["Language"] = "Språk"; -App::$strings["Birth Year"] = "Fødselsår"; -App::$strings["Birth Month"] = "Fødselsmåne"; -App::$strings["Birth Day"] = "Fødselsdag"; -App::$strings["Birthdate"] = "Fødselsdato"; -App::$strings["Gender"] = "Kjønn"; -App::$strings["Male"] = "Mannlig"; -App::$strings["Female"] = "Kvinnelig"; -App::$strings["webpage"] = "nettside"; -App::$strings["block"] = "byggekloss"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "meny"; -App::$strings["%s element installed"] = "%s element installert"; -App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; -App::$strings["Like/Dislike"] = "Liker/Liker ikke"; -App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; -App::$strings["Please 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."; -App::$strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; -App::$strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse."; -App::$strings["Please join us on \$Projectname"] = "Bli med oss på \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted."; -App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; -App::$strings["%d message sent."] = array( - 0 => "%d melding sendt.", - 1 => "%d meldinger sendt.", -); -App::$strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; -App::$strings["Send invitations"] = "Send invitasjoner"; -App::$strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; -App::$strings["Your message:"] = "Din melding:"; -App::$strings["Please join my community on \$Projectname."] = "Du er velkommen til å bli med i mitt fellesskap på \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Du må oppgi denne invitasjonskoden:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrer ved enhver \$Projectname-lokasjon (de er alle forbundet med hverandre)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt."; -App::$strings["or visit"] = "eller besøke"; -App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; -App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; -App::$strings["Visible to:"] = "Synlig for:"; -App::$strings["Location not found."] = "Plassering er ikke funnet."; -App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; -App::$strings["Syncing locations"] = "Synkroniserer plasseringer"; -App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; -App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; -App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = ""; -App::$strings["Drop"] = "Slett"; -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."; -App::$strings["Hub not found."] = "Hubben ble ikke funnet."; -App::$strings["Unable to lookup recipient."] = "Ikke i stand til å slå opp mottaker."; -App::$strings["Unable to communicate with requested channel."] = "Ikke i stand til å kommunisere med forespurt kanal."; -App::$strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet."; -App::$strings["Messages"] = "Meldinger"; -App::$strings["Message recalled."] = "Innlegg tilbakekalt."; -App::$strings["Conversation removed."] = "Samtale fjernet."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Utløper YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Forespurt kanal er ikke tilgjengelig i dette nettverket."; -App::$strings["Send Private Message"] = "Send privat melding"; -App::$strings["To:"] = "Til:"; -App::$strings["Subject:"] = "Emne:"; -App::$strings["Attach file"] = "Legg ved fil"; -App::$strings["Send"] = "Send"; -App::$strings["Set expiration date"] = "Angi utløpsdato"; -App::$strings["Delete message"] = "Slett melding"; -App::$strings["Delivery report"] = "Leveringsrapport"; -App::$strings["Recall message"] = "Tilbakekall innlegg"; -App::$strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt."; -App::$strings["Delete Conversation"] = "Slett samtale"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside."; -App::$strings["Send Reply"] = "Send svar"; -App::$strings["Your message for %s (%s):"] = "Din melding til %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; -App::$strings["Create a new channel"] = "Lag en ny kanal"; -App::$strings["Channel Manager"] = "Kanalstyring"; -App::$strings["Current Channel"] = "Gjeldende kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; -App::$strings["Default Channel"] = "Standardkanal"; -App::$strings["Make Default"] = "Gjør til standard"; -App::$strings["%d new messages"] = "%d nye meldinger"; -App::$strings["%d new introductions"] = "%d nye introduksjoner"; -App::$strings["Delegated Channel"] = ""; -App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; -App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; -App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; -App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; -App::$strings["Password Reset"] = "Tilbakestill passord"; -App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; -App::$strings["Your new password is"] = "Ditt nye passord er"; -App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; -App::$strings["click here to login"] = "klikke her for å logge inn"; -App::$strings["Your password may be changed from the 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"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig på websiden) - påkrevet"; -App::$strings["Menu Title"] = "Menytittel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Synlig på websiden - la stå tomt for ingen tittel"; -App::$strings["Allow Bookmarks"] = "Tillat bokmerker"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; -App::$strings["Submit and proceed"] = "Send inn og fortsett"; -App::$strings["Menus"] = "Menyer"; -App::$strings["Bookmarks allowed"] = "Bokmerker tillatt"; -App::$strings["Delete this menu"] = "Slett denne menyen"; -App::$strings["Edit menu contents"] = "Endre menyinnholdet"; -App::$strings["Edit this menu"] = "Endre denne menyen"; -App::$strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; -App::$strings["Menu not found."] = "Menyen ble ikke funnet."; -App::$strings["Edit Menu"] = "Endre meny"; -App::$strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; -App::$strings["Menu name"] = "Menynavn"; -App::$strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; -App::$strings["Menu title"] = "Menytittel"; -App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; -App::$strings["Allow bookmarks"] = "Tillat bokmerker"; -App::$strings["Not found."] = "Ikke funnet."; -App::$strings["__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"; -App::$strings["Search Results For:"] = "Søkeresultat for:"; -App::$strings["Privacy group is empty"] = "Personverngruppen er tom"; -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["Unable to create element."] = "Klarer ikke å lage element."; -App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; -App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; -App::$strings["Menu Item Permissions"] = "Menyelement Tillatelser"; -App::$strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -App::$strings["Link Name"] = "Lenkenavn"; -App::$strings["Link or Submenu Target"] = "Lenke- eller undermeny-mål"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny"; -App::$strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig"; -App::$strings["Open link in new window"] = "Åpne lenke i nytt vindu"; -App::$strings["Order in list"] = "Ordne i liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; -App::$strings["Submit and finish"] = "Send inn og avslutt"; -App::$strings["Submit and continue"] = "Send inn og fortsett"; -App::$strings["Menu:"] = "Meny:"; -App::$strings["Link Target"] = "Lenkemål"; -App::$strings["Edit menu"] = "Endre meny"; -App::$strings["Edit element"] = "Endre element"; -App::$strings["Drop element"] = "Slett element"; -App::$strings["New element"] = "Nytt element"; -App::$strings["Edit this menu container"] = "Endre denne menybeholderen"; -App::$strings["Add menu element"] = "Legg til menyelement"; -App::$strings["Delete this menu item"] = "Slett dette menyelementet"; -App::$strings["Edit this menu item"] = "Endre dette menyelementet"; -App::$strings["Menu item not found."] = "Menyelement ble ikke funnet."; -App::$strings["Menu item deleted."] = "Menyelement slettet."; -App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; -App::$strings["Edit Menu Element"] = "Endre menyelement"; -App::$strings["Link text"] = "Lenketekst"; -App::$strings["Name or caption"] = "Navn eller overskrift"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\""; -App::$strings["Choose a short nickname"] = "Velg et kort kallenavn"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske, for eksempel kallenavn%s"; -App::$strings["Channel role and privacy"] = "Kanalrolle og personvern"; -App::$strings["Select a channel role with your privacy requirements."] = "Velg en kanalrolle for ditt personvernbehov."; -App::$strings["Read more about roles"] = "Les mer om roller"; -App::$strings["Create Channel"] = "Lag kanal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "En kanal er din identitet i dette nettverket. Den kan representere en person, en blogg eller et forum for å nevne noe. Kanaler kan ha forbindelser til andre kanaler for å dele informasjon, og med svært detaljerte tillatelser."; -App::$strings["or import an existing channel from another location."] = "eller importer en eksisterende kanal fra et annet sted."; -App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -App::$strings["Discard"] = "Forkast"; -App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; -App::$strings["Profile Photos"] = "Profilbilder"; -App::$strings["Album not found."] = "Albumet ble ikke funnet."; -App::$strings["Delete Album"] = "Slett album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = ""; -App::$strings["Delete Photo"] = "Slett bilde"; -App::$strings["No photos selected"] = "Ingen bilder valgt"; -App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB lagringsplass til bilder er brukt."; -App::$strings["Upload Photos"] = "Last opp bilder"; -App::$strings["Enter an album name"] = "Skriv et albumnavn"; -App::$strings["or select an existing album (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; -App::$strings["Caption (optional):"] = "Bildetekst (valgfritt):"; -App::$strings["Description (optional):"] = "Beskrivelse (valgfritt):"; -App::$strings["Album name could not be decoded"] = "Albumnavnet kunne ikke dekodes"; -App::$strings["Contact Photos"] = "Kontaktbilder"; -App::$strings["Show Newest First"] = "Vis nyeste først"; -App::$strings["Show Oldest First"] = "Vis eldste først"; -App::$strings["View Photo"] = "Vis foto"; -App::$strings["Edit Album"] = "Endre album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Tillatelse avvist. Tilgang til dette elementet kan være begrenset."; -App::$strings["Photo not available"] = "Bilde er utilgjengelig"; -App::$strings["Use as profile photo"] = "Bruk som profilbilde"; -App::$strings["Use as cover photo"] = ""; -App::$strings["Private Photo"] = "Privat bilde"; -App::$strings["View Full Size"] = "Vis i full størrelse"; -App::$strings["Remove"] = "Fjern"; -App::$strings["Edit photo"] = "Endre bilde"; -App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; -App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -App::$strings["Enter a new album name"] = "Skriv et nytt albumnavn"; -App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Caption"] = "Overskrift"; -App::$strings["Add a Tag"] = "Legg til merkelapp"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Eksempel: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Flag som voksent i albumvisning"; -App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; -App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; -App::$strings["Please wait"] = "Vennligst vent"; -App::$strings["This is you"] = "Dette er deg"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Liker"; -App::$strings["__ctx:title__ Dislikes"] = "Liker ikke"; -App::$strings["__ctx:title__ Agree"] = "Enig"; -App::$strings["__ctx:title__ Disagree"] = "Uenig"; -App::$strings["__ctx:title__ Abstain"] = "Avstår"; -App::$strings["__ctx:title__ Attending"] = "Deltar"; -App::$strings["__ctx:title__ Not attending"] = "Deltar ikke"; -App::$strings["__ctx:title__ Might attend"] = "Deltar kanskje"; -App::$strings["View all"] = "Vis alle"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Liker", - 1 => "Liker", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Liker ikke", - 1 => "Liker ikke", -); -App::$strings["Photo Tools"] = ""; -App::$strings["In This Photo:"] = "I dette bildet:"; -App::$strings["Map"] = "Kart"; -App::$strings["__ctx:noun__ Likes"] = "Liker"; -App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; -App::$strings["Close"] = "Lukk"; -App::$strings["View Album"] = "Vis album"; -App::$strings["Recent Photos"] = "Nye bilder"; -App::$strings["sent you a private message"] = "sendte deg en privat melding"; -App::$strings["added your channel"] = "la til din kanal"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[idag]"; -App::$strings["posted an event"] = "la ut en hendelse"; -App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; -App::$strings["Post successful."] = "Innlegg vellykket."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; -App::$strings["Login failed."] = "Innlogging mislyktes."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; -App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; -App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; -App::$strings["Layout updated."] = "Layout er oppdatert."; -App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; -App::$strings["Layout not found."] = "Layouten ble ikke funnet."; -App::$strings["Module Name:"] = "Modulnavn:"; -App::$strings["Layout Help"] = "Layout-hjelp"; -App::$strings["Poke"] = "Prikk"; -App::$strings["Poke somebody"] = "Dult noen"; -App::$strings["Poke/Prod"] = "Prikke/oppildne"; -App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; -App::$strings["Recipient"] = "Mottaker"; -App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; -App::$strings["Make this post private"] = "Gjør dette innlegget privat"; -App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; -App::$strings["Profile not found."] = "Profilen ble ikke funnet."; -App::$strings["Profile deleted."] = "Profilen er slettet."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Ny profil opprettet."; -App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; -App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; -App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; -App::$strings["Marital Status"] = "Sivilstand"; -App::$strings["Romantic Partner"] = "Romantisk partner"; -App::$strings["Likes"] = "Liker"; -App::$strings["Dislikes"] = "Liker ikke"; -App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politiske synspunkter"; -App::$strings["Sexual Preference"] = "Seksuelle preferanser"; -App::$strings["Homepage"] = "Hjemmeside"; -App::$strings["Interests"] = "Interesser"; -App::$strings["Profile updated."] = "Profilen er oppdatert."; -App::$strings["Hide your connections list from viewers of this profile"] = ""; -App::$strings["Edit Profile Details"] = "Endre profildetaljer"; -App::$strings["View this profile"] = "Vis denne profilen"; -App::$strings["Edit visibility"] = "Endre synlighet"; -App::$strings["Profile Tools"] = ""; -App::$strings["Change cover photo"] = ""; -App::$strings["Change profile photo"] = "Endre profilbilde"; -App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; -App::$strings["Clone this profile"] = "Klon denne profilen"; -App::$strings["Delete this profile"] = "Slett denne profilen"; -App::$strings["Add profile things"] = "Legg til profilting"; -App::$strings["Personal"] = "Personlig"; -App::$strings["Relation"] = ""; -App::$strings["Miscellaneous"] = "Forskjellig"; -App::$strings["Import profile from file"] = "Importer profil fra fil"; -App::$strings["Export profile to file"] = "Eksporter profil til fil"; -App::$strings["Your gender"] = ""; -App::$strings["Marital status"] = ""; -App::$strings["Sexual preference"] = ""; -App::$strings["Profile name"] = ""; -App::$strings["This is your default profile."] = "Dette er din standardprofil."; -App::$strings["Your full name"] = ""; -App::$strings["Title/Description"] = ""; -App::$strings["Street address"] = ""; -App::$strings["Locality/City"] = ""; -App::$strings["Region/State"] = ""; -App::$strings["Postal/Zip code"] = ""; -App::$strings["Country"] = ""; -App::$strings["Who (if applicable)"] = ""; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; -App::$strings["Since (date)"] = ""; -App::$strings["Tell us about yourself"] = ""; -App::$strings["Hometown"] = ""; -App::$strings["Political views"] = ""; -App::$strings["Religious views"] = ""; -App::$strings["Keywords used in directory listings"] = ""; -App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -App::$strings["Musical interests"] = "Musikkinteresser"; -App::$strings["Books, literature"] = "Bøker, litteratur"; -App::$strings["Television"] = "TV/fjernsyn"; -App::$strings["Film/Dance/Culture/Entertainment"] = ""; -App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; -App::$strings["Love/Romance"] = ""; -App::$strings["School/Education"] = ""; -App::$strings["Contact information and social networks"] = ""; -App::$strings["My other channels"] = "Mine andre kanaler"; -App::$strings["Profile Image"] = "Profilbilde"; -App::$strings["Edit Profiles"] = "Endre profiler"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; -App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; -App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; -App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -App::$strings["Visible To"] = "Synlig for"; -App::$strings["Public Hubs"] = "Offentlige huber"; -App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; -App::$strings["Hub URL"] = "Nettstedets URL"; -App::$strings["Access Type"] = "Tilgangstype"; -App::$strings["Registration Policy"] = "Retningslinjer for registrering"; -App::$strings["Stats"] = ""; -App::$strings["Software"] = ""; -App::$strings["Ratings"] = "Vurderinger"; -App::$strings["Rate"] = "Vurder"; -App::$strings["Website:"] = "Nettsted:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; -App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; -App::$strings["No ratings"] = "Ingen vurderinger"; -App::$strings["Rating: "] = "Vurdering:"; -App::$strings["Website: "] = "Nettsted:"; -App::$strings["Description: "] = "Beskrivelse:"; -App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; -App::$strings["# Accounts"] = "# Kontoer"; -App::$strings["# blocked accounts"] = "# blokkerte kontoer"; -App::$strings["# expired accounts"] = "# utgåtte kontoer"; -App::$strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; -App::$strings["# Channels"] = "# Kanaler"; -App::$strings["# primary"] = "# hoved"; -App::$strings["# clones"] = "# kloner"; -App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Your software should be updated"] = ""; -App::$strings["Administration"] = "Administrasjon"; -App::$strings["Summary"] = "Sammendrag"; -App::$strings["Registered accounts"] = "Registrerte kontoer"; -App::$strings["Pending registrations"] = "Ventende registreringer"; -App::$strings["Registered channels"] = "Registrerte kanaler"; -App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; -App::$strings["Version"] = "Versjon"; -App::$strings["Repository version (master)"] = ""; -App::$strings["Repository version (dev)"] = ""; -App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; -App::$strings["Default"] = "Standard"; -App::$strings["mobile"] = "mobil"; -App::$strings["experimental"] = "eksperimentell"; -App::$strings["unsupported"] = "ikke støttet"; -App::$strings["Yes - with approval"] = "Ja - med godkjenning"; -App::$strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; -App::$strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; -App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; -App::$strings["Site"] = "Nettsted"; -App::$strings["Registration"] = "Registrering"; -App::$strings["File upload"] = "Last opp fil"; -App::$strings["Policies"] = "Retningslinjer"; -App::$strings["Advanced"] = "Avansert"; -App::$strings["Site name"] = "Nettstedets navn"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Administratorinformasjon"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; -App::$strings["System language"] = "Systemspråk"; -App::$strings["System theme"] = "Systemtema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger"; -App::$strings["Mobile system theme"] = "Mobilt systemtema"; -App::$strings["Theme for mobile devices"] = "Tema for mobile enheter"; -App::$strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser"; -App::$strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)"; -App::$strings["Maximum image size"] = "Største bildestørrelse"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; -App::$strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; -App::$strings["Invitation only"] = "Kun inviterte"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?"; -App::$strings["Register text"] = "Registreringstekst"; -App::$strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)"; -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."] = "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil."; -App::$strings["Preserve site homepage URL"] = "Bevar URL-en til nettstedets hjemmeside"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere"; -App::$strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense."; -App::$strings["Allowed friend domains"] = "Tillatte vennedomener"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; -App::$strings["Allowed email domains"] = "Tillate e-postdomener"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt"; -App::$strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert."; -App::$strings["Verify Email Addresses"] = "Bekreft e-postadresser"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)."; -App::$strings["Force publish"] = "Tving publisering"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; -App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."; -App::$strings["Login on Homepage"] = ""; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; -App::$strings["Enable context help"] = ""; -App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; -App::$strings["Directory Server URL"] = "Katalogtjener URL"; -App::$strings["Default directory server"] = "Standard katalogtjener"; -App::$strings["Proxy user"] = "Brukernavn mellomtjener"; -App::$strings["Proxy URL"] = "Mellomtjener URL"; -App::$strings["Network timeout"] = "Nettverk tidsavbrudd"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."; -App::$strings["Delivery interval"] = "Leveringsinterval"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere."; -App::$strings["Deliveries per process"] = "Leveranser per prosess"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5."; -App::$strings["Poll interval"] = "Spørreintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."; -App::$strings["Maximum Load Average"] = "Største belastningsgjennomsnitt"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Antall dager før importert innhold (nettet/nettverk) utgår"; -App::$strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgå"; -App::$strings["Off"] = "Av"; -App::$strings["On"] = "På"; -App::$strings["Lock feature %s"] = "Lås funksjon %s"; -App::$strings["Manage Additional Features"] = "Håndter tilleggsfunksjoner"; -App::$strings["No server found"] = "Ingen tjener funnet"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "for kanalen"; -App::$strings["on server"] = "på tjener"; -App::$strings["Server"] = "Tjener"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; -App::$strings["https://youtube.com/
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"] = ""; -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."] = ""; -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."; -App::$strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."; -App::$strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; -App::$strings["No failed updates."] = "Ingen mislykkede oppdateringer."; -App::$strings["Failed Updates"] = "Mislykkede oppdateringer"; -App::$strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; -App::$strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; -App::$strings["Queue Statistics"] = "Køstatistikk"; -App::$strings["Total Entries"] = "Totalt antall oppføringer"; -App::$strings["Priority"] = "Prioritet"; -App::$strings["Destination URL"] = "Mål-URL"; -App::$strings["Mark hub permanently offline"] = "Merk hub som permanent offline"; -App::$strings["Empty queue for this hub"] = "Tøm køen for denne hubben"; -App::$strings["Last known contact"] = "Siste kjente kontakt"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s konto blokkert/ikke blokkert lenger", - 1 => "%s kontoer blokkert/ikke blokkert lenger", -); -App::$strings["%s account deleted"] = array( - 0 => "%s konto slettet", - 1 => "%s kontoer slettet", -); -App::$strings["Account not found"] = "Kontoen ble ikke funnet"; -App::$strings["Account '%s' deleted"] = "Kontoen '%s' slettet"; -App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; -App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; -App::$strings["Accounts"] = "Kontoer"; -App::$strings["select all"] = "velg alle"; -App::$strings["Registrations waiting for confirm"] = ""; -App::$strings["Request date"] = "Dato for forespørsel"; -App::$strings["No registrations."] = "Ingen registreringer."; -App::$strings["Deny"] = "Avslå"; -App::$strings["All Channels"] = "Alle kanaler"; -App::$strings["Register date"] = "Registreringsdato"; -App::$strings["Last login"] = "Siste innlogging"; -App::$strings["Expires"] = "Utløper"; -App::$strings["Service Class"] = "Tjenesteklasse"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanal er sensurert/ikke sensurert lenger", - 1 => "%s kanaler er sensurert/ikke sensurert lenger", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s kanal med kode tillatt/ikke tillatt", - 1 => "%s kanaler med kode tillatt/ikke tillatt", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanal slettet", - 1 => "%s kanaler slettet", -); -App::$strings["Channel not found"] = "Kanalen ble ikke funnet"; -App::$strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet"; -App::$strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert"; -App::$strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; -App::$strings["Channel '%s' code allowed"] = "Kanal '%s' kode tillatt"; -App::$strings["Channel '%s' code disallowed"] = "Kanal '%s' kode ikke tillatt"; -App::$strings["Channels"] = "Kanaler"; -App::$strings["Censor"] = "Sensurer"; -App::$strings["Uncensor"] = "Ikke sensurer lenger"; -App::$strings["Allow Code"] = "Tillat kode"; -App::$strings["Disallow Code"] = "Ikke tillat kode"; -App::$strings["Channel"] = "Kanal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?"; -App::$strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd."; -App::$strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; -App::$strings["Disable"] = "Skru av"; -App::$strings["Enable"] = "Skru på"; -App::$strings["Plugins"] = "Tilleggsfunksjoner"; -App::$strings["Toggle"] = "Skru av og på"; -App::$strings["Settings"] = "Innstillinger"; -App::$strings["Author: "] = "Forfatter:"; -App::$strings["Maintainer: "] = "Vedlikeholder:"; -App::$strings["Minimum project version: "] = "Minimum prosjektversjon:"; -App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:"; -App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:"; -App::$strings["Requires: "] = "Krever:"; -App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet"; -App::$strings["Enter the public git repository URL of the plugin repo."] = ""; -App::$strings["Plugin repo git URL"] = ""; -App::$strings["Custom repo name"] = ""; -App::$strings["(optional)"] = ""; -App::$strings["Download Plugin Repo"] = ""; -App::$strings["Install new repo"] = ""; -App::$strings["Install"] = "Installer"; -App::$strings["Manage Repos"] = ""; -App::$strings["Installed Plugin Repositories"] = ""; -App::$strings["Install a New Plugin Repository"] = ""; -App::$strings["Update"] = "Oppdater"; -App::$strings["Switch branch"] = ""; -App::$strings["No themes found."] = "Ingen temaer er funnet."; -App::$strings["Screenshot"] = "Skjermbilde"; -App::$strings["Themes"] = "Temaer"; -App::$strings["[Experimental]"] = "[Eksperimentelt]"; -App::$strings["[Unsupported]"] = "[Ingen støtte]"; -App::$strings["Log settings updated."] = "Logginnstillinger er oppdatert."; -App::$strings["Logs"] = "Logger"; -App::$strings["Clear"] = "Tøm"; -App::$strings["Debugging"] = "Feilsøking"; -App::$strings["Log file"] = "Loggfil"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; -App::$strings["Log level"] = "Loggnivå"; -App::$strings["New Profile Field"] = "Nytt profilfelt"; -App::$strings["Field nickname"] = "Feltets kallenavn"; -App::$strings["System name of field"] = "Systemnavnet til feltet"; -App::$strings["Input type"] = "Inndata-type"; -App::$strings["Field Name"] = "Feltnavn"; -App::$strings["Label on profile pages"] = "Merkelapp på profilsider"; -App::$strings["Help text"] = "Hjelpetekst"; -App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; -App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; -App::$strings["Edit Profile Field"] = "Endre profilfelt"; -App::$strings["Profile Fields"] = ""; -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"; -App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."; -App::$strings["Passwords do not match."] = "Passordene er ikke like."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen."; -App::$strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning av nettstedets eier."; -App::$strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; -App::$strings["Registration on this hub is disabled."] = "Registrering ved dette nettstedet er skrudd av."; -App::$strings["Registration on this hub is by approval only."] = "Registrering ved dette nettstedet skjer på godkjenning."; -App::$strings["Register at another affiliated hub."] = "Registrer ved et annet tilsluttet nettsted."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen."; -App::$strings["Terms of Service"] = "Tjenesteavtale"; -App::$strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet."; -App::$strings["Your email address"] = "Din e-postadresse"; -App::$strings["Choose a password"] = "Velg et passord"; -App::$strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til"; -App::$strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; -App::$strings["no"] = "nei"; -App::$strings["yes"] = "ja"; -App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; -App::$strings["Register"] = "Registrer"; -App::$strings["Proceed to create your first channel"] = "Gå videre for å lage din første kanal"; -App::$strings["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"; -App::$strings["WARNING: "] = "ADVARSEL:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."; -App::$strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; -App::$strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket"; -App::$strings["Remove Account"] = "Slett konto"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; -App::$strings["Remove This Channel"] = "Fjern denne kanalen"; -App::$strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket."; -App::$strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; -App::$strings["Remove Channel"] = "Fjern kanal"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; -App::$strings["The error message was:"] = "Feilmeldingen var:"; -App::$strings["Authentication failed."] = "Autentisering mislyktes."; -App::$strings["Remote Authentication"] = "Fjernautentisering"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; -App::$strings["Authenticate"] = "Autentiser"; -App::$strings["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["Not valid email."] = "Ikke gyldig e-post."; -App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; -App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; -App::$strings["Password verification failed."] = "Passordbekreftelsen mislyktes."; -App::$strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; -App::$strings["Password changed."] = "Passord endret."; -App::$strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; -App::$strings["Settings updated."] = "Innstillinger oppdatert."; -App::$strings["Add application"] = "Legg til program"; -App::$strings["Name of application"] = "Navn på program"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Omdirigering"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; -App::$strings["Icon url"] = "Ikon-URL"; -App::$strings["Optional"] = "Valgfritt"; -App::$strings["Application not found."] = "Programmet ble ikke funnet."; -App::$strings["Connected Apps"] = "Tilkoblede app-er"; -App::$strings["Client key starts with"] = "Klientnøkkel starter med"; -App::$strings["No name"] = "Ikke noe navn"; -App::$strings["Remove authorization"] = "Fjern tillatelse"; -App::$strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; -App::$strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Account Settings"] = "Kontoinnstillinger"; -App::$strings["Current Password"] = "Nåværende passord"; -App::$strings["Enter New Password"] = "Skriv nytt passord"; -App::$strings["Confirm New Password"] = "Bekreft nytt passord"; -App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; -App::$strings["Email Address:"] = "E-postadresse:"; -App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; -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"; -App::$strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; -App::$strings["Display Settings"] = "Visningsinnstillinger"; -App::$strings["Theme Settings"] = "Temainnstillinger"; -App::$strings["Custom Theme Settings"] = "Tilpassede temainnstillinger"; -App::$strings["Content Settings"] = "Innholdsinnstillinger"; -App::$strings["Display Theme:"] = "Visningstema:"; -App::$strings["Mobile Theme:"] = "Mobiltema:"; -App::$strings["Preload images before rendering the page"] = "Last inn bildene før gjengivelsen av siden"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises"; -App::$strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; -App::$strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; -App::$strings["Maximum of 100 items"] = "Maksimum 100 elementer"; -App::$strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; -App::$strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; -App::$strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)"; -App::$strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus på kanalsiden"; -App::$strings["(comments displayed separately)"] = "(kommentarer vist separat)"; -App::$strings["Use blog/list mode on grid page"] = "Bruk blogg-/liste-modus på nettverkssiden"; -App::$strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshøyde for innhold (i pixler)"; -App::$strings["click to expand content exceeding this height"] = "klikk for å utvide innhold som overstiger denne høyden"; -App::$strings["Grid page max height of content (in pixels)"] = "Nettverkssidens makshøyde for innhold (i piksler)"; -App::$strings["Nobody except yourself"] = "Ingen unntatt deg selv"; -App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; -App::$strings["Approved connections"] = "Godkjente forbindelser"; -App::$strings["Any connections"] = "Enhver forbindelse"; -App::$strings["Anybody on this website"] = "Enhver ved dette nettstedet"; -App::$strings["Anybody in this network"] = "Enhver i dette nettverket"; -App::$strings["Anybody authenticated"] = "Enhver som er autentisert"; -App::$strings["Anybody on the internet"] = "Enhver på Internett"; -App::$strings["Publish your default profile in the network directory"] = "Publiser din standardprofil i nettverkskatalogen"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; -App::$strings["Your channel address is"] = "Din kanaladresse er"; -App::$strings["Channel Settings"] = "Kanalinnstillinger"; -App::$strings["Basic Settings"] = "Grunninnstillinger"; -App::$strings["Full Name:"] = "Fullt navn:"; -App::$strings["Your Timezone:"] = "Din tidssone:"; -App::$strings["Default Post Location:"] = "Standard plassering ved innlegg:"; -App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; -App::$strings["Use Browser Location:"] = "Bruk nettleseren sin plassering:"; -App::$strings["Adult Content"] = "Voksent innhold"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Sikkerhets- og personverninnstillinger"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Dine tillatelser er allerede satt. Klikk for å se/justere."; -App::$strings["Hide my online presence"] = "Skjul min tilstedeværelse online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Forhindrer visning på din profil av at du er online "; -App::$strings["Simple Privacy Settings:"] = "Enkle personverninnstillinger:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)"; -App::$strings["Private - default private, never open or public"] = "Privat - standard er privat, aldri åpen eller offentlig"; -App::$strings["Blocked - default blocked to/from everybody"] = "Blokkert - standard blokkert til/fra alle"; -App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine innlegg"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; -App::$strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; -App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; -App::$strings["0 or blank to use the website limit."] = ""; -App::$strings["This website expires after %d days."] = ""; -App::$strings["This website does not expire imported content."] = ""; -App::$strings["The website limit takes precedence if lower than your limit."] = ""; -App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; -App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; -App::$strings["Default Post and Publish Permissions"] = ""; -App::$strings["Use my default audience setting for the type of object published"] = ""; -App::$strings["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"; -App::$strings["Notification Settings"] = "Varslingsinnstillinger"; -App::$strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; -App::$strings["accepting a friend request"] = "aksepterer en venneforespørsel"; -App::$strings["joining a forum/community"] = "blir med i et forum/miljø"; -App::$strings["making an interesting profile change"] = "gjør en interessant profilendring"; -App::$strings["Send a notification email when:"] = "Send en varsel-e-post når:"; -App::$strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; -App::$strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; -App::$strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; -App::$strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; -App::$strings["You receive a private message"] = "Du mottar en privat melding"; -App::$strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; -App::$strings["You are tagged in a post"] = "Du merkes i et innlegg"; -App::$strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; -App::$strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; -App::$strings["Unseen grid activity"] = "Usett nettverksaktivitet"; -App::$strings["Unseen channel activity"] = "Usett kanalaktivitet"; -App::$strings["Unseen private messages"] = "Usette private meldinger"; -App::$strings["Recommended"] = "Anbefalt"; -App::$strings["Upcoming events"] = "Kommende hendelser"; -App::$strings["Events today"] = "Hendelser idag"; -App::$strings["Upcoming birthdays"] = "Kommende fødselsdager"; -App::$strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; -App::$strings["System (personal) notifications"] = "System (personlige) varslinger"; -App::$strings["System info messages"] = "System infomeldinger"; -App::$strings["System critical alerts"] = "System kritiske varsel"; -App::$strings["New connections"] = "Nye forbindelser"; -App::$strings["System Registrations"] = "Systemregistreringer"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"; -App::$strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; -App::$strings["Must be greater than 0"] = "Må være større enn 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger for konto/sidetype"; -App::$strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!"; -App::$strings["Miscellaneous Settings"] = "Diverse innstillinger"; -App::$strings["Default photo upload folder"] = "Standard mappe for opplasting av bilder"; -App::$strings["%Y - current year, %m - current month"] = "%Y - nåværende år, %m - nåværende måned"; -App::$strings["Default file upload folder"] = "Standard mappe for opplasting av filer"; -App::$strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; -App::$strings["Remove this channel."] = "Fjern denne kanalen."; -App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname Firefox Share tilbyder"; -App::$strings["Start calendar week on monday"] = "Start uken med mandag i kalenderen"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett"; -App::$strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; -App::$strings["Could not create table."] = "Kunne ikke lage tabellen."; -App::$strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemsjekk"; -App::$strings["Check again"] = "Sjekk igjen"; -App::$strings["Database connection"] = "Databaseforbindelse"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "For å installere \$Projectname må du oppgi hvordan din database kan kontaktes."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; -App::$strings["Database Server Name"] = "Navn på databasetjener"; -App::$strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1"; -App::$strings["Database Port"] = "Databaseport"; -App::$strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; -App::$strings["Database Login Name"] = "Database innloggingsnavn"; -App::$strings["Database Login Password"] = "Database innloggingspassord"; -App::$strings["Database Name"] = "Databasenavn"; -App::$strings["Database Type"] = "Databasetype"; -App::$strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; -App::$strings["Website URL"] = "Nettstedets URL"; -App::$strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; -App::$strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -App::$strings["Site settings"] = "Nettstedets innstillinger"; -App::$strings["Enable \$Projectname advanced features?"] = "Skru på avanserteWhat next"] = "

Hva gjenstår

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; -App::$strings["Files: shared with me"] = "Filer: delt med meg"; -App::$strings["NEW"] = "NY"; -App::$strings["Remove all files"] = "Fjern alle filer"; -App::$strings["Remove this file"] = "Fjern denne filen"; -App::$strings["Version %s"] = "Versjon %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; -App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."; -App::$strings["Tag: "] = "Merkelapp:"; -App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; -App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:"; -App::$strings["Running at web location"] = "Kjører på webplasseringen"; -App::$strings["Please visit 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["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; -App::$strings["Source created."] = "Kilden er laget."; -App::$strings["Source updated."] = "Kilden er oppdatert."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanalkilder"; -App::$strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; -App::$strings["New Source"] = "Ny kilde"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; -App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; -App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; -App::$strings["Channel Name"] = "Kanalnavn"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; -App::$strings["Source not found."] = "Kilden ble ikke funnet."; -App::$strings["Edit Source"] = "Endre kilde"; -App::$strings["Delete Source"] = "Slett kilde"; -App::$strings["Source removed"] = "Kilden er fjernet"; -App::$strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped å følge %2\$s sin %3\$s"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; -App::$strings["Ignore/Hide"] = "Ignorer/Skjul"; -App::$strings["post"] = "innlegg"; -App::$strings["comment"] = "kommentar"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; -App::$strings["Tag removed"] = "Merkelapp fjernet"; -App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element"; -App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; -App::$strings["Thing updated"] = "Tingen er oppdatert"; -App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; -App::$strings["Thing added"] = "Ting lagt til"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Vis ting"; -App::$strings["item not found."] = "element ble ikke funnet."; -App::$strings["Edit Thing"] = "Endre ting"; -App::$strings["Select a profile"] = "Velg en profil"; -App::$strings["Post an activity"] = "Legg inn en aktivitet"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; -App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; -App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; -App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; -App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; -App::$strings["Export Channel"] = "Eksporter kanal"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; -App::$strings["Export Content"] = "Eksporter innhold"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; -App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; -App::$strings["To select all posts for a given year, such as this year, visit %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["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"; -App::$strings["Room not found."] = "Rommet ble ikke funnet."; -App::$strings["Room is full"] = "Rommet er fullt"; -App::$strings["\$Projectname Notification"] = "\$Projectname varsling"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Tusen takk,"; -App::$strings["%s Administrator"] = "%s administrator"; -App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Ny melding mottatt hos %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding på %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; -App::$strings["a private message"] = "en privat melding"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]a %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]din %4\$s[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] Kommentar til samtale #%1\$d av %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte på et element eller en samtale du følger"; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg på din profilvegg på %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg på [zrl=%3\$s]din vegg[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %s merket deg"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s prikket deg"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %s merket ditt innlegg"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg på %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Introduksjon mottatt"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespørsel om forbindelse fra '%2\$s' hos %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespørsel om forbindelse[/zrl] fra %3\$s."; -App::$strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Venneforslag mottatt"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespørsel fra '%2\$s' hos %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har mottatt [zrl=%2\$s]et venneforslaget[/zrl] angående %3\$s fra %4\$s. "; -App::$strings["Name:"] = "Navn:"; -App::$strings["Photo:"] = "Bilde:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; -App::$strings["[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["Private Message"] = "Privat melding"; -App::$strings["Select"] = "Velg"; -App::$strings["Save to Folder"] = "Lagre i mappe"; -App::$strings["I will attend"] = "Jeg vil delta"; -App::$strings["I will not attend"] = "Jeg deltar ikke"; -App::$strings["I might attend"] = "Jeg vil kanskje delta"; -App::$strings["I agree"] = "Jeg er enig"; -App::$strings["I disagree"] = "Jeg er uenig"; -App::$strings["I abstain"] = "Jeg avstår"; -App::$strings["Add Star"] = "Legg til stjerne"; -App::$strings["Remove Star"] = "Fjern stjerne"; -App::$strings["Toggle Star Status"] = "Skru av og på stjernestatus"; -App::$strings["starred"] = "stjernemerket"; -App::$strings["Message signature validated"] = "Innleggets signatur er bekreftet"; -App::$strings["Message signature incorrect"] = "Innleggets signatur er feil"; -App::$strings["Add Tag"] = "Legg til merkelapp"; -App::$strings["like"] = "liker"; -App::$strings["dislike"] = "misliker"; -App::$strings["Share This"] = "Del dette"; -App::$strings["share"] = "del"; -App::$strings["Delivery Report"] = "Leveringsrapport"; -App::$strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; -App::$strings["to"] = "til"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "vegg-til-vegg"; -App::$strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; -App::$strings["from %s"] = "fra %s"; -App::$strings["last edited: %s"] = "sist endret: %s"; -App::$strings["Expires: %s"] = "Utløper: %s"; -App::$strings["Save Bookmarks"] = "Lagre bokmerker"; -App::$strings["Add to Calendar"] = "Legg til i kalender"; -App::$strings["Mark all seen"] = "Merk alle som sett"; -App::$strings["[+] show all"] = "[+] Vis alle"; -App::$strings["Bold"] = "Uthevet"; -App::$strings["Italic"] = "Kursiv"; -App::$strings["Underline"] = "Understreket"; -App::$strings["Quote"] = "Sitat"; -App::$strings["Code"] = "Kode"; -App::$strings["Image"] = "Bilde"; -App::$strings["Insert Link"] = "Sett inn lenke"; -App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; -App::$strings["Categories"] = "Kategorier"; -App::$strings["Tags"] = "Merkelapper"; -App::$strings["Keywords"] = "Nøkkelord"; -App::$strings["have"] = "har"; -App::$strings["has"] = "har"; -App::$strings["want"] = "ønsker"; -App::$strings["wants"] = "ønsker"; -App::$strings["likes"] = "liker"; -App::$strings["dislikes"] = "misliker"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Starter:"; -App::$strings["Finishes:"] = "Slutter:"; -App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; -App::$strings["Not specified"] = "Ikke spesifisert"; -App::$strings["Needs Action"] = "Trenger handling"; -App::$strings["Completed"] = "Ferdig"; -App::$strings["In Process"] = "Igang"; -App::$strings["Cancelled"] = "Avbrutt"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; -App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; -App::$strings["(Unknown)"] = "(Ukjent)"; -App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; -App::$strings["Visible to you only."] = "Synlig bare for deg."; -App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; -App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; -App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; -App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; -App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; -App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; -App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; -App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; -App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; -App::$strings["profile photo"] = "profilbilde"; -App::$strings["No recipient provided."] = "Ingen mottaker angitt."; -App::$strings["[no subject]"] = "[ikke noe emne]"; -App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; -App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; -App::$strings["prev"] = "forrige"; -App::$strings["first"] = "første"; -App::$strings["last"] = "siste"; -App::$strings["next"] = "neste"; -App::$strings["older"] = "eldre"; -App::$strings["newer"] = "nyere"; -App::$strings["No connections"] = "Ingen forbindelser"; -App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; -App::$strings["poke"] = "prikk"; -App::$strings["poked"] = "prikket"; -App::$strings["ping"] = "varsle"; -App::$strings["pinged"] = "varslet"; -App::$strings["prod"] = "oppildne"; -App::$strings["prodded"] = "oppildnet"; -App::$strings["slap"] = "daske"; -App::$strings["slapped"] = "dasket"; -App::$strings["finger"] = "fingre"; -App::$strings["fingered"] = "fingret"; -App::$strings["rebuff"] = "tilbakevise"; -App::$strings["rebuffed"] = "tilbakeviste"; -App::$strings["happy"] = "glad"; -App::$strings["sad"] = "trist"; -App::$strings["mellow"] = "dempet"; -App::$strings["tired"] = "trøtt"; -App::$strings["perky"] = "oppkvikket"; -App::$strings["angry"] = "sint"; -App::$strings["stupefied"] = "lamslått"; -App::$strings["puzzled"] = "forundret"; -App::$strings["interested"] = "interessert"; -App::$strings["bitter"] = "bitter"; -App::$strings["cheerful"] = "munter"; -App::$strings["alive"] = "levende"; -App::$strings["annoyed"] = "irritert"; -App::$strings["anxious"] = "nervøs"; -App::$strings["cranky"] = "gretten"; -App::$strings["disturbed"] = "foruroliget"; -App::$strings["frustrated"] = "frustrert"; -App::$strings["depressed"] = "lei seg"; -App::$strings["motivated"] = "motivert"; -App::$strings["relaxed"] = "avslappet"; -App::$strings["surprised"] = "overrasket"; -App::$strings["Monday"] = "mandag"; -App::$strings["Tuesday"] = "tirsdag"; -App::$strings["Wednesday"] = "onsdag"; -App::$strings["Thursday"] = "torsdag"; -App::$strings["Friday"] = "fredag"; -App::$strings["Saturday"] = "lørdag"; -App::$strings["Sunday"] = "søndag"; -App::$strings["January"] = "januar"; -App::$strings["February"] = "februar"; -App::$strings["March"] = "mars"; -App::$strings["April"] = "april"; -App::$strings["May"] = "mai"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "august"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "desember"; -App::$strings["Unknown Attachment"] = "Ukjent vedlegg"; -App::$strings["unknown"] = "ukjent"; -App::$strings["remove category"] = "fjern kategori"; -App::$strings["remove from file"] = "fjern fra fil"; -App::$strings["default"] = "standard"; -App::$strings["Page layout"] = "Sidens layout"; -App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet"; -App::$strings["Page content type"] = "Sidens innholdstype"; -App::$strings["Select an alternate language"] = "Velg et annet språk"; -App::$strings["activity"] = "aktivitet"; -App::$strings["Design Tools"] = "Designverktøy"; -App::$strings["Pages"] = "Sider"; -App::$strings["System"] = "System"; -App::$strings["New App"] = ""; -App::$strings["Suggestions"] = "Forslag"; -App::$strings["See more..."] = "Se mer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; -App::$strings["Add New Connection"] = "Legg til ny forbindelse"; -App::$strings["Enter channel address"] = "Skriv kanaladressen"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; -App::$strings["Notes"] = "Merknader"; -App::$strings["Remove term"] = "Fjern begrep"; -App::$strings["Saved Searches"] = "Lagrede søk"; -App::$strings["add"] = "legg til"; -App::$strings["Saved Folders"] = "Lagrede mapper"; -App::$strings["Everything"] = "Alt"; -App::$strings["Archives"] = "Arkiv"; -App::$strings["Refresh"] = "Forny"; -App::$strings["Account settings"] = "Kontoinnstillinger"; -App::$strings["Channel settings"] = "Kanalinnstillinger"; -App::$strings["Additional features"] = "Tilleggsfunksjoner"; -App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Display settings"] = "Visningsinnstillinger"; -App::$strings["Manage locations"] = ""; -App::$strings["Export channel"] = "Eksporter kanal"; -App::$strings["Connected apps"] = "Tilkoblede app-er"; -App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; -App::$strings["Private Mail Menu"] = "Meny for privat post"; -App::$strings["Combined View"] = "Kombinert visning"; -App::$strings["Inbox"] = "Innboks"; -App::$strings["Outbox"] = "Utboks"; -App::$strings["New Message"] = "Ny melding"; -App::$strings["Conversations"] = "Samtaler"; -App::$strings["Received Messages"] = "Mottatte meldinger"; -App::$strings["Sent Messages"] = "Sendte meldinger"; -App::$strings["No messages."] = "Ingen meldinger."; -App::$strings["Delete conversation"] = "Slett samtale"; -App::$strings["Events Menu"] = "Meny for hendelser"; -App::$strings["Day View"] = "Dag"; -App::$strings["Week View"] = "Uke"; -App::$strings["Month View"] = "Måned"; -App::$strings["Events Tools"] = "Kalenderverktøy"; -App::$strings["Export Calendar"] = "Eksporter kalender"; -App::$strings["Import Calendar"] = "Importer kalender"; -App::$strings["Chatrooms"] = "Chatrom"; -App::$strings["Overview"] = ""; -App::$strings["Chat Members"] = ""; -App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; -App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; -App::$strings["photo/image"] = "foto/bilde"; -App::$strings["Click to show more"] = ""; -App::$strings["Rating Tools"] = "Vurderingsverktøy"; -App::$strings["Rate Me"] = "Vurder meg"; -App::$strings["View Ratings"] = "Vis vurderinger"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Oppgaver"; -App::$strings["Documentation"] = "Dokumentasjon"; -App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; -App::$strings["For Members"] = "For medlemmer"; -App::$strings["For Administrators"] = "For administratorer"; -App::$strings["For Developers"] = "For utviklere"; -App::$strings["Member registrations waiting for confirmation"] = ""; -App::$strings["Inspect queue"] = "Inspiser kø"; -App::$strings["DB updates"] = "Databaseoppdateringer"; -App::$strings["Admin"] = "Administrator"; -App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; -App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; -App::$strings["Channel location missing."] = "Kanalplassering mangler."; -App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; -App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; -App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; -App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; -App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; -App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; -App::$strings["Public Timeline"] = "Offentlig tidslinje"; -App::$strings["Image/photo"] = "Bilde/fotografi"; -App::$strings["Encrypted content"] = "Kryptert innhold"; -App::$strings["Install %s element: "] = "Installer %s element:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; -App::$strings["spoiler"] = ""; -App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; -App::$strings["$1 wrote:"] = "$1 skrev:"; -App::$strings["Directory Options"] = "Kataloginnstillinger"; -App::$strings["Safe Mode"] = "Trygt modus"; -App::$strings["Public Forums Only"] = "Bare offentlige forum"; -App::$strings["This Website Only"] = "Kun dette nettstedet"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; -App::$strings["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"; -App::$strings["Multiple Profiles"] = "Flere profiler"; -App::$strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; -App::$strings["Advanced Profiles"] = "Avanserte profiler"; -App::$strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; -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["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"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)"; -App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; -App::$strings["Photo Location"] = "Bildeplassering"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; -App::$strings["Access Controlled Chatrooms"] = ""; -App::$strings["Provide chatrooms and chat services with access control."] = ""; -App::$strings["Smart Birthdays"] = ""; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; -App::$strings["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"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"; -App::$strings["Post Composition Features"] = "Funksjoner for å lage innlegg"; -App::$strings["Large Photos"] = "Store bilder"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"; -App::$strings["Even More Encryption"] = "Enda mer kryptering"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; -App::$strings["Enable Voting Tools"] = "Skru på verktøy for å stemme"; -App::$strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme på"; -App::$strings["Delayed Posting"] = "Tidfest publisering"; -App::$strings["Allow posts to be published at a later date"] = "Tillat innlegg å bli publisert på et senere tidspunkt"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene."; -App::$strings["Network and Stream Filtering"] = "Nettverk- og strømfiltrering"; -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["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"; -App::$strings["Network New Tab"] = "Nettverk Ny fane"; -App::$strings["Enable tab to display all new Network activity"] = "Skru på fane for å vise all ny nettverksaktivitet"; -App::$strings["Affinity Tool"] = "Nærhetsverktøy"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrer strømaktiviteten etter releasjonsdybde"; -App::$strings["Connection Filtering"] = "Filtrer forbindelser"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"; -App::$strings["Show channel suggestions"] = "Vis kanalforslag"; -App::$strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktøy"; -App::$strings["Community Tagging"] = "Felleskapsmerkelapper"; -App::$strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; -App::$strings["Post Categories"] = "Innleggskategorier"; -App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; -App::$strings["Emoji Reactions"] = ""; -App::$strings["Add emoji reaction ability to posts"] = ""; -App::$strings["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"; -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["Delete this item?"] = "Slett dette elementet?"; -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"; -App::$strings["Secret Passphrase"] = "Hemmelig passordsetning"; -App::$strings["Passphrase hint"] = "Hint om passordsetning"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; -App::$strings["close all"] = "Lukk alle"; -App::$strings["Nothing new here"] = "Ikke noe nytt her"; -App::$strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; -App::$strings["Describe (optional)"] = "Beskriv (valgfritt)"; -App::$strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "siden"; -App::$strings["from now"] = "fra nå"; -App::$strings["less than a minute"] = "mindre enn ett minutt"; -App::$strings["about a minute"] = "omtrent et minutt"; -App::$strings["%d minutes"] = "%d minutter"; -App::$strings["about an hour"] = "omtrent en time"; -App::$strings["about %d hours"] = "omtrent %d timer"; -App::$strings["a day"] = "en dag"; -App::$strings["%d days"] = "%d dager"; -App::$strings["about a month"] = "omtrent en måned"; -App::$strings["%d months"] = "%d måneder"; -App::$strings["about a year"] = "omtrent et år"; -App::$strings["%d years"] = "%d år"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "mai"; -App::$strings["Jan"] = "Jan"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "mai"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Aug"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Okt"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Des"; -App::$strings["Sun"] = "Søn"; -App::$strings["Mon"] = "Man"; -App::$strings["Tue"] = "Tirs"; -App::$strings["Wed"] = "Ons"; -App::$strings["Thu"] = "Tors"; -App::$strings["Fri"] = "Fre"; -App::$strings["Sat"] = "Lør"; -App::$strings["__ctx:calendar__ today"] = "idag"; -App::$strings["__ctx:calendar__ month"] = "måned"; -App::$strings["__ctx:calendar__ week"] = "uke"; -App::$strings["__ctx:calendar__ day"] = "dag"; -App::$strings["__ctx:calendar__ All day"] = "Hele dagen"; -App::$strings["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"; -App::$strings["Narrow navbar"] = "Smal navigasjonslinje"; -App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge"; -App::$strings["Navigation bar gradient top color"] = "Navigasjonslinjens graderte toppfarge"; -App::$strings["Navigation bar gradient bottom color"] = "Navigasjonslinjens graderte bunnfarge"; -App::$strings["Navigation active button gradient top color"] = "Aktiv navigasjonsknapp sin graderte toppfarge"; -App::$strings["Navigation active button gradient bottom color"] = "Aktiv navigasjonsknapp sin graderte bunnfarge"; -App::$strings["Navigation bar border color "] = "Navigasjonslinjens kantfarge"; -App::$strings["Navigation bar icon color "] = "Navigasjonslinjens ikonfarge"; -App::$strings["Navigation bar active icon color "] = "Navigasjonslinjens aktive ikoners farge"; -App::$strings["link color"] = "lenkefarge"; -App::$strings["Set font-color for banner"] = "Angi skriftfargen for banneret"; -App::$strings["Set the background color"] = "Angi bakgrunnsfargen"; -App::$strings["Set the background image"] = "Angi bakgrunnsbilde"; -App::$strings["Set the background color of items"] = "Angi bakgrunnsfargen til elementer"; -App::$strings["Set the background color of comments"] = "Angi bakgrunnsfargen til kommentarer"; -App::$strings["Set the border color of comments"] = "Angi kantfargen til kommentarer"; -App::$strings["Set the indent for comments"] = "Angi innrykket til kommentarer"; -App::$strings["Set the basic color for item icons"] = "Angi grunnfargen for elementikoner"; -App::$strings["Set the hover color for item icons"] = "Angi fargen til elementikoner ved berøring"; -App::$strings["Set font-size for the entire application"] = "Angi skriftstørrelsen for hele programmet"; -App::$strings["Example: 14px"] = "Eksempel: 14px"; -App::$strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; -App::$strings["Set font-color for posts and comments"] = "Angi skriftfargen for innlegg og kommentarer"; -App::$strings["Set radius of corners"] = "Angi hjørneradius"; -App::$strings["Set shadow depth of photos"] = "Angi skyggedybden til bilder"; -App::$strings["Set maximum width of content region in pixel"] = "Angi største bredde for innholdsregionen i pixler"; -App::$strings["Leave empty for default width"] = "La feltet stå tomt for å bruke standard bredde"; -App::$strings["Left align page content"] = "Venstrejuster sideinnhold"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den"; -App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; -App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; -App::$strings["__ctx:opensearch__ \$Projectname"] = ""; -App::$strings["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["Password"] = "Passord"; -App::$strings["Remember me"] = "Husk meg"; -App::$strings["Forgot your password?"] = "Glemt passordet ditt?"; -App::$strings["toggle mobile"] = "Skru på mobil"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."; -App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] SSL-feil ved nettsted hos %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke."; -App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-oppgaver kjører ikke på %s"; diff --git a/view/nb-no/messages.po b/view/nb-no/messages.po index 152120b15..bcb926d90 100644 --- a/view/nb-no/messages.po +++ b/view/nb-no/messages.po @@ -3,691 +3,7808 @@ # This file is distributed under the same license as the Red package. # # Translators: -# Haakon Meland Eriksen , 2013-2015 +# Haakon Meland Eriksen , 2015-2016 msgid "" msgstr "" -"Project-Id-Version: Hubzilla\n" +"Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-03-20 00:03-0700\n" -"PO-Revision-Date: 2015-03-25 13:13+0000\n" -"Last-Translator: Haakon Meland Eriksen \n" -"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/red-matrix/language/nb_NO/)\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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../include/dba/dba_driver.php:141 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 +msgid "parent" +msgstr "opp et nivå" + +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +msgid "Collection" +msgstr "Samling" + +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Viktigste" + +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Adressebok" + +#: ../../Zotlabs/Storage/Browser.php:140 +msgid "Calendar" +msgstr "Kalender" + +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Tidsplan innboks" + +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Tidsplan utboks" + +#: ../../Zotlabs/Storage/Browser.php:164 ../../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:216 ../../include/nav.php:93 +#: ../../include/conversation.php:1639 +msgid "Files" +msgstr "Filer" + +#: ../../Zotlabs/Storage/Browser.php:227 +msgid "Total" +msgstr "Totalt" + +#: ../../Zotlabs/Storage/Browser.php:229 +msgid "Shared" +msgstr "Delt" + +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:186 +msgid "Create" +msgstr "Lag" + +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Module/Cover_photo.php:357 +#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +msgid "Upload" +msgstr "Last opp" + +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 +#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 +#: ../../Zotlabs/Module/Settings.php:618 +#: ../../Zotlabs/Module/Sharedwithme.php:99 +msgid "Name" +msgstr "Navn" + +#: ../../Zotlabs/Storage/Browser.php:236 +msgid "Type" +msgstr "Type" + +#: ../../Zotlabs/Storage/Browser.php:237 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +msgid "Size" +msgstr "Størrelse" + +#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Module/Sharedwithme.php:102 +msgid "Last Modified" +msgstr "Sist endret" + +#: ../../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/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/Blocks.php:159 +#: ../../Zotlabs/Module/Connedit.php:572 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 +#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 +#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +msgid "Delete" +msgstr "Slett" + +#: ../../Zotlabs/Storage/Browser.php:285 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" +msgid "You are using %1$s of your available file storage." +msgstr "Du bruker %1$s av din tilgjengelige lagringsplass." -#: ../../include/photo/photo_driver.php:687 ../../mod/profile_photo.php:143 -#: ../../mod/profile_photo.php:302 ../../mod/profile_photo.php:424 -#: ../../mod/photos.php:91 ../../mod/photos.php:625 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: ../../include/security.php:349 -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/notify.php:23 -msgid "created a new post" -msgstr "laget et nytt innlegg" - -#: ../../include/notify.php:24 +#: ../../Zotlabs/Storage/Browser.php:290 #, php-format -msgid "commented on %s's post" -msgstr "kommenterte på %s sitt innlegg" +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Du bruker %1$s av %2$s tilgjengelig lagringsplass (%3$s%)" -#: ../../include/group.php:26 +#: ../../Zotlabs/Storage/Browser.php:302 +msgid "WARNING:" +msgstr "ADVARSEL:" + +#: ../../Zotlabs/Storage/Browser.php:305 +msgid "Create new folder" +msgstr "Lag ny mappe" + +#: ../../Zotlabs/Storage/Browser.php:307 +msgid "Upload file" +msgstr "Last opp fil" + +#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:385 +msgid "Permission denied" +msgstr "Tillatelse avvist" + +#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 +#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Cover_photo.php:277 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:69 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Filestorage.php:79 +#: ../../Zotlabs/Module/Filestorage.php:94 +#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Notifications.php:70 +#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../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/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." + +#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +msgid "Not Found" +msgstr "Ikke funnet" + +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 +msgid "Page not found." +msgstr "Siden ikke funnet." + +#: ../../Zotlabs/Zot/Auth.php:138 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt." -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Standard personverngruppe for nye kontakter" - -#: ../../include/group.php:254 ../../mod/admin.php:821 -msgid "All Channels" -msgstr "Alle kanaler" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "endre" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Samlinger" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Endre samling" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Lag en ny samling" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanaler som ikke er i noen samling" - -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "legg til" - -#: ../../include/bbcode.php:115 ../../include/bbcode.php:694 -#: ../../include/bbcode.php:697 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:708 -#: ../../include/bbcode.php:711 ../../include/bbcode.php:716 -#: ../../include/bbcode.php:719 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 ../../include/bbcode.php:730 -#: ../../include/bbcode.php:733 -msgid "Image/photo" -msgstr "Bilde/fotografi" - -#: ../../include/bbcode.php:150 ../../include/bbcode.php:744 -msgid "Encrypted content" -msgstr "Kryptert innhold" - -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Installer designelement:" - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-kode" - -#: ../../include/bbcode.php:223 +#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 +#: ../../Zotlabs/Module/Openid.php:183 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev følgende %2$s %3$s" +msgid "Welcome %s. Remote authentication successful." +msgstr "Velkommen %s. Ekstern autentisering er vellykket." -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "innlegg" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Denne teksten vil se forskjellig ut for ulike besøkende" - -#: ../../include/bbcode.php:662 -msgid "$1 spoiler" -msgstr "$1 avsløring" - -#: ../../include/bbcode.php:682 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../include/identity.php:31 ../../mod/item.php:1078 -msgid "Unable to obtain identity information from database" -msgstr "Klarer ikke å få tak i identitetsinformasjon fra databasen" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Mangler navn" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "Navnet er for langt" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Ingen kontoidentifikator" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Kallenavn er påkrevd." - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reservert kallenavn. Vennligst velg et annet." - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -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/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Klarer ikke å hente den lagede identiteten" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standardprofil" - -#: ../../include/identity.php:387 ../../include/identity.php:388 -#: ../../include/identity.php:395 ../../include/widgets.php:430 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:339 -#: ../../mod/settings.php:343 ../../mod/settings.php:344 -#: ../../mod/settings.php:347 ../../mod/settings.php:358 -#: ../../mod/connedit.php:567 -msgid "Friends" -msgstr "Venner" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Forespurt kanal er ikke tilgjengelig." - -#: ../../include/identity.php:691 ../../mod/profile.php:16 -#: ../../mod/achievements.php:11 ../../mod/blocks.php:29 -#: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:53 -#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 -#: ../../mod/layouts.php:29 +#: ../../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." -#: ../../include/identity.php:842 ../../include/widgets.php:136 -#: ../../include/widgets.php:175 ../../include/conversation.php:940 -#: ../../include/Contact.php:107 ../../mod/match.php:62 -#: ../../mod/directory.php:291 ../../mod/suggest.php:51 -msgid "Connect" -msgstr "Koble" +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "En standardtekst om hva du bør gjøre som ny her" -#: ../../include/identity.php:856 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Endre profilbilde" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 +#: ../../Zotlabs/Module/Editblock.php:108 +msgid "Block Name" +msgstr "Byggeklossens navn" -#: ../../include/identity.php:863 -msgid "Profiles" -msgstr "Profiler" +#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 +msgid "Blocks" +msgstr "Byggeklosser" -#: ../../include/identity.php:863 -msgid "Manage/edit profiles" -msgstr "Håndtere/endre profiler" +#: ../../Zotlabs/Module/Blocks.php:153 +msgid "Block Title" +msgstr "Byggeklossens tittel" -#: ../../include/identity.php:864 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Lag ny profil" +#: ../../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" -#: ../../include/identity.php:867 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Endre profil" +#: ../../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" -#: ../../include/identity.php:880 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilbilde" +#: ../../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" -#: ../../include/identity.php:883 -msgid "visible to everybody" -msgstr "synlig for alle" +#: ../../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" -#: ../../include/identity.php:884 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Endre synlighet" +#: ../../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." -#: ../../include/identity.php:896 ../../include/bb2diaspora.php:450 -#: ../../include/event.php:40 ../../mod/events.php:645 -#: ../../mod/directory.php:223 +#: ../../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" + +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Online" + +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ugyldig element." + +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bokmerke lagt til" + +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mine bokmerker" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Mine forbindelsers bokmerker" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortsett" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premiumkanal-oppsett" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Slå på restriksjoner for forbindelse med premiumkanal" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vennligst skriv dine restriksjoner og betingelser, slik som PayPal-kvittering, retningslinjer for bruk, og så videre." + +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Denne kanalen kan kreve ytterligere steg og bekreftelse av følgende betingelser før tilkobling:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potensielle forbindelser vil da se følgende tekst før de går videre:" + +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Ved å fortsette bekrefter jeg at jeg har oppfylt alle instruksjoner gitt på denne siden." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Begrenset kanal eller premiumkanal" + +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Fikk ikke tilgang til kontaktinformasjonen." + +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Fant ikke valgt profil." + +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Forbindelsen er oppdatert." + +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." + +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "er nå forbundet til" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "No" +msgstr "Nei" + +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 +#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 +#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 +msgid "Yes" +msgstr "Ja" + +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Fikk ikke tilgang til informasjonen i adresseboken." + +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." + +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 +msgid "Unable to set address book parameters." +msgstr "Ikke i stand til å angi parametre for adresseboken." + +#: ../../Zotlabs/Module/Connedit.php:503 +msgid "Connection has been removed." +msgstr "Forbindelsen har blitt fjernet." + +#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:86 ../../include/conversation.php:954 +msgid "View Profile" +msgstr "Vis profil" + +#: ../../Zotlabs/Module/Connedit.php:522 +#, php-format +msgid "View %s's profile" +msgstr "Vis %s sin profil" + +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Refresh Permissions" +msgstr "Oppfrisk tillatelser" + +#: ../../Zotlabs/Module/Connedit.php:529 +msgid "Fetch updated permissions" +msgstr "Hent oppdaterte tillatelser" + +#: ../../Zotlabs/Module/Connedit.php:533 +msgid "Recent Activity" +msgstr "Nylig aktivitet" + +#: ../../Zotlabs/Module/Connedit.php:536 +msgid "View recent posts and comments" +msgstr "Vis nylige innlegg og kommentarer" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 +msgid "Unblock" +msgstr "Ikke blokker lenger" + +#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +msgid "Block" +msgstr "Blokker" + +#: ../../Zotlabs/Module/Connedit.php:543 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" + +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "This connection is blocked!" +msgstr "Denne forbindelsen er blokkert!" + +#: ../../Zotlabs/Module/Connedit.php:548 +msgid "Unignore" +msgstr "Ikke ignorer lenger" + +#: ../../Zotlabs/Module/Connedit.php:548 +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../Zotlabs/Module/Connedit.php:551 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" + +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "This connection is ignored!" +msgstr "Denne forbindelsen er ignorert!" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Unarchive" +msgstr "Ikke arkiver lenger" + +#: ../../Zotlabs/Module/Connedit.php:556 +msgid "Archive" +msgstr "Arkiver" + +#: ../../Zotlabs/Module/Connedit.php:559 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" + +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "This connection is archived!" +msgstr "Denne forbindelsen er arkivert!" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Unhide" +msgstr "Ikke skjul lenger" + +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Hide" +msgstr "Skjul" + +#: ../../Zotlabs/Module/Connedit.php: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:568 +msgid "This connection is hidden!" +msgstr "Denne forbindelsen er skjult!" + +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Delete this connection" +msgstr "Slett denne forbindelsen" + +#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 +msgid "Me" +msgstr "Meg" + +#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 +msgid "Family" +msgstr "Familie" + +#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 +#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 +#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 +#: ../../include/widgets.php:495 ../../include/selectors.php:123 +#: ../../include/channel.php:389 ../../include/channel.php:390 +#: ../../include/channel.php:397 +msgid "Friends" +msgstr "Venner" + +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Bekjente" + +#: ../../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:654 +msgid "Approve this connection" +msgstr "Godta denne forbindelsen" + +#: ../../Zotlabs/Module/Connedit.php:654 +msgid "Accept connection to allow communication" +msgstr "Godta denne forbindelsen for å tillate kommunikasjon" + +#: ../../Zotlabs/Module/Connedit.php:659 +msgid "Set Affinity" +msgstr "Angi nærhet" + +#: ../../Zotlabs/Module/Connedit.php:662 +msgid "Set Profile" +msgstr "Angi profil" + +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Set Affinity & Profile" +msgstr "Angi nærhet og profil" + +#: ../../Zotlabs/Module/Connedit.php:698 +msgid "none" +msgstr "ingen" + +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 +msgid "Connection Default Permissions" +msgstr "Forbindelsens standard tillatelser" + +#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 +#, php-format +msgid "Connection: %s" +msgstr "Forbindelse: %s" + +#: ../../Zotlabs/Module/Connedit.php:703 +msgid "Apply these permissions automatically" +msgstr "Bruk disse tillatelsene automatisk" + +#: ../../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:705 +msgid "This connection's primary address is" +msgstr "Denne forbindelsens primære adresse er" + +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Available locations:" +msgstr "Tilgjengelige plasseringer:" + +#: ../../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:711 +msgid "Connection Tools" +msgstr "" + +#: ../../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:714 ../../Zotlabs/Module/Rate.php:159 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Vurdering" + +#: ../../Zotlabs/Module/Connedit.php:715 +msgid "Slide to adjust your rating" +msgstr "Flytt for å justere din vurdering" + +#: ../../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:718 +msgid "Custom Filter" +msgstr "Tilpasset filter" + +#: ../../Zotlabs/Module/Connedit.php:719 +msgid "Only import posts with this text" +msgstr "Bare importer innlegg med disse ordene" + +#: ../../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:720 +msgid "Do not import posts with this text" +msgstr "Ikke importer innlegg med denne teksten" + +#: ../../Zotlabs/Module/Connedit.php:722 +msgid "This information is public!" +msgstr "Denne informasjonen er offentlig!" + +#: ../../Zotlabs/Module/Connedit.php:727 +msgid "Connection Pending Approval" +msgstr "Forbindelse venter på godkjenning" + +#: ../../Zotlabs/Module/Connedit.php:730 +msgid "inherited" +msgstr "arvet" + +#: ../../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:734 +msgid "Their Settings" +msgstr "Deres innstillinger" + +#: ../../Zotlabs/Module/Connedit.php:735 +msgid "My Settings" +msgstr "Mine innstillinger" + +#: ../../Zotlabs/Module/Connedit.php:737 +msgid "Individual Permissions" +msgstr "Individuelle tillatelser" + +#: ../../Zotlabs/Module/Connedit.php:738 +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 "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:739 +msgid "" +"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." +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:740 +msgid "Last update:" +msgstr "Siste oppdatering:" + +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:20 +msgid "Public access denied." +msgstr "Offentlig tilgang avvist." + +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d vurdering" +msgstr[1] "%d vurderinger" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Kjønn:" + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status:" + +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Hjemmeside:" + +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 +msgid "Age:" +msgstr "Alder:" + +#: ../../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:" -#: ../../include/identity.php:900 ../../include/identity.php:1142 -msgid "Gender:" -msgstr "Kjønn:" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Beskrivelse:" -#: ../../include/identity.php:901 ../../include/identity.php:1186 -msgid "Status:" -msgstr "Status:" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 +msgid "Hometown:" +msgstr "Hjemby:" -#: ../../include/identity.php:902 ../../include/identity.php:1197 -msgid "Homepage:" -msgstr "Hjemmeside:" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 +msgid "About:" +msgstr "Om:" -#: ../../include/identity.php:903 -msgid "Online Now" -msgstr "Online nå" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/conversation.php:956 ../../include/channel.php:1012 +msgid "Connect" +msgstr "Koble" -#: ../../include/identity.php:986 ../../include/identity.php:1066 -#: ../../mod/ping.php:324 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Offentlig forum:" -#: ../../include/identity.php:987 ../../include/identity.php:1067 -msgid "F d" -msgstr "F d" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Nøkkelord:" -#: ../../include/identity.php:1032 ../../include/identity.php:1107 -#: ../../mod/ping.php:346 -msgid "[today]" -msgstr "[idag]" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Ikke foreslå" -#: ../../include/identity.php:1044 -msgid "Birthday Reminders" -msgstr "Fødselsdagspåminnnelser" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Felles forbindelser:" -#: ../../include/identity.php:1045 -msgid "Birthdays this week:" -msgstr "Fødselsdager denne uken:" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Global katalog" -#: ../../include/identity.php:1100 -msgid "[No description]" -msgstr "[Ingen beskrivelse]" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokal katalog" -#: ../../include/identity.php:1118 -msgid "Event Reminders" -msgstr "Hendelsespåminnelser" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Finn" -#: ../../include/identity.php:1119 -msgid "Events this week:" -msgstr "Hendelser denne uken:" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Finner:" -#: ../../include/identity.php:1132 ../../include/identity.php:1249 -#: ../../include/apps.php:138 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Kanalforslag" -#: ../../include/identity.php:1140 ../../mod/settings.php:1045 -msgid "Full Name:" -msgstr "Fullt navn:" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "Neste side" -#: ../../include/identity.php:1147 -msgid "Like this channel" -msgstr "Lik denne kanalen" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "Forrige side" -#: ../../include/identity.php:1158 ../../include/conversation.php:1692 -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:391 -#: ../../mod/photos.php:1007 +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sorteringsvalg" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetisk" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Omvendt alfabetisk" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Nyest til eldst" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Eldst til nyest" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." + +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 +#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 +msgid "Item not found." +msgstr "Elementet ble ikke funnet." + +#: ../../Zotlabs/Module/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/Editblock.php:124 ../../include/conversation.php:1228 +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/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Blokkert" + +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorert" + +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Skjult" + +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Arkivert" + +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1535 +msgid "New" +msgstr "Nye" + +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nye forbindelser" + +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Vis ventende (nye) forbindelser" + +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle forbindelser" + +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Vis alle forbindelser" + +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Vis bare forbindelser som er blokkert" + +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Vis bare ignorerte forbindelser" + +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Vis bare arkiverte forbindelser" + +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Vis bare skjulte forbindelser" + +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Venter på godkjenning" + +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" + +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Endre forbindelse" + +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Slett forbindelse" + +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaladresse" + +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Nettverk" + +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 +msgid "Status" +msgstr "Status" + +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Forbundet" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Godkjenn forbindelse" + +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1037 +msgid "Approve" +msgstr "Godkjenn" + +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignorer forbindelse" + +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Nylig aktivitet" + +#: ../../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:228 ../../include/text.php:945 +#: ../../include/text.php:957 ../../include/nav.php:165 +#: ../../include/acl_selectors.php:276 +msgid "Search" +msgstr "Søk" + +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Søk blant dine forbindelser" + +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Søk blant forbindelser" + +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:79 +msgid "Image uploaded but image cropping failed." +msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." + +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Forsidebilder" + +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../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: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:217 +msgid "Image upload failed." +msgstr "Opplasting av bildet mislyktes." + +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../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:4270 +msgid "female" +msgstr "kvinne" + +#: ../../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:4272 +msgid "male" +msgstr "mann" + +#: ../../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: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:1661 +msgid "cover photo" +msgstr "forsidebilde" + +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 +msgid "Photo not available." +msgstr "Bildet er ikke tilgjengelig." + +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:365 +msgid "Upload File:" +msgstr "Last opp fil:" + +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:366 +msgid "Select a profile:" +msgstr "Velg en profil:" + +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Last opp forsidebilde" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:985 +msgid "or" +msgstr "eller" + +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../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: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:390 +msgid "Crop Image" +msgstr "Beskjær bildet" + +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../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:393 +msgid "Done Editing" +msgstr "Avslutt redigering" + +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Elementet kan ikke endres" + +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 +msgid "Edit post" +msgstr "Endre innlegg" + +#: ../../Zotlabs/Module/Events.php:26 +msgid "Calendar entries imported." +msgstr "Kalenderhendelsene er importert." + +#: ../../Zotlabs/Module/Events.php:28 +msgid "No calendar entries found." +msgstr "Ingen kalenderhendelser funnet." + +#: ../../Zotlabs/Module/Events.php:105 +msgid "Event can not end before it has started." +msgstr "Hendelsen kan ikke slutte før den starter." + +#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 +#: ../../Zotlabs/Module/Events.php:136 +msgid "Unable to generate preview." +msgstr "Klarer ikke å lage forhåndsvisning." + +#: ../../Zotlabs/Module/Events.php:114 +msgid "Event title and start time are required." +msgstr "Hendelsestittel og starttidspunkt er påkrevd." + +#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 +msgid "Event not found." +msgstr "Hendelsen ble ikke funnet." + +#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 +#: ../../include/text.php:1943 ../../include/conversation.php:123 +msgid "event" +msgstr "hendelse" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Edit event title" +msgstr "Endre tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:449 +msgid "Event title" +msgstr "Tittel på hendelse" + +#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Påkrevd" + +#: ../../Zotlabs/Module/Events.php:451 +msgid "Categories (comma-separated list)" +msgstr "Kategorier (kommaseparert liste)" + +#: ../../Zotlabs/Module/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" +msgstr "Dette nettstedet er ikke en katalogtjener" + +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Lagre til mappe:" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- velg -" + +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 +#: ../../include/text.php:958 ../../include/widgets.php:201 +msgid "Save" +msgstr "Lagre" + +#: ../../Zotlabs/Module/Dreport.php:27 +msgid "Invalid message" +msgstr "Ugyldig melding" + +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "no results" +msgstr "ingen resultater" + +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Leveringsrapport for %1$s" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "Kanalsynkronisering er behandlet" + +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "lagt i kø" + +#: ../../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:127 +#: ../../Zotlabs/Module/Layouts.php:130 +msgid "Layout Description (Optional)" +msgstr "Layoutens beskrivelse (valgfritt)" + +#: ../../Zotlabs/Module/Editlayout.php:135 +msgid "Edit Layout" +msgstr "Endre layout" + +#: ../../Zotlabs/Module/Editwebpage.php:143 +msgid "Page link" +msgstr "" + +#: ../../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." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Kunne ikke opprette personverngruppen." + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3893 +msgid "Privacy group not found." +msgstr "Personverngruppen ble ikke funnet" + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Personverngruppen er oppdatert." + +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Lag en gruppe av kanaler." + +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Personverngruppens navn:" + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Medlemmer er synlig for andre kanaler" + +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Personverngruppen er fjernet." + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Ikke i stand til å fjerne personverngruppen." + +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Personverngruppebehandler" + +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Medlemmer" + +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle tilkoblede kanaler" + +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Klikk på en kanal for å legge til eller fjerne." + +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Del innhold fra Firefox til $Projectname" + +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Skru på Firefox $Projectname tilbyderen" + +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Tillat programforbindelse" + +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" + +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Vennligst logg inn for å fortsette." + +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" + +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Søk i dokumentasjon" + +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Hjelp:" + +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 +#: ../../include/nav.php:159 +msgid "Help" +msgstr "Hjelp" + +#: ../../Zotlabs/Module/Help.php:120 +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/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Din tjenesteplan tillater bare %d kanaler." + +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Ingenting å importere." + +#: ../../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/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Importert fil er tom." + +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Advarsel: databaseversjoner avviker med %1$d oppdateringer." + +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +msgid "Cloned channel not found. Import failed." +msgstr "Klonet kanal ble ikke funnet. Import mislyktes." + +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Ingen kanal. Import mislyktes." + +#: ../../Zotlabs/Module/Import.php:510 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import ferdig." + +#: ../../Zotlabs/Module/Import.php:532 +msgid "You must be logged in to use this feature." +msgstr "Du må være innlogget for å bruke denne funksjonen." + +#: ../../Zotlabs/Module/Import.php:537 +msgid "Import Channel" +msgstr "Importer kanal" + +#: ../../Zotlabs/Module/Import.php:538 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil." + +#: ../../Zotlabs/Module/Import.php:539 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fil som skal lastes opp" + +#: ../../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/Import.php:541 +msgid "Your old identity address (xyz@example.com)" +msgstr "Din gamle identitetsadresse (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:542 +msgid "Your old login email address" +msgstr "Din gamle innloggings e-postadresse" + +#: ../../Zotlabs/Module/Import.php:543 +msgid "Your old login password" +msgstr "Ditt gamle innloggingspassord" + +#: ../../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/Import.php:545 +msgid "Make this hub my primary location" +msgstr "Gjør dette nettstedet til min primære plassering" + +#: ../../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/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/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:183 +msgid "Comanche page description language help" +msgstr "Hjelp med Comanche sidebeskrivelsesspråk" + +#: ../../Zotlabs/Module/Layouts.php:187 +msgid "Layout Description" +msgstr "Layout-beskrivelse" + +#: ../../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" + +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Denne handlingen er begrenset til medlemmer." + +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Vennligst logg inn med din $Projectname ID eller registrer deg som et nytt $Projectname-medlem for å fortsette" + +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ugyldig forespørsel." + +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanal" + +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ting" + +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanalen er utilgjengelig." + +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Forrige handling er omgjort." + +#: ../../Zotlabs/Module/Like.php: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:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1946 ../../include/conversation.php:148 +msgid "status" +msgstr "status" + +#: ../../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: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: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: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: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: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: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: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:537 +msgid "Action completed." +msgstr "Handling ferdig." + +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Tusen takk." + +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Import ferdig" + +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importer elementer" + +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Bruk dette skjemaet for å importere eksisterende innlegg og innhold fra en eksportfil." + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Grensen for totalt antall invitasjoner er overskredet." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : ikke en gyldig e-postadresse." + +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Bli med oss på $Projectname" + +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." + +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : meldingslevering feilet." + +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d melding sendt." +msgstr[1] "%d meldinger sendt." + +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du har ikke flere invitasjoner tilgjengelig" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Send invitasjoner" + +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Skriv e-postadresser, en per linje:" + +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 +msgid "Your message:" +msgstr "Din melding:" + +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Du er velkommen til å bli med i mitt fellesskap på $Projectname." + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Du må oppgi denne invitasjonskoden:" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrer ved enhver $Projectname-lokasjon (de er alle forbundet med hverandre)" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Skriv inn min $Projectname-adresse i nettstedets søkefelt." + +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "eller besøke" + +#: ../../Zotlabs/Module/Invite.php:144 +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." + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Oppslag på plassering mislyktes." + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synkroniserer plasseringer" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Ingen plasseringer ble funnet." + +#: ../../Zotlabs/Module/Locs.php:116 +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 "" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Slett" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Vennligst vent flere minutter mellom hver etterfølgende operasjon." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Når mulig, fjern en plassering ved å logge inn på det nettstedet eller den hub-en og fjern din kanal." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Bruk dette skjemaet for å fjerne plasseringen hvis huben ikke er i drift lenger." + +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hubben ble ikke funnet." + +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Ikke i stand til å slå opp mottaker." + +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Ikke i stand til å kommunisere med forespurt kanal." + +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan ikke bekrefte forespurt kanal." + +#: ../../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:143 +msgid "Messages" +msgstr "Meldinger" + +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Message recalled." +msgstr "Innlegg tilbakekalt." + +#: ../../Zotlabs/Module/Mail.php:191 +msgid "Conversation removed." +msgstr "Samtale fjernet." + +#: ../../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:234 +msgid "Requested channel is not in this network" +msgstr "Forespurt kanal er ikke tilgjengelig i dette nettverket." + +#: ../../Zotlabs/Module/Mail.php:242 +msgid "Send Private Message" +msgstr "Send privat melding" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +msgid "To:" +msgstr "Til:" + +#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +msgid "Subject:" +msgstr "Emne:" + +#: ../../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:253 +msgid "Send" +msgstr "Send" + +#: ../../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:340 +msgid "Delete message" +msgstr "Slett melding" + +#: ../../Zotlabs/Module/Mail.php:341 +msgid "Delivery report" +msgstr "Leveringsrapport" + +#: ../../Zotlabs/Module/Mail.php:342 +msgid "Recall message" +msgstr "Tilbakekall innlegg" + +#: ../../Zotlabs/Module/Mail.php:344 +msgid "Message has been recalled." +msgstr "Innlegget har blitt tilbakekalt." + +#: ../../Zotlabs/Module/Mail.php:361 +msgid "Delete Conversation" +msgstr "Slett samtale" + +#: ../../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:367 +msgid "Send Reply" +msgstr "Send svar" + +#: ../../Zotlabs/Module/Mail.php:372 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Din melding til %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 har laget %1$.0f av %2$.0f tillatte kanaler." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Lag en ny kanal" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 +#: ../../include/nav.php:206 +msgid "Channel Manager" +msgstr "Kanalstyring" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Gjeldende kanal" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Bytt til en av dine kanaler ved å velge den." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standardkanal" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Gjør til standard" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nye meldinger" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nye introduksjoner" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Ingen gyldig konto funnet." + +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nettstedsmedlem (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Forespurt om å tilbakestille passord hos %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." + +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 +msgid "Password Reset" +msgstr "Tilbakestill passord" + +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Ditt passord har blitt tilbakestilt som forespurt." + +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Ditt nye passord er" + +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" + +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klikke her for å logge inn" + +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the 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." +msgstr "Ikke i stand til å oppdatere meny." + +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Ikke i stand til å lage meny." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menynavn" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unikt navn (ikke synlig på websiden) - påkrevet" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menytittel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Synlig på websiden - la stå tomt for ingen tittel" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Tillat bokmerker" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menyen kan brukes til å lagre lagrede bokmerker" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Send inn og fortsett" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 +msgid "Menus" +msgstr "Menyer" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bokmerker tillatt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Slett denne menyen" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Endre menyinnholdet" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Endre denne menyen" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menyen kunne ikke bli slettet." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menyen ble ikke funnet." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Endre meny" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Legg til eller fjern punkter i denne menyen" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menynavn" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Må være unik, ses bare av deg" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menytittel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menytittelen andre ser" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Tillat bokmerker" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Ikke funnet." + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s er %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 +msgid "Mood" +msgstr "Stemning" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Angi ditt nåværende humør og fortell dine venner" + +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profiltreff" + +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil." + +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "er interessert i:" + +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Ingen treff" + +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" +msgstr "Gruppen finnes ikke" + +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" +msgstr "Ingen slik kanal" + +#: ../../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." +msgstr "Klarer ikke å lage element." + +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Ikke i stand til å oppdatere menyelement." + +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Ikke i stand til å legge til menyelement." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Menyelement Tillatelser" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "(click to open/close)" +msgstr "(klikk for å åpne/lukke)" + +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Lenkenavn" + +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Lenke- eller undermeny-mål" + +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny" + +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Bruk magic-autent hvis mulig" + +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Åpne lenke i nytt vindu" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Ordne i liste" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Høyere tall vil synke mot bunnen av listen" + +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Send inn og avslutt" + +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Send inn og fortsett" + +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Meny:" + +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Lenkemål" + +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Endre meny" + +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Endre element" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Slett element" + +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nytt element" + +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Endre denne menybeholderen" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Legg til menyelement" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Slett dette menyelementet" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Endre dette menyelementet" + +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menyelement ble ikke funnet." + +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menyelement slettet." + +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menyelement kunne ikke bli slettet." + +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Endre menyelement" + +#: ../../Zotlabs/Module/Mitem.php:230 +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" -#: ../../include/identity.php:1171 -msgid "j F, Y" -msgstr "j F, Y" +#: ../../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" -#: ../../include/identity.php:1172 -msgid "j F" -msgstr "j F" +#: ../../Zotlabs/Module/Photos.php:1235 +msgid "Photo Tools" +msgstr "" -#: ../../include/identity.php:1179 -msgid "Birthday:" -msgstr "Fødselsdag:" +#: ../../Zotlabs/Module/Photos.php:1244 +msgid "In This Photo:" +msgstr "I dette bildet:" -#: ../../include/identity.php:1183 -msgid "Age:" -msgstr "Alder:" +#: ../../Zotlabs/Module/Photos.php:1249 +msgid "Map" +msgstr "Kart" -#: ../../include/identity.php:1192 +#: ../../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 "for %1$d %2$s" -msgstr "for %1$d %2$s" +msgid "Fetching URL returns error: %1$s" +msgstr "Henting av URL gir følgende feil: %1$s" -#: ../../include/identity.php:1195 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Seksuell preferanse:" +#: ../../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." -#: ../../include/identity.php:1199 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Hjemby:" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilen er slettet." -#: ../../include/identity.php:1201 -msgid "Tags:" -msgstr "Merkelapper:" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profil-" -#: ../../include/identity.php:1203 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politiske synspunkter:" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Ny profil opprettet." -#: ../../include/identity.php:1205 -msgid "Religion:" -msgstr "Religion:" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profilen er utilgjengelig for klonen." -#: ../../include/identity.php:1207 -msgid "About:" -msgstr "Om:" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Profilen er utilgjengelig for eksport." -#: ../../include/identity.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbyer/interesser:" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profilnavn er påkrevd." -#: ../../include/identity.php:1211 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Liker:" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Sivilstand" -#: ../../include/identity.php:1213 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Misliker:" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantisk partner" -#: ../../include/identity.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformasjon og sosiale nettverk:" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Liker" -#: ../../include/identity.php:1217 -msgid "My other channels:" -msgstr "Mine andre kanaler:" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Liker ikke" -#: ../../include/identity.php:1219 -msgid "Musical interests:" -msgstr "Musikkinteresse:" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Arbeid/sysselsetting" -#: ../../include/identity.php:1221 -msgid "Books, literature:" -msgstr "Bøker, litteratur:" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religion" -#: ../../include/identity.php:1223 -msgid "Television:" -msgstr "TV:" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politiske synspunkter" -#: ../../include/identity.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underholdning:" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuelle preferanser" -#: ../../include/identity.php:1227 -msgid "Love/Romance:" -msgstr "Kjærlighet/romantikk:" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Hjemmeside" -#: ../../include/identity.php:1229 -msgid "Work/employment:" -msgstr "Arbeid/sysselsetting:" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesser" -#: ../../include/identity.php:1231 -msgid "School/education:" -msgstr "Skole/utdannelse:" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilen er oppdatert." -#: ../../include/identity.php:1251 -msgid "Like this thing" -msgstr "Lik denne tingen" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "" -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny side" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Endre profildetaljer" -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:42 -#: ../../mod/settings.php:644 ../../mod/blocks.php:132 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/thing.php:233 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/editpost.php:113 ../../mod/menu.php:78 ../../mod/webpages.php:162 -#: ../../mod/editblock.php:143 ../../mod/layouts.php:167 -msgid "Edit" -msgstr "Endre" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Vis denne profilen" -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Vis" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:959 +msgid "Edit visibility" +msgstr "Endre synlighet" -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1152 -#: ../../include/ItemObject.php:677 ../../mod/events.php:651 -#: ../../mod/webpages.php:166 ../../mod/photos.php:970 -msgid "Preview" -msgstr "Forhåndsvisning" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Handlinger" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Sidelenke" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +msgid "Change profile photo" +msgstr "Endre profilbilde" -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Tittel" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Lag en ny profil ved å bruke disse innstillingene" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Laget" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Klon denne profilen" -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Endret" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Slett denne profilen" -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorier" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Legg til profilting" -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Apper" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1498 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1526 msgid "Personal" msgstr "Personlig" -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Lag personlig app" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "" -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Endre personlig app" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Forskjellig" -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 +#: ../../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." + +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# Kontoer" + +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# blokkerte kontoer" + +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# utgåtte kontoer" + +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# kontoer som holder på å gå ut" + +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# Kanaler" + +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# hoved" + +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# kloner" + +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Meldingskøer" + +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 +#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 +#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 +#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 +#: ../../Zotlabs/Module/Admin.php:1731 +msgid "Administration" +msgstr "Administrasjon" + +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Sammendrag" + +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Registrerte kontoer" + +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +msgid "Pending registrations" +msgstr "Ventende registreringer" + +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Registrerte kanaler" + +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +msgid "Active plugins" +msgstr "Aktive tilleggsfunksjoner" + +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versjon" + +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Nettstedsinnstillinger er oppdatert." + +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +msgid "Default" +msgstr "Standard" + +#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 +msgid "mobile" +msgstr "mobil" + +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "eksperimentell" + +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "ikke støttet" + +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Ja - med godkjenning" + +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Mitt nettsted er ikke en offentlig tjeneste" + +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "Mitt nettsted gir kun tilgang mot betaling" + +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "Mitt nettsted har kun gratis tilgang" + +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" + +#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +msgid "Site" +msgstr "Nettsted" + +#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registrering" + +#: ../../Zotlabs/Module/Admin.php:494 +msgid "File upload" +msgstr "Last opp fil" + +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Policies" +msgstr "Retningslinjer" + +#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avansert" + +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Site name" +msgstr "Nettstedets navn" + +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Administrator Information" +msgstr "Administratorinformasjon" + +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" + +#: ../../Zotlabs/Module/Admin.php:503 +msgid "System language" +msgstr "Systemspråk" + +#: ../../Zotlabs/Module/Admin.php:504 +msgid "System theme" +msgstr "Systemtema" + +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" + +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Mobile system theme" +msgstr "Mobilt systemtema" + +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Theme for mobile devices" +msgstr "Tema for mobile enheter" + +#: ../../Zotlabs/Module/Admin.php:507 +msgid "Allow Feeds as Connections" +msgstr "Tillat strømmer som forbindelser" + +#: ../../Zotlabs/Module/Admin.php:507 +msgid "(Heavy system resource usage)" +msgstr "(Tung bruk av systemressurser)" + +#: ../../Zotlabs/Module/Admin.php:508 +msgid "Maximum image size" +msgstr "Største bildestørrelse" + +#: ../../Zotlabs/Module/Admin.php:508 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." + +#: ../../Zotlabs/Module/Admin.php:509 +msgid "Does this site allow new member registration?" +msgstr "Tillater dette nettstedet registrering av nye medlemmer?" + +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Invitation only" +msgstr "Kun inviterte" + +#: ../../Zotlabs/Module/Admin.php:510 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja." + +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" + +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Register text" +msgstr "Registreringstekst" + +#: ../../Zotlabs/Module/Admin.php:512 +msgid "Will be displayed prominently on the registration page." +msgstr "Vil bli vist på en fremtredende måte på registreringssiden." + +#: ../../Zotlabs/Module/Admin.php:513 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)" + +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil." + +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Preserve site homepage URL" +msgstr "Bevar URL-en til nettstedets hjemmeside" + +#: ../../Zotlabs/Module/Admin.php:514 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere" + +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Accounts abandoned after x days" +msgstr "Kontoer forlatt etter x dager" + +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." + +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allowed friend domains" +msgstr "Tillatte vennedomener" + +#: ../../Zotlabs/Module/Admin.php:516 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." + +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Allowed email domains" +msgstr "Tillate e-postdomener" + +#: ../../Zotlabs/Module/Admin.php:517 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" + +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Not allowed email domains" +msgstr "Ikke tillatte e-postdomener" + +#: ../../Zotlabs/Module/Admin.php:518 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." + +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Verify Email Addresses" +msgstr "Bekreft e-postadresser" + +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." + +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Force publish" +msgstr "Tving publisering" + +#: ../../Zotlabs/Module/Admin.php:520 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." + +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Import Public Streams" +msgstr "Importer offentlige innholdsstrømmer" + +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert." + +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Login on Homepage" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert." + +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Enable context help" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Directory Server URL" +msgstr "Katalogtjener URL" + +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Default directory server" +msgstr "Standard katalogtjener" + +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Proxy user" +msgstr "Brukernavn mellomtjener" + +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Proxy URL" +msgstr "Mellomtjener URL" + +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Network timeout" +msgstr "Nettverk tidsavbrudd" + +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." + +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Delivery interval" +msgstr "Leveringsinterval" + +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." + +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Deliveries per process" +msgstr "Leveranser per prosess" + +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5." + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Poll interval" +msgstr "Spørreintervall" + +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Maximum Load Average" +msgstr "Største belastningsgjennomsnitt" + +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." + +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Antall dager før importert innhold (nettet/nettverk) utgår" + +#: ../../Zotlabs/Module/Admin.php:534 +msgid "0 for no expiration of imported content" +msgstr "0 dersom importert innhold ikke skal utgå" + +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "Off" +msgstr "Av" + +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Settings.php:722 +msgid "On" +msgstr "På" + +#: ../../Zotlabs/Module/Admin.php:678 +#, php-format +msgid "Lock feature %s" +msgstr "Lås funksjon %s" + +#: ../../Zotlabs/Module/Admin.php:686 +msgid "Manage Additional Features" +msgstr "Håndter tilleggsfunksjoner" + +#: ../../Zotlabs/Module/Admin.php:703 +msgid "No server found" +msgstr "Ingen tjener funnet" + +#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "for channel" +msgstr "for kanalen" + +#: ../../Zotlabs/Module/Admin.php:710 +msgid "on server" +msgstr "på tjener" + +#: ../../Zotlabs/Module/Admin.php:712 +msgid "Server" +msgstr "Tjener" + +#: ../../Zotlabs/Module/Admin.php:746 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:749 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:750 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:751 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +msgid "Security" +msgstr "Sikkerhet" + +#: ../../Zotlabs/Module/Admin.php:758 +msgid "Block public" +msgstr "Blokker offentlig tilgang" + +#: ../../Zotlabs/Module/Admin.php:758 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." + +#: ../../Zotlabs/Module/Admin.php:759 +msgid "Set \"Transport Security\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:760 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:761 +msgid "Allow communications only from these sites" +msgstr "Tillat kommunikasjon med bare disse nettstedene" + +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Et nettsted per linje. La det stå tomt for å tillate kommunikasjon med ethvert nettsted som standard" + +#: ../../Zotlabs/Module/Admin.php:762 +msgid "Block communications from these sites" +msgstr "Blokker kommunikasjon fra disse nettstedene" + +#: ../../Zotlabs/Module/Admin.php:763 +msgid "Allow communications only from these channels" +msgstr "Tillat kommunikasjon med bare disse kanalene" + +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "En kanal (hash) per linje. La det stå tomt for å tillate enhver kanal som standard" + +#: ../../Zotlabs/Module/Admin.php:764 +msgid "Block communications from these channels" +msgstr "Blokker kommunikasjon fra disse kanalene" + +#: ../../Zotlabs/Module/Admin.php:765 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:766 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:766 +msgid "One site per line. By default embedded content is filtered." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:767 +msgid "Block embedded HTML from these domains" +msgstr "Blokker innbygget HTML fra disse domenene" + +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Update has been marked successful" +msgstr "Oppdateringen har blitt merket som en suksess" + +#: ../../Zotlabs/Module/Admin.php:795 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Utføring av %s feilet. Sjekk systemlogger." + +#: ../../Zotlabs/Module/Admin.php:798 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Oppdatering %s ble gjennomført med suksess." + +#: ../../Zotlabs/Module/Admin.php:802 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." + +#: ../../Zotlabs/Module/Admin.php:805 +#, php-format +msgid "Update function %s could not be found." +msgstr "Oppdatering av funksjon %s kunne ikke finnes." + +#: ../../Zotlabs/Module/Admin.php:821 +msgid "No failed updates." +msgstr "Ingen mislykkede oppdateringer." + +#: ../../Zotlabs/Module/Admin.php:825 +msgid "Failed Updates" +msgstr "Mislykkede oppdateringer" + +#: ../../Zotlabs/Module/Admin.php:827 +msgid "Mark success (if update was manually applied)" +msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" + +#: ../../Zotlabs/Module/Admin.php:828 +msgid "Attempt to execute this update step automatically" +msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" + +#: ../../Zotlabs/Module/Admin.php:859 +msgid "Queue Statistics" +msgstr "Køstatistikk" + +#: ../../Zotlabs/Module/Admin.php:860 +msgid "Total Entries" +msgstr "Totalt antall oppføringer" + +#: ../../Zotlabs/Module/Admin.php:861 +msgid "Priority" +msgstr "Prioritet" + +#: ../../Zotlabs/Module/Admin.php:862 +msgid "Destination URL" +msgstr "Mål-URL" + +#: ../../Zotlabs/Module/Admin.php:863 +msgid "Mark hub permanently offline" +msgstr "Merk hub som permanent offline" + +#: ../../Zotlabs/Module/Admin.php:864 +msgid "Empty queue for this hub" +msgstr "Tøm køen for denne hubben" + +#: ../../Zotlabs/Module/Admin.php:865 +msgid "Last known contact" +msgstr "Siste kjente kontakt" + +#: ../../Zotlabs/Module/Admin.php:901 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s konto blokkert/ikke blokkert lenger" +msgstr[1] "%s kontoer blokkert/ikke blokkert lenger" + +#: ../../Zotlabs/Module/Admin.php:908 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s konto slettet" +msgstr[1] "%s kontoer slettet" + +#: ../../Zotlabs/Module/Admin.php:944 +msgid "Account not found" +msgstr "Kontoen ble ikke funnet" + +#: ../../Zotlabs/Module/Admin.php:955 +#, php-format +msgid "Account '%s' deleted" +msgstr "Kontoen '%s' slettet" + +#: ../../Zotlabs/Module/Admin.php:963 +#, php-format +msgid "Account '%s' blocked" +msgstr "Kontoen '%s' blokkert" + +#: ../../Zotlabs/Module/Admin.php:971 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Kontoen '%s' er ikke blokkert lenger" + +#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 +#: ../../include/widgets.php:1383 +msgid "Accounts" +msgstr "Kontoer" + +#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +msgid "select all" +msgstr "velg alle" + +#: ../../Zotlabs/Module/Admin.php:1034 +msgid "Registrations waiting for confirm" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1035 +msgid "Request date" +msgstr "Dato for forespørsel" + +#: ../../Zotlabs/Module/Admin.php:1036 +msgid "No registrations." +msgstr "Ingen registreringer." + +#: ../../Zotlabs/Module/Admin.php:1038 +msgid "Deny" +msgstr "Avslå" + +#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle kanaler" + +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "Register date" +msgstr "Registreringsdato" + +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Last login" +msgstr "Siste innlogging" + +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Expires" +msgstr "Utløper" + +#: ../../Zotlabs/Module/Admin.php:1052 +msgid "Service Class" +msgstr "Tjenesteklasse" + +#: ../../Zotlabs/Module/Admin.php:1054 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?" + +#: ../../Zotlabs/Module/Admin.php:1055 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?" + +#: ../../Zotlabs/Module/Admin.php:1091 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" +msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" + +#: ../../Zotlabs/Module/Admin.php:1100 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s kanal med kode tillatt/ikke tillatt" +msgstr[1] "%s kanaler med kode tillatt/ikke tillatt" + +#: ../../Zotlabs/Module/Admin.php:1106 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanal slettet" +msgstr[1] "%s kanaler slettet" + +#: ../../Zotlabs/Module/Admin.php:1126 +msgid "Channel not found" +msgstr "Kanalen ble ikke funnet" + +#: ../../Zotlabs/Module/Admin.php:1136 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanalen '%s' er slettet" + +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanalen '%s' er sensurert" + +#: ../../Zotlabs/Module/Admin.php:1148 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanalen '%s' er ikke sensurert lenger" + +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Kanal '%s' kode tillatt" + +#: ../../Zotlabs/Module/Admin.php:1159 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Kanal '%s' kode ikke tillatt" + +#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +msgid "Channels" +msgstr "Kanaler" + +#: ../../Zotlabs/Module/Admin.php:1214 +msgid "Censor" +msgstr "Sensurer" + +#: ../../Zotlabs/Module/Admin.php:1215 +msgid "Uncensor" +msgstr "Ikke sensurer lenger" + +#: ../../Zotlabs/Module/Admin.php:1216 +msgid "Allow Code" +msgstr "Tillat kode" + +#: ../../Zotlabs/Module/Admin.php:1217 +msgid "Disallow Code" +msgstr "Ikke tillat kode" + +#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +msgid "Channel" +msgstr "Kanal" + +#: ../../Zotlabs/Module/Admin.php:1222 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin.php:1226 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" + +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" + +#: ../../Zotlabs/Module/Admin.php:1284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Tilleggsfunksjonen %s er avskrudd." + +#: ../../Zotlabs/Module/Admin.php:1288 +#, php-format +msgid "Plugin %s enabled." +msgstr "Tilleggsfunksjonen %s er påskrudd." + +#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +msgid "Disable" +msgstr "Skru av" + +#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +msgid "Enable" +msgstr "Skru på" + +#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 +#: ../../include/widgets.php:1387 +msgid "Plugins" +msgstr "Tilleggsfunksjoner" + +#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +msgid "Toggle" +msgstr "Skru av og på" + +#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 +#: ../../include/nav.php:208 +msgid "Settings" +msgstr "Innstillinger" + +#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +msgid "Author: " +msgstr "Forfatter:" + +#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +msgid "Maintainer: " +msgstr "Vedlikeholder:" + +#: ../../Zotlabs/Module/Admin.php:1341 +msgid "Minimum project version: " +msgstr "Minimum prosjektversjon:" + +#: ../../Zotlabs/Module/Admin.php:1342 +msgid "Maximum project version: " +msgstr "Maksimum prosjektversjon:" + +#: ../../Zotlabs/Module/Admin.php:1343 +msgid "Minimum PHP version: " +msgstr "Minimum PHP-versjon:" + +#: ../../Zotlabs/Module/Admin.php:1344 +msgid "Requires: " +msgstr "Krever:" + +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +msgid "Disabled - version incompatibility" +msgstr "Skrudd av - versjonsinkompatibilitet" + +#: ../../Zotlabs/Module/Admin.php:1394 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1395 +msgid "Plugin repo git URL" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "Custom repo name" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1396 +msgid "(optional)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1397 +msgid "Download Plugin Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1404 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +msgid "Install" +msgstr "Installer" + +#: ../../Zotlabs/Module/Admin.php:1427 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1428 +msgid "Installed Plugin Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1429 +msgid "Install a New Plugin Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 +#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 +msgid "Update" +msgstr "Oppdater" + +#: ../../Zotlabs/Module/Admin.php:1436 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1550 +msgid "No themes found." +msgstr "Ingen temaer er funnet." + +#: ../../Zotlabs/Module/Admin.php:1606 +msgid "Screenshot" +msgstr "Skjermbilde" + +#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 +#: ../../include/widgets.php:1388 +msgid "Themes" +msgstr "Temaer" + +#: ../../Zotlabs/Module/Admin.php:1652 +msgid "[Experimental]" +msgstr "[Eksperimentelt]" + +#: ../../Zotlabs/Module/Admin.php:1653 +msgid "[Unsupported]" +msgstr "[Ingen støtte]" + +#: ../../Zotlabs/Module/Admin.php:1677 +msgid "Log settings updated." +msgstr "Logginnstillinger er oppdatert." + +#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 +#: ../../include/widgets.php:1419 +msgid "Logs" +msgstr "Logger" + +#: ../../Zotlabs/Module/Admin.php:1734 +msgid "Clear" +msgstr "Tøm" + +#: ../../Zotlabs/Module/Admin.php:1740 +msgid "Debugging" +msgstr "Feilsøking" + +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "Log file" +msgstr "Loggfil" + +#: ../../Zotlabs/Module/Admin.php:1741 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:1742 +msgid "Log level" +msgstr "Loggnivå" + +#: ../../Zotlabs/Module/Admin.php:2028 +msgid "New Profile Field" +msgstr "Nytt profilfelt" + +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "Field nickname" +msgstr "Feltets kallenavn" + +#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +msgid "System name of field" +msgstr "Systemnavnet til feltet" + +#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +msgid "Input type" +msgstr "Inndata-type" + +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Field Name" +msgstr "Feltnavn" + +#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +msgid "Label on profile pages" +msgstr "Merkelapp på profilsider" + +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Help text" +msgstr "Hjelpetekst" + +#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +msgid "Additional info (optional)" +msgstr "Tilleggsinformasjon (valgfritt)" + +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "Field definition not found" +msgstr "Feltdefinisjonen ble ikke funnet" + +#: ../../Zotlabs/Module/Admin.php:2048 +msgid "Edit Profile Field" +msgstr "Endre profilfelt" + +#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +msgid "Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2107 +msgid "Basic Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "Advanced Profile Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2108 +msgid "(In addition to basic fields)" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2110 +msgid "All available fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2111 +msgid "Custom Fields" +msgstr "" + +#: ../../Zotlabs/Module/Admin.php:2115 +msgid "Create Custom Field" +msgstr "" + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installert." + +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Feil oppsett for app-en." + +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Innbyggingskode" + +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Endre app" + +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Lag app" + +#: ../../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 "" + +#: ../../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/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Velg en bokmerkemappe" + +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Lagre bokmerke" + +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL-en til bokmerket" + +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Eller skriv nytt navn på bokmerkemappe" + +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen." + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Passordene er ikke like." + +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen." + +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Din registrering venter på godkjenning av nettstedets eier." + +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Din registrering kan ikke behandles." + +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Registrering ved dette nettstedet er skrudd av." + +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Registrering ved dette nettstedet skjer på godkjenning." + +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrer ved et annet tilsluttet nettsted." + +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen." + +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Tjenesteavtale" + +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Jeg godtar %s for dette nettstedet" + +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet." + +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Din e-postadresse" + +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Velg et passord" + +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Vennligst skriv ditt passord en gang til" + +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Vennligst skriv din invitasjonskode" + +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "nei" + +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "ja" + +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." + +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1685 +msgid "Register" +msgstr "Registrer" + +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Gå videre for å lage din første kanal" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Vennligst logg inn." + +#: ../../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:56 +msgid "Remove This Account" +msgstr "Slett denne kontoen" + +#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeme.php:59 +msgid "WARNING: " +msgstr "ADVARSEL:" + +#: ../../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: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: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: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: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:60 +#: ../../Zotlabs/Module/Settings.php:705 +msgid "Remove Account" +msgstr "Slett konto" + +#: ../../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:58 +msgid "Remove This Channel" +msgstr "Fjern denne kanalen" + +#: ../../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: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: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:62 ../../Zotlabs/Module/Settings.php:1124 +msgid "Remove Channel" +msgstr "Fjern kanal" + +#: ../../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/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementer merket med: %s" + +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Søkeresultater for: %s" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Ingen restriksjoner er funnet i tjenesteklasse." + +#: ../../Zotlabs/Module/Settings.php:69 +msgid "Name is required" +msgstr "Navn er påkrevd" + +#: ../../Zotlabs/Module/Settings.php:73 +msgid "Key and Secret are required" +msgstr "Nøkkel og hemmelighet er påkrevd" + +#: ../../Zotlabs/Module/Settings.php:225 +msgid "Not valid email." +msgstr "Ikke gyldig e-post." + +#: ../../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: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:254 +msgid "Password verification failed." +msgstr "Passordbekreftelsen mislyktes." + +#: ../../Zotlabs/Module/Settings.php:261 +msgid "Passwords do not match. Password unchanged." +msgstr "Passordene stemmer ikke overens. Passord uforandret." + +#: ../../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:279 +msgid "Password changed." +msgstr "Passord endret." + +#: ../../Zotlabs/Module/Settings.php:281 +msgid "Password update failed. Please try again." +msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." + +#: ../../Zotlabs/Module/Settings.php:525 +msgid "Settings updated." +msgstr "Innstillinger oppdatert." + +#: ../../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:592 +msgid "Name of application" +msgstr "Navn på program" + +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../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:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 +msgid "Redirect" +msgstr "Omdirigering" + +#: ../../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:596 ../../Zotlabs/Module/Settings.php:622 +msgid "Icon url" +msgstr "Ikon-URL" + +#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Valgfritt" + +#: ../../Zotlabs/Module/Settings.php:607 +msgid "Application not found." +msgstr "Programmet ble ikke funnet." + +#: ../../Zotlabs/Module/Settings.php:650 +msgid "Connected Apps" +msgstr "Tilkoblede app-er" + +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Client key starts with" +msgstr "Klientnøkkel starter med" + +#: ../../Zotlabs/Module/Settings.php:655 +msgid "No name" +msgstr "Ikke noe navn" + +#: ../../Zotlabs/Module/Settings.php:656 +msgid "Remove authorization" +msgstr "Fjern tillatelse" + +#: ../../Zotlabs/Module/Settings.php:669 +msgid "No feature settings configured" +msgstr "Ingen funksjonsinnstillinger er konfigurert" + +#: ../../Zotlabs/Module/Settings.php:676 +msgid "Feature/Addon Settings" +msgstr "Funksjons-/Tilleggsinnstillinger" + +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Account Settings" +msgstr "Kontoinnstillinger" + +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Current Password" +msgstr "Nåværende passord" + +#: ../../Zotlabs/Module/Settings.php:701 +msgid "Enter New Password" +msgstr "Skriv nytt passord" + +#: ../../Zotlabs/Module/Settings.php:702 +msgid "Confirm New Password" +msgstr "Bekreft nytt passord" + +#: ../../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:704 +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Email Address:" +msgstr "E-postadresse:" + +#: ../../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:729 +msgid "Additional Features" +msgstr "Ekstra funksjoner" + +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Connector Settings" +msgstr "Koblingsinnstillinger" + +#: ../../Zotlabs/Module/Settings.php:792 +msgid "No special theme for mobile devices" +msgstr "Ikke noe spesielt tema for mobile enheter" + +#: ../../Zotlabs/Module/Settings.php:795 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Eksperimentelt)" + +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Display Settings" +msgstr "Visningsinnstillinger" + +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Theme Settings" +msgstr "Temainnstillinger" + +#: ../../Zotlabs/Module/Settings.php:839 +msgid "Custom Theme Settings" +msgstr "Tilpassede temainnstillinger" + +#: ../../Zotlabs/Module/Settings.php:840 +msgid "Content Settings" +msgstr "Innholdsinnstillinger" + +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Display Theme:" +msgstr "Visningstema:" + +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Mobile Theme:" +msgstr "Mobiltema:" + +#: ../../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: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:849 +msgid "Enable user zoom on mobile devices" +msgstr "Skru på brukerstyrt zoom på mobile enheter" + +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Update browser every xx seconds" +msgstr "Oppdater nettleser hvert xx sekunder" + +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekunder, ikke noe maksimum" + +#: ../../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:851 +msgid "Maximum of 100 items" +msgstr "Maksimum 100 elementer" + +#: ../../Zotlabs/Module/Settings.php:852 +msgid "Show emoticons (smilies) as images" +msgstr "Vis emoticons (smilefjes) som bilder" + +#: ../../Zotlabs/Module/Settings.php:853 +msgid "Link post titles to source" +msgstr "Lenk innleggets tittel til kilden" + +#: ../../Zotlabs/Module/Settings.php:854 +msgid "System Page Layout Editor - (advanced)" +msgstr "Systemsidens layoutbehandler - (avansert)" + +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Use blog/list mode on channel page" +msgstr "Bruk blogg-/listemodus på kanalsiden" + +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "(comments displayed separately)" +msgstr "(kommentarer vist separat)" + +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Use blog/list mode on grid page" +msgstr "Bruk blogg-/liste-modus på nettverkssiden" + +#: ../../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: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:860 +msgid "Grid page max height of content (in pixels)" +msgstr "Nettverkssidens makshøyde for innhold (i piksler)" + +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Nobody except yourself" +msgstr "Ingen unntatt deg selv" + +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Only those you specifically allow" +msgstr "Bare de du spesifikt tillater" + +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Approved connections" +msgstr "Godkjente forbindelser" + +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Any connections" +msgstr "Enhver forbindelse" + +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody on this website" +msgstr "Enhver ved dette nettstedet" + +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody in this network" +msgstr "Enhver i dette nettverket" + +#: ../../Zotlabs/Module/Settings.php:900 +msgid "Anybody authenticated" +msgstr "Enhver som er autentisert" + +#: ../../Zotlabs/Module/Settings.php:901 +msgid "Anybody on the internet" +msgstr "Enhver på Internett" + +#: ../../Zotlabs/Module/Settings.php:976 +msgid "Publish your default profile in the network directory" +msgstr "Publiser din standardprofil i nettverkskatalogen" + +#: ../../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:990 +msgid "Your channel address is" +msgstr "Din kanaladresse er" + +#: ../../Zotlabs/Module/Settings.php:1032 +msgid "Channel Settings" +msgstr "Kanalinnstillinger" + +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Basic Settings" +msgstr "Grunninnstillinger" + +#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 +msgid "Full Name:" +msgstr "Fullt navn:" + +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Your Timezone:" +msgstr "Din tidssone:" + +#: ../../Zotlabs/Module/Settings.php:1043 +msgid "Default Post Location:" +msgstr "Standard plassering ved innlegg:" + +#: ../../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:1044 +msgid "Use Browser Location:" +msgstr "Bruk nettleseren sin plassering:" + +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Adult Content" +msgstr "Voksent innhold" + +#: ../../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:1048 +msgid "Security and Privacy Settings" +msgstr "Sikkerhets- og personverninnstillinger" + +#: ../../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:1053 +msgid "Hide my online presence" +msgstr "Skjul min tilstedeværelse online" + +#: ../../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:1055 +msgid "Simple Privacy Settings:" +msgstr "Enkle personverninnstillinger:" + +#: ../../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: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:1058 +msgid "Private - default private, never open or public" +msgstr "Privat - standard er privat, aldri åpen eller offentlig" + +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blokkert - standard blokkert til/fra alle" + +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Allow others to tag your posts" +msgstr "Tillat andre å merke dine innlegg" + +#: ../../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:1063 +msgid "Advanced Privacy Settings" +msgstr "Avanserte personverninnstillinger" + +#: ../../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:1065 +msgid "0 or blank to use the website limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +#, php-format +msgid "This website expires after %d days." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "This website does not expire imported content." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "The website limit takes precedence if lower than your limit." +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksimalt antall venneforespørsler per dag:" + +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "May reduce spam activity" +msgstr "Kan redusere søppelpostaktivitet" + +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Default Post and Publish Permissions" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Use my default audience setting for the type of object published" +msgstr "" + +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Channel permissions category:" +msgstr "Kategori med kanaltillatelser:" + +#: ../../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:1078 +msgid "Useful to reduce spamming" +msgstr "Nyttig for å redusere søppelpost" + +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "Notification Settings" +msgstr "Varslingsinnstillinger" + +#: ../../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:1083 +msgid "accepting a friend request" +msgstr "aksepterer en venneforespørsel" + +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "joining a forum/community" +msgstr "blir med i et forum/miljø" + +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "making an interesting profile change" +msgstr "gjør en interessant profilendring" + +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Send a notification email when:" +msgstr "Send en varsel-e-post når:" + +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "You receive a connection request" +msgstr "Du har mottatt en forespørsel om forbindelse" + +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Your connections are confirmed" +msgstr "Dine forbindelser er bekreftet" + +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "Someone writes on your profile wall" +msgstr "Noen skriver på din profilvegg" + +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Someone writes a followup comment" +msgstr "Noen skriver en oppfølgende kommentar" + +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You receive a private message" +msgstr "Du mottar en privat melding" + +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You receive a friend suggestion" +msgstr "Du mottok et venneforslag" + +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "You are tagged in a post" +msgstr "Du merkes i et innlegg" + +#: ../../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:1097 +msgid "Show visual notifications including:" +msgstr "Vis visuelle varslinger om:" + +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen grid activity" +msgstr "Usett nettverksaktivitet" + +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Unseen channel activity" +msgstr "Usett kanalaktivitet" + +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Unseen private messages" +msgstr "Usette private meldinger" + +#: ../../Zotlabs/Module/Settings.php:1101 +#: ../../Zotlabs/Module/Settings.php:1106 +#: ../../Zotlabs/Module/Settings.php:1107 +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "Recommended" +msgstr "Anbefalt" + +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming events" +msgstr "Kommende hendelser" + +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "Events today" +msgstr "Hendelser idag" + +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Upcoming birthdays" +msgstr "Kommende fødselsdager" + +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "Not available in all themes" +msgstr "Ikke tilgjengelig i alle temaer" + +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System (personal) notifications" +msgstr "System (personlige) varslinger" + +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "System info messages" +msgstr "System infomeldinger" + +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System critical alerts" +msgstr "System kritiske varsel" + +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "New connections" +msgstr "Nye forbindelser" + +#: ../../Zotlabs/Module/Settings.php:1109 +msgid "System Registrations" +msgstr "Systemregistreringer" + +#: ../../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: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:1112 +msgid "Must be greater than 0" +msgstr "Må være større enn 0" + +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Advanced Account/Page Type Settings" +msgstr "Avanserte innstillinger for konto/sidetype" + +#: ../../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: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:1119 +msgid "Miscellaneous Settings" +msgstr "Diverse innstillinger" + +#: ../../Zotlabs/Module/Settings.php:1120 +msgid "Default photo upload folder" +msgstr "Standard mappe for opplasting av bilder" + +#: ../../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:1121 +msgid "Default file upload folder" +msgstr "Standard mappe for opplasting av filer" + +#: ../../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:1125 +msgid "Remove this channel." +msgstr "Fjern denne kanalen." + +#: ../../Zotlabs/Module/Settings.php:1126 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname Firefox Share tilbyder" + +#: ../../Zotlabs/Module/Settings.php:1127 +msgid "Start calendar week on monday" +msgstr "Start uken med mandag i kalenderen" + +#: ../../Zotlabs/Module/Setup.php:179 +msgid "$Projectname Server - Setup" +msgstr "$Projectname-tjener - oppsett" + +#: ../../Zotlabs/Module/Setup.php:183 +msgid "Could not connect to database." +msgstr "Fikk ikke kontakt med databasen." + +#: ../../Zotlabs/Module/Setup.php:187 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS." + +#: ../../Zotlabs/Module/Setup.php:194 +msgid "Could not create table." +msgstr "Kunne ikke lage tabellen." + +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Your site database has been installed." +msgstr "Databasen til ditt nettsted har blitt installert." + +#: ../../Zotlabs/Module/Setup.php:203 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." + +#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 +#: ../../Zotlabs/Module/Setup.php:721 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Vennligst les filen \"install/INSTALL.txt\"." + +#: ../../Zotlabs/Module/Setup.php:263 +msgid "System check" +msgstr "Systemsjekk" + +#: ../../Zotlabs/Module/Setup.php:268 +msgid "Check again" +msgstr "Sjekk igjen" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "Database connection" +msgstr "Databaseforbindelse" + +#: ../../Zotlabs/Module/Setup.php:291 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "For å installere $Projectname må du oppgi hvordan din database kan kontaktes." + +#: ../../Zotlabs/Module/Setup.php:292 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene." + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter." + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Server Name" +msgstr "Navn på databasetjener" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Default is 127.0.0.1" +msgstr "Standard er 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Port" +msgstr "Databaseport" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Communication port number - use 0 for default" +msgstr "Kommunikasjonsportnummer - bruk 0 for standard" + +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Login Name" +msgstr "Database innloggingsnavn" + +#: ../../Zotlabs/Module/Setup.php:300 +msgid "Database Login Password" +msgstr "Database innloggingspassord" + +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Name" +msgstr "Databasenavn" + +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Type" +msgstr "Databasetype" + +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "Site administrator email address" +msgstr "E-postadressen til administrator ved nettstedet" + +#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet." + +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Website URL" +msgstr "Nettstedets URL" + +#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 +msgid "Please use SSL (https) URL if available." +msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." + +#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 +msgid "Please select a default timezone for your website" +msgstr "Vennligst velg en standard tidssone for ditt nettsted" + +#: ../../Zotlabs/Module/Setup.php:333 +msgid "Site settings" +msgstr "Nettstedets innstillinger" + +#: ../../Zotlabs/Module/Setup.php:347 +msgid "Enable $Projectname advanced features?" +msgstr "Skru på avanserteWhat next" +msgstr "

Hva gjenstår

" + +#: ../../Zotlabs/Module/Setup.php:720 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren." + +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Filer: delt med meg" + +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NY" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Fjern alle filer" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +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" -#: ../../include/widgets.php:143 ../../mod/connections.php:268 +#: ../../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" + +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Objektlagring: mislyktes" + +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ting lagt til" + +#: ../../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/Thing.php:259 +msgid "Show Thing" +msgstr "Vis ting" + +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "element ble ikke funnet." + +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Endre ting" + +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Velg en profil" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Legg inn en aktivitet" + +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sender bare til seere av den aktuelle profilen" + +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Navn på ting for eksempel noe" + +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL til ting (valgfritt)" + +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL til bilde av ting (valgfritt)" + +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Legg til ting i din profil" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Eksporter kanal" + +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." + +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Eksporter innhold" + +#: ../../Zotlabs/Module/Uexport.php:59 +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/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Eksporter dine innlegg fra et bestemt år" + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde." + +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"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/Viewconnections.php:62 +msgid "No connections." +msgstr "Ingen forbindelser." + +#: ../../Zotlabs/Module/Viewconnections.php:75 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besøk %s sin profil [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:104 +msgid "View Connections" +msgstr "Vis forbindelser" + +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Kilde til element" + +#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 +#: ../../include/nav.php:106 ../../include/conversation.php:1685 +msgid "Webpages" +msgstr "Websider" + +#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Handlinger" + +#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Sidelenke" + +#: ../../Zotlabs/Module/Webpages.php:197 +msgid "Page Title" +msgstr "Sidetittel" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan oppslag" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Slå opp xchan som begynner med (eller webbie):" + +#: ../../Zotlabs/Lib/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" + +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Duplikat romnavn" + +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Ugyldig rom-spesifisering" + +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Rommet ble ikke funnet." + +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Rommet er fullt" + +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +msgid "$Projectname Notification" +msgstr "$Projectname varsling" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +msgid "Thank You," +msgstr "Tusen takk," + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#, php-format +msgid "%s Administrator" +msgstr "%s administrator" + +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notify] Ny melding mottatt hos %s" + +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s sendte deg %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "en privat melding" + +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." + +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:172 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:181 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notify] Kommentar til samtale #%1$d av %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" + +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" + +#: ../../Zotlabs/Lib/Enotify.php:202 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg" + +#: ../../Zotlabs/Lib/Enotify.php:204 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notify] %s merket deg" + +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s merket deg på %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notify] %1$s prikket deg" + +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s dyttet deg på %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notify] %s merket ditt innlegg" + +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s merket ditt innlegg på %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notify] Introduksjon mottatt" + +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Du kan besøke profilen deres på %s" + +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." + +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notify] Venneforslag mottatt" + +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " + +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Navn:" + +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Bilde:" + +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." + +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notify]" + +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "laget et nytt innlegg" + +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" +msgstr "kommenterte på %s sitt innlegg" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Privat melding" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +msgid "Select" +msgstr "Velg" + +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Lagre i mappe" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Jeg vil delta" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Jeg deltar ikke" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Jeg vil kanskje delta" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Jeg er enig" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Jeg er uenig" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Jeg avstår" + +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Legg til stjerne" + +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Fjern stjerne" + +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Skru av og på stjernestatus" + +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "stjernemerket" + +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Innleggets signatur er bekreftet" + +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Innleggets signatur er feil" + +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Legg til merkelapp" + +#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +msgid "like" +msgstr "liker" + +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "misliker" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "Share This" +msgstr "Del dette" + +#: ../../Zotlabs/Lib/ThreadItem.php:266 +msgid "share" +msgstr "del" + +#: ../../Zotlabs/Lib/ThreadItem.php:275 +msgid "Delivery Report" +msgstr "Leveringsrapport" + +#: ../../Zotlabs/Lib/ThreadItem.php:293 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d kommentar" +msgstr[1] "%d kommentarer" + +#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#, php-format +msgid "View %s's profile - %s" +msgstr "Vis %s sin profil - %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:326 +msgid "to" +msgstr "til" + +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "via" +msgstr "via" + +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "Wall-to-Wall" +msgstr "vegg-til-vegg" + +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "via Wall-To-Wall:" +msgstr "via vegg-til-vegg:" + +#: ../../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:722 +#, php-format +msgid "last edited: %s" +msgstr "sist endret: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Utløper: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:370 +msgid "Save Bookmarks" +msgstr "Lagre bokmerker" + +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Add to Calendar" +msgstr "Legg til i kalender" + +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Mark all seen" +msgstr "Merk alle som sett" + +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] Vis alle" + +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +msgid "Bold" +msgstr "Uthevet" + +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +msgid "Italic" +msgstr "Kursiv" + +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +msgid "Underline" +msgstr "Understreket" + +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +msgid "Quote" +msgstr "Sitat" + +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +msgid "Code" +msgstr "Kode" + +#: ../../Zotlabs/Lib/ThreadItem.php:716 +msgid "Image" +msgstr "Bilde" + +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Insert Link" +msgstr "Sett inn lenke" + +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Video" +msgstr "Video" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Ingen brukernavn ble funnet i importfilen." + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." + +#: ../../include/dba/dba_driver.php:171 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan ikke finne DNS-informasjon om databasetjener '%s'" + +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Kategorier" + +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Merkelapper" + +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Nøkkelord" + +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "har" + +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "har" + +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "ønsker" + +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "ønsker" + +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "liker" + +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "misliker" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Starter:" + +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Slutter:" + +#: ../../include/event.php:812 +msgid "This event has been added to your calendar." +msgstr "Denne hendelsen er lagt til i din kalender." + +#: ../../include/event.php:1012 +msgid "Not specified" +msgstr "Ikke spesifisert" + +#: ../../include/event.php:1013 +msgid "Needs Action" +msgstr "Trenger handling" + +#: ../../include/event.php:1014 +msgid "Completed" +msgstr "Ferdig" + +#: ../../include/event.php:1015 +msgid "In Process" +msgstr "Igang" + +#: ../../include/event.php:1016 +msgid "Cancelled" +msgstr "Avbrutt" + +#: ../../include/import.php:29 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes." + +#: ../../include/import.php:76 +msgid "Channel clone failed. Import failed." +msgstr "Kanalkloning mislyktes. Import mislyktes." + +#: ../../include/items.php:892 ../../include/items.php:937 +msgid "(Unknown)" +msgstr "(Ukjent)" + +#: ../../include/items.php:1136 +msgid "Visible to anybody on the internet." +msgstr "Synlig for enhver på Internett." + +#: ../../include/items.php:1138 +msgid "Visible to you only." +msgstr "Synlig bare for deg." + +#: ../../include/items.php:1140 +msgid "Visible to anybody in this network." +msgstr "Synlig for enhver i dette nettverket." + +#: ../../include/items.php:1142 +msgid "Visible to anybody authenticated." +msgstr "Synlig for enhver som er autentisert." + +#: ../../include/items.php:1144 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Synlig for alle på %s." + +#: ../../include/items.php:1146 +msgid "Visible to all connections." +msgstr "Synlig for alle forbindelser." + +#: ../../include/items.php:1148 +msgid "Visible to approved connections." +msgstr "Synlig for godkjente forbindelser." + +#: ../../include/items.php:1150 +msgid "Visible to specific connections." +msgstr "Synlig for spesifikke forbindelser." + +#: ../../include/items.php:3909 +msgid "Privacy group is empty." +msgstr "Personverngruppen er tom." + +#: ../../include/items.php:3916 +#, php-format +msgid "Privacy group: %s" +msgstr "Personverngruppe: %s" + +#: ../../include/items.php:3928 +msgid "Connection not found." +msgstr "Forbindelsen ble ikke funnet." + +#: ../../include/items.php:4277 +msgid "profile photo" +msgstr "profilbilde" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Ingen mottaker angitt." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[ikke noe emne]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kan ikke avgjøre avsender." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Lagret innlegg kunne ikke bekreftes." + +#: ../../include/text.php:428 +msgid "prev" +msgstr "forrige" + +#: ../../include/text.php:430 +msgid "first" +msgstr "første" + +#: ../../include/text.php:459 +msgid "last" +msgstr "siste" + +#: ../../include/text.php:462 +msgid "next" +msgstr "neste" + +#: ../../include/text.php:472 +msgid "older" +msgstr "eldre" + +#: ../../include/text.php:474 +msgid "newer" +msgstr "nyere" + +#: ../../include/text.php:863 +msgid "No connections" +msgstr "Ingen forbindelser" + +#: ../../include/text.php:888 +#, php-format +msgid "View all %s connections" +msgstr "Vis alle %s forbindelser" + +#: ../../include/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:144 +#: ../../include/widgets.php:155 msgid "See more..." msgstr "Se mer..." -#: ../../include/widgets.php:166 +#: ../../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:172 +#: ../../include/widgets.php:181 msgid "Add New Connection" msgstr "Legg til ny forbindelse" -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Skriv kanal-adressen" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Skriv kanaladressen" -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Eksempel: ola@eksempel.no, https://eksempel.no/kari" -#: ../../include/widgets.php:190 +#: ../../include/widgets.php:199 msgid "Notes" msgstr "Merknader" -#: ../../include/widgets.php:192 ../../include/text.php:833 -#: ../../include/text.php:845 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1412 ../../mod/admin.php:1432 -msgid "Save" -msgstr "Lagre" - -#: ../../include/widgets.php:266 +#: ../../include/widgets.php:273 msgid "Remove term" msgstr "Fjern begrep" -#: ../../include/widgets.php:274 ../../include/features.php:73 +#: ../../include/widgets.php:281 ../../include/features.php:84 msgid "Saved Searches" msgstr "Lagrede søk" -#: ../../include/widgets.php:304 ../../include/features.php:85 -#: ../../include/contact_widgets.php:57 +#: ../../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:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 +#: ../../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:349 +#: ../../include/widgets.php:354 msgid "Archives" msgstr "Arkiv" -#: ../../include/widgets.php:427 +#: ../../include/widgets.php:516 msgid "Refresh" msgstr "Forny" -#: ../../include/widgets.php:428 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Meg" - -#: ../../include/widgets.php:429 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Bestevenner" - -#: ../../include/widgets.php:431 -msgid "Co-workers" -msgstr "Medarbeidere" - -#: ../../include/widgets.php:432 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "Tidligere venner" - -#: ../../include/widgets.php:433 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekjente" - -#: ../../include/widgets.php:434 -msgid "Everybody" -msgstr "Alle" - -#: ../../include/widgets.php:468 +#: ../../include/widgets.php:556 msgid "Account settings" msgstr "Kontoinnstillinger" -#: ../../include/widgets.php:474 +#: ../../include/widgets.php:562 msgid "Channel settings" msgstr "Kanalinnstillinger" -#: ../../include/widgets.php:480 +#: ../../include/widgets.php:571 msgid "Additional features" msgstr "Tilleggsfunksjoner" -#: ../../include/widgets.php:486 +#: ../../include/widgets.php:578 msgid "Feature/Addon settings" msgstr "Funksjons-/Tilleggsinnstillinger" -#: ../../include/widgets.php:492 +#: ../../include/widgets.php:584 msgid "Display settings" msgstr "Visningsinnstillinger" -#: ../../include/widgets.php:498 -msgid "Connected apps" -msgstr "Tilkoblede app-er" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "" -#: ../../include/widgets.php:504 +#: ../../include/widgets.php:600 msgid "Export channel" msgstr "Eksporter kanal" -#: ../../include/widgets.php:513 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Forbindelsens standard tillatelser" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Tilkoblede app-er" -#: ../../include/widgets.php:521 +#: ../../include/widgets.php:622 msgid "Premium Channel Settings" msgstr "Premiumkanal-innstillinger" -#: ../../include/widgets.php:529 ../../include/features.php:62 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanalkilder" +#: ../../include/widgets.php:651 +msgid "Private Mail Menu" +msgstr "Meny for privat post" -#: ../../include/widgets.php:537 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1035 -#: ../../mod/admin.php:1235 -msgid "Settings" -msgstr "Innstillinger" +#: ../../include/widgets.php:653 +msgid "Combined View" +msgstr "Kombinert visning" -#: ../../include/widgets.php:550 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Meldinger" +#: ../../include/widgets.php:658 ../../include/nav.php:196 +msgid "Inbox" +msgstr "Innboks" -#: ../../include/widgets.php:553 -msgid "Check Mail" -msgstr "Sjekk meldinger" +#: ../../include/widgets.php:663 ../../include/nav.php:197 +msgid "Outbox" +msgstr "Utboks" -#: ../../include/widgets.php:558 ../../include/nav.php:199 +#: ../../include/widgets.php:668 ../../include/nav.php:198 msgid "New Message" msgstr "Ny melding" -#: ../../include/widgets.php:633 -msgid "Chat Rooms" +#: ../../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:653 +#: ../../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:673 +#: ../../include/widgets.php:899 msgid "Suggested Chatrooms" msgstr "Foreslåtte chatrom" -#: ../../include/widgets.php:800 ../../include/widgets.php:858 +#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 msgid "photo/image" msgstr "foto/bilde" -#: ../../include/widgets.php:953 ../../include/widgets.php:955 +#: ../../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:959 +#: ../../include/widgets.php:1259 msgid "View Ratings" msgstr "Vis vurderinger" -#: ../../include/widgets.php:970 -msgid "Public Hubs" -msgstr "Offentlige huber" +#: ../../include/widgets.php:1316 +msgid "Forums" +msgstr "Forum" -#: ../../include/conversation.php:120 ../../include/text.php:1747 -#: ../../include/diaspora.php:2030 ../../mod/like.php:335 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" +#: ../../include/widgets.php:1345 +msgid "Tasks" +msgstr "Oppgaver" -#: ../../include/conversation.php:123 ../../include/text.php:1750 -#: ../../mod/like.php:337 ../../mod/tagger.php:47 -msgid "event" -msgstr "hendelse" +#: ../../include/widgets.php:1354 +msgid "Documentation" +msgstr "Dokumentasjon" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "kanal" +#: ../../include/widgets.php:1356 +msgid "Project/Site Information" +msgstr "Prosjekt-/Nettstedsinformasjon" -#: ../../include/conversation.php:148 ../../include/text.php:1753 -#: ../../include/diaspora.php:2030 ../../mod/like.php:335 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:51 -msgid "status" -msgstr "status" +#: ../../include/widgets.php:1357 +msgid "For Members" +msgstr "For medlemmer" -#: ../../include/conversation.php:150 ../../include/text.php:1755 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "kommentar" +#: ../../include/widgets.php:1358 +msgid "For Administrators" +msgstr "For administratorer" -#: ../../include/conversation.php:164 ../../include/diaspora.php:2059 -#: ../../mod/like.php:383 +#: ../../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 likes %2$s's %3$s" -msgstr "%1$s liker %2$s sin %3$s" +msgid "%1$s's bookmarks" +msgstr "%1$s sine bokmerker" -#: ../../include/conversation.php:167 ../../mod/like.php:385 +#: ../../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 "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s liker ikke %2$s sin %3$s" +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" +msgstr "Nytt vindu" + +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" + +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Brukeren '%s' er slettet" + +#: ../../include/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 @@ -699,782 +7816,1308 @@ 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:911 -msgid "poked" -msgstr "prikket" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s er %2$s" - -#: ../../include/conversation.php:556 ../../mod/photos.php:984 -msgctxt "title" -msgid "Likes" -msgstr "Liker" - -#: ../../include/conversation.php:556 ../../mod/photos.php:984 -msgctxt "title" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Agree" -msgstr "Enig" - -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Disagree" -msgstr "Uenig" - -#: ../../include/conversation.php:557 ../../mod/photos.php:985 -msgctxt "title" -msgid "Abstain" -msgstr "Avstår" - -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Attending" -msgstr "Deltar" - -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Not attending" -msgstr "Deltar ikke" - -#: ../../include/conversation.php:558 ../../mod/photos.php:986 -msgctxt "title" -msgid "Might attend" -msgstr "Deltar kanskje" - -#: ../../include/conversation.php:644 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Velg" - -#: ../../include/conversation.php:645 ../../include/RedDAV/RedBrowser.php:268 -#: ../../include/ItemObject.php:120 ../../include/apps.php:255 -#: ../../mod/settings.php:645 ../../mod/connedit.php:533 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/admin.php:816 -#: ../../mod/admin.php:945 ../../mod/photos.php:1050 -msgid "Delete" -msgstr "Slett" - -#: ../../include/conversation.php:652 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privat melding" - -#: ../../include/conversation.php:659 ../../include/ItemObject.php:227 -msgid "Message signature validated" -msgstr "Innleggets signatur er bekreftet" - -#: ../../include/conversation.php:660 ../../include/ItemObject.php:228 -msgid "Message signature incorrect" -msgstr "Innleggets signatur er feil" - -#: ../../include/conversation.php:680 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "Vis %s sin profile @ %s" -#: ../../include/conversation.php:695 +#: ../../include/conversation.php:710 msgid "Categories:" msgstr "Kategorier:" -#: ../../include/conversation.php:696 +#: ../../include/conversation.php:711 msgid "Filed under:" msgstr "Sortert under:" -#: ../../include/conversation.php:704 ../../include/ItemObject.php:312 -#, php-format -msgid " from %s" -msgstr "fra %s" - -#: ../../include/conversation.php:707 ../../include/ItemObject.php:315 -#, php-format -msgid "last edited: %s" -msgstr "sist endret: %s" - -#: ../../include/conversation.php:708 ../../include/ItemObject.php:316 -#, php-format -msgid "Expires: %s" -msgstr "Utløper: %s" - -#: ../../include/conversation.php:723 +#: ../../include/conversation.php:738 msgid "View in context" msgstr "Vis i sammenheng" -#: ../../include/conversation.php:725 ../../include/conversation.php:1203 -#: ../../include/ItemObject.php:364 ../../mod/editlayout.php:153 -#: ../../mod/editwebpage.php:188 ../../mod/editpost.php:130 -#: ../../mod/editblock.php:157 ../../mod/photos.php:950 ../../mod/mail.php:241 -#: ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Vennligst vent" - -#: ../../include/conversation.php:838 +#: ../../include/conversation.php:847 msgid "remove" msgstr "fjern" -#: ../../include/conversation.php:842 ../../include/nav.php:247 -msgid "Loading..." -msgstr "Laster..." - -#: ../../include/conversation.php:843 +#: ../../include/conversation.php:852 msgid "Delete Selected Items" msgstr "Slett valgte elementer" -#: ../../include/conversation.php:934 +#: ../../include/conversation.php:948 msgid "View Source" msgstr "Vis kilde" -#: ../../include/conversation.php:935 +#: ../../include/conversation.php:949 msgid "Follow Thread" msgstr "Følg tråd" -#: ../../include/conversation.php:936 -msgid "View Status" -msgstr "Vis status" +#: ../../include/conversation.php:950 +msgid "Unfollow Thread" +msgstr "Ikke følg tråd" -#: ../../include/conversation.php:937 ../../include/nav.php:91 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Vis profil" +#: ../../include/conversation.php:955 +msgid "Activity/Posts" +msgstr "Aktivitet/Innlegg" -#: ../../include/conversation.php:938 -msgid "View Photos" -msgstr "Vis bilder" +#: ../../include/conversation.php:957 +msgid "Edit Connection" +msgstr "Endre forbindelse" -#: ../../include/conversation.php:939 -msgid "Matrix Activity" -msgstr "Matrix-aktivitet" +#: ../../include/conversation.php:958 +msgid "Message" +msgstr "Melding" -#: ../../include/conversation.php:941 -msgid "Edit Contact" -msgstr "Endre kontakt" - -#: ../../include/conversation.php:942 -msgid "Send PM" -msgstr "Send privat melding" - -#: ../../include/conversation.php:943 ../../include/apps.php:145 -msgid "Poke" -msgstr "Prikk" - -#: ../../include/conversation.php:1019 ../../include/RedDAV/RedBrowser.php:163 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/connedit.php:570 ../../mod/photos.php:681 -#: ../../mod/photos.php:1119 -msgid "Unknown" -msgstr "Ukjent" - -#: ../../include/conversation.php:1061 +#: ../../include/conversation.php:1075 #, php-format msgid "%s likes this." msgstr "%s liker dette." -#: ../../include/conversation.php:1061 +#: ../../include/conversation.php:1075 #, php-format msgid "%s doesn't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1065 +#: ../../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:1067 +#: ../../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:1073 +#: ../../include/conversation.php:1087 msgid "and" msgstr "og" -#: ../../include/conversation.php:1076 +#: ../../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:1077 +#: ../../include/conversation.php:1091 #, php-format msgid "%s like this." msgstr "%s liker dette." -#: ../../include/conversation.php:1077 +#: ../../include/conversation.php:1091 #, php-format msgid "%s don't like this." msgstr "%s liker ikke dette." -#: ../../include/conversation.php:1136 -msgid "Visible to everybody" -msgstr "Synlig for alle" - -#: ../../include/conversation.php:1137 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Vennligst skriv inn en lenke URL:" - -#: ../../include/conversation.php:1138 -msgid "Please enter a video link/URL:" -msgstr "Vennligst skriv en videolenke/URL:" - -#: ../../include/conversation.php:1139 -msgid "Please enter an audio link/URL:" -msgstr "Vennligst skriv en lydlenke/URL:" - -#: ../../include/conversation.php:1140 -msgid "Tag term:" -msgstr "Merkelapp:" - -#: ../../include/conversation.php:1141 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Lagre til mappe:" - -#: ../../include/conversation.php:1142 -msgid "Where are you right now?" -msgstr "Hvor er du akkurat nå?" - -#: ../../include/conversation.php:1143 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Utløper YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1169 ../../mod/editlayout.php:198 -#: ../../mod/editwebpage.php:235 ../../mod/editblock.php:203 -#: ../../mod/photos.php:949 ../../mod/layouts.php:168 -msgid "Share" -msgstr "Del" - -#: ../../include/conversation.php:1171 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Sidens lenketittel" - -#: ../../include/conversation.php:1174 -msgid "Post as" -msgstr "Lag innlegg som" - -#: ../../include/conversation.php:1176 ../../include/ItemObject.php:669 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:175 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:144 -msgid "Bold" -msgstr "Uthevet" - -#: ../../include/conversation.php:1177 ../../include/ItemObject.php:670 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:176 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:145 -msgid "Italic" -msgstr "Kursiv" - -#: ../../include/conversation.php:1178 ../../include/ItemObject.php:671 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:177 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:146 -msgid "Underline" -msgstr "Understreket" - -#: ../../include/conversation.php:1179 ../../include/ItemObject.php:672 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:147 -msgid "Quote" -msgstr "Sitat" - -#: ../../include/conversation.php:1180 ../../include/ItemObject.php:673 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:148 -msgid "Code" -msgstr "Kode" - -#: ../../include/conversation.php:1181 ../../mod/editlayout.php:145 -#: ../../mod/editwebpage.php:180 ../../mod/editpost.php:119 -#: ../../mod/editblock.php:149 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Last opp bilde" - -#: ../../include/conversation.php:1182 -msgid "upload photo" -msgstr "last opp bilde" - -#: ../../include/conversation.php:1183 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:150 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Legg ved fil" - -#: ../../include/conversation.php:1184 -msgid "attach file" -msgstr "legg ved fil" - -#: ../../include/conversation.php:1185 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:151 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Sett inn web-lenke" - -#: ../../include/conversation.php:1186 -msgid "web link" -msgstr "web-lenke" - -#: ../../include/conversation.php:1187 -msgid "Insert video link" -msgstr "Sett inn videolenke" - -#: ../../include/conversation.php:1188 -msgid "video link" -msgstr "videolenke" - -#: ../../include/conversation.php:1189 -msgid "Insert audio link" -msgstr "Sett inn lenke til lyd" - -#: ../../include/conversation.php:1190 -msgid "audio link" -msgstr "lenke til lyd" - -#: ../../include/conversation.php:1191 ../../mod/editlayout.php:151 -#: ../../mod/editwebpage.php:186 ../../mod/editpost.php:125 -#: ../../mod/editblock.php:155 +#: ../../include/conversation.php:1130 msgid "Set your location" msgstr "Angi din plassering" -#: ../../include/conversation.php:1192 -msgid "set location" -msgstr "angi plassering" - -#: ../../include/conversation.php:1193 ../../mod/editpost.php:127 -msgid "Toggle voting" -msgstr "Skru av eller på stemming" - -#: ../../include/conversation.php:1196 ../../mod/editlayout.php:152 -#: ../../mod/editwebpage.php:187 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:156 +#: ../../include/conversation.php:1131 msgid "Clear browser location" msgstr "Fjern nettleserplassering" -#: ../../include/conversation.php:1197 -msgid "clear location" -msgstr "fjern plassering" +#: ../../include/conversation.php:1177 +msgid "Tag term:" +msgstr "Merkelapp:" -#: ../../include/conversation.php:1199 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:203 ../../mod/editpost.php:141 -#: ../../mod/editblock.php:169 -msgid "Title (optional)" -msgstr "Tittel (valgfri)" +#: ../../include/conversation.php:1178 +msgid "Where are you right now?" +msgstr "Hvor er du akkurat nå?" -#: ../../include/conversation.php:1202 ../../mod/editlayout.php:167 -#: ../../mod/editwebpage.php:205 ../../mod/editpost.php:143 -#: ../../mod/editblock.php:172 +#: ../../include/conversation.php:1210 +msgid "Page link name" +msgstr "Sidens lenkenavn" + +#: ../../include/conversation.php:1213 +msgid "Post as" +msgstr "Lag innlegg som" + +#: ../../include/conversation.php:1223 +msgid "Toggle voting" +msgstr "Skru av eller på stemming" + +#: ../../include/conversation.php:1231 msgid "Categories (optional, comma-separated list)" msgstr "Kategorier (valgfri, kommaseparert liste)" -#: ../../include/conversation.php:1204 ../../mod/editlayout.php:154 -#: ../../mod/editwebpage.php:189 ../../mod/editpost.php:131 -#: ../../mod/editblock.php:158 -msgid "Permission settings" -msgstr "Tillatelser - innstillinger" +#: ../../include/conversation.php:1254 +msgid "Set publish date" +msgstr "Angi publiseringsdato" -#: ../../include/conversation.php:1205 -msgid "permissions" -msgstr "tillatelser" - -#: ../../include/conversation.php:1212 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:198 ../../mod/editpost.php:138 -#: ../../mod/editblock.php:166 -msgid "Public post" -msgstr "Offentlig innlegg" - -#: ../../include/conversation.php:1214 ../../mod/editlayout.php:168 -#: ../../mod/editwebpage.php:206 ../../mod/editpost.php:144 -#: ../../mod/editblock.php:173 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Eksempel: ola@eksempel.no, kari@eksempel.no" - -#: ../../include/conversation.php:1227 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:215 ../../mod/editpost.php:155 -#: ../../mod/editblock.php:183 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Angi utløpsdato" - -#: ../../include/conversation.php:1229 ../../include/ItemObject.php:680 -#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Krypter tekst" - -#: ../../include/conversation.php:1231 ../../mod/events.php:635 -#: ../../mod/editpost.php:159 +#: ../../include/conversation.php:1258 msgid "OK" msgstr "OK" -#: ../../include/conversation.php:1232 ../../mod/settings.php:583 -#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/events.php:634 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 -msgid "Cancel" -msgstr "Avbryt" - -#: ../../include/conversation.php:1475 +#: ../../include/conversation.php:1503 msgid "Discover" msgstr "Oppdage" -#: ../../include/conversation.php:1478 +#: ../../include/conversation.php:1506 msgid "Imported public streams" msgstr "Importerte offentlige strømmer" -#: ../../include/conversation.php:1483 +#: ../../include/conversation.php:1511 msgid "Commented Order" msgstr "Kommentert" -#: ../../include/conversation.php:1486 +#: ../../include/conversation.php:1514 msgid "Sort by Comment Date" msgstr "Sorter etter kommentert dato" -#: ../../include/conversation.php:1490 +#: ../../include/conversation.php:1518 msgid "Posted Order" msgstr "Lagt inn" -#: ../../include/conversation.php:1493 +#: ../../include/conversation.php:1521 msgid "Sort by Post Date" msgstr "Sorter etter innleggsdato" -#: ../../include/conversation.php:1501 +#: ../../include/conversation.php:1529 msgid "Posts that mention or involve you" msgstr "Innlegg som nevner eller involverer deg" -#: ../../include/conversation.php:1507 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Nye" - -#: ../../include/conversation.php:1510 +#: ../../include/conversation.php:1538 msgid "Activity Stream - by date" msgstr "Aktivitetsstrøm - etter dato" -#: ../../include/conversation.php:1516 +#: ../../include/conversation.php:1544 msgid "Starred" msgstr "Stjerne" -#: ../../include/conversation.php:1519 +#: ../../include/conversation.php:1547 msgid "Favourite Posts" msgstr "Favorittinnlegg" -#: ../../include/conversation.php:1526 +#: ../../include/conversation.php:1554 msgid "Spam" msgstr "Søppel" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1557 msgid "Posts flagged as SPAM" msgstr "Innlegg merket som SØPPEL" -#: ../../include/conversation.php:1568 ../../mod/admin.php:949 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1571 +#: ../../include/conversation.php:1614 msgid "Status Messages and Posts" msgstr "Statusmeldinger og -innlegg" -#: ../../include/conversation.php:1580 +#: ../../include/conversation.php:1623 msgid "About" msgstr "Om" -#: ../../include/conversation.php:1583 +#: ../../include/conversation.php:1626 msgid "Profile Details" msgstr "Profildetaljer" -#: ../../include/conversation.php:1589 ../../include/nav.php:97 -#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Bilder" - -#: ../../include/conversation.php:1592 ../../include/photos.php:356 +#: ../../include/conversation.php:1635 ../../include/photos.php:502 msgid "Photo Albums" msgstr "Fotoalbum" -#: ../../include/conversation.php:1598 ../../include/RedDAV/RedBrowser.php:249 -#: ../../include/nav.php:98 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Filer" - -#: ../../include/conversation.php:1601 +#: ../../include/conversation.php:1642 msgid "Files and Storage" msgstr "Filer og lagring" -#: ../../include/conversation.php:1611 ../../include/conversation.php:1614 -msgid "Chatrooms" -msgstr "Chatrom" - -#: ../../include/conversation.php:1624 ../../include/nav.php:109 -#: ../../include/apps.php:129 -msgid "Bookmarks" -msgstr "Bokmerker" - -#: ../../include/conversation.php:1627 +#: ../../include/conversation.php:1678 msgid "Saved Bookmarks" msgstr "Lagrede bokmerker" -#: ../../include/conversation.php:1635 ../../include/nav.php:113 -#: ../../include/apps.php:136 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Websider" - -#: ../../include/conversation.php:1638 +#: ../../include/conversation.php:1688 msgid "Manage Webpages" msgstr "Håndtere websider" -#: ../../include/conversation.php:1667 ../../include/ItemObject.php:175 -#: ../../include/ItemObject.php:187 ../../mod/photos.php:1003 -#: ../../mod/photos.php:1015 -msgid "View all" -msgstr "Vis alle" - -#: ../../include/conversation.php:1695 ../../include/ItemObject.php:184 -#: ../../mod/photos.php:1012 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Liker ikke" -msgstr[1] "Liker ikke" - -#: ../../include/conversation.php:1698 +#: ../../include/conversation.php:1747 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Deltar" msgstr[1] "Deltar" -#: ../../include/conversation.php:1701 +#: ../../include/conversation.php:1750 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Deltar ikke" msgstr[1] "Deltar ikke" -#: ../../include/conversation.php:1704 +#: ../../include/conversation.php:1753 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Ikke bestemt" msgstr[1] "Ikke bestemt" -#: ../../include/conversation.php:1707 +#: ../../include/conversation.php:1756 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "Enig" msgstr[1] "Enige" -#: ../../include/conversation.php:1710 +#: ../../include/conversation.php:1759 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Uenig" msgstr[1] "Uenige" -#: ../../include/conversation.php:1713 +#: ../../include/conversation.php:1762 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Avstår" msgstr[1] "Avstår" -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:301 ../../include/attach.php:315 -#: ../../include/attach.php:339 ../../include/attach.php:532 -#: ../../include/attach.php:606 ../../include/items.php:4093 -#: ../../include/photos.php:15 ../../include/chat.php:131 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 -#: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 -#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 -#: ../../mod/events.php:219 ../../mod/connedit.php:321 ../../mod/group.php:9 -#: ../../mod/setup.php:207 ../../mod/common.php:35 ../../mod/id.php:61 -#: ../../mod/connections.php:169 ../../mod/item.php:197 ../../mod/item.php:205 -#: ../../mod/item.php:938 ../../mod/thing.php:247 ../../mod/thing.php:264 -#: ../../mod/thing.php:299 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 -#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:118 -#: ../../mod/rate.php:110 ../../mod/editpost.php:13 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:61 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/webpages.php:67 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/editblock.php:65 -#: ../../mod/register.php:72 ../../mod/photos.php:68 ../../mod/message.php:16 -#: ../../mod/mitem.php:106 ../../mod/mood.php:111 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/regmod.php:17 -#: ../../mod/network.php:12 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/appman.php:66 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/bookmarks.php:46 ../../mod/channel.php:95 -#: ../../mod/channel.php:206 ../../mod/channel.php:249 -#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393 -msgid "Permission denied." -msgstr "Tillatelse avslått." +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Ofte" -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Elementet ble ikke funnet." +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Hver time" -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Ingen kildefil." +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "To ganger daglig" -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kan ikke finne filen som skal byttes ut" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Daglig" -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Finner ikke filen som skal revideres/oppdateres" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Ukentlig" -#: ../../include/attach.php:398 +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Månedlig" + +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "For tiden mann" + +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "For tiden kvinne" + +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "For det meste mann" + +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "For det meste kvinne" + +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transkjønnet" + +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "interkjønnet" + +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transseksuell" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafroditt" + +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Intetkjønn" + +#: ../../include/selectors.php:49 +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" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Menn" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Kvinner" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homo" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisk" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Ingen preferanse" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Biseksuell" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autoseksuell" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Avholdende" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Jomfru" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Avviker" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Masse" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Ikke-seksuell" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Enslig" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Ensom" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Tilgjengelig" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Ikke tilgjengelig" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Er forelsket" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Betatt" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Sammen med" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Utro" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sexavhengig" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Venner med frynsegoder" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Tilfeldig" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Forlovet" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Gift" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Gift i fantasien" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partnere" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Samboer" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Samboer" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Lykkelig" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Ikke på utkikk" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Partnerbytte" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Bedratt" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separert" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Ustabilt" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Skilt" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Skilt i fantasien" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Enke" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Usikkert" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Det er komplisert" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Bryr meg ikke" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Spør meg" + +#: ../../include/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:232 +msgid "Visible to your default audience" +msgstr "Synlig for ditt standard publikum" + +#: ../../include/PermissionDescription.php:115 +#: ../../include/acl_selectors.php:268 +msgid "Only me" +msgstr "" + +#: ../../include/PermissionDescription.php:116 +msgid "Public" +msgstr "Offentlig" + +#: ../../include/PermissionDescription.php:117 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../include/PermissionDescription.php:118 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Filens størrelse overgår grensen på %d" +msgid "Any account on %s" +msgstr "" -#: ../../include/attach.php:410 -#, 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/PermissionDescription.php:119 +msgid "Any of my connections" +msgstr "" -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Mislyktes med å laste opp filen. Mulig systemgrense eller handling avbrutt." +#: ../../include/PermissionDescription.php:120 +msgid "Only connections I specifically allow" +msgstr "" -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Lagret fil kunne ikke bekreftes. Opplasting mislyktes." +#: ../../include/PermissionDescription.php:121 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "" -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Stien er ikke tilgjengelig." +#: ../../include/PermissionDescription.php:122 +msgid "Any connections including those who haven't yet been approved" +msgstr "" -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Tomt sti-navn" +#: ../../include/PermissionDescription.php:161 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "duplikat av filnavn eller sti" +#: ../../include/PermissionDescription.php:162 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Stien ble ikke funnet." +#: ../../include/PermissionDescription.php:163 +msgid "This is your default setting for who can view your connections" +msgstr "" -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir mislyktes." +#: ../../include/PermissionDescription.php:164 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "databaselagring mislyktes." +#: ../../include/PermissionDescription.php:165 +msgid "This is your default setting for the audience of your webpages" +msgstr "" -#: ../../include/account.php:23 +#: ../../include/account.php:28 msgid "Not a valid email address" msgstr "Ikke en gyldig e-postadresse" -#: ../../include/account.php:25 +#: ../../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:31 +#: ../../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:64 +#: ../../include/account.php:68 msgid "An invitation is required." msgstr "En invitasjon er påkrevd." -#: ../../include/account.php:68 +#: ../../include/account.php:72 msgid "Invitation could not be verified." msgstr "Invitasjon kunne ikke bekreftes." -#: ../../include/account.php:119 +#: ../../include/account.php:122 msgid "Please enter the required information." msgstr "Vennligst skriv inn nødvendig informasjon." -#: ../../include/account.php:187 +#: ../../include/account.php:189 msgid "Failed to store account information." msgstr "Mislyktes med å lagre kontoinformasjon." -#: ../../include/account.php:245 +#: ../../include/account.php:249 #, php-format msgid "Registration confirmation for %s" msgstr "Registreringsbekreftelse for %s" -#: ../../include/account.php:313 +#: ../../include/account.php:315 #, php-format msgid "Registration request at %s" msgstr "Registreringsforespørsel hos %s" -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1871 msgid "Administrator" msgstr "Administrator" -#: ../../include/account.php:337 +#: ../../include/account.php:339 msgid "your registration password" msgstr "ditt registreringspassord" -#: ../../include/account.php:340 ../../include/account.php:397 +#: ../../include/account.php:342 ../../include/account.php:402 #, php-format msgid "Registration details for %s" msgstr "Registreringsdetaljer for %s" -#: ../../include/account.php:406 +#: ../../include/account.php:414 msgid "Account approved." msgstr "Konto godkjent." -#: ../../include/account.php:440 +#: ../../include/account.php:454 #, php-format msgid "Registration revoked for %s" msgstr "Registrering trukket tilbake for %s" -#: ../../include/account.php:486 +#: ../../include/account.php:506 msgid "Account verified. Please login." msgstr "Konto bekreftet. Vennligst logg inn." -#: ../../include/account.php:706 ../../include/account.php:708 +#: ../../include/account.php:723 ../../include/account.php:725 msgid "Click here to upgrade." msgstr "Klikk her for å oppgradere." -#: ../../include/account.php:714 +#: ../../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:719 +#: ../../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" +msgstr "Generelle funksjoner" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Innholdet utløper" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Flere profiler" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Mulig å lage flere profiler" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Avanserte profiler" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Ytterlige seksjoner og utvalg til profilen" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Profil-import/-eksport" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Web-sider" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Tilby kontrollerte web-sider på din kanal" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Skjul vurdering" + +#: ../../include/features.php:55 +msgid "" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Skjul vurderingsknappene for din kanal og profilsider. Merknad: folk kan fortsatt vurdere deg et annet sted." + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Private merknader" + +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)" + +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Navigasjon kanalvalg" + +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Endre kanaler direkte fra navigasjonsmenyen" + +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Bildeplassering" + +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." + +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "" + +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "" + +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "" + +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "" + +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Ekspertmodus" + +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" + +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Premiumkanal" + +#: ../../include/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:67 +msgid "Post Composition Features" +msgstr "Funksjoner for å lage innlegg" + +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Store bilder" + +#: ../../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: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:72 +msgid "Even More Encryption" +msgstr "Enda mer kryptering" + +#: ../../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:73 +msgid "Enable Voting Tools" +msgstr "Skru på verktøy for å stemme" + +#: ../../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:74 +msgid "Delayed Posting" +msgstr "Tidfest publisering" + +#: ../../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:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Forhindre duplikat av innlegg/kommentarer" + +#: ../../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:81 +msgid "Network and Stream Filtering" +msgstr "Nettverk- og strømfiltrering" + +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Søk etter dato" + +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Mulighet for å velge innlegg etter datoområde" + +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Personverngrupper" + +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Skru på håndtering og valg av personverngrupper" + +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Lagre søkeuttrykk for senere bruk" + +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Nettverk personlig fane" + +#: ../../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:86 +msgid "Network New Tab" +msgstr "Nettverk Ny fane" + +#: ../../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:87 +msgid "Affinity Tool" +msgstr "Nærhetsverktøy" + +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrer strømaktiviteten etter releasjonsdybde" + +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtrer forbindelser" + +#: ../../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:89 +msgid "Show channel suggestions" +msgstr "Vis kanalforslag" + +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Innlegg-/Kommentar-verktøy" + +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Felleskapsmerkelapper" + +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Mulighet til å merke eksisterende meldinger" + +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Innleggskategorier" + +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Legg kategorier til dine innlegg" + +#: ../../include/features.php:97 +msgid "Emoji Reactions" +msgstr "" + +#: ../../include/features.php:97 +msgid "Add emoji reaction ability to posts" +msgstr "" + +#: ../../include/features.php:98 +msgid "Ability to file posts under folders" +msgstr "Mulighet til å sortere innlegg i mapper" + +#: ../../include/features.php:99 +msgid "Dislike Posts" +msgstr "Mislik innlegg" + +#: ../../include/features.php:99 +msgid "Ability to dislike posts/comments" +msgstr "Mulighet til å mislike innlegg/kommentarer" + +#: ../../include/features.php:100 +msgid "Star Posts" +msgstr "Stjerneinnlegg" + +#: ../../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:101 +msgid "Tag Cloud" +msgstr "Merkelappsky" + +#: ../../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 " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "En slettet gruppe med dette navnet ble gjenopprettet. Eksisterende tillatelser for elementet kan gjelde for denne gruppen og fremtidige medlemmer. Hvis du ønsket noe annet, vennligst lag en ny gruppe med et annet navn." + +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Legg nye forbindelser i denne personverngruppen" + +#: ../../include/group.php:289 +msgid "edit" +msgstr "endre" + +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Endre gruppe" + +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Legg til personverngruppe" + +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanaler uten personverngruppe" + #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Slett dette elementet?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:968 ../../mod/photos.php:1086 -msgid "Comment" -msgstr "Kommentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] Vis alle" - #: ../../include/js_strings.php:8 msgid "[-] show less" msgstr "[-] Vis mindre" @@ -1495,7 +9138,7 @@ msgstr "Passordet er for kort" msgid "Passwords do not match" msgstr "Passordene er ikke like" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "alle" @@ -1523,2210 +9166,297 @@ msgstr "Ikke noe nytt her" msgid "Rate This Channel (this is public)" msgstr "Vurder denne kanalen (dette er offentlig)" -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Vurdering" - #: ../../include/js_strings.php:21 msgid "Describe (optional)" msgstr "Beskriv (valgfritt)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/settings.php:582 ../../mod/settings.php:684 -#: ../../mod/settings.php:710 ../../mod/settings.php:738 -#: ../../mod/settings.php:761 ../../mod/settings.php:843 -#: ../../mod/settings.php:1039 ../../mod/xchan.php:11 ../../mod/connect.php:93 -#: ../../mod/events.php:654 ../../mod/connedit.php:653 ../../mod/group.php:81 -#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/pdledit.php:58 ../../mod/import.php:504 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/rate.php:167 -#: ../../mod/invite.php:142 ../../mod/locs.php:105 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/filestorage.php:155 -#: ../../mod/fsuggest.php:108 ../../mod/poke.php:166 -#: ../../mod/profiles.php:667 ../../mod/admin.php:441 ../../mod/admin.php:809 -#: ../../mod/admin.php:943 ../../mod/admin.php:1074 ../../mod/admin.php:1269 -#: ../../mod/admin.php:1352 ../../mod/photos.php:565 ../../mod/photos.php:642 -#: ../../mod/photos.php:929 ../../mod/photos.php:969 ../../mod/photos.php:1087 -#: ../../mod/mood.php:134 ../../mod/mail.php:355 ../../mod/appman.php:99 -#: ../../mod/poll.php:68 ../../mod/bulksetclose.php:24 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Submit" -msgstr "Send" - #: ../../include/js_strings.php:23 msgid "Please enter a link URL" msgstr "Vennligst skriv inn en lenke URL:" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?" + +#: ../../include/js_strings.php:27 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:28 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:29 msgid "ago" msgstr "siden" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:30 msgid "from now" msgstr "fra nå" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:31 msgid "less than a minute" msgstr "mindre enn ett minutt" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:32 msgid "about a minute" msgstr "omtrent et minutt" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:33 #, php-format msgid "%d minutes" msgstr "%d minutter" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:34 msgid "about an hour" msgstr "omtrent en time" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:35 #, php-format msgid "about %d hours" msgstr "omtrent %d timer" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:36 msgid "a day" msgstr "en dag" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:37 #, php-format msgid "%d days" msgstr "%d dager" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:38 msgid "about a month" msgstr "omtrent en måned" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:39 #, php-format msgid "%d months" msgstr "%d måneder" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:40 msgid "about a year" msgstr "omtrent et år" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:41 #, php-format msgid "%d years" msgstr "%d år" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:42 msgid " " msgstr " " -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:43 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 -msgid "parent" -msgstr "opp et nivå" - -#: ../../include/RedDAV/RedBrowser.php:130 ../../include/text.php:2395 -msgid "Collection" -msgstr "Samling" - -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "Viktigste" - -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adressebok" - -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" -msgstr "Kalender" - -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" -msgstr "Tidsplan innboks" - -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" -msgstr "Tidsplan utboks" - -#: ../../include/RedDAV/RedBrowser.php:225 -#, php-format -msgid "%1$s used" -msgstr "%1$s brukt" - -#: ../../include/RedDAV/RedBrowser.php:230 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s brukt av %2$s (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:251 -msgid "Total" -msgstr "Totalt" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Shared" -msgstr "Delt" - -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/menu.php:100 -#: ../../mod/mitem.php:169 ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Lag" - -#: ../../include/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1236 -msgid "Upload" -msgstr "Last opp" - -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:584 -#: ../../mod/settings.php:610 ../../mod/admin.php:950 -#: ../../mod/sharedwithme.php:100 -msgid "Name" -msgstr "Navn" - -#: ../../include/RedDAV/RedBrowser.php:263 -msgid "Type" -msgstr "Type" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 -msgid "Size" -msgstr "Størrelse" - -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 -msgid "Last Modified" -msgstr "Sist endret" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Lag ny mappe" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Last opp fil" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$s sine bokmerker" - -#: ../../include/comanche.php:34 ../../mod/admin.php:381 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Generelle funksjoner" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Innholdet utløper" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Fjern innlegg/kommentarer og/eller private meldinger på et angitt tidspunkt i fremtiden" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Flere profiler" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Mulig å lage flere profiler" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Avanserte profiler" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Ytterlige seksjoner og utvalg til profilen" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Profil-import/-eksport" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Lagre og åpne profildetaljer på tvers av nettsteder/kanaler" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Web-sider" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Tilby kontrollerte web-sider på din kanal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Private merknader" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Skrur på et verktøy for lagre merknader og påminnelser" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Navigasjon kanalvalg" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Endre kanaler direkte fra navigasjonsmenyen" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Bildeplassering" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart." - -#: ../../include/features.php:51 -msgid "Extended Identity Sharing" -msgstr "Utvidet identitetsdeling" - -#: ../../include/features.php:51 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Del din identiet med alle nettsteder på Internett. Når denne er avskrudd, deles identiteten bare med nettsteder i matrix." - -#: ../../include/features.php:52 -msgid "Expert Mode" -msgstr "Ekspertmodus" - -#: ../../include/features.php:52 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Skru på Ekspertmodus for å tilby avanserte konfigurasjonsvalg" - -#: ../../include/features.php:53 -msgid "Premium Channel" -msgstr "Premiumkanal" - -#: ../../include/features.php:53 -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:58 -msgid "Post Composition Features" -msgstr "Funksjoner for å lage innlegg" - -#: ../../include/features.php:60 -msgid "Use Markdown" -msgstr "Bruk Markdown" - -#: ../../include/features.php:60 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Tillat bruk av \"Markdown\" til formatering av innlegg" - -#: ../../include/features.php:61 -msgid "Large Photos" -msgstr "Store bilder" - -#: ../../include/features.php:61 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Inkluder store (640px) miniatyrbilder i innlegg. Hvis denne ikke er skrudd på, bruk små (320px) miniatyrbilder." - -#: ../../include/features.php:62 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisk import av kanalinnhold fra andre kanaler eller strømmer" - -#: ../../include/features.php:63 -msgid "Even More Encryption" -msgstr "Enda mer kryptering" - -#: ../../include/features.php:63 -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:64 -msgid "Enable voting tools" -msgstr "Skru på verktøy for å stemme" - -#: ../../include/features.php:64 -msgid "Provide a class of post which others can vote on" -msgstr "Tilby en type innlegg som andre kan stemme på" - -#: ../../include/features.php:65 -msgid "Flag Adult Photos" -msgstr "Flagge bilder for voksne" - -#: ../../include/features.php:65 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Gi foto en valgmulighet for å skjule bilder for voksne fra visning i standardalbum" - -#: ../../include/features.php:70 -msgid "Network and Stream Filtering" -msgstr "Nettverk- og strømfiltrering" - -#: ../../include/features.php:71 -msgid "Search by Date" -msgstr "Søk etter dato" - -#: ../../include/features.php:71 -msgid "Ability to select posts by date ranges" -msgstr "Mulighet for å velge innlegg etter datoområde" - -#: ../../include/features.php:72 -msgid "Collections Filter" -msgstr "Filter for samlinger" - -#: ../../include/features.php:72 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Skru på miniprogram for å vise Nettverksinnlegg bare fra valgte samlinger" - -#: ../../include/features.php:73 -msgid "Save search terms for re-use" -msgstr "Lagre søkeuttrykk for senere bruk" - -#: ../../include/features.php:74 -msgid "Network Personal Tab" -msgstr "Nettverk personlig fane" - -#: ../../include/features.php:74 -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:75 -msgid "Network New Tab" -msgstr "Nettverk Ny fane" - -#: ../../include/features.php:75 -msgid "Enable tab to display all new Network activity" -msgstr "Skru på fane for å vise all ny nettverksaktivitet" - -#: ../../include/features.php:76 -msgid "Affinity Tool" -msgstr "Nærhetsverktøy" - -#: ../../include/features.php:76 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrer strømaktiviteten etter releasjonsdybde" - -#: ../../include/features.php:77 -msgid "Suggest Channels" -msgstr "Foreslå kanaler" - -#: ../../include/features.php:77 -msgid "Show channel suggestions" -msgstr "Vis kanalforslag" - -#: ../../include/features.php:82 -msgid "Post/Comment Tools" -msgstr "Innlegg-/Kommentar-verktøy" - -#: ../../include/features.php:83 -msgid "Tagging" -msgstr "Merking" - -#: ../../include/features.php:83 -msgid "Ability to tag existing posts" -msgstr "Mulighet til å merke eksisterende meldinger" - -#: ../../include/features.php:84 -msgid "Post Categories" -msgstr "Innleggskategorier" - -#: ../../include/features.php:84 -msgid "Add categories to your posts" -msgstr "Legg kategorier til dine innlegg" - -#: ../../include/features.php:85 -msgid "Ability to file posts under folders" -msgstr "Mulighet til å sortere innlegg i mapper" - -#: ../../include/features.php:86 -msgid "Dislike Posts" -msgstr "Mislik innlegg" - -#: ../../include/features.php:86 -msgid "Ability to dislike posts/comments" -msgstr "Mulighet til å mislike innlegg/kommentarer" - -#: ../../include/features.php:87 -msgid "Star Posts" -msgstr "Stjerneinnlegg" - -#: ../../include/features.php:87 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mulighet til å merke spesielle innlegg med en stjerne" - -#: ../../include/features.php:88 -msgid "Tag Cloud" -msgstr "Merkelappsky" - -#: ../../include/features.php:88 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tilby en personlig merkelappsky på din kanalside" - -#: ../../include/items.php:382 ../../mod/like.php:270 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23 -#: ../../mod/bulksetclose.php:11 ../../index.php:392 -msgid "Permission denied" -msgstr "Tillatelse avvist" - -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Ukjent)" - -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Synlig for enhver på Internett." - -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Synlig bare for deg." - -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Synlig for enhver i dette nettverket." - -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Synlig for enhver som er autentisert." - -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Synlig for alle på %s." - -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Synlig for alle forbindelser." - -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Synlig for godkjente forbindelser." - -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Synlig for spesifikke forbindelser." - -#: ../../include/items.php:4023 ../../mod/thing.php:76 -#: ../../mod/display.php:32 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:981 -#: ../../mod/admin.php:1181 -msgid "Item not found." -msgstr "Elementet ble ikke funnet." - -#: ../../include/items.php:4476 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "Samlingen ble ikke funnet." - -#: ../../include/items.php:4491 -msgid "Collection is empty." -msgstr "Samlingen er tom." - -#: ../../include/items.php:4498 -#, php-format -msgid "Collection: %s" -msgstr "Samling: %s" - -#: ../../include/items.php:4509 -#, php-format -msgid "Connection: %s" -msgstr "Forbindelse: %s" - -#: ../../include/items.php:4512 -msgid "Connection not found." -msgstr "Forbindelsen ble ikke funnet." - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Ofte" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Hver time" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "To ganger daglig" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Daglig" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Ukentlig" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Månedlig" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/id.php:12 -#: ../../mod/id.php:13 ../../mod/admin.php:812 ../../mod/admin.php:821 -#: ../../boot.php:1554 -msgid "Email" -msgstr "E-post" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottaker angitt." - -#: ../../include/message.php:23 -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:200 -msgid "Stored post could not be verified." -msgstr "Lagret innlegg kunne ikke bekreftes." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanalen er blokkert på dette nettstedet." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Kanalplassering mangler." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Svaret fra den andre kanalen var ikke komplett." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen er slettet og finnes ikke lenger." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokollen er avskrudd." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanaloppdagelse mislyktes." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "lokal konto ble ikke funnet." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Kan ikke lage forbindelse med deg selv." - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Lagre i mappe" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Jeg vil delta" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Jeg deltar ikke" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Jeg vil kanskje delta" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Jeg er enig" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Jeg er uenig" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Jeg avstår" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Legg til stjerne" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Fjern stjerne" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Skru av og på stjernestatus" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "stjernemerket" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Legg til merkelapp" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:947 -msgid "I like this (toggle)" -msgstr "Jeg liker dette (skru av og på)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:305 -msgid "like" -msgstr "liker" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:948 -msgid "I don't like this (toggle)" -msgstr "Jeg liker ikke dette (skru av og på)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:306 -msgid "dislike" -msgstr "misliker" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Del dette" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "del" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Vis %s sin profil - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "til" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "vegg-til-vegg" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via vegg-til-vegg:" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Lagre bokmerker" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Legg til i kalender" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Merk alle som sett" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133 -msgctxt "noun" -msgid "Likes" -msgstr "Liker" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134 -msgctxt "noun" -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1139 -msgid "Close" -msgstr "Lukk" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:966 -#: ../../mod/photos.php:1084 -msgid "This is you" -msgstr "Dette er deg" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Bilde" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Sett inn lenke" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Video" - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Forskjellig" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD eller MM-DD" - -#: ../../include/datetime.php:212 ../../mod/events.php:633 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Påkrevd" - -#: ../../include/datetime.php:231 ../../boot.php:2356 -msgid "never" -msgstr "aldri" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "for mindre enn ett sekund siden" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "år" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "år" - -#: ../../include/datetime.php:241 +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mai" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Jan" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mar" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" + +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "mai" + +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Jun" + +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Jul" + +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Aug" + +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Sep" + +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Okt" + +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" + +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Des" + +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "Søn" + +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Man" + +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Tirs" + +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Ons" + +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Tors" + +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Fre" + +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Lør" + +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "idag" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" msgid "month" msgstr "måned" -#: ../../include/datetime.php:241 -msgid "months" -msgstr "måneder" - -#: ../../include/datetime.php:242 +#: ../../include/js_strings.php:85 +msgctxt "calendar" msgid "week" msgstr "uke" -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "uker" - -#: ../../include/datetime.php:243 +#: ../../include/js_strings.php:86 +msgctxt "calendar" msgid "day" msgstr "dag" -#: ../../include/datetime.php:243 -msgid "days" -msgstr "dager" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Hele dagen" -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "time" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "timer" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "minutt" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "minutter" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "sekund" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "sekunder" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s siden" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s sin fødselsdag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gratulerer med dagen, %1$s !" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nytt vindu" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Åpne det valgte stedet i et annet vindu eller nettleser-fane" - -#: ../../include/Contact.php:215 ../../mod/admin.php:726 -#, php-format -msgid "User '%s' deleted" -msgstr "Brukeren '%s' er slettet" - -#: ../../include/bb2diaspora.php:349 -msgid "Attachments:" -msgstr "Vedlegg:" - -#: ../../include/bb2diaspora.php:428 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/bb2diaspora.php:430 -msgid "Hubzilla event notification:" -msgstr "Hubzilla hendelsesvarsling:" - -#: ../../include/bb2diaspora.php:434 ../../include/event.php:20 -msgid "Starts:" -msgstr "Starter:" - -#: ../../include/bb2diaspora.php:442 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Slutter:" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1551 -msgid "Logout" -msgstr "Logg ut" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Avslutt denne økten" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Hjem" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Dine innlegg og samtaler" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Din profilside" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Endre profiler" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Håndter/endre profiler" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Endre din profil" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Dine bilder" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Dine filer" - -#: ../../include/nav.php:103 ../../include/apps.php:146 -msgid "Chat" -msgstr "Chat" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Dine chatterom" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Dine bokmerker" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Dine websider" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1552 -msgid "Login" -msgstr "Logg inn" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Logg på" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klikk for å logge ut" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Fjernautentisering" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klikk for å godkjennes mot din hjemme-hub" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Hjemmeside" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1528 -msgid "Register" -msgstr "Registrer" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Lag en konto" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hjelp" - -#: ../../include/nav.php:160 -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 ../../include/apps.php:147 -#: ../../include/text.php:832 ../../include/text.php:844 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Søk" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Søk stedets innhold" - -#: ../../include/nav.php:168 ../../include/apps.php:141 -#: ../../mod/directory.php:353 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:180 ../../include/apps.php:133 -msgid "Matrix" -msgstr "Matrix" - -#: ../../include/nav.php:180 -msgid "Your matrix" -msgstr "Din matrix" - -#: ../../include/nav.php:181 -msgid "Mark all matrix notifications seen" -msgstr "Merk alle matrix-varsler som sett" - -#: ../../include/nav.php:183 ../../include/apps.php:137 -msgid "Channel Home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:183 -msgid "Channel home" -msgstr "Kanalhjem" - -#: ../../include/nav.php:184 -msgid "Mark all channel notifications seen" -msgstr "Merk alle kanalvarsler som sett" - -#: ../../include/nav.php:187 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Forbindelser" - -#: ../../include/nav.php:190 -msgid "Notices" -msgstr "Varsel" - -#: ../../include/nav.php:190 -msgid "Notifications" -msgstr "Varsler" - -#: ../../include/nav.php:191 -msgid "See all notifications" -msgstr "Se alle varsler" - -#: ../../include/nav.php:192 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Merk alle systemvarsler som sett" - -#: ../../include/nav.php:194 ../../include/apps.php:143 -msgid "Mail" -msgstr "Melding" - -#: ../../include/nav.php:194 -msgid "Private mail" -msgstr "Privat post" - -#: ../../include/nav.php:195 -msgid "See all private messages" -msgstr "Se alle private meldinger" - -#: ../../include/nav.php:196 -msgid "Mark all private messages seen" -msgstr "Merk alle private meldinger som sett" - -#: ../../include/nav.php:197 -msgid "Inbox" -msgstr "Innboks" - -#: ../../include/nav.php:198 -msgid "Outbox" -msgstr "Utboks" - -#: ../../include/nav.php:202 ../../include/apps.php:140 -#: ../../mod/events.php:472 -msgid "Events" -msgstr "Hendelser" - -#: ../../include/nav.php:202 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:203 -msgid "See all events" -msgstr "Se alle hendelser" - -#: ../../include/nav.php:204 -msgid "Mark all events seen" -msgstr "Merk alle hendelser som sett" - -#: ../../include/nav.php:206 ../../include/apps.php:132 -#: ../../mod/manage.php:164 -msgid "Channel Manager" -msgstr "Kanalstyring" - -#: ../../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 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administrator" - -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Nettstedsoppsett og -konfigurasjon" - -#: ../../include/nav.php:252 -msgid "@name, #tag, content" -msgstr "@navn, @merkelapp, innhold" - -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Vennligst vent..." - -#: ../../include/taxonomy.php:222 ../../include/taxonomy.php:243 -msgid "Tags" -msgstr "Merkelapper" - -#: ../../include/taxonomy.php:282 -msgid "Keywords" -msgstr "Nøkkelord" - -#: ../../include/taxonomy.php:303 -msgid "have" -msgstr "har" - -#: ../../include/taxonomy.php:303 -msgid "has" -msgstr "har" - -#: ../../include/taxonomy.php:304 -msgid "want" -msgstr "ønsker" - -#: ../../include/taxonomy.php:304 -msgid "wants" -msgstr "ønsker" - -#: ../../include/taxonomy.php:305 -msgid "likes" -msgstr "liker" - -#: ../../include/taxonomy.php:306 -msgid "dislikes" -msgstr "misliker" - -#: ../../include/activities.php:39 -msgid " and " -msgstr "og" - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s endret %2$s til “%3$s”" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besøk %1$s sitt %2$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har oppdatert %2$s, endret %3$s." - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Denne hendelsen er lagt til i din kalender." - -#: ../../include/api.php:1081 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/network.php:620 +#: ../../include/network.php:657 msgid "view full size" msgstr "vis full størrelse" -#: ../../include/dir_fns.php:134 -msgid "Directory Options" -msgstr "Kataloginnstillinger" +#: ../../include/network.php:1885 +msgid "No Subject" +msgstr "Uten emne" -#: ../../include/dir_fns.php:135 -msgid "Alphabetic" -msgstr "Alfabetisk" +#: ../../include/network.php:2146 ../../include/network.php:2147 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/dir_fns.php:136 -msgid "Reverse Alphabetic" -msgstr "Omvendt alfabetisk" +#: ../../include/network.php:2148 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/dir_fns.php:137 -msgid "Newest to Oldest" -msgstr "Nyest til eldst" +#: ../../include/network.php:2149 +msgid "GNU-Social" +msgstr "" -#: ../../include/dir_fns.php:138 -msgid "Oldest to Newest" -msgstr "Eldst til nyest" +#: ../../include/network.php:2150 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/dir_fns.php:139 -msgid "Sort" -msgstr "Sorter" +#: ../../include/network.php:2152 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Trygt modus" +#: ../../include/network.php:2153 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/dir_fns.php:145 -msgid "Public Forums Only" -msgstr "Bare offentlige forum" +#: ../../include/network.php:2154 +msgid "Zot" +msgstr "Zot" -#: ../../include/dir_fns.php:146 -msgid "This Website Only" -msgstr "Kun dette nettstedet" +#: ../../include/network.php:2155 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/oembed.php:183 -msgid "Embedded content" -msgstr "Innebygget innhold" +#: ../../include/network.php:2156 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/oembed.php:192 -msgid "Embedding disabled" -msgstr "Innbygging avskrudd" +#: ../../include/network.php:2157 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/zot.php:679 -msgid "Invalid data packet" -msgstr "Ugyldig datapakke" - -#: ../../include/zot.php:695 -msgid "Unable to verify channel signature" -msgstr "Ikke i stand til å sjekke kanalsignaturen" - -#: ../../include/zot.php:2079 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Ikke i stand til å bekrefte signaturen til %s" - -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Logget ut." - -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Mislykket autentisering" - -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Innlogging mislyktes." - -#: ../../include/enotify.php:41 -msgid "Hubzilla Notification" -msgstr "Hubzilla-varsling" - -#: ../../include/enotify.php:42 -msgid "hubzilla" -msgstr "hubzilla" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Tusen takk," - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "%s administrator" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notify] Ny melding mottatt hos %s" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s sendte deg en ny privat melding på %3$s." - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s sendte deg %2$s." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "en privat melding" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Vennligst besøk %s for å se og/eller svare på dine private meldinger." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]a %4$s[/zrl]" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]%4$s's %5$s[/zrl]" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterte på [zrl=%3$s]din %4$s[/zrl]" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notify] Kommentar til samtale #%1$d av %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s kommenterte på et element eller en samtale du følger" - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Vennligst besøk %s for å se og/eller svare i samtalen" - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notify] %s skrev et innlegg på din profilvegg" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s skrev et innlegg på din profilvegg på %3$s" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s skrev et innlegg på [zrl=%3$s]din vegg[/zrl]" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notify] %s merket deg" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s merket deg på %3$s" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]merket deg[/zrl]." - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notify] %1$s prikket deg" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s dyttet deg på %3$s" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]dyttet deg[/zrl]." - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notify] %s merket ditt innlegg" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s merket ditt innlegg på %3$s" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s merket [zrl=%3$s]ditt innlegg[/zrl]" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notify] Introduksjon mottatt" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en ny forespørsel om forbindelse fra '%2$s' hos %3$s" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, du mottok [zrl=%2$s]en ny forespørsel om forbindelse[/zrl] fra %3$s." - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kan besøke profilen deres på %s" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notify] Venneforslag mottatt" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, du har mottatt en venneforespørsel fra '%2$s' hos %3$s" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, du har mottatt [zrl=%2$s]et venneforslaget[/zrl] angående %3$s fra %4$s. " - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Navn:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Bilde:" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Vennligst besøk %s for å godkjenne eller avslå dette forslaget." - -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Notify]" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitasjon tilgjengelig" -msgstr[1] "%d invitasjoner tilgjengelig" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:445 -msgid "Advanced" -msgstr "Avansert" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Finn kanaler" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Skriv navn eller interesse" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Forbindelse/Følg" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Eksempler: Ola Nordmann, fisking" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:349 ../../mod/directory.php:354 -msgid "Find" -msgstr "Finn" - -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:353 -#: ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Kanalforslag" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Tilfeldig profil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Inviter venner" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avansert eksempel: navn=fred og land=island" - -#: ../../include/contact_widgets.php:125 -#, 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:130 -msgid "show more" -msgstr "vis mer" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Synlig for ditt standard publikum" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Vis" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Ikke vis" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:652 -#: ../../mod/chat.php:209 ../../mod/filestorage.php:146 -#: ../../mod/photos.php:559 ../../mod/photos.php:922 -msgid "Permissions" -msgstr "Tillatelser" - -#: ../../include/photos.php:86 +#: ../../include/photos.php:110 #, php-format msgid "Image exceeds website size limit of %lu bytes" msgstr "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes" -#: ../../include/photos.php:93 +#: ../../include/photos.php:117 msgid "Image file is empty." msgstr "Bildefilen er tom." -#: ../../include/photos.php:121 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kan ikke behandle bildet" - -#: ../../include/photos.php:194 +#: ../../include/photos.php:255 msgid "Photo storage failed." msgstr "Bildelagring mislyktes." -#: ../../include/photos.php:360 +#: ../../include/photos.php:295 +msgid "a new photo" +msgstr "et nytt bilde" + +#: ../../include/photos.php:299 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s la inn %2$s til %3$s" + +#: ../../include/photos.php:506 msgid "Upload New Photos" msgstr "Last opp nye bilder" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:93 -msgid "Male" -msgstr "Mannlig" +#: ../../include/zot.php:699 +msgid "Invalid data packet" +msgstr "Ugyldig datapakke" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:95 -msgid "Female" -msgstr "Kvinnelig" +#: ../../include/zot.php:715 +msgid "Unable to verify channel signature" +msgstr "Ikke i stand til å sjekke kanalsignaturen" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "For tiden mann" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "For tiden kvinne" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "For det meste mann" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "For det meste kvinne" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transkjønnet" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "interkjønnet" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafroditt" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Intetkjønn" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ubestemt" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:814 -msgid "Other" -msgstr "Annen" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Ubestemt" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Menn" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Kvinner" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homo" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisk" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Ingen preferanse" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksuell" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksuell" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Avholdende" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Jomfru" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Avviker" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Masse" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Ikke-seksuell" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Enslig" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Ensom" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Tilgjengelig" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Ikke tilgjengelig" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Er forelsket" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Betatt" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Sammen med" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Utro" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexavhengig" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Venner med frynsegoder" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Tilfeldig" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Forlovet" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Gift" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Gift i fantasien" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partnere" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samboer" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Samboer" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Lykkelig" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Ikke på utkikk" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Partnerbytte" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Bedratt" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separert" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Ustabilt" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Skilt" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Skilt i fantasien" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Enke" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Usikkert" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Det er komplisert" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Bryr meg ikke" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Spør meg" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Nettstedsadministrator" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adressebok" - -#: ../../include/apps.php:144 ../../mod/mood.php:130 -msgid "Mood" -msgstr "Stemning" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Undersøk" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Forreslå" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Tilfeldig kanal" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Inviter" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funksjoner" - -#: ../../include/apps.php:153 ../../mod/id.php:25 -msgid "Language" -msgstr "Språk" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Innlegg" - -#: ../../include/apps.php:155 ../../mod/id.php:14 ../../mod/id.php:15 -#: ../../mod/id.php:16 -msgid "Profile Photo" -msgstr "Profilbilde" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:608 -msgid "Update" -msgstr "Oppdater" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installer" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Kjøp" - -#: ../../include/text.php:318 -msgid "prev" -msgstr "forrige" - -#: ../../include/text.php:320 -msgid "first" -msgstr "første" - -#: ../../include/text.php:349 -msgid "last" -msgstr "siste" - -#: ../../include/text.php:352 -msgid "next" -msgstr "neste" - -#: ../../include/text.php:362 -msgid "older" -msgstr "eldre" - -#: ../../include/text.php:364 -msgid "newer" -msgstr "nyere" - -#: ../../include/text.php:748 -msgid "No connections" -msgstr "Ingen forbindelser" - -#: ../../include/text.php:762 +#: ../../include/zot.php:2363 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d forbindelse" -msgstr[1] "%d forbindelser" +msgid "Unable to verify site signature for %s" +msgstr "Ikke i stand til å bekrefte signaturen til %s" -#: ../../include/text.php:775 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Vis forbindelser" +#: ../../include/zot.php:3712 +msgid "invalid target signature" +msgstr "Målets signatur er ugyldig" -#: ../../include/text.php:911 -msgid "poke" -msgstr "prikk" +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Ny side" -#: ../../include/text.php:912 -msgid "ping" -msgstr "varsle" - -#: ../../include/text.php:912 -msgid "pinged" -msgstr "varslet" - -#: ../../include/text.php:913 -msgid "prod" -msgstr "oppildne" - -#: ../../include/text.php:913 -msgid "prodded" -msgstr "oppildnet" - -#: ../../include/text.php:914 -msgid "slap" -msgstr "daske" - -#: ../../include/text.php:914 -msgid "slapped" -msgstr "dasket" - -#: ../../include/text.php:915 -msgid "finger" -msgstr "fingre" - -#: ../../include/text.php:915 -msgid "fingered" -msgstr "fingret" - -#: ../../include/text.php:916 -msgid "rebuff" -msgstr "tilbakevise" - -#: ../../include/text.php:916 -msgid "rebuffed" -msgstr "tilbakeviste" - -#: ../../include/text.php:926 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:927 -msgid "sad" -msgstr "trist" - -#: ../../include/text.php:928 -msgid "mellow" -msgstr "dempet" - -#: ../../include/text.php:929 -msgid "tired" -msgstr "trøtt" - -#: ../../include/text.php:930 -msgid "perky" -msgstr "oppkvikket" - -#: ../../include/text.php:931 -msgid "angry" -msgstr "sint" - -#: ../../include/text.php:932 -msgid "stupified" -msgstr "sløvet" - -#: ../../include/text.php:933 -msgid "puzzled" -msgstr "forundret" - -#: ../../include/text.php:934 -msgid "interested" -msgstr "interessert" - -#: ../../include/text.php:935 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:936 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:937 -msgid "alive" -msgstr "levende" - -#: ../../include/text.php:938 -msgid "annoyed" -msgstr "irritert" - -#: ../../include/text.php:939 -msgid "anxious" -msgstr "nervøs" - -#: ../../include/text.php:940 -msgid "cranky" -msgstr "gretten" - -#: ../../include/text.php:941 -msgid "disturbed" -msgstr "foruroliget" - -#: ../../include/text.php:942 -msgid "frustrated" -msgstr "frustrert" - -#: ../../include/text.php:943 -msgid "depressed" -msgstr "lei seg" - -#: ../../include/text.php:944 -msgid "motivated" -msgstr "motivert" - -#: ../../include/text.php:945 -msgid "relaxed" -msgstr "avslappet" - -#: ../../include/text.php:946 -msgid "surprised" -msgstr "overrasket" - -#: ../../include/text.php:1111 -msgid "Monday" -msgstr "mandag" - -#: ../../include/text.php:1111 -msgid "Tuesday" -msgstr "tirsdag" - -#: ../../include/text.php:1111 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1111 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1111 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1111 -msgid "Saturday" -msgstr "lørdag" - -#: ../../include/text.php:1111 -msgid "Sunday" -msgstr "søndag" - -#: ../../include/text.php:1115 -msgid "January" -msgstr "januar" - -#: ../../include/text.php:1115 -msgid "February" -msgstr "februar" - -#: ../../include/text.php:1115 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1115 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1115 -msgid "May" -msgstr "mai" - -#: ../../include/text.php:1115 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1115 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1115 -msgid "August" -msgstr "august" - -#: ../../include/text.php:1115 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1115 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1115 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1115 -msgid "December" -msgstr "desember" - -#: ../../include/text.php:1193 -msgid "unknown.???" -msgstr "ukjent.???" - -#: ../../include/text.php:1194 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1230 -msgid "remove category" -msgstr "fjern kategori" - -#: ../../include/text.php:1299 -msgid "remove from file" -msgstr "fjern fra fil" - -#: ../../include/text.php:1375 ../../include/text.php:1386 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klikk for å åpne/lukke" - -#: ../../include/text.php:1534 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Lenke til kilde" - -#: ../../include/text.php:1553 -msgid "Select a page layout: " -msgstr "Velg en side-layout:" - -#: ../../include/text.php:1556 ../../include/text.php:1616 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1589 -msgid "Page content type: " -msgstr "Sidens innholdstype:" - -#: ../../include/text.php:1628 -msgid "Select an alternate language" -msgstr "Velg et annet språk" - -#: ../../include/text.php:1760 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2047 -msgid "Design" -msgstr "Formgivning" - -#: ../../include/text.php:2050 -msgid "Blocks" -msgstr "Byggeklosser" - -#: ../../include/text.php:2051 -msgid "Menus" -msgstr "Menyer" - -#: ../../include/text.php:2052 -msgid "Layouts" -msgstr "Layout" - -#: ../../include/text.php:2053 -msgid "Pages" -msgstr "Sider" - -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Mangler romnavn" - -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Duplikat romnavn" - -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Ugyldig rom-spesifisering" - -#: ../../include/chat.php:120 -msgid "Room not found." -msgstr "Rommet ble ikke funnet." - -#: ../../include/chat.php:141 -msgid "Room is full" -msgstr "Rommet er fullt" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Tittel" #: ../../include/permissions.php:26 msgid "Can view my normal stream and posts" @@ -3737,5157 +9467,361 @@ msgid "Can view my default channel profile" msgstr "Kan se min standard kanalprofil" #: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan se mine fotoalbum" - -#: ../../include/permissions.php:29 msgid "Can view my connections" msgstr "Kan se mine forbindelser" -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan se mitt fillager" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan se mine filer og bilder" -#: ../../include/permissions.php:31 +#: ../../include/permissions.php:30 msgid "Can view my webpages" msgstr "Kan se mine websider" -#: ../../include/permissions.php:34 +#: ../../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:35 +#: ../../include/permissions.php:34 msgid "Can post on my channel page (\"wall\")" msgstr "Kan lage innlegg på min kanalside (\"vegg\")" -#: ../../include/permissions.php:36 +#: ../../include/permissions.php:35 msgid "Can comment on or like my posts" msgstr "Kan kommentere på eller like mine innlegg" -#: ../../include/permissions.php:37 +#: ../../include/permissions.php:36 msgid "Can send me private mail messages" msgstr "Kan sende meg private meldinger" -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan legge inn bilder i mine fotoalbum" - -#: ../../include/permissions.php:39 +#: ../../include/permissions.php:37 msgid "Can like/dislike stuff" msgstr "Kan like/ikke like forskjellige greier" -#: ../../include/permissions.php:39 +#: ../../include/permissions.php:37 msgid "Profiles and things other than posts/comments" msgstr "Profiler og andre ting enn innlegg/kommentarer" -#: ../../include/permissions.php:41 +#: ../../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:41 +#: ../../include/permissions.php:39 msgid "Advanced - useful for creating group forum channels" msgstr "Avansert - nyttig for å lage forumkanaler for grupper" -#: ../../include/permissions.php:42 +#: ../../include/permissions.php:40 msgid "Can chat with me (when available)" msgstr "Kan chatte/sende lynmeldinger til meg (når tilgjengelig)" -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Kan skrive til mitt fillager" +#: ../../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:44 +#: ../../include/permissions.php:42 msgid "Can edit my webpages" msgstr "Kan endre mine websider" -#: ../../include/permissions.php:46 +#: ../../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:46 +#: ../../include/permissions.php:44 msgid "Somewhat advanced - very useful in open communities" msgstr "Litt avansert - svært nyttig i åpne fellesskap" -#: ../../include/permissions.php:48 +#: ../../include/permissions.php:46 msgid "Can administer my channel resources" msgstr "Kan administrere mine kanalressurser" -#: ../../include/permissions.php:48 +#: ../../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:810 +#: ../../include/permissions.php:877 msgid "Social Networking" msgstr "Sosialt nettverk" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Ganske offentlig" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sosial - ganske offentlig" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Begrenset" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sosial - begrenset" -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sosial - privat" -#: ../../include/permissions.php:811 +#: ../../include/permissions.php:878 msgid "Community Forum" msgstr "Forum for fellesskap" -#: ../../include/permissions.php:812 +#: ../../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:813 +#: ../../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:813 -msgid "Celebrity/Soapbox" -msgstr "Kjendis/Talerstol" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Spesiell - kjendis/talerstol" -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppelager" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Spesiell - gruppelager" -#: ../../include/permissions.php:814 +#: ../../include/permissions.php:881 msgid "Custom/Expert Mode" msgstr "Tilpasset/Ekspertmodus" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "En standardtekst om hva du bør gjøre som ny her" +#: ../../include/activities.php:41 +msgid " and " +msgstr "og" -#: ../../mod/manage.php:136 +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "offentlig profil" + +#: ../../include/activities.php:58 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har laget %1$.0f av %2$.0f tillatte kanaler." +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s endret %2$s til “%3$s”" -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Lag en ny kanal" - -#: ../../mod/manage.php:165 -msgid "Current Channel" -msgstr "Gjeldende kanal" - -#: ../../mod/manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Bytt til en av dine kanaler ved å velge den." - -#: ../../mod/manage.php:168 -msgid "Default Channel" -msgstr "Standardkanal" - -#: ../../mod/manage.php:169 -msgid "Make Default" -msgstr "Gjør til standard" - -#: ../../mod/manage.php:172 +#: ../../include/activities.php:59 #, php-format -msgid "%d new messages" -msgstr "%d nye meldinger" +msgid "Visit %1$s's %2$s" +msgstr "Besøk %1$s sitt %2$s" -#: ../../mod/manage.php:173 +#: ../../include/activities.php:62 #, php-format -msgid "%d new introductions" -msgstr "%d nye introduksjoner" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s har oppdatert %2$s, endret %3$s." -#: ../../mod/manage.php:175 -msgid "Delegated Channels" -msgstr "Delegerte kanaler" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Vedlegg:" -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Navn er påkrevd" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname hendelsesvarsling:" -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Nøkkel og hemmelighet er påkrevd" +#: ../../view/theme/redbasic/php/config.php:82 +msgid "Focus (Hubzilla default)" +msgstr "Focus (Hubzilla standardtema)" -#: ../../mod/settings.php:124 -msgid "Diaspora Policy Settings updated." -msgstr "Innstillinger for Diaspora retningslinjer er oppdatert." - -#: ../../mod/settings.php:232 -msgid "Passwords do not match. Password unchanged." -msgstr "Passordene stemmer ikke overens. Passord uforandret." - -#: ../../mod/settings.php:236 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomme passord er ikke tillatt. Passord uforandret." - -#: ../../mod/settings.php:250 -msgid "Password changed." -msgstr "Passord endret." - -#: ../../mod/settings.php:252 -msgid "Password update failed. Please try again." -msgstr "Passord oppdatering mislyktes. Vennligst prøv igjen." - -#: ../../mod/settings.php:266 -msgid "Not valid email." -msgstr "Ikke gyldig e-post." - -#: ../../mod/settings.php:269 -msgid "Protected email address. Cannot change to that email." -msgstr "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen." - -#: ../../mod/settings.php:278 -msgid "System failure storing new email. Please try again." -msgstr "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen." - -#: ../../mod/settings.php:517 -msgid "Settings updated." -msgstr "Innstillinger oppdatert." - -#: ../../mod/settings.php:573 ../../mod/api.php:106 ../../mod/admin.php:419 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1556 -msgid "No" -msgstr "Nei" - -#: ../../mod/settings.php:573 ../../mod/api.php:105 ../../mod/admin.php:421 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1556 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -#: ../../mod/settings.php:643 -msgid "Add application" -msgstr "Legg til program" - -#: ../../mod/settings.php:584 -msgid "Name of application" -msgstr "Navn på program" - -#: ../../mod/settings.php:585 ../../mod/settings.php:611 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../mod/settings.php:585 ../../mod/settings.php:586 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisk laget - kan endres om du vil. Største lengde 20" - -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -msgid "Consumer Secret" -msgstr "Consumer Secret" - -#: ../../mod/settings.php:587 ../../mod/settings.php:613 -msgid "Redirect" -msgstr "Omdirigering" - -#: ../../mod/settings.php:587 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette" - -#: ../../mod/settings.php:588 ../../mod/settings.php:614 -msgid "Icon url" -msgstr "Ikon-URL" - -#: ../../mod/settings.php:588 -msgid "Optional" -msgstr "Valgfritt" - -#: ../../mod/settings.php:599 -msgid "You can't edit this application." -msgstr "Du kan ikke endre dette programmet." - -#: ../../mod/settings.php:642 -msgid "Connected Apps" -msgstr "Tilkoblede app-er" - -#: ../../mod/settings.php:646 -msgid "Client key starts with" -msgstr "Klientnøkkel starter med" - -#: ../../mod/settings.php:647 -msgid "No name" -msgstr "Ikke noe navn" - -#: ../../mod/settings.php:648 -msgid "Remove authorization" -msgstr "Fjern tillatelse" - -#: ../../mod/settings.php:662 -msgid "No feature settings configured" -msgstr "Ingen funksjonsinnstillinger er konfigurert" - -#: ../../mod/settings.php:678 -msgid "Feature/Addon Settings" -msgstr "Funksjons-/Tilleggsinnstillinger" - -#: ../../mod/settings.php:680 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Innstillinger for den innebygde Diaspora-etterlikningen" - -#: ../../mod/settings.php:681 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Tillat ethvert Diaspora-medlem å kommentere på dine offentlige innlegg." - -#: ../../mod/settings.php:682 -msgid "Diaspora Policy Settings" -msgstr "Innstillinger for Diaspora retningslinjer" - -#: ../../mod/settings.php:683 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Stopp dine merkelapper/emneknagger/hashtagger fra å bli omdirigert til andre nettsteder" - -#: ../../mod/settings.php:707 -msgid "Account Settings" -msgstr "Kontoinnstillinger" - -#: ../../mod/settings.php:708 -msgid "Enter New Password:" -msgstr "Skriv nytt passord:" - -#: ../../mod/settings.php:709 -msgid "Confirm New Password:" -msgstr "Bekreft nytt passord:" - -#: ../../mod/settings.php:709 -msgid "Leave password fields blank unless changing" -msgstr "La passordfeltene stå blanke om det ikke skal endres" - -#: ../../mod/settings.php:711 ../../mod/settings.php:1046 -msgid "Email Address:" -msgstr "E-postadresse:" - -#: ../../mod/settings.php:712 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Slett konto" - -#: ../../mod/settings.php:713 -msgid "Remove this account including all its channels" -msgstr "Slett denne kontoen inkludert alle dens kanaler" - -#: ../../mod/settings.php:729 -msgid "Off" -msgstr "Av" - -#: ../../mod/settings.php:729 -msgid "On" -msgstr "På" - -#: ../../mod/settings.php:736 -msgid "Additional Features" -msgstr "Ekstra funksjoner" - -#: ../../mod/settings.php:760 -msgid "Connector Settings" -msgstr "Koblingsinnstillinger" - -#: ../../mod/settings.php:799 -msgid "No special theme for mobile devices" -msgstr "Ikke noe spesielt tema for mobile enheter" - -#: ../../mod/settings.php:802 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Eksperimentelt)" - -#: ../../mod/settings.php:805 ../../mod/admin.php:391 -msgid "mobile" -msgstr "mobil" - -#: ../../mod/settings.php:841 -msgid "Display Settings" -msgstr "Visningsinnstillinger" - -#: ../../mod/settings.php:847 -msgid "Display Theme:" -msgstr "Visningstema:" - -#: ../../mod/settings.php:848 -msgid "Mobile Theme:" -msgstr "Mobiltema:" - -#: ../../mod/settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Skru på brukerstyrt zoom på mobile enheter" - -#: ../../mod/settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Oppdater nettleser hvert xx sekunder" - -#: ../../mod/settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 sekunder, ikke noe maksimum" - -#: ../../mod/settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maksimalt antall samtaler å laste samtidig:" - -#: ../../mod/settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maksimum 100 elementer" - -#: ../../mod/settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Vis emoticons (smilefjes) som bilder" - -#: ../../mod/settings.php:853 -msgid "Link post titles to source" -msgstr "Lenk innleggets tittel til kilden" - -#: ../../mod/settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Systemsidens layoutbehandler - (avansert)" - -#: ../../mod/settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Bruk blogg-/listemodus på kanalsiden" - -#: ../../mod/settings.php:857 ../../mod/settings.php:858 -msgid "(comments displayed separately)" -msgstr "(kommentarer vist separat)" - -#: ../../mod/settings.php:858 -msgid "Use blog/list mode on matrix page" -msgstr "Bruk blogg-/listemodus på matrix-siden" - -#: ../../mod/settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Kanalsidens makshøyde for innhold (i pixler)" - -#: ../../mod/settings.php:859 ../../mod/settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "klikk for å utvide innhold som overstiger denne høyden" - -#: ../../mod/settings.php:860 -msgid "Matrix page max height of content (in pixels)" -msgstr "Matrix-sidens makshøyde for innholde (i pixler)" - -#: ../../mod/settings.php:894 -msgid "Nobody except yourself" -msgstr "Ingen unntatt deg selv" - -#: ../../mod/settings.php:895 -msgid "Only those you specifically allow" -msgstr "Bare de du spesifikt tillater" - -#: ../../mod/settings.php:896 -msgid "Approved connections" -msgstr "Godkjente forbindelser" - -#: ../../mod/settings.php:897 -msgid "Any connections" -msgstr "Enhver forbindelse" - -#: ../../mod/settings.php:898 -msgid "Anybody on this website" -msgstr "Enhver ved dette nettstedet" - -#: ../../mod/settings.php:899 -msgid "Anybody in this network" -msgstr "Enhver i dette nettverket" - -#: ../../mod/settings.php:900 -msgid "Anybody authenticated" -msgstr "Enhver som er autentisert" - -#: ../../mod/settings.php:901 -msgid "Anybody on the internet" -msgstr "Enhver på Internett" - -#: ../../mod/settings.php:975 -msgid "Publish your default profile in the network directory" -msgstr "Publiser din standardprofil i nettverkskatalogen" - -#: ../../mod/settings.php:980 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?" - -#: ../../mod/settings.php:984 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:989 -msgid "Your channel address is" -msgstr "Din kanaladresse er" - -#: ../../mod/settings.php:1037 -msgid "Channel Settings" -msgstr "Kanalinnstillinger" - -#: ../../mod/settings.php:1044 -msgid "Basic Settings" -msgstr "Grunninnstillinger" - -#: ../../mod/settings.php:1047 -msgid "Your Timezone:" -msgstr "Din tidssone:" - -#: ../../mod/settings.php:1048 -msgid "Default Post Location:" -msgstr "Standard plassering ved innlegg:" - -#: ../../mod/settings.php:1048 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plassering som vises på dine innlegg" - -#: ../../mod/settings.php:1049 -msgid "Use Browser Location:" -msgstr "Bruk nettleseren sin plassering:" - -#: ../../mod/settings.php:1051 -msgid "Adult Content" -msgstr "Voksent innhold" - -#: ../../mod/settings.php:1051 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)" - -#: ../../mod/settings.php:1053 -msgid "Security and Privacy Settings" -msgstr "Sikkerhets- og personverninnstillinger" - -#: ../../mod/settings.php:1055 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Dine tillatelser er allerede satt. Klikk for å se/justere." - -#: ../../mod/settings.php:1057 -msgid "Hide my online presence" -msgstr "Skjul min tilstedeværelse online" - -#: ../../mod/settings.php:1057 -msgid "Prevents displaying in your profile that you are online" -msgstr "Forhindrer visning på din profil av at du er online " - -#: ../../mod/settings.php:1059 -msgid "Simple Privacy Settings:" -msgstr "Enkle personverninnstillinger:" - -#: ../../mod/settings.php:1060 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)" - -#: ../../mod/settings.php:1061 -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)" - -#: ../../mod/settings.php:1062 -msgid "Private - default private, never open or public" -msgstr "Privat - standard er privat, aldri åpen eller offentlig" - -#: ../../mod/settings.php:1063 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blokkert - standard blokkert til/fra alle" - -#: ../../mod/settings.php:1065 -msgid "Allow others to tag your posts" -msgstr "Tillat andre å merke dine innlegg" - -#: ../../mod/settings.php:1065 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant" - -#: ../../mod/settings.php:1067 -msgid "Advanced Privacy Settings" -msgstr "Avanserte personverninnstillinger" - -#: ../../mod/settings.php:1069 -msgid "Expire other channel content after this many days" -msgstr "Annet kanal innhold utløper etter så mange dager" - -#: ../../mod/settings.php:1069 -msgid "0 or blank prevents expiration" -msgstr "0 eller blankt forhindrer utløp" - -#: ../../mod/settings.php:1070 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksimalt antall venneforespørsler per dag:" - -#: ../../mod/settings.php:1070 -msgid "May reduce spam activity" -msgstr "Kan redusere søppelpostaktivitet" - -#: ../../mod/settings.php:1071 -msgid "Default Post Permissions" -msgstr "Standard innleggstillatelser" - -#: ../../mod/settings.php:1072 ../../mod/mitem.php:161 ../../mod/mitem.php:204 -msgid "(click to open/close)" -msgstr "(klikk for å åpne/lukke)" - -#: ../../mod/settings.php:1076 -msgid "Channel permissions category:" -msgstr "Kategori med kanaltillatelser:" - -#: ../../mod/settings.php:1082 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maksimalt antall private meldinger per dag fra ukjente personer:" - -#: ../../mod/settings.php:1082 -msgid "Useful to reduce spamming" -msgstr "Nyttig for å redusere søppelpost" - -#: ../../mod/settings.php:1085 -msgid "Notification Settings" -msgstr "Varslingsinnstillinger" - -#: ../../mod/settings.php:1086 -msgid "By default post a status message when:" -msgstr "Legg inn en statusmelding når du:" - -#: ../../mod/settings.php:1087 -msgid "accepting a friend request" -msgstr "aksepterer en venneforespørsel" - -#: ../../mod/settings.php:1088 -msgid "joining a forum/community" -msgstr "blir med i et forum/miljø" - -#: ../../mod/settings.php:1089 -msgid "making an interesting profile change" -msgstr "gjør en interessant profilendring" - -#: ../../mod/settings.php:1090 -msgid "Send a notification email when:" -msgstr "Send en varsel-e-post når:" - -#: ../../mod/settings.php:1091 -msgid "You receive a connection request" -msgstr "Du har mottatt en forespørsel om forbindelse" - -#: ../../mod/settings.php:1092 -msgid "Your connections are confirmed" -msgstr "Dine forbindelser er bekreftet" - -#: ../../mod/settings.php:1093 -msgid "Someone writes on your profile wall" -msgstr "Noen skriver på din profilvegg" - -#: ../../mod/settings.php:1094 -msgid "Someone writes a followup comment" -msgstr "Noen skriver en oppfølgende kommentar" - -#: ../../mod/settings.php:1095 -msgid "You receive a private message" -msgstr "Du mottar en privat melding" - -#: ../../mod/settings.php:1096 -msgid "You receive a friend suggestion" -msgstr "Du mottok et venneforslag" - -#: ../../mod/settings.php:1097 -msgid "You are tagged in a post" -msgstr "Du merkes i et innlegg" - -#: ../../mod/settings.php:1098 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du ble prikket/oppildnet/og så vider i et innlegg" - -#: ../../mod/settings.php:1101 -msgid "Show visual notifications including:" -msgstr "Vis visuelle varslinger om:" - -#: ../../mod/settings.php:1103 -msgid "Unseen matrix activity" -msgstr "Usett matrixaktivitet" - -#: ../../mod/settings.php:1104 -msgid "Unseen channel activity" -msgstr "Usett kanalaktivitet" - -#: ../../mod/settings.php:1105 -msgid "Unseen private messages" -msgstr "Usette private meldinger" - -#: ../../mod/settings.php:1105 ../../mod/settings.php:1110 -#: ../../mod/settings.php:1111 ../../mod/settings.php:1112 -msgid "Recommended" -msgstr "Anbefalt" - -#: ../../mod/settings.php:1106 -msgid "Upcoming events" -msgstr "Kommende hendelser" - -#: ../../mod/settings.php:1107 -msgid "Events today" -msgstr "Hendelser idag" - -#: ../../mod/settings.php:1108 -msgid "Upcoming birthdays" -msgstr "Kommende fødselsdager" - -#: ../../mod/settings.php:1108 -msgid "Not available in all themes" -msgstr "Ikke tilgjengelig i alle temaer" - -#: ../../mod/settings.php:1109 -msgid "System (personal) notifications" -msgstr "System (personlige) varslinger" - -#: ../../mod/settings.php:1110 -msgid "System info messages" -msgstr "System infomeldinger" - -#: ../../mod/settings.php:1111 -msgid "System critical alerts" -msgstr "System kritiske varsel" - -#: ../../mod/settings.php:1112 -msgid "New connections" -msgstr "Nye forbindelser" - -#: ../../mod/settings.php:1113 -msgid "System Registrations" -msgstr "Systemregistreringer" - -#: ../../mod/settings.php:1114 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler" - -#: ../../mod/settings.php:1116 -msgid "Notify me of events this many days in advance" -msgstr "Varsle meg om hendelser dette antall dager på forhånd" - -#: ../../mod/settings.php:1116 -msgid "Must be greater than 0" -msgstr "Må være større enn 0" - -#: ../../mod/settings.php:1118 -msgid "Advanced Account/Page Type Settings" -msgstr "Avanserte innstillinger for konto/sidetype" - -#: ../../mod/settings.php:1119 -msgid "Change the behaviour of this account for special situations" -msgstr "Endre oppførselen til denne kontoen i spesielle situasjoner" - -#: ../../mod/settings.php:1122 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!" - -#: ../../mod/settings.php:1123 -msgid "Miscellaneous Settings" -msgstr "Diverse innstillinger" - -#: ../../mod/settings.php:1125 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny som kan vises på dine kanalsider" - -#: ../../mod/settings.php:1126 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Fjern kanal" - -#: ../../mod/settings.php:1127 -msgid "Remove this channel." -msgstr "Fjern denne kanalen." - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan oppslag" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Slå opp xchan som begynner med (eller webbie):" - -#: ../../mod/xchan.php:37 ../../mod/menu.php:136 ../../mod/mitem.php:111 -msgid "Not found." -msgstr "Ikke funnet." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Tillat programforbindelse" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gå tilbake til din app og legg inn denne sikkerhetskoden:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Vennligst logg inn for å fortsette." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Byggeklossens navn" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal lagt til." - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Merkelapp fjernet" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Fjern merkelapp fra element" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Velg merkelapp å fjerne:" - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:875 -msgid "Remove" -msgstr "Fjern" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortsett" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Premiumkanal-oppsett" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Slå på restriksjoner for forbindelse med premiumkanal" - -#: ../../mod/connect.php:88 -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." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -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:" - -#: ../../mod/connect.php:91 -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:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -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." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Ingen spesifikke instruksjoner er gitt av kanaleieren.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Begrenset kanal eller premiumkanal" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profiltreff" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Ingen nøkkelord å sammenlikne. Vennligst legg til nøkkelord til din standardprofil." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "er interessert i:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Ingen treff" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elementet er ikke tilgjengelig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Henting av URL gir følgende feil: %1$s" - -#: ../../mod/home.php:48 -msgid "Hubzilla - "The Network"" -msgstr "Hubzilla - "Nettverket"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Velkommen til %s" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bildet ble lastet opp, men beskjæring av bildet mislyktes." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Endring av bildestørrelse mislyktes." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildet overstiger størrelsesbegrensningen på %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kan ikke behandle bildet." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Bildet er ikke tilgjengelig." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Last opp fil:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Velg en profil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Last opp profilbilde:" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "hopp over dette steget" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "velg et bilde fra dine fotoalbum" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Beskjær bildet" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Vennligst juster bildebeskjæringen for optimal visning." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Avslutt redigering" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Opplasting av bildet var vellykket." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Opplasting av bildet mislyktes." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Forminsking av bildet [%s] mislyktes." - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ugyldig element." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanalen ble ikke funnet." - -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:102 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Siden ikke funnet." - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Liker/Liker ikke" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Denne handlingen er begrenset til medlemmer." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your Hubzilla ID or register as a new Redmatrix.member to continue." -msgstr "Vennligst logg inn med din Hubzilla ID eller registrer deg som et nytt Redmatrix.medlem for å fortsette" - -#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166 -msgid "Invalid request." -msgstr "Ugyldig forespørsel." - -#: ../../mod/like.php:143 -msgid "thing" -msgstr "ting" - -#: ../../mod/like.php:189 -msgid "Channel unavailable." -msgstr "Kanalen er utilgjengelig." - -#: ../../mod/like.php:228 -msgid "Previous action reversed." -msgstr "Forrige handling er omgjort." - -#: ../../mod/like.php:387 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s er enig med %2$s sin %3$s" - -#: ../../mod/like.php:389 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s er ikke enig med %2$s sin %3$s" - -#: ../../mod/like.php:391 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s avstår fra å mene noe om %2$s sin %3$s" - -#: ../../mod/like.php:393 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s deltar på %2$ss %3$s" - -#: ../../mod/like.php:395 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s deltar ikke på %2$ss %3$s" - -#: ../../mod/like.php:397 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s deltar kanskje på %2$ss %3$s" - -#: ../../mod/like.php:481 -msgid "Action completed." -msgstr "Handling ferdig." - -#: ../../mod/like.php:482 -msgid "Thank you." -msgstr "Tusen takk." - -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Hendelsen kan ikke slutte før den starter." - -#: ../../mod/events.php:89 ../../mod/events.php:98 ../../mod/events.php:116 -msgid "Unable to generate preview." -msgstr "Klarer ikke å lage forhåndsvisning." - -#: ../../mod/events.php:96 -msgid "Event title and start time are required." -msgstr "Hendelsestittel og starttidspunkt er påkrevd." - -#: ../../mod/events.php:114 -msgid "Event not found." -msgstr "Hendelsen ble ikke funnet." - -#: ../../mod/events.php:396 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:418 -msgid "Edit event" -msgstr "Endre hendelse" - -#: ../../mod/events.php:419 -msgid "Delete event" -msgstr "Slett hendelse" - -#: ../../mod/events.php:473 -msgid "Create New Event" -msgstr "Lag ny hendelse" - -#: ../../mod/events.php:474 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Forrige" - -#: ../../mod/events.php:475 ../../mod/setup.php:265 ../../mod/photos.php:836 -msgid "Next" -msgstr "Neste" - -#: ../../mod/events.php:476 -msgid "Export" -msgstr "Eksport" - -#: ../../mod/events.php:504 -msgid "Event removed" -msgstr "Hendelse slettet" - -#: ../../mod/events.php:507 -msgid "Failed to remove event" -msgstr "Mislyktes med å slette hendelse" - -#: ../../mod/events.php:625 -msgid "Event details" -msgstr "Hendelsesdetaljer" - -#: ../../mod/events.php:626 -msgid "Starting date and Title are required." -msgstr "Startdato og Tittel er påkrevd." - -#: ../../mod/events.php:628 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparert liste)" - -#: ../../mod/events.php:630 -msgid "Event Starts:" -msgstr "Hendelsen starter:" - -#: ../../mod/events.php:637 -msgid "Finish date/time is not known or not relevant" -msgstr "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant" - -#: ../../mod/events.php:639 -msgid "Event Finishes:" -msgstr "Hendelsen slutter:" - -#: ../../mod/events.php:641 ../../mod/events.php:642 -msgid "Adjust for viewer timezone" -msgstr "Juster i forhold til tilskuerens tidssone" - -#: ../../mod/events.php:641 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager." - -#: ../../mod/events.php:643 -msgid "Description:" -msgstr "Beskrivelse:" - -#: ../../mod/events.php:647 -msgid "Title:" -msgstr "Tittel:" - -#: ../../mod/events.php:649 -msgid "Share this event" -msgstr "Del denne hendelsen" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s følger %2$s sin %3$s" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Offentlige nettsteder" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Hubzilla. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Nettstedene på listen tillater offentlig registrering i Hubzilla. Alle nettsteder i matrix er forbundet så medlemskap på enhver av dem formidler medlemskap i hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene kan gi tilleggsopplysninger." - -#: ../../mod/pubsites.php:25 -msgid "Rate this hub" -msgstr "Vurder denne hubben" - -#: ../../mod/pubsites.php:26 -msgid "Site URL" -msgstr "Nettstedets URL" - -#: ../../mod/pubsites.php:26 -msgid "Access Type" -msgstr "Tilgangstype" - -#: ../../mod/pubsites.php:26 -msgid "Registration Policy" -msgstr "Retningslinjer for registrering" - -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Plassering" - -#: ../../mod/pubsites.php:26 -msgid "View hub ratings" -msgstr "Vis vurderinger av hubben" - -#: ../../mod/pubsites.php:30 -msgid "Rate" -msgstr "Vurder" - -#: ../../mod/pubsites.php:31 -msgid "View ratings" -msgstr "Vis vurderinger" - -#: ../../mod/connedit.php:75 ../../mod/connections.php:37 -msgid "Could not access contact record." -msgstr "Fikk ikke tilgang til kontaktinformasjonen." - -#: ../../mod/connedit.php:99 ../../mod/connections.php:51 -msgid "Could not locate selected profile." -msgstr "Fant ikke valgt profil." - -#: ../../mod/connedit.php:204 ../../mod/connections.php:94 -msgid "Connection updated." -msgstr "Forbindelsen er oppdatert." - -#: ../../mod/connedit.php:206 ../../mod/connections.php:96 -msgid "Failed to update connection record." -msgstr "Mislyktes med å oppdatere forbindelsesinformasjonen." - -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "er nå forbundet til" - -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Fikk ikke tilgang til informasjonen i adresseboken." - -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig." - -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanalen er ikke blokkert lenger" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanalen har blitt blokkert" - -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." -msgstr "Ikke i stand til å angi parametre for adresseboken." - -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanalen er ikke lenger ignorert" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanalen blir ignorert" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanalen er ikke lenger arkivert" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanalen er arkivert" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanalen er ikke lenger skjult" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanalen er blitt skjult" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanalen har blitt godkjent" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Kanalen er ikke lenger godkjent" - -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Forbindelsen har blitt fjernet." - -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "Vis %s sin profil" - -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Oppfrisk tillatelser" - -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Hent oppdaterte tillatelser" - -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Nylig aktivitet" - -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Vis nylige innlegg og kommentarer" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:818 -msgid "Unblock" -msgstr "Ikke blokker lenger" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:817 -msgid "Block" -msgstr "Blokker" - -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Ikke ignorer lenger" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen" - -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Ikke arkiver lenger" - -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Arkiver" - -#: ../../mod/connedit.php:523 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold" - -#: ../../mod/connedit.php:526 -msgid "Unhide" -msgstr "Ikke skjul lenger" - -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Skjul" - -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser" - -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Slett denne forbindelsen" - -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Godta denne forbindelsen" - -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Godta denne forbindelsen for å tillate kommunikasjon" - -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Forbindelser: innstillinger for %s" - -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Bruk disse tillatelsene automatisk" - -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Bruk tillatelsene angitt på denne siden på alle nye forbindelser." - -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Flytt for å justere din grad av vennskap" - -#: ../../mod/connedit.php:637 ../../mod/rate.php:161 -msgid "Rating (this information is public)" -msgstr "Vurdering (denne informasjonen er offentlig)" - -#: ../../mod/connedit.php:638 ../../mod/rate.php:162 -msgid "Optionally explain your rating (this information is public)" -msgstr "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)" - -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Standard tillatelser for din kanaltype har (nettopp) blitt valgt. De har ikke blitt sendt inn og lagret ennå. Vennligst se over tillatelsene på denne siden og gjør eventuelle ønskede endringer nå. Denne nye forbindelsen kan muligens ikke klare å kommunisere med deg inntil du sender inn denne siden, som vil installere og ta i bruk de valgte tillatelsene." - -#: ../../mod/connedit.php:648 -msgid "inherited" -msgstr "arvet" - -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Forbindelsen har ingen individuelle tillatelser!" - -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Dette kan være riktig basert på dine personverninnstillinger, men kanskje du bør se over \"Avanserte tillatelser\"." - -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Profilens synlighet" - -#: ../../mod/connedit.php:655 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Vennligst velg profilen du ønsker å vise %s når profilen din ses på en sikret måte. " - -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformasjon / Merknader" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Endre kontaktmerknader" - -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deres innstillinger" - -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Mine innstillinger" - -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Standard tillatelser for denne kanaltypen har (nettopp) blitt valgt. De har ikke blitt lagret og det er for øyeblikket ingen lagrede standard tillatelser. Vennligst se over/endre de valgte innstillingene og klikk [Send inn] for å lagre." - -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Tøm/Skru av Automatiske tillatelser" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forummedlemmer" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Talerstol" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Full deling (typiske tillatelser i sosiale nettverk)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Forsiktig deling" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Bare følg" - -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuelle tillatelser" - -#: ../../mod/connedit.php:670 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Å endre arvede innstillinger på denne siden vil ikke ha noen effekt." - -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Avanserte tillatelser" - -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Enkle tillatelser (velg en og lagre)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Besøk %s sin profil - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Blokker/Ikke blokker kontakt" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Ignorer kontakt" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "Reparer URL-innstillinger" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Vis samtaler" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Slett kontakt" - -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Siste oppdatering:" - -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Oppdater offentlige innlegg" - -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Oppdater nå" - -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "For øyeblikket blokkert" - -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "For øyeblikket ignorert" - -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "For øyeblikket arkivert" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "For øyeblikket ventende" - -#: ../../mod/dav.php:121 -msgid "Hubzilla channel" -msgstr "Hubzilla-kanal" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Samling opprettet." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunne ikke lage samling." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Samlingen er oppdatert." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Lag en samling med kanaler." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Navn på samling:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmer er synlig for andre kanaler" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Samling fjernet." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Ikke i stand til å fjerne samlingen." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Samlingsbehandler" - -#: ../../mod/group.php:196 ../../mod/bulksetclose.php:89 -msgid "Members" -msgstr "Medlemmer" - -#: ../../mod/group.php:198 ../../mod/bulksetclose.php:91 -msgid "All Connected Channels" -msgstr "Alle tilkoblede kanaler" - -#: ../../mod/group.php:233 ../../mod/bulksetclose.php:126 -msgid "Click on a channel to add or remove." -msgstr "Klikk på en kanal for å legge til eller fjerne." - -#: ../../mod/siteinfo.php:106 -#, php-format -msgid "Version %s" -msgstr "Versjon %s" - -#: ../../mod/siteinfo.php:127 -msgid "Installed plugins/addons/apps:" -msgstr "Installerte tilleggsfunksjoner/tillegg/apper:" - -#: ../../mod/siteinfo.php:140 -msgid "No installed plugins/addons/apps" -msgstr "Ingen installerte tilleggsfunksjoner/tillegg/apper" - -#: ../../mod/siteinfo.php:149 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:150 -msgid "" -"This is a hub of the Hubzilla - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dette er en hub i Hubzilla - et globalt kooperativt nettverk av desentraliserte personvernforsterkede nettsteder." - -#: ../../mod/siteinfo.php:152 -msgid "Tag: " -msgstr "Merkelapp:" - -#: ../../mod/siteinfo.php:154 -msgid "Last background fetch: " -msgstr "Siste innhenting i bakgrunnen:" - -#: ../../mod/siteinfo.php:157 -msgid "Running at web location" -msgstr "Kjører på webplasseringen" - -#: ../../mod/siteinfo.php:158 -msgid "" -"Please visit Redmatrix.me to learn more" -" about the Hubzilla." -msgstr "Vennligst besøk Redmatrix.me for å lære mer om Hubzilla." - -#: ../../mod/siteinfo.php:159 -msgid "Bug reports and issues: please visit" -msgstr "Feilmeldinger og feilretting: vennligst besøk" - -#: ../../mod/siteinfo.php:162 -msgid "" -"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " -"com" -msgstr "Forslag, ros og så videre - vennligst e-post \"hubzilla\" hos librelist - punktum com" - -#: ../../mod/siteinfo.php:164 -msgid "Site Administrators" -msgstr "Nettstedsadministratorer" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hjelp:" - -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Ikke funnet" - -#: ../../mod/setup.php:166 -msgid "Hubzilla Server - Setup" -msgstr "Hubzilla tjener - oppsett" - -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Fikk ikke kontakt med databasen." - -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS." - -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Kunne ikke lage tabellen." - -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Databasen til ditt nettsted har blitt installert." - -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient." - -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Vennligst les filen \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Systemsjekk" - -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Sjekk igjen" - -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Databaseforbindelse" - -#: ../../mod/setup.php:290 -msgid "" -"In order to install Hubzilla we need to know how to connect to your " -"database." -msgstr "For å installere Hubzilla må du oppgi hvordan din database kan kontaktes." - -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene." - -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter." - -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Navn på databasetjener" - -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Standard er localhost" - -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Databaseport" - -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Kommunikasjonsportnummer - bruk 0 for standard" - -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Database innloggingsnavn" - -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Database innloggingspassord" - -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Databasenavn" - -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Databasetype" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "E-postadressen til administrator ved nettstedet" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet." - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Nettstedets URL" - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Vennligst bruk SSL (https) URL hvis tilgjengelig." - -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Vennligst velg en standard tidssone for ditt nettsted" - -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Nettstedets innstillinger" - -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH)." - -#: ../../mod/setup.php:396 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron." - -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "PHP-kjørefilens sti" - -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen." - -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "Kommandolinje PHP" - -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd." - -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "Dette er påkrevd for at meldingslevering skal virke." - -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler" - -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Lag krypteringsnøkler" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "libCurl PHP-modul" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP-modul" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP-modul" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "MySQLi eller Postgres PHP modul" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "mb_string PHP-modul" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP-modul" - -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite-modul" - -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert." - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini" - -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Feil: libCURL PHP-modul er påkrevd, men er ikke installert." - -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert." - -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Feil: openssl PHP-modul er påkrevd, men er ikke installert." - -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert." - -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Feil: mb_string PHP-modul er påkrevd, men er ikke installert." - -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert." - -#: ../../mod/setup.php:508 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til." - -#: ../../mod/setup.php:509 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan." - -#: ../../mod/setup.php:510 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red." - -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner." - -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php kan skrives til" - -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen." - -#: ../../mod/setup.php:525 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe." - -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen." - -#: ../../mod/setup.php:527 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder." - -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s kan skrives til" - -#: ../../mod/setup.php:543 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe." - -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "lageret kan skrives til" - -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet." - -#: ../../mod/setup.php:578 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!" - -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub." - -#: ../../mod/setup.php:580 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer." - -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet." - -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere." - -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL sertifikat-kontroll" - -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:" - -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "URL rewrite virker" - -#: ../../mod/setup.php:602 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener." - -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Feil oppstod under opprettelsen av databasetabeller." - -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Hva gjenstår

" - -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren." - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ingen kanal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Felles forbindelser" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Ingen forbindelser felles." - -#: ../../mod/id.php:8 -msgid "First Name" -msgstr "Fornavn" - -#: ../../mod/id.php:9 -msgid "Last Name" -msgstr "Etternavn" - -#: ../../mod/id.php:10 -msgid "Nickname" -msgstr "Kallenavn" - -#: ../../mod/id.php:11 -msgid "Full Name" -msgstr "Fullt navn" - -#: ../../mod/id.php:17 -msgid "Profile Photo 16px" -msgstr "Profilbilde 16px" - -#: ../../mod/id.php:18 -msgid "Profile Photo 32px" -msgstr "Profilbilde 32px" - -#: ../../mod/id.php:19 -msgid "Profile Photo 48px" -msgstr "Profilbilde 48px" - -#: ../../mod/id.php:20 -msgid "Profile Photo 64px" -msgstr "Profilbilde 64px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 80px" -msgstr "Profilbilde 80px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 128px" -msgstr "Profilbilde 128px" - -#: ../../mod/id.php:23 -msgid "Timezone" -msgstr "Tidssone" - -#: ../../mod/id.php:24 -msgid "Homepage URL" -msgstr "Hjemmeside URL" - -#: ../../mod/id.php:26 -msgid "Birth Year" -msgstr "Fødselsår" - -#: ../../mod/id.php:27 -msgid "Birth Month" -msgstr "Fødselsmåne" - -#: ../../mod/id.php:28 -msgid "Birth Day" -msgstr "Fødselsdag" - -#: ../../mod/id.php:29 -msgid "Birthdate" -msgstr "Fødselsdato" - -#: ../../mod/id.php:30 ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Kjønn" - -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blokkert" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignorert" - -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Skjult" - -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Arkivert" - -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alle" - -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Foreslå nye forbindelser" - -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nye forbindelser" - -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Vis ventende (nye) forbindelser" - -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle forbindelser" - -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Vis alle forbindelser" - -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Ikke blokkert lenger" - -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Vis bare forbindelser som ikke er blokkert" - -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Vis bare forbindelser som er blokkert" - -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Vis bare ignorerte forbindelser" - -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Vis bare arkiverte forbindelser" - -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Vis bare skjulte forbindelser" - -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Endre forbindelse" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Søk blant dine forbindelser" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Fant:" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "nettside" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "byggekloss" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%s element installert" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s merket %3$s til %2$s med %4$s" - -#: ../../mod/cloud.php:120 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "Hubzilla - gjester: brukernavn: {din e-postadresse}, passord: +++" - -#: ../../mod/item.php:165 -msgid "Unable to locate original post." -msgstr "Ikke i stand til å finne opprinnelig innlegg." - -#: ../../mod/item.php:424 -msgid "Empty post discarded." -msgstr "Tomt innlegg forkastet." - -#: ../../mod/item.php:466 -msgid "Executable content type not permitted to this channel." -msgstr "Kjørbar innholdstype er ikke tillat for denne kanalen." - -#: ../../mod/item.php:865 -msgid "System error. Post not saved." -msgstr "Systemfeil. Innlegg ble ikke lagret." - -#: ../../mod/item.php:1083 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nådd din grense på %1$.0f startinnlegg." - -#: ../../mod/item.php:1089 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nådd din grense på %1$.0f websider." - -#: ../../mod/search.php:13 ../../mod/display.php:9 ../../mod/ratings.php:82 -#: ../../mod/directory.php:47 ../../mod/viewconnections.php:17 -#: ../../mod/photos.php:429 -msgid "Public access denied." -msgstr "Offentlig tilgang avvist." - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Tingen er oppdatert" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Objektlagring: mislyktes" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Ting lagt til" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Vis ting" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "element ble ikke funnet." - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Endre ting" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Velg en profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Legg inn en aktivitet" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sender bare til seere av den aktuelle profilen" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Navn på ting for eksempel noe" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL til ting (valgfritt)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL til bilde av ting (valgfritt)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Legg til ting i din profil" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Borte" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Velg en bokmerkemappe" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Lagre bokmerke" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL-en til bokmerket" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beskrivelse" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Eller skriv nytt navn på bokmerkemappe" - -#: ../../mod/notify.php:53 ../../mod/notifications.php:94 -msgid "No more system notifications." -msgstr "Ingen flere systemvarsler." - -#: ../../mod/notify.php:57 ../../mod/notifications.php:98 -msgid "System Notifications" -msgstr "Systemvarsler" - -#: ../../mod/acl.php:231 -msgid "network" -msgstr "nettverk" - -#: ../../mod/acl.php:241 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout er oppdatert." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Endre beskrivelsen av systemsiden" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layouten ble ikke funnet." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnavn:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layout-hjelp" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- velg -" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjenesteplan tillater bare %d kanaler." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Ingenting å importere." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Ikke i stand til å laste ned data fra gammel tjener" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Importert fil er tom." - -#: ../../mod/import.php:106 -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." - -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Klarte ikke å lage en unik kanaladresse. Import mislyktes." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Kanalkloning mislyktes. Import mislyktes." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Klonet kanal ble ikke funnet. Import mislyktes." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import ferdig." - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Du må være innlogget for å bruke denne funksjonen." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Importer kanal" - -#: ../../mod/import.php:493 -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. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Bruk dette skjemaet til å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente kanalidentiteten fra den gamle tjeneren/hubben via nettverket eller bruke en eksportert fil. Bare identiteten og forbindelser/relasjoner vil bli importert. Importering av innhold er ennå ikke tilgjengelig." - -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Fil som skal lastes opp" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Eller oppgi detaljene fra den gamle tjeneren/hub-en" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamle identitetsadresse (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Din gamle innloggings e-postadresse" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Ditt gamle innloggingspassord" - -#: ../../mod/import.php:499 -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." - -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Gjør dette nettstedet til min primære plassering" - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importerer eksisterende innlegg hvis mulig." - -#: ../../mod/editlayout.php:78 ../../mod/editwebpage.php:77 -#: ../../mod/editpost.php:20 ../../mod/editblock.php:79 -#: ../../mod/editblock.php:95 -msgid "Item not found" -msgstr "Elementet ble ikke funnet." - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Endre layout" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Slett layout?" - -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/editpost.php:122 ../../mod/editblock.php:152 -msgid "Insert YouTube video" -msgstr "Sett inn YouTube-video" - -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:184 -#: ../../mod/editpost.php:123 ../../mod/editblock.php:153 -msgid "Insert Vorbis [.ogg] video" -msgstr "Sett inn Vorbis [.ogg] video" - -#: ../../mod/editlayout.php:150 ../../mod/editwebpage.php:185 -#: ../../mod/editpost.php:124 ../../mod/editblock.php:154 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Legg i" - -#: ../../mod/editlayout.php:183 -msgid "Delete Layout" -msgstr "Slett layout" - -#: ../../mod/chat.php:19 ../../mod/channel.php:25 -msgid "You must be logged in to see this page." -msgstr "Du må være innloegget for å se denne siden." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Rommet ble ikke funnet" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Forlat rom" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Slett dette rommet" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Jeg er borte akkurat nå" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Jeg er online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Bokmerk dette rommet" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nytt chatrom" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Navn på chatrom" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$s sine chatrom" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Endre webside" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Slett webside?" - -#: ../../mod/editwebpage.php:220 -msgid "Delete Webpage" -msgstr "Slett webside" - -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:47 -msgid "This site is not a directory server" -msgstr "Dette nettstedet er ikke en katalogtjener" - -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Denne katalogtjeneren krever en tilgangsnøkkel (access token)" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Ingen gyldig konto funnet." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Nettstedsmedlem (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Forespurt om å tilbakestille passord hos %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes." - -#: ../../mod/lostpass.php:85 ../../boot.php:1560 -msgid "Password Reset" -msgstr "Tilbakestill passord" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Ditt passord har blitt tilbakestilt som forespurt." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Ditt nye passord er" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Lagre eller kopier ditt nye passord, og deretter kan du" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klikke her for å logge inn" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt passord kan endres på siden Innstillinger etter vellykket innlogging." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt passord er endret hos %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Glemt passord ditt?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Skriv e-postadressen din og send inn for å tilbakestille passordet ditt. Sjekk deretter din e-post for videre instruksjoner." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-postadresse" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Tilbakestill" - -#: ../../mod/rate.php:157 -msgid "Website:" -msgstr "Nettsted:" - -#: ../../mod/rate.php:160 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Elementet kan ikke endres" - -#: ../../mod/editpost.php:42 ../../mod/rpost.php:98 -msgid "Edit post" -msgstr "Endre innlegg" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Slett element?" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Grensen for totalt antall invitasjoner er overskredet." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : ikke en gyldig e-postadresse." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Bli med oss på Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : meldingslevering feilet." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d melding sendt." -msgstr[1] "%d meldinger sendt." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har ikke flere invitasjoner tilgjengelig" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Send invitasjoner" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Skriv e-postadresser, en per linje:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Din melding:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on Hubzilla." -msgstr "Du er velkommen til å bli med i mitt fellesskap på Hubzilla." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Du må oppgi denne invitasjonskoden:" - -#: ../../mod/invite.php:135 -msgid "1. Register at any Hubzilla location (they are all inter-connected)" -msgstr "1. Registrer ved enhver Hubzilla-lokasjon (de er alle forbundet med hverandre)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my Hubzilla network address into the site searchbar." -msgstr "2. Skriv inn min Hubzilla-adresse i nettstedets søkefelt." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "eller besøk" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klikk [Forbindelse]" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Plassering er ikke funnet." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Primær plassering kan ikke fjernes." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Ingen plasseringer ble funnet." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Håndter kanalplasseringer" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Plassering (adresse)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Hovedplassering" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Slett plassering" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Mislyktes med å lage kilde. Ingen kanal er valgt." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Kilden er laget." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Kilden er oppdatert." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Håndtere eksterne innholdskilder til din kanal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Ny kilde" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Bare importer innhold med disse ordene (ett ord per linje)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "La stå tomt for å importere alt offentlig innhold" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanalnavn" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Kilden ble ikke funnet." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Endre kilde" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Slett kilde" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Kilden er fjernet" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Ikke i stand til å fjerne kilde." - -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Menyen er oppdatert." - -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Ikke i stand til å oppdatere meny." - -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Meny laget." - -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Ikke i stand til å lage meny." - -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Håndtere menyer" - -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Slett" - -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Bokmerker tillatt" - -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Lag en ny meny" - -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Slett denne menyen" - -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Endre menyinnholdet" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Endre denne menyen" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Ny meny" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menynavn" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Må være unik, ses bare av deg" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menytittel" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menytittelen andre ser" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Tillat bokmerker" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyen kan brukes til å lagre lagrede bokmerker" - -#: ../../mod/menu.php:108 ../../mod/mitem.php:24 -msgid "Menu not found." -msgstr "Menyen ble ikke funnet." - -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Meny slettet." - -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menyen kunne ikke bli slettet." - -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Endre meny" - -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Legg til eller fjern punkter i denne menyen" - -#: ../../mod/menu.php:130 ../../mod/mitem.php:213 -msgid "Modify" -msgstr "Endre" - -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Tillatelse avvist." - -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Filen ble ikke funnet." - -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Endre filtillatelser" - -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Angi/endre tillatelser" - -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Inkluder alle filer og undermapper" - -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Gå tilbake til filoversikten" - -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopier og lim inn denne koden for å legge til filen i et innlegg" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopier og lim inn denne URL-en for å lenke til filen fra en webside" - -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Legg ved denne filen i et nytt innlegg" - -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "Vis URLen til denne filen" - -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Ikke vis i Delt med meg-mappen til dine forbindelser" - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakten ble ikke funnet." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Venneforespørsel sendt." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Foreslå venner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Foreslå en venn for %s" - -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Hubben ble ikke funnet." - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Prikke/oppildne" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "prikke, oppildne eller gjør andre ting med noen" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Mottaker" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Velg hva du ønsker å gjøre med mottakeren" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Gjør dette innlegget privat" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ugyldig profil-identifikator." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Endre profilsynlighet" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klikk på en kontakt for å legge til eller fjerne." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Synlig for" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Ekstern personverninformasjon er ikke tilgjengelig." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Synlig for:" - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profilen ble ikke funnet." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profilen er slettet." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Ny profil opprettet." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profilen er utilgjengelig for klonen." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Profilen er utilgjengelig for eksport." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profilnavn er påkrevd." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Sivilstand" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Liker" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Liker ikke" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Arbeid/sysselsetting" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Politiske synspunkter" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Seksuelle preferanser" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Hjemmeside" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Interesser" - -#: ../../mod/profiles.php:447 ../../mod/admin.php:950 -msgid "Address" -msgstr "Adresse" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profilen er oppdatert." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Skjul kontakt-/vennelisten din fra de som ser på denne profilen?" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Endre profildetaljer" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Vis denne profilen" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Endre profilbilde" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Lag en ny profil ved å bruke disse innstillingene" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Klon denne profilen" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Slett denne profilen" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importer profil fra fil" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Eksporter profil til fil" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Profilnavn:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Ditt fulle navn:" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Tittel/Beskrivelse:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Ditt kjønn:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Fødselsdag:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Gateadresse:" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Sted/By:" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Postnummer/ZIP-kode:" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Region/fylke:" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Sivilstand:" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Hvem: (hvis det er aktuelt) " - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Eksempler: kari123, Kari Villiamsen, kari@example.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Siden [dato]:" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Hjemmeside URL:" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Religiøse synspunkter:" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Nøkkelord:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Eksempel: fisking fotografering programvare" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Brukt i katalogoppføringer" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Fortell oss om deg selv..." - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Hobbier/Interesser" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformasjon og sosiale nettverk" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Mine andre kanaler" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Musikkinteresser" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Bøker, litteratur" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "TV/fjernsyn" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/kultur/underholdning" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Kjærlighet/romantikk" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Arbeid/sysselsetting" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Skole/utdanning" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Dette er din standardprofil." - -#: ../../mod/profiles.php:728 ../../mod/directory.php:207 -msgid "Age: " -msgstr "Alder:" - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Endre/håndter profiler" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Legg til profilting" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Inkluder ønskverdige objekter i din profil" - -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Ingen vurderinger" - -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Vurderinger" - -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Vurdering:" - -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Nettsted:" - -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Beskrivelse:" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID protokollfeil. Ingen ID ble returnert." - -#: ../../mod/openid.php:72 ../../mod/openid.php:180 ../../mod/post.php:290 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Velkommen %s. Ekstern autentisering er vellykket." - -#: ../../mod/directory.php:213 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d vurdering" -msgstr[1] "%d vurderinger" - -#: ../../mod/directory.php:225 -msgid "Gender: " -msgstr "Kjønn:" - -#: ../../mod/directory.php:227 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/directory.php:229 -msgid "Homepage: " -msgstr "Hjemmeside:" - -#: ../../mod/directory.php:232 -msgid "Hometown: " -msgstr "Hjemby:" - -#: ../../mod/directory.php:234 -msgid "About: " -msgstr "Om:" - -#: ../../mod/directory.php:292 -msgid "Public Forum:" -msgstr "Offentlig forum:" - -#: ../../mod/directory.php:295 -msgid "Keywords: " -msgstr "Nøkkelord:" - -#: ../../mod/directory.php:350 -msgid "Finding:" -msgstr "Finner:" - -#: ../../mod/directory.php:355 -msgid "next page" -msgstr "Neste side" - -#: ../../mod/directory.php:355 -msgid "previous page" -msgstr "Forrige side" - -#: ../../mod/directory.php:372 -msgid "No entries (some entries may be hidden)." -msgstr "Ingen oppføringer (noen oppføringer kan være skjult)." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Eksporter kanal" - -#: ../../mod/uexport.php:35 -msgid "" -"Export your basic channel information to a small 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 hub, but\tdoes not contain your " -"content." -msgstr "Eksporter grunnleggende informasjon om kanalen din til en liten fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet." - -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Eksporter innhold" - -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Eksporter din kanalinformasjon og alt innholdet til en sikkerhetskopi som JSON-fil. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og alt innholdet ditt, men er generelt ikke egnet for å importere en kanal til en ny hub, fordi denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner." - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Ingen forbindelser." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besøk %s sin profil [%s]" - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "Målets signatur er ugyldig" - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Temainnstillinger er oppdatert." - -#: ../../mod/admin.php:93 ../../mod/admin.php:440 -msgid "Site" -msgstr "Nettsted" - -#: ../../mod/admin.php:94 -msgid "Accounts" -msgstr "Kontoer" - -#: ../../mod/admin.php:95 ../../mod/admin.php:942 -msgid "Channels" -msgstr "Kanaler" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1033 ../../mod/admin.php:1073 -msgid "Plugins" -msgstr "Tilleggsfunksjoner" - -#: ../../mod/admin.php:97 ../../mod/admin.php:1233 ../../mod/admin.php:1268 -msgid "Themes" -msgstr "Temaer" - -#: ../../mod/admin.php:98 -msgid "Inspect queue" -msgstr "Inspiser kø" - -#: ../../mod/admin.php:100 -msgid "Profile Config" -msgstr "Profilinnstillinger" - -#: ../../mod/admin.php:101 -msgid "DB updates" -msgstr "Databaseoppdateringer" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1351 -msgid "Logs" -msgstr "Logger" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Tilleggsfunksjoner" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Brukerregistreringer som venter på bekreftelse" - -#: ../../mod/admin.php:200 -msgid "# Accounts" -msgstr "# Kontoer" - -#: ../../mod/admin.php:201 -msgid "# blocked accounts" -msgstr "# blokkerte kontoer" - -#: ../../mod/admin.php:202 -msgid "# expired accounts" -msgstr "# utgåtte kontoer" - -#: ../../mod/admin.php:203 -msgid "# expiring accounts" -msgstr "# kontoer som holder på å gå ut" - -#: ../../mod/admin.php:216 -msgid "# Channels" -msgstr "# Kanaler" - -#: ../../mod/admin.php:217 -msgid "# primary" -msgstr "# hoved" - -#: ../../mod/admin.php:218 -msgid "# clones" -msgstr "# kloner" - -#: ../../mod/admin.php:224 -msgid "Message queues" -msgstr "Meldingskøer" - -#: ../../mod/admin.php:240 ../../mod/admin.php:439 ../../mod/admin.php:533 -#: ../../mod/admin.php:807 ../../mod/admin.php:941 ../../mod/admin.php:1032 -#: ../../mod/admin.php:1072 ../../mod/admin.php:1232 ../../mod/admin.php:1267 -#: ../../mod/admin.php:1350 -msgid "Administration" -msgstr "Administrasjon" - -#: ../../mod/admin.php:241 -msgid "Summary" -msgstr "Sammendrag" - -#: ../../mod/admin.php:244 -msgid "Registered accounts" -msgstr "Registrerte kontoer" - -#: ../../mod/admin.php:245 ../../mod/admin.php:537 -msgid "Pending registrations" -msgstr "Ventende registreringer" - -#: ../../mod/admin.php:246 -msgid "Registered channels" -msgstr "Registrerte kanaler" - -#: ../../mod/admin.php:247 ../../mod/admin.php:538 -msgid "Active plugins" -msgstr "Aktive tilleggsfunksjoner" - -#: ../../mod/admin.php:248 -msgid "Version" -msgstr "Versjon" - -#: ../../mod/admin.php:356 -msgid "Site settings updated." -msgstr "Nettstedsinnstillinger er oppdatert." - -#: ../../mod/admin.php:393 -msgid "experimental" -msgstr "eksperimentell" - -#: ../../mod/admin.php:395 -msgid "unsupported" -msgstr "ikke støttet" - -#: ../../mod/admin.php:420 -msgid "Yes - with approval" -msgstr "Ja - med godkjenning" - -#: ../../mod/admin.php:426 -msgid "My site is not a public server" -msgstr "Mitt nettsted er ikke en offentlig tjeneste" - -#: ../../mod/admin.php:427 -msgid "My site has paid access only" -msgstr "Mitt nettsted gir kun tilgang mot betaling" - -#: ../../mod/admin.php:428 -msgid "My site has free access only" -msgstr "Mitt nettsted har kun gratis tilgang" - -#: ../../mod/admin.php:429 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste" - -#: ../../mod/admin.php:442 ../../mod/register.php:207 -msgid "Registration" -msgstr "Registrering" - -#: ../../mod/admin.php:443 -msgid "File upload" -msgstr "Last opp fil" - -#: ../../mod/admin.php:444 -msgid "Policies" -msgstr "Retningslinjer" - -#: ../../mod/admin.php:449 -msgid "Site name" -msgstr "Nettstedets navn" - -#: ../../mod/admin.php:450 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:451 -msgid "Administrator Information" -msgstr "Administratorinformasjon" - -#: ../../mod/admin.php:451 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her" - -#: ../../mod/admin.php:452 -msgid "System language" -msgstr "Systemspråk" - -#: ../../mod/admin.php:453 -msgid "System theme" -msgstr "Systemtema" - -#: ../../mod/admin.php:453 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger" - -#: ../../mod/admin.php:454 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" - -#: ../../mod/admin.php:454 -msgid "Theme for mobile devices" -msgstr "Tema for mobile enheter" - -#: ../../mod/admin.php:456 -msgid "Enable Diaspora Protocol" -msgstr "Skru på Diaspora-protokollen" - -#: ../../mod/admin.php:456 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Samhandling med Diaspora og Friendica - eksperimentell" - -#: ../../mod/admin.php:457 -msgid "Allow Feeds as Connections" -msgstr "Tillat strømmer som forbindelser" - -#: ../../mod/admin.php:457 -msgid "(Heavy system resource usage)" -msgstr "(Tung bruk av systemressurser)" - -#: ../../mod/admin.php:458 -msgid "Maximum image size" -msgstr "Største bildestørrelse" - -#: ../../mod/admin.php:458 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset." - -#: ../../mod/admin.php:459 -msgid "Does this site allow new member registration?" -msgstr "Tillater dette nettstedet registrering av nye medlemmer?" - -#: ../../mod/admin.php:460 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?" - -#: ../../mod/admin.php:461 -msgid "Register text" -msgstr "Registreringstekst" - -#: ../../mod/admin.php:461 -msgid "Will be displayed prominently on the registration page." -msgstr "Vil bli vist på en fremtredende måte på registreringssiden." - -#: ../../mod/admin.php:462 -msgid "Accounts abandoned after x days" -msgstr "Kontoer forlatt etter x dager" - -#: ../../mod/admin.php:462 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense." - -#: ../../mod/admin.php:463 -msgid "Allowed friend domains" -msgstr "Tillatte vennedomener" - -#: ../../mod/admin.php:463 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener." - -#: ../../mod/admin.php:464 -msgid "Allowed email domains" -msgstr "Tillate e-postdomener" - -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt" - -#: ../../mod/admin.php:465 -msgid "Not allowed email domains" -msgstr "Ikke tillatte e-postdomener" - -#: ../../mod/admin.php:465 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert." - -#: ../../mod/admin.php:466 -msgid "Block public" -msgstr "Blokker offentlig tilgang" - -#: ../../mod/admin.php:466 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn." - -#: ../../mod/admin.php:467 -msgid "Verify Email Addresses" -msgstr "Bekreft e-postadresser" - -#: ../../mod/admin.php:467 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)." - -#: ../../mod/admin.php:468 -msgid "Force publish" -msgstr "Tving publisering" - -#: ../../mod/admin.php:468 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog." - -#: ../../mod/admin.php:469 -msgid "Disable discovery tab" -msgstr "Skru av oppdagelsesfanen" - -#: ../../mod/admin.php:469 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Fjern fanen fra nettverksvisningen med offentlig innhold trukket inn fra kilder valg for dette nettstedet." - -#: ../../mod/admin.php:470 -msgid "No login on Homepage" -msgstr "Ingen innlogging på hjemmesiden" - -#: ../../mod/admin.php:470 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Sett hake for å skjule innloggingsskjemaet fra ditt nettsteds hjemmeside for besøkende som ikke er innlogget (for eksempel når du legger inn innhold på hjemmesiden via nettstedskanalen)." - -#: ../../mod/admin.php:472 -msgid "Proxy user" -msgstr "Brukernavn mellomtjener" - -#: ../../mod/admin.php:473 -msgid "Proxy URL" -msgstr "Mellomtjener URL" - -#: ../../mod/admin.php:474 -msgid "Network timeout" -msgstr "Nettverk tidsavbrudd" - -#: ../../mod/admin.php:474 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)." - -#: ../../mod/admin.php:475 -msgid "Delivery interval" -msgstr "Leveringsinterval" - -#: ../../mod/admin.php:475 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere." - -#: ../../mod/admin.php:476 -msgid "Poll interval" -msgstr "Spørreintervall" - -#: ../../mod/admin.php:476 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet." - -#: ../../mod/admin.php:477 -msgid "Maximum Load Average" -msgstr "Største belastningsgjennomsnitt" - -#: ../../mod/admin.php:477 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50." - -#: ../../mod/admin.php:525 -msgid "No server found" -msgstr "Ingen tjener funnet" - -#: ../../mod/admin.php:532 ../../mod/admin.php:821 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:532 -msgid "for channel" -msgstr "for kanalen" - -#: ../../mod/admin.php:532 -msgid "on server" -msgstr "på tjener" - -#: ../../mod/admin.php:532 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:534 -msgid "Server" -msgstr "Tjener" - -#: ../../mod/admin.php:551 -msgid "Update has been marked successful" -msgstr "Oppdateringen har blitt merket som en suksess" - -#: ../../mod/admin.php:561 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Utføring av %s feilet. Sjekk systemlogger." - -#: ../../mod/admin.php:564 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Oppdatering %s ble gjennomført med suksess." - -#: ../../mod/admin.php:568 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket." - -#: ../../mod/admin.php:571 -#, php-format -msgid "Update function %s could not be found." -msgstr "Oppdatering av funksjon %s kunne ikke finnes." - -#: ../../mod/admin.php:587 -msgid "No failed updates." -msgstr "Ingen mislykkede oppdateringer." - -#: ../../mod/admin.php:591 -msgid "Failed Updates" -msgstr "Mislykkede oppdateringer" - -#: ../../mod/admin.php:593 -msgid "Mark success (if update was manually applied)" -msgstr "Marker suksess (hvis oppdateringen ble gjennomført manuelt)" - -#: ../../mod/admin.php:594 -msgid "Attempt to execute this update step automatically" -msgstr "Prøv å gjennomføre dette oppdateringstrinnet automatisk" - -#: ../../mod/admin.php:628 -msgid "Queue Statistics" -msgstr "Køstatistikk" - -#: ../../mod/admin.php:629 -msgid "Total Entries" -msgstr "Totalt antall oppføringer" - -#: ../../mod/admin.php:630 -msgid "Priority" -msgstr "Prioritet" - -#: ../../mod/admin.php:631 -msgid "Destination URL" -msgstr "Mål-URL" - -#: ../../mod/admin.php:632 -msgid "Mark hub permanently offline" -msgstr "Merk hub som permanent offline" - -#: ../../mod/admin.php:633 -msgid "Empty queue for this hub" -msgstr "Tøm køen for denne hubben" - -#: ../../mod/admin.php:634 -msgid "Last known contact" -msgstr "Siste kjente kontakt" - -#: ../../mod/admin.php:670 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s bruker blokkert/ikke blokkert lenger" -msgstr[1] "%s brukere blokkert/ikke blokkert lenger" - -#: ../../mod/admin.php:678 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s bruker slettet" -msgstr[1] "%s brukere slettet" - -#: ../../mod/admin.php:714 -msgid "Account not found" -msgstr "Kontoen ble ikke funnet" - -#: ../../mod/admin.php:734 -#, php-format -msgid "User '%s' blocked" -msgstr "Brukeren '%s' er blokkert" - -#: ../../mod/admin.php:742 -#, php-format -msgid "User '%s' unblocked" -msgstr "Brukeren '%s' er ikke blokkert lenger" - -#: ../../mod/admin.php:808 ../../mod/admin.php:820 -msgid "Users" -msgstr "Brukere" - -#: ../../mod/admin.php:810 ../../mod/admin.php:944 -msgid "select all" -msgstr "velg alle" - -#: ../../mod/admin.php:811 -msgid "User registrations waiting for confirm" -msgstr "Brukerregistreringer som venter på bekreftelse" - -#: ../../mod/admin.php:812 -msgid "Request date" -msgstr "Dato for forespørsel" - -#: ../../mod/admin.php:813 -msgid "No registrations." -msgstr "Ingen registreringer." - -#: ../../mod/admin.php:814 -msgid "Approve" -msgstr "Godkjenn" - -#: ../../mod/admin.php:815 -msgid "Deny" -msgstr "Avslå" - -#: ../../mod/admin.php:821 -msgid "Register date" -msgstr "Registreringsdato" - -#: ../../mod/admin.php:821 -msgid "Last login" -msgstr "Siste innlogging" - -#: ../../mod/admin.php:821 -msgid "Expires" -msgstr "Utløper" - -#: ../../mod/admin.php:821 -msgid "Service Class" -msgstr "Tjenesteklasse" - -#: ../../mod/admin.php:823 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte brukere vil bli slettet!\\n\\nAlt som disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette valgte brukere og deres innhold?" - -#: ../../mod/admin.php:824 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren og alt innholdet til denne brukeren?" - -#: ../../mod/admin.php:858 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanal er sensurert/ikke sensurert lenger" -msgstr[1] "%s kanaler er sensurert/ikke sensurert lenger" - -#: ../../mod/admin.php:865 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal slettet" -msgstr[1] "%s kanaler slettet" - -#: ../../mod/admin.php:883 -msgid "Channel not found" -msgstr "Kanalen ble ikke funnet" - -#: ../../mod/admin.php:894 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' er slettet" - -#: ../../mod/admin.php:905 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanalen '%s' er ikke sensurert lenger" - -#: ../../mod/admin.php:905 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanalen '%s' er sensurert" - -#: ../../mod/admin.php:946 -msgid "Censor" -msgstr "Sensurer" - -#: ../../mod/admin.php:947 -msgid "Uncensor" -msgstr "Ikke sensurer lenger" - -#: ../../mod/admin.php:950 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:952 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?" - -#: ../../mod/admin.php:953 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?" - -#: ../../mod/admin.php:993 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tilleggsfunksjonen %s er avskrudd." - -#: ../../mod/admin.php:997 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tilleggsfunksjonen %s er påskrudd." - -#: ../../mod/admin.php:1007 ../../mod/admin.php:1205 -msgid "Disable" -msgstr "Skru av" - -#: ../../mod/admin.php:1010 ../../mod/admin.php:1207 -msgid "Enable" -msgstr "Skru på" - -#: ../../mod/admin.php:1034 ../../mod/admin.php:1234 -msgid "Toggle" -msgstr "Skru av og på" - -#: ../../mod/admin.php:1042 ../../mod/admin.php:1244 -msgid "Author: " -msgstr "Forfatter:" - -#: ../../mod/admin.php:1043 ../../mod/admin.php:1245 -msgid "Maintainer: " -msgstr "Vedlikeholder:" - -#: ../../mod/admin.php:1170 -msgid "No themes found." -msgstr "Ingen temaer er funnet." - -#: ../../mod/admin.php:1226 -msgid "Screenshot" -msgstr "Skjermbilde" - -#: ../../mod/admin.php:1273 -msgid "[Experimental]" -msgstr "[Eksperimentelt]" - -#: ../../mod/admin.php:1274 -msgid "[Unsupported]" -msgstr "[Ingen støtte]" - -#: ../../mod/admin.php:1298 -msgid "Log settings updated." -msgstr "Logginnstillinger er oppdatert." - -#: ../../mod/admin.php:1353 -msgid "Clear" -msgstr "Tøm" - -#: ../../mod/admin.php:1359 -msgid "Debugging" -msgstr "Feilsøking" - -#: ../../mod/admin.php:1360 -msgid "Log file" -msgstr "Loggfil" - -#: ../../mod/admin.php:1360 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Må kunne skrives til av webtjenesten. Relativ til din Red sin toppnivåkatalog." - -#: ../../mod/admin.php:1361 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../mod/admin.php:1407 -msgid "New Profile Field" -msgstr "Nytt profilfelt" - -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 -msgid "Field nickname" -msgstr "Feltets kallenavn" - -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 -msgid "System name of field" -msgstr "Systemnavnet til feltet" - -#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 -msgid "Input type" -msgstr "Inndata-type" - -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 -msgid "Field Name" -msgstr "Feltnavn" - -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 -msgid "Label on profile pages" -msgstr "Merkelapp på profilsider" - -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 -msgid "Help text" -msgstr "Hjelpetekst" - -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 -msgid "Additional info (optional)" -msgstr "Tilleggsinformasjon (valgfritt)" - -#: ../../mod/admin.php:1421 -msgid "Field definition not found" -msgstr "Feltdefinisjonen ble ikke funnet" - -#: ../../mod/admin.php:1427 -msgid "Edit Profile Field" -msgstr "Endre profilfelt" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Ikke i stand til å finne hubben din." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Innlegg vellykket." - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Endre byggekloss" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Slett byggeklossen?" - -#: ../../mod/editblock.php:188 -msgid "Delete Block" -msgstr "Slett byggekloss" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Passordene er ikke like." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering venter på godkjenning av nettstedets eier." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Din registrering kan ikke behandles." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registrering på dette nettstedet/denne hubben skjer bare gjennom godkjenning." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registrer på et annet tilknyttet nettsted/hub" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Tjenesteavtale" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Jeg godtar %s for dette nettstedet" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet." - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap ved dette nettstedet skjer kun via invitasjon." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Vennligst skriv din invitasjonskode" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Din e-postadresse" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Velg et passord" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Vennligst skriv ditt passord en gang til" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Slett denne kontoen" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ADVARSEL:" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Denne handlingen er permanent og kan ikke angres!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Vennligst skriv ditt passord for å få bekreftelse:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Innebygget innhold - last siden på nytt for å se]" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Informasjon om sideeier kunne ikke hentes." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet ble ikke funnet." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Slett album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:930 -msgid "Delete Photo" -msgstr "Slett bilde" - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Ingen bilder valgt" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Tilgang til dette elementet er begrenset." - -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB lagringsplass til bilder er brukt." - -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB lagringsplass til bilder er brukt." - -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Last opp bilder" - -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915 -msgid "Enter a new album name" -msgstr "Skriv et nytt albumnavn" - -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:916 -msgid "or select an existing one (doubleclick)" -msgstr "eller velg et eksisterende album (dobbeltklikk)" - -#: ../../mod/photos.php:556 -msgid "Create a status post for this upload" -msgstr "Lag et statusinnlegg for denne opplastingen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumnavnet kunne ikke dekodes" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1157 -#: ../../mod/photos.php:1173 -msgid "Contact Photos" -msgstr "Kontaktbilder" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Vis nyeste først" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Vis eldste først" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1205 -msgid "View Photo" -msgstr "Vis foto" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Endre album" - -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Tillatelse avvist. Tilgang til dette elementet kan være begrenset." - -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Bilde er utilgjengelig" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Bruk som profilbilde" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privat bilde" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Vis i full størrelse" - -#: ../../mod/photos.php:909 -msgid "Edit photo" -msgstr "Endre bilde" - -#: ../../mod/photos.php:911 -msgid "Rotate CW (right)" -msgstr "Roter med klokka (mot høyre)" - -#: ../../mod/photos.php:912 -msgid "Rotate CCW (left)" -msgstr "Roter mot klokka (venstre)" - -#: ../../mod/photos.php:919 -msgid "Caption" -msgstr "Overskrift" - -#: ../../mod/photos.php:921 -msgid "Add a Tag" -msgstr "Legg til merkelapp" - -#: ../../mod/photos.php:925 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Eksempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../mod/photos.php:928 -msgid "Flag as adult in album view" -msgstr "Flag som voksent i albumvisning" - -#: ../../mod/photos.php:1120 -msgid "In This Photo:" -msgstr "I dette bildet:" - -#: ../../mod/photos.php:1125 -msgid "Map" -msgstr "Kart" - -#: ../../mod/photos.php:1211 -msgid "View Album" -msgstr "Vis album" - -#: ../../mod/photos.php:1234 -msgid "Recent Photos" -msgstr "Nye bilder" - -#: ../../mod/post.php:234 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt." - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Samtale fjernet." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Ingen meldinger." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Slett samtale" - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menyelement er oppdatert." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Ikke i stand til å oppdatere menyelement." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menyelement lagt til." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Ikke i stand til å legge til menyelement." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Håndtere menyelementer" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Endre meny" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Endre element" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Slett element" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nytt element" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Endre denne menybeholderen" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Legg til menyelement" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Slett dette menyelementet" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Endre dette menyelementet" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nytt menyelement" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Menyelement Tillatelser" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Lenketekst" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "URL-en til lenken" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use Hubzilla magic-auth if available" -msgstr "Bruk Hubzillas magiske-autentisering hvis tilgjengelig" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Åpne lenke i nytt vindu" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordne i liste" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Høyere tall vil synke mot bunnen av listen" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menyelement ble ikke funnet." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menyelement slettet." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menyelement kunne ikke bli slettet." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Endre menyelement" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Angi ditt nåværende humør og fortell dine venner" - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totalt antall stemmer" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Gjennomsnittlig vurdering" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Fjern denne kanalen" - -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Denne kanalen vil bli fullstendig fjernet fra nettverket." - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Fjern denne kanalen og alle dens kloner fra nettverket" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket" - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hjelp med denne funksjonen" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layout-navn" - -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig." - -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Feilmeldingen var:" - -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Autentisering mislyktes." - -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Fjernautentisering" - -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Skriv din kanaladresse (for eksempel channel@exampel.com)" - -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Autentiser" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Ikke i stand til å slå opp mottaker." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Ikke i stand til å kommunisere med forespurt kanal." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan ikke bekrefte forespurt kanal." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Valgt kanal har restriksjoner for private meldinger. Sending feilet." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Melding slettet." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Innlegg tilbakekalt." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Send privat melding" - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Til:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Emne:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Send" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Melding ikke funnet." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Slett melding" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Tilbakekall innlegg" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Innlegget har blitt tilbakekalt." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Privat samtale" - -#: ../../mod/mail.php:338 -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." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Send svar" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ugyldig forespørselsidentifikator." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Forkast" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Vennligst logg inn." - -#: ../../mod/network.php:90 -msgid "No such group" -msgstr "Gruppen finnes ikke" - -#: ../../mod/network.php:128 -msgid "Search Results For:" -msgstr "Søkeresultat for:" - -#: ../../mod/network.php:182 -msgid "Collection is empty" -msgstr "Samlingen er tom" - -#: ../../mod/network.php:190 -msgid "Collection: " -msgstr "Samling:" - -#: ../../mod/network.php:203 -msgid "Connection: " -msgstr "Forbindelse:" - -#: ../../mod/network.php:206 -msgid "Invalid connection." -msgstr "Ugyldig forbindelse." - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Legg til en kanal" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til å samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage så mange kanaler som din tjenestetilbyder tillater." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Eksempel: \"Ola Nordmann\", \"Lisa og hestene hennes\", \"Fotball\", \"Sykkelgruppa\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Velg et kort kallenavn" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske (minner om en e-postadresse) og som du kan dele med andre." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Eller importerer en eksisterende kanal fra et annet sted." - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg." - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltype" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Les mer om roller" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installert." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Feil oppsett for app-en." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Innbyggingskode" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Endre app" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Lag app" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Navn på app" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Plassering (URL) til app" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Bildeikon URL" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x80 pixler - valgfritt" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versjons-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Pris på app" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Plassering (URL) for å kjøpe app" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "sendte deg en privat melding" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "la til din kanal" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "la ut en hendelse" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmerke lagt til" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mine bokmerker" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Mine forbindelsers bokmerker" - -#: ../../mod/channel.php:92 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Spørring" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Vis resultater" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Ingen restriksjoner er funnet i tjenesteklasse." - -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Filer: delt med meg" - -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Fjern alle filer" - -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Fjern denne filen" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Standard skjema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:103 msgid "Theme settings" msgstr "Temainnstillinger" -#: ../../view/theme/apw/php/config.php:260 -msgid "Set scheme" -msgstr "Angi skjema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set font-size for posts and comments" -msgstr "Angi skriftstørrelse for innlegg og kommentarer" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Angi skrifttype" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Angi ikonutvalg" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Angi stor skyggestørrelse, standard 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Angi liten skyggestørrelse, standard 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Angi skyggefarge, standard #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Angi radiusstørrelse, standard 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Angi linjeavstand for innlegg og kommentarer" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Angi bakgrunnsbilde" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Angi bakgrunnsvedlegg" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Angi bakgrunnsfarge" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Angi seksjonens bakgrunnsbilde" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Angi seksjonens bakgrunnsfarge" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Angi fargen til elementer - bruk hex" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Angi fargen til lenker - bruk hex" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Angi maksimal bredde for elementer. Standard 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Angi minimumsbredde for elementer. Standard 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Angi den generelle bredden for innpakking av innhold. Standard 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Angi skriftfargen - bruk hex" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Angi størrelsen på bakgrunnselementet" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Elementers dekkevne" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Vis kun forhåndsvisning av innlegg" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Vis sidestolpe på kanalsiden" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Fargen på navigasjonslinjen" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Elementflyt" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Til venstre for seksjonselementet" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Til høyre for seksjonselementet" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Seksjonsbredde" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Til venstre for sidestolpen" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Til høyre for sidestolpen" - -#: ../../view/theme/redbasic/php/config.php:82 -msgid "Light (Hubzilla default)" -msgstr "Lys (Hubzilla standard)" - -#: ../../view/theme/redbasic/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:104 msgid "Select scheme" msgstr "Velg skjema" -#: ../../view/theme/redbasic/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:105 msgid "Narrow navbar" msgstr "Smal navigasjonslinje" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Navigation bar background color" msgstr "Navigasjonslinjens bakgrunnsfarge" -#: ../../view/theme/redbasic/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:107 msgid "Navigation bar gradient top color" msgstr "Navigasjonslinjens graderte toppfarge" -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:108 msgid "Navigation bar gradient bottom color" msgstr "Navigasjonslinjens graderte bunnfarge" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:109 msgid "Navigation active button gradient top color" msgstr "Aktiv navigasjonsknapp sin graderte toppfarge" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Navigation active button gradient bottom color" msgstr "Aktiv navigasjonsknapp sin graderte bunnfarge" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Navigation bar border color " msgstr "Navigasjonslinjens kantfarge" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar icon color " msgstr "Navigasjonslinjens ikonfarge" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar active icon color " msgstr "Navigasjonslinjens aktive ikoners farge" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:114 msgid "link color" msgstr "lenkefarge" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Set font-color for banner" msgstr "Angi skriftfargen for banneret" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Set the background color" msgstr "Angi bakgrunnsfargen" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Set the background image" msgstr "Angi bakgrunnsbilde" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Set the background color of items" msgstr "Angi bakgrunnsfargen til elementer" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Set the background color of comments" msgstr "Angi bakgrunnsfargen til kommentarer" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:120 msgid "Set the border color of comments" msgstr "Angi kantfargen til kommentarer" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set the indent for comments" msgstr "Angi innrykket til kommentarer" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the basic color for item icons" msgstr "Angi grunnfargen for elementikoner" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the hover color for item icons" msgstr "Angi fargen til elementikoner ved berøring" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set font-size for the entire application" msgstr "Angi skriftstørrelsen for hele programmet" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Example: 14px" msgstr "Eksempel: 14px" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:125 +msgid "Set font-size for posts and comments" +msgstr "Angi skriftstørrelse for innlegg og kommentarer" + +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set font-color for posts and comments" msgstr "Angi skriftfargen for innlegg og kommentarer" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set radius of corners" msgstr "Angi hjørneradius" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set shadow depth of photos" msgstr "Angi skyggedybden til bilder" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set maximum width of content region in pixel" msgstr "Angi største bredde for innholdsregionen i pixler" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Leave empty for default width" msgstr "La feltet stå tomt for å bruke standard bredde" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Center page content" -msgstr "Midtstill sideinnhold" +#: ../../view/theme/redbasic/php/config.php:130 +msgid "Left align page content" +msgstr "Venstrejuster sideinnhold" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Angi minste dekkevne for navigasjonslinjen - for å skjule den" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set size of conversation author photo" msgstr "Angi størrelsen for samtalens forfatterbilde" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set size of followup author photos" msgstr "Angi størrelsen på forfatterbilder ved oppfølging" -#: ../../boot.php:1357 +#: ../../boot.php:1162 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "" + +#: ../../boot.php:1162 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "" + +#: ../../boot.php:1480 #, php-format msgid "Update %s failed. See error logs." msgstr "Oppdatering %s mislyktes. Se feilloggen." -#: ../../boot.php:1360 +#: ../../boot.php:1483 #, php-format msgid "Update Error at %s" msgstr "Oppdateringsfeil ved %s" -#: ../../boot.php:1527 +#: ../../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:1555 +#: ../../boot.php:1706 msgid "Password" msgstr "Passord" -#: ../../boot.php:1556 +#: ../../boot.php:1707 msgid "Remember me" msgstr "Husk meg" -#: ../../boot.php:1559 +#: ../../boot.php:1710 msgid "Forgot your password?" msgstr "Glemt passordet ditt?" -#: ../../boot.php:2182 +#: ../../boot.php:2276 msgid "toggle mobile" msgstr "Skru på mobil" -#: ../../boot.php:2314 +#: ../../boot.php:2425 msgid "Website SSL certificate is not valid. Please correct." msgstr "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette." -#: ../../boot.php:2317 +#: ../../boot.php:2428 #, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] SSL-feil ved nettsted hos %s" +msgid "[hubzilla] Website SSL error for %s" +msgstr "[hubzilla] SSL-feil ved nettsted hos %s" -#: ../../boot.php:2355 +#: ../../boot.php:2469 msgid "Cron/Scheduled tasks not running." msgstr "Cron/planlagte oppgaver kjører ikke." -#: ../../boot.php:2359 +#: ../../boot.php:2473 #, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Cron-oppgaver kjører ikke på %s" +msgid "[hubzilla] Cron tasks not running on %s" +msgstr "[hubzilla] Cron-oppgaver kjører ikke på %s" diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index 01a95a5a3..e03ba321d 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -5,162 +5,649 @@ function string_plural_select_nb_no($n){ return ($n != 1);; }} ; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; -App::$strings["Profile Photos"] = "Profilbilder"; -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["created a new post"] = "laget et nytt innlegg"; -App::$strings["commented on %s's post"] = "kommenterte på %s sitt innlegg"; -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["Default privacy group for new contacts"] = "Standard personverngruppe for nye kontakter"; -App::$strings["All Channels"] = "Alle kanaler"; -App::$strings["edit"] = "endre"; -App::$strings["Collections"] = "Samlinger"; -App::$strings["Edit collection"] = "Endre samling"; -App::$strings["Create a new collection"] = "Lag en ny samling"; -App::$strings["Channels not in any collection"] = "Kanaler som ikke er i noen samling"; -App::$strings["add"] = "legg til"; -App::$strings["Image/photo"] = "Bilde/fotografi"; -App::$strings["Encrypted content"] = "Kryptert innhold"; -App::$strings["Install design element: "] = "Installer designelement:"; -App::$strings["QR code"] = "QR-kode"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; -App::$strings["post"] = "innlegg"; -App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; -App::$strings["$1 spoiler"] = "$1 avsløring"; -App::$strings["$1 wrote:"] = "$1 skrev:"; -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["Friends"] = "Venner"; -App::$strings["Requested channel is not available."] = "Forespurt kanal er ikke tilgjengelig."; -App::$strings["Requested profile is not available."] = "Forespurt profil er ikke tilgjengelig."; -App::$strings["Connect"] = "Koble"; -App::$strings["Change profile photo"] = "Endre profilbilde"; -App::$strings["Profiles"] = "Profiler"; -App::$strings["Manage/edit profiles"] = "Håndtere/endre profiler"; -App::$strings["Create New Profile"] = "Lag ny profil"; -App::$strings["Edit Profile"] = "Endre profil"; -App::$strings["Profile Image"] = "Profilbilde"; -App::$strings["visible to everybody"] = "synlig for alle"; -App::$strings["Edit visibility"] = "Endre synlighet"; -App::$strings["Location:"] = "Plassering:"; -App::$strings["Gender:"] = "Kjønn:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Hjemmeside:"; -App::$strings["Online Now"] = "Online nå"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["F d"] = "F d"; -App::$strings["[today]"] = "[idag]"; -App::$strings["Birthday Reminders"] = "Fødselsdagspåminnnelser"; -App::$strings["Birthdays this week:"] = "Fødselsdager denne uken:"; -App::$strings["[No description]"] = "[Ingen beskrivelse]"; -App::$strings["Event Reminders"] = "Hendelsespåminnelser"; -App::$strings["Events this week:"] = "Hendelser denne uken:"; -App::$strings["Profile"] = "Profil"; -App::$strings["Full Name:"] = "Fullt navn:"; -App::$strings["Like this channel"] = "Lik denne kanalen"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Liker", - 1 => "Liker", -); -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Fødselsdag:"; -App::$strings["Age:"] = "Alder:"; -App::$strings["for %1\$d %2\$s"] = "for %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuell preferanse:"; -App::$strings["Hometown:"] = "Hjemby:"; -App::$strings["Tags:"] = "Merkelapper:"; -App::$strings["Political Views:"] = "Politiske synspunkter:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["About:"] = "Om:"; -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 Page"] = "Ny side"; +App::$strings["parent"] = "opp et nivå"; +App::$strings["Collection"] = "Samling"; +App::$strings["Principal"] = "Viktigste"; +App::$strings["Addressbook"] = "Adressebok"; +App::$strings["Calendar"] = "Kalender"; +App::$strings["Schedule Inbox"] = "Tidsplan innboks"; +App::$strings["Schedule Outbox"] = "Tidsplan utboks"; +App::$strings["Unknown"] = "Ukjent"; +App::$strings["Files"] = "Filer"; +App::$strings["Total"] = "Totalt"; +App::$strings["Shared"] = "Delt"; +App::$strings["Create"] = "Lag"; +App::$strings["Upload"] = "Last opp"; +App::$strings["Name"] = "Navn"; +App::$strings["Type"] = "Type"; +App::$strings["Size"] = "Størrelse"; +App::$strings["Last Modified"] = "Sist endret"; App::$strings["Edit"] = "Endre"; -App::$strings["View"] = "Vis"; -App::$strings["Preview"] = "Forhåndsvisning"; -App::$strings["Actions"] = "Handlinger"; -App::$strings["Page Link"] = "Sidelenke"; -App::$strings["Title"] = "Tittel"; +App::$strings["Delete"] = "Slett"; +App::$strings["You are using %1\$s of your available file storage."] = "Du bruker %1\$s av din tilgjengelige lagringsplass."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Du bruker %1\$s av %2\$s tilgjengelig lagringsplass (%3\$s%)"; +App::$strings["WARNING:"] = "ADVARSEL:"; +App::$strings["Create new folder"] = "Lag ny mappe"; +App::$strings["Upload file"] = "Last opp fil"; +App::$strings["Permission denied"] = "Tillatelse avvist"; +App::$strings["Permission denied."] = "Tillatelse avslått."; +App::$strings["Not Found"] = "Ikke funnet"; +App::$strings["Page not found."] = "Siden ikke funnet."; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt."; +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["Categories"] = "Kategorier"; -App::$strings["Apps"] = "Apper"; -App::$strings["System"] = "System"; -App::$strings["Personal"] = "Personlig"; -App::$strings["Create Personal App"] = "Lag personlig app"; -App::$strings["Edit Personal App"] = "Endre personlig app"; -App::$strings["Ignore/Hide"] = "Ignorer/Skjul"; -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 the channel address"] = "Skriv kanal-adressen"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Eksempel: ola.nordmann@eksempel.no, http://eksempel.no/karinordmann"; -App::$strings["Notes"] = "Merknader"; -App::$strings["Save"] = "Lagre"; -App::$strings["Remove term"] = "Fjern begrep"; -App::$strings["Saved Searches"] = "Lagrede søk"; -App::$strings["Saved Folders"] = "Lagrede mapper"; -App::$strings["Everything"] = "Alt"; -App::$strings["Archives"] = "Arkiv"; -App::$strings["Refresh"] = "Forny"; +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."; +App::$strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen."; +App::$strings["is now connected to"] = "er nå forbundet til"; +App::$strings["No"] = "Nei"; +App::$strings["Yes"] = "Ja"; +App::$strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."; +App::$strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken."; +App::$strings["Connection has been removed."] = "Forbindelsen har blitt fjernet."; +App::$strings["View Profile"] = "Vis profil"; +App::$strings["View %s's profile"] = "Vis %s sin profil"; +App::$strings["Refresh Permissions"] = "Oppfrisk tillatelser"; +App::$strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser"; +App::$strings["Recent Activity"] = "Nylig aktivitet"; +App::$strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer"; +App::$strings["Unblock"] = "Ikke blokker lenger"; +App::$strings["Block"] = "Blokker"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"; +App::$strings["This connection is blocked!"] = "Denne forbindelsen er blokkert!"; +App::$strings["Unignore"] = "Ikke ignorer lenger"; +App::$strings["Ignore"] = "Ignorer"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"; +App::$strings["This connection is ignored!"] = "Denne forbindelsen er ignorert!"; +App::$strings["Unarchive"] = "Ikke arkiver lenger"; +App::$strings["Archive"] = "Arkiver"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"; +App::$strings["This connection is archived!"] = "Denne forbindelsen er arkivert!"; +App::$strings["Unhide"] = "Ikke skjul lenger"; +App::$strings["Hide"] = "Skjul"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"; +App::$strings["This connection is hidden!"] = "Denne forbindelsen er skjult!"; +App::$strings["Delete this connection"] = "Slett denne forbindelsen"; App::$strings["Me"] = "Meg"; -App::$strings["Best Friends"] = "Bestevenner"; -App::$strings["Co-workers"] = "Medarbeidere"; -App::$strings["Former Friends"] = "Tidligere venner"; +App::$strings["Family"] = "Familie"; +App::$strings["Friends"] = "Venner"; App::$strings["Acquaintances"] = "Bekjente"; -App::$strings["Everybody"] = "Alle"; -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["Connected apps"] = "Tilkoblede app-er"; -App::$strings["Export channel"] = "Eksporter kanal"; +App::$strings["All"] = "Alle"; +App::$strings["Approve this connection"] = "Godta denne forbindelsen"; +App::$strings["Accept connection to allow communication"] = "Godta denne forbindelsen for å tillate kommunikasjon"; +App::$strings["Set Affinity"] = "Angi nærhet"; +App::$strings["Set Profile"] = "Angi profil"; +App::$strings["Set Affinity & Profile"] = "Angi nærhet og profil"; +App::$strings["none"] = "ingen"; App::$strings["Connection Default Permissions"] = "Forbindelsens standard tillatelser"; -App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; -App::$strings["Channel Sources"] = "Kanalkilder"; -App::$strings["Settings"] = "Innstillinger"; -App::$strings["Messages"] = "Meldinger"; -App::$strings["Check Mail"] = "Sjekk meldinger"; -App::$strings["New Message"] = "Ny melding"; -App::$strings["Chat Rooms"] = "Chatrom"; -App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; -App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; -App::$strings["photo/image"] = "foto/bilde"; -App::$strings["Rate Me"] = "Vurder meg"; -App::$strings["View Ratings"] = "Vis vurderinger"; -App::$strings["Public Hubs"] = "Offentlige huber"; -App::$strings["photo"] = "foto"; +App::$strings["Connection: %s"] = "Forbindelse: %s"; +App::$strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk"; +App::$strings["Connection requests will be approved without your interaction"] = "Forespørsler om forbindelse vil bli godkjent automatisk"; +App::$strings["This connection's primary address is"] = "Denne forbindelsens primære adresse er"; +App::$strings["Available locations:"] = "Tilgjengelige plasseringer:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Tillatelsene angitt på denne siden gjøres gjeldende for alle nye forbindelser."; +App::$strings["Connection Tools"] = ""; +App::$strings["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"; +App::$strings["Optionally explain your rating"] = "Velg om du vil forklare vurderingen"; +App::$strings["Custom Filter"] = "Tilpasset filter"; +App::$strings["Only import posts with this text"] = "Bare importer innlegg med disse ordene"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "ord per linje eller #merkelapper eller /mønster/ eller språk lang=xx, la stå blankt for å importere alle innlegg"; +App::$strings["Do not import posts with this text"] = "Ikke importer innlegg med denne teksten"; +App::$strings["This information is public!"] = "Denne informasjonen er offentlig!"; +App::$strings["Connection Pending Approval"] = "Forbindelse venter på godkjenning"; +App::$strings["inherited"] = "arvet"; +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"; +App::$strings["Individual Permissions"] = "Individuelle tillatelser"; +App::$strings["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."] = "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."; +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["%d rating"] = array( + 0 => "%d vurdering", + 1 => "%d vurderinger", +); +App::$strings["Gender: "] = "Kjønn:"; +App::$strings["Status: "] = "Status:"; +App::$strings["Homepage: "] = "Hjemmeside:"; +App::$strings["Age:"] = "Alder:"; +App::$strings["Location:"] = "Plassering:"; +App::$strings["Description:"] = "Beskrivelse:"; +App::$strings["Hometown:"] = "Hjemby:"; +App::$strings["About:"] = "Om:"; +App::$strings["Connect"] = "Koble"; +App::$strings["Public Forum:"] = "Offentlig forum:"; +App::$strings["Keywords: "] = "Nøkkelord:"; +App::$strings["Don't suggest"] = "Ikke foreslå"; +App::$strings["Common connections:"] = "Felles forbindelser:"; +App::$strings["Global Directory"] = "Global katalog"; +App::$strings["Local Directory"] = "Lokal katalog"; +App::$strings["Find"] = "Finn"; +App::$strings["Finding:"] = "Finner:"; +App::$strings["Channel Suggestions"] = "Kanalforslag"; +App::$strings["next page"] = "Neste side"; +App::$strings["previous page"] = "Forrige side"; +App::$strings["Sort options"] = "Sorteringsvalg"; +App::$strings["Alphabetic"] = "Alfabetisk"; +App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; +App::$strings["Newest to Oldest"] = "Nyest til eldst"; +App::$strings["Oldest to Newest"] = "Eldst til nyest"; +App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; +App::$strings["Item not found."] = "Elementet ble ikke funnet."; +App::$strings["Item not found"] = "Elementet ble ikke funnet."; +App::$strings["Title (optional)"] = "Tittel (valgfri)"; +App::$strings["Edit Block"] = "Endre byggekloss"; +App::$strings["No channel."] = "Ingen kanal."; +App::$strings["Common connections"] = "Felles forbindelser"; +App::$strings["No connections in common."] = "Ingen forbindelser felles."; +App::$strings["Blocked"] = "Blokkert"; +App::$strings["Ignored"] = "Ignorert"; +App::$strings["Hidden"] = "Skjult"; +App::$strings["Archived"] = "Arkivert"; +App::$strings["New"] = "Nye"; +App::$strings["New Connections"] = "Nye forbindelser"; +App::$strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; +App::$strings["All Connections"] = "Alle forbindelser"; +App::$strings["Show all connections"] = "Vis alle forbindelser"; +App::$strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; +App::$strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; +App::$strings["Only show archived connections"] = "Vis bare arkiverte forbindelser"; +App::$strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; +App::$strings["Pending approval"] = "Venter på godkjenning"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Endre forbindelse"; +App::$strings["Delete connection"] = "Slett forbindelse"; +App::$strings["Channel address"] = "Kanaladresse"; +App::$strings["Network"] = "Nettverk"; +App::$strings["Status"] = "Status"; +App::$strings["Connected"] = "Forbundet"; +App::$strings["Approve connection"] = "Godkjenn forbindelse"; +App::$strings["Approve"] = "Godkjenn"; +App::$strings["Ignore connection"] = "Ignorer forbindelse"; +App::$strings["Recent activity"] = "Nylig aktivitet"; +App::$strings["Connections"] = "Forbindelser"; +App::$strings["Search"] = "Søk"; +App::$strings["Search your connections"] = "Søk blant dine forbindelser"; +App::$strings["Connections search"] = "Søk blant forbindelser"; +App::$strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; +App::$strings["Cover Photos"] = "Forsidebilder"; +App::$strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; +App::$strings["Unable to process image"] = "Kan ikke behandle bildet"; +App::$strings["Image upload failed."] = "Opplasting av bildet mislyktes."; +App::$strings["Unable to process image."] = "Kan ikke behandle bildet."; +App::$strings["female"] = "kvinne"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; +App::$strings["male"] = "mann"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s oppdaterte %2\$s sitt"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s oppdaterte %2\$s deres"; +App::$strings["cover photo"] = "forsidebilde"; +App::$strings["Photo not available."] = "Bildet er ikke tilgjengelig."; +App::$strings["Upload File:"] = "Last opp fil:"; +App::$strings["Select a profile:"] = "Velg en profil:"; +App::$strings["Upload Cover Photo"] = "Last opp forsidebilde"; +App::$strings["or"] = "eller"; +App::$strings["skip this step"] = "hopp over dette steget"; +App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; +App::$strings["Crop Image"] = "Beskjær bildet"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Vennligst juster bildebeskjæringen for optimal visning."; +App::$strings["Done Editing"] = "Avslutt redigering"; +App::$strings["Item is not editable"] = "Elementet kan ikke endres"; +App::$strings["Edit post"] = "Endre innlegg"; +App::$strings["Calendar entries imported."] = "Kalenderhendelsene er importert."; +App::$strings["No calendar entries found."] = "Ingen kalenderhendelser funnet."; +App::$strings["Event can not end before it has started."] = "Hendelsen kan ikke slutte før den starter."; +App::$strings["Unable to generate preview."] = "Klarer ikke å lage forhåndsvisning."; +App::$strings["Event title and start time are required."] = "Hendelsestittel og starttidspunkt er påkrevd."; +App::$strings["Event not found."] = "Hendelsen ble ikke funnet."; App::$strings["event"] = "hendelse"; +App::$strings["Edit event title"] = "Endre tittel på hendelse"; +App::$strings["Event title"] = "Tittel på hendelse"; +App::$strings["Required"] = "Påkrevd"; +App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; +App::$strings["Edit Category"] = "Endre kategori"; +App::$strings["Category"] = "Kategori"; +App::$strings["Edit start date and time"] = "Endre startdato og tidspunkt"; +App::$strings["Start date and time"] = "Startdato og tidspunkt"; +App::$strings["Finish date and time are not known or not relevant"] = "Sluttdato og tidspunkt er ikke kjent eller ikke relevant"; +App::$strings["Edit finish date and time"] = "Endre sluttdato og tidspunkt"; +App::$strings["Finish date and time"] = "Sluttdato og tidspunkt"; +App::$strings["Adjust for viewer timezone"] = "Juster i forhold til tilskuerens tidssone"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Viktig for hendelser som skjer på et bestemt sted. Ikke praktisk for globale ferier eller fridager."; +App::$strings["Edit Description"] = "Endre beskrivelse"; +App::$strings["Description"] = "Beskrivelse"; +App::$strings["Edit Location"] = "Endre plassering"; +App::$strings["Location"] = "Plassering"; +App::$strings["Share this event"] = "Del denne hendelsen"; +App::$strings["Preview"] = "Forhåndsvisning"; +App::$strings["Permission settings"] = "Tillatelser - innstillinger"; +App::$strings["Advanced Options"] = "Avanserte alternativer"; +App::$strings["Edit event"] = "Endre hendelse"; +App::$strings["Delete event"] = "Slett hendelse"; +App::$strings["calendar"] = "kalender"; +App::$strings["Event removed"] = "Hendelse slettet"; +App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; +App::$strings["Photos"] = "Bilder"; +App::$strings["Cancel"] = "Avbryt"; +App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; +App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; +App::$strings["Save to Folder:"] = "Lagre til mappe:"; +App::$strings["- select -"] = "- velg -"; +App::$strings["Save"] = "Lagre"; +App::$strings["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"; +App::$strings["accepted for delivery"] = "akseptert for levering"; +App::$strings["updated"] = "oppdatert"; +App::$strings["update ignored"] = "oppdatering ignorert"; +App::$strings["permission denied"] = "tillatelse avvist"; +App::$strings["recipient not found"] = "mottaker ble ikke funnet"; +App::$strings["mail recalled"] = "melding tilbakekalt"; +App::$strings["duplicate mail received"] = "duplikat av melding mottatt"; +App::$strings["mail delivered"] = "melding mottatt"; +App::$strings["Layout Name"] = "Layout-navn"; +App::$strings["Layout Description (Optional)"] = "Layoutens beskrivelse (valgfritt)"; +App::$strings["Edit Layout"] = "Endre layout"; +App::$strings["Page link"] = ""; +App::$strings["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"; +App::$strings["Privacy group updated."] = "Personverngruppen er oppdatert."; +App::$strings["Create a group of channels."] = "Lag en gruppe av kanaler."; +App::$strings["Privacy group name: "] = "Personverngruppens navn:"; +App::$strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; +App::$strings["Privacy group removed."] = "Personverngruppen er fjernet."; +App::$strings["Unable to remove privacy group."] = "Ikke i stand til å fjerne personverngruppen."; +App::$strings["Privacy group editor"] = "Personverngruppebehandler"; +App::$strings["Members"] = "Medlemmer"; +App::$strings["All Connected Channels"] = "Alle tilkoblede kanaler"; +App::$strings["Click on a channel to add or remove."] = "Klikk på en kanal for å legge til eller fjerne."; +App::$strings["Share content from Firefox to \$Projectname"] = "Del innhold fra Firefox til \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Skru på Firefox \$Projectname tilbyderen"; +App::$strings["Authorize application connection"] = "Tillat programforbindelse"; +App::$strings["Return to your app and insert this Securty Code:"] = "Gå tilbake til din app og legg inn denne sikkerhetskoden:"; +App::$strings["Please login to continue."] = "Vennligst logg inn for å fortsette."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vil du tillate dette programmet å få tilgang til dine innlegg og kontakter, og/eller lage nye innlegg for deg?"; +App::$strings["Documentation Search"] = "Søk i dokumentasjon"; +App::$strings["Help:"] = "Hjelp:"; +App::$strings["Help"] = "Hjelp"; +App::$strings["\$Projectname Documentation"] = "\$Projectname dokumentasjon"; +App::$strings["Permission Denied."] = "Tillatelse avvist."; +App::$strings["File not found."] = "Filen ble ikke funnet."; +App::$strings["Edit file permissions"] = "Endre filtillatelser"; +App::$strings["Set/edit permissions"] = "Angi/endre tillatelser"; +App::$strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; +App::$strings["Return to file list"] = "Gå tilbake til filoversikten"; +App::$strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; +App::$strings["Share this file"] = "Del denne filen"; +App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; +App::$strings["Notify your contacts about this file"] = "Varsle dine kontakter om denne filen"; +App::$strings["Apps"] = "Apper"; +App::$strings["Item not available."] = "Elementet er ikke tilgjengelig."; +App::$strings["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"; +App::$strings["Imported file is empty."] = "Importert fil er tom."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Advarsel: databaseversjoner avviker med %1\$d oppdateringer."; +App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; +App::$strings["No channel. Import failed."] = "Ingen kanal. Import mislyktes."; +App::$strings["Import completed."] = "Import ferdig."; +App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; +App::$strings["Import Channel"] = "Importer kanal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Bruk dette skjemaet for å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente inn kanalidentiteten fra den gamle tjeneren/huben via nettverket eller ved å bruke en eksportfil."; +App::$strings["File to Upload"] = "Fil som skal lastes opp"; +App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; +App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; +App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; +App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; +App::$strings["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["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."; +App::$strings["Duplicate post suppressed."] = "Duplikat av innlegg forhindret."; +App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; +App::$strings["Unable to obtain post information from database."] = "Ikke i stand til å få tak i informasjon om innlegg fra databasen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nådd din grense på %1$.0f startinnlegg."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nådd din grense på %1$.0f websider."; +App::$strings["Layouts"] = "Layout"; +App::$strings["Comanche page description language help"] = "Hjelp med Comanche sidebeskrivelsesspråk"; +App::$strings["Layout Description"] = "Layout-beskrivelse"; +App::$strings["Download PDL file"] = "Last ned PDL-fil"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Velkommen til %s"; +App::$strings["First Name"] = "Fornavn"; +App::$strings["Last Name"] = "Etternavn"; +App::$strings["Nickname"] = "Kallenavn"; +App::$strings["Full Name"] = "Fullt navn"; +App::$strings["Email"] = "E-post"; +App::$strings["Profile Photo"] = "Profilbilde"; +App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; +App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; +App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; +App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; +App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; +App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; +App::$strings["Timezone"] = "Tidssone"; +App::$strings["Homepage URL"] = "Hjemmeside URL"; +App::$strings["Language"] = "Språk"; +App::$strings["Birth Year"] = "Fødselsår"; +App::$strings["Birth Month"] = "Fødselsmåne"; +App::$strings["Birth Day"] = "Fødselsdag"; +App::$strings["Birthdate"] = "Fødselsdato"; +App::$strings["Gender"] = "Kjønn"; +App::$strings["Male"] = "Mannlig"; +App::$strings["Female"] = "Kvinnelig"; +App::$strings["webpage"] = "nettside"; +App::$strings["block"] = "byggekloss"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "meny"; +App::$strings["%s element installed"] = "%s element installert"; +App::$strings["%s element installation failed"] = "Installasjon av %s-element mislyktes"; +App::$strings["Like/Dislike"] = "Liker/Liker ikke"; +App::$strings["This action is restricted to members."] = "Denne handlingen er begrenset til medlemmer."; +App::$strings["Please 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["comment"] = "kommentar"; 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 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["%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."; +App::$strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; +App::$strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse."; +App::$strings["Please join us on \$Projectname"] = "Bli med oss på \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted."; +App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; +App::$strings["%d message sent."] = array( + 0 => "%d melding sendt.", + 1 => "%d meldinger sendt.", +); +App::$strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; +App::$strings["Send invitations"] = "Send invitasjoner"; +App::$strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; +App::$strings["Your message:"] = "Din melding:"; +App::$strings["Please join my community on \$Projectname."] = "Du er velkommen til å bli med i mitt fellesskap på \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Du må oppgi denne invitasjonskoden:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrer ved enhver \$Projectname-lokasjon (de er alle forbundet med hverandre)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Skriv inn min \$Projectname-adresse i nettstedets søkefelt."; +App::$strings["or visit"] = "eller besøke"; +App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; +App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; +App::$strings["Visible to:"] = "Synlig for:"; +App::$strings["Location not found."] = "Plassering er ikke funnet."; +App::$strings["Location lookup failed."] = "Oppslag på plassering mislyktes."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Vennligst velg en annen plassering som primær før du sletter gjeldende primære plassering."; +App::$strings["Syncing locations"] = "Synkroniserer plasseringer"; +App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; +App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; +App::$strings["Address"] = "Adresse"; +App::$strings["Primary"] = ""; +App::$strings["Drop"] = "Slett"; +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."; +App::$strings["Hub not found."] = "Hubben ble ikke funnet."; +App::$strings["Unable to lookup recipient."] = "Ikke i stand til å slå opp mottaker."; +App::$strings["Unable to communicate with requested channel."] = "Ikke i stand til å kommunisere med forespurt kanal."; +App::$strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet."; +App::$strings["Messages"] = "Meldinger"; +App::$strings["Message recalled."] = "Innlegg tilbakekalt."; +App::$strings["Conversation removed."] = "Samtale fjernet."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Utløper YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Forespurt kanal er ikke tilgjengelig i dette nettverket."; +App::$strings["Send Private Message"] = "Send privat melding"; +App::$strings["To:"] = "Til:"; +App::$strings["Subject:"] = "Emne:"; +App::$strings["Attach file"] = "Legg ved fil"; +App::$strings["Send"] = "Send"; +App::$strings["Set expiration date"] = "Angi utløpsdato"; +App::$strings["Delete message"] = "Slett melding"; +App::$strings["Delivery report"] = "Leveringsrapport"; +App::$strings["Recall message"] = "Tilbakekall innlegg"; +App::$strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt."; +App::$strings["Delete Conversation"] = "Slett samtale"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside."; +App::$strings["Send Reply"] = "Send svar"; +App::$strings["Your message for %s (%s):"] = "Din melding til %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; +App::$strings["Create a new channel"] = "Lag en ny kanal"; +App::$strings["Channel Manager"] = "Kanalstyring"; +App::$strings["Current Channel"] = "Gjeldende kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; +App::$strings["Default Channel"] = "Standardkanal"; +App::$strings["Make Default"] = "Gjør til standard"; +App::$strings["%d new messages"] = "%d nye meldinger"; +App::$strings["%d new introductions"] = "%d nye introduksjoner"; +App::$strings["Delegated Channel"] = ""; +App::$strings["No valid account found."] = "Ingen gyldig konto funnet."; +App::$strings["Password reset request issued. Check your email."] = "Forespørsel om å tilbakestille passord er mottatt. Sjekk e-posten din."; +App::$strings["Site Member (%s)"] = "Nettstedsmedlem (%s)"; +App::$strings["Password reset requested at %s"] = "Forespurt om å tilbakestille passord hos %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Forespørsel kunne ikke bekreftes. (Du kan ha sendt den inn tidligere.) Tilbakestilling av passord mislyktes."; +App::$strings["Password Reset"] = "Tilbakestill passord"; +App::$strings["Your password has been reset as requested."] = "Ditt passord har blitt tilbakestilt som forespurt."; +App::$strings["Your new password is"] = "Ditt nye passord er"; +App::$strings["Save or copy your new password - and then"] = "Lagre eller kopier ditt nye passord, og deretter kan du"; +App::$strings["click here to login"] = "klikke her for å logge inn"; +App::$strings["Your password may be changed from the 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"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unikt navn (ikke synlig på websiden) - påkrevet"; +App::$strings["Menu Title"] = "Menytittel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Synlig på websiden - la stå tomt for ingen tittel"; +App::$strings["Allow Bookmarks"] = "Tillat bokmerker"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; +App::$strings["Submit and proceed"] = "Send inn og fortsett"; +App::$strings["Menus"] = "Menyer"; +App::$strings["Bookmarks allowed"] = "Bokmerker tillatt"; +App::$strings["Delete this menu"] = "Slett denne menyen"; +App::$strings["Edit menu contents"] = "Endre menyinnholdet"; +App::$strings["Edit this menu"] = "Endre denne menyen"; +App::$strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; +App::$strings["Menu not found."] = "Menyen ble ikke funnet."; +App::$strings["Edit Menu"] = "Endre meny"; +App::$strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; +App::$strings["Menu name"] = "Menynavn"; +App::$strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; +App::$strings["Menu title"] = "Menytittel"; +App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; +App::$strings["Allow bookmarks"] = "Tillat bokmerker"; +App::$strings["Not found."] = "Ikke funnet."; App::$strings["__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"; +App::$strings["Search Results For:"] = "Søkeresultat for:"; +App::$strings["Privacy group is empty"] = "Personverngruppen er tom"; +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["Unable to create element."] = "Klarer ikke å lage element."; +App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; +App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; +App::$strings["Menu Item Permissions"] = "Menyelement Tillatelser"; +App::$strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; +App::$strings["Link Name"] = "Lenkenavn"; +App::$strings["Link or Submenu Target"] = "Lenke- eller undermeny-mål"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Skriv URL-en til lenken eller velg et menynavn for å lage en undermeny"; +App::$strings["Use magic-auth if available"] = "Bruk magic-autent hvis mulig"; +App::$strings["Open link in new window"] = "Åpne lenke i nytt vindu"; +App::$strings["Order in list"] = "Ordne i liste"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; +App::$strings["Submit and finish"] = "Send inn og avslutt"; +App::$strings["Submit and continue"] = "Send inn og fortsett"; +App::$strings["Menu:"] = "Meny:"; +App::$strings["Link Target"] = "Lenkemål"; +App::$strings["Edit menu"] = "Endre meny"; +App::$strings["Edit element"] = "Endre element"; +App::$strings["Drop element"] = "Slett element"; +App::$strings["New element"] = "Nytt element"; +App::$strings["Edit this menu container"] = "Endre denne menybeholderen"; +App::$strings["Add menu element"] = "Legg til menyelement"; +App::$strings["Delete this menu item"] = "Slett dette menyelementet"; +App::$strings["Edit this menu item"] = "Endre dette menyelementet"; +App::$strings["Menu item not found."] = "Menyelement ble ikke funnet."; +App::$strings["Menu item deleted."] = "Menyelement slettet."; +App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; +App::$strings["Edit Menu Element"] = "Endre menyelement"; +App::$strings["Link text"] = "Lenketekst"; +App::$strings["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"; @@ -169,32 +656,1144 @@ 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["Select"] = "Velg"; -App::$strings["Delete"] = "Slett"; +App::$strings["View all"] = "Vis alle"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Liker", + 1 => "Liker", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Liker ikke", + 1 => "Liker ikke", +); +App::$strings["Photo Tools"] = ""; +App::$strings["In This Photo:"] = "I dette bildet:"; +App::$strings["Map"] = "Kart"; +App::$strings["__ctx:noun__ Likes"] = "Liker"; +App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; +App::$strings["Close"] = "Lukk"; +App::$strings["View Album"] = "Vis album"; +App::$strings["Recent Photos"] = "Nye bilder"; +App::$strings["sent you a private message"] = "sendte deg en privat melding"; +App::$strings["added your channel"] = "la til din kanal"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[idag]"; +App::$strings["posted an event"] = "la ut en hendelse"; +App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; +App::$strings["Post successful."] = "Innlegg vellykket."; +App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; +App::$strings["Login failed."] = "Innlogging mislyktes."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Denne innstillingen krever spesiell behandling og redigering har blitt blokkert."; +App::$strings["Configuration Editor"] = "Konfigurasjonsbehandler"; +App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Advarsel: kanalen din kan slutte å virke ved endring av enkelte innstillinger. Vennligst forlat denne siden med mindre du er komfortabel med dette og vet hvordan du bruker denne funksjonen riktig."; +App::$strings["Layout updated."] = "Layout er oppdatert."; +App::$strings["Edit System Page Description"] = "Endre beskrivelsen av systemsiden"; +App::$strings["Layout not found."] = "Layouten ble ikke funnet."; +App::$strings["Module Name:"] = "Modulnavn:"; +App::$strings["Layout Help"] = "Layout-hjelp"; +App::$strings["Poke"] = "Prikk"; +App::$strings["Poke somebody"] = "Dult noen"; +App::$strings["Poke/Prod"] = "Prikke/oppildne"; +App::$strings["Poke, prod or do other things to somebody"] = "Dult, prikk eller gjør andre ting med noen"; +App::$strings["Recipient"] = "Mottaker"; +App::$strings["Choose what you wish to do to recipient"] = "Velg hva du ønsker å gjøre med mottakeren"; +App::$strings["Make this post private"] = "Gjør dette innlegget privat"; +App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; +App::$strings["Profile not found."] = "Profilen ble ikke funnet."; +App::$strings["Profile deleted."] = "Profilen er slettet."; +App::$strings["Profile-"] = "Profil-"; +App::$strings["New profile created."] = "Ny profil opprettet."; +App::$strings["Profile unavailable to clone."] = "Profilen er utilgjengelig for klonen."; +App::$strings["Profile unavailable to export."] = "Profilen er utilgjengelig for eksport."; +App::$strings["Profile Name is required."] = "Profilnavn er påkrevd."; +App::$strings["Marital Status"] = "Sivilstand"; +App::$strings["Romantic Partner"] = "Romantisk partner"; +App::$strings["Likes"] = "Liker"; +App::$strings["Dislikes"] = "Liker ikke"; +App::$strings["Work/Employment"] = "Arbeid/sysselsetting"; +App::$strings["Religion"] = "Religion"; +App::$strings["Political Views"] = "Politiske synspunkter"; +App::$strings["Sexual Preference"] = "Seksuelle preferanser"; +App::$strings["Homepage"] = "Hjemmeside"; +App::$strings["Interests"] = "Interesser"; +App::$strings["Profile updated."] = "Profilen er oppdatert."; +App::$strings["Hide your connections list from viewers of this profile"] = ""; +App::$strings["Edit Profile Details"] = "Endre profildetaljer"; +App::$strings["View this profile"] = "Vis denne profilen"; +App::$strings["Edit visibility"] = "Endre synlighet"; +App::$strings["Profile Tools"] = ""; +App::$strings["Change cover photo"] = ""; +App::$strings["Change profile photo"] = "Endre profilbilde"; +App::$strings["Create a new profile using these settings"] = "Lag en ny profil ved å bruke disse innstillingene"; +App::$strings["Clone this profile"] = "Klon denne profilen"; +App::$strings["Delete this profile"] = "Slett denne profilen"; +App::$strings["Add profile things"] = "Legg til profilting"; +App::$strings["Personal"] = "Personlig"; +App::$strings["Relation"] = ""; +App::$strings["Miscellaneous"] = "Forskjellig"; +App::$strings["Import profile from file"] = "Importer profil fra fil"; +App::$strings["Export profile to file"] = "Eksporter profil til fil"; +App::$strings["Your gender"] = ""; +App::$strings["Marital status"] = ""; +App::$strings["Sexual preference"] = ""; +App::$strings["Profile name"] = ""; +App::$strings["This is your default profile."] = "Dette er din standardprofil."; +App::$strings["Your full name"] = ""; +App::$strings["Title/Description"] = ""; +App::$strings["Street address"] = ""; +App::$strings["Locality/City"] = ""; +App::$strings["Region/State"] = ""; +App::$strings["Postal/Zip code"] = ""; +App::$strings["Country"] = ""; +App::$strings["Who (if applicable)"] = ""; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Eksempler: kari123, Kari Villiamsen, kari@example.com"; +App::$strings["Since (date)"] = ""; +App::$strings["Tell us about yourself"] = ""; +App::$strings["Hometown"] = ""; +App::$strings["Political views"] = ""; +App::$strings["Religious views"] = ""; +App::$strings["Keywords used in directory listings"] = ""; +App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; +App::$strings["Musical interests"] = "Musikkinteresser"; +App::$strings["Books, literature"] = "Bøker, litteratur"; +App::$strings["Television"] = "TV/fjernsyn"; +App::$strings["Film/Dance/Culture/Entertainment"] = ""; +App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; +App::$strings["Love/Romance"] = ""; +App::$strings["School/Education"] = ""; +App::$strings["Contact information and social networks"] = ""; +App::$strings["My other channels"] = "Mine andre kanaler"; +App::$strings["Profile Image"] = "Profilbilde"; +App::$strings["Edit Profiles"] = "Endre profiler"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Hold nede Shift-knappen og last siden på nytt eller tøm nettleserens mellomlager hvis det nye bildet ikke vises umiddelbart."; +App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; +App::$strings["Invalid profile identifier."] = "Ugyldig profil-identifikator."; +App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; +App::$strings["Visible To"] = "Synlig for"; +App::$strings["Public Hubs"] = "Offentlige huber"; +App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i \$Projectname-nettverket. Alle nettsteder i nettverket er forbundet så medlemskap på enhver av dem formidler medlemskap i nettverket som helhet. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Nettstedene selv kan gi tilleggsopplysninger."; +App::$strings["Hub URL"] = "Nettstedets URL"; +App::$strings["Access Type"] = "Tilgangstype"; +App::$strings["Registration Policy"] = "Retningslinjer for registrering"; +App::$strings["Stats"] = ""; +App::$strings["Software"] = ""; +App::$strings["Ratings"] = "Vurderinger"; +App::$strings["Rate"] = "Vurder"; +App::$strings["Website:"] = "Nettsted:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjerntliggende kanal [%s] (foreløpig ikke kjent på dette nettstedet)"; +App::$strings["Rating (this information is public)"] = "Vurdering (denne informasjonen er offentlig)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Velg om du vil forklare din vurdering (denne informasjonen er offentlig)"; +App::$strings["No ratings"] = "Ingen vurderinger"; +App::$strings["Rating: "] = "Vurdering:"; +App::$strings["Website: "] = "Nettsted:"; +App::$strings["Description: "] = "Beskrivelse:"; +App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; +App::$strings["# Accounts"] = "# Kontoer"; +App::$strings["# blocked accounts"] = "# blokkerte kontoer"; +App::$strings["# expired accounts"] = "# utgåtte kontoer"; +App::$strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; +App::$strings["# Channels"] = "# Kanaler"; +App::$strings["# primary"] = "# hoved"; +App::$strings["# clones"] = "# kloner"; +App::$strings["Message queues"] = "Meldingskøer"; +App::$strings["Your software should be updated"] = ""; +App::$strings["Administration"] = "Administrasjon"; +App::$strings["Summary"] = "Sammendrag"; +App::$strings["Registered accounts"] = "Registrerte kontoer"; +App::$strings["Pending registrations"] = "Ventende registreringer"; +App::$strings["Registered channels"] = "Registrerte kanaler"; +App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; +App::$strings["Version"] = "Versjon"; +App::$strings["Repository version (master)"] = ""; +App::$strings["Repository version (dev)"] = ""; +App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; +App::$strings["Default"] = "Standard"; +App::$strings["mobile"] = "mobil"; +App::$strings["experimental"] = "eksperimentell"; +App::$strings["unsupported"] = "ikke støttet"; +App::$strings["Yes - with approval"] = "Ja - med godkjenning"; +App::$strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; +App::$strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; +App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; +App::$strings["Site"] = "Nettsted"; +App::$strings["Registration"] = "Registrering"; +App::$strings["File upload"] = "Last opp fil"; +App::$strings["Policies"] = "Retningslinjer"; +App::$strings["Advanced"] = "Avansert"; +App::$strings["Site name"] = "Nettstedets navn"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Administrator Information"] = "Administratorinformasjon"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; +App::$strings["System language"] = "Systemspråk"; +App::$strings["System theme"] = "Systemtema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger"; +App::$strings["Mobile system theme"] = "Mobilt systemtema"; +App::$strings["Theme for mobile devices"] = "Tema for mobile enheter"; +App::$strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser"; +App::$strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)"; +App::$strings["Maximum image size"] = "Største bildestørrelse"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; +App::$strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; +App::$strings["Invitation only"] = "Kun inviterte"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Tillat bare nye medlemsregistreringer med en invitasjonskode. Ovenstående retningslinjer for registrering må være satt til Ja."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?"; +App::$strings["Register text"] = "Registreringstekst"; +App::$strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Nettstedets hjemmeside som vises til besøkende (standard: innloggingsboks)"; +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."] = "eksempel: 'public' for å vise offentlig strøm av innlegg, 'page/sys/home/ for å vise en system-webside called 'home\" eller 'include:home.html' for å inkludere en fil."; +App::$strings["Preserve site homepage URL"] = "Bevar URL-en til nettstedets hjemmeside"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenter hjemmesiden til nettstedet i en ramme fra den opprinnelige plasseringen i stedet for å omdirigere"; +App::$strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense."; +App::$strings["Allowed friend domains"] = "Tillatte vennedomener"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; +App::$strings["Allowed email domains"] = "Tillate e-postdomener"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt"; +App::$strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert."; +App::$strings["Verify Email Addresses"] = "Bekreft e-postadresser"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)."; +App::$strings["Force publish"] = "Tving publisering"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Kryss av for å tvinge alle profiler på dette nettstedet til å bli oppført i nettstedet sin katalog."; +App::$strings["Import Public Streams"] = "Importer offentlige innholdsstrømmer"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer og gi tilgang til offentlig innhold trukket inn fra andre nettsteder. Advarsel: dette innholdet er ikke moderert."; +App::$strings["Login on Homepage"] = ""; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenter en innloggingsboks til besøkende på hjemmesiden hvis ikke noe annet innhold har blitt konfigurert."; +App::$strings["Enable context help"] = ""; +App::$strings["Display contextual help for the current page when the help button is pressed."] = ""; +App::$strings["Directory Server URL"] = "Katalogtjener URL"; +App::$strings["Default directory server"] = "Standard katalogtjener"; +App::$strings["Proxy user"] = "Brukernavn mellomtjener"; +App::$strings["Proxy URL"] = "Mellomtjener URL"; +App::$strings["Network timeout"] = "Nettverk tidsavbrudd"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."; +App::$strings["Delivery interval"] = "Leveringsinterval"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere."; +App::$strings["Deliveries per process"] = "Leveranser per prosess"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Antall leveranser som forsøkes i en enkelt operativsystemprosess. Juster om nødvendig for å fininnstille systemets yteevne. Anbefaling: 1-5."; +App::$strings["Poll interval"] = "Spørreintervall"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."; +App::$strings["Maximum Load Average"] = "Største belastningsgjennomsnitt"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Antall dager før importert innhold (nettet/nettverk) utgår"; +App::$strings["0 for no expiration of imported content"] = "0 dersom importert innhold ikke skal utgå"; +App::$strings["Off"] = "Av"; +App::$strings["On"] = "På"; +App::$strings["Lock feature %s"] = "Lås funksjon %s"; +App::$strings["Manage Additional Features"] = "Håndter tilleggsfunksjoner"; +App::$strings["No server found"] = "Ingen tjener funnet"; +App::$strings["ID"] = "ID"; +App::$strings["for channel"] = "for kanalen"; +App::$strings["on server"] = "på tjener"; +App::$strings["Server"] = "Tjener"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = ""; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = ""; +App::$strings["https://youtube.com/
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"] = ""; +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."] = ""; +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."; +App::$strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."; +App::$strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; +App::$strings["No failed updates."] = "Ingen mislykkede oppdateringer."; +App::$strings["Failed Updates"] = "Mislykkede oppdateringer"; +App::$strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; +App::$strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; +App::$strings["Queue Statistics"] = "Køstatistikk"; +App::$strings["Total Entries"] = "Totalt antall oppføringer"; +App::$strings["Priority"] = "Prioritet"; +App::$strings["Destination URL"] = "Mål-URL"; +App::$strings["Mark hub permanently offline"] = "Merk hub som permanent offline"; +App::$strings["Empty queue for this hub"] = "Tøm køen for denne hubben"; +App::$strings["Last known contact"] = "Siste kjente kontakt"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s konto blokkert/ikke blokkert lenger", + 1 => "%s kontoer blokkert/ikke blokkert lenger", +); +App::$strings["%s account deleted"] = array( + 0 => "%s konto slettet", + 1 => "%s kontoer slettet", +); +App::$strings["Account not found"] = "Kontoen ble ikke funnet"; +App::$strings["Account '%s' deleted"] = "Kontoen '%s' slettet"; +App::$strings["Account '%s' blocked"] = "Kontoen '%s' blokkert"; +App::$strings["Account '%s' unblocked"] = "Kontoen '%s' er ikke blokkert lenger"; +App::$strings["Accounts"] = "Kontoer"; +App::$strings["select all"] = "velg alle"; +App::$strings["Registrations waiting for confirm"] = ""; +App::$strings["Request date"] = "Dato for forespørsel"; +App::$strings["No registrations."] = "Ingen registreringer."; +App::$strings["Deny"] = "Avslå"; +App::$strings["All Channels"] = "Alle kanaler"; +App::$strings["Register date"] = "Registreringsdato"; +App::$strings["Last login"] = "Siste innlogging"; +App::$strings["Expires"] = "Utløper"; +App::$strings["Service Class"] = "Tjenesteklasse"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kontoer vil bli slettet!\\n\\nAlt disse kontoene har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette disse valgte kontoene?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kontoen {0} vl bli slettet!\\n\\nAlt denne kontoen har lagt inn på dette nettstedet vil bli slettet permanent!\\n\\nEr du sikker på at du vil slette denne kontoen?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanal er sensurert/ikke sensurert lenger", + 1 => "%s kanaler er sensurert/ikke sensurert lenger", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s kanal med kode tillatt/ikke tillatt", + 1 => "%s kanaler med kode tillatt/ikke tillatt", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s kanal slettet", + 1 => "%s kanaler slettet", +); +App::$strings["Channel not found"] = "Kanalen ble ikke funnet"; +App::$strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet"; +App::$strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert"; +App::$strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; +App::$strings["Channel '%s' code allowed"] = "Kanal '%s' kode tillatt"; +App::$strings["Channel '%s' code disallowed"] = "Kanal '%s' kode ikke tillatt"; +App::$strings["Channels"] = "Kanaler"; +App::$strings["Censor"] = "Sensurer"; +App::$strings["Uncensor"] = "Ikke sensurer lenger"; +App::$strings["Allow Code"] = "Tillat kode"; +App::$strings["Disallow Code"] = "Ikke tillat kode"; +App::$strings["Channel"] = "Kanal"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?"; +App::$strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd."; +App::$strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; +App::$strings["Disable"] = "Skru av"; +App::$strings["Enable"] = "Skru på"; +App::$strings["Plugins"] = "Tilleggsfunksjoner"; +App::$strings["Toggle"] = "Skru av og på"; +App::$strings["Settings"] = "Innstillinger"; +App::$strings["Author: "] = "Forfatter:"; +App::$strings["Maintainer: "] = "Vedlikeholder:"; +App::$strings["Minimum project version: "] = "Minimum prosjektversjon:"; +App::$strings["Maximum project version: "] = "Maksimum prosjektversjon:"; +App::$strings["Minimum PHP version: "] = "Minimum PHP-versjon:"; +App::$strings["Requires: "] = "Krever:"; +App::$strings["Disabled - version incompatibility"] = "Skrudd av - versjonsinkompatibilitet"; +App::$strings["Enter the public git repository URL of the plugin repo."] = ""; +App::$strings["Plugin repo git URL"] = ""; +App::$strings["Custom repo name"] = ""; +App::$strings["(optional)"] = ""; +App::$strings["Download Plugin Repo"] = ""; +App::$strings["Install new repo"] = ""; +App::$strings["Install"] = "Installer"; +App::$strings["Manage Repos"] = ""; +App::$strings["Installed Plugin Repositories"] = ""; +App::$strings["Install a New Plugin Repository"] = ""; +App::$strings["Update"] = "Oppdater"; +App::$strings["Switch branch"] = ""; +App::$strings["No themes found."] = "Ingen temaer er funnet."; +App::$strings["Screenshot"] = "Skjermbilde"; +App::$strings["Themes"] = "Temaer"; +App::$strings["[Experimental]"] = "[Eksperimentelt]"; +App::$strings["[Unsupported]"] = "[Ingen støtte]"; +App::$strings["Log settings updated."] = "Logginnstillinger er oppdatert."; +App::$strings["Logs"] = "Logger"; +App::$strings["Clear"] = "Tøm"; +App::$strings["Debugging"] = "Feilsøking"; +App::$strings["Log file"] = "Loggfil"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = ""; +App::$strings["Log level"] = "Loggnivå"; +App::$strings["New Profile Field"] = "Nytt profilfelt"; +App::$strings["Field nickname"] = "Feltets kallenavn"; +App::$strings["System name of field"] = "Systemnavnet til feltet"; +App::$strings["Input type"] = "Inndata-type"; +App::$strings["Field Name"] = "Feltnavn"; +App::$strings["Label on profile pages"] = "Merkelapp på profilsider"; +App::$strings["Help text"] = "Hjelpetekst"; +App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; +App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; +App::$strings["Edit Profile Field"] = "Endre profilfelt"; +App::$strings["Profile Fields"] = ""; +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"; +App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."; +App::$strings["Passwords do not match."] = "Passordene er ikke like."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen."; +App::$strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning av nettstedets eier."; +App::$strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; +App::$strings["Registration on this hub is disabled."] = "Registrering ved dette nettstedet er skrudd av."; +App::$strings["Registration on this hub is by approval only."] = "Registrering ved dette nettstedet skjer på godkjenning."; +App::$strings["Register at another affiliated hub."] = "Registrer ved et annet tilsluttet nettsted."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen."; +App::$strings["Terms of Service"] = "Tjenesteavtale"; +App::$strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet."; +App::$strings["Your email address"] = "Din e-postadresse"; +App::$strings["Choose a password"] = "Velg et passord"; +App::$strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til"; +App::$strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; +App::$strings["no"] = "nei"; +App::$strings["yes"] = "ja"; +App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; +App::$strings["Register"] = "Registrer"; +App::$strings["Proceed to create your first channel"] = "Gå videre for å lage din første kanal"; +App::$strings["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"; +App::$strings["WARNING: "] = "ADVARSEL:"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."; +App::$strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; +App::$strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket"; +App::$strings["Remove Account"] = "Slett konto"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; +App::$strings["Remove This Channel"] = "Fjern denne kanalen"; +App::$strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket."; +App::$strings["Remove this channel and all its clones from the network"] = "Fjern denne kanalen og alle dens kloner fra nettverket"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard vil bare forekomsten av denne kanalen lokalisert på denne hubben bli fjernet fra nettverket"; +App::$strings["Remove Channel"] = "Fjern kanal"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi støtte på et problem under innloggingen med din OpenID. Vennligst sjekk at ID-en er stavet riktig."; +App::$strings["The error message was:"] = "Feilmeldingen var:"; +App::$strings["Authentication failed."] = "Autentisering mislyktes."; +App::$strings["Remote Authentication"] = "Fjernautentisering"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Skriv din kanaladresse (for eksempel channel@exampel.com)"; +App::$strings["Authenticate"] = "Autentiser"; +App::$strings["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["Not valid email."] = "Ikke gyldig e-post."; +App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; +App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; +App::$strings["Password verification failed."] = "Passordbekreftelsen mislyktes."; +App::$strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; +App::$strings["Password changed."] = "Passord endret."; +App::$strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; +App::$strings["Settings updated."] = "Innstillinger oppdatert."; +App::$strings["Add application"] = "Legg til program"; +App::$strings["Name of application"] = "Navn på program"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Omdirigering"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; +App::$strings["Icon url"] = "Ikon-URL"; +App::$strings["Optional"] = "Valgfritt"; +App::$strings["Application not found."] = "Programmet ble ikke funnet."; +App::$strings["Connected Apps"] = "Tilkoblede app-er"; +App::$strings["Client key starts with"] = "Klientnøkkel starter med"; +App::$strings["No name"] = "Ikke noe navn"; +App::$strings["Remove authorization"] = "Fjern tillatelse"; +App::$strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; +App::$strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger"; +App::$strings["Account Settings"] = "Kontoinnstillinger"; +App::$strings["Current Password"] = "Nåværende passord"; +App::$strings["Enter New Password"] = "Skriv nytt passord"; +App::$strings["Confirm New Password"] = "Bekreft nytt passord"; +App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; +App::$strings["Email Address:"] = "E-postadresse:"; +App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; +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"; +App::$strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; +App::$strings["Display Settings"] = "Visningsinnstillinger"; +App::$strings["Theme Settings"] = "Temainnstillinger"; +App::$strings["Custom Theme Settings"] = "Tilpassede temainnstillinger"; +App::$strings["Content Settings"] = "Innholdsinnstillinger"; +App::$strings["Display Theme:"] = "Visningstema:"; +App::$strings["Mobile Theme:"] = "Mobiltema:"; +App::$strings["Preload images before rendering the page"] = "Last inn bildene før gjengivelsen av siden"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Den personlige opplevelsen av lastetiden vil være lenger, men siden vil være klar når den vises"; +App::$strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; +App::$strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; +App::$strings["Maximum of 100 items"] = "Maksimum 100 elementer"; +App::$strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; +App::$strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; +App::$strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)"; +App::$strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus på kanalsiden"; +App::$strings["(comments displayed separately)"] = "(kommentarer vist separat)"; +App::$strings["Use blog/list mode on grid page"] = "Bruk blogg-/liste-modus på nettverkssiden"; +App::$strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshøyde for innhold (i pixler)"; +App::$strings["click to expand content exceeding this height"] = "klikk for å utvide innhold som overstiger denne høyden"; +App::$strings["Grid page max height of content (in pixels)"] = "Nettverkssidens makshøyde for innhold (i piksler)"; +App::$strings["Nobody except yourself"] = "Ingen unntatt deg selv"; +App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; +App::$strings["Approved connections"] = "Godkjente forbindelser"; +App::$strings["Any connections"] = "Enhver forbindelse"; +App::$strings["Anybody on this website"] = "Enhver ved dette nettstedet"; +App::$strings["Anybody in this network"] = "Enhver i dette nettverket"; +App::$strings["Anybody authenticated"] = "Enhver som er autentisert"; +App::$strings["Anybody on the internet"] = "Enhver på Internett"; +App::$strings["Publish your default profile in the network directory"] = "Publiser din standardprofil i nettverkskatalogen"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; +App::$strings["Your channel address is"] = "Din kanaladresse er"; +App::$strings["Channel Settings"] = "Kanalinnstillinger"; +App::$strings["Basic Settings"] = "Grunninnstillinger"; +App::$strings["Full Name:"] = "Fullt navn:"; +App::$strings["Your Timezone:"] = "Din tidssone:"; +App::$strings["Default Post Location:"] = "Standard plassering ved innlegg:"; +App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; +App::$strings["Use Browser Location:"] = "Bruk nettleseren sin plassering:"; +App::$strings["Adult Content"] = "Voksent innhold"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Sikkerhets- og personverninnstillinger"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Dine tillatelser er allerede satt. Klikk for å se/justere."; +App::$strings["Hide my online presence"] = "Skjul min tilstedeværelse online"; +App::$strings["Prevents displaying in your profile that you are online"] = "Forhindrer visning på din profil av at du er online "; +App::$strings["Simple Privacy Settings:"] = "Enkle personverninnstillinger:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)"; +App::$strings["Private - default private, never open or public"] = "Privat - standard er privat, aldri åpen eller offentlig"; +App::$strings["Blocked - default blocked to/from everybody"] = "Blokkert - standard blokkert til/fra alle"; +App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine innlegg"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofte brukt av fellesskapet for å merke upassende innhold i etterkant"; +App::$strings["Advanced Privacy Settings"] = "Avanserte personverninnstillinger"; +App::$strings["Expire other channel content after this many days"] = "Annet kanal innhold utløper etter så mange dager"; +App::$strings["0 or blank to use the website limit."] = ""; +App::$strings["This website expires after %d days."] = ""; +App::$strings["This website does not expire imported content."] = ""; +App::$strings["The website limit takes precedence if lower than your limit."] = ""; +App::$strings["Maximum Friend Requests/Day:"] = "Maksimalt antall venneforespørsler per dag:"; +App::$strings["May reduce spam activity"] = "Kan redusere søppelpostaktivitet"; +App::$strings["Default Post and Publish Permissions"] = ""; +App::$strings["Use my default audience setting for the type of object published"] = ""; +App::$strings["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"; +App::$strings["Notification Settings"] = "Varslingsinnstillinger"; +App::$strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; +App::$strings["accepting a friend request"] = "aksepterer en venneforespørsel"; +App::$strings["joining a forum/community"] = "blir med i et forum/miljø"; +App::$strings["making an interesting profile change"] = "gjør en interessant profilendring"; +App::$strings["Send a notification email when:"] = "Send en varsel-e-post når:"; +App::$strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; +App::$strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; +App::$strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; +App::$strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; +App::$strings["You receive a private message"] = "Du mottar en privat melding"; +App::$strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; +App::$strings["You are tagged in a post"] = "Du merkes i et innlegg"; +App::$strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; +App::$strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; +App::$strings["Unseen grid activity"] = "Usett nettverksaktivitet"; +App::$strings["Unseen channel activity"] = "Usett kanalaktivitet"; +App::$strings["Unseen private messages"] = "Usette private meldinger"; +App::$strings["Recommended"] = "Anbefalt"; +App::$strings["Upcoming events"] = "Kommende hendelser"; +App::$strings["Events today"] = "Hendelser idag"; +App::$strings["Upcoming birthdays"] = "Kommende fødselsdager"; +App::$strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; +App::$strings["System (personal) notifications"] = "System (personlige) varslinger"; +App::$strings["System info messages"] = "System infomeldinger"; +App::$strings["System critical alerts"] = "System kritiske varsel"; +App::$strings["New connections"] = "Nye forbindelser"; +App::$strings["System Registrations"] = "Systemregistreringer"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"; +App::$strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; +App::$strings["Must be greater than 0"] = "Må være større enn 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger for konto/sidetype"; +App::$strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!"; +App::$strings["Miscellaneous Settings"] = "Diverse innstillinger"; +App::$strings["Default photo upload folder"] = "Standard mappe for opplasting av bilder"; +App::$strings["%Y - current year, %m - current month"] = "%Y - nåværende år, %m - nåværende måned"; +App::$strings["Default file upload folder"] = "Standard mappe for opplasting av filer"; +App::$strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; +App::$strings["Remove this channel."] = "Fjern denne kanalen."; +App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname Firefox Share tilbyder"; +App::$strings["Start calendar week on monday"] = "Start uken med mandag i kalenderen"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname-tjener - oppsett"; +App::$strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; +App::$strings["Could not create table."] = "Kunne ikke lage tabellen."; +App::$strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Systemsjekk"; +App::$strings["Check again"] = "Sjekk igjen"; +App::$strings["Database connection"] = "Databaseforbindelse"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "For å installere \$Projectname må du oppgi hvordan din database kan kontaktes."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; +App::$strings["Database Server Name"] = "Navn på databasetjener"; +App::$strings["Default is 127.0.0.1"] = "Standard er 127.0.0.1"; +App::$strings["Database Port"] = "Databaseport"; +App::$strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; +App::$strings["Database Login Name"] = "Database innloggingsnavn"; +App::$strings["Database Login Password"] = "Database innloggingspassord"; +App::$strings["Database Name"] = "Databasenavn"; +App::$strings["Database Type"] = "Databasetype"; +App::$strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; +App::$strings["Website URL"] = "Nettstedets URL"; +App::$strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; +App::$strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; +App::$strings["Site settings"] = "Nettstedets innstillinger"; +App::$strings["Enable \$Projectname advanced features?"] = "Skru på avanserteWhat next"] = "

Hva gjenstår

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; +App::$strings["Files: shared with me"] = "Filer: delt med meg"; +App::$strings["NEW"] = "NY"; +App::$strings["Remove all files"] = "Fjern alle filer"; +App::$strings["Remove this file"] = "Fjern denne filen"; +App::$strings["Version %s"] = "Versjon %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installerte tilleggsfunksjoner/tillegg/apper:"; +App::$strings["No installed plugins/addons/apps"] = "Ingen installerte tilleggsfunksjoner/tillegg/apper"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en \$Projectname-hub - et globalt samhandlende nettverk av desentraliserte nettsteder med innbygget personvern."; +App::$strings["Tag: "] = "Merkelapp:"; +App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; +App::$strings["Current load average: "] = "Gjeldende belastningsgjennomsnitt:"; +App::$strings["Running at web location"] = "Kjører på webplasseringen"; +App::$strings["Please visit 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["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; +App::$strings["Source created."] = "Kilden er laget."; +App::$strings["Source updated."] = "Kilden er oppdatert."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanalkilder"; +App::$strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; +App::$strings["New Source"] = "Ny kilde"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; +App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; +App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; +App::$strings["Channel Name"] = "Kanalnavn"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = ""; +App::$strings["Source not found."] = "Kilden ble ikke funnet."; +App::$strings["Edit Source"] = "Endre kilde"; +App::$strings["Delete Source"] = "Slett kilde"; +App::$strings["Source removed"] = "Kilden er fjernet"; +App::$strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s stopped å følge %2\$s sin %3\$s"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; +App::$strings["Ignore/Hide"] = "Ignorer/Skjul"; +App::$strings["post"] = "innlegg"; +App::$strings["comment"] = "kommentar"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; +App::$strings["Tag removed"] = "Merkelapp fjernet"; +App::$strings["Remove Item Tag"] = "Fjern merkelapp fra element"; +App::$strings["Select a tag to remove: "] = "Velg merkelapp å fjerne:"; +App::$strings["Thing updated"] = "Tingen er oppdatert"; +App::$strings["Object store: failed"] = "Objektlagring: mislyktes"; +App::$strings["Thing added"] = "Ting lagt til"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Vis ting"; +App::$strings["item not found."] = "element ble ikke funnet."; +App::$strings["Edit Thing"] = "Endre ting"; +App::$strings["Select a profile"] = "Velg en profil"; +App::$strings["Post an activity"] = "Legg inn en aktivitet"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sender bare til seere av den aktuelle profilen"; +App::$strings["Name of thing e.g. something"] = "Navn på ting for eksempel noe"; +App::$strings["URL of thing (optional)"] = "URL til ting (valgfritt)"; +App::$strings["URL for photo of thing (optional)"] = "URL til bilde av ting (valgfritt)"; +App::$strings["Add Thing to your Profile"] = "Legg til ting i din profil"; +App::$strings["Export Channel"] = "Eksporter kanal"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en fil. Denne er en sikkerhetskopi av dine forbindelser, tillatelser, profil og grunnleggende data, som kan brukes til å importere dine data til en ny hub, men den tar ikke med innholdet."; +App::$strings["Export Content"] = "Eksporter innhold"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og det nyeste innholdet til en JSON-sikkerhetskopi, som kan gjenopprettes eller importeres til en annen hub. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og flere måneder av innholdet ditt. Denne filen kan være SVÆRT stor. Vennligst vær tålmodig - det kan ta flere minutter før denne nedlastningen begynner."; +App::$strings["Export your posts from a given year."] = "Eksporter dine innlegg fra et bestemt år"; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Du kan også eksportere dine innlegg og samtaler for et bestemt år eller måned. Juster datoen i din nettlesers adresselinje for å velge andre datoer. Hvis eksporten feiler (muligens på grunn av utilstrekkelig minne på din hub), vennligst prøv igjen med et mer begrenset datoområde."; +App::$strings["To select all posts for a given year, such as this year, visit %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["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"; +App::$strings["Room not found."] = "Rommet ble ikke funnet."; +App::$strings["Room is full"] = "Rommet er fullt"; +App::$strings["\$Projectname Notification"] = "\$Projectname varsling"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Tusen takk,"; +App::$strings["%s Administrator"] = "%s administrator"; +App::$strings["%s "] = "%s "; +App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Ny melding mottatt hos %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding på %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; +App::$strings["a private message"] = "en privat melding"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]a %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]din %4\$s[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] Kommentar til samtale #%1\$d av %2\$s"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte på et element eller en samtale du følger"; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %s skrev et innlegg på din profilvegg"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg på din profilvegg på %3\$s"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg på [zrl=%3\$s]din vegg[/zrl]"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %s merket deg"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg på %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s prikket deg"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg på %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %s merket ditt innlegg"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg på %3\$s"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Introduksjon mottatt"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespørsel om forbindelse fra '%2\$s' hos %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespørsel om forbindelse[/zrl] fra %3\$s."; +App::$strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Venneforslag mottatt"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespørsel fra '%2\$s' hos %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har mottatt [zrl=%2\$s]et venneforslaget[/zrl] angående %3\$s fra %4\$s. "; +App::$strings["Name:"] = "Navn:"; +App::$strings["Photo:"] = "Bilde:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; +App::$strings["[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["Private Message"] = "Privat melding"; +App::$strings["Select"] = "Velg"; +App::$strings["Save to Folder"] = "Lagre i mappe"; +App::$strings["I will attend"] = "Jeg vil delta"; +App::$strings["I will not attend"] = "Jeg deltar ikke"; +App::$strings["I might attend"] = "Jeg vil kanskje delta"; +App::$strings["I agree"] = "Jeg er enig"; +App::$strings["I disagree"] = "Jeg er uenig"; +App::$strings["I abstain"] = "Jeg avstår"; +App::$strings["Add Star"] = "Legg til stjerne"; +App::$strings["Remove Star"] = "Fjern stjerne"; +App::$strings["Toggle Star Status"] = "Skru av og på stjernestatus"; +App::$strings["starred"] = "stjernemerket"; App::$strings["Message signature validated"] = "Innleggets signatur er bekreftet"; App::$strings["Message signature incorrect"] = "Innleggets signatur er feil"; +App::$strings["Add Tag"] = "Legg til merkelapp"; +App::$strings["like"] = "liker"; +App::$strings["dislike"] = "misliker"; +App::$strings["Share This"] = "Del dette"; +App::$strings["share"] = "del"; +App::$strings["Delivery Report"] = "Leveringsrapport"; +App::$strings["%d comment"] = array( + 0 => "%d kommentar", + 1 => "%d kommentarer", +); +App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; +App::$strings["to"] = "til"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "vegg-til-vegg"; +App::$strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; +App::$strings["from %s"] = "fra %s"; +App::$strings["last edited: %s"] = "sist endret: %s"; +App::$strings["Expires: %s"] = "Utløper: %s"; +App::$strings["Save Bookmarks"] = "Lagre bokmerker"; +App::$strings["Add to Calendar"] = "Legg til i kalender"; +App::$strings["Mark all seen"] = "Merk alle som sett"; +App::$strings["[+] show all"] = "[+] Vis alle"; +App::$strings["Bold"] = "Uthevet"; +App::$strings["Italic"] = "Kursiv"; +App::$strings["Underline"] = "Understreket"; +App::$strings["Quote"] = "Sitat"; +App::$strings["Code"] = "Kode"; +App::$strings["Image"] = "Bilde"; +App::$strings["Insert Link"] = "Sett inn lenke"; +App::$strings["Video"] = "Video"; +App::$strings["No username found in import file."] = "Ingen brukernavn ble funnet i importfilen."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan ikke finne DNS-informasjon om databasetjener '%s'"; +App::$strings["Categories"] = "Kategorier"; +App::$strings["Tags"] = "Merkelapper"; +App::$strings["Keywords"] = "Nøkkelord"; +App::$strings["have"] = "har"; +App::$strings["has"] = "har"; +App::$strings["want"] = "ønsker"; +App::$strings["wants"] = "ønsker"; +App::$strings["likes"] = "liker"; +App::$strings["dislikes"] = "misliker"; +App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +App::$strings["Starts:"] = "Starter:"; +App::$strings["Finishes:"] = "Slutter:"; +App::$strings["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; +App::$strings["Not specified"] = "Ikke spesifisert"; +App::$strings["Needs Action"] = "Trenger handling"; +App::$strings["Completed"] = "Ferdig"; +App::$strings["In Process"] = "Igang"; +App::$strings["Cancelled"] = "Avbrutt"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; +App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; +App::$strings["(Unknown)"] = "(Ukjent)"; +App::$strings["Visible to anybody on the internet."] = "Synlig for enhver på Internett."; +App::$strings["Visible to you only."] = "Synlig bare for deg."; +App::$strings["Visible to anybody in this network."] = "Synlig for enhver i dette nettverket."; +App::$strings["Visible to anybody authenticated."] = "Synlig for enhver som er autentisert."; +App::$strings["Visible to anybody on %s."] = "Synlig for alle på %s."; +App::$strings["Visible to all connections."] = "Synlig for alle forbindelser."; +App::$strings["Visible to approved connections."] = "Synlig for godkjente forbindelser."; +App::$strings["Visible to specific connections."] = "Synlig for spesifikke forbindelser."; +App::$strings["Privacy group is empty."] = "Personverngruppen er tom."; +App::$strings["Privacy group: %s"] = "Personverngruppe: %s"; +App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; +App::$strings["profile photo"] = "profilbilde"; +App::$strings["No recipient provided."] = "Ingen mottaker angitt."; +App::$strings["[no subject]"] = "[ikke noe emne]"; +App::$strings["Unable to determine sender."] = "Kan ikke avgjøre avsender."; +App::$strings["Stored post could not be verified."] = "Lagret innlegg kunne ikke bekreftes."; +App::$strings["prev"] = "forrige"; +App::$strings["first"] = "første"; +App::$strings["last"] = "siste"; +App::$strings["next"] = "neste"; +App::$strings["older"] = "eldre"; +App::$strings["newer"] = "nyere"; +App::$strings["No connections"] = "Ingen forbindelser"; +App::$strings["View all %s connections"] = "Vis alle %s forbindelser"; +App::$strings["poke"] = "prikk"; +App::$strings["poked"] = "prikket"; +App::$strings["ping"] = "varsle"; +App::$strings["pinged"] = "varslet"; +App::$strings["prod"] = "oppildne"; +App::$strings["prodded"] = "oppildnet"; +App::$strings["slap"] = "daske"; +App::$strings["slapped"] = "dasket"; +App::$strings["finger"] = "fingre"; +App::$strings["fingered"] = "fingret"; +App::$strings["rebuff"] = "tilbakevise"; +App::$strings["rebuffed"] = "tilbakeviste"; +App::$strings["happy"] = "glad"; +App::$strings["sad"] = "trist"; +App::$strings["mellow"] = "dempet"; +App::$strings["tired"] = "trøtt"; +App::$strings["perky"] = "oppkvikket"; +App::$strings["angry"] = "sint"; +App::$strings["stupefied"] = "lamslått"; +App::$strings["puzzled"] = "forundret"; +App::$strings["interested"] = "interessert"; +App::$strings["bitter"] = "bitter"; +App::$strings["cheerful"] = "munter"; +App::$strings["alive"] = "levende"; +App::$strings["annoyed"] = "irritert"; +App::$strings["anxious"] = "nervøs"; +App::$strings["cranky"] = "gretten"; +App::$strings["disturbed"] = "foruroliget"; +App::$strings["frustrated"] = "frustrert"; +App::$strings["depressed"] = "lei seg"; +App::$strings["motivated"] = "motivert"; +App::$strings["relaxed"] = "avslappet"; +App::$strings["surprised"] = "overrasket"; +App::$strings["Monday"] = "mandag"; +App::$strings["Tuesday"] = "tirsdag"; +App::$strings["Wednesday"] = "onsdag"; +App::$strings["Thursday"] = "torsdag"; +App::$strings["Friday"] = "fredag"; +App::$strings["Saturday"] = "lørdag"; +App::$strings["Sunday"] = "søndag"; +App::$strings["January"] = "januar"; +App::$strings["February"] = "februar"; +App::$strings["March"] = "mars"; +App::$strings["April"] = "april"; +App::$strings["May"] = "mai"; +App::$strings["June"] = "juni"; +App::$strings["July"] = "juli"; +App::$strings["August"] = "august"; +App::$strings["September"] = "september"; +App::$strings["October"] = "oktober"; +App::$strings["November"] = "november"; +App::$strings["December"] = "desember"; +App::$strings["Unknown Attachment"] = "Ukjent vedlegg"; +App::$strings["unknown"] = "ukjent"; +App::$strings["remove category"] = "fjern kategori"; +App::$strings["remove from file"] = "fjern fra fil"; +App::$strings["default"] = "standard"; +App::$strings["Page layout"] = "Sidens layout"; +App::$strings["You can create your own with the layouts tool"] = "Du kan lage din egen med layout-verktøyet"; +App::$strings["Page content type"] = "Sidens innholdstype"; +App::$strings["Select an alternate language"] = "Velg et annet språk"; +App::$strings["activity"] = "aktivitet"; +App::$strings["Design Tools"] = "Designverktøy"; +App::$strings["Pages"] = "Sider"; +App::$strings["System"] = "System"; +App::$strings["New App"] = ""; +App::$strings["Suggestions"] = "Forslag"; +App::$strings["See more..."] = "Se mer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du har %1$.0f av %2$.0f tillate forbindelser."; +App::$strings["Add New Connection"] = "Legg til ny forbindelse"; +App::$strings["Enter channel address"] = "Skriv kanaladressen"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Eksempel: ola@eksempel.no, https://eksempel.no/kari"; +App::$strings["Notes"] = "Merknader"; +App::$strings["Remove term"] = "Fjern begrep"; +App::$strings["Saved Searches"] = "Lagrede søk"; +App::$strings["add"] = "legg til"; +App::$strings["Saved Folders"] = "Lagrede mapper"; +App::$strings["Everything"] = "Alt"; +App::$strings["Archives"] = "Arkiv"; +App::$strings["Refresh"] = "Forny"; +App::$strings["Account settings"] = "Kontoinnstillinger"; +App::$strings["Channel settings"] = "Kanalinnstillinger"; +App::$strings["Additional features"] = "Tilleggsfunksjoner"; +App::$strings["Feature/Addon settings"] = "Funksjons-/Tilleggsinnstillinger"; +App::$strings["Display settings"] = "Visningsinnstillinger"; +App::$strings["Manage locations"] = ""; +App::$strings["Export channel"] = "Eksporter kanal"; +App::$strings["Connected apps"] = "Tilkoblede app-er"; +App::$strings["Premium Channel Settings"] = "Premiumkanal-innstillinger"; +App::$strings["Private Mail Menu"] = "Meny for privat post"; +App::$strings["Combined View"] = "Kombinert visning"; +App::$strings["Inbox"] = "Innboks"; +App::$strings["Outbox"] = "Utboks"; +App::$strings["New Message"] = "Ny melding"; +App::$strings["Conversations"] = "Samtaler"; +App::$strings["Received Messages"] = "Mottatte meldinger"; +App::$strings["Sent Messages"] = "Sendte meldinger"; +App::$strings["No messages."] = "Ingen meldinger."; +App::$strings["Delete conversation"] = "Slett samtale"; +App::$strings["Events Menu"] = "Meny for hendelser"; +App::$strings["Day View"] = "Dag"; +App::$strings["Week View"] = "Uke"; +App::$strings["Month View"] = "Måned"; +App::$strings["Events Tools"] = "Kalenderverktøy"; +App::$strings["Export Calendar"] = "Eksporter kalender"; +App::$strings["Import Calendar"] = "Importer kalender"; +App::$strings["Chatrooms"] = "Chatrom"; +App::$strings["Overview"] = ""; +App::$strings["Chat Members"] = ""; +App::$strings["Bookmarked Chatrooms"] = "Bokmerkede chatrom"; +App::$strings["Suggested Chatrooms"] = "Foreslåtte chatrom"; +App::$strings["photo/image"] = "foto/bilde"; +App::$strings["Click to show more"] = ""; +App::$strings["Rating Tools"] = "Vurderingsverktøy"; +App::$strings["Rate Me"] = "Vurder meg"; +App::$strings["View Ratings"] = "Vis vurderinger"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Oppgaver"; +App::$strings["Documentation"] = "Dokumentasjon"; +App::$strings["Project/Site Information"] = "Prosjekt-/Nettstedsinformasjon"; +App::$strings["For Members"] = "For medlemmer"; +App::$strings["For Administrators"] = "For administratorer"; +App::$strings["For Developers"] = "For utviklere"; +App::$strings["Member registrations waiting for confirmation"] = ""; +App::$strings["Inspect queue"] = "Inspiser kø"; +App::$strings["DB updates"] = "Databaseoppdateringer"; +App::$strings["Admin"] = "Administrator"; +App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; +App::$strings["Channel is blocked on this site."] = "Kanalen er blokkert på dette nettstedet."; +App::$strings["Channel location missing."] = "Kanalplassering mangler."; +App::$strings["Response from remote channel was incomplete."] = "Svaret fra den andre kanalen var ikke komplett."; +App::$strings["Channel was deleted and no longer exists."] = "Kanalen er slettet og finnes ikke lenger."; +App::$strings["Protocol disabled."] = "Protokollen er avskrudd."; +App::$strings["Channel discovery failed."] = "Kanaloppdagelse mislyktes."; +App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; +App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; +App::$strings["Public Timeline"] = "Offentlig tidslinje"; +App::$strings["Image/photo"] = "Bilde/fotografi"; +App::$strings["Encrypted content"] = "Kryptert innhold"; +App::$strings["Install %s element: "] = "Installer %s element:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dette innlegget inneholder det installerbare elementet %s, men du mangler tillatelse til å installere det på dette nettstedet."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev følgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; +App::$strings["spoiler"] = ""; +App::$strings["Different viewers will see this text differently"] = "Denne teksten vil se forskjellig ut for ulike besøkende"; +App::$strings["$1 wrote:"] = "$1 skrev:"; +App::$strings["Directory Options"] = "Kataloginnstillinger"; +App::$strings["Safe Mode"] = "Trygt modus"; +App::$strings["Public Forums Only"] = "Bare offentlige forum"; +App::$strings["This Website Only"] = "Kun dette nettstedet"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Skjemaets sikkerhetspollett var ikke gyldig. Dette skjedde antakelig fordi skjemaet har vært åpnet for lenge (>3 timer) før det ble sendt inn."; +App::$strings["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[" from %s"] = "fra %s"; -App::$strings["last edited: %s"] = "sist endret: %s"; -App::$strings["Expires: %s"] = "Utløper: %s"; App::$strings["View in context"] = "Vis i sammenheng"; -App::$strings["Please wait"] = "Vennligst vent"; App::$strings["remove"] = "fjern"; -App::$strings["Loading..."] = "Laster..."; App::$strings["Delete Selected Items"] = "Slett valgte elementer"; App::$strings["View Source"] = "Vis kilde"; App::$strings["Follow Thread"] = "Følg tråd"; -App::$strings["View Status"] = "Vis status"; -App::$strings["View Profile"] = "Vis profil"; -App::$strings["View Photos"] = "Vis bilder"; -App::$strings["Matrix Activity"] = "Matrix-aktivitet"; -App::$strings["Edit Contact"] = "Endre kontakt"; -App::$strings["Send PM"] = "Send privat melding"; -App::$strings["Poke"] = "Prikk"; -App::$strings["Unknown"] = "Ukjent"; +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( @@ -212,47 +1811,16 @@ App::$strings[", and %d other people"] = array( ); App::$strings["%s like this."] = "%s liker dette."; App::$strings["%s don't like this."] = "%s liker ikke dette."; -App::$strings["Visible to everybody"] = "Synlig for alle"; -App::$strings["Please enter a link URL:"] = "Vennligst skriv inn en lenke URL:"; -App::$strings["Please enter a video link/URL:"] = "Vennligst skriv en videolenke/URL:"; -App::$strings["Please enter an audio link/URL:"] = "Vennligst skriv en lydlenke/URL:"; -App::$strings["Tag term:"] = "Merkelapp:"; -App::$strings["Save to Folder:"] = "Lagre til mappe:"; -App::$strings["Where are you right now?"] = "Hvor er du akkurat nå?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Utløper YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Del"; -App::$strings["Page link title"] = "Sidens lenketittel"; -App::$strings["Post as"] = "Lag innlegg som"; -App::$strings["Bold"] = "Uthevet"; -App::$strings["Italic"] = "Kursiv"; -App::$strings["Underline"] = "Understreket"; -App::$strings["Quote"] = "Sitat"; -App::$strings["Code"] = "Kode"; -App::$strings["Upload photo"] = "Last opp bilde"; -App::$strings["upload photo"] = "last opp bilde"; -App::$strings["Attach file"] = "Legg ved fil"; -App::$strings["attach file"] = "legg ved fil"; -App::$strings["Insert web link"] = "Sett inn web-lenke"; -App::$strings["web link"] = "web-lenke"; -App::$strings["Insert video link"] = "Sett inn videolenke"; -App::$strings["video link"] = "videolenke"; -App::$strings["Insert audio link"] = "Sett inn lenke til lyd"; -App::$strings["audio link"] = "lenke til lyd"; App::$strings["Set your location"] = "Angi din plassering"; -App::$strings["set location"] = "angi plassering"; -App::$strings["Toggle voting"] = "Skru av eller på stemming"; App::$strings["Clear browser location"] = "Fjern nettleserplassering"; -App::$strings["clear location"] = "fjern plassering"; -App::$strings["Title (optional)"] = "Tittel (valgfri)"; +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["Permission settings"] = "Tillatelser - innstillinger"; -App::$strings["permissions"] = "tillatelser"; -App::$strings["Public post"] = "Offentlig innlegg"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Eksempel: ola@eksempel.no, kari@eksempel.no"; -App::$strings["Set expiration date"] = "Angi utløpsdato"; -App::$strings["Encrypt text"] = "Krypter tekst"; +App::$strings["Set publish date"] = "Angi publiseringsdato"; App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Avbryt"; App::$strings["Discover"] = "Oppdage"; App::$strings["Imported public streams"] = "Importerte offentlige strømmer"; App::$strings["Commented Order"] = "Kommentert"; @@ -260,30 +1828,18 @@ 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["New"] = "Nye"; 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["Channel"] = "Kanal"; App::$strings["Status Messages and Posts"] = "Statusmeldinger og -innlegg"; App::$strings["About"] = "Om"; App::$strings["Profile Details"] = "Profildetaljer"; -App::$strings["Photos"] = "Bilder"; App::$strings["Photo Albums"] = "Fotoalbum"; -App::$strings["Files"] = "Filer"; App::$strings["Files and Storage"] = "Filer og lagring"; -App::$strings["Chatrooms"] = "Chatrom"; -App::$strings["Bookmarks"] = "Bokmerker"; App::$strings["Saved Bookmarks"] = "Lagrede bokmerker"; -App::$strings["Webpages"] = "Websider"; App::$strings["Manage Webpages"] = "Håndtere websider"; -App::$strings["View all"] = "Vis alle"; -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Liker ikke", - 1 => "Liker ikke", -); App::$strings["__ctx:noun__ Attending"] = array( 0 => "Deltar", 1 => "Deltar", @@ -308,428 +1864,12 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Avstår", 1 => "Avstår", ); -App::$strings["Permission denied."] = "Tillatelse avslått."; -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["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["Delete this item?"] = "Slett dette elementet?"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["[+] show all"] = "[+] Vis alle"; -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"; -App::$strings["Secret Passphrase"] = "Hemmelig passordsetning"; -App::$strings["Passphrase hint"] = "Hint om passordsetning"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; -App::$strings["close all"] = "Lukk alle"; -App::$strings["Nothing new here"] = "Ikke noe nytt her"; -App::$strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; -App::$strings["Rating"] = "Vurdering"; -App::$strings["Describe (optional)"] = "Beskriv (valgfritt)"; -App::$strings["Submit"] = "Send"; -App::$strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "siden"; -App::$strings["from now"] = "fra nå"; -App::$strings["less than a minute"] = "mindre enn ett minutt"; -App::$strings["about a minute"] = "omtrent et minutt"; -App::$strings["%d minutes"] = "%d minutter"; -App::$strings["about an hour"] = "omtrent en time"; -App::$strings["about %d hours"] = "omtrent %d timer"; -App::$strings["a day"] = "en dag"; -App::$strings["%d days"] = "%d dager"; -App::$strings["about a month"] = "omtrent en måned"; -App::$strings["%d months"] = "%d måneder"; -App::$strings["about a year"] = "omtrent et år"; -App::$strings["%d years"] = "%d år"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["parent"] = "opp et nivå"; -App::$strings["Collection"] = "Samling"; -App::$strings["Principal"] = "Viktigste"; -App::$strings["Addressbook"] = "Adressebok"; -App::$strings["Calendar"] = "Kalender"; -App::$strings["Schedule Inbox"] = "Tidsplan innboks"; -App::$strings["Schedule Outbox"] = "Tidsplan utboks"; -App::$strings["%1\$s used"] = "%1\$s brukt"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s brukt av %2\$s (%3\$s%)"; -App::$strings["Total"] = "Totalt"; -App::$strings["Shared"] = "Delt"; -App::$strings["Create"] = "Lag"; -App::$strings["Upload"] = "Last opp"; -App::$strings["Name"] = "Navn"; -App::$strings["Type"] = "Type"; -App::$strings["Size"] = "Størrelse"; -App::$strings["Last Modified"] = "Sist endret"; -App::$strings["Create new folder"] = "Lag ny mappe"; -App::$strings["Upload file"] = "Last opp fil"; -App::$strings["%1\$s's bookmarks"] = "%1\$s sine bokmerker"; -App::$strings["Default"] = "Standard"; -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"; -App::$strings["Multiple Profiles"] = "Flere profiler"; -App::$strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; -App::$strings["Advanced Profiles"] = "Avanserte profiler"; -App::$strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; -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["Private Notes"] = "Private merknader"; -App::$strings["Enables a tool to store notes and reminders"] = "Skrur på et verktøy for lagre merknader og påminnelser"; -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["Extended Identity Sharing"] = "Utvidet identitetsdeling"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Del din identiet med alle nettsteder på Internett. Når denne er avskrudd, deles identiteten bare med nettsteder i matrix."; -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"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"; -App::$strings["Post Composition Features"] = "Funksjoner for å lage innlegg"; -App::$strings["Use Markdown"] = "Bruk Markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Tillat bruk av \"Markdown\" til formatering av innlegg"; -App::$strings["Large Photos"] = "Store bilder"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inkluder store (640px) miniatyrbilder i innlegg. Hvis denne ikke er skrudd på, bruk små (320px) miniatyrbilder."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"; -App::$strings["Even More Encryption"] = "Enda mer kryptering"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; -App::$strings["Enable voting tools"] = "Skru på verktøy for å stemme"; -App::$strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme på"; -App::$strings["Flag Adult Photos"] = "Flagge bilder for voksne"; -App::$strings["Provide photo edit option to hide adult photos from default album view"] = "Gi foto en valgmulighet for å skjule bilder for voksne fra visning i standardalbum"; -App::$strings["Network and Stream Filtering"] = "Nettverk- og strømfiltrering"; -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["Collections Filter"] = "Filter for samlinger"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Skru på miniprogram for å vise Nettverksinnlegg bare fra valgte samlinger"; -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"; -App::$strings["Network New Tab"] = "Nettverk Ny fane"; -App::$strings["Enable tab to display all new Network activity"] = "Skru på fane for å vise all ny nettverksaktivitet"; -App::$strings["Affinity Tool"] = "Nærhetsverktøy"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrer strømaktiviteten etter releasjonsdybde"; -App::$strings["Suggest Channels"] = "Foreslå kanaler"; -App::$strings["Show channel suggestions"] = "Vis kanalforslag"; -App::$strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktøy"; -App::$strings["Tagging"] = "Merking"; -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["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"; -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["Permission denied"] = "Tillatelse avvist"; -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["Item not found."] = "Elementet ble ikke funnet."; -App::$strings["Collection not found."] = "Samlingen ble ikke funnet."; -App::$strings["Collection is empty."] = "Samlingen er tom."; -App::$strings["Collection: %s"] = "Samling: %s"; -App::$strings["Connection: %s"] = "Forbindelse: %s"; -App::$strings["Connection not found."] = "Forbindelsen ble ikke funnet."; 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["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "E-post"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot!"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["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["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["local account not found."] = "lokal konto ble ikke funnet."; -App::$strings["Cannot connect to yourself."] = "Kan ikke lage forbindelse med deg selv."; -App::$strings["Save to Folder"] = "Lagre i mappe"; -App::$strings["I will attend"] = "Jeg vil delta"; -App::$strings["I will not attend"] = "Jeg deltar ikke"; -App::$strings["I might attend"] = "Jeg vil kanskje delta"; -App::$strings["I agree"] = "Jeg er enig"; -App::$strings["I disagree"] = "Jeg er uenig"; -App::$strings["I abstain"] = "Jeg avstår"; -App::$strings["Add Star"] = "Legg til stjerne"; -App::$strings["Remove Star"] = "Fjern stjerne"; -App::$strings["Toggle Star Status"] = "Skru av og på stjernestatus"; -App::$strings["starred"] = "stjernemerket"; -App::$strings["Add Tag"] = "Legg til merkelapp"; -App::$strings["I like this (toggle)"] = "Jeg liker dette (skru av og på)"; -App::$strings["like"] = "liker"; -App::$strings["I don't like this (toggle)"] = "Jeg liker ikke dette (skru av og på)"; -App::$strings["dislike"] = "misliker"; -App::$strings["Share This"] = "Del dette"; -App::$strings["share"] = "del"; -App::$strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -App::$strings["View %s's profile - %s"] = "Vis %s sin profil - %s"; -App::$strings["to"] = "til"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "vegg-til-vegg"; -App::$strings["via Wall-To-Wall:"] = "via vegg-til-vegg:"; -App::$strings["Save Bookmarks"] = "Lagre bokmerker"; -App::$strings["Add to Calendar"] = "Legg til i kalender"; -App::$strings["Mark all seen"] = "Merk alle som sett"; -App::$strings["__ctx:noun__ Likes"] = "Liker"; -App::$strings["__ctx:noun__ Dislikes"] = "Liker ikke"; -App::$strings["Close"] = "Lukk"; -App::$strings["This is you"] = "Dette er deg"; -App::$strings["Image"] = "Bilde"; -App::$strings["Insert Link"] = "Sett inn lenke"; -App::$strings["Video"] = "Video"; -App::$strings["Miscellaneous"] = "Forskjellig"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD eller MM-DD"; -App::$strings["Required"] = "Påkrevd"; -App::$strings["never"] = "aldri"; -App::$strings["less than a second ago"] = "for mindre enn ett sekund siden"; -App::$strings["year"] = "år"; -App::$strings["years"] = "år"; -App::$strings["month"] = "måned"; -App::$strings["months"] = "måneder"; -App::$strings["week"] = "uke"; -App::$strings["weeks"] = "uker"; -App::$strings["day"] = "dag"; -App::$strings["days"] = "dager"; -App::$strings["hour"] = "time"; -App::$strings["hours"] = "timer"; -App::$strings["minute"] = "minutt"; -App::$strings["minutes"] = "minutter"; -App::$strings["second"] = "sekund"; -App::$strings["seconds"] = "sekunder"; -App::$strings["%1\$d %2\$s ago"] = "%1\$d %2\$s siden"; -App::$strings["%1\$s's birthday"] = "%1\$s sin fødselsdag"; -App::$strings["Happy Birthday %1\$s"] = "Gratulerer med dagen, %1\$s !"; -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["Attachments:"] = "Vedlegg:"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Hubzilla event notification:"] = "Hubzilla hendelsesvarsling:"; -App::$strings["Starts:"] = "Starter:"; -App::$strings["Finishes:"] = "Slutter:"; -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["Edit Profiles"] = "Endre profiler"; -App::$strings["Manage/Edit profiles"] = "Håndter/endre profiler"; -App::$strings["Edit your profile"] = "Endre din profil"; -App::$strings["Your photos"] = "Dine bilder"; -App::$strings["Your files"] = "Dine filer"; -App::$strings["Chat"] = "Chat"; -App::$strings["Your chatrooms"] = "Dine chatterom"; -App::$strings["Your bookmarks"] = "Dine bokmerker"; -App::$strings["Your webpages"] = "Dine websider"; -App::$strings["Login"] = "Logg inn"; -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["Register"] = "Registrer"; -App::$strings["Create an account"] = "Lag en konto"; -App::$strings["Help"] = "Hjelp"; -App::$strings["Help and documentation"] = "Hjelp og dokumentasjon"; -App::$strings["Applications, utilities, links, games"] = "Programmer, verktøy, lenker, spill"; -App::$strings["Search"] = "Søk"; -App::$strings["Search site content"] = "Søk stedets innhold"; -App::$strings["Directory"] = "Katalog"; -App::$strings["Channel Directory"] = "Kanalkatalog"; -App::$strings["Matrix"] = "Matrix"; -App::$strings["Your matrix"] = "Din matrix"; -App::$strings["Mark all matrix notifications seen"] = "Merk alle matrix-varsler som sett"; -App::$strings["Channel Home"] = "Kanalhjem"; -App::$strings["Channel home"] = "Kanalhjem"; -App::$strings["Mark all channel notifications seen"] = "Merk alle kanalvarsler som sett"; -App::$strings["Connections"] = "Forbindelser"; -App::$strings["Notices"] = "Varsel"; -App::$strings["Notifications"] = "Varsler"; -App::$strings["See all notifications"] = "Se alle varsler"; -App::$strings["Mark all system notifications seen"] = "Merk alle systemvarsler som sett"; -App::$strings["Mail"] = "Melding"; -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["Events"] = "Hendelser"; -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["Channel Manager"] = "Kanalstyring"; -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["@name, #tag, content"] = "@navn, @merkelapp, innhold"; -App::$strings["Please wait..."] = "Vennligst vent..."; -App::$strings["Tags"] = "Merkelapper"; -App::$strings["Keywords"] = "Nøkkelord"; -App::$strings["have"] = "har"; -App::$strings["has"] = "har"; -App::$strings["want"] = "ønsker"; -App::$strings["wants"] = "ønsker"; -App::$strings["likes"] = "liker"; -App::$strings["dislikes"] = "misliker"; -App::$strings[" 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["This event has been added to your calendar."] = "Denne hendelsen er lagt til i din kalender."; -App::$strings["Public Timeline"] = "Offentlig tidslinje"; -App::$strings["view full size"] = "vis full størrelse"; -App::$strings["Directory Options"] = "Kataloginnstillinger"; -App::$strings["Alphabetic"] = "Alfabetisk"; -App::$strings["Reverse Alphabetic"] = "Omvendt alfabetisk"; -App::$strings["Newest to Oldest"] = "Nyest til eldst"; -App::$strings["Oldest to Newest"] = "Eldst til nyest"; -App::$strings["Sort"] = "Sorter"; -App::$strings["Safe Mode"] = "Trygt modus"; -App::$strings["Public Forums Only"] = "Bare offentlige forum"; -App::$strings["This Website Only"] = "Kun dette nettstedet"; -App::$strings["Embedded content"] = "Innebygget innhold"; -App::$strings["Embedding disabled"] = "Innbygging avskrudd"; -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["Logged out."] = "Logget ut."; -App::$strings["Failed authentication"] = "Mislykket autentisering"; -App::$strings["Login failed."] = "Innlogging mislyktes."; -App::$strings["Hubzilla Notification"] = "Hubzilla-varsling"; -App::$strings["hubzilla"] = "hubzilla"; -App::$strings["Thank You,"] = "Tusen takk,"; -App::$strings["%s Administrator"] = "%s administrator"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Ny melding mottatt hos %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s sendte deg en ny privat melding på %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s sendte deg %2\$s."; -App::$strings["a private message"] = "en privat melding"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Vennligst besøk %s for å se og/eller svare på dine private meldinger."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]a %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]%4\$s's %5\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterte på [zrl=%3\$s]din %4\$s[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Kommentar til samtale #%1\$d av %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterte på et element eller en samtale du følger"; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Vennligst besøk %s for å se og/eller svare i samtalen"; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s skrev et innlegg på din profilvegg"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s skrev et innlegg på din profilvegg på %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s skrev et innlegg på [zrl=%3\$s]din vegg[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s merket deg"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s merket deg på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]merket deg[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s prikket deg"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s dyttet deg på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]dyttet deg[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s merket ditt innlegg"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s merket ditt innlegg på %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s merket [zrl=%3\$s]ditt innlegg[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Notify] Introduksjon mottatt"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en ny forespørsel om forbindelse fra '%2\$s' hos %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du mottok [zrl=%2\$s]en ny forespørsel om forbindelse[/zrl] fra %3\$s."; -App::$strings["You may visit their profile at %s"] = "Du kan besøke profilen deres på %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Vennligst besøk %s for å godkjenne eller avslå forespørselen om forbindelse."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Venneforslag mottatt"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har mottatt en venneforespørsel fra '%2\$s' hos %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har mottatt [zrl=%2\$s]et venneforslaget[/zrl] angående %3\$s fra %4\$s. "; -App::$strings["Name:"] = "Navn:"; -App::$strings["Photo:"] = "Bilde:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Vennligst besøk %s for å godkjenne eller avslå dette forslaget."; -App::$strings["[Red:Notify]"] = "[Red:Notify]"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitasjon tilgjengelig", - 1 => "%d invitasjoner tilgjengelig", -); -App::$strings["Advanced"] = "Avansert"; -App::$strings["Find Channels"] = "Finn kanaler"; -App::$strings["Enter name or interest"] = "Skriv navn eller interesse"; -App::$strings["Connect/Follow"] = "Forbindelse/Følg"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Eksempler: Ola Nordmann, fisking"; -App::$strings["Find"] = "Finn"; -App::$strings["Channel Suggestions"] = "Kanalforslag"; -App::$strings["Random Profile"] = "Tilfeldig profil"; -App::$strings["Invite Friends"] = "Inviter venner"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Avansert eksempel: navn=fred og land=island"; -App::$strings["%d connection in common"] = array( - 0 => "%d forbindelse felles", - 1 => "%d forbindelser felles", -); -App::$strings["show more"] = "vis mer"; -App::$strings["Visible to your default audience"] = "Synlig for ditt standard publikum"; -App::$strings["Show"] = "Vis"; -App::$strings["Don't show"] = "Ikke vis"; -App::$strings["Permissions"] = "Tillatelser"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bilde overstiger nettstedets størrelsesbegrensning på %lu bytes"; -App::$strings["Image file is empty."] = "Bildefilen er tom."; -App::$strings["Unable to process image"] = "Kan ikke behandle bildet"; -App::$strings["Photo storage failed."] = "Bildelagring mislyktes."; -App::$strings["Upload New Photos"] = "Last opp nye bilder"; -App::$strings["Male"] = "Mannlig"; -App::$strings["Female"] = "Kvinnelig"; App::$strings["Currently Male"] = "For tiden mann"; App::$strings["Currently Female"] = "For tiden kvinne"; App::$strings["Mostly Male"] = "For det meste mann"; @@ -785,1288 +1925,338 @@ 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["Site Admin"] = "Nettstedsadministrator"; -App::$strings["Address Book"] = "Adressebok"; -App::$strings["Mood"] = "Stemning"; -App::$strings["Probe"] = "Undersøk"; -App::$strings["Suggest"] = "Forreslå"; -App::$strings["Random Channel"] = "Tilfeldig kanal"; -App::$strings["Invite"] = "Inviter"; -App::$strings["Features"] = "Funksjoner"; -App::$strings["Language"] = "Språk"; -App::$strings["Post"] = "Innlegg"; -App::$strings["Profile Photo"] = "Profilbilde"; -App::$strings["Update"] = "Oppdater"; -App::$strings["Install"] = "Installer"; -App::$strings["Purchase"] = "Kjøp"; -App::$strings["prev"] = "forrige"; -App::$strings["first"] = "første"; -App::$strings["last"] = "siste"; -App::$strings["next"] = "neste"; -App::$strings["older"] = "eldre"; -App::$strings["newer"] = "nyere"; -App::$strings["No connections"] = "Ingen forbindelser"; -App::$strings["%d Connection"] = array( - 0 => "%d forbindelse", - 1 => "%d forbindelser", +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"; +App::$strings["Multiple Profiles"] = "Flere profiler"; +App::$strings["Ability to create multiple profiles"] = "Mulig å lage flere profiler"; +App::$strings["Advanced Profiles"] = "Avanserte profiler"; +App::$strings["Additional profile sections and selections"] = "Ytterlige seksjoner og utvalg til profilen"; +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["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"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Skru på et verktøy for å lagre notater og påminnelser (merknad: ikke kryptert)"; +App::$strings["Navigation Channel Select"] = "Navigasjon kanalvalg"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Endre kanaler direkte fra navigasjonsmenyen"; +App::$strings["Photo Location"] = "Bildeplassering"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Hvis plasseringsdata er tilgjengelige i opplastede bilder, plasser dette på et kart."; +App::$strings["Access Controlled Chatrooms"] = ""; +App::$strings["Provide chatrooms and chat services with access control."] = ""; +App::$strings["Smart Birthdays"] = ""; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = ""; +App::$strings["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"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Lar deg angi restriksjoner og betingelser for de som kobler seg til din kanal"; +App::$strings["Post Composition Features"] = "Funksjoner for å lage innlegg"; +App::$strings["Large Photos"] = "Store bilder"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inkluder store (1024px) småbilder i innlegg. Hvis denne ikke er påskrudd, bruk små (640px) småbilder."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisk import av kanalinnhold fra andre kanaler eller strømmer"; +App::$strings["Even More Encryption"] = "Enda mer kryptering"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillat valgfri kryptering av innhold ende-til-ende via en delt hemmelig nøkkel"; +App::$strings["Enable Voting Tools"] = "Skru på verktøy for å stemme"; +App::$strings["Provide a class of post which others can vote on"] = "Tilby en type innlegg som andre kan stemme på"; +App::$strings["Delayed Posting"] = "Tidfest publisering"; +App::$strings["Allow posts to be published at a later date"] = "Tillat innlegg å bli publisert på et senere tidspunkt"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Forhindre duplikat av innlegg/kommentarer"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Forhindre innlegg med identisk innhold fra å bli publisert hvis det er mindre enn to minutter mellom innsendingene."; +App::$strings["Network and Stream Filtering"] = "Nettverk- og strømfiltrering"; +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["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"; +App::$strings["Network New Tab"] = "Nettverk Ny fane"; +App::$strings["Enable tab to display all new Network activity"] = "Skru på fane for å vise all ny nettverksaktivitet"; +App::$strings["Affinity Tool"] = "Nærhetsverktøy"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrer strømaktiviteten etter releasjonsdybde"; +App::$strings["Connection Filtering"] = "Filtrer forbindelser"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer innkommende innlegg fra forbindelser basert på nøkkelord/innhold"; +App::$strings["Show channel suggestions"] = "Vis kanalforslag"; +App::$strings["Post/Comment Tools"] = "Innlegg-/Kommentar-verktøy"; +App::$strings["Community Tagging"] = "Felleskapsmerkelapper"; +App::$strings["Ability to tag existing posts"] = "Mulighet til å merke eksisterende meldinger"; +App::$strings["Post Categories"] = "Innleggskategorier"; +App::$strings["Add categories to your posts"] = "Legg kategorier til dine innlegg"; +App::$strings["Emoji Reactions"] = ""; +App::$strings["Add emoji reaction ability to posts"] = ""; +App::$strings["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"; +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["View Connections"] = "Vis forbindelser"; -App::$strings["poke"] = "prikk"; -App::$strings["ping"] = "varsle"; -App::$strings["pinged"] = "varslet"; -App::$strings["prod"] = "oppildne"; -App::$strings["prodded"] = "oppildnet"; -App::$strings["slap"] = "daske"; -App::$strings["slapped"] = "dasket"; -App::$strings["finger"] = "fingre"; -App::$strings["fingered"] = "fingret"; -App::$strings["rebuff"] = "tilbakevise"; -App::$strings["rebuffed"] = "tilbakeviste"; -App::$strings["happy"] = "glad"; -App::$strings["sad"] = "trist"; -App::$strings["mellow"] = "dempet"; -App::$strings["tired"] = "trøtt"; -App::$strings["perky"] = "oppkvikket"; -App::$strings["angry"] = "sint"; -App::$strings["stupified"] = "sløvet"; -App::$strings["puzzled"] = "forundret"; -App::$strings["interested"] = "interessert"; -App::$strings["bitter"] = "bitter"; -App::$strings["cheerful"] = "munter"; -App::$strings["alive"] = "levende"; -App::$strings["annoyed"] = "irritert"; -App::$strings["anxious"] = "nervøs"; -App::$strings["cranky"] = "gretten"; -App::$strings["disturbed"] = "foruroliget"; -App::$strings["frustrated"] = "frustrert"; -App::$strings["depressed"] = "lei seg"; -App::$strings["motivated"] = "motivert"; -App::$strings["relaxed"] = "avslappet"; -App::$strings["surprised"] = "overrasket"; -App::$strings["Monday"] = "mandag"; -App::$strings["Tuesday"] = "tirsdag"; -App::$strings["Wednesday"] = "onsdag"; -App::$strings["Thursday"] = "torsdag"; -App::$strings["Friday"] = "fredag"; -App::$strings["Saturday"] = "lørdag"; -App::$strings["Sunday"] = "søndag"; -App::$strings["January"] = "januar"; -App::$strings["February"] = "februar"; -App::$strings["March"] = "mars"; -App::$strings["April"] = "april"; -App::$strings["May"] = "mai"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "august"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "desember"; -App::$strings["unknown.???"] = "ukjent.???"; -App::$strings["bytes"] = "bytes"; -App::$strings["remove category"] = "fjern kategori"; -App::$strings["remove from file"] = "fjern fra fil"; -App::$strings["Click to open/close"] = "Klikk for å åpne/lukke"; -App::$strings["Link to Source"] = "Lenke til kilde"; -App::$strings["Select a page layout: "] = "Velg en side-layout:"; -App::$strings["default"] = "standard"; -App::$strings["Page content type: "] = "Sidens innholdstype:"; -App::$strings["Select an alternate language"] = "Velg et annet språk"; -App::$strings["activity"] = "aktivitet"; -App::$strings["Design"] = "Formgivning"; -App::$strings["Blocks"] = "Byggeklosser"; -App::$strings["Menus"] = "Menyer"; -App::$strings["Layouts"] = "Layout"; -App::$strings["Pages"] = "Sider"; -App::$strings["Missing room name"] = "Mangler romnavn"; -App::$strings["Duplicate room name"] = "Duplikat romnavn"; -App::$strings["Invalid room specifier."] = "Ugyldig rom-spesifisering"; -App::$strings["Room not found."] = "Rommet ble ikke funnet."; -App::$strings["Room is full"] = "Rommet er fullt"; +App::$strings["__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["Delete this item?"] = "Slett dette elementet?"; +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"; +App::$strings["Secret Passphrase"] = "Hemmelig passordsetning"; +App::$strings["Passphrase hint"] = "Hint om passordsetning"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Varsel: Tillatelser har blitt endret, men de har ennå ikke blitt sendt inn."; +App::$strings["close all"] = "Lukk alle"; +App::$strings["Nothing new here"] = "Ikke noe nytt her"; +App::$strings["Rate This Channel (this is public)"] = "Vurder denne kanalen (dette er offentlig)"; +App::$strings["Describe (optional)"] = "Beskriv (valgfritt)"; +App::$strings["Please enter a link URL"] = "Vennligst skriv inn en lenke URL:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Endringene er ikke lagret. Er du sikker på at du ønsker å forlate denne siden?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "siden"; +App::$strings["from now"] = "fra nå"; +App::$strings["less than a minute"] = "mindre enn ett minutt"; +App::$strings["about a minute"] = "omtrent et minutt"; +App::$strings["%d minutes"] = "%d minutter"; +App::$strings["about an hour"] = "omtrent en time"; +App::$strings["about %d hours"] = "omtrent %d timer"; +App::$strings["a day"] = "en dag"; +App::$strings["%d days"] = "%d dager"; +App::$strings["about a month"] = "omtrent en måned"; +App::$strings["%d months"] = "%d måneder"; +App::$strings["about a year"] = "omtrent et år"; +App::$strings["%d years"] = "%d år"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "mai"; +App::$strings["Jan"] = "Jan"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mar"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "mai"; +App::$strings["Jun"] = "Jun"; +App::$strings["Jul"] = "Jul"; +App::$strings["Aug"] = "Aug"; +App::$strings["Sep"] = "Sep"; +App::$strings["Oct"] = "Okt"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Des"; +App::$strings["Sun"] = "Søn"; +App::$strings["Mon"] = "Man"; +App::$strings["Tue"] = "Tirs"; +App::$strings["Wed"] = "Ons"; +App::$strings["Thu"] = "Tors"; +App::$strings["Fri"] = "Fre"; +App::$strings["Sat"] = "Lør"; +App::$strings["__ctx:calendar__ today"] = "idag"; +App::$strings["__ctx:calendar__ month"] = "måned"; +App::$strings["__ctx:calendar__ week"] = "uke"; +App::$strings["__ctx:calendar__ day"] = "dag"; +App::$strings["__ctx:calendar__ All day"] = "Hele dagen"; +App::$strings["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 photo albums"] = "Kan se mine fotoalbum"; App::$strings["Can view my connections"] = "Kan se mine forbindelser"; -App::$strings["Can view my file storage"] = "Kan se mitt fillager"; +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 post photos to my photo albums"] = "Kan legge inn bilder i mine fotoalbum"; 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"] = "Kan skrive til mitt fillager"; +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["Mostly Public"] = "Ganske offentlig"; -App::$strings["Restricted"] = "Begrenset"; -App::$strings["Private"] = "Privat"; +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["Celebrity/Soapbox"] = "Kjendis/Talerstol"; -App::$strings["Group Repository"] = "Gruppelager"; +App::$strings["Special - Celebrity/Soapbox"] = "Spesiell - kjendis/talerstol"; +App::$strings["Special - Group Repository"] = "Spesiell - gruppelager"; App::$strings["Custom/Expert Mode"] = "Tilpasset/Ekspertmodus"; -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["You have created %1$.0f of %2$.0f allowed channels."] = "Du har laget %1$.0f av %2$.0f tillatte kanaler."; -App::$strings["Create a new channel"] = "Lag en ny kanal"; -App::$strings["Current Channel"] = "Gjeldende kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Bytt til en av dine kanaler ved å velge den."; -App::$strings["Default Channel"] = "Standardkanal"; -App::$strings["Make Default"] = "Gjør til standard"; -App::$strings["%d new messages"] = "%d nye meldinger"; -App::$strings["%d new introductions"] = "%d nye introduksjoner"; -App::$strings["Delegated Channels"] = "Delegerte kanaler"; -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["Diaspora Policy Settings updated."] = "Innstillinger for Diaspora retningslinjer er oppdatert."; -App::$strings["Passwords do not match. Password unchanged."] = "Passordene stemmer ikke overens. Passord uforandret."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomme passord er ikke tillatt. Passord uforandret."; -App::$strings["Password changed."] = "Passord endret."; -App::$strings["Password update failed. Please try again."] = "Passord oppdatering mislyktes. Vennligst prøv igjen."; -App::$strings["Not valid email."] = "Ikke gyldig e-post."; -App::$strings["Protected email address. Cannot change to that email."] = "Beskyttet e-postadresse. Kan ikke endre til den e-postadressen."; -App::$strings["System failure storing new email. Please try again."] = "Systemfeil ved lagring av ny e-post. Vennligst prøv igjen."; -App::$strings["Settings updated."] = "Innstillinger oppdatert."; -App::$strings["No"] = "Nei"; -App::$strings["Yes"] = "Ja"; -App::$strings["Add application"] = "Legg til program"; -App::$strings["Name of application"] = "Navn på program"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisk laget - kan endres om du vil. Største lengde 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Omdirigering"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - la stå tomt hvis ikke ditt program spesifikt krever dette"; -App::$strings["Icon url"] = "Ikon-URL"; -App::$strings["Optional"] = "Valgfritt"; -App::$strings["You can't edit this application."] = "Du kan ikke endre dette programmet."; -App::$strings["Connected Apps"] = "Tilkoblede app-er"; -App::$strings["Client key starts with"] = "Klientnøkkel starter med"; -App::$strings["No name"] = "Ikke noe navn"; -App::$strings["Remove authorization"] = "Fjern tillatelse"; -App::$strings["No feature settings configured"] = "Ingen funksjonsinnstillinger er konfigurert"; -App::$strings["Feature/Addon Settings"] = "Funksjons-/Tilleggsinnstillinger"; -App::$strings["Settings for the built-in Diaspora emulator"] = "Innstillinger for den innebygde Diaspora-etterlikningen"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Tillat ethvert Diaspora-medlem å kommentere på dine offentlige innlegg."; -App::$strings["Diaspora Policy Settings"] = "Innstillinger for Diaspora retningslinjer"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Stopp dine merkelapper/emneknagger/hashtagger fra å bli omdirigert til andre nettsteder"; -App::$strings["Account Settings"] = "Kontoinnstillinger"; -App::$strings["Enter New Password:"] = "Skriv nytt passord:"; -App::$strings["Confirm New Password:"] = "Bekreft nytt passord:"; -App::$strings["Leave password fields blank unless changing"] = "La passordfeltene stå blanke om det ikke skal endres"; -App::$strings["Email Address:"] = "E-postadresse:"; -App::$strings["Remove Account"] = "Slett konto"; -App::$strings["Remove this account including all its channels"] = "Slett denne kontoen inkludert alle dens kanaler"; -App::$strings["Off"] = "Av"; -App::$strings["On"] = "På"; -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"; -App::$strings["%s - (Experimental)"] = "%s - (Eksperimentelt)"; -App::$strings["mobile"] = "mobil"; -App::$strings["Display Settings"] = "Visningsinnstillinger"; -App::$strings["Display Theme:"] = "Visningstema:"; -App::$strings["Mobile Theme:"] = "Mobiltema:"; -App::$strings["Enable user zoom on mobile devices"] = "Skru på brukerstyrt zoom på mobile enheter"; -App::$strings["Update browser every xx seconds"] = "Oppdater nettleser hvert xx sekunder"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekunder, ikke noe maksimum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maksimalt antall samtaler å laste samtidig:"; -App::$strings["Maximum of 100 items"] = "Maksimum 100 elementer"; -App::$strings["Show emoticons (smilies) as images"] = "Vis emoticons (smilefjes) som bilder"; -App::$strings["Link post titles to source"] = "Lenk innleggets tittel til kilden"; -App::$strings["System Page Layout Editor - (advanced)"] = "Systemsidens layoutbehandler - (avansert)"; -App::$strings["Use blog/list mode on channel page"] = "Bruk blogg-/listemodus på kanalsiden"; -App::$strings["(comments displayed separately)"] = "(kommentarer vist separat)"; -App::$strings["Use blog/list mode on matrix page"] = "Bruk blogg-/listemodus på matrix-siden"; -App::$strings["Channel page max height of content (in pixels)"] = "Kanalsidens makshøyde for innhold (i pixler)"; -App::$strings["click to expand content exceeding this height"] = "klikk for å utvide innhold som overstiger denne høyden"; -App::$strings["Matrix page max height of content (in pixels)"] = "Matrix-sidens makshøyde for innholde (i pixler)"; -App::$strings["Nobody except yourself"] = "Ingen unntatt deg selv"; -App::$strings["Only those you specifically allow"] = "Bare de du spesifikt tillater"; -App::$strings["Approved connections"] = "Godkjente forbindelser"; -App::$strings["Any connections"] = "Enhver forbindelse"; -App::$strings["Anybody on this website"] = "Enhver ved dette nettstedet"; -App::$strings["Anybody in this network"] = "Enhver i dette nettverket"; -App::$strings["Anybody authenticated"] = "Enhver som er autentisert"; -App::$strings["Anybody on the internet"] = "Enhver på Internett"; -App::$strings["Publish your default profile in the network directory"] = "Publiser din standardprofil i nettverkskatalogen"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Tillat oss å foreslå deg som en mulig venn til nye medlemmer?"; -App::$strings["or"] = "eller"; -App::$strings["Your channel address is"] = "Din kanaladresse er"; -App::$strings["Channel Settings"] = "Kanalinnstillinger"; -App::$strings["Basic Settings"] = "Grunninnstillinger"; -App::$strings["Your Timezone:"] = "Din tidssone:"; -App::$strings["Default Post Location:"] = "Standard plassering ved innlegg:"; -App::$strings["Geographical location to display on your posts"] = "Geografisk plassering som vises på dine innlegg"; -App::$strings["Use Browser Location:"] = "Bruk nettleseren sin plassering:"; -App::$strings["Adult Content"] = "Voksent innhold"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Denne kanalen vil ofte eller jevnlig publisere voksent innhold. (Vennligst merk alt voksent materiale og/eller nakenhet med #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Sikkerhets- og personverninnstillinger"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Dine tillatelser er allerede satt. Klikk for å se/justere."; -App::$strings["Hide my online presence"] = "Skjul min tilstedeværelse online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Forhindrer visning på din profil av at du er online "; -App::$strings["Simple Privacy Settings:"] = "Enkle personverninnstillinger:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Svært offentlig - ekstremt åpent (bør brukes med varsomhet)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typisk - standard er offentlig, personvern når ønsket (likner på tillatelser i sosiale nettverk, men med forbedret personvern)"; -App::$strings["Private - default private, never open or public"] = "Privat - standard er privat, aldri åpen eller offentlig"; -App::$strings["Blocked - default blocked to/from everybody"] = "Blokkert - standard blokkert til/fra alle"; -App::$strings["Allow others to tag your posts"] = "Tillat andre å merke dine innlegg"; -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 prevents expiration"] = "0 eller blankt forhindrer utløp"; -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 Permissions"] = "Standard innleggstillatelser"; -App::$strings["(click to open/close)"] = "(klikk for å åpne/lukke)"; -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"; -App::$strings["Notification Settings"] = "Varslingsinnstillinger"; -App::$strings["By default post a status message when:"] = "Legg inn en statusmelding når du:"; -App::$strings["accepting a friend request"] = "aksepterer en venneforespørsel"; -App::$strings["joining a forum/community"] = "blir med i et forum/miljø"; -App::$strings["making an interesting profile change"] = "gjør en interessant profilendring"; -App::$strings["Send a notification email when:"] = "Send en varsel-e-post når:"; -App::$strings["You receive a connection request"] = "Du har mottatt en forespørsel om forbindelse"; -App::$strings["Your connections are confirmed"] = "Dine forbindelser er bekreftet"; -App::$strings["Someone writes on your profile wall"] = "Noen skriver på din profilvegg"; -App::$strings["Someone writes a followup comment"] = "Noen skriver en oppfølgende kommentar"; -App::$strings["You receive a private message"] = "Du mottar en privat melding"; -App::$strings["You receive a friend suggestion"] = "Du mottok et venneforslag"; -App::$strings["You are tagged in a post"] = "Du merkes i et innlegg"; -App::$strings["You are poked/prodded/etc. in a post"] = "Du ble prikket/oppildnet/og så vider i et innlegg"; -App::$strings["Show visual notifications including:"] = "Vis visuelle varslinger om:"; -App::$strings["Unseen matrix activity"] = "Usett matrixaktivitet"; -App::$strings["Unseen channel activity"] = "Usett kanalaktivitet"; -App::$strings["Unseen private messages"] = "Usette private meldinger"; -App::$strings["Recommended"] = "Anbefalt"; -App::$strings["Upcoming events"] = "Kommende hendelser"; -App::$strings["Events today"] = "Hendelser idag"; -App::$strings["Upcoming birthdays"] = "Kommende fødselsdager"; -App::$strings["Not available in all themes"] = "Ikke tilgjengelig i alle temaer"; -App::$strings["System (personal) notifications"] = "System (personlige) varslinger"; -App::$strings["System info messages"] = "System infomeldinger"; -App::$strings["System critical alerts"] = "System kritiske varsel"; -App::$strings["New connections"] = "Nye forbindelser"; -App::$strings["System Registrations"] = "Systemregistreringer"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Vis også nye vegginnlegg, private meldinger og forbindelser under Varsler"; -App::$strings["Notify me of events this many days in advance"] = "Varsle meg om hendelser dette antall dager på forhånd"; -App::$strings["Must be greater than 0"] = "Må være større enn 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Avanserte innstillinger for konto/sidetype"; -App::$strings["Change the behaviour of this account for special situations"] = "Endre oppførselen til denne kontoen i spesielle situasjoner"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Vennligst skru på ekspertmodus (under Innstillinger > Ekstra funksjoner) for å justere!"; -App::$strings["Miscellaneous Settings"] = "Diverse innstillinger"; -App::$strings["Personal menu to display in your channel pages"] = "Personlig meny som kan vises på dine kanalsider"; -App::$strings["Remove Channel"] = "Fjern kanal"; -App::$strings["Remove this channel."] = "Fjern denne kanalen."; -App::$strings["Xchan Lookup"] = "Xchan oppslag"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Slå opp xchan som begynner med (eller webbie):"; -App::$strings["Not found."] = "Ikke funnet."; -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["Block Name"] = "Byggeklossens navn"; -App::$strings["Channel added."] = "Kanal lagt 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["Remove"] = "Fjern"; -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["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["Item not available."] = "Elementet er ikke tilgjengelig."; -App::$strings["Fetching URL returns error: %1\$s"] = "Henting av URL gir følgende feil: %1\$s"; -App::$strings["Hubzilla - "The Network""] = "Hubzilla - "Nettverket""; -App::$strings["Welcome to %s"] = "Velkommen til %s"; -App::$strings["Image uploaded but image cropping failed."] = "Bildet ble lastet opp, men beskjæring av bildet mislyktes."; -App::$strings["Image resize failed."] = "Endring av bildestørrelse mislyktes."; -App::$strings["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["Image exceeds size limit of %d"] = "Bildet overstiger størrelsesbegrensningen på %d"; -App::$strings["Unable to process image."] = "Kan ikke behandle bildet."; -App::$strings["Photo not available."] = "Bildet er ikke tilgjengelig."; -App::$strings["Upload File:"] = "Last opp fil:"; -App::$strings["Select a profile:"] = "Velg en profil:"; -App::$strings["Upload Profile Photo"] = "Last opp profilbilde:"; -App::$strings["skip this step"] = "hopp over dette steget"; -App::$strings["select a photo from your photo albums"] = "velg et bilde fra dine fotoalbum"; -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["Image uploaded successfully."] = "Opplasting av bildet var vellykket."; -App::$strings["Image upload failed."] = "Opplasting av bildet mislyktes."; -App::$strings["Image size reduction [%s] failed."] = "Forminsking av bildet [%s] mislyktes."; -App::$strings["Invalid item."] = "Ugyldig element."; -App::$strings["Channel not found."] = "Kanalen ble ikke funnet."; -App::$strings["Page not found."] = "Siden ikke funnet."; -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 Hubzilla ID or register as a new Redmatrix.member to continue."] = "Vennligst logg inn med din Hubzilla ID eller registrer deg som et nytt Redmatrix.medlem for å fortsette"; -App::$strings["Invalid request."] = "Ugyldig forespørsel."; -App::$strings["thing"] = "ting"; -App::$strings["Channel unavailable."] = "Kanalen er utilgjengelig."; -App::$strings["Previous action reversed."] = "Forrige handling er omgjort."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s er enig med %2\$s sin %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s er ikke enig med %2\$s sin %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s avstår fra å mene noe om %2\$s sin %3\$s"; -App::$strings["%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["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["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Endre hendelse"; -App::$strings["Delete event"] = "Slett hendelse"; -App::$strings["Create New Event"] = "Lag ny hendelse"; -App::$strings["Previous"] = "Forrige"; -App::$strings["Next"] = "Neste"; -App::$strings["Export"] = "Eksport"; -App::$strings["Event removed"] = "Hendelse slettet"; -App::$strings["Failed to remove event"] = "Mislyktes med å slette hendelse"; -App::$strings["Event details"] = "Hendelsesdetaljer"; -App::$strings["Starting date and Title are required."] = "Startdato og Tittel er påkrevd."; -App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparert liste)"; -App::$strings["Event Starts:"] = "Hendelsen starter:"; -App::$strings["Finish date/time is not known or not relevant"] = "Sluttdato/-tidspunkt er ikke kjent eller ikke relevant"; -App::$strings["Event Finishes:"] = "Hendelsen slutter:"; -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["Description:"] = "Beskrivelse:"; -App::$strings["Title:"] = "Tittel:"; -App::$strings["Share this event"] = "Del denne hendelsen"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s følger %2\$s sin %3\$s"; -App::$strings["Public Sites"] = "Offentlige nettsteder"; -App::$strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Nettstedene på listen tillater offentlig registrering i Hubzilla. Alle nettsteder i matrix er forbundet så medlemskap på enhver av dem formidler medlemskap i hele matrix. Noen nettsteder kan kreve abonnement eller tilby lagdelte tjenesteavtaler. Tilbyderlenkene kan gi tilleggsopplysninger."; -App::$strings["Rate this hub"] = "Vurder denne hubben"; -App::$strings["Site URL"] = "Nettstedets URL"; -App::$strings["Access Type"] = "Tilgangstype"; -App::$strings["Registration Policy"] = "Retningslinjer for registrering"; -App::$strings["Location"] = "Plassering"; -App::$strings["View hub ratings"] = "Vis vurderinger av hubben"; -App::$strings["Rate"] = "Vurder"; -App::$strings["View ratings"] = "Vis vurderinger"; -App::$strings["Could not access contact record."] = "Fikk ikke tilgang til kontaktinformasjonen."; -App::$strings["Could not locate selected profile."] = "Fant ikke valgt profil."; -App::$strings["Connection updated."] = "Forbindelsen er oppdatert."; -App::$strings["Failed to update connection record."] = "Mislyktes med å oppdatere forbindelsesinformasjonen."; -App::$strings["is now connected to"] = "er nå forbundet til"; -App::$strings["Could not access address book record."] = "Fikk ikke tilgang til informasjonen i adresseboken."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Oppfrisking mislyktes - kanalen er for øyeblikket utilgjengelig."; -App::$strings["Channel has been unblocked"] = "Kanalen er ikke blokkert lenger"; -App::$strings["Channel has been blocked"] = "Kanalen har blitt blokkert"; -App::$strings["Unable to set address book parameters."] = "Ikke i stand til å angi parametre for adresseboken."; -App::$strings["Channel has been unignored"] = "Kanalen er ikke lenger ignorert"; -App::$strings["Channel has been ignored"] = "Kanalen blir ignorert"; -App::$strings["Channel has been unarchived"] = "Kanalen er ikke lenger arkivert"; -App::$strings["Channel has been archived"] = "Kanalen er arkivert"; -App::$strings["Channel has been unhidden"] = "Kanalen er ikke lenger skjult"; -App::$strings["Channel has been hidden"] = "Kanalen er blitt skjult"; -App::$strings["Channel has been approved"] = "Kanalen har blitt godkjent"; -App::$strings["Channel has been unapproved"] = "Kanalen er ikke lenger godkjent"; -App::$strings["Connection has been removed."] = "Forbindelsen har blitt fjernet."; -App::$strings["View %s's profile"] = "Vis %s sin profil"; -App::$strings["Refresh Permissions"] = "Oppfrisk tillatelser"; -App::$strings["Fetch updated permissions"] = "Hent oppdaterte tillatelser"; -App::$strings["Recent Activity"] = "Nylig aktivitet"; -App::$strings["View recent posts and comments"] = "Vis nylige innlegg og kommentarer"; -App::$strings["Unblock"] = "Ikke blokker lenger"; -App::$strings["Block"] = "Blokker"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blokker eller fjern blokkering av all kommunikasjon med denne forbindelsen"; -App::$strings["Unignore"] = "Ikke ignorer lenger"; -App::$strings["Ignore"] = "Ignorer"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer eller fjern ignorering av all inngående kommunikasjon fra denne forbindelsen"; -App::$strings["Unarchive"] = "Ikke arkiver lenger"; -App::$strings["Archive"] = "Arkiver"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkiver eller fjern arkivering av denne forbindelsen - marker kanal som død, men behold innhold"; -App::$strings["Unhide"] = "Ikke skjul lenger"; -App::$strings["Hide"] = "Skjul"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Skjul eller fjern skjuling av denne forbindelsen fra dine andre forbindelser"; -App::$strings["Delete this connection"] = "Slett denne forbindelsen"; -App::$strings["Approve this connection"] = "Godta denne forbindelsen"; -App::$strings["Accept connection to allow communication"] = "Godta denne forbindelsen for å tillate kommunikasjon"; -App::$strings["Connections: settings for %s"] = "Forbindelser: innstillinger for %s"; -App::$strings["Apply these permissions automatically"] = "Bruk disse tillatelsene automatisk"; -App::$strings["Apply the permissions indicated on this page to all new connections."] = "Bruk tillatelsene angitt på denne siden på alle nye forbindelser."; -App::$strings["Slide to adjust your degree of friendship"] = "Flytt for å justere din grad av vennskap"; -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["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Standard tillatelser for din kanaltype har (nettopp) blitt valgt. De har ikke blitt sendt inn og lagret ennå. Vennligst se over tillatelsene på denne siden og gjør eventuelle ønskede endringer nå. Denne nye forbindelsen kan muligens ikke klare å kommunisere med deg inntil du sender inn denne siden, som vil installere og ta i bruk de valgte tillatelsene."; -App::$strings["inherited"] = "arvet"; -App::$strings["Connection has no individual permissions!"] = "Forbindelsen har ingen individuelle tillatelser!"; -App::$strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Dette kan være riktig basert på dine personverninnstillinger, men kanskje du bør se over \"Avanserte tillatelser\"."; -App::$strings["Profile Visibility"] = "Profilens synlighet"; -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["Contact Information / Notes"] = "Kontaktinformasjon / Merknader"; -App::$strings["Edit contact notes"] = "Endre kontaktmerknader"; -App::$strings["Their Settings"] = "Deres innstillinger"; -App::$strings["My Settings"] = "Mine innstillinger"; -App::$strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Standard tillatelser for denne kanaltypen har (nettopp) blitt valgt. De har ikke blitt lagret og det er for øyeblikket ingen lagrede standard tillatelser. Vennligst se over/endre de valgte innstillingene og klikk [Send inn] for å lagre."; -App::$strings["Clear/Disable Automatic Permissions"] = "Tøm/Skru av Automatiske tillatelser"; -App::$strings["Forum Members"] = "Forummedlemmer"; -App::$strings["Soapbox"] = "Talerstol"; -App::$strings["Full Sharing (typical social network permissions)"] = "Full deling (typiske tillatelser i sosiale nettverk)"; -App::$strings["Cautious Sharing "] = "Forsiktig deling"; -App::$strings["Follow Only"] = "Bare følg"; -App::$strings["Individual Permissions"] = "Individuelle tillatelser"; -App::$strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Noen tillatelser kan være arvet fra din kanals personverninnstillinger, som har høyere prioritet enn individuelle innstillinger. Å endre arvede innstillinger på denne siden vil ikke ha noen effekt."; -App::$strings["Advanced Permissions"] = "Avanserte tillatelser"; -App::$strings["Simple Permissions (select one and submit)"] = "Enkle tillatelser (velg en og lagre)"; -App::$strings["Visit %s's profile - %s"] = "Besøk %s sin profil - %s"; -App::$strings["Block/Unblock contact"] = "Blokker/Ikke blokker kontakt"; -App::$strings["Ignore contact"] = "Ignorer kontakt"; -App::$strings["Repair URL settings"] = "Reparer URL-innstillinger"; -App::$strings["View conversations"] = "Vis samtaler"; -App::$strings["Delete contact"] = "Slett kontakt"; -App::$strings["Last update:"] = "Siste oppdatering:"; -App::$strings["Update public posts"] = "Oppdater offentlige innlegg"; -App::$strings["Update now"] = "Oppdater nå"; -App::$strings["Currently blocked"] = "For øyeblikket blokkert"; -App::$strings["Currently ignored"] = "For øyeblikket ignorert"; -App::$strings["Currently archived"] = "For øyeblikket arkivert"; -App::$strings["Currently pending"] = "For øyeblikket ventende"; -App::$strings["Hubzilla channel"] = "Hubzilla-kanal"; -App::$strings["Collection created."] = "Samling opprettet."; -App::$strings["Could not create collection."] = "Kunne ikke lage samling."; -App::$strings["Collection updated."] = "Samlingen er oppdatert."; -App::$strings["Create a collection of channels."] = "Lag en samling med kanaler."; -App::$strings["Collection Name: "] = "Navn på samling:"; -App::$strings["Members are visible to other channels"] = "Medlemmer er synlig for andre kanaler"; -App::$strings["Collection removed."] = "Samling fjernet."; -App::$strings["Unable to remove collection."] = "Ikke i stand til å fjerne samlingen."; -App::$strings["Collection Editor"] = "Samlingsbehandler"; -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["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["Red"] = "Red"; -App::$strings["This is a hub of the Hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Dette er en hub i Hubzilla - et globalt kooperativt nettverk av desentraliserte personvernforsterkede nettsteder."; -App::$strings["Tag: "] = "Merkelapp:"; -App::$strings["Last background fetch: "] = "Siste innhenting i bakgrunnen:"; -App::$strings["Running at web location"] = "Kjører på webplasseringen"; -App::$strings["Please visit Redmatrix.me to learn more about the Hubzilla."] = "Vennligst besøk Redmatrix.me for å lære mer om Hubzilla."; -App::$strings["Bug reports and issues: please visit"] = "Feilmeldinger og feilretting: vennligst besøk"; -App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Forslag, ros og så videre - vennligst e-post \"hubzilla\" hos librelist - punktum com"; -App::$strings["Site Administrators"] = "Nettstedsadministratorer"; -App::$strings["Help:"] = "Hjelp:"; -App::$strings["Not Found"] = "Ikke funnet"; -App::$strings["Hubzilla Server - Setup"] = "Hubzilla tjener - oppsett"; -App::$strings["Could not connect to database."] = "Fikk ikke kontakt med databasen."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Fikk ikke kontakt med det angitte nettstedets URL. Problemet kan muligens skyldes SSL-sertifikatet eller DNS."; -App::$strings["Could not create table."] = "Kunne ikke lage tabellen."; -App::$strings["Your site database has been installed."] = "Databasen til ditt nettsted har blitt installert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du må kanskje importere filen \"install/schmea_xxx.sql\" manuelt ved å bruke en databaseklient."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Vennligst les filen \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemsjekk"; -App::$strings["Check again"] = "Sjekk igjen"; -App::$strings["Database connection"] = "Databaseforbindelse"; -App::$strings["In order to install Hubzilla we need to know how to connect to your database."] = "For å installere Hubzilla må du oppgi hvordan din database kan kontaktes."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vennligst kontakt din nettstedstilbyder eller nettstedsadministrator hvis du har spørsmål om disse innstillingene."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du oppgir nedenfor må finnes på forhånd. Hvis den ikke finnes, vennligst lag den før du fortsetter."; -App::$strings["Database Server Name"] = "Navn på databasetjener"; -App::$strings["Default is localhost"] = "Standard er localhost"; -App::$strings["Database Port"] = "Databaseport"; -App::$strings["Communication port number - use 0 for default"] = "Kommunikasjonsportnummer - bruk 0 for standard"; -App::$strings["Database Login Name"] = "Database innloggingsnavn"; -App::$strings["Database Login Password"] = "Database innloggingspassord"; -App::$strings["Database Name"] = "Databasenavn"; -App::$strings["Database Type"] = "Databasetype"; -App::$strings["Site administrator email address"] = "E-postadressen til administrator ved nettstedet"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Din konto sin e-postadresse må være lik denne for å kunne bruke web-administrasjonspanelet."; -App::$strings["Website URL"] = "Nettstedets URL"; -App::$strings["Please use SSL (https) URL if available."] = "Vennligst bruk SSL (https) URL hvis tilgjengelig."; -App::$strings["Please select a default timezone for your website"] = "Vennligst velg en standard tidssone for ditt nettsted"; -App::$strings["Site settings"] = "Nettstedets innstillinger"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Fant ikke en kommandolinjeversjon av PHP i webtjenerens sti (PATH)."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Hvis du ikke har en kommandolinjeversjon av PHP installert på tjeneren, så vil du ikke kunne kjøre bakgrunnshenting via cron."; -App::$strings["PHP executable path"] = "PHP-kjørefilens sti"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Skriv full sti til kjørefilen for PHP. Du kan la denne stå blank for å fortsette installasjonen."; -App::$strings["Command line PHP"] = "Kommandolinje PHP"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandolinjeversjonen av PHP på ditt system har ikke \"register_argc_argv\" påskrudd."; -App::$strings["This is required for message delivery to work."] = "Dette er påkrevd for at meldingslevering skal virke."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Feil: \"openssl_pkey_new\"-funksjonen på dette systemet er ikke i stand til å lage krypteringsnøkler"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ved kjøring på Windows, vennligst se \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Lag krypteringsnøkler"; -App::$strings["libCurl PHP module"] = "libCurl PHP-modul"; -App::$strings["GD graphics PHP module"] = "GD graphics PHP-modul"; -App::$strings["OpenSSL PHP module"] = "OpenSSL PHP-modul"; -App::$strings["mysqli or postgres PHP module"] = "MySQLi eller Postgres PHP modul"; -App::$strings["mb_string PHP module"] = "mb_string PHP-modul"; -App::$strings["mcrypt PHP module"] = "mcrypt PHP-modul"; -App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite-modul"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Feil: Apache web-tjenerens mod-rewrite-modul er påkrevd, men ikke installert."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Feil: proc_open er påkrevd, men er enten ikke installert eller har blitt avskrudd i php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Feil: libCURL PHP-modul er påkrevd, men er ikke installert."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Feil: GD graphics PHP-modul med JPEG-støtte er påkrevd, men er ikke installert."; -App::$strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modul er påkrevd, men er ikke installert."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Feil: mysqli eller postgres PHP modul er påkrevd, men ingen av dem er installert."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modul er påkrevd, men er ikke installert."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Feil: mcrypt PHP-modul er påkrevd, men er ikke installert."; -App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Web-installasjonen må kunne lage en fil kalt \".htconfig.php\" i toppkatalogen til web-tjeneren din, men dette får den ikke til."; -App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Dette er oftest tillatelsesinnstilling, ettersom webtjeneren kanskje kan skrive til filer i din mappe - selv om du kan."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "På slutten av denne prosedyren vil vi gi deg en tekst til å lagre i en fil kalt .htconfig.php i toppkatalogen til din Red."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt, så kan du hoppe over denne prosedyren og gjennomføre en manuell installasjon. Vennligst se filen \"install/INSTALL.txt\" for instruksjoner."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php kan skrives til"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red bruker malmotoren Smarty3 for å gjengi sine webvisninger. Smarty3 kompilerer malene om til PHP for å framskynde gjengivelsen."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "For å kunne lagre disse kompilerte malene, så må webtjeneren ha skrivetilgang til katalogen %s under Red sin hovedmappe."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Vennligst sikre at brukeren som din web-tjeneste kjører som (for eksempel www-data) har skrivetilgang til denne katalogen."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Merknad: som et sikkerhetstiltak bør du bare gi webtjerenn skrivetilgang til %s - ikke til malfilene (.tpl) som den inneholder."; -App::$strings["%s is writable"] = "%s kan skrives til"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red bruker lagringsmappen for å lagre opplastede filer. Webtjeneren trenger å ha skrivetilgang til lagringsmappen under Red sin toppnivåmappe."; -App::$strings["store is writable"] = "lageret kan skrives til"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-sertifikatet kan ikke kontrolleres. Fiks sertifikatet eller skru av https tilgang til dette nettstedet."; -App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Hvis du har HTTPS-tilgang til ditt nettsted eller tillater forbindelser til TCP port 443 (HTTPS-porten), så MÅ du bruke nettlesergodkjent sertifkater. Du MÅ IKKE bruke egensignert sertifikater!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Denne begrensningen er tatt inn fordi offentlige innlegg fra deg kan for eksempel inneholde referanser til bilder på din egen hub."; -App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Hvis sertifikatet ditt ikke gjenkjennes, så vil medlemmer på andre nettsteder (som selv kan ha godkjente sertifikater) få en beskjed med en advarsel på deres eget nettsted som klager over sikkerhetsproblemer."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dette kan gi problemer med brukervennlighet (ikke bare på ditt eget nettsted), så vi må insistere på dette kravet."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Det finnes tilbydere som utsteder gratis sertifikater som er gyldige i nettlesere."; -App::$strings["SSL certificate validation"] = "SSL sertifikat-kontroll"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "URL omskriving (rewrite) i .htaccess virker ikke. Sjekk konfigurasjonen til tjeneren din. Test:"; -App::$strings["Url rewrite is working"] = "URL rewrite virker"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databasekonfigurasjonsfilen \".htconfig.php\" kunne ikke skrives. Vennligst bruk den medfølgende teksten for å lage en konfigurasjonsfil i toppkatalogen av din web-tjener."; -App::$strings["Errors encountered creating database tables."] = "Feil oppstod under opprettelsen av databasetabeller."; -App::$strings["

What next

"] = "

Hva gjenstår

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIG: Du må [manuelt] sette opp en automatisert tidfestet oppgave til bakgrunnshenteren."; -App::$strings["No channel."] = "Ingen kanal."; -App::$strings["Common connections"] = "Felles forbindelser"; -App::$strings["No connections in common."] = "Ingen forbindelser felles."; -App::$strings["First Name"] = "Fornavn"; -App::$strings["Last Name"] = "Etternavn"; -App::$strings["Nickname"] = "Kallenavn"; -App::$strings["Full Name"] = "Fullt navn"; -App::$strings["Profile Photo 16px"] = "Profilbilde 16px"; -App::$strings["Profile Photo 32px"] = "Profilbilde 32px"; -App::$strings["Profile Photo 48px"] = "Profilbilde 48px"; -App::$strings["Profile Photo 64px"] = "Profilbilde 64px"; -App::$strings["Profile Photo 80px"] = "Profilbilde 80px"; -App::$strings["Profile Photo 128px"] = "Profilbilde 128px"; -App::$strings["Timezone"] = "Tidssone"; -App::$strings["Homepage URL"] = "Hjemmeside URL"; -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["Blocked"] = "Blokkert"; -App::$strings["Ignored"] = "Ignorert"; -App::$strings["Hidden"] = "Skjult"; -App::$strings["Archived"] = "Arkivert"; -App::$strings["All"] = "Alle"; -App::$strings["Suggest new connections"] = "Foreslå nye forbindelser"; -App::$strings["New Connections"] = "Nye forbindelser"; -App::$strings["Show pending (new) connections"] = "Vis ventende (nye) forbindelser"; -App::$strings["All Connections"] = "Alle forbindelser"; -App::$strings["Show all connections"] = "Vis alle forbindelser"; -App::$strings["Unblocked"] = "Ikke blokkert lenger"; -App::$strings["Only show unblocked connections"] = "Vis bare forbindelser som ikke er blokkert"; -App::$strings["Only show blocked connections"] = "Vis bare forbindelser som er blokkert"; -App::$strings["Only show ignored connections"] = "Vis bare ignorerte forbindelser"; -App::$strings["Only show archived connections"] = "Vis bare arkiverte forbindelser"; -App::$strings["Only show hidden connections"] = "Vis bare skjulte forbindelser"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Endre forbindelse"; -App::$strings["Search your connections"] = "Søk blant dine forbindelser"; -App::$strings["Finding: "] = "Fant:"; -App::$strings["webpage"] = "nettside"; -App::$strings["block"] = "byggekloss"; -App::$strings["layout"] = "layout"; -App::$strings["%s element installed"] = "%s element installert"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merket %3\$s til %2\$s med %4\$s"; -App::$strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Hubzilla - gjester: brukernavn: {din e-postadresse}, passord: +++"; -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."; -App::$strings["System error. Post not saved."] = "Systemfeil. Innlegg ble ikke lagret."; -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["Public access denied."] = "Offentlig tilgang avvist."; -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["Away"] = "Borte"; -App::$strings["Online"] = "Online"; -App::$strings["Select a bookmark folder"] = "Velg en bokmerkemappe"; -App::$strings["Save Bookmark"] = "Lagre bokmerke"; -App::$strings["URL of bookmark"] = "URL-en til bokmerket"; -App::$strings["Description"] = "Beskrivelse"; -App::$strings["Or enter new bookmark folder name"] = "Eller skriv nytt navn på bokmerkemappe"; -App::$strings["No more system notifications."] = "Ingen flere systemvarsler."; -App::$strings["System Notifications"] = "Systemvarsler"; -App::$strings["network"] = "nettverk"; -App::$strings["RSS"] = "RSS"; -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["- select -"] = "- velg -"; -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"; -App::$strings["Imported file is empty."] = "Importert fil er tom."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan ikke lage en kopi av kanal-identifikatoren på dette systemet. Import mislyktes."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Klarte ikke å lage en unik kanaladresse. Import mislyktes."; -App::$strings["Channel clone failed. Import failed."] = "Kanalkloning mislyktes. Import mislyktes."; -App::$strings["Cloned channel not found. Import failed."] = "Klonet kanal ble ikke funnet. Import mislyktes."; -App::$strings["Import completed."] = "Import ferdig."; -App::$strings["You must be logged in to use this feature."] = "Du må være innlogget for å bruke denne funksjonen."; -App::$strings["Import Channel"] = "Importer kanal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Bruk dette skjemaet til å importere en eksisterende kanal fra en annen tjener/hub. Du kan hente kanalidentiteten fra den gamle tjeneren/hubben via nettverket eller bruke en eksportert fil. Bare identiteten og forbindelser/relasjoner vil bli importert. Importering av innhold er ennå ikke tilgjengelig."; -App::$strings["File to Upload"] = "Fil som skal lastes opp"; -App::$strings["Or provide the old server/hub details"] = "Eller oppgi detaljene fra den gamle tjeneren/hub-en"; -App::$strings["Your old identity address (xyz@example.com)"] = "Din gamle identitetsadresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Din gamle innloggings e-postadresse"; -App::$strings["Your old login password"] = "Ditt gamle innloggingspassord"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Enten du tar det ene eller det andre valget, vennligst angi om du vil at denne hubben skal være din nye primære adresse, eller om din gamle plassering skal fortsette å ha denne rollen. Du kan lage innlegg fra den ene eller den andre plasseringen, men bare en av dem kan markeres som den primære plasseringen for filer, bilder og media."; -App::$strings["Make this hub my primary location"] = "Gjør dette nettstedet til min primære plassering"; -App::$strings["Import existing posts if possible"] = "Importerer eksisterende innlegg hvis mulig."; -App::$strings["Item not found"] = "Elementet ble ikke funnet."; -App::$strings["Edit Layout"] = "Endre layout"; -App::$strings["Delete layout?"] = "Slett layout?"; -App::$strings["Insert YouTube video"] = "Sett inn YouTube-video"; -App::$strings["Insert Vorbis [.ogg] video"] = "Sett inn Vorbis [.ogg] video"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Legg i"; -App::$strings["Delete Layout"] = "Slett layout"; -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 This Room"] = "Slett dette rommet"; -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["New Chatroom"] = "Nytt chatrom"; -App::$strings["Chatroom Name"] = "Navn på chatrom"; -App::$strings["%1\$s's Chatrooms"] = "%1\$s sine chatrom"; -App::$strings["Edit Webpage"] = "Endre webside"; -App::$strings["Delete webpage?"] = "Slett webside?"; -App::$strings["Delete Webpage"] = "Slett webside"; -App::$strings["This site is not a directory server"] = "Dette nettstedet er ikke en katalogtjener"; -App::$strings["This directory server requires an access token"] = "Denne katalogtjeneren krever en tilgangsnøkkel (access token)"; -App::$strings["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["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["Item is not editable"] = "Elementet kan ikke endres"; -App::$strings["Edit post"] = "Endre innlegg"; -App::$strings["Delete item?"] = "Slett element?"; -App::$strings["Total invitation limit exceeded."] = "Grensen for totalt antall invitasjoner er overskredet."; -App::$strings["%s : Not a valid email address."] = "%s : ikke en gyldig e-postadresse."; -App::$strings["Please join us on Red"] = "Bli med oss på Red"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Invitasjonsgrensen er overskredet. Vennligst kontakt administratoren ved ditt nettsted."; -App::$strings["%s : Message delivery failed."] = "%s : meldingslevering feilet."; -App::$strings["%d message sent."] = array( - 0 => "%d melding sendt.", - 1 => "%d meldinger sendt.", -); -App::$strings["You have no more invitations available"] = "Du har ikke flere invitasjoner tilgjengelig"; -App::$strings["Send invitations"] = "Send invitasjoner"; -App::$strings["Enter email addresses, one per line:"] = "Skriv e-postadresser, en per linje:"; -App::$strings["Your message:"] = "Din melding:"; -App::$strings["Please join my community on Hubzilla."] = "Du er velkommen til å bli med i mitt fellesskap på Hubzilla."; -App::$strings["You will need to supply this invitation code: "] = "Du må oppgi denne invitasjonskoden:"; -App::$strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registrer ved enhver Hubzilla-lokasjon (de er alle forbundet med hverandre)"; -App::$strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Skriv inn min Hubzilla-adresse i nettstedets søkefelt."; -App::$strings["or visit "] = "eller besøk"; -App::$strings["3. Click [Connect]"] = "3. Klikk [Forbindelse]"; -App::$strings["Location not found."] = "Plassering er ikke funnet."; -App::$strings["Primary location cannot be removed."] = "Primær plassering kan ikke fjernes."; -App::$strings["No locations found."] = "Ingen plasseringer ble funnet."; -App::$strings["Manage Channel Locations"] = "Håndter kanalplasseringer"; -App::$strings["Location (address)"] = "Plassering (adresse)"; -App::$strings["Primary Location"] = "Hovedplassering"; -App::$strings["Drop location"] = "Slett plassering"; -App::$strings["Failed to create source. No channel selected."] = "Mislyktes med å lage kilde. Ingen kanal er valgt."; -App::$strings["Source created."] = "Kilden er laget."; -App::$strings["Source updated."] = "Kilden er oppdatert."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Håndtere eksterne innholdskilder til din kanal."; -App::$strings["New Source"] = "Ny kilde"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer alt eller et utvalgt av innhold fra følgende kanal inn i denne kanalen og distribuer det i henhold til dine egne kanalinnstillinger."; -App::$strings["Only import content with these words (one per line)"] = "Bare importer innhold med disse ordene (ett ord per linje)"; -App::$strings["Leave blank to import all public content"] = "La stå tomt for å importere alt offentlig innhold"; -App::$strings["Channel Name"] = "Kanalnavn"; -App::$strings["Source not found."] = "Kilden ble ikke funnet."; -App::$strings["Edit Source"] = "Endre kilde"; -App::$strings["Delete Source"] = "Slett kilde"; -App::$strings["Source removed"] = "Kilden er fjernet"; -App::$strings["Unable to remove source."] = "Ikke i stand til å fjerne kilde."; -App::$strings["Menu updated."] = "Menyen er oppdatert."; -App::$strings["Unable to update menu."] = "Ikke i stand til å oppdatere meny."; -App::$strings["Menu created."] = "Meny laget."; -App::$strings["Unable to create menu."] = "Ikke i stand til å lage meny."; -App::$strings["Manage Menus"] = "Håndtere menyer"; -App::$strings["Drop"] = "Slett"; -App::$strings["Bookmarks allowed"] = "Bokmerker tillatt"; -App::$strings["Create a new menu"] = "Lag en ny meny"; -App::$strings["Delete this menu"] = "Slett denne menyen"; -App::$strings["Edit menu contents"] = "Endre menyinnholdet"; -App::$strings["Edit this menu"] = "Endre denne menyen"; -App::$strings["New Menu"] = "Ny meny"; -App::$strings["Menu name"] = "Menynavn"; -App::$strings["Must be unique, only seen by you"] = "Må være unik, ses bare av deg"; -App::$strings["Menu title"] = "Menytittel"; -App::$strings["Menu title as seen by others"] = "Menytittelen andre ser"; -App::$strings["Allow bookmarks"] = "Tillat bokmerker"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menyen kan brukes til å lagre lagrede bokmerker"; -App::$strings["Menu not found."] = "Menyen ble ikke funnet."; -App::$strings["Menu deleted."] = "Meny slettet."; -App::$strings["Menu could not be deleted."] = "Menyen kunne ikke bli slettet."; -App::$strings["Edit Menu"] = "Endre meny"; -App::$strings["Add or remove entries to this menu"] = "Legg til eller fjern punkter i denne menyen"; -App::$strings["Modify"] = "Endre"; -App::$strings["Permission Denied."] = "Tillatelse avvist."; -App::$strings["File not found."] = "Filen ble ikke funnet."; -App::$strings["Edit file permissions"] = "Endre filtillatelser"; -App::$strings["Set/edit permissions"] = "Angi/endre tillatelser"; -App::$strings["Include all files and sub folders"] = "Inkluder alle filer og undermapper"; -App::$strings["Return to file list"] = "Gå tilbake til filoversikten"; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopier og lim inn denne koden for å legge til filen i et innlegg"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopier og lim inn denne URL-en for å lenke til filen fra en webside"; -App::$strings["Attach this file to a new post"] = "Legg ved denne filen i et nytt innlegg"; -App::$strings["Show URL to this file"] = "Vis URLen til denne filen"; -App::$strings["Do not show in shared with me folder of your connections"] = "Ikke vis i Delt med meg-mappen til dine forbindelser"; -App::$strings["Contact not found."] = "Kontakten ble ikke funnet."; -App::$strings["Friend suggestion sent."] = "Venneforespørsel sendt."; -App::$strings["Suggest Friends"] = "Foreslå venner"; -App::$strings["Suggest a friend for %s"] = "Foreslå en venn for %s"; -App::$strings["Hub not found."] = "Hubben ble ikke funnet."; -App::$strings["Poke/Prod"] = "Prikke/oppildne"; -App::$strings["poke, prod or do other things to somebody"] = "prikke, oppildne 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["Invalid profile identifier."] = "Ugyldig profil-identifikator."; -App::$strings["Profile Visibility Editor"] = "Endre profilsynlighet"; -App::$strings["Click on a contact to add or remove."] = "Klikk på en kontakt for å legge til eller fjerne."; -App::$strings["Visible To"] = "Synlig for"; -App::$strings["Remote privacy information not available."] = "Ekstern personverninformasjon er ikke tilgjengelig."; -App::$strings["Visible to:"] = "Synlig for:"; -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 contact/friend list from viewers of this profile?"] = "Skjul kontakt-/vennelisten din fra de som ser på denne profilen?"; -App::$strings["Edit Profile Details"] = "Endre profildetaljer"; -App::$strings["View this profile"] = "Vis denne profilen"; -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["Import profile from file"] = "Importer profil fra fil"; -App::$strings["Export profile to file"] = "Eksporter profil til fil"; -App::$strings["Profile Name:"] = "Profilnavn:"; -App::$strings["Your Full Name:"] = "Ditt fulle navn:"; -App::$strings["Title/Description:"] = "Tittel/Beskrivelse:"; -App::$strings["Your Gender:"] = "Ditt kjønn:"; -App::$strings["Birthday :"] = "Fødselsdag:"; -App::$strings["Street Address:"] = "Gateadresse:"; -App::$strings["Locality/City:"] = "Sted/By:"; -App::$strings["Postal/Zip Code:"] = "Postnummer/ZIP-kode:"; -App::$strings["Country:"] = "Land:"; -App::$strings["Region/State:"] = "Region/fylke:"; -App::$strings[" Marital Status:"] = " Sivilstand:"; -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["Homepage URL:"] = "Hjemmeside URL:"; -App::$strings["Religious Views:"] = "Religiøse synspunkter:"; -App::$strings["Keywords:"] = "Nøkkelord:"; -App::$strings["Example: fishing photography software"] = "Eksempel: fisking fotografering programvare"; -App::$strings["Used in directory listings"] = "Brukt i katalogoppføringer"; -App::$strings["Tell us about yourself..."] = "Fortell oss om deg selv..."; -App::$strings["Hobbies/Interests"] = "Hobbier/Interesser"; -App::$strings["Contact information and Social Networks"] = "Kontaktinformasjon og sosiale nettverk"; -App::$strings["My other channels"] = "Mine andre kanaler"; -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["Love/romance"] = "Kjærlighet/romantikk"; -App::$strings["Work/employment"] = "Arbeid/sysselsetting"; -App::$strings["School/education"] = "Skole/utdanning"; -App::$strings["This is your default profile."] = "Dette er din standardprofil."; -App::$strings["Age: "] = "Alder:"; -App::$strings["Edit/Manage Profiles"] = "Endre/håndter profiler"; -App::$strings["Add profile things"] = "Legg til profilting"; -App::$strings["Include desirable objects in your profile"] = "Inkluder ønskverdige objekter i din profil"; -App::$strings["No ratings"] = "Ingen vurderinger"; -App::$strings["Ratings"] = "Vurderinger"; -App::$strings["Rating: "] = "Vurdering:"; -App::$strings["Website: "] = "Nettsted:"; -App::$strings["Description: "] = "Beskrivelse:"; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID protokollfeil. Ingen ID ble returnert."; -App::$strings["Welcome %s. Remote authentication successful."] = "Velkommen %s. Ekstern autentisering er vellykket."; -App::$strings["%d rating"] = array( - 0 => "%d vurdering", - 1 => "%d vurderinger", -); -App::$strings["Gender: "] = "Kjønn:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Hjemmeside:"; -App::$strings["Hometown: "] = "Hjemby:"; -App::$strings["About: "] = "Om:"; -App::$strings["Public Forum:"] = "Offentlig forum:"; -App::$strings["Keywords: "] = "Nøkkelord:"; -App::$strings["Finding:"] = "Finner:"; -App::$strings["next page"] = "Neste side"; -App::$strings["previous page"] = "Forrige side"; -App::$strings["No entries (some entries may be hidden)."] = "Ingen oppføringer (noen oppføringer kan være skjult)."; -App::$strings["Export Channel"] = "Eksporter kanal"; -App::$strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = "Eksporter grunnleggende informasjon om kanalen din til en liten 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 all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Eksporter din kanalinformasjon og alt innholdet til en sikkerhetskopi som JSON-fil. Denne lager en sikkerhetskopi av alle dine forbindelser, tillatelser, profildata og alt innholdet ditt, men er generelt ikke egnet for å importere en kanal til en ny hub, fordi 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["No connections."] = "Ingen forbindelser."; -App::$strings["Visit %s's profile [%s]"] = "Besøk %s sin profil [%s]"; -App::$strings["invalid target signature"] = "Målets signatur er ugyldig"; -App::$strings["Theme settings updated."] = "Temainnstillinger er oppdatert."; -App::$strings["Site"] = "Nettsted"; -App::$strings["Accounts"] = "Kontoer"; -App::$strings["Channels"] = "Kanaler"; -App::$strings["Plugins"] = "Tilleggsfunksjoner"; -App::$strings["Themes"] = "Temaer"; -App::$strings["Inspect queue"] = "Inspiser kø"; -App::$strings["Profile Config"] = "Profilinnstillinger"; -App::$strings["DB updates"] = "Databaseoppdateringer"; -App::$strings["Logs"] = "Logger"; -App::$strings["Plugin Features"] = "Tilleggsfunksjoner"; -App::$strings["User registrations waiting for confirmation"] = "Brukerregistreringer som venter på bekreftelse"; -App::$strings["# Accounts"] = "# Kontoer"; -App::$strings["# blocked accounts"] = "# blokkerte kontoer"; -App::$strings["# expired accounts"] = "# utgåtte kontoer"; -App::$strings["# expiring accounts"] = "# kontoer som holder på å gå ut"; -App::$strings["# Channels"] = "# Kanaler"; -App::$strings["# primary"] = "# hoved"; -App::$strings["# clones"] = "# kloner"; -App::$strings["Message queues"] = "Meldingskøer"; -App::$strings["Administration"] = "Administrasjon"; -App::$strings["Summary"] = "Sammendrag"; -App::$strings["Registered accounts"] = "Registrerte kontoer"; -App::$strings["Pending registrations"] = "Ventende registreringer"; -App::$strings["Registered channels"] = "Registrerte kanaler"; -App::$strings["Active plugins"] = "Aktive tilleggsfunksjoner"; -App::$strings["Version"] = "Versjon"; -App::$strings["Site settings updated."] = "Nettstedsinnstillinger er oppdatert."; -App::$strings["experimental"] = "eksperimentell"; -App::$strings["unsupported"] = "ikke støttet"; -App::$strings["Yes - with approval"] = "Ja - med godkjenning"; -App::$strings["My site is not a public server"] = "Mitt nettsted er ikke en offentlig tjeneste"; -App::$strings["My site has paid access only"] = "Mitt nettsted gir kun tilgang mot betaling"; -App::$strings["My site has free access only"] = "Mitt nettsted har kun gratis tilgang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mitt nettsted tilbyr gratis konto med valgfri oppgradering til betalt tjeneste"; -App::$strings["Registration"] = "Registrering"; -App::$strings["File upload"] = "Last opp fil"; -App::$strings["Policies"] = "Retningslinjer"; -App::$strings["Site name"] = "Nettstedets navn"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Administratorinformasjon"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformasjon til nettstedsadministratorer. Vises på siteinfo-siden. BBCode kan brukes her"; -App::$strings["System language"] = "Systemspråk"; -App::$strings["System theme"] = "Systemtema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard systemtema - kan overstyres av brukerprofiler - endre temainnstillinger"; -App::$strings["Mobile system theme"] = "Mobilt systemtema"; -App::$strings["Theme for mobile devices"] = "Tema for mobile enheter"; -App::$strings["Enable Diaspora Protocol"] = "Skru på Diaspora-protokollen"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Samhandling med Diaspora og Friendica - eksperimentell"; -App::$strings["Allow Feeds as Connections"] = "Tillat strømmer som forbindelser"; -App::$strings["(Heavy system resource usage)"] = "(Tung bruk av systemressurser)"; -App::$strings["Maximum image size"] = "Største bildestørrelse"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Største størrelse i bytes for opplastede bilder. Standard er 0, som betyr ubegrenset."; -App::$strings["Does this site allow new member registration?"] = "Tillater dette nettstedet registrering av nye medlemmer?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Hvilket alternativ beskriver best hva slags kontotype som tilbys av dette nettstedet/denne hubben?"; -App::$strings["Register text"] = "Registreringstekst"; -App::$strings["Will be displayed prominently on the registration page."] = "Vil bli vist på en fremtredende måte på registreringssiden."; -App::$strings["Accounts abandoned after x days"] = "Kontoer forlatt etter x dager"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Vil ikke kaste bort systemressurser på å spørre eksterne nettsteder etter forlatte kontoer. Skriv 0 for å ikke sette noen tidsgrense."; -App::$strings["Allowed friend domains"] = "Tillatte vennedomener"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste over domener som har lov til å etablere vennskap med dette nettstedet. Jokertegn er akseptert. Tøm for å tillate alle domener."; -App::$strings["Allowed email domains"] = "Tillate e-postdomener"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparert liste med domener som er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt"; -App::$strings["Not allowed email domains"] = "Ikke tillatte e-postdomener"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparert liste med domener som ikke er tillatt i e-postadresser ved registrering på dette nettstedet. Jokertegn er akseptert. Tomt betyr at alle domener er tillatt, med mindre tillate domener er blitt definert."; -App::$strings["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 logged in."] = "Kryss av for å blokkere tilgang til alle personlige sider som ellers ville vært offentlig tilgjengelige på dette nettstedet med mindre du er logget inn."; -App::$strings["Verify Email Addresses"] = "Bekreft e-postadresser"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Sett hake for å sjekke e-postadresser brukt ved kontoregistrering (anbefales)."; -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["Disable discovery tab"] = "Skru av oppdagelsesfanen"; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Fjern fanen fra nettverksvisningen med offentlig innhold trukket inn fra kilder valg for dette nettstedet."; -App::$strings["No login on Homepage"] = "Ingen innlogging på hjemmesiden"; -App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Sett hake for å skjule innloggingsskjemaet fra ditt nettsteds hjemmeside for besøkende som ikke er innlogget (for eksempel når du legger inn innhold på hjemmesiden via nettstedskanalen)."; -App::$strings["Proxy user"] = "Brukernavn mellomtjener"; -App::$strings["Proxy URL"] = "Mellomtjener URL"; -App::$strings["Network timeout"] = "Nettverk tidsavbrudd"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Verdien i sekunder. Skriv 0 for ubegrenset (ikke anbefalt)."; -App::$strings["Delivery interval"] = "Leveringsinterval"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Forsink leveringsprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Anbefaling: 4-5 for delte tjenere, 2-3 for virtuelle tjenere, 0-1 for større dedikerte tjenere."; -App::$strings["Poll interval"] = "Spørreintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Forsink spørreprosessene i bakgrunnen med dette antall sekunder for å redusere systembelastningen. Hvis 0, bruk dette leveringsintervallet."; -App::$strings["Maximum Load Average"] = "Største belastningsgjennomsnitt"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Største systembelastning før leverings- og spørreprosesser blir utsatt - standard 50."; -App::$strings["No server found"] = "Ingen tjener funnet"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "for kanalen"; -App::$strings["on server"] = "på tjener"; -App::$strings["Status"] = "Status"; -App::$strings["Server"] = "Tjener"; -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."; -App::$strings["Update %s was successfully applied."] = "Oppdatering %s ble gjennomført med suksess."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Oppdatering %s returnerte ingen status. Det er ukjent om den ble vellykket."; -App::$strings["Update function %s could not be found."] = "Oppdatering av funksjon %s kunne ikke finnes."; -App::$strings["No failed updates."] = "Ingen mislykkede oppdateringer."; -App::$strings["Failed Updates"] = "Mislykkede oppdateringer"; -App::$strings["Mark success (if update was manually applied)"] = "Marker suksess (hvis oppdateringen ble gjennomført manuelt)"; -App::$strings["Attempt to execute this update step automatically"] = "Prøv å gjennomføre dette oppdateringstrinnet automatisk"; -App::$strings["Queue Statistics"] = "Køstatistikk"; -App::$strings["Total Entries"] = "Totalt antall oppføringer"; -App::$strings["Priority"] = "Prioritet"; -App::$strings["Destination URL"] = "Mål-URL"; -App::$strings["Mark hub permanently offline"] = "Merk hub som permanent offline"; -App::$strings["Empty queue for this hub"] = "Tøm køen for denne hubben"; -App::$strings["Last known contact"] = "Siste kjente kontakt"; -App::$strings["%s user blocked/unblocked"] = array( - 0 => "%s bruker blokkert/ikke blokkert lenger", - 1 => "%s brukere blokkert/ikke blokkert lenger", -); -App::$strings["%s user deleted"] = array( - 0 => "%s bruker slettet", - 1 => "%s brukere slettet", -); -App::$strings["Account not found"] = "Kontoen ble ikke funnet"; -App::$strings["User '%s' blocked"] = "Brukeren '%s' er blokkert"; -App::$strings["User '%s' unblocked"] = "Brukeren '%s' er ikke blokkert lenger"; -App::$strings["Users"] = "Brukere"; -App::$strings["select all"] = "velg alle"; -App::$strings["User registrations waiting for confirm"] = "Brukerregistreringer som venter på bekreftelse"; -App::$strings["Request date"] = "Dato for forespørsel"; -App::$strings["No registrations."] = "Ingen registreringer."; -App::$strings["Approve"] = "Godkjenn"; -App::$strings["Deny"] = "Avslå"; -App::$strings["Register date"] = "Registreringsdato"; -App::$strings["Last login"] = "Siste innlogging"; -App::$strings["Expires"] = "Utløper"; -App::$strings["Service Class"] = "Tjenesteklasse"; -App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte brukere vil bli slettet!\\n\\nAlt som disse brukerne har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette valgte brukere og deres innhold?"; -App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Brukeren {0} vil bli slettet!\\n\\nAlt denne brukeren har lagt inn på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne brukeren og alt innholdet til denne brukeren?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanal er sensurert/ikke sensurert lenger", - 1 => "%s kanaler er sensurert/ikke sensurert lenger", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanal slettet", - 1 => "%s kanaler slettet", -); -App::$strings["Channel not found"] = "Kanalen ble ikke funnet"; -App::$strings["Channel '%s' deleted"] = "Kanalen '%s' er slettet"; -App::$strings["Channel '%s' uncensored"] = "Kanalen '%s' er ikke sensurert lenger"; -App::$strings["Channel '%s' censored"] = "Kanalen '%s' er sensurert"; -App::$strings["Censor"] = "Sensurer"; -App::$strings["Uncensor"] = "Ikke sensurer lenger"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valgte kanaler vil bli slettet!\\n\\nAlt innhold som er lagt inn i disse kanalene på dette nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette disse kanalene med alt innhold?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} vil bli slettet!\\n\\nAlt innhold som er lagt inn i denne kanalen på dettet nettstedet vil bli slettet for alltid!\\n\\nEr du sikker på at du vil slette denne kanalen med alt innhold?"; -App::$strings["Plugin %s disabled."] = "Tilleggsfunksjonen %s er avskrudd."; -App::$strings["Plugin %s enabled."] = "Tilleggsfunksjonen %s er påskrudd."; -App::$strings["Disable"] = "Skru av"; -App::$strings["Enable"] = "Skru på"; -App::$strings["Toggle"] = "Skru av og på"; -App::$strings["Author: "] = "Forfatter:"; -App::$strings["Maintainer: "] = "Vedlikeholder:"; -App::$strings["No themes found."] = "Ingen temaer er funnet."; -App::$strings["Screenshot"] = "Skjermbilde"; -App::$strings["[Experimental]"] = "[Eksperimentelt]"; -App::$strings["[Unsupported]"] = "[Ingen støtte]"; -App::$strings["Log settings updated."] = "Logginnstillinger er oppdatert."; -App::$strings["Clear"] = "Tøm"; -App::$strings["Debugging"] = "Feilsøking"; -App::$strings["Log file"] = "Loggfil"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Må kunne skrives til av webtjenesten. Relativ til din Red sin toppnivåkatalog."; -App::$strings["Log level"] = "Loggnivå"; -App::$strings["New Profile Field"] = "Nytt profilfelt"; -App::$strings["Field nickname"] = "Feltets kallenavn"; -App::$strings["System name of field"] = "Systemnavnet til feltet"; -App::$strings["Input type"] = "Inndata-type"; -App::$strings["Field Name"] = "Feltnavn"; -App::$strings["Label on profile pages"] = "Merkelapp på profilsider"; -App::$strings["Help text"] = "Hjelpetekst"; -App::$strings["Additional info (optional)"] = "Tilleggsinformasjon (valgfritt)"; -App::$strings["Field definition not found"] = "Feltdefinisjonen ble ikke funnet"; -App::$strings["Edit Profile Field"] = "Endre profilfelt"; -App::$strings["Unable to find your hub."] = "Ikke i stand til å finne hubben din."; -App::$strings["Post successful."] = "Innlegg vellykket."; -App::$strings["Edit Block"] = "Endre byggekloss"; -App::$strings["Delete block?"] = "Slett byggeklossen?"; -App::$strings["Delete Block"] = "Slett byggekloss"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Antallet daglige registreringer ved nettstedet er overskredet. Vær vennlig å prøve igjen imorgen."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Vennligst angi at tjenesteavtalen er akseptert. Registrering mislyktes."; -App::$strings["Passwords do not match."] = "Passordene er ikke like."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registreringen er vellykket. Vennligst sjekk e-posten din for å bekrefte opprettelsen."; -App::$strings["Your registration is pending approval by the site owner."] = "Din registrering venter på godkjenning av nettstedets eier."; -App::$strings["Your registration can not be processed."] = "Din registrering kan ikke behandles."; -App::$strings["Registration on this site/hub is by approval only."] = "Registrering på dette nettstedet/denne hubben skjer bare gjennom godkjenning."; -App::$strings["Register at another affiliated site/hub"] = "Registrer på et annet tilknyttet nettsted/hub"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Dette nettstedet har overskredet antallet tillate kontoregistreringer per dag. Vennligst prøv igjen imorgen."; -App::$strings["Terms of Service"] = "Tjenesteavtale"; -App::$strings["I accept the %s for this website"] = "Jeg godtar %s for dette nettstedet"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Jeg er over 13 år gammel og aksepterer %s for dette nettstedet."; -App::$strings["Membership on this site is by invitation only."] = "Medlemskap ved dette nettstedet skjer kun via invitasjon."; -App::$strings["Please enter your invitation code"] = "Vennligst skriv din invitasjonskode"; -App::$strings["Your email address"] = "Din e-postadresse"; -App::$strings["Choose a password"] = "Velg et passord"; -App::$strings["Please re-enter your password"] = "Vennligst skriv ditt passord en gang til"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Sletting av kontoer er ikke tillatt innen 48 timer etter endring av kontopassordet."; -App::$strings["Remove This Account"] = "Slett denne kontoen"; -App::$strings["WARNING: "] = "ADVARSEL:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Denne kontoen og alle dens kanaler vil bli fullstendig fjernet fra nettverket."; -App::$strings["This action is permanent and can not be undone!"] = "Denne handlingen er permanent og kan ikke angres!"; -App::$strings["Please enter your password for verification:"] = "Vennligst skriv ditt passord for å få bekreftelse:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Slett denne kontoen, alle dens kanaler og alle dens kanalkloner fra dette nettverket"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard vil bare forekomster av kanalene lokalisert på denne hubben bli slettet fra nettverket"; -App::$strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - last siden på nytt for å se]"; -App::$strings["Page owner information could not be retrieved."] = "Informasjon om sideeier kunne ikke hentes."; -App::$strings["Album not found."] = "Albumet ble ikke funnet."; -App::$strings["Delete Album"] = "Slett album"; -App::$strings["Delete Photo"] = "Slett bilde"; -App::$strings["No photos selected"] = "Ingen bilder valgt"; -App::$strings["Access to this item is restricted."] = "Tilgang til dette elementet er begrenset."; -App::$strings["%1$.2f MB 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 a new album name"] = "Skriv et nytt albumnavn"; -App::$strings["or select an existing one (doubleclick)"] = "eller velg et eksisterende album (dobbeltklikk)"; -App::$strings["Create a status post for this upload"] = "Lag et statusinnlegg for denne opplastingen"; -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["Private Photo"] = "Privat bilde"; -App::$strings["View Full Size"] = "Vis i full størrelse"; -App::$strings["Edit photo"] = "Endre bilde"; -App::$strings["Rotate CW (right)"] = "Roter med klokka (mot høyre)"; -App::$strings["Rotate CCW (left)"] = "Roter mot klokka (venstre)"; -App::$strings["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["In This Photo:"] = "I dette bildet:"; -App::$strings["Map"] = "Kart"; -App::$strings["View Album"] = "Vis album"; -App::$strings["Recent Photos"] = "Nye bilder"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjernautentisering blokkert. Du er logget inn på dette nettstedet lokalt. Vennligst logg ut og prøv på nytt."; -App::$strings["Conversation removed."] = "Samtale fjernet."; -App::$strings["No messages."] = "Ingen meldinger."; -App::$strings["Delete conversation"] = "Slett samtale"; -App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -App::$strings["Menu element updated."] = "Menyelement er oppdatert."; -App::$strings["Unable to update menu element."] = "Ikke i stand til å oppdatere menyelement."; -App::$strings["Menu element added."] = "Menyelement lagt til."; -App::$strings["Unable to add menu element."] = "Ikke i stand til å legge til menyelement."; -App::$strings["Manage Menu Elements"] = "Håndtere menyelementer"; -App::$strings["Edit menu"] = "Endre meny"; -App::$strings["Edit element"] = "Endre element"; -App::$strings["Drop element"] = "Slett element"; -App::$strings["New element"] = "Nytt element"; -App::$strings["Edit this menu container"] = "Endre denne menybeholderen"; -App::$strings["Add menu element"] = "Legg til menyelement"; -App::$strings["Delete this menu item"] = "Slett dette menyelementet"; -App::$strings["Edit this menu item"] = "Endre dette menyelementet"; -App::$strings["New Menu Element"] = "Nytt menyelement"; -App::$strings["Menu Item Permissions"] = "Menyelement Tillatelser"; -App::$strings["Link text"] = "Lenketekst"; -App::$strings["URL of link"] = "URL-en til lenken"; -App::$strings["Use Hubzilla magic-auth if available"] = "Bruk Hubzillas magiske-autentisering hvis tilgjengelig"; -App::$strings["Open link in new window"] = "Åpne lenke i nytt vindu"; -App::$strings["Order in list"] = "Ordne i liste"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Høyere tall vil synke mot bunnen av listen"; -App::$strings["Menu item not found."] = "Menyelement ble ikke funnet."; -App::$strings["Menu item deleted."] = "Menyelement slettet."; -App::$strings["Menu item could not be deleted."] = "Menyelement kunne ikke bli slettet."; -App::$strings["Edit Menu Element"] = "Endre menyelement"; -App::$strings["Set your current mood and tell your friends"] = "Angi ditt nåværende humør og fortell dine venner"; -App::$strings["Total votes"] = "Totalt antall stemmer"; -App::$strings["Average Rating"] = "Gjennomsnittlig vurdering"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Fjerning av kanaler er ikke tillatt innen 48 timer etter endring av kontopassordet."; -App::$strings["Remove This Channel"] = "Fjern denne kanalen"; -App::$strings["This channel will be completely removed from the network. "] = "Denne kanalen vil bli fullstendig fjernet fra nettverket."; -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["Help with this feature"] = "Hjelp med denne funksjonen"; -App::$strings["Layout Name"] = "Layout-navn"; -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["Unable to lookup recipient."] = "Ikke i stand til å slå opp mottaker."; -App::$strings["Unable to communicate with requested channel."] = "Ikke i stand til å kommunisere med forespurt kanal."; -App::$strings["Cannot verify requested channel."] = "Kan ikke bekrefte forespurt kanal."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Valgt kanal har restriksjoner for private meldinger. Sending feilet."; -App::$strings["Message deleted."] = "Melding slettet."; -App::$strings["Message recalled."] = "Innlegg tilbakekalt."; -App::$strings["Send Private Message"] = "Send privat melding"; -App::$strings["To:"] = "Til:"; -App::$strings["Subject:"] = "Emne:"; -App::$strings["Send"] = "Send"; -App::$strings["Message not found."] = "Melding ikke funnet."; -App::$strings["Delete message"] = "Slett melding"; -App::$strings["Recall message"] = "Tilbakekall innlegg"; -App::$strings["Message has been recalled."] = "Innlegget har blitt tilbakekalt."; -App::$strings["Private Conversation"] = "Privat samtale"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen sikret kommunikasjon tilgjengelig. Du kan muligens greie å svare via senderens profilside."; -App::$strings["Send Reply"] = "Send svar"; -App::$strings["Invalid request identifier."] = "Ugyldig forespørselsidentifikator."; -App::$strings["Discard"] = "Forkast"; -App::$strings["Please login."] = "Vennligst logg inn."; -App::$strings["No such group"] = "Gruppen finnes ikke"; -App::$strings["Search Results For:"] = "Søkeresultat for:"; -App::$strings["Collection is empty"] = "Samlingen er tom"; -App::$strings["Collection: "] = "Samling:"; -App::$strings["Connection: "] = "Forbindelse:"; -App::$strings["Invalid connection."] = "Ugyldig forbindelse."; -App::$strings["Add a Channel"] = "Legg til en kanal"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "En kanal er din egen samling av relaterte web-sider. En kanal kan brukes til å samle sosiale nettverksprofiler, blogger, samtalegrupper og forum, kjendissider og mye mer. Du kan lage så mange kanaler som din tjenestetilbyder tillater."; -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 easily remembered channel address (like an email address) which you can share with others."] = "Ditt kallenavn brukes til å lage en kanaladresse som er enkel å huske (minner om en e-postadresse) og som du kan dele med andre."; -App::$strings["Or import an existing channel from another location"] = "Eller importerer en eksisterende kanal fra et annet sted."; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Vennligst velg en kanaltype (for eksempel sosialt nettverk eller forum for felleskap) og krav til personvern slik at vi kan velge de beste tillatelsene for deg."; -App::$strings["Channel Type"] = "Kanaltype"; -App::$strings["Read more about roles"] = "Les mer om roller"; -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["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["sent you a private message"] = "sendte deg en privat melding"; -App::$strings["added your channel"] = "la til din kanal"; -App::$strings["posted an event"] = "la ut en hendelse"; -App::$strings["Bookmark added"] = "Bokmerke lagt til"; -App::$strings["My Bookmarks"] = "Mine bokmerker"; -App::$strings["My Connections Bookmarks"] = "Mine forbindelsers bokmerker"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Utilstrekkelig tillatelse. Forespørsel omdirigert til profilsiden."; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ingen forslag tilgjengelige. Hvis dette er et nytt nettsted, vennligst prøv igjen om 24 timer."; -App::$strings["Poll"] = "Spørring"; -App::$strings["View Results"] = "Vis resultater"; -App::$strings["No service class restrictions found."] = "Ingen restriksjoner er funnet i tjenesteklasse."; -App::$strings["Files: shared with me"] = "Filer: delt med meg"; -App::$strings["Remove all files"] = "Fjern alle filer"; -App::$strings["Remove this file"] = "Fjern denne filen"; -App::$strings["Schema Default"] = "Standard skjema"; -App::$strings["Sans-Serif"] = "Sans-Serif"; -App::$strings["Monospace"] = "Monospace"; +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["Set scheme"] = "Angi skjema"; -App::$strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; -App::$strings["Set font face"] = "Angi skrifttype"; -App::$strings["Set iconset"] = "Angi ikonutvalg"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Angi stor skyggestørrelse, standard 15px 15px 15px"; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Angi liten skyggestørrelse, standard 5px 5px 5px"; -App::$strings["Set shadow color, default #000"] = "Angi skyggefarge, standard #000"; -App::$strings["Set radius size, default 5px"] = "Angi radiusstørrelse, standard 5px"; -App::$strings["Set line-height for posts and comments"] = "Angi linjeavstand for innlegg og kommentarer"; -App::$strings["Set background image"] = "Angi bakgrunnsbilde"; -App::$strings["Set background attachment"] = "Angi bakgrunnsvedlegg"; -App::$strings["Set background color"] = "Angi bakgrunnsfarge"; -App::$strings["Set section background image"] = "Angi seksjonens bakgrunnsbilde"; -App::$strings["Set section background color"] = "Angi seksjonens bakgrunnsfarge"; -App::$strings["Set color of items - use hex"] = "Angi fargen til elementer - bruk hex"; -App::$strings["Set color of links - use hex"] = "Angi fargen til lenker - bruk hex"; -App::$strings["Set max-width for items. Default 400px"] = "Angi maksimal bredde for elementer. Standard 400px"; -App::$strings["Set min-width for items. Default 240px"] = "Angi minimumsbredde for elementer. Standard 240px"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Angi den generelle bredden for innpakking av innhold. Standard 48%"; -App::$strings["Set color of fonts - use hex"] = "Angi skriftfargen - bruk hex"; -App::$strings["Set background-size element"] = "Angi størrelsen på bakgrunnselementet"; -App::$strings["Item opacity"] = "Elementers dekkevne"; -App::$strings["Display post previews only"] = "Vis kun forhåndsvisning av innlegg"; -App::$strings["Display side bar on channel page"] = "Vis sidestolpe på kanalsiden"; -App::$strings["Colour of the navigation bar"] = "Fargen på navigasjonslinjen"; -App::$strings["Item float"] = "Elementflyt"; -App::$strings["Left offset of the section element"] = "Til venstre for seksjonselementet"; -App::$strings["Right offset of the section element"] = "Til høyre for seksjonselementet"; -App::$strings["Section width"] = "Seksjonsbredde"; -App::$strings["Left offset of the aside"] = "Til venstre for sidestolpen"; -App::$strings["Right offset of the aside element"] = "Til høyre for sidestolpen"; -App::$strings["Light (Hubzilla default)"] = "Lys (Hubzilla standard)"; App::$strings["Select scheme"] = "Velg skjema"; App::$strings["Narrow navbar"] = "Smal navigasjonslinje"; App::$strings["Navigation bar background color"] = "Navigasjonslinjens bakgrunnsfarge"; @@ -2089,15 +2279,18 @@ App::$strings["Set the basic color for item icons"] = "Angi grunnfargen for elem App::$strings["Set the hover color for item icons"] = "Angi fargen til elementikoner ved berøring"; App::$strings["Set font-size for the entire application"] = "Angi skriftstørrelsen for hele programmet"; App::$strings["Example: 14px"] = "Eksempel: 14px"; +App::$strings["Set font-size for posts and comments"] = "Angi skriftstørrelse for innlegg og kommentarer"; App::$strings["Set font-color for posts and comments"] = "Angi skriftfargen for innlegg og kommentarer"; App::$strings["Set radius of corners"] = "Angi hjørneradius"; App::$strings["Set shadow depth of photos"] = "Angi skyggedybden til bilder"; App::$strings["Set maximum width of content region in pixel"] = "Angi største bredde for innholdsregionen i pixler"; App::$strings["Leave empty for default width"] = "La feltet stå tomt for å bruke standard bredde"; -App::$strings["Center page content"] = "Midtstill sideinnhold"; +App::$strings["Left align page content"] = "Venstrejuster sideinnhold"; App::$strings["Set minimum opacity of nav bar - to hide it"] = "Angi minste dekkevne for navigasjonslinjen - for å skjule den"; App::$strings["Set size of conversation author photo"] = "Angi størrelsen for samtalens forfatterbilde"; App::$strings["Set size of followup author photos"] = "Angi størrelsen på forfatterbilder ved oppfølging"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = ""; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; App::$strings["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"; @@ -2106,6 +2299,6 @@ App::$strings["Remember me"] = "Husk meg"; App::$strings["Forgot your password?"] = "Glemt passordet ditt?"; App::$strings["toggle mobile"] = "Skru på mobil"; App::$strings["Website SSL certificate is not valid. Please correct."] = "Nettstedets SSL-sertifikat er ikke gyldig. Vennligst fiks dette."; -App::$strings["[red] Website SSL error for %s"] = "[red] SSL-feil ved nettsted hos %s"; +App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] SSL-feil ved nettsted hos %s"; App::$strings["Cron/Scheduled tasks not running."] = "Cron/planlagte oppgaver kjører ikke."; -App::$strings["[red] Cron tasks not running on %s"] = "[red] Cron-oppgaver kjører ikke på %s"; +App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron-oppgaver kjører ikke på %s"; diff --git a/view/pdl/mod_network.pdl b/view/pdl/mod_network.pdl index 946e047ac..cef4ab4d6 100644 --- a/view/pdl/mod_network.pdl +++ b/view/pdl/mod_network.pdl @@ -3,6 +3,7 @@ [widget=activity_filter][/widget] [widget=savedsearch][/widget] [widget=suggestions][/widget] +[widget=tasklist][/widget] [widget=notes][/widget] [/region] diff --git a/view/pt-br/hmessages.po b/view/pt-br/hmessages.po deleted file mode 100644 index 029642f9b..000000000 --- a/view/pt-br/hmessages.po +++ /dev/null @@ -1,9250 +0,0 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. -# -# Translators: -# Frederico Gonçalves Guimarães , 2011 -# Frederico Gonçalves Guimarães , 2011 -# Frederico Gonçalves Guimarães , 2011,2013 -# Frederico Gonçalves Guimarães , 2013-2014 -# Frederico Gonçalves Guimarães , 2011 -# FULL NAME , 2011 -# Iske Solstag , 2014 -# Sérgio Lima , 2014 -# tony baldwin , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Hubzilla\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-05-22 00:03-0700\n" -"PO-Revision-Date: 2015-05-28 18:53+0000\n" - -"Last-Translator: Iske Solstag \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/red-matrix/language/pt_BR/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#: ../../include/dba/dba_driver.php:50 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'" - -#: ../../include/photo/photo_driver.php:653 ../../include/photos.php:51 -#: ../../mod/photos.php:91 ../../mod/photos.php:660 ../../mod/photos.php:682 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:423 -msgid "Profile Photos" -msgstr "Fotos do perfil" - -#: ../../include/text.php:329 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:331 -msgid "first" -msgstr "primeiro" - -#: ../../include/text.php:360 -msgid "last" -msgstr "último" - -#: ../../include/text.php:363 -msgid "next" -msgstr "próximo" - -#: ../../include/text.php:373 -msgid "older" -msgstr "mais antigo" - -#: ../../include/text.php:375 -msgid "newer" -msgstr "mais recente" - -#: ../../include/text.php:768 -msgid "No connections" -msgstr "Nenhuma conexão" - -#: ../../include/text.php:782 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d conexão" -msgstr[1] "%d conexões" - -#: ../../include/text.php:795 ../../mod/viewconnections.php:104 -msgid "View Connections" -msgstr "Ver conexões" - -#: ../../include/text.php:852 ../../include/text.php:864 -#: ../../include/nav.php:165 ../../include/apps.php:147 -#: ../../mod/search.php:38 -msgid "Search" -msgstr "Pesquisar" - -#: ../../include/text.php:853 ../../include/text.php:865 -#: ../../include/widgets.php:192 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 ../../mod/admin.php:1416 -#: ../../mod/admin.php:1436 -msgid "Save" -msgstr "Salvar" - -#: ../../include/text.php:928 -msgid "poke" -msgstr "cutucar" - -#: ../../include/text.php:928 ../../include/conversation.php:243 -msgid "poked" -msgstr "cutucado" - -#: ../../include/text.php:929 -msgid "ping" -msgstr "pingar" - -#: ../../include/text.php:929 -msgid "pinged" -msgstr "pingou" - -#: ../../include/text.php:930 -msgid "prod" -msgstr "espetar" - -#: ../../include/text.php:930 -msgid "prodded" -msgstr "espetou" - -#: ../../include/text.php:931 -msgid "slap" -msgstr "estapear" - -#: ../../include/text.php:931 -msgid "slapped" -msgstr "estapeou" - -#: ../../include/text.php:932 -msgid "finger" -msgstr "dar um toque" - -#: ../../include/text.php:932 -msgid "fingered" -msgstr "deu um toque" - -#: ../../include/text.php:933 -msgid "rebuff" -msgstr "rebater" - -#: ../../include/text.php:933 -msgid "rebuffed" -msgstr "rebateu" - -#: ../../include/text.php:943 -msgid "happy" -msgstr "feliz" - -#: ../../include/text.php:944 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:945 -msgid "mellow" -msgstr "suave" - -#: ../../include/text.php:946 -msgid "tired" -msgstr "cansad@" - -#: ../../include/text.php:947 -msgid "perky" -msgstr "animad@" - -#: ../../include/text.php:948 -msgid "angry" -msgstr "nervos@" - -#: ../../include/text.php:949 -msgid "stupified" -msgstr "embasbacad@" - -#: ../../include/text.php:950 -msgid "puzzled" -msgstr "confus@" - -#: ../../include/text.php:951 -msgid "interested" -msgstr "interessad@" - -#: ../../include/text.php:952 -msgid "bitter" -msgstr "amarg@" - -#: ../../include/text.php:953 -msgid "cheerful" -msgstr "animad@" - -#: ../../include/text.php:954 -msgid "alive" -msgstr "viv@" - -#: ../../include/text.php:955 -msgid "annoyed" -msgstr "aborrecid@" - -#: ../../include/text.php:956 -msgid "anxious" -msgstr "ansios@" - -#: ../../include/text.php:957 -msgid "cranky" -msgstr "irritad@" - -#: ../../include/text.php:958 -msgid "disturbed" -msgstr "perturbad@" - -#: ../../include/text.php:959 -msgid "frustrated" -msgstr "frustrad@" - -#: ../../include/text.php:960 -msgid "depressed" -msgstr "deprimido" - -#: ../../include/text.php:961 -msgid "motivated" -msgstr "motivad@" - -#: ../../include/text.php:962 -msgid "relaxed" -msgstr "relaxad@" - -#: ../../include/text.php:963 -msgid "surprised" -msgstr "surpres@" - -#: ../../include/text.php:1135 -msgid "Monday" -msgstr "Segunda" - -#: ../../include/text.php:1135 -msgid "Tuesday" -msgstr "Terça" - -#: ../../include/text.php:1135 -msgid "Wednesday" -msgstr "Quarta" - -#: ../../include/text.php:1135 -msgid "Thursday" -msgstr "Quinta" - -#: ../../include/text.php:1135 -msgid "Friday" -msgstr "Sexta" - -#: ../../include/text.php:1135 -msgid "Saturday" -msgstr "Sábado" - -#: ../../include/text.php:1135 -msgid "Sunday" -msgstr "Domingo" - -#: ../../include/text.php:1139 -msgid "January" -msgstr "Janeiro" - -#: ../../include/text.php:1139 -msgid "February" -msgstr "Fevereiro" - -#: ../../include/text.php:1139 -msgid "March" -msgstr "Março" - -#: ../../include/text.php:1139 -msgid "April" -msgstr "Abril" - -#: ../../include/text.php:1139 -msgid "May" -msgstr "Maio" - -#: ../../include/text.php:1139 -msgid "June" -msgstr "Junho" - -#: ../../include/text.php:1139 -msgid "July" -msgstr "Julho" - -#: ../../include/text.php:1139 -msgid "August" -msgstr "Agosto" - -#: ../../include/text.php:1139 -msgid "September" -msgstr "Setembro" - -#: ../../include/text.php:1139 -msgid "October" -msgstr "Outubro" - -#: ../../include/text.php:1139 -msgid "November" -msgstr "Novembro" - -#: ../../include/text.php:1139 -msgid "December" -msgstr "Dezembro" - -#: ../../include/text.php:1244 -msgid "unknown.???" -msgstr "desconhecido.???" - -#: ../../include/text.php:1245 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1281 -msgid "remove category" -msgstr "remover categoria" - -#: ../../include/text.php:1356 -msgid "remove from file" -msgstr "remover do arquivo" - -#: ../../include/text.php:1432 ../../include/text.php:1443 -#: ../../mod/connedit.php:661 -msgid "Click to open/close" -msgstr "Clique para abrir/fechar" - -#: ../../include/text.php:1599 ../../mod/events.php:444 -msgid "Link to Source" -msgstr "Link para a origem" - -#: ../../include/text.php:1620 ../../include/text.php:1691 -msgid "default" -msgstr "default" - -#: ../../include/text.php:1628 -msgid "Page layout" -msgstr "aparência da página" - -#: ../../include/text.php:1628 -msgid "You can create your own with the layouts tool" -msgstr "Você pode criar sua própria com as ferramentas de layouts" - -#: ../../include/text.php:1669 -msgid "Page content type" -msgstr "Tipo de conteúdo da página" - -#: ../../include/text.php:1703 -msgid "Select an alternate language" -msgstr "Selecione um idioma alternativo" - -#: ../../include/text.php:1822 ../../include/conversation.php:120 -#: ../../include/diaspora.php:2081 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1825 ../../include/conversation.php:123 -#: ../../mod/like.php:348 ../../mod/tagger.php:47 -msgid "event" -msgstr "evento" - -#: ../../include/text.php:1828 ../../include/conversation.php:148 -#: ../../include/diaspora.php:2081 ../../mod/like.php:346 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:51 -msgid "status" -msgstr "status" - -#: ../../include/text.php:1830 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "comentário" - -#: ../../include/text.php:1835 -msgid "activity" -msgstr "atividade" - -#: ../../include/text.php:2130 -msgid "Design Tools" -msgstr "Ferramentas de Design" - -#: ../../include/text.php:2133 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Blocos" - -#: ../../include/text.php:2134 ../../mod/menu.php:95 -msgid "Menus" -msgstr "Menus" - -#: ../../include/text.php:2135 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Layouts" - -#: ../../include/text.php:2136 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/text.php:2487 ../../include/RedDAV/RedBrowser.php:131 -msgid "Collection" -msgstr "Coleção" - -#: ../../include/bbcode.php:122 ../../include/bbcode.php:761 -#: ../../include/bbcode.php:764 ../../include/bbcode.php:769 -#: ../../include/bbcode.php:772 ../../include/bbcode.php:775 -#: ../../include/bbcode.php:778 ../../include/bbcode.php:783 -#: ../../include/bbcode.php:786 ../../include/bbcode.php:791 -#: ../../include/bbcode.php:794 ../../include/bbcode.php:797 -#: ../../include/bbcode.php:800 -msgid "Image/photo" -msgstr "Imagem/foto" - -#: ../../include/bbcode.php:161 ../../include/bbcode.php:811 -msgid "Encrypted content" -msgstr "Conteúdo criptografado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar elemento %s:" - -#: ../../include/bbcode.php:188 ../../mod/impel.php:33 -msgid "webpage" -msgstr "página web" - -#: ../../include/bbcode.php:191 ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../include/bbcode.php:194 ../../mod/impel.php:38 -msgid "block" -msgstr "bloco" - -#: ../../include/bbcode.php:208 -msgid "QR code" -msgstr "código QR" - -#: ../../include/bbcode.php:259 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escreveu a seguinte %2$s %3$s" - -#: ../../include/bbcode.php:261 -msgid "post" -msgstr "publicação" - -#: ../../include/bbcode.php:511 -msgid "Different viewers will see this text differently" -msgstr "Visualizadores diferentes verão esse texto diferentemente" - -#: ../../include/bbcode.php:722 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:749 -msgid "$1 wrote:" -msgstr "$1 escreveu:" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "criou uma nova publicação" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "comentou a publicação de %s" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes poderão ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Grupo de privacidade padrão para novos contatos" - -#: ../../include/group.php:254 ../../mod/admin.php:822 -msgid "All Channels" -msgstr "Todos os canais" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Coleções" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Editar coleção" - -#: ../../include/group.php:300 -msgid "Add new collection" -msgstr "Adicionar nova coleção" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Canais que não estão em nenhuma coleção" - -#: ../../include/group.php:303 ../../include/widgets.php:275 -msgid "add" -msgstr "adicionar" - -#: ../../include/account.php:27 -msgid "Not a valid email address" -msgstr "Não é um endereço de e-mail válido" - -#: ../../include/account.php:29 -msgid "Your email domain is not among those allowed on this site" -msgstr "O domínio do seu e-mail não está entre os permitidos neste site" - -#: ../../include/account.php:35 -msgid "Your email address is already registered at this site." -msgstr "O seu endereço de e-mail já está registrado neste site." - -#: ../../include/account.php:67 -msgid "An invitation is required." -msgstr "É necessário um convite." - -#: ../../include/account.php:71 -msgid "Invitation could not be verified." -msgstr "Não foi possível verificar o convite." - -#: ../../include/account.php:121 -msgid "Please enter the required information." -msgstr "Por favor, forneça a informação solicitada." - -#: ../../include/account.php:188 -msgid "Failed to store account information." -msgstr "Não foi possível armazenar a informação da conta." - -#: ../../include/account.php:246 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmação de registro para %s" - -#: ../../include/account.php:312 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitação de registro em %s" - -#: ../../include/account.php:314 ../../include/account.php:341 -#: ../../include/account.php:401 -msgid "Administrator" -msgstr "Administrador" - -#: ../../include/account.php:336 -msgid "your registration password" -msgstr "sua senha de registro" - -#: ../../include/account.php:339 ../../include/account.php:399 -#, php-format -msgid "Registration details for %s" -msgstr "Detalhes do registro de %s" - -#: ../../include/account.php:408 -msgid "Account approved." -msgstr "A conta foi aprovada." - -#: ../../include/account.php:447 -#, php-format -msgid "Registration revoked for %s" -msgstr "O registro de %s foi revogado" - -#: ../../include/account.php:492 -msgid "Account verified. Please login." -msgstr "Conta verificada. Por favor faça o login." - -#: ../../include/account.php:705 ../../include/account.php:707 -msgid "Click here to upgrade." -msgstr "Clique aqui para atualizar." - -#: ../../include/account.php:713 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Essa ação excede o limite definido para o seu plano de assinatura." - -#: ../../include/account.php:718 -msgid "This action is not available under your subscription plan." -msgstr "Essa ação não está disponível para o seu plano de assinatura." - -#: ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Miscelânea" - -#: ../../include/datetime.php:132 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD ou MM-DD" - -#: ../../include/datetime.php:235 ../../mod/events.php:635 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Obrigatório" - -#: ../../include/datetime.php:262 ../../boot.php:2354 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:268 -msgid "less than a second ago" -msgstr "menos de um segundo atrás" - -#: ../../include/datetime.php:271 -msgid "year" -msgstr "ano" - -#: ../../include/datetime.php:271 -msgid "years" -msgstr "anos" - -#: ../../include/datetime.php:272 -msgid "month" -msgstr "mês" - -#: ../../include/datetime.php:272 -msgid "months" -msgstr "meses" - -#: ../../include/datetime.php:273 -msgid "week" -msgstr "semana" - -#: ../../include/datetime.php:273 -msgid "weeks" -msgstr "semanas" - -#: ../../include/datetime.php:274 -msgid "day" -msgstr "dia" - -#: ../../include/datetime.php:274 -msgid "days" -msgstr "dias" - -#: ../../include/datetime.php:275 -msgid "hour" -msgstr "hora" - -#: ../../include/datetime.php:275 -msgid "hours" -msgstr "horas" - -#: ../../include/datetime.php:276 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:276 -msgid "minutes" -msgstr "minutos" - -#: ../../include/datetime.php:277 -msgid "second" -msgstr "segundo" - -#: ../../include/datetime.php:277 -msgid "seconds" -msgstr "segundos" - -#: ../../include/datetime.php:285 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s atrás" - -#: ../../include/datetime.php:519 -#, php-format -msgid "%1$s's birthday" -msgstr "Aniversário de %1$s " - -#: ../../include/datetime.php:520 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz Aniversário %1$s" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nova página" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100 -#: ../../include/apps.php:254 ../../include/menu.php:61 -#: ../../mod/settings.php:649 ../../mod/webpages.php:180 -#: ../../mod/thing.php:227 ../../mod/connections.php:382 -#: ../../mod/connections.php:395 ../../mod/connections.php:414 -#: ../../mod/blocks.php:153 ../../mod/editlayout.php:139 -#: ../../mod/editwebpage.php:178 ../../mod/editpost.php:113 -#: ../../mod/menu.php:100 ../../mod/editblock.php:140 -#: ../../mod/layouts.php:183 -msgid "Edit" -msgstr "Editar" - -#: ../../include/page_widgets.php:39 ../../mod/webpages.php:186 -#: ../../mod/blocks.php:159 ../../mod/layouts.php:188 -msgid "View" -msgstr "Ver" - -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 -#: ../../include/conversation.php:1155 ../../mod/webpages.php:187 -#: ../../mod/events.php:653 ../../mod/photos.php:970 -#: ../../mod/editwebpage.php:214 ../../mod/editpost.php:150 -#: ../../mod/editblock.php:176 -msgid "Preview" -msgstr "Pré-visualizar" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:188 -msgid "Actions" -msgstr "Ações" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:189 -msgid "Page Link" -msgstr "Link da página" - -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Título" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:191 -#: ../../mod/blocks.php:150 ../../mod/layouts.php:181 -msgid "Created" -msgstr "Criado" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:192 -#: ../../mod/blocks.php:151 ../../mod/layouts.php:182 -msgid "Edited" -msgstr "Editado" - -#: ../../include/api.php:1161 -msgid "Public Timeline" -msgstr "Linha do tempo pública" - -#: ../../include/comanche.php:34 ../../mod/admin.php:386 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Default" - -#: ../../include/dir_fns.php:143 -msgid "Directory Options" -msgstr "Opções do Diretório" - -#: ../../include/dir_fns.php:144 -msgid "Alphabetic" -msgstr "Alfabética" - -#: ../../include/dir_fns.php:145 -msgid "Reverse Alphabetic" -msgstr "Alfabética reversa" - -#: ../../include/dir_fns.php:146 -msgid "Newest to Oldest" -msgstr "Das mais recentes para as mais antigas" - -#: ../../include/dir_fns.php:147 -msgid "Oldest to Newest" -msgstr "Do mais Antigo para o mais Novo" - -#: ../../include/dir_fns.php:148 -msgid "Sort" -msgstr "Ordenar" - -#: ../../include/dir_fns.php:152 -msgid "Safe Mode" -msgstr "Modo tranquilo" - -#: ../../include/dir_fns.php:154 -msgid "Public Forums Only" -msgstr "Somente Fóruns públicos" - -#: ../../include/dir_fns.php:155 -msgid "This Website Only" -msgstr "Somente este Website" - -#: ../../include/event.php:19 ../../include/bb2diaspora.php:451 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:27 ../../include/bb2diaspora.php:457 -msgid "Starts:" -msgstr "Início:" - -#: ../../include/event.php:37 ../../include/bb2diaspora.php:465 -msgid "Finishes:" -msgstr "Fim:" - -#: ../../include/event.php:47 ../../include/bb2diaspora.php:473 -#: ../../include/identity.php:874 ../../mod/events.php:647 -#: ../../mod/directory.php:234 -msgid "Location:" -msgstr "Localização:" - -#: ../../include/event.php:391 -msgid "This event has been added to your calendar." -msgstr "Esse evento foi adicionado ao seu calendário." - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Excluir este item?" - -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:667 -#: ../../mod/photos.php:968 ../../mod/photos.php:1086 -msgid "Comment" -msgstr "Comentar" - -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:384 -msgid "[+] show all" -msgstr "[+] mostrar todos" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostra menos" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandir" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] colapsar" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "A senha é muito curta" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "As senhas não correspondem" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "todos" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Frase secreta" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Dica da frase secreta" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Atenção: permissões foram modificadas mas ainda não foram enviadas." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "fechar tudo" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada de novo aqui" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Avalie esse canal (isso é público)" - -#: ../../include/js_strings.php:20 ../../mod/rate.php:156 -msgid "Rating" -msgstr "Avaliação" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Descreva (opcional)" - -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:668 -#: ../../mod/settings.php:587 ../../mod/settings.php:689 -#: ../../mod/settings.php:715 ../../mod/settings.php:743 -#: ../../mod/settings.php:766 ../../mod/settings.php:848 -#: ../../mod/settings.php:1044 ../../mod/xchan.php:11 ../../mod/connect.php:93 -#: ../../mod/thing.php:275 ../../mod/thing.php:318 ../../mod/events.php:656 -#: ../../mod/group.php:81 ../../mod/setup.php:313 ../../mod/setup.php:358 -#: ../../mod/photos.php:565 ../../mod/photos.php:642 ../../mod/photos.php:929 -#: ../../mod/photos.php:969 ../../mod/photos.php:1087 ../../mod/pdledit.php:58 -#: ../../mod/import.php:504 ../../mod/chat.php:177 ../../mod/chat.php:211 -#: ../../mod/rate.php:167 ../../mod/invite.php:142 ../../mod/locs.php:105 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/poke.php:166 ../../mod/profiles.php:667 ../../mod/admin.php:446 -#: ../../mod/admin.php:810 ../../mod/admin.php:946 ../../mod/admin.php:1077 -#: ../../mod/admin.php:1271 ../../mod/admin.php:1356 ../../mod/mitem.php:237 -#: ../../mod/mood.php:134 ../../mod/connedit.php:679 ../../mod/mail.php:355 -#: ../../mod/appman.php:99 ../../mod/poll.php:68 ../../mod/bulksetclose.php:24 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Submit" -msgstr "Enviar" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor entre um endereço URL" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Mudanças não salvas. Você tem certeza que deseja deixar essa página?" - -#: ../../include/js_strings.php:26 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:28 -msgid "ago" -msgstr "atrás" - -#: ../../include/js_strings.php:29 -msgid "from now" -msgstr "de agora" - -#: ../../include/js_strings.php:30 -msgid "less than a minute" -msgstr "menos de um minuto" - -#: ../../include/js_strings.php:31 -msgid "about a minute" -msgstr "aproximadamente um minuto" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" - -#: ../../include/js_strings.php:33 -msgid "about an hour" -msgstr "aproximadamente uma hora" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "about %d hours" -msgstr "aproximadamente %d horas" - -#: ../../include/js_strings.php:35 -msgid "a day" -msgstr "um dia" - -#: ../../include/js_strings.php:36 -#, php-format -msgid "%d days" -msgstr "%d dias" - -#: ../../include/js_strings.php:37 -msgid "about a month" -msgstr "aproximadamente um mês" - -#: ../../include/js_strings.php:38 -#, php-format -msgid "%d months" -msgstr "%d meses" - -#: ../../include/js_strings.php:39 -msgid "about a year" -msgstr "aproximadamente um ano" - -#: ../../include/js_strings.php:40 -#, php-format -msgid "%d years" -msgstr "%d anos" - -#: ../../include/js_strings.php:41 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:42 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/RedDAV/RedBrowser.php:107 -#: ../../include/RedDAV/RedBrowser.php:268 -msgid "parent" -msgstr "nível superior" - -#: ../../include/RedDAV/RedBrowser.php:134 -msgid "Principal" -msgstr "Principal" - -#: ../../include/RedDAV/RedBrowser.php:137 -msgid "Addressbook" -msgstr "Livro de endereços" - -#: ../../include/RedDAV/RedBrowser.php:140 -msgid "Calendar" -msgstr "Calendário" - -#: ../../include/RedDAV/RedBrowser.php:143 -msgid "Schedule Inbox" -msgstr "Caixa de entrada da agenda" - -#: ../../include/RedDAV/RedBrowser.php:146 -msgid "Schedule Outbox" -msgstr "Caixa de saída da agenda" - -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/conversation.php:1019 -#: ../../include/apps.php:336 ../../include/apps.php:387 -#: ../../mod/photos.php:681 ../../mod/photos.php:1119 -msgid "Unknown" -msgstr "Desconhecido" - -#: ../../include/RedDAV/RedBrowser.php:227 -#, php-format -msgid "%1$s used" -msgstr "%1$s usados" - -#: ../../include/RedDAV/RedBrowser.php:232 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s usados de %2$s (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 -#: ../../include/conversation.php:1609 ../../include/apps.php:135 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Arquivos" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Total" -msgstr "Total" - -#: ../../include/RedDAV/RedBrowser.php:255 -msgid "Shared" -msgstr "Compartilhado" - -#: ../../include/RedDAV/RedBrowser.php:256 -#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/webpages.php:179 -#: ../../mod/blocks.php:152 ../../mod/menu.php:104 ../../mod/layouts.php:175 -#: ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Criar" - -#: ../../include/RedDAV/RedBrowser.php:257 -#: ../../include/RedDAV/RedBrowser.php:308 ../../mod/profile_photo.php:362 -#: ../../mod/photos.php:706 ../../mod/photos.php:1236 -msgid "Upload" -msgstr "Enviar" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/settings.php:589 -#: ../../mod/settings.php:615 ../../mod/admin.php:953 -#: ../../mod/sharedwithme.php:95 -msgid "Name" -msgstr "Nome" - -#: ../../include/RedDAV/RedBrowser.php:265 -msgid "Type" -msgstr "Tipo" - -#: ../../include/RedDAV/RedBrowser.php:266 ../../mod/sharedwithme.php:97 -msgid "Size" -msgstr "Tamanho" - -#: ../../include/RedDAV/RedBrowser.php:267 ../../mod/sharedwithme.php:98 -msgid "Last Modified" -msgstr "Última modificação" - -#: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120 -#: ../../include/conversation.php:660 ../../include/apps.php:255 -#: ../../mod/settings.php:650 ../../mod/webpages.php:182 -#: ../../mod/thing.php:228 ../../mod/group.php:176 ../../mod/blocks.php:155 -#: ../../mod/photos.php:1050 ../../mod/editlayout.php:107 -#: ../../mod/editwebpage.php:225 ../../mod/admin.php:817 -#: ../../mod/admin.php:948 ../../mod/editblock.php:113 -#: ../../mod/connedit.php:543 -msgid "Delete" -msgstr "Excluir" - -#: ../../include/RedDAV/RedBrowser.php:305 -msgid "Create new folder" -msgstr "Criar uma nova pasta" - -#: ../../include/RedDAV/RedBrowser.php:307 -msgid "Upload file" -msgstr "Enviar arquivo" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Links guardados de %1$s" - -#: ../../include/network.php:635 -msgid "view full size" -msgstr "ver na tela inteira" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Recursos gerais" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Expiração de conteúdo" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Remover publicações/comentários e/ou mensagens privadas num momento futuro." - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Múltiplos perfis" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Possibilidade de criar múltiplos perfis" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Perfis avançados" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Seções e seleções adicionais no perfil" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Importar/exportar perfis" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Salvar e carregar detalhes de perfis entre sites/canais" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Páginas web" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Fornece páginas web gerenciáveis no seu canal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Habilita uma ferramenta para guardar notas e lembretes" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Seletor de canais na navegação" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Trocar canais diretamente a partir do menu expansível na navegação" - -#: ../../include/features.php:47 -msgid "Photo Location" -msgstr "Localização da Foto" - -#: ../../include/features.php:47 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Se os dados de localização estão disponíveis na foto enviada, link isso para um mapa." - -#: ../../include/features.php:49 -msgid "Expert Mode" -msgstr "Modo Expert" - -#: ../../include/features.php:49 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "O Modo Expert fornece opções de configurações avançadas" - -#: ../../include/features.php:50 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:50 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Permite definir restrições e termos para aqueles que se conectarem ao seu canal" - -#: ../../include/features.php:55 -msgid "Post Composition Features" -msgstr "Recursos de composição de publicações" - -#: ../../include/features.php:57 -msgid "Use Markdown" -msgstr "Usar Markdown" - -#: ../../include/features.php:57 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Permitir o uso de \"Markdown\" para formatar publicações" - -#: ../../include/features.php:58 -msgid "Large Photos" -msgstr "Fotos Grandes" - -#: ../../include/features.php:58 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Inclua miniatura grande (640px) no texto. Se não habilitado, use miniatura pequena (320px)" - -#: ../../include/features.php:59 ../../include/widgets.php:546 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Fontes do canal" - -#: ../../include/features.php:59 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automaticamente conteúdo de outros canais ou fontes" - -#: ../../include/features.php:60 -msgid "Even More Encryption" -msgstr "Mais encriptação ainda" - -#: ../../include/features.php:60 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir encriptação opcional de conteúdo, ponta-a-ponta com uma chave secreta compartilhada" - -#: ../../include/features.php:61 -msgid "Enable voting tools" -msgstr "Habilitar ferramenta de votos" - -#: ../../include/features.php:61 -msgid "Provide a class of post which others can vote on" -msgstr "Forneça uma classe de publicação que outros possam votar" - -#: ../../include/features.php:67 -msgid "Network and Stream Filtering" -msgstr "Filtragem de rede e fluxo" - -#: ../../include/features.php:68 -msgid "Search by Date" -msgstr "Pesquisar por data" - -#: ../../include/features.php:68 -msgid "Ability to select posts by date ranges" -msgstr "capacidade de selecionar publicações por intervalos de datas" - -#: ../../include/features.php:69 -msgid "Collections Filter" -msgstr "Filtros de coleções" - -#: ../../include/features.php:69 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Habilita widget para exibir publicações da rede apenas para determinadas coleções" - -#: ../../include/features.php:70 ../../include/widgets.php:274 -msgid "Saved Searches" -msgstr "Pesquisas salvas" - -#: ../../include/features.php:70 -msgid "Save search terms for re-use" -msgstr "Termos de pesquisa salvos para reutilização" - -#: ../../include/features.php:71 -msgid "Network Personal Tab" -msgstr "Aba de interações na rede" - -#: ../../include/features.php:71 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilita uma aba para exibir apenas publicações da rede com as quais você interagiu" - -#: ../../include/features.php:72 -msgid "Network New Tab" -msgstr "Aba de novidades da rede" - -#: ../../include/features.php:72 -msgid "Enable tab to display all new Network activity" -msgstr "Habilita uma aba para exibir todas as novas atividades da rede" - -#: ../../include/features.php:73 -msgid "Affinity Tool" -msgstr "Ferramenta de afinidade" - -#: ../../include/features.php:73 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtra o fluxo de atividades de acordo com o nível do relacionamento" - -#: ../../include/features.php:74 -msgid "Suggest Channels" -msgstr "Sugerir canais" - -#: ../../include/features.php:74 -msgid "Show channel suggestions" -msgstr "Exibir sugestões de canais" - -#: ../../include/features.php:79 -msgid "Post/Comment Tools" -msgstr "Ferramentas de publicação/comentário" - -#: ../../include/features.php:80 -msgid "Tagging" -msgstr "Etiquetagem" - -#: ../../include/features.php:80 -msgid "Ability to tag existing posts" -msgstr "Possibilidade de colocar etiquetas em publicações existentes" - -#: ../../include/features.php:81 -msgid "Post Categories" -msgstr "Categorizar publicações" - -#: ../../include/features.php:81 -msgid "Add categories to your posts" -msgstr "Adiciona categorias às suas publicações" - -#: ../../include/features.php:82 ../../include/widgets.php:304 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Pastas salvas" - -#: ../../include/features.php:82 -msgid "Ability to file posts under folders" -msgstr "Possibilidade de arquivar publicações em pastas" - -#: ../../include/features.php:83 -msgid "Dislike Posts" -msgstr "Desgostar de publicações" - -#: ../../include/features.php:83 -msgid "Ability to dislike posts/comments" -msgstr "Possibilidade de desgostar de publicações/comentários" - -#: ../../include/features.php:84 -msgid "Star Posts" -msgstr "Destacar publicações" - -#: ../../include/features.php:84 -msgid "Ability to mark special posts with a star indicator" -msgstr "Possibilidade de marcar publicações em destaque com uma estrela indicadora" - -#: ../../include/features.php:85 -msgid "Tag Cloud" -msgstr "Nuvem de etiquetas" - -#: ../../include/features.php:85 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Fornece uma nuvem de etiquetas pessoais à página do seu canal" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:264 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Categorias" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Aplicações" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1504 -msgid "Personal" -msgstr "Pessoal" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Criar aplicações pessoais" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Editar aplicações pessoais" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/Contact.php:107 ../../include/conversation.php:945 -#: ../../include/identity.php:823 ../../mod/match.php:64 -#: ../../mod/directory.php:302 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Conectar" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Sugestões" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Veja mais..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Você tem %1$.0f de %2$.0f conexões permitidas." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Adicionar nova conexão" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Digite o endereço do canal" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:266 -msgid "Remove term" -msgstr "Remover termo" - -#: ../../include/widgets.php:307 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Tudo" - -#: ../../include/widgets.php:349 -msgid "Archives" -msgstr "Arquivos" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:572 -msgid "Me" -msgstr "Eu" - -#: ../../include/widgets.php:428 ../../mod/connedit.php:573 -msgid "Family" -msgstr "Família" - -#: ../../include/widgets.php:429 ../../include/identity.php:394 -#: ../../include/identity.php:395 ../../include/identity.php:402 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:344 -#: ../../mod/settings.php:348 ../../mod/settings.php:349 -#: ../../mod/settings.php:352 ../../mod/settings.php:363 -#: ../../mod/connedit.php:574 -msgid "Friends" -msgstr "Amigos" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:575 -msgid "Acquaintances" -msgstr "Conhecidos" - -#: ../../include/widgets.php:431 ../../mod/connections.php:231 -#: ../../mod/connections.php:246 ../../mod/connedit.php:576 -msgid "All" -msgstr "Todos" - -#: ../../include/widgets.php:450 -msgid "Refresh" -msgstr "Atualizar" - -#: ../../include/widgets.php:485 -msgid "Account settings" -msgstr "Configurações da conta" - -#: ../../include/widgets.php:491 -msgid "Channel settings" -msgstr "Configurações do canal" - -#: ../../include/widgets.php:497 -msgid "Additional features" -msgstr "Recursos adicionais" - -#: ../../include/widgets.php:503 -msgid "Feature/Addon settings" -msgstr "Configurações característica/plugins" - -#: ../../include/widgets.php:509 -msgid "Display settings" -msgstr "Configurações de exibição" - -#: ../../include/widgets.php:515 -msgid "Connected apps" -msgstr "Aplicações conectadas" - -#: ../../include/widgets.php:521 -msgid "Export channel" -msgstr "Exportar o canal" - -#: ../../include/widgets.php:530 ../../mod/connedit.php:653 -msgid "Connection Default Permissions" -msgstr "Permissões padrão para conexões" - -#: ../../include/widgets.php:538 -msgid "Premium Channel Settings" -msgstr "Configurações de canal premium" - -#: ../../include/widgets.php:554 ../../include/nav.php:208 -#: ../../include/apps.php:134 ../../mod/admin.php:1038 -#: ../../mod/admin.php:1238 -msgid "Settings" -msgstr "Configurações" - -#: ../../include/widgets.php:567 ../../mod/message.php:31 -#: ../../mod/mail.php:128 -msgid "Messages" -msgstr "Mensagens" - -#: ../../include/widgets.php:570 -msgid "Check Mail" -msgstr "Checar mensagens" - -#: ../../include/widgets.php:575 ../../include/nav.php:199 -msgid "New Message" -msgstr "Nova mensagem" - -#: ../../include/widgets.php:650 -msgid "Chat Rooms" -msgstr "Salas de bate-papo" - -#: ../../include/widgets.php:670 -msgid "Bookmarked Chatrooms" -msgstr "Salas de bate-papo guardadas" - -#: ../../include/widgets.php:690 -msgid "Suggested Chatrooms" -msgstr "Salas de bate-papo sugeridas" - -#: ../../include/widgets.php:817 ../../include/widgets.php:875 -msgid "photo/image" -msgstr "foto/imagem" - -#: ../../include/widgets.php:970 ../../include/widgets.php:972 -msgid "Rate Me" -msgstr "Avalie-me" - -#: ../../include/widgets.php:976 -msgid "View Ratings" -msgstr "Ver avaliações" - -#: ../../include/widgets.php:987 -msgid "Public Hubs" -msgstr "Hubs Públicos" - -#: ../../include/enotify.php:58 -msgid "$Projectname Notification" -msgstr "$Projectname Notificação" - -#: ../../include/enotify.php:59 ../../include/diaspora.php:2461 -#: ../../include/diaspora.php:2472 ../../mod/p.php:46 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/enotify.php:61 -msgid "Thank You," -msgstr "Obrigado(a)," - -#: ../../include/enotify.php:63 -#, php-format -msgid "%s Administrator" -msgstr "Administrador de %s" - -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Notify] Nova mensagem recebida em %s" - -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s te enviou uma nova mensagem privada em %3$s." - -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s enviou %2$s para você." - -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "uma mensagem privada" - -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor, visite %s para ver e/ou responder as suas mensagens privadas." - -#: ../../include/enotify.php:158 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s comentou em [zrl=%3$s]um/a %4$s[/zrl]" - -#: ../../include/enotify.php:166 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s comentou em [zrl=%3$s]%5$s de %4$s[/zrl]" - -#: ../../include/enotify.php:175 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s comentou em [zrl=%3$s]seu %4$s[/zrl]" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Notify] Comentário na conversa #%1$d por %2$s" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s comentou em um item/conversa que você acompanha." - -#: ../../include/enotify.php:190 ../../include/enotify.php:205 -#: ../../include/enotify.php:231 ../../include/enotify.php:249 -#: ../../include/enotify.php:263 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Por favor, visite %s para ver e/ou responder a conversa." - -#: ../../include/enotify.php:196 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Notify] %s publicou no mural do seu perfil" - -#: ../../include/enotify.php:198 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s publicou no mural do seu perfil em %3$s" - -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s publicou no [zrl=%3$s]seu mural[/zrl]" - -#: ../../include/enotify.php:224 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Notify] %s mencionou você" - -#: ../../include/enotify.php:225 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s mencionou você em %3$s" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]mencionou você[/zrl]." - -#: ../../include/enotify.php:238 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Notify] %1$s cutucou você" - -#: ../../include/enotify.php:239 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s cutucou você em %3$s" - -#: ../../include/enotify.php:240 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]cutucou você[/zrl]." - -#: ../../include/enotify.php:256 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Notify] %s marcou a sua publicação" - -#: ../../include/enotify.php:257 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s marcou seu post em %3$s" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s marcou [zrl=%3$s]seu post[/zrl]" - -#: ../../include/enotify.php:270 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Notify] Você recebeu uma apresentação" - -#: ../../include/enotify.php:271 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, você recebeu uma nova solicitação de conexão de '%2$s' em %3$s" - -#: ../../include/enotify.php:272 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, você recebeu [zrl=%2$s]uma nova solicitação de conexão[/zrl] de %3$s." - -#: ../../include/enotify.php:276 ../../include/enotify.php:295 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Você pode visitar seu perfil em %s" - -#: ../../include/enotify.php:278 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação." - -#: ../../include/enotify.php:285 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Notify] Foi recebida uma sugestão de amizade" - -#: ../../include/enotify.php:286 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, você recebeu uma sugestão de amizade de '%2$s' em %3$s" - -#: ../../include/enotify.php:287 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, você recebeu [zrl=%2$s]uma sugestão de amizade[/zrl] com %3$s de %4$s." - -#: ../../include/enotify.php:293 -msgid "Name:" -msgstr "Nome:" - -#: ../../include/enotify.php:294 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:297 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprovar ou rejeitar a sugestão." - -#: ../../include/enotify.php:508 -msgid "[Red:Notify]" -msgstr "[Red:Notify]" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "De hora em hora" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Duas vezes ao dia" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensalmente" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:813 -#: ../../mod/admin.php:822 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1552 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/MI" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Falta o destinatário." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[sem assunto]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Não foi possível determinar o remetente." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Não foi possível verificar a publicação armazenada." - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "O canal está bloqueado neste site." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "A localização do canal foi perdida" - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "A resposta do canal remoto está incompleta." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "O canal foi deletado e não existe mais." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protocolo desabilitado." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "A descoberta de canais falhou." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "a conta local não foi encontrada." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Não é possível conectar-se consigo mesmo." - -#: ../../include/ItemObject.php:89 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Mensagem privada" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:659 -msgid "Select" -msgstr "Selecionar" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Salvar para pasta" - -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Vou comparecer" - -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Não vou comparecer" - -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Talvez compareça" - -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Eu concordo" - -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Eu discordo" - -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Me abstenho" - -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1677 ../../mod/photos.php:1003 -#: ../../mod/photos.php:1015 -msgid "View all" -msgstr "Ver tudo" - -#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 -#: ../../include/conversation.php:1701 ../../include/identity.php:1133 -#: ../../mod/photos.php:1007 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "gostou" -msgstr[1] "gostaram" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1704 -#: ../../mod/photos.php:1012 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "desgostou" -msgstr[1] "desgostaram" - -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Adicione estrela" - -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Remove estrela" - -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Alterna status da estrela" - -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "destacado" - -#: ../../include/ItemObject.php:227 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "A assinatura desta mensagem foi validada" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "A assinatura desta mensagem é incorreta" - -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Adiciona etiqueta" - -#: ../../include/ItemObject.php:254 ../../mod/photos.php:947 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alterna)" - -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:310 -msgid "like" -msgstr "gostei" - -#: ../../include/ItemObject.php:255 ../../mod/photos.php:948 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alterna)" - -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:311 -msgid "dislike" -msgstr "não gostei" - -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Compartilhe isso" - -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "compartilhar" - -#: ../../include/ItemObject.php:276 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" - -#: ../../include/ItemObject.php:294 ../../include/ItemObject.php:295 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver o perfil de %s - %s" - -#: ../../include/ItemObject.php:298 -msgid "to" -msgstr "para" - -#: ../../include/ItemObject.php:299 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:300 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" - -#: ../../include/ItemObject.php:301 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" - -#: ../../include/ItemObject.php:312 ../../include/conversation.php:716 -#, php-format -msgid "from %s" -msgstr "de %s" - -#: ../../include/ItemObject.php:315 ../../include/conversation.php:719 -#, php-format -msgid "last edited: %s" -msgstr "última edição: %s" - -#: ../../include/ItemObject.php:316 ../../include/conversation.php:720 -#, php-format -msgid "Expires: %s" -msgstr "Expira: %s" - -#: ../../include/ItemObject.php:337 -msgid "Save Bookmarks" -msgstr "Salve Favoritos" - -#: ../../include/ItemObject.php:338 -msgid "Add to Calendar" -msgstr "Adicione ao calendário" - -#: ../../include/ItemObject.php:347 -msgid "Mark all seen" -msgstr "Marcar todos como visto" - -#: ../../include/ItemObject.php:353 ../../mod/photos.php:1133 -msgctxt "noun" -msgid "Likes" -msgstr "Gostaram" - -#: ../../include/ItemObject.php:354 ../../mod/photos.php:1134 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desgostaram" - -#: ../../include/ItemObject.php:359 ../../include/acl_selectors.php:249 -#: ../../mod/photos.php:1139 -msgid "Close" -msgstr "Fechar" - -#: ../../include/ItemObject.php:364 ../../include/conversation.php:737 -#: ../../include/conversation.php:1209 ../../mod/photos.php:950 -#: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:192 -#: ../../mod/editpost.php:130 ../../mod/editblock.php:155 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Por favor, espere" - -#: ../../include/ItemObject.php:665 ../../mod/photos.php:966 -#: ../../mod/photos.php:1084 -msgid "This is you" -msgstr "Este(a) é você" - -#: ../../include/ItemObject.php:669 ../../include/conversation.php:1181 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:179 -#: ../../mod/editpost.php:114 ../../mod/editblock.php:141 -msgid "Bold" -msgstr "Negrito" - -#: ../../include/ItemObject.php:670 ../../include/conversation.php:1182 -#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:180 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:142 -msgid "Italic" -msgstr "Itálico" - -#: ../../include/ItemObject.php:671 ../../include/conversation.php:1183 -#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:181 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:143 -msgid "Underline" -msgstr "Sublinhado" - -#: ../../include/ItemObject.php:672 ../../include/conversation.php:1184 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:182 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:144 -msgid "Quote" -msgstr "Citação" - -#: ../../include/ItemObject.php:673 ../../include/conversation.php:1185 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:183 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:145 -msgid "Code" -msgstr "Código" - -#: ../../include/ItemObject.php:674 -msgid "Image" -msgstr "Imagem" - -#: ../../include/ItemObject.php:675 -msgid "Insert Link" -msgstr "Inserir link" - -#: ../../include/ItemObject.php:676 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/ItemObject.php:680 ../../include/conversation.php:1236 -#: ../../mod/editpost.php:158 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Encriptar texto" - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nova janela" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abre a localização selecionada em outra aba ou janela" - -#: ../../include/Contact.php:215 ../../mod/admin.php:730 -#, php-format -msgid "User '%s' deleted" -msgstr "O usuário/a '%s' foi deletado/a" - -#: ../../include/bb2diaspora.php:373 -msgid "Attachments:" -msgstr "Anexos:" - -#: ../../include/bb2diaspora.php:453 -msgid "$Projectname event notification:" -msgstr "Notificação de evento em $Projectname:" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "Sair" - -#: ../../include/reddav.php:1346 -msgid "Upload file" -msgstr "Enviar arquivo" - -#: ../../include/reddav.php:1347 ../../mod/photos.php:1241 -#: ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Enviar" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Nome da sala vazio" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Nome da sala duplicado" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Especificador de sala inválido." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "A sala não foi encontrada." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "A sala está cheia" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Recursos gerais" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "Expiração de conteúdo" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Remover publicações/comentários e/ou mensagens privadas num momento futuro." - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Múltiplos perfis" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Possibilidade de criar múltiplos perfis" - -#: ../../include/features.php:27 -msgid "Advanced Profiles" -msgstr "Perfis avançados" - -#: ../../include/features.php:27 -msgid "Additional profile sections and selections" -msgstr "Seções e seleções adicionais no perfil" - -#: ../../include/features.php:28 -msgid "Profile Import/Export" -msgstr "Importar/exportar perfis" - -#: ../../include/features.php:28 -msgid "Save and load profile details across sites/channels" -msgstr "Salvar e carregar detalhes de perfis entre sites/canais" - -#: ../../include/nav.php:113 ../../include/conversation.php:1645 -#: ../../include/apps.php:136 ../../mod/webpages.php:177 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Suas páginas web" - -#: ../../include/nav.php:117 ../../include/apps.php:131 ../../boot.php:1550 -msgid "Login" -msgstr "Entrar" - -#: ../../include/features.php:30 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:30 -msgid "Enables a tool to store notes and reminders" -msgstr "Habilita uma ferramenta para guardar notas e lembretes" - -#: ../../include/features.php:34 -msgid "Navigation Channel Select" -msgstr "Seletor de canais na navegação" - -#: ../../include/features.php:34 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Trocar canais diretamente a partir do menu expansível na navegação" - -#: ../../include/features.php:38 -msgid "Extended Identity Sharing" -msgstr "Compartilhamento estendido de identidade" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "Registrar" - -#: ../../include/features.php:39 -msgid "Expert Mode" -msgstr "Modo Expert" - -#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 -#: ../../mod/help.php:72 ../../mod/layouts.php:176 -msgid "Help" -msgstr "Ajuda" - -#: ../../include/features.php:40 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:40 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Permite definir restrições e termos para aqueles que se conectarem ao seu canal" - -#: ../../include/features.php:45 -msgid "Post Composition Features" -msgstr "Recursos de composição de publicações" - -#: ../../include/features.php:47 -msgid "Use Markdown" -msgstr "Usar Markdown" - -#: ../../include/features.php:47 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Permitir o uso de \"Markdown\" para formatar publicações" - -#: ../../include/features.php:48 -msgid "Post Preview" -msgstr "Pré-visualizar a publicação" - -#: ../../include/features.php:48 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permite visualizar publicações e comentários antes de publicá-los" - -#: ../../include/features.php:49 ../../include/widgets.php:510 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Fontes do canal" - -#: ../../include/features.php:49 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automaticamente conteúdo de outros canais ou fontes" - -#: ../../include/features.php:50 -msgid "Even More Encryption" -msgstr "Mais encriptação ainda" - -#: ../../include/features.php:50 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir encriptação opcional de conteúdo, ponta-a-ponta com uma chave secreta compartilhada" - -#: ../../include/features.php:55 -msgid "Network and Stream Filtering" -msgstr "Filtragem de rede e fluxo" - -#: ../../include/features.php:56 -msgid "Search by Date" -msgstr "Pesquisar por data" - -#: ../../include/features.php:56 -msgid "Ability to select posts by date ranges" -msgstr "capacidade de selecionar publicações por intervalos de datas" - -#: ../../include/features.php:57 -msgid "Collections Filter" -msgstr "Filtros de coleções" - -#: ../../include/features.php:57 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Habilita widget para exibir publicações da rede apenas para determinadas coleções" - -#: ../../include/features.php:58 ../../include/widgets.php:272 -msgid "Saved Searches" -msgstr "Pesquisas salvas" - -#: ../../include/features.php:58 -msgid "Save search terms for re-use" -msgstr "Termos de pesquisa salvos para reutilização" - -#: ../../include/features.php:59 -msgid "Network Personal Tab" -msgstr "Aba de interações na rede" - -#: ../../include/features.php:59 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilita uma aba para exibir apenas publicações da rede com as quais você interagiu" - -#: ../../include/features.php:60 -msgid "Network New Tab" -msgstr "Aba de novidades da rede" - -#: ../../include/features.php:60 -msgid "Enable tab to display all new Network activity" -msgstr "Habilita uma aba para exibir todas as novas atividades da rede" - -#: ../../include/features.php:61 -msgid "Affinity Tool" -msgstr "Ferramenta de afinidade" - -#: ../../include/features.php:61 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtra o fluxo de atividades de acordo com o nível do relacionamento" - -#: ../../include/features.php:62 -msgid "Suggest Channels" -msgstr "Sugerir canais" - -#: ../../include/features.php:62 -msgid "Show channel suggestions" -msgstr "Exibir sugestões de canais" - -#: ../../include/features.php:67 -msgid "Post/Comment Tools" -msgstr "Ferramentas de publicação/comentário" - -#: ../../include/features.php:69 -msgid "Edit Sent Posts" -msgstr "Editar publicações enviadas" - -#: ../../include/features.php:69 -msgid "Edit and correct posts and comments after sending" -msgstr "Edita e corrige publicações e comentários após terem sido enviados" - -#: ../../include/features.php:70 -msgid "Tagging" -msgstr "Etiquetagem" - -#: ../../include/features.php:70 -msgid "Ability to tag existing posts" -msgstr "Possibilidade de colocar etiquetas em publicações existentes" - -#: ../../include/features.php:71 -msgid "Post Categories" -msgstr "Categorizar publicações" - -#: ../../include/features.php:71 -msgid "Add categories to your posts" -msgstr "Adiciona categorias às suas publicações" - -#: ../../include/features.php:72 -msgid "Ability to file posts under folders" -msgstr "Possibilidade de arquivar publicações em pastas" - -#: ../../include/features.php:73 -msgid "Dislike Posts" -msgstr "Desgostar de publicações" - -#: ../../include/features.php:73 -msgid "Ability to dislike posts/comments" -msgstr "Possibilidade de desgostar de publicações/comentários" - -#: ../../include/features.php:74 -msgid "Star Posts" -msgstr "Destacar publicações" - -#: ../../include/features.php:74 -msgid "Ability to mark special posts with a star indicator" -msgstr "Possibilidade de marcar publicações em destaque com uma estrela indicadora" - -#: ../../include/features.php:75 -msgid "Tag Cloud" -msgstr "Nuvem de etiquetas" - -#: ../../include/features.php:75 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Fornece uma nuvem de etiquetas pessoais à página do seu canal" - -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." -msgstr "O canal está bloqueado neste site." - -#: ../../include/follow.php:31 -msgid "Channel location missing." -msgstr "A localização do canal foi perdida" - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "A resposta do canal remoto está incompleta." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "O canal foi deletado e não existe mais." - -#: ../../include/follow.php:133 ../../include/follow.php:202 -msgid "Protocol disabled." -msgstr "Protocolo desabilitado." - -#: ../../include/follow.php:176 -msgid "Channel discovery failed." -msgstr "A descoberta de canais falhou." - -#: ../../include/follow.php:192 -msgid "local account not found." -msgstr "a conta local não foi encontrada." - -#: ../../include/follow.php:219 -msgid "Cannot connect to yourself." -msgstr "Não é possível conectar-se consigo mesmo." - -#: ../../include/items.php:375 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:242 -#: ../../index.php:364 -msgid "Permission denied" -msgstr "Permissão negada" - -#: ../../include/items.php:1020 ../../include/items.php:1066 -msgid "(Unknown)" -msgstr "(Desconhecido)" - -#: ../../include/items.php:1234 -msgid "Visible to anybody on the internet." -msgstr "Visívil para todos na internet." - -#: ../../include/items.php:1236 -msgid "Visible to you only." -msgstr "Visível somente para você." - -#: ../../include/items.php:1238 -msgid "Visible to anybody in this network." -msgstr "Visível para todos nesta rede." - -#: ../../include/items.php:1240 -msgid "Visible to anybody authenticated." -msgstr "Visível para todos autenticados." - -#: ../../include/items.php:1242 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visível para todos em %s." - -#: ../../include/items.php:1244 -msgid "Visible to all connections." -msgstr "Visível para quaisquer conexões." - -#: ../../include/items.php:1246 -msgid "Visible to approved connections." -msgstr "Visível para conexões aprovadas." - -#: ../../include/items.php:1248 -msgid "Visible to specific connections." -msgstr "Visível para conexões específicas." - -#: ../../include/items.php:4060 ../../mod/thing.php:74 -#: ../../mod/display.php:36 ../../mod/filestorage.php:27 -#: ../../mod/viewsrc.php:20 ../../mod/admin.php:167 ../../mod/admin.php:984 -#: ../../mod/admin.php:1184 -msgid "Item not found." -msgstr "O item não foi encontrado." - -#: ../../include/items.php:4133 ../../include/photos.php:26 -#: ../../include/attach.php:137 ../../include/attach.php:184 -#: ../../include/attach.php:247 ../../include/attach.php:261 -#: ../../include/attach.php:305 ../../include/attach.php:319 -#: ../../include/attach.php:350 ../../include/attach.php:546 -#: ../../include/attach.php:618 ../../include/chat.php:131 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 -#: ../../mod/achievements.php:30 ../../mod/manage.php:6 -#: ../../mod/settings.php:569 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/webpages.php:69 ../../mod/thing.php:241 ../../mod/thing.php:256 -#: ../../mod/thing.php:290 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/like.php:178 ../../mod/events.php:219 -#: ../../mod/group.php:9 ../../mod/setup.php:207 ../../mod/common.php:35 -#: ../../mod/connections.php:169 ../../mod/blocks.php:69 -#: ../../mod/blocks.php:76 ../../mod/photos.php:68 ../../mod/pdledit.php:21 -#: ../../mod/authtest.php:13 ../../mod/editlayout.php:63 -#: ../../mod/editlayout.php:87 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/rate.php:110 ../../mod/editpost.php:13 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66 -#: ../../mod/menu.php:69 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/poke.php:128 ../../mod/profiles.php:188 -#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/editblock.php:65 ../../mod/register.php:72 ../../mod/item.php:206 -#: ../../mod/item.php:214 ../../mod/item.php:974 ../../mod/layouts.php:69 -#: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/id.php:71 -#: ../../mod/message.php:16 ../../mod/mitem.php:115 ../../mod/mood.php:111 -#: ../../mod/connedit.php:331 ../../mod/mail.php:114 -#: ../../mod/notifications.php:66 ../../mod/regmod.php:17 -#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 -#: ../../mod/appman.php:66 ../../mod/network.php:12 ../../mod/page.php:28 -#: ../../mod/page.php:82 ../../mod/bookmarks.php:46 ../../mod/channel.php:100 -#: ../../mod/channel.php:219 ../../mod/channel.php:262 -#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7 -#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393 -msgid "Permission denied." -msgstr "Permissão negada." - -#: ../../include/items.php:4537 ../../mod/group.php:38 ../../mod/group.php:140 -#: ../../mod/bulksetclose.php:51 -msgid "Collection not found." -msgstr "A coleção não foi encontrada." - -#: ../../include/items.php:4553 -msgid "Collection is empty." -msgstr "A coleção está vazia." - -#: ../../include/items.php:4560 -#, php-format -msgid "Collection: %s" -msgstr "Coleção: %s" - -#: ../../include/items.php:4570 -#, php-format -msgid "Connection: %s" -msgstr "Conexão: %s" - -#: ../../include/items.php:4572 -msgid "Connection not found." -msgstr "A conexão não foi encontrada." - -#: ../../include/security.php:349 -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 "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão." - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pode ver meus fluxo e publicações normais" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Pode ver o perfil padrão do meu canal" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Pode ver meus álbuns de fotos" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Pode ver minhas conexões" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Pode ver meu armazenamento de arquivos" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Pode ver minhas páginas web" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Pode me enviar seu fluxo e publicações" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pode publicar na página do meu canal (\"mural\")" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Pode comentar em ou gostar de minhas publicações" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Pode me enviar mensagens privadas" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Pode publicar fotos nos meus álbuns de fotos" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Pode gostar/desgostar de coisas" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Perfis e coisas que não publicações/comentários" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Pode encaminhar para todos os contatos do meu canal via @menções na publicação" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançado - útil para criar canais de fóruns de grupos" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Pode conversar comigo (quando disponívei)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Pode escrever em meu armazenamento de arquivos" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Pode editar minhas páginas web" - -#: ../../include/group.php:234 -msgid "Default privacy group for new contacts" -msgstr "Grupo de privacidade padrão para novos contatos" - -#: ../../include/group.php:253 ../../mod/admin.php:737 -msgid "All Channels" -msgstr "Todos os canais" - -#: ../../include/group.php:275 -msgid "edit" -msgstr "editar" - -#: ../../include/group.php:297 -msgid "Collections" -msgstr "Coleções" - -#: ../../include/permissions.php:893 -msgid "Social Networking" -msgstr "Rede social" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Mostly Public" -msgstr "Padrão público" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -#: ../../include/permissions.php:895 -msgid "Restricted" -msgstr "Restrito" - -#: ../../include/permissions.php:893 ../../include/permissions.php:894 -msgid "Private" -msgstr "Privado" - -#: ../../include/permissions.php:894 -msgid "Community Forum" -msgstr "Fórum de comunidade" - -#: ../../include/permissions.php:895 -msgid "Feed Republish" -msgstr "Republicação de feed" - -#: ../../include/permissions.php:896 -msgid "Special Purpose" -msgstr "Finalidade especial" - -#: ../../include/permissions.php:896 -msgid "Celebrity/Soapbox" -msgstr "Personalidade/Palanque" - -#: ../../include/permissions.php:896 -msgid "Group Repository" -msgstr "Repositório para grupo" - -#: ../../include/permissions.php:897 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Outro" - -#: ../../include/permissions.php:897 -msgid "Custom/Expert Mode" -msgstr "Personalizado/Modo expert" - -#: ../../include/identity.php:31 ../../mod/item.php:1312 -msgid "Unable to obtain identity information from database" -msgstr "Não foi possível obter a informação da identidade a partir do banco de dados" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "O nome está em branco" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "O nome é muito grande" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Sem identificador de conta" - -#: ../../include/identity.php:181 -msgid "Nickname is required." -msgstr "É necessário informar o apelido." - -#: ../../include/identity.php:195 -msgid "Reserved nickname. Please choose another." -msgstr "Apelido reservado. Por favor escolha outro." - -#: ../../include/identity.php:200 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "O apelido possui caracteres não suportados ou já está sendo usado nesse site." - -#: ../../include/identity.php:281 -msgid "Unable to retrieve created identity" -msgstr "Não foi possível recuperar a identidade criada" - -#: ../../include/identity.php:340 -msgid "Default Profile" -msgstr "Perfil padrão" - -#: ../../include/identity.php:379 ../../include/identity.php:380 -#: ../../include/identity.php:387 ../../include/widgets.php:407 -#: ../../include/profile_selectors.php:80 ../../mod/connedit.php:495 -msgid "Friends" -msgstr "Amigos" - -#: ../../include/identity.php:633 -msgid "Requested channel is not available." -msgstr "Canal solicitado não está disponível." - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Attending" -msgstr "Comparecerão" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Not attending" -msgstr "Não comparecerão" - -#: ../../include/conversation.php:574 ../../mod/photos.php:986 -msgctxt "title" -msgid "Might attend" -msgstr "Talvez compareçam" - -#: ../../include/identity.php:850 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfis" - -#: ../../include/identity.php:851 ../../mod/profiles.php:751 -msgid "Create New Profile" -msgstr "Criar um novo perfil" - -#: ../../include/identity.php:854 ../../include/nav.php:102 -msgid "Edit Profile" -msgstr "Editar perfil" - -#: ../../include/identity.php:865 ../../mod/profiles.php:762 -msgid "Profile Image" -msgstr "Imagem do perfil" - -#: ../../include/identity.php:868 -msgid "visible to everybody" -msgstr "visível para todos" - -#: ../../include/identity.php:869 ../../mod/profiles.php:645 -#: ../../mod/profiles.php:766 -msgid "Edit visibility" -msgstr "Editar a visibilidade" - -#: ../../include/identity.php:883 ../../include/identity.php:1120 -#: ../../mod/directory.php:158 -msgid "Gender:" -msgstr "Gênero:" - -#: ../../include/identity.php:884 ../../include/identity.php:1164 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Situação:" - -#: ../../include/identity.php:885 ../../include/identity.php:1175 -#: ../../mod/directory.php:162 -msgid "Homepage:" -msgstr "Página web:" - -#: ../../include/identity.php:886 ../../mod/dirprofile.php:151 -msgid "Online Now" -msgstr "Online agora" - -#: ../../include/identity.php:964 ../../include/identity.php:1044 -#: ../../mod/ping.php:298 -msgid "g A l F d" -msgstr "G l d F" - -#: ../../include/identity.php:965 ../../include/identity.php:1045 -msgid "F d" -msgstr "F d" - -#: ../../include/identity.php:1010 ../../include/identity.php:1085 -#: ../../mod/ping.php:320 -msgid "[today]" -msgstr "[hoje]" - -#: ../../include/identity.php:1022 -msgid "Birthday Reminders" -msgstr "Lembres de aniversário" - -#: ../../include/identity.php:1023 -msgid "Birthdays this week:" -msgstr "Aniversários nesta semana:" - -#: ../../include/identity.php:1078 -msgid "[No description]" -msgstr "[Sem descrição]" - -#: ../../include/identity.php:1096 -msgid "Event Reminders" -msgstr "Lembretes de eventos" - -#: ../../include/identity.php:1097 -msgid "Events this week:" -msgstr "Eventos nesta semana:" - -#: ../../include/identity.php:1118 ../../mod/settings.php:953 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../include/identity.php:1125 -msgid "Like this channel" -msgstr "Gostar deste canal" - -#: ../../include/identity.php:1149 -msgid "j F, Y" -msgstr "j \\d\\e F, Y" - -#: ../../include/identity.php:1150 -msgid "j F" -msgstr "j \\d\\e F" - -#: ../../include/identity.php:1157 -msgid "Birthday:" -msgstr "Aniversário:" - -#: ../../include/identity.php:1161 -msgid "Age:" -msgstr "Idade:" - -#: ../../include/identity.php:1170 -#, php-format -msgid "for %1$d %2$s" -msgstr "para %1$d %2$s" - -#: ../../include/identity.php:1173 ../../mod/profiles.php:667 -msgid "Sexual Preference:" -msgstr "Preferência sexual:" - -#: ../../include/identity.php:1177 ../../mod/profiles.php:669 -msgid "Hometown:" -msgstr "Cidade natal:" - -#: ../../include/identity.php:1179 -msgid "Tags:" -msgstr "Etiquetas:" - -#: ../../include/identity.php:1181 ../../mod/profiles.php:670 -msgid "Political Views:" -msgstr "Posição política:" - -#: ../../include/identity.php:1183 -msgid "Religion:" -msgstr "Religião:" - -#: ../../include/conversation.php:1174 ../../mod/webpages.php:181 -#: ../../mod/blocks.php:154 ../../mod/photos.php:949 ../../mod/layouts.php:184 -msgid "Share" -msgstr "Compartilhar" - -#: ../../include/identity.php:1187 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interesses:" - -#: ../../include/identity.php:1189 ../../mod/profiles.php:673 -msgid "Likes:" -msgstr "Gosta de:" - -#: ../../include/identity.php:1191 ../../mod/profiles.php:674 -msgid "Dislikes:" -msgstr "Não gosta de:" - -#: ../../include/identity.php:1194 -msgid "Contact information and Social Networks:" -msgstr "Informações de contato e redes sociais:" - -#: ../../include/identity.php:1196 -msgid "My other channels:" -msgstr "Meus outros canais:" - -#: ../../include/identity.php:1198 -msgid "Musical interests:" -msgstr "Interesses musicais:" - -#: ../../include/identity.php:1200 -msgid "Books, literature:" -msgstr "Livros, literatura:" - -#: ../../include/identity.php:1202 -msgid "Television:" -msgstr "Televisão:" - -#: ../../include/identity.php:1204 -msgid "Film/dance/culture/entertainment:" -msgstr "Filmes/dança/cultura/entretenimento:" - -#: ../../include/identity.php:1206 -msgid "Love/Romance:" -msgstr "Amor/romance:" - -#: ../../include/identity.php:1208 -msgid "Work/employment:" -msgstr "Trabalho/emprego:" - -#: ../../include/identity.php:1210 -msgid "School/education:" -msgstr "Escola/educação:" - -#: ../../include/identity.php:1230 -msgid "Like this thing" -msgstr "Gostar desta coisa" - -#: ../../include/nav.php:94 ../../include/nav.php:126 ../../boot.php:1494 -msgid "Logout" -msgstr "Sair" - -#: ../../include/nav.php:94 ../../include/nav.php:126 -msgid "End this session" -msgstr "Encerrar essa sessão" - -#: ../../include/nav.php:97 ../../include/nav.php:160 -msgid "Home" -msgstr "Ver canal" - -#: ../../include/nav.php:97 -msgid "Your posts and conversations" -msgstr "Suas publicações e conversas" - -#: ../../include/conversation.php:1204 ../../mod/editwebpage.php:207 -#: ../../mod/editpost.php:142 ../../mod/editblock.php:167 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../include/conversation.php:1208 ../../mod/editlayout.php:168 -#: ../../mod/editwebpage.php:209 ../../mod/editpost.php:144 -#: ../../mod/editblock.php:170 -msgid "Categories (optional, comma-separated list)" -msgstr "categorias (opcional, lista separada por vírgulas)" - -#: ../../include/nav.php:100 -msgid "Manage/Edit profiles" -msgstr "Administrar/Editar perfis" - -#: ../../include/nav.php:102 -msgid "Edit your profile" -msgstr "Editar seu perfil" - -#: ../../include/conversation.php:1219 ../../mod/editlayout.php:161 -#: ../../mod/editwebpage.php:202 ../../mod/editpost.php:139 -#: ../../mod/editblock.php:164 -msgid "Public post" -msgstr "Publicação pública" - -#: ../../include/conversation.php:1221 ../../mod/editlayout.php:169 -#: ../../mod/editwebpage.php:210 ../../mod/editpost.php:145 -#: ../../mod/editblock.php:171 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com" - -#: ../../include/conversation.php:1234 ../../mod/editlayout.php:178 -#: ../../mod/editwebpage.php:219 ../../mod/editpost.php:156 -#: ../../mod/editblock.php:181 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Definir data de expiração" - -#: ../../include/conversation.php:1238 ../../mod/events.php:637 -#: ../../mod/editpost.php:160 -msgid "OK" -msgstr "Ok" - -#: ../../include/conversation.php:1239 ../../mod/settings.php:588 -#: ../../mod/settings.php:614 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/events.php:636 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:161 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../include/nav.php:124 -msgid "Sign in" -msgstr "Entrar" - -#: ../../include/nav.php:141 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clique para sair" - -#: ../../include/nav.php:146 -msgid "Click to authenticate to your home hub" -msgstr "Clique para se autenticar com seu hub de origem" - -#: ../../include/nav.php:160 -msgid "Home Page" -msgstr "Página inicial" - -#: ../../include/nav.php:164 ../../mod/register.php:220 ../../boot.php:1471 -msgid "Register" -msgstr "Registrar" - -#: ../../include/nav.php:164 -msgid "Create an account" -msgstr "Criar uma conta" - -#: ../../include/nav.php:169 -msgid "Help and documentation" -msgstr "Ajuda e documentação" - -#: ../../include/nav.php:172 ../../include/widgets.php:86 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Aplicações" - -#: ../../include/nav.php:172 -msgid "Applications, utilities, links, games" -msgstr "Aplicações, utilitários, links, jogos" - -#: ../../include/nav.php:174 -msgid "Search site content" -msgstr "Pesquisar o conteúdo do site" - -#: ../../include/nav.php:177 -msgid "Channel Locator" -msgstr "Localizador de canais" - -#: ../../include/nav.php:188 -msgid "Your matrix" -msgstr "Sua matriz" - -#: ../../include/nav.php:189 -msgid "Mark all matrix notifications seen" -msgstr "Marcar todas as notificações da matriz como vistas" - -#: ../../include/nav.php:191 -msgid "Channel home" -msgstr "Página inicial do canal" - -#: ../../include/nav.php:192 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas as notificações de canais como vistas" - -#: ../../include/nav.php:195 ../../mod/connections.php:406 -msgid "Connections" -msgstr "Conexões" - -#: ../../include/nav.php:198 -msgid "Notices" -msgstr "Notificações" - -#: ../../include/nav.php:198 -msgid "Notifications" -msgstr "Notificações" - -#: ../../include/nav.php:199 -msgid "See all notifications" -msgstr "Ver todas as notificações" - -#: ../../include/nav.php:200 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marcar todas as notificações de sistema como vistas" - -#: ../../include/nav.php:202 -msgid "Private mail" -msgstr "Mensagens privadas" - -#: ../../include/nav.php:203 -msgid "See all private messages" -msgstr "Ver todas as mensagens privadas" - -#: ../../include/nav.php:204 -msgid "Mark all private messages seen" -msgstr "Marcar todas as mensagens privadas como vistas" - -#: ../../include/nav.php:205 -msgid "Inbox" -msgstr "Recebidas" - -#: ../../include/nav.php:206 -msgid "Outbox" -msgstr "Enviadas" - -#: ../../include/nav.php:207 ../../include/widgets.php:543 -msgid "New Message" -msgstr "Nova mensagem" - -#: ../../include/nav.php:210 -msgid "Event Calendar" -msgstr "Agenda de eventos" - -#: ../../include/conversation.php:1722 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Abstenção" -msgstr[1] "Abstenções" - -#: ../../include/photos.php:94 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "A imagem excede o limite de tamanho do site, que é de %" - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Não foi possível verificar a publicação armazenada." - -#: ../../include/widgets.php:87 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:90 -msgid "Create Personal App" -msgstr "Crie aplicações pessoais" - -#: ../../include/widgets.php:91 -msgid "Edit Personal App" -msgstr "Edite aplicações pessoais" - -#: ../../include/widgets.php:137 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../include/widgets.php:143 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Sugestões" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Veja mais..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Você tem %1$.0f de %2$.0f conexões permitidas." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Adicionar nova conexão" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Digite o endereço do canal" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria" - -#: ../../include/widgets.php:191 -msgid "Notes" -msgstr "Notas" - -#: ../../include/widgets.php:263 -msgid "Remove term" -msgstr "Remover termo" - -#: ../../include/widgets.php:342 -msgid "Archives" -msgstr "Arquivos" - -#: ../../include/widgets.php:404 -msgid "Refresh" -msgstr "Atualizar" - -#: ../../include/widgets.php:405 ../../mod/connedit.php:492 -msgid "Me" -msgstr "Eu" - -#: ../../include/widgets.php:406 ../../mod/connedit.php:494 -msgid "Best Friends" -msgstr "Melhores amigos" - -#: ../../include/widgets.php:408 -msgid "Co-workers" -msgstr "Colegas de trabalho" - -#: ../../include/widgets.php:409 ../../mod/connedit.php:496 -msgid "Former Friends" -msgstr "Amigos afastados" - -#: ../../include/widgets.php:410 ../../mod/connedit.php:497 -msgid "Acquaintances" -msgstr "Conhecidos" - -#: ../../include/widgets.php:411 -msgid "Everybody" -msgstr "Todos" - -#: ../../include/widgets.php:443 -msgid "Account settings" -msgstr "Configurações da conta" - -#: ../../include/widgets.php:449 -msgid "Channel settings" -msgstr "Configurações do canal" - -#: ../../include/widgets.php:455 -msgid "Additional features" -msgstr "Recursos adicionais" - -#: ../../include/widgets.php:461 -msgid "Feature settings" -msgstr "Configurações dos recursos" - -#: ../../include/widgets.php:467 -msgid "Display settings" -msgstr "Configurações de exibição" - -#: ../../include/widgets.php:473 -msgid "Connected apps" -msgstr "Aplicações conectadas" - -#: ../../include/widgets.php:479 -msgid "Export channel" -msgstr "Exportar o canal" - -#: ../../include/widgets.php:485 -msgid "Export content" -msgstr "Exportar conteúdo" - -#: ../../include/attach.php:242 ../../include/attach.php:300 -msgid "Item was not found." -msgstr "O item não foi encontrado." - -#: ../../include/attach.php:363 -msgid "No source file." -msgstr "Nenhum arquivo de origem." - -#: ../../include/attach.php:381 -msgid "Cannot locate file to replace" -msgstr "Não foi possível locar o arquivo a ser substituído" - -#: ../../include/attach.php:399 -msgid "Cannot locate file to revise/update" -msgstr "Não foi possível localizar o arquivo a ser revisado/atualizado" - -#: ../../include/attach.php:410 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "O arquivo excedeu o tamanho limite de %d" - -#: ../../include/attach.php:422 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos." - -#: ../../include/attach.php:505 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada." - -#: ../../include/attach.php:517 -msgid "Stored file could not be verified. Upload failed." -msgstr "Não foi possível verificar o arquivo armazenado. Falha no envio." - -#: ../../include/attach.php:561 ../../include/attach.php:578 -msgid "Path not available." -msgstr "O caminho não está disponível." - -#: ../../include/attach.php:623 -msgid "Empty pathname" -msgstr "O nome do caminho está em branco" - -#: ../../include/attach.php:639 -msgid "duplicate filename or path" -msgstr "nome de arquivo ou caminho duplicado" - -#: ../../include/attach.php:663 -msgid "Path not found." -msgstr "Caminho não encontrado." - -#: ../../include/attach.php:714 -msgid "mkdir failed." -msgstr "mkdir falhou." - -#: ../../include/attach.php:718 -msgid "database storage failed." -msgstr "armazenamento de banco de dados falhou." - -#: ../../include/ItemObject.php:220 ../../mod/photos.php:1008 -msgid "I like this (toggle)" -msgstr "Eu gostei disso (alterna)" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:1009 -msgid "I don't like this (toggle)" -msgstr "Eu não gostei disso (alterna)" - -#: ../../include/ItemObject.php:225 -msgid "Share This" -msgstr "Compartilhe isso" - -#: ../../include/ItemObject.php:225 -msgid "share" -msgstr "compartilhar" - -#: ../../include/ItemObject.php:248 ../../include/ItemObject.php:249 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver o perfil de %s - %s" - -#: ../../include/ItemObject.php:250 -msgid "to" -msgstr "para" - -#: ../../include/ItemObject.php:251 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:252 -msgid "Wall-to-Wall" -msgstr "Mural-para-mural" - -#: ../../include/ItemObject.php:253 -msgid "via Wall-To-Wall:" -msgstr "via Mural-para-mural" - -#: ../../include/ItemObject.php:288 -msgid "Save Bookmarks" -msgstr "Salve Favoritos" - -#: ../../include/ItemObject.php:289 -msgid "Add to Calendar" -msgstr "Adicione ao calendário" - -#: ../../include/ItemObject.php:297 -msgctxt "noun" -msgid "Likes" -msgstr "Gostaram" - -#: ../../include/ItemObject.php:298 -msgctxt "noun" -msgid "Dislikes" -msgstr "Desgostaram" - -#: ../../include/ItemObject.php:329 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentário" -msgstr[1] "%d comentários" - -#: ../../include/ItemObject.php:330 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] mostrar todos" - -#: ../../include/ItemObject.php:594 ../../mod/photos.php:1027 -#: ../../mod/photos.php:1114 -msgid "This is you" -msgstr "Este(a) é você" - -#: ../../include/ItemObject.php:596 ../../include/js_strings.php:6 -#: ../../mod/photos.php:1029 ../../mod/photos.php:1116 -msgid "Comment" -msgstr "Comentar" - -#: ../../include/ItemObject.php:597 ../../mod/mood.php:135 -#: ../../mod/settings.php:519 ../../mod/settings.php:631 -#: ../../mod/settings.php:660 ../../mod/settings.php:684 -#: ../../mod/settings.php:760 ../../mod/settings.php:945 -#: ../../mod/poke.php:166 ../../mod/profiles.php:643 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:540 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/photos.php:563 ../../mod/photos.php:675 ../../mod/photos.php:990 -#: ../../mod/photos.php:1030 ../../mod/photos.php:1117 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/events.php:586 ../../mod/filestorage.php:137 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:414 -#: ../../mod/admin.php:725 ../../mod/admin.php:861 ../../mod/admin.php:994 -#: ../../mod/admin.php:1193 ../../mod/admin.php:1280 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/import.php:475 ../../mod/invite.php:142 -#: ../../mod/mail.php:345 ../../mod/appman.php:99 ../../mod/poll.php:68 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" - -#: ../../include/ItemObject.php:598 -msgid "Bold" -msgstr "Negrito" - -#: ../../include/ItemObject.php:599 -msgid "Italic" -msgstr "Itálico" - -#: ../../include/ItemObject.php:600 -msgid "Underline" -msgstr "Sublinhado" - -#: ../../include/ItemObject.php:601 -msgid "Quote" -msgstr "Citação" - -#: ../../include/ItemObject.php:602 -msgid "Code" -msgstr "Código" - -#: ../../include/ItemObject.php:603 -msgid "Image" -msgstr "Imagem" - -#: ../../include/ItemObject.php:604 -msgid "Link" -msgstr "Link" - -#: ../../include/ItemObject.php:605 -msgid "Video" -msgstr "Vídeo" - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Excluir este item?" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostra menos" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandir" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] colapsar" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "A senha é muito curta" - -#: ../../include/identity.php:1115 ../../mod/settings.php:1050 -msgid "Full Name:" -msgstr "Nome completo:" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "todos" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Frase secreta" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Dica da frase secreta" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Atenção: permissões foram modificadas mas ainda não foram enviadas." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "fechar tudo" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada de novo aqui" - -#: ../../include/js_strings.php:20 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:21 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:22 -msgid "ago" -msgstr "atrás" - -#: ../../include/js_strings.php:23 -msgid "from now" -msgstr "de agora" - -#: ../../include/js_strings.php:24 -msgid "less than a minute" -msgstr "menos de um minuto" - -#: ../../include/js_strings.php:25 -msgid "about a minute" -msgstr "aproximadamente um minuto" - -#: ../../include/js_strings.php:26 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" - -#: ../../include/js_strings.php:27 -msgid "about an hour" -msgstr "aproximadamente uma hora" - -#: ../../include/js_strings.php:28 -#, php-format -msgid "about %d hours" -msgstr "aproximadamente %d horas" - -#: ../../include/js_strings.php:29 -msgid "a day" -msgstr "um dia" - -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d days" -msgstr "%d dias" - -#: ../../include/js_strings.php:31 -msgid "about a month" -msgstr "aproximadamente um mês" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "%d months" -msgstr "%d meses" - -#: ../../include/js_strings.php:33 -msgid "about a year" -msgstr "aproximadamente um ano" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d years" -msgstr "%d anos" - -#: ../../include/js_strings.php:35 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:36 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/Contact.php:123 -msgid "New window" -msgstr "Nova janela" - -#: ../../include/Contact.php:124 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abre a localização selecionada em outra aba ou janela" - -#: ../../include/Contact.php:211 ../../mod/admin.php:649 -#, php-format -msgid "User '%s' deleted" -msgstr "O usuário/a '%s' foi deletado/a" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Masculino" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Feminino" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Atualmente masculino" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Atualmente feminino" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Masculino a maior parte do tempo" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Feminino a maior parte do tempo" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgênero" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexuado" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Não específico" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:746 -msgid "Other" -msgstr "Outro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Homens" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Mulheres" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Gays" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lésbicas" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Sem preferência" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bissexuais" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autossexuais" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Abstinentes" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Virgens" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Desviantes" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetiches" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Abundância" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Não sexuais" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Solteiro(a)" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Solitário(a)" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponível" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Não disponível" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Tem uma paixão" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Apaixonado" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Saindo com alguém" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infiel" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Viciado(a) em sexo" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amigos com benefícios" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Envolvido(a)" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Casado(a)" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Casado imaginariamente" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Parceiros" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Coabitando" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Direito comum" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Feliz" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Não estou procurando" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Traído(a)" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separado(a)" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Instável" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorciado(a)" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Divorciado imaginariamente" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Viúvo(a)" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Incerto(a)" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "É complicado" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Não importa" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Pergunte-me" - -#: ../../include/auth.php:103 -msgid "Logged out." -msgstr "Você saiu." - -#: ../../include/auth.php:249 -msgid "Failed authentication" -msgstr "Não foi possível autenticar" - -#: ../../include/auth.php:264 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Não foi possível entrar." - -#: ../../include/permissions.php:13 -msgid "Can view my normal stream and posts" -msgstr "Pode ver meus fluxo e publicações normais" - -#: ../../include/permissions.php:14 -msgid "Can view my default channel profile" -msgstr "Pode ver o perfil padrão do meu canal" - -#: ../../include/permissions.php:15 -msgid "Can view my photo albums" -msgstr "Pode ver meus álbuns de fotos" - -#: ../../include/permissions.php:16 -msgid "Can view my connections" -msgstr "Pode ver minhas conexões" - -#: ../../include/permissions.php:17 -msgid "Can view my file storage" -msgstr "Pode ver meu armazenamento de arquivos" - -#: ../../include/permissions.php:18 -msgid "Can view my webpages" -msgstr "Pode ver minhas páginas web" - -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Pode me enviar seu fluxo e publicações" - -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pode publicar na página do meu canal (\"mural\")" - -#: ../../include/apps.php:247 ../../mod/settings.php:84 -#: ../../mod/settings.php:613 -msgid "Update" -msgstr "Atualizar" - -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Pode me enviar mensagens privadas" - -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Pode publicar fotos nos meus álbuns de fotos" - -#: ../../include/permissions.php:26 -msgid "Can like/dislike stuff" -msgstr "Pode gostar/desgostar de coisas" - -#: ../../include/permissions.php:26 -msgid "Profiles and things other than posts/comments" -msgstr "Perfis e coisas que não publicações/comentários" - -#: ../../include/permissions.php:28 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Pode encaminhar para todos os contatos do meu canal via @menções na publicação" - -#: ../../include/permissions.php:28 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avançado - útil para criar canais de fóruns de grupos" - -#: ../../include/permissions.php:29 -msgid "Can chat with me (when available)" -msgstr "Pode conversar comigo (quando disponívei)" - -#: ../../include/permissions.php:30 -msgid "Can write to my file storage" -msgstr "Pode escrever em meu armazenamento de arquivos" - -#: ../../include/permissions.php:31 -msgid "Can edit my webpages" -msgstr "Pode editar minhas páginas web" - -#: ../../include/permissions.php:33 -msgid "Can source my public posts in derived channels" -msgstr "Pode usar minhas publicações públicas como fonte para canais derivados" - -#: ../../include/permissions.php:33 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Avançado - muito útil em comunidades abertas" - -#: ../../include/permissions.php:35 -msgid "Can administer my channel resources" -msgstr "Pode administrar os recursos do meu canal" - -#: ../../include/permissions.php:35 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo" - -#: ../../include/permissions.php:738 -msgid "Social Networking" -msgstr "Rede social" - -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 ../../include/permissions.php:745 -msgid "Mostly Public" -msgstr "Padrão público" - -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -#: ../../include/permissions.php:743 -msgid "Restricted" -msgstr "Restrito" - -#: ../../include/permissions.php:739 ../../include/permissions.php:741 -msgid "Private" -msgstr "Privado" - -#: ../../include/permissions.php:740 -msgid "Community Forum" -msgstr "Fórum de comunidade" - -#: ../../include/permissions.php:742 -msgid "Feed Republish" -msgstr "Republicação de feed" - -#: ../../include/permissions.php:744 -msgid "Celebrity/Soapbox" -msgstr "Personalidade/Palanque" - -#: ../../include/permissions.php:747 -msgid "Custom/Expert Mode" -msgstr "Personalizado/Modo expert" - -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Marque seu humor atual e compartilhe com seus amigos" - -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "O menu não foi encontrado." - -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "O elemento de menu foi atualizado." - -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "Não foi possível atualizar o elemento de menu." - -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "O elemento de menu foi adicionado." - -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Não foi possível adicionar o elemento de menu." - -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:38 -msgid "Not found." -msgstr "Não encontrado." - -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Administrar elementos de menu" - -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Editar menu" - -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Editar elemento" - -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Descartar elemento" - -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Novo elemento" - -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "Editar esta caixa de menu" - -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Adicionar um elemento de menu" - -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Deleter este item de menu" - -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Editar este item de menu" - -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Novo elemento de menu" - -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "Permissões do item do menu" - -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:980 -msgid "(click to open/close)" -msgstr "(clique para abrir/fechar)" - -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Texto do link" - -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL do link" - -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "Usar Red magic-auth se disponível" - -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Abrir link em uma nova janela" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "Ordem na lista" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Números mais altos descem para o fim da lista" - -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "O item de menu não foi encontrado." - -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "O item de menu foi deletado." - -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "Não foi possível deletar o item de menu." - -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Editar elemento de menu" - -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Modificar" - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Alguma coisa sobre o que fazer quando se é novo aqui" - -#: ../../mod/ping.php:237 -msgid "sent you a private message" -msgstr "lhe enviou uma mensagem privada" - -#: ../../mod/ping.php:288 -msgid "added your channel" -msgstr "adicionou seu canal" - -#: ../../mod/ping.php:329 -msgid "posted an event" -msgstr "publicou um evento" - -#: ../../mod/acl.php:244 -msgid "network" -msgstr "+ rede" - -#: ../../mod/settings.php:71 -msgid "Name is required" -msgstr "É necessário informar o nome" - -#: ../../mod/settings.php:75 -msgid "Key and Secret are required" -msgstr "A chave e o segredo são obrigatórios" - -#: ../../mod/settings.php:129 -msgid "Diaspora Policy Settings updated." -msgstr "Configurações da política do Diáspora atualizadas." - -#: ../../mod/settings.php:237 -msgid "Passwords do not match. Password unchanged." -msgstr "As senhas não correspondem. A senha não foi modificada." - -#: ../../mod/settings.php:241 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Não é permitido uma senha em branco. A senha não foi modificada." - -#: ../../mod/settings.php:255 -msgid "Password changed." -msgstr "A senha foi modificada." - -#: ../../mod/settings.php:257 -msgid "Password update failed. Please try again." -msgstr "Não foi possível atualizar a senha. Por favor, tente novamente." - -#: ../../mod/settings.php:271 -msgid "Not valid email." -msgstr "Não é um e-mail válido" - -#: ../../mod/settings.php:274 -msgid "Protected email address. Cannot change to that email." -msgstr "Endereço de e-mail protegido. Não é possível mudar para esse e-mail." - -#: ../../mod/settings.php:283 -msgid "System failure storing new email. Please try again." -msgstr "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente." - -#: ../../mod/settings.php:522 -msgid "Settings updated." -msgstr "As configurações foram atualizadas." - -#: ../../mod/settings.php:578 ../../mod/api.php:106 ../../mod/photos.php:556 -#: ../../mod/menu.php:88 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:424 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1554 -msgid "No" -msgstr "Não" - -#: ../../mod/settings.php:578 ../../mod/api.php:105 ../../mod/photos.php:556 -#: ../../mod/menu.php:88 ../../mod/filestorage.php:151 -#: ../../mod/filestorage.php:159 ../../mod/admin.php:426 -#: ../../mod/removeme.php:60 ../../view/theme/redbasic/php/config.php:102 -#: ../../view/theme/redbasic/php/config.php:127 ../../boot.php:1554 -msgid "Yes" -msgstr "Sim" - -#: ../../mod/settings.php:586 ../../mod/settings.php:612 -#: ../../mod/settings.php:648 -msgid "Add application" -msgstr "Adicionar aplicação" - -#: ../../mod/settings.php:589 -msgid "Name of application" -msgstr "Nome da aplicação" - -#: ../../mod/settings.php:590 ../../mod/settings.php:616 -msgid "Consumer Key" -msgstr "Chave de consumidor" - -#: ../../mod/settings.php:590 ../../mod/settings.php:591 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Gerado automaticamente - troque se desejável. Comprimento máximo 20" - -#: ../../mod/settings.php:591 ../../mod/settings.php:617 -msgid "Consumer Secret" -msgstr "Segredo de consumidor" - -#: ../../mod/settings.php:592 ../../mod/settings.php:618 -msgid "Redirect" -msgstr "Redirecionamento" - -#: ../../mod/settings.php:592 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso" - -#: ../../mod/settings.php:593 ../../mod/settings.php:619 -msgid "Icon url" -msgstr "URL do ícone" - -#: ../../mod/settings.php:593 -msgid "Optional" -msgstr "Opcional" - -#: ../../mod/settings.php:604 -msgid "You can't edit this application." -msgstr "Você não pode editar esta aplicação." - -#: ../../mod/settings.php:647 -msgid "Connected Apps" -msgstr "Aplicações conectadas" - -#: ../../mod/settings.php:651 -msgid "Client key starts with" -msgstr "Chave do cliente começa com" - -#: ../../mod/settings.php:652 -msgid "No name" -msgstr "Sem nome" - -#: ../../mod/settings.php:653 -msgid "Remove authorization" -msgstr "Remover autorização" - -#: ../../mod/settings.php:667 -msgid "No feature settings configured" -msgstr "Não foi definida nenhuma configuração do recurso" - -#: ../../mod/settings.php:683 -msgid "Feature/Addon Settings" -msgstr "Configuração de Característica/Plugins" - -#: ../../mod/settings.php:685 -msgid "Settings for the built-in Diaspora emulator" -msgstr "Configurações para construir um emulador de Diáspora" - -#: ../../mod/settings.php:686 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Permitir que qualquer membro do Diaspora comente em suas postagens públicas" - -#: ../../mod/settings.php:687 -msgid "Diaspora Policy Settings" -msgstr "Configurações de Política do Diáspora" - -#: ../../mod/settings.php:688 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Previne que suas hashtags sejam redirecionadas para outros sítios" - -#: ../../mod/settings.php:712 -msgid "Account Settings" -msgstr "Configurações da conta" - -#: ../../mod/settings.php:713 -msgid "Enter New Password:" -msgstr "Digite a Nova Senha:" - -#: ../../mod/settings.php:714 -msgid "Confirm New Password:" -msgstr "Confirme a Nova Senha:" - -#: ../../mod/settings.php:714 -msgid "Leave password fields blank unless changing" -msgstr "Deixe os campos de senha em branco, a não ser que você queira alterá-la" - -#: ../../mod/settings.php:716 ../../mod/settings.php:1051 -msgid "Email Address:" -msgstr "Endereço de e-mail:" - -#: ../../mod/settings.php:717 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Remover conta" - -#: ../../mod/settings.php:718 -msgid "Remove this account including all its channels" -msgstr "Exclua esta conta, incluindo todos seus canais" - -#: ../../mod/settings.php:734 -msgid "Off" -msgstr "Desligado" - -#: ../../mod/settings.php:734 -msgid "On" -msgstr "Ligado" - -#: ../../mod/settings.php:741 -msgid "Additional Features" -msgstr "Recursos adicionais" - -#: ../../mod/settings.php:765 -msgid "Connector Settings" -msgstr "Configurações do conector" - -#: ../../mod/settings.php:804 -msgid "No special theme for mobile devices" -msgstr "Sem tema especial para aparelhos móveis" - -#: ../../mod/settings.php:807 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../mod/settings.php:810 ../../mod/admin.php:396 -msgid "mobile" -msgstr "móvel" - -#: ../../mod/settings.php:846 -msgid "Display Settings" -msgstr "Configurações de exibição" - -#: ../../mod/settings.php:852 -msgid "Display Theme:" -msgstr "Tema do perfil:" - -#: ../../mod/settings.php:853 -msgid "Mobile Theme:" -msgstr "Tema móvel:" - -#: ../../mod/settings.php:854 -msgid "Enable user zoom on mobile devices" -msgstr "Permitir zoom pelo usuário em dispositivos móveis" - -#: ../../mod/settings.php:855 -msgid "Update browser every xx seconds" -msgstr "Atualizar navegador a cada xx segundos" - -#: ../../mod/settings.php:855 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sem máximo" - -#: ../../mod/settings.php:856 -msgid "Maximum number of conversations to load at any time:" -msgstr "Número máximo permitido de conversas carregadas:" - -#: ../../mod/settings.php:856 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 itens" - -#: ../../mod/settings.php:857 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticons (smilies) como imagens" - -#: ../../mod/settings.php:858 -msgid "Link post titles to source" -msgstr "Ligar o título dos posts à fonte" - -#: ../../mod/settings.php:859 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de layout de página do sistema - (avançado)" - -#: ../../mod/settings.php:862 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista na página do canal" - -#: ../../mod/settings.php:862 ../../mod/settings.php:863 -msgid "(comments displayed separately)" -msgstr "(comentários mostrados separadamente)" - -#: ../../mod/settings.php:863 -msgid "Use blog/list mode on matrix page" -msgstr "Use modo de blogue/lista na página da matriz" - -#: ../../mod/settings.php:864 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima do conteúdo na página (em pixels)" - -#: ../../mod/settings.php:864 ../../mod/settings.php:865 -msgid "click to expand content exceeding this height" -msgstr "clique para expandir o conteúdo que excede essa altura" - -#: ../../mod/settings.php:865 -msgid "Matrix page max height of content (in pixels)" -msgstr "Máxima altura de conteúdo na página Matriz (in pixesl)" - -#: ../../mod/settings.php:899 -msgid "Nobody except yourself" -msgstr "Ninguém exceto você mesmo" - -#: ../../mod/settings.php:900 -msgid "Only those you specifically allow" -msgstr "Apenas quem você der permissão" - -#: ../../mod/settings.php:901 -msgid "Approved connections" -msgstr "Conexões aprovadas" - -#: ../../mod/settings.php:902 -msgid "Any connections" -msgstr "Quaisquer conexões" - -#: ../../mod/settings.php:903 -msgid "Anybody on this website" -msgstr "Qualquer um neste site" - -#: ../../mod/settings.php:904 -msgid "Anybody in this network" -msgstr "Qualquer um nesta rede" - -#: ../../mod/settings.php:905 -msgid "Anybody authenticated" -msgstr "Qualquer um autenticado" - -#: ../../mod/settings.php:906 -msgid "Anybody on the internet" -msgstr "Qualquer um na internet" - -#: ../../mod/settings.php:980 -msgid "Publish your default profile in the network directory" -msgstr "Publicar seu perfil padrão no diretório da rede?" - -#: ../../mod/settings.php:985 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Permitir sugerir você como amigo potencial para outros membros?" - -#: ../../mod/settings.php:989 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "ou" - -#: ../../mod/settings.php:994 -msgid "Your channel address is" -msgstr "O endereço do seu canal é" - -#: ../../mod/settings.php:1042 -msgid "Channel Settings" -msgstr "Configurações do canal" - -#: ../../mod/settings.php:1049 -msgid "Basic Settings" -msgstr "Configurações básicas" - -#: ../../mod/settings.php:1052 -msgid "Your Timezone:" -msgstr "Seu fuso horário:" - -#: ../../mod/settings.php:1053 -msgid "Default Post Location:" -msgstr "Localização padrão de suas publicações:" - -#: ../../mod/settings.php:1053 -msgid "Geographical location to display on your posts" -msgstr "Localização geográfica para exibir em suas publicações" - -#: ../../mod/settings.php:1054 -msgid "Use Browser Location:" -msgstr "Usar localizador do navegador:" - -#: ../../mod/settings.php:1056 -msgid "Adult Content" -msgstr "Conteúdo adulto" - -#: ../../mod/settings.php:1056 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)" - -#: ../../mod/settings.php:1058 -msgid "Security and Privacy Settings" -msgstr "Configurações de segurança e privacidade" - -#: ../../mod/settings.php:1060 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Suas permissões já foram configuradas. Clique para vê-las/ajustá-las" - -#: ../../mod/settings.php:1062 -msgid "Hide my online presence" -msgstr "Esconda minha presença online" - -#: ../../mod/settings.php:1062 -msgid "Prevents displaying in your profile that you are online" -msgstr "Previne exibir em seu perfil que você está online" - -#: ../../mod/settings.php:1064 -msgid "Simple Privacy Settings:" -msgstr "Configurações de privacidade simples:" - -#: ../../mod/settings.php:1065 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muito público - extremamente permissivo (deve ser usado com cuidado)" - -#: ../../mod/settings.php:1066 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)" - -#: ../../mod/settings.php:1067 -msgid "Private - default private, never open or public" -msgstr "Privado - privado por padrão, nunca aberto ou público" - -#: ../../mod/settings.php:1068 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por padrão bloquado de/para todos" - -#: ../../mod/settings.php:1070 -msgid "Allow others to tag your posts" -msgstr "Permitir que outros etiquetem suas publicações" - -#: ../../mod/settings.php:1070 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Frequentemente utilizado pela comunidade para retroativamente sinalizar conteúdo inapropriado" - -#: ../../mod/settings.php:1072 -msgid "Advanced Privacy Settings" -msgstr "Configurações de privacidade avançadas" - -#: ../../mod/settings.php:1074 -msgid "Expire other channel content after this many days" -msgstr "Expirar outros conteúdos do canal após este número de dias" - -#: ../../mod/settings.php:1074 -msgid "0 or blank prevents expiration" -msgstr "0 ou em branco previne expiração" - -#: ../../mod/settings.php:1075 -msgid "Maximum Friend Requests/Day:" -msgstr "Número máximo de requisições de amizade por dia:" - -#: ../../mod/settings.php:1075 -msgid "May reduce spam activity" -msgstr "Pode reduzir a frequência de spam" - -#: ../../mod/settings.php:1076 -msgid "Default Post Permissions" -msgstr "Permissões padrão de publicação" - -#: ../../mod/settings.php:1077 ../../mod/mitem.php:159 ../../mod/mitem.php:229 -msgid "(click to open/close)" -msgstr "(clique para abrir/fechar)" - -#: ../../mod/settings.php:1081 -msgid "Channel permissions category:" -msgstr "Categoria de permissões do canal:" - -#: ../../mod/settings.php:1087 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo número de mensagens privadas por dia de pessoas desconhecidas:" - -#: ../../mod/settings.php:1087 -msgid "Useful to reduce spamming" -msgstr "Útil para reduzir a frequência de spam" - -#: ../../mod/settings.php:1090 -msgid "Notification Settings" -msgstr "Configurações de notificação" - -#: ../../mod/settings.php:1091 -msgid "By default post a status message when:" -msgstr "Por padrão, publicar uma mensagem de status quando:" - -#: ../../mod/settings.php:1092 -msgid "accepting a friend request" -msgstr "aceitar um pedido de amizade" - -#: ../../mod/settings.php:1093 -msgid "joining a forum/community" -msgstr "associar-se a um fórum/comunidade" - -#: ../../mod/settings.php:1094 -msgid "making an interesting profile change" -msgstr "modificar algo interessante em seu perfil" - -#: ../../mod/settings.php:1095 -msgid "Send a notification email when:" -msgstr "Enviar um e-mail de notificação quando:" - -#: ../../mod/settings.php:1096 -msgid "You receive a connection request" -msgstr "Você recebe uma solicitação de conexão" - -#: ../../mod/settings.php:1097 -msgid "Your connections are confirmed" -msgstr "Suas conexões são confirmadas" - -#: ../../mod/settings.php:1098 -msgid "Someone writes on your profile wall" -msgstr "Alguém escrever no mural do seu perfil" - -#: ../../mod/settings.php:1099 -msgid "Someone writes a followup comment" -msgstr "Alguém comenta uma publicação" - -#: ../../mod/settings.php:1100 -msgid "You receive a private message" -msgstr "Você recebeu uma mensagem privada" - -#: ../../mod/settings.php:1101 -msgid "You receive a friend suggestion" -msgstr "Você recebe uma sugestão de amizade" - -#: ../../mod/settings.php:1102 -msgid "You are tagged in a post" -msgstr "Você é mencionado num post" - -#: ../../mod/settings.php:1103 -msgid "You are poked/prodded/etc. in a post" -msgstr "Você foi cutucado/espetado/etc. numa publicação" - -#: ../../mod/settings.php:1106 -msgid "Show visual notifications including:" -msgstr "Exibir notificações visuais incluindo:" - -#: ../../mod/settings.php:1108 -msgid "Unseen matrix activity" -msgstr "Atividade não vista na matriz" - -#: ../../mod/settings.php:1109 -msgid "Unseen channel activity" -msgstr "Atividade não vista no canal" - -#: ../../mod/settings.php:1110 -msgid "Unseen private messages" -msgstr "Mensagens privadas não vistas" - -#: ../../mod/settings.php:1110 ../../mod/settings.php:1115 -#: ../../mod/settings.php:1116 ../../mod/settings.php:1117 -msgid "Recommended" -msgstr "Recomendado" - -#: ../../mod/settings.php:1111 -msgid "Upcoming events" -msgstr "Eventos próximos" - -#: ../../mod/settings.php:1112 -msgid "Events today" -msgstr "Eventos hoje" - -#: ../../mod/settings.php:1113 -msgid "Upcoming birthdays" -msgstr "Aniversários próximos" - -#: ../../mod/settings.php:1113 -msgid "Not available in all themes" -msgstr "Não disponível em todos os temas" - -#: ../../mod/settings.php:1114 -msgid "System (personal) notifications" -msgstr "Notificações de sistema (pessoais)" - -#: ../../mod/settings.php:1115 -msgid "System info messages" -msgstr "Mensagens de informação do sistema" - -#: ../../mod/settings.php:1116 -msgid "System critical alerts" -msgstr "Alertas críticos do sistema" - -#: ../../mod/settings.php:1117 -msgid "New connections" -msgstr "Novas conexões" - -#: ../../mod/settings.php:1118 -msgid "System Registrations" -msgstr "Registros no sistema" - -#: ../../mod/settings.php:1119 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Também mostra novos textos, mensagens privadas e conexões nos Avisos" - -#: ../../mod/settings.php:1121 -msgid "Notify me of events this many days in advance" -msgstr "Notifique-me de eventos adiante esse número de dias" - -#: ../../mod/settings.php:1121 -msgid "Must be greater than 0" -msgstr "Deve ser maior que 0" - -#: ../../mod/settings.php:1123 -msgid "Advanced Account/Page Type Settings" -msgstr "Configurações avançadas de conta/tipo de página" - -#: ../../mod/settings.php:1124 -msgid "Change the behaviour of this account for special situations" -msgstr "Mudar o comportamento dessa conta em situações especiais" - -#: ../../mod/settings.php:1127 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!" - -#: ../../mod/settings.php:1128 -msgid "Miscellaneous Settings" -msgstr "Configurações miscelâneas" - -#: ../../mod/settings.php:1130 -msgid "Personal menu to display in your channel pages" -msgstr "Menu pessoal para exibir nas páginas dos seus canais" - -#: ../../mod/settings.php:1131 ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Remover canal" - -#: ../../mod/settings.php:1132 -msgid "Remove this channel." -msgstr "Remover este canal" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Encontrar Xchan" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Encontrar xchan iniciado por (ou webbie):" - -#: ../../mod/xchan.php:37 ../../mod/menu.php:149 ../../mod/mitem.php:120 -msgid "Not found." -msgstr "Não encontrado." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar a conexão com a aplicação" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volte para a sua aplicação e digite este código de segurança:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Por favor, autentique-se para continuar." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" - -#: ../../mod/webpages.php:190 -msgid "Page Title" -msgstr "Título da Página" - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Canal adicionado." - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "A etiqueta foi removida" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Remover a etiqueta de item" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Selecione uma etiqueta para remover: " - -#: ../../mod/tagrm.php:133 ../../mod/photos.php:875 -msgid "Remove" -msgstr "Remover" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continuar" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuração de canal premium" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restrições de canal premium para conexão" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal restrito ou premium" - -#: ../../mod/thing.php:94 -msgid "Thing updated" -msgstr "A coisa foi atualizada" - -#: ../../mod/thing.php:153 -msgid "Object store: failed" -msgstr "Armazenamento do objeto: falhou" - -#: ../../mod/thing.php:157 -msgid "Thing added" -msgstr "A coisa foi adicionada" - -#: ../../mod/thing.php:175 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:226 -msgid "Show Thing" -msgstr "Exibir coisa" - -#: ../../mod/thing.php:233 -msgid "item not found." -msgstr "o item não foi encontrado" - -#: ../../mod/thing.php:261 -msgid "Edit Thing" -msgstr "Editar coisa" - -#: ../../mod/thing.php:263 ../../mod/thing.php:310 -msgid "Select a profile" -msgstr "Selecione um perfil" - -#: ../../mod/thing.php:267 ../../mod/thing.php:313 -msgid "Post an activity" -msgstr "Publique uma atividade" - -#: ../../mod/thing.php:267 ../../mod/thing.php:313 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envia apenas para a audiência do perfil aplicável" - -#: ../../mod/thing.php:269 ../../mod/thing.php:315 -msgid "Name of thing e.g. something" -msgstr "Nome da coisa e.g. coisinha" - -#: ../../mod/thing.php:271 ../../mod/thing.php:316 -msgid "URL of thing (optional)" -msgstr "URL da coisa (opcional)" - -#: ../../mod/thing.php:273 ../../mod/thing.php:317 -msgid "URL for photo of thing (optional)" -msgstr "URL para foto da coisa (opcional)" - -#: ../../mod/thing.php:308 -msgid "Add Thing to your Profile" -msgstr "Adicionar a coisa ao seu perfil" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "O item não está disponível." - -#: ../../mod/probe.php:24 ../../mod/probe.php:30 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Carregar o URL retorna o erro: %1$s" - -#: ../../mod/home.php:53 ../../mod/siteinfo.php:155 -msgid "$Projectname" -msgstr "$Projectname" - -#: ../../mod/home.php:124 -#, php-format -msgid "Welcome to %s" -msgstr "Bem-vindo(a) a %s" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "A imagem foi enviada, mas não foi possível cortá-la." - -#: ../../mod/settings.php:1011 -msgid "Change the behaviour of this account for special situations" -msgstr "Mudar o comportamento dessa conta em situações especiais" - -#: ../../mod/settings.php:1014 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!" - -#: ../../mod/settings.php:1015 -msgid "Miscellaneous Settings" -msgstr "Configurações miscelâneas" - -#: ../../mod/settings.php:1017 -msgid "Personal menu to display in your channel pages" -msgstr "Menu pessoal para exibir nas páginas dos seus canais" - -#: ../../mod/settings.php:1018 -msgid "Remove this channel" -msgstr "Remover este canal" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Cutucar/Espetar" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "Cutucar, espetar ou fazer outras coisas a alguém" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Destinatário" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Escolha o que você deseja fazer com seu alvo" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Torne esta publicação privada" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar a conexão com a aplicação" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volte para a sua aplicação e digite este código de segurança:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Por favor, autentique-se para continuar." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?" - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente." - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Bem vindo %s. Autenticação remota realizada com sucesso." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "O item não está disponível." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Carregar o URL retorna o erro: %1$s" - -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Item inválido." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:49 -msgid "Channel not found." -msgstr "O canal não foi encontrado." - -#: ../../mod/block.php:75 ../../mod/help.php:79 ../../mod/display.php:106 -#: ../../mod/page.php:85 ../../index.php:241 -msgid "Page not found." -msgstr "Página não encontrada." - -#: ../../mod/siteinfo.php:126 -#, php-format -msgid "Version %s" -msgstr "Versão %s" - -#: ../../mod/siteinfo.php:145 -msgid "Installed plugins/addons/apps:" -msgstr "Plugins/complementos/aplicações instalados:" - -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor entre com sua $Projectname ID ou registre-se como novo membro da $Projectname para continuar." - -#: ../../mod/siteinfo.php:166 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:167 -msgid "" -"This is a hub of the Hubzilla - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este é um hub da Hubzilla - uma rede global cooperativa de websites descentralizados com privacidade aprimorada." - -#: ../../mod/siteinfo.php:170 -msgid "Running at web location" -msgstr "Sendo executado no endereço web" - -#: ../../mod/siteinfo.php:171 -msgid "" -"Please visit GetZot.com to learn more " -"about the Hubzilla." -msgstr "Para aprender mais sobre a Hubzilla, visite GetZot.com." - -#: ../../mod/siteinfo.php:172 -msgid "Bug reports and issues: please visit" -msgstr "Relatos e acompanhamentos de erros podem ser encontrados em" - -#: ../../mod/siteinfo.php:175 -msgid "" -"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " -"com" -msgstr "Sugestões, elogios, etc - mande um e-mail para \"hubzilla\" arrôba librelist ponto com" - -#: ../../mod/siteinfo.php:177 -msgid "Site Administrators" -msgstr "Administradores do site" - -#: ../../mod/like.php:404 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s comparecerá em %3$s de %2$s" - -#: ../../mod/like.php:406 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s não comparecerá em %3$s de %2$s" - -#: ../../mod/like.php:408 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s talvez compareça em %3$s de %2$s" - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "O novo perfil foi criado." - -#: ../../mod/events.php:87 -msgid "Event can not end before it has started." -msgstr "Um evento não pode terminar antes de seu início." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Perfil indisponível para exportar." - -#: ../../mod/profiles.php:232 -msgid "Profile Name is required." -msgstr "É obrigatório informar o nome do perfil." - -#: ../../mod/profiles.php:390 -msgid "Marital Status" -msgstr "Estado civil" - -#: ../../mod/profiles.php:394 -msgid "Romantic Partner" -msgstr "Parceiro/a romântico/a" - -#: ../../mod/profiles.php:398 -msgid "Likes" -msgstr "Gosta de" - -#: ../../mod/profiles.php:402 -msgid "Dislikes" -msgstr "Não gosta de" - -#: ../../mod/profiles.php:406 -msgid "Work/Employment" -msgstr "Trabalho/Emprego" - -#: ../../mod/profiles.php:409 -msgid "Religion" -msgstr "Religião" - -#: ../../mod/profiles.php:413 -msgid "Political Views" -msgstr "Posição política" - -#: ../../mod/profiles.php:417 -msgid "Gender" -msgstr "Gênero" - -#: ../../mod/profiles.php:421 -msgid "Sexual Preference" -msgstr "Preferência sexual" - -#: ../../mod/profiles.php:425 -msgid "Homepage" -msgstr "Página web" - -#: ../../mod/profiles.php:429 -msgid "Interests" -msgstr "Interesses" - -#: ../../mod/profiles.php:433 ../../mod/admin.php:868 -msgid "Address" -msgstr "Endereço" - -#: ../../mod/profiles.php:440 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Localização" - -#: ../../mod/profiles.php:523 -msgid "Profile updated." -msgstr "O perfil foi atualizado." - -#: ../../mod/profiles.php:600 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?" - -#: ../../mod/profiles.php:642 -msgid "Edit Profile Details" -msgstr "Editar os detalhes do perfil" - -#: ../../mod/profiles.php:644 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../mod/events.php:643 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para eventos que ocorrem em um lugar específico. Não prático para feriados globais." - -#: ../../mod/profiles.php:647 -msgid "Create a new profile using these settings" -msgstr "Criar um novo perfil usando estas configurações" - -#: ../../mod/profiles.php:648 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../mod/profiles.php:649 -msgid "Delete this profile" -msgstr "Excluir este perfil" - -#: ../../mod/profiles.php:651 -msgid "Import profile from file" -msgstr "Importar perfil dum arquivo" - -#: ../../mod/profiles.php:652 -msgid "Export profile to file" -msgstr "Exportar perfil para arquivo" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration for the $Projectname network. All" -" sites in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some sites may require subscription or" -" provide tiered service plans. The provider links may " -"provide additional details." -msgstr "Os sites listados permitem ao público geral registrar contas na $Projectname. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes." - -#: ../../mod/profiles.php:654 -msgid "Your Full Name:" -msgstr "Seu nome completo:" - -#: ../../mod/profiles.php:655 -msgid "Title/Description:" -msgstr "Título/Descrição:" - -#: ../../mod/profiles.php:656 -msgid "Your Gender:" -msgstr "Seu gênero:" - -#: ../../mod/profiles.php:657 -#, php-format -msgid "Birthday (%s):" -msgstr "Aniversário (%s):" - -#: ../../mod/profiles.php:658 -msgid "Street Address:" -msgstr "Endereço:" - -#: ../../mod/profiles.php:659 -msgid "Locality/City:" -msgstr "Localidade/Cidade:" - -#: ../../mod/profiles.php:660 -msgid "Postal/Zip Code:" -msgstr "CEP:" - -#: ../../mod/profiles.php:661 -msgid "Country:" -msgstr "País:" - -#: ../../mod/profiles.php:662 -msgid "Region/State:" -msgstr "Região/Estado:" - -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "Canal na $Projectname" - -#: ../../mod/profiles.php:664 -msgid "Who: (if applicable)" -msgstr "Quem: (se aplicável)" - -#: ../../mod/profiles.php:665 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com" - -#: ../../mod/profiles.php:666 -msgid "Since [date]:" -msgstr "Desde [data]:" - -#: ../../mod/profiles.php:668 -msgid "Homepage URL:" -msgstr "Endereço do website:" - -#: ../../mod/profiles.php:671 -msgid "Religious Views:" -msgstr "Orientação religiosa:" - -#: ../../mod/profiles.php:672 -msgid "Keywords:" -msgstr "Palavras-chave:" - -#: ../../mod/profiles.php:675 -msgid "Example: fishing photography software" -msgstr "Exemplo: pesca fotografia software" - -#: ../../mod/profiles.php:676 -msgid "Used in directory listings" -msgstr "Usado em listas de diretório" - -#: ../../mod/profiles.php:677 -msgid "Tell us about yourself..." -msgstr "Fale um pouco sobre você..." - -#: ../../mod/profiles.php:678 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interesses" - -#: ../../mod/profiles.php:679 -msgid "Contact information and Social Networks" -msgstr "Informações de contato e redes sociais" - -#: ../../mod/profiles.php:680 -msgid "My other channels" -msgstr "Meus outros canais" - -#: ../../mod/profiles.php:681 -msgid "Musical interests" -msgstr "Interesses musicais" - -#: ../../mod/profiles.php:682 -msgid "Books, literature" -msgstr "Livros, literatura" - -#: ../../mod/profiles.php:683 -msgid "Television" -msgstr "Televisão" - -#: ../../mod/siteinfo.php:156 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este é um hub da $Projectname - uma rede global cooperativa de websites descentralizados com privacidade aprimorada." - -#: ../../mod/profiles.php:686 -msgid "Work/employment" -msgstr "Trabalho/emprego" - -#: ../../mod/profiles.php:687 -msgid "School/education" -msgstr "Escola/educação" - -#: ../../mod/profiles.php:693 -msgid "This is your default profile." -msgstr "Este é seu perfil padrão." - -#: ../../mod/siteinfo.php:164 -msgid "" -"Please visit redmatrix.me to learn more" -" about $Projectname." -msgstr "Por favor visite redmatrix.me para aprender mais sobre a $Projectname." - -#: ../../mod/profiles.php:747 -msgid "Edit/Manage Profiles" -msgstr "Editar/Administrar perfis" - -#: ../../mod/profiles.php:748 -msgid "Add profile things" -msgstr "Adicionar coisas ao perfil" - -#: ../../mod/profiles.php:749 -msgid "Include desirable objects in your profile" -msgstr "Inclua objetos desejáveis no seu perfil" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "O link foi guardado" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "Meus links guardados" - -#: ../../mod/setup.php:166 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Configuração" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil inválido." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidade do perfil" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Clique em um contato para adicionar ou remover." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visível para" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Todas as conexões" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Sites públicos" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Hubzilla. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "Os sites listados permitem ao público geral registrar contas na Hubzilla. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL do site" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Tipo de acesso" - -#: ../../mod/setup.php:290 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar a $Projectname é necessário saber como se conectar ao seu banco de dados." - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Você precisa estar autenticado para ver esta página." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissões insuficientes. Requisição redirecionada para a página de perfil." - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Escolha uma pasta de links onde guardar" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Guardar link" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "URL do link guardado" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Descrição" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Ou digite o nome para uma nova pasta de links" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Sala não encontrada" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Sair da sala" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Deletar esta sala" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Eu estou ausente no momento" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Eu estou online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Guarde esta sala" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nova sala de bate-papo" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Nome da sala de bate-papo" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de bate-papo de %1$s" - -#: ../../mod/register.php:42 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã." - -#: ../../mod/register.php:48 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar." - -#: ../../mod/register.php:82 -msgid "Passwords do not match." -msgstr "Senhas não conferem." - -#: ../../mod/register.php:115 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro." - -#: ../../mod/register.php:121 -msgid "Your registration is pending approval by the site owner." -msgstr "A aprovação do seu registro está pendente junto ao administrador do site." - -#: ../../mod/register.php:124 -msgid "Your registration can not be processed." -msgstr "Não foi possível processar o seu registro." - -#: ../../mod/register.php:161 -msgid "Registration on this site/hub is by approval only." -msgstr "O registro neste site/hub requer aprovação." - -#: ../../mod/register.php:162 -msgid "Register at another affiliated site/hub" -msgstr "Registre em um outro site/hub afiliado" - -#: ../../mod/register.php:170 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã." - -#: ../../mod/register.php:181 -msgid "Terms of Service" -msgstr "Termos de Serviço" - -#: ../../mod/register.php:187 -#, php-format -msgid "I accept the %s for this website" -msgstr "Eu aceito os %s deste website." - -#: ../../mod/register.php:189 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Eu sou maior de 13 anos e aceito os %s deste website" - -#: ../../mod/register.php:203 ../../mod/admin.php:415 -msgid "Registration" -msgstr "Registro" - -#: ../../mod/register.php:208 -msgid "Membership on this site is by invitation only." -msgstr "Novas contas neste site se dão apenas por convite." - -#: ../../mod/register.php:209 -msgid "Please enter your invitation code" -msgstr "Por favor, digite o código do seu convite" - -#: ../../mod/register.php:212 -msgid "Your email address" -msgstr "Seu endereço de e-mail" - -#: ../../mod/register.php:213 -msgid "Choose a password" -msgstr "Escolha uma senha" - -#: ../../mod/register.php:214 -msgid "Please re-enter your password" -msgstr "Por favor, digite sua senha novamente" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Ausente" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Por favor, autentique-se." - -#: ../../mod/cloud.php:126 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "Hubzilla - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "A remoção da canais fica desabilitada por 48 horas após uma troca de senha da conta." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Remover este canal" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Por favor, digite a sua senha para verificação:" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Remover este canal e todos os seus clones da rede" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por padrão, apenas a instância do canal localizada neste hub será removida da rede" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Remover canal" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Nenhum canal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Conexões em comum" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Nenhuma conexão em comum." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "A mensagem de erro foi:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "A autenticação falhou." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Autenticação remota" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Entre o endereço do seu canal (e.g. canal@exemplo.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Autenticar" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Continuar" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Configuração de canal premium" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restrições de canal premium para conexão" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc." - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Tentativas de conexões verão então o seguinte texto antes de prosseguir:" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página." - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Nenhuma instrução foi especificada pelo dono do canal.)" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Canal restrito ou premium" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Este grupo não existe" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Resultados da busca por:" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "A coleção está vazia" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Coleção:" - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Conexão:" - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "Conexão inválida." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "Não foi possível acessar o registro do contato." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 -msgid "Could not locate selected profile." -msgstr "Não foi possível localizar o perfil selecionado." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:132 -msgid "Connection updated." -msgstr "A conexão foi atualizada." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:134 -msgid "Failed to update connection record." -msgstr "Não foi possível atualizar o registro da conexão." - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Bloqueado" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Ignorado" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Oculto" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Arquivado" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 -msgid "All" -msgstr "Todos" - -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Sugerir novas conexões" - -#: ../../mod/connections.php:273 -msgid "New Connections" -msgstr "Novas conexões" - -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Exibir conexões pendentes (novas)" - -#: ../../mod/connections.php:282 -msgid "Show all connections" -msgstr "Exibir todas as conexões" - -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Não bloqueado" - -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Exibir apenas conexões não bloqueadas" - -#: ../../mod/connections.php:295 -msgid "Only show blocked connections" -msgstr "Exibir apenas conexões bloqueadas" - -#: ../../mod/connections.php:302 -msgid "Only show ignored connections" -msgstr "Exibir apenas conexões ignoradas" - -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Exibir apenas conexões arquivadas" - -#: ../../mod/connections.php:316 -msgid "Only show hidden connections" -msgstr "Exibir apenas conexões ocultas" - -#: ../../mod/connections.php:371 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:372 -msgid "Edit connection" -msgstr "Editar conexão" - -#: ../../mod/connections.php:410 -msgid "Search your connections" -msgstr "Pesquisar em suas conexões" - -#: ../../mod/connections.php:411 -msgid "Finding: " -msgstr "Pesquisando: " - -#: ../../mod/blocks.php:95 ../../mod/blocks.php:148 -msgid "Block Name" -msgstr "Nome do bloco" - -#: ../../mod/blocks.php:149 -msgid "Block Title" -msgstr "Título do Bloco" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s marcou %3$s de %2$s com %4$s" - -#: ../../mod/cloud.php:120 -msgid "$Projectname - Guests: Username: {your email address}, Password: +++" -msgstr "$Projectname - Convidados: Nome de usuário: {seu endereço de e-mail}, Senha: +++" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "As informações do dono da pagina não puderam ser obtidas." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "O álbum não foi encontrado." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Excluir o álbum" - -#: ../../mod/photos.php:159 ../../mod/photos.php:930 -msgid "Delete Photo" -msgstr "Excluir a foto" - -#: ../../mod/photos.php:429 ../../mod/search.php:13 ../../mod/display.php:13 -#: ../../mod/ratings.php:82 ../../mod/directory.php:47 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Acesso público negado." - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Não foi selecionada nenhuma foto" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "O acesso a este item está restrito." - -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Utilizados %1$.2f MB de %2$.2f MB para armazenamento de fotos." - -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Utilizados %1$.2f MB para armazenamento de fotos." - -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Enviar fotos" - -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:915 -msgid "Enter a new album name" -msgstr "Digite um nome para o novo álbum" - -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:916 -msgid "or select an existing one (doubleclick)" -msgstr "ou escolha um já existente (duplo clique)" - -#: ../../mod/photos.php:556 -msgid "Create a status post for this upload" -msgstr "Crie uma publicação de status para este upload." - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Não foi possível decodificar o nome do álbum" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1157 -#: ../../mod/photos.php:1173 -msgid "Contact Photos" -msgstr "Fotos dos contatos" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Exibir primeiro os mais recentes" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Exibir primeiro os mais antigos" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1205 -msgid "View Photo" -msgstr "Ver a foto" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Editar o álbum" - -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permissão negada. Acesso a este item pode estar restrito." - -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "A foto não está disponível" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Usar como uma foto de perfil" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Foto privada" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Ver no tamanho real" - -#: ../../mod/photos.php:909 -msgid "Edit photo" -msgstr "Editar a foto" - -#: ../../mod/photos.php:911 -msgid "Rotate CW (right)" -msgstr "Rotacionar H (horário)" - -#: ../../mod/photos.php:912 -msgid "Rotate CCW (left)" -msgstr "Rotacionar AH (anti-horário)" - -#: ../../mod/photos.php:919 -msgid "Caption" -msgstr "Legenda" - -#: ../../mod/photos.php:921 -msgid "Add a Tag" -msgstr "Adicionar uma etiqueta" - -#: ../../mod/photos.php:925 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exemplo: @beto, @Barbara_Almeida, @julia@exemplo.com" - -#: ../../mod/connedit.php:181 -msgid "is now connected to" -msgstr "está agora conectado a" - -#: ../../mod/connedit.php:296 -msgid "Could not access address book record." -msgstr "Não foi possível acessar o registro do contato." - -#: ../../mod/connedit.php:310 -msgid "Refresh failed - channel is currently unavailable." -msgstr "A atualização falhou - o canal está indisponível no momento." - -#: ../../mod/connedit.php:317 -msgid "Channel has been unblocked" -msgstr "O canal foi desbloqueado" - -#: ../../mod/connedit.php:318 -msgid "Channel has been blocked" -msgstr "O canal foi bloqueado" - -#: ../../mod/connedit.php:322 ../../mod/connedit.php:334 -#: ../../mod/connedit.php:346 ../../mod/connedit.php:358 -#: ../../mod/connedit.php:374 -msgid "Unable to set address book parameters." -msgstr "Não foi possível definir os parâmetros do contato." - -#: ../../mod/connedit.php:329 -msgid "Channel has been unignored" -msgstr "O canal não está mais ignorado" - -#: ../../mod/connedit.php:330 -msgid "Channel has been ignored" -msgstr "O canal passou a estar ignorado" - -#: ../../mod/connedit.php:341 -msgid "Channel has been unarchived" -msgstr "O canal deixou o arquivo" - -#: ../../mod/connedit.php:342 -msgid "Channel has been archived" -msgstr "O canal foi colocado no arquivo" - -#: ../../mod/connedit.php:353 -msgid "Channel has been unhidden" -msgstr "O canal não está mais oculto" - -#: ../../mod/connedit.php:354 -msgid "Channel has been hidden" -msgstr "O canal passou a estar oculto" - -#: ../../mod/connedit.php:369 -msgid "Channel has been approved" -msgstr "O canal foi aprovado" - -#: ../../mod/connedit.php:370 -msgid "Channel has been unapproved" -msgstr "O canal deixou de estar aprovado" - -#: ../../mod/connedit.php:398 -msgid "Connection has been removed." -msgstr "A conexão foi removida." - -#: ../../mod/connedit.php:418 -#, php-format -msgid "View %s's profile" -msgstr "Ver o perfil de %s" - -#: ../../mod/connedit.php:422 -msgid "Refresh Permissions" -msgstr "Atualizar permissões" - -#: ../../mod/connedit.php:425 -msgid "Fetch updated permissions" -msgstr "Buscar as permissões atualizadas" - -#: ../../mod/connedit.php:429 -msgid "Recent Activity" -msgstr "Atividades recentes" - -#: ../../mod/connedit.php:432 -msgid "View recent posts and comments" -msgstr "Exibir publicações e comentários recentes" - -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 -#: ../../mod/admin.php:734 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/connedit.php:436 ../../mod/connedit.php:579 -#: ../../mod/admin.php:733 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/connedit.php:439 -msgid "Block or Unblock this connection" -msgstr "Bloquear ou desbloquear esta conexão" - -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -msgid "Unignore" -msgstr "Não ignorar" - -#: ../../mod/connedit.php:443 ../../mod/connedit.php:580 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../mod/connedit.php:446 -msgid "Ignore or Unignore this connection" -msgstr "Ignorar ou deixar de ignorar esta conexão" - -#: ../../mod/connedit.php:449 -msgid "Unarchive" -msgstr "Não arquivar" - -#: ../../mod/connedit.php:449 -msgid "Archive" -msgstr "Arquivar" - -#: ../../mod/connedit.php:452 -msgid "Archive or Unarchive this connection" -msgstr "Colocar ou retirar do arquivo esta conexão" - -#: ../../mod/connedit.php:455 -msgid "Unhide" -msgstr "Não ocultar" - -#: ../../mod/connedit.php:455 -msgid "Hide" -msgstr "Ocultar" - -#: ../../mod/connedit.php:458 -msgid "Hide or Unhide this connection" -msgstr "Ocultar ou deixar de ocultar esta conexão" - -#: ../../mod/connedit.php:465 -msgid "Delete this connection" -msgstr "Deletar esta conexão" - -#: ../../mod/connedit.php:508 ../../mod/connedit.php:537 -msgid "Approve this connection" -msgstr "Aprovar esta conexão" - -#: ../../mod/connedit.php:508 -msgid "Accept connection to allow communication" -msgstr "Aceite a conexão para permitir comunicação" - -#: ../../mod/connedit.php:524 -msgid "Automatic Permissions Settings" -msgstr "Configurações de permissão automáticas" - -#: ../../mod/connedit.php:524 -#, php-format -msgid "Connections: settings for %s" -msgstr "Conexões: configurações para %s" - -#: ../../mod/connedit.php:528 -msgid "" -"When receiving a channel introduction, any permissions provided here will be" -" applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." -msgstr "Ao receber uma apresentação de um canal, quaisquer permissões definidas aqui serão automaticamente aplicadas à nova conexão e a apresentação aprovada. Deixe esta página se você não quer usar este recurso." - -#: ../../mod/connedit.php:530 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslize para ajustar seu grau de amizade" - -#: ../../mod/connedit.php:536 -msgid "inherited" -msgstr "herdado" - -#: ../../mod/connedit.php:538 -msgid "Connection has no individual permissions!" -msgstr "A conexão não tem permissões individuais!" - -#: ../../mod/connedit.php:539 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Isso pode ser adequado baseado nas suas configurações de privacidade, mas talvez você queira rever suas \"Permissões Avançadas\"." - -#: ../../mod/connedit.php:541 -msgid "Profile Visibility" -msgstr "Visibilidade do perfil" - -#: ../../mod/connedit.php:542 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro." - -#: ../../mod/connedit.php:543 -msgid "Contact Information / Notes" -msgstr "Informações de contato / Notas" - -#: ../../mod/connedit.php:544 -msgid "Edit contact notes" -msgstr "Editar anotações sobre o contato" - -#: ../../mod/connedit.php:546 -msgid "Their Settings" -msgstr "Configurações dele/a" - -#: ../../mod/connedit.php:547 -msgid "My Settings" -msgstr "Minhas configurações" - -#: ../../mod/connedit.php:549 -msgid "Clear/Disable Automatic Permissions" -msgstr "Limpa/Desabilita permissões automáticas" - -#: ../../mod/connedit.php:550 -msgid "Forum Members" -msgstr "Membros de fórum" - -#: ../../mod/connedit.php:551 -msgid "Soapbox" -msgstr "Caixa de sabão" - -#: ../../mod/connedit.php:552 -msgid "Full Sharing (typical social network permissions)" -msgstr "Compartilhamento completo (permissões típicas de redes sociais)" - -#: ../../mod/connedit.php:553 -msgid "Cautious Sharing " -msgstr "Compartilhamento cauteloso" - -#: ../../mod/editlayout.php:166 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:179 -msgid "Layout Name" -msgstr "Nome do layout" - -#: ../../mod/connedit.php:555 -msgid "Individual Permissions" -msgstr "Permissões individuais" - -#: ../../mod/connedit.php:556 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Algumas permissões serão herdadas das configurações de privacidade do seu canal, e terão prioridade sobre as configurações individuais. Modificar nesta página tais configurações herdadas não surtirá efeito algum." - -#: ../../mod/connedit.php:557 -msgid "Advanced Permissions" -msgstr "Permissões avançadas" - -#: ../../mod/connedit.php:558 -msgid "Simple Permissions (select one and submit)" -msgstr "Permissões simples (slecione uma e submeta)" - -#: ../../mod/connedit.php:562 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Ver o perfil de %s - %s" - -#: ../../mod/connedit.php:563 -msgid "Block/Unblock contact" -msgstr "Bloquear/desbloquear o contato" - -#: ../../mod/connedit.php:564 -msgid "Ignore contact" -msgstr "Ignorar o contato" - -#: ../../mod/connedit.php:565 -msgid "Repair URL settings" -msgstr "Reparar configurações de URL" - -#: ../../mod/connedit.php:566 -msgid "View conversations" -msgstr "Ver as conversas" - -#: ../../mod/connedit.php:568 -msgid "Delete contact" -msgstr "Excluir o contato" - -#: ../../mod/connedit.php:571 -msgid "Last update:" -msgstr "Última atualização:" - -#: ../../mod/connedit.php:573 -msgid "Update public posts" -msgstr "Atualizar publicações públicas" - -#: ../../mod/connedit.php:575 -msgid "Update now" -msgstr "Atualizar agora" - -#: ../../mod/connedit.php:581 -msgid "Currently blocked" -msgstr "Atualmente bloqueado" - -#: ../../mod/connedit.php:582 -msgid "Currently ignored" -msgstr "Atualmente ignorado" - -#: ../../mod/connedit.php:583 -msgid "Currently archived" -msgstr "Atualmente arquivado" - -#: ../../mod/connedit.php:584 -msgid "Currently pending" -msgstr "Atualmente pendente" - -#: ../../mod/connedit.php:585 -msgid "Hide this contact from others" -msgstr "Esconda este contato dos demais" - -#: ../../mod/connedit.php:585 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Respostas/reações às suas publicações públicas podem continuar visíveis." - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Nenhum potencial delegado para páginas localizado." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegar administração de página" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Delegados podem administrar todos os aspectos desta conta/página exceto pelas configurações básicas da conta. Por favor, não delegue sua conta pessoal para alguém que você não confie completamente." - -#: ../../mod/lostpass.php:85 ../../boot.php:1558 -msgid "Password Reset" -msgstr "Reiniciar a senha" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Atuais delegados da página" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potenciais delegados" - -#: ../../mod/delegate.php:130 ../../mod/photos.php:940 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Remover" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Adicionar" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Sem entradas." - -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 ../../mod/photos.php:443 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Acesso público negado." - -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Gênero: " - -#: ../../mod/directory.php:223 -msgid "Finding:" -msgstr "Pesquisando:" - -#: ../../mod/directory.php:228 -msgid "next page" -msgstr "próxima página" - -#: ../../mod/directory.php:228 -msgid "previous page" -msgstr "página anterior" - -#: ../../mod/directory.php:245 -msgid "No entries (some entries may be hidden)." -msgstr "Nenhuma entrada (algumas entradas podem estar escondidas)." - -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Status:" - -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Preferência sexual:" - -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Website:" - -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Cidade natal:" - -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "Sobre:" - -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Palavras-chave:" - -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Este site não é um servidor de diretório" - -#: ../../mod/setup.php:162 -msgid "Hubzilla Server - Setup" -msgstr "Servidor Hubzilla - Configuração" - -#: ../../mod/setup.php:168 -msgid "Could not connect to database." -msgstr "Não foi possível conectar ao banco de dados." - -#: ../../mod/setup.php:172 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Não foi possível conectar à URL especificada para o site. Provavlmente um problema de DNS ou com o certificado SSL." - -#: ../../mod/setup.php:179 -msgid "Could not create table." -msgstr "Não foi possível criar a tabela." - -#: ../../mod/setup.php:185 -msgid "Your site database has been installed." -msgstr "O banco de dados do seu site foi instalado." - -#: ../../mod/setup.php:190 -msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql." - -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, veja o arquivo \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:257 -msgid "System check" -msgstr "Checagem do sistema" - -#: ../../mod/invite.php:132 -msgid "Please join my community on \$Projectname." -msgstr "Por favor junte-se à minha comunidade na \$Projectname." - -#: ../../mod/setup.php:262 -msgid "Check again" -msgstr "Cheque novamente" - -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any \$Projectname location (they are all inter-connected)" -msgstr "1. Registre-se em qualquer site da \$Projectname (eles são todos interconectados)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my \$Projectname network address into the site searchbar." -msgstr "2. Entre com meu endereço da \$Projectname na barra de busca do site." - - -#: ../../mod/setup.php:286 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso." - -#: ../../mod/setup.php:287 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "O banco de dados que você especificar abaixo já deve existir. Caso contrário, crie-o antes de prosseguir." - -#: ../../mod/setup.php:291 -msgid "Database Server Name" -msgstr "Nome do servidor de banco de dados" - -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "O default é localhost" - -#: ../../mod/setup.php:292 -msgid "Database Port" -msgstr "Porta do banco de dados" - -#: ../../mod/setup.php:292 -msgid "Communication port number - use 0 for default" -msgstr "Número da porta de comunicação - use 0 para o default" - -#: ../../mod/setup.php:293 -msgid "Database Login Name" -msgstr "Nome do usuário do banco de dados" - -#: ../../mod/setup.php:294 -msgid "Database Login Password" -msgstr "Senha do usuário do banco de dados" - -#: ../../mod/setup.php:295 -msgid "Database Name" -msgstr "Nome do banco de dados" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "Site administrator email address" -msgstr "Endereço de email do administrador do site" - -#: ../../mod/setup.php:297 ../../mod/setup.php:339 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web." - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Website URL" -msgstr "URL do website" - -#: ../../mod/setup.php:298 ../../mod/setup.php:341 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use uma URL SSL (https) se disponível." - -#: ../../mod/setup.php:301 ../../mod/setup.php:344 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecione o fuso horário padrão para o seu site" - -#: ../../mod/setup.php:328 -msgid "Site settings" -msgstr "Configurações do site" - -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web." - -#: ../../mod/setup.php:388 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Caso você não tenha uma versão de linha de comando do PHP instalada no seu servidor, você não será capaz de executar coletas em segundo plano pelo cron." - -#: ../../mod/setup.php:392 -msgid "PHP executable path" -msgstr "Caminho para o executável do PHP" - -#: ../../mod/setup.php:392 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação." - -#: ../../mod/setup.php:397 -msgid "Command line PHP" -msgstr "PHP em linha de comando" - -#: ../../mod/setup.php:406 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema." - -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "Isto é necessário para o funcionamento do envio de mensagens." - -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:430 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia" - -#: ../../mod/setup.php:431 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:433 -msgid "Generate encryption keys" -msgstr "Gerar chaves de criptografia" - -#: ../../mod/setup.php:440 -msgid "libCurl PHP module" -msgstr "Módulo PHP libCurl" - -#: ../../mod/setup.php:441 -msgid "GD graphics PHP module" -msgstr "Módulo PHP GD graphics" - -#: ../../mod/setup.php:442 -msgid "OpenSSL PHP module" -msgstr "Módulo PHP OpenSSL" - -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "Módulo PHP mysqli" - -#: ../../mod/setup.php:444 -msgid "mb_string PHP module" -msgstr "Módulo PHP mb_string " - -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "Módulo PHP mcrypt" - -#: ../../mod/setup.php:450 ../../mod/setup.php:452 -msgid "Apache mod_rewrite module" -msgstr "Módulo mod_rewrite do Apache" - -#: ../../mod/setup.php:450 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado." - -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:456 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Erro: proc_open é necessário, mas não está instalado ou foi desabilitado no php.ini" - -#: ../../mod/setup.php:464 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado." - -#: ../../mod/setup.php:468 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado." - -#: ../../mod/setup.php:472 -msgid "Error: openssl PHP module required but not installed." -msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado." - -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado." - -#: ../../mod/setup.php:480 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Erro: o módulo mb_string do PHP é necessário, mas não está instalado." - -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Erro: o módulo mcrypt do PHP é necessário, mas não está instalado." - -#: ../../mod/setup.php:500 -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 "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo." - -#: ../../mod/setup.php:501 -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 "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta." - -#: ../../mod/setup.php:502 -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 "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome .htconfig.php, na pasta raiz do seu Red." - -#: ../../mod/setup.php:503 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"install/INSTALL.TXT\" para instruções." - -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tem permissão de escrita" - -#: ../../mod/setup.php:516 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red usa o engine de template Smarty3 para renderizar suas telas. Smarty3 compila templates para PHP para acelerar a renderização." - -#: ../../mod/setup.php:517 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório %s no diretório raiz da Red." - -#: ../../mod/setup.php:518 ../../mod/setup.php:536 -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, certifique-se de que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório." - -#: ../../mod/setup.php:519 -#, 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 uma medida de segurança, você deve fornecer ao servidor web permissão de escrita somente em %s e não aos arquivos de template (.tpl) que ele contém." - -#: ../../mod/setup.php:522 -#, php-format -msgid "%s is writable" -msgstr "%s tem permissão de escrita" - -#: ../../mod/setup.php:535 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red" - -#: ../../mod/setup.php:539 -msgid "store is writable" -msgstr "store tem permissão de escrita" - -#: ../../mod/setup.php:569 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site." - -#: ../../mod/setup.php:570 -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 você oferece acesso https ao seu website ou permite conexões na porta TCP 443 (a porta https:), você DEVE usar um certificado reconhecido pelos navegadores. Você NÃO DEVE usar certificados assinados por você mesmo!" - -#: ../../mod/setup.php:571 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Essa restrição é incorporada porque publicações públicas suas podem, por exemplo, conter referências a imagens no seu próprio hub." - -#: ../../mod/setup.php:572 -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 seu certificado não for reconhecido, membros de outros sites (que podem ter certificados válidos) receberão uma mensagem de aviso nos seus próprios sites reclamando de problemas de segurança." - -#: ../../mod/setup.php:573 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Isso pode causar problemas de usabilidade (não só no seu site) então nós precisamos insistir nesse requisito." - -#: ../../mod/setup.php:574 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existem provedores que disponibilizam gratuitamente certificados reconhecidos por navegadores." - -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "Validação do certificado SSL" - -#: ../../mod/setup.php:582 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor." - -#: ../../mod/setup.php:584 -msgid "Url rewrite is working" -msgstr "A reescrita de URLs está funcionando" - -#: ../../mod/setup.php:594 -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 "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web." - -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados." - -#: ../../mod/setup.php:653 -msgid "

What next

" -msgstr "

Próximos passos

" - -#: ../../mod/setup.php:654 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor." - -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "O item não foi encontrado" - -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Editar bloco" - -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Deletar bloco?" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "Inserir vídeo do YouTube" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserir vídeo Vorbis (.ogg)" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserir áudio Vorbis (.ogg)" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Deletar bloco" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout atualizado." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Editar descrição de página do sistema" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout não encontrado." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Nome do módulo:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Ajuda de layout" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Editar layout" - -#: ../../mod/impel.php:121 -#, php-format -msgid "%s element installed" -msgstr "Elemento %s instalado" - -#: ../../mod/impel.php:124 -#, php-format -msgid "%s element installation failed" -msgstr "Instalação de elemento %s falhou" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Editar página web" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Deletar página web?" - -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" -msgstr "Deletar página web" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "As informações do dono da pagina não puderam ser obtidas." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "O álbum não foi encontrado." - -#: ../../mod/photos.php:119 ../../mod/photos.php:676 -msgid "Delete Album" -msgstr "Excluir o álbum" - -#: ../../mod/photos.php:159 ../../mod/photos.php:991 -msgid "Delete Photo" -msgstr "Excluir a foto" - -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Não foi selecionada nenhuma foto" - -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "O acesso a este item está restrito." - -#: ../../mod/photos.php:574 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Você usou %1$.2f Mbytes de %2$.2f Mbytes de armazenamento de fotos." - -#: ../../mod/photos.php:577 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Você usou %1$.2f Mbytes de armazenamento de fotos." - -#: ../../mod/photos.php:596 -msgid "Upload Photos" -msgstr "Enviar fotos" - -#: ../../mod/photos.php:600 ../../mod/photos.php:671 -msgid "New album name: " -msgstr "Novo nome de álbum: " - -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "ou nome de um álbum já existente: " - -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" -msgstr "Não exibir uma publicação de status para este carregamento" - -#: ../../mod/photos.php:622 -msgid "Album name could not be decoded" -msgstr "Não foi possível decodificar o nome do álbum" - -#: ../../mod/photos.php:660 ../../mod/photos.php:682 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1178 -msgid "Contact Photos" -msgstr "Fotos dos contatos" - -#: ../../mod/photos.php:684 -msgid "Edit Album" -msgstr "Editar o álbum" - -#: ../../mod/photos.php:690 -msgid "Show Newest First" -msgstr "Exibir primeiro os mais recentes" - -#: ../../mod/photos.php:692 -msgid "Show Oldest First" -msgstr "Exibir primeiro os mais antigos" - -#: ../../mod/photos.php:745 ../../mod/photos.php:1210 -msgid "View Photo" -msgstr "Ver a foto" - -#: ../../mod/photos.php:810 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permissão negada. Acesso a este item pode estar restrito." - -#: ../../mod/photos.php:812 -msgid "Photo not available" -msgstr "A foto não está disponível" - -#: ../../mod/photos.php:872 -msgid "Use as profile photo" -msgstr "Usar como uma foto de perfil" - -#: ../../mod/photos.php:896 -msgid "View Full Size" -msgstr "Ver no tamanho real" - -#: ../../mod/photos.php:974 -msgid "Edit photo" -msgstr "Editar a foto" - -#: ../../mod/photos.php:976 -msgid "Rotate CW (right)" -msgstr "Rotacionar H (horário)" - -#: ../../mod/photos.php:977 -msgid "Rotate CCW (left)" -msgstr "Rotacionar AH (anti-horário)" - -#: ../../mod/photos.php:980 -msgid "New album name" -msgstr "Novo nome para o álbum" - -#: ../../mod/photos.php:983 -msgid "Caption" -msgstr "Legenda" - -#: ../../mod/photos.php:985 -msgid "Add a Tag" -msgstr "Adicionar uma etiqueta" - -#: ../../mod/photos.php:988 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento" - -#: ../../mod/photos.php:1141 -msgid "In This Photo:" -msgstr "Nesta foto:" - -#: ../../mod/photos.php:1216 -msgid "View Album" -msgstr "Ver álbum" - -#: ../../mod/photos.php:1239 -msgid "Recent Photos" -msgstr "Fotos recentes" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "A imagem foi enviada, mas não foi possível cortá-la." - -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Falha ao modificar o tamanho da imagem." - -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Se a nova foto não aparecer imediatamente, recarregue a página segurando a tecla \"shift\" ou limpe o cache do navegador, " - -#: ../../mod/profile_photo.php:232 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "A imagem excede o limite de tamanho de %d" - -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Não foi possível processar a imagem." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "A foto não está disponível." - -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Enviar arquivo:" - -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Selecione um perfil:" - -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Enviar foto do perfil" - -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "pule esta etapa" - -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "selecione uma foto do seu álbum de fotos" - -#: ../../mod/profile_photo.php:381 -msgid "Crop Image" -msgstr "Cortar a imagem" - -#: ../../mod/profile_photo.php:382 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajuste o corte da imagem para a melhor visualização." - -#: ../../mod/profile_photo.php:384 -msgid "Done Editing" -msgstr "Encerrar a edição" - -#: ../../mod/profile_photo.php:427 -msgid "Image uploaded successfully." -msgstr "A imagem foi enviada com sucesso." - -#: ../../mod/profile_photo.php:429 -msgid "Image upload failed." -msgstr "Não foi possível enviar a imagem." - -#: ../../mod/profile_photo.php:438 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Não foi possível reduzir o tamanho da imagem [%s]." - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Falha ao criar a fonte. Nenhum canal selecionado." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "A fonte foi criada." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "A fonte foi atualizada." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Administrar as fontes remotas de conteúdo para o seu canal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nova fonte" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importar apenas conteúd com estas palavras (uma por linha)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Deixe em branco para importar todo o conteúdo público" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Nome do canal" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "A fonte não foi encontrada." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Editar fonte" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Deletar fonte" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "A fonte foi removida." - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Não foi possível remover a fonte." - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- selecionar -" - -#: ../../mod/events.php:91 -msgid "Event title and start time are required." -msgstr "O título do evento e a hora de início são obrigatórios." - -#: ../../mod/events.php:105 -msgid "Event not found." -msgstr "Evento não encontrado." - -#: ../../mod/events.php:369 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Erro do protocolo OpenID. Nenhuma ID retornada." - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir um amigo para %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas." - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "A coleção foi criada." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Não foi possível criar a coleção." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Coleção atualizada" - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Criar uma coleção de canais." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Nome da coleção:" - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Membros são visíveis para outros canais" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Coleção removida." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Não foi possível remover a coleção." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Editor de coleção" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Membros" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Todas os canais conectados" - -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Clique em um canal para adicionar ou remover." - -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s marcou %3$s de %2$s com %4$s" - -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Ajuda:" - -#: ../../mod/help.php:69 ../../index.php:237 -msgid "Not Found" -msgstr "Não encontrada" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "A etiqueta foi removida" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Remover a etiqueta de item" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Selecione uma etiqueta para remover: " - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "As configurações de tema foram atualizadas." - -#: ../../mod/admin.php:97 ../../mod/admin.php:413 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Contas" - -#: ../../mod/admin.php:99 ../../mod/admin.php:860 -msgid "Channels" -msgstr "Canais" - -#: ../../mod/admin.php:100 ../../mod/admin.php:951 ../../mod/admin.php:993 -msgid "Plugins" -msgstr "Plugins" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1156 ../../mod/admin.php:1192 -msgid "Themes" -msgstr "Temas" - -#: ../../mod/admin.php:102 ../../mod/admin.php:515 -msgid "Server" -msgstr "Servidor" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Configuração de perfis" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "Atualizações do Banco de Dados" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1279 -msgid "Logs" -msgstr "Logs" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Recursos dos plugins" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Registros de usuário aguardando confirmação" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Filas de mensagem" - -#: ../../mod/admin.php:211 ../../mod/admin.php:412 ../../mod/admin.php:514 -#: ../../mod/admin.php:723 ../../mod/admin.php:859 ../../mod/admin.php:950 -#: ../../mod/admin.php:992 ../../mod/admin.php:1155 ../../mod/admin.php:1191 -#: ../../mod/admin.php:1278 -msgid "Administration" -msgstr "Administração" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Resumo" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Usuários registrados" - -#: ../../mod/admin.php:216 ../../mod/admin.php:518 -msgid "Pending registrations" -msgstr "Registros pendentes" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Versão" - -#: ../../mod/admin.php:219 ../../mod/admin.php:519 -msgid "Active plugins" -msgstr "Plugins ativos" - -#: ../../mod/admin.php:333 -msgid "Site settings updated." -msgstr "As configurações de site foram atualizadas." - -#: ../../mod/admin.php:364 -msgid "No special theme for accessibility" -msgstr "Sem tema especial para acessibilidade" - -#: ../../mod/admin.php:393 -msgid "Yes - with approval" -msgstr "Sim - pendente aprovação" - -#: ../../mod/admin.php:399 -msgid "My site is not a public server" -msgstr "Meu site não é um servidor público" - -#: ../../mod/admin.php:400 -msgid "My site has paid access only" -msgstr "Meu site oferece somente acesso pago" - -#: ../../mod/admin.php:401 -msgid "My site has free access only" -msgstr "Meu site oferece somente acesso gratuito" - -#: ../../mod/admin.php:402 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Meu site oferece contas gratuitas com recursos adicionais pagos" - -#: ../../mod/admin.php:416 -msgid "File upload" -msgstr "Carregamento de arquivos" - -#: ../../mod/admin.php:417 -msgid "Policies" -msgstr "Políticas" - -#: ../../mod/admin.php:422 -msgid "Site name" -msgstr "Nome do site" - -#: ../../mod/admin.php:423 -msgid "Banner/Logo" -msgstr "Cartaz/Logo" - -#: ../../mod/admin.php:424 -msgid "Administrator Information" -msgstr "Informações do Administrador" - -#: ../../mod/admin.php:424 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui." - -#: ../../mod/admin.php:425 -msgid "System language" -msgstr "Idioma do sistema" - -#: ../../mod/admin.php:426 -msgid "System theme" -msgstr "Tema do sistema" - -#: ../../mod/admin.php:426 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema" - -#: ../../mod/admin.php:427 -msgid "Mobile system theme" -msgstr "Tema do sistema móvel" - -#: ../../mod/admin.php:427 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móveis" - -#: ../../mod/admin.php:428 -msgid "Accessibility system theme" -msgstr "Tema do sistema acessível" - -#: ../../mod/admin.php:428 -msgid "Accessibility theme" -msgstr "Tema acessível" - -#: ../../mod/admin.php:430 -msgid "Enable Diaspora Protocol" -msgstr "Habilitar protocolo Diaspora" - -#: ../../mod/admin.php:430 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Comunicar com Diaspora e Friendica - experimental" - -#: ../../mod/admin.php:431 -msgid "Allow Feeds as Connections" -msgstr "Permitir Feeds como conexões" - -#: ../../mod/admin.php:431 -msgid "(Heavy system resource usage)" -msgstr "(Alto uso de recursos do sistema)" - -#: ../../mod/admin.php:432 -msgid "Maximum image size" -msgstr "Tamanho máximo de imagens" - -#: ../../mod/admin.php:432 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites." - -#: ../../mod/admin.php:433 -msgid "Does this site allow new member registration?" -msgstr "Este site permite o registro de novos membros?" - -#: ../../mod/admin.php:434 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Qual descreve melhor os tipos de conta oferecidas por este hub?" - -#: ../../mod/admin.php:435 -msgid "Register text" -msgstr "Texto de registro" - -#: ../../mod/admin.php:435 -msgid "Will be displayed prominently on the registration page." -msgstr "Será exibido proeminentemente na página de registro." - -#: ../../mod/admin.php:436 -msgid "Accounts abandoned after x days" -msgstr "Contas abandonadas após x dias" - -#: ../../mod/admin.php:436 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo." - -#: ../../mod/admin.php:437 -msgid "Allowed friend domains" -msgstr "Domínios permitidos para amigos" - -#: ../../mod/admin.php:437 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio" - -#: ../../mod/admin.php:438 -msgid "Allowed email domains" -msgstr "Domínios permitidos de e-mail" - -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio" - -#: ../../mod/admin.php:439 -msgid "Block public" -msgstr "Bloquear público" - -#: ../../mod/admin.php:439 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado." - -#: ../../mod/admin.php:440 -msgid "Verify Email Addresses" -msgstr "Verificar endereços de email" - -#: ../../mod/admin.php:440 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Clique para verificar endereços de email usados no registro de contas (recomendado)." - -#: ../../mod/admin.php:441 -msgid "Force publish" -msgstr "Forçar publicação" - -#: ../../mod/admin.php:441 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site." - -#: ../../mod/admin.php:442 -msgid "Disable discovery tab" -msgstr "Desabilitar a aba \"Descubra\"" - -#: ../../mod/admin.php:442 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Remove da visualização de rede a aba com conteúdos públicos obtidos de fontes escolhidas para esse site." - -#: ../../mod/admin.php:443 -msgid "No login on Homepage" -msgstr "Sem formulário de autenticação na página inicial" - -#: ../../mod/admin.php:443 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)." - -#: ../../mod/admin.php:445 -msgid "Proxy user" -msgstr "Usuário do proxy" - -#: ../../mod/admin.php:446 -msgid "Proxy URL" -msgstr "URL do proxy" - -#: ../../mod/admin.php:447 -msgid "Network timeout" -msgstr "Timeout da rede" - -#: ../../mod/admin.php:447 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor em segundos. Use 0 para ilimitado (não recomendado)." - -#: ../../mod/admin.php:448 -msgid "Delivery interval" -msgstr "Intervalo de entrega" - -#: ../../mod/admin.php:448 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados." - -#: ../../mod/admin.php:449 -msgid "Poll interval" -msgstr "Intervalo de coleta" - -#: ../../mod/admin.php:449 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega." - -#: ../../mod/admin.php:450 -msgid "Maximum Load Average" -msgstr "Carga média máxima" - -#: ../../mod/admin.php:450 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50." - -#: ../../mod/admin.php:506 -msgid "No server found" -msgstr "Nenhum servidor foi encontrado" - -#: ../../mod/admin.php:513 ../../mod/admin.php:737 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:513 -msgid "for channel" -msgstr "para o canal" - -#: ../../mod/admin.php:513 -msgid "on server" -msgstr "no servidor" - -#: ../../mod/admin.php:513 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:534 -msgid "Update has been marked successful" -msgstr "A atualização foi designada bem sucedida" - -#: ../../mod/admin.php:544 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Execução de %s falhou. Verifique os logs do sistema." - -#: ../../mod/admin.php:547 -#, php-format -msgid "Update %s was successfully applied." -msgstr "A atualização %s foi aplicada com sucesso." - -#: ../../mod/admin.php:551 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso." - -#: ../../mod/admin.php:554 -#, php-format -msgid "Update function %s could not be found." -msgstr "A função de atualização %s não foi encontrada." - -#: ../../mod/admin.php:569 -msgid "No failed updates." -msgstr "Nenhuma falha nas atualizações." - -#: ../../mod/admin.php:573 -msgid "Failed Updates" -msgstr "Falha nas atualizações" - -#: ../../mod/admin.php:575 -msgid "Mark success (if update was manually applied)" -msgstr "Marque sucesso (se a atualização foi aplicada manualmente)" - -#: ../../mod/admin.php:576 -msgid "Attempt to execute this update step automatically" -msgstr "Tente executar este passo da atualização automaticamente" - -#: ../../mod/admin.php:602 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuário foi bloqueado/desbloqueado" -msgstr[1] "%s usuários foram bloqueados/desbloqueados" - -#: ../../mod/admin.php:609 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuário foi deletado" -msgstr[1] "%s usuários foram deletados" - -#: ../../mod/admin.php:638 -msgid "Account not found" -msgstr "A conta não foi encontrada" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' unblocked" -msgstr "O usuário/a '%s' foi desbloqueado/a" - -#: ../../mod/admin.php:658 -#, php-format -msgid "User '%s' blocked" -msgstr "O usuário/a '%s' foi bloqueado/a" - -#: ../../mod/admin.php:724 ../../mod/admin.php:736 -msgid "Users" -msgstr "Usuários" - -#: ../../mod/admin.php:726 ../../mod/admin.php:862 -msgid "select all" -msgstr "selecionar tudo" - -#: ../../mod/admin.php:727 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuário aguardando confirmação" - -#: ../../mod/admin.php:728 -msgid "Request date" -msgstr "Data de requisição" - -#: ../../mod/admin.php:729 -msgid "No registrations." -msgstr "Nenhum registro." - -#: ../../mod/admin.php:730 -msgid "Approve" -msgstr "Aprovar" - -#: ../../mod/admin.php:731 -msgid "Deny" -msgstr "Negar" - -#: ../../mod/admin.php:737 -msgid "Register date" -msgstr "Data de registro" - -#: ../../mod/admin.php:737 -msgid "Last login" -msgstr "Última autenticação" - -#: ../../mod/admin.php:737 -msgid "Expires" -msgstr "Expira" - -#: ../../mod/admin.php:737 -msgid "Service Class" -msgstr "Classe de serviço" - -#: ../../mod/admin.php:739 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?" - -#: ../../mod/admin.php:740 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?" - -#: ../../mod/admin.php:773 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canal censurado/descensurado" -msgstr[1] "%s canais censurados/descensurados" - -#: ../../mod/admin.php:780 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canal deletado" -msgstr[1] "%s canais deletados" - -#: ../../mod/admin.php:799 -msgid "Channel not found" -msgstr "Canal não encontrado" - -#: ../../mod/admin.php:810 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' deletado" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' não censurado" - -#: ../../mod/admin.php:821 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" - -#: ../../mod/admin.php:864 -msgid "Censor" -msgstr "Censurar" - -#: ../../mod/admin.php:865 -msgid "Uncensor" -msgstr "Não censurar" - -#: ../../mod/admin.php:868 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:870 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Os canais selecionados serão deletados!\\n\\nTudo que foi postado nesses canais nesse site será permanentemente deletado!\\n\\nVocê tem certeza?" - -#: ../../mod/admin.php:871 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "O canal {0} será deletado!\\n\\nTudo o que foi postado nesse canal nesse site será permanentemente deletado!\\n\\nVocê tem certeza?" - -#: ../../mod/admin.php:910 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s desabilitado." - -#: ../../mod/admin.php:914 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s habilitado." - -#: ../../mod/admin.php:924 ../../mod/admin.php:1126 -msgid "Disable" -msgstr "Desabilitar" - -#: ../../mod/admin.php:926 ../../mod/admin.php:1128 -msgid "Enable" -msgstr "Habilitar" - -#: ../../mod/admin.php:952 ../../mod/admin.php:1157 -msgid "Toggle" -msgstr "Alternar" - -#: ../../mod/admin.php:960 ../../mod/admin.php:1167 -msgid "Author: " -msgstr "Autor:" - -#: ../../mod/admin.php:961 ../../mod/admin.php:1168 -msgid "Maintainer: " -msgstr "Mantenedor:" - -#: ../../mod/admin.php:1090 -msgid "No themes found." -msgstr "Nenhum tema foi encontrado." - -#: ../../mod/admin.php:1149 -msgid "Screenshot" -msgstr "Captura de tela" - -#: ../../mod/admin.php:1197 -msgid "[Experimental]" -msgstr "[Experimental]" - -#: ../../mod/admin.php:1198 -msgid "[Unsupported]" -msgstr "[Desassistido]" - -#: ../../mod/admin.php:1225 -msgid "Log settings updated." -msgstr "As configurações de log foram atualizadas." - -#: ../../mod/admin.php:1281 -msgid "Clear" -msgstr "Limpar" - -#: ../../mod/admin.php:1287 -msgid "Debugging" -msgstr "Depuração" - -#: ../../mod/admin.php:1288 -msgid "Log file" -msgstr "Arquivo de log" - -#: ../../mod/admin.php:1288 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red." - -#: ../../mod/admin.php:1289 -msgid "Log level" -msgstr "Nível do log" - -#: ../../mod/admin.php:1336 -msgid "New Profile Field" -msgstr "Novo campo de perfil" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "Field nickname" -msgstr "Nome de apresentação do campo" - -#: ../../mod/admin.php:1337 ../../mod/admin.php:1358 -msgid "System name of field" -msgstr "Nome de sistema do campo" - -#: ../../mod/admin.php:1338 ../../mod/admin.php:1359 -msgid "Input type" -msgstr "Tipo de entrada" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Field Name" -msgstr "Nome do campo" - -#: ../../mod/admin.php:1339 ../../mod/admin.php:1360 -msgid "Label on profile pages" -msgstr "Rótulo nas páginas de perfil" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Help text" -msgstr "Texto de ajuda" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Additional info (optional)" -msgstr "Informações adicionais (opcional)" - -#: ../../mod/admin.php:1351 -msgid "Field definition not found" -msgstr "A dfinição de campo não foi encontrada" - -#: ../../mod/admin.php:1357 -msgid "Edit Profile Field" -msgstr "Editar campo de perfil" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Não foi possível localizar seu hub." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Publicado com sucesso." - -#: ../../mod/editblock.php:112 -msgid "Edit Block" -msgstr "Editar bloco" - -#: ../../mod/editblock.php:123 -msgid "Delete block?" -msgstr "Deletar bloco?" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Senhas não conferem." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "A aprovação do seu registro está pendente junto ao administrador do site." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Não foi possível processar o seu registro." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "O registro neste site/hub requer aprovação." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Registre em um outro site/hub afiliado" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "Termos de Serviço" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Eu aceito os %s deste website." - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Eu sou maior de 13 anos e aceito os %s deste website" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Novas contas neste site se dão apenas por convite." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Por favor, digite o código do seu convite" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Seu endereço de e-mail" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Escolha uma senha" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Por favor, digite sua senha novamente" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "A remoção da conta fica desabilitada por 48 horas após uma troca de senha da conta." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Remover esta conta" - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "AVISO:" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta conta e todos seus canais será completamente excluída da rede." - -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Esta ação é permanente e não pode ser desfeita!" - -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Por favor, digite a sua senha para verificação:" - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remove esta conta, todos os seus canais e todos os clones desses canais da rede." - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por padrão, apenas as instâncias dos canais localizadas neste hub serão removidas da rede" - -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Não foi possível localizar a publicação original." - -#: ../../mod/item.php:440 -msgid "Empty post discarded." -msgstr "A publicação em branco foi descartada." - -#: ../../mod/item.php:480 -msgid "Executable content type not permitted to this channel." -msgstr "Conteúdo de tipo executável não permitido para este canal." - -#: ../../mod/item.php:897 -msgid "System error. Post not saved." -msgstr "Erro no sistema. A publicação não foi salva." - -#: ../../mod/item.php:1115 -msgid "Unable to obtain post information from database." -msgstr "Impossível obter informação do texto no banco de dados" - -#: ../../mod/item.php:1122 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos." - -#: ../../mod/item.php:1129 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Você atingiu o seu limite de %1$.0f páginas web." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Conteúdo incorporado - recarregue a página para ver]" - -#: ../../mod/lockview.php:37 -msgid "Remote privacy information not available." -msgstr "Não existe informação disponível sobre a privacidade remota." - -#: ../../mod/lockview.php:58 -msgid "Visible to:" -msgstr "Visível para:" - -#: ../../mod/layouts.php:176 -msgid "Comanche page description language help" -msgstr "Página de Ajuda da descrição da Linguagem Comanche " - -#: ../../mod/layouts.php:180 -msgid "Layout Description" -msgstr "Descrição de Layout" - -#: ../../mod/layouts.php:185 -msgid "Download PDL file" -msgstr "Baixar arquivo PDL" - -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Primeiro Nome" - -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Último Nome" - -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Apelido" - -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nome Completo" - -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto de Perfil 16px" - -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto de Perfil 32px" - -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto de Perfil 48px" - -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto de Perfil 64px" - -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto de Perfil 80px" - -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto de Perfil 128px" - -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Fuso Horário" - -#: ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "URL da Página" - -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Ano de Nascimento" - -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mês de Nascimento" - -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Dia de Nascimento" - -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Data de Nascimento" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "A conversa foi removida." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nenhuma mensagem." - -#: ../../mod/message.php:72 ../../mod/mail.php:336 -msgid "Delete conversation" -msgstr "Excluir conversa" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Exibir coisa" - -#: ../../mod/mitem.php:51 -msgid "Unable to create element." -msgstr "Não foi possível criar elemento." - -#: ../../mod/mitem.php:74 -msgid "Unable to update menu element." -msgstr "Não foi possível atualizar o elemento de menu." - -#: ../../mod/mitem.php:89 -msgid "Unable to add menu element." -msgstr "Não foi possível adicionar o elemento de menu." - -#: ../../mod/mitem.php:158 ../../mod/mitem.php:228 -msgid "Menu Item Permissions" -msgstr "Permissões do item do menu" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:176 -msgid "Link Name" -msgstr "Nome do Link" - -#: ../../mod/mitem.php:162 ../../mod/mitem.php:233 -msgid "Link or Submenu Target" -msgstr "Alvo do Link ou Submenu" - -#: ../../mod/mitem.php:162 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Insira o URL do link ou selecione um nome de menu para criar um submenu" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:234 -msgid "Use magic-auth if available" -msgstr "Usar magic-auth se disponível" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:235 -msgid "Open link in new window" -msgstr "Abrir link em uma nova janela" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:236 -msgid "Order in list" -msgstr "Ordem na lista" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:236 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Números mais altos descem para o fim da lista" - -#: ../../mod/mitem.php:166 -msgid "Submit and finish" -msgstr "Enviar e terminar" - -#: ../../mod/mitem.php:167 -msgid "Submit and continue" -msgstr "Enviar e continuar" - -#: ../../mod/mitem.php:174 -msgid "Menu:" -msgstr "Menu:" - -#: ../../mod/mitem.php:177 -msgid "Link Target" -msgstr "Alvo do Link" - -#: ../../mod/mitem.php:180 -msgid "Edit menu" -msgstr "Editar menu" - -#: ../../mod/mitem.php:183 -msgid "Edit element" -msgstr "Editar elemento" - -#: ../../mod/mitem.php:184 -msgid "Drop element" -msgstr "Descartar elemento" - -#: ../../mod/mitem.php:185 -msgid "New element" -msgstr "Novo elemento" - -#: ../../mod/mitem.php:186 -msgid "Edit this menu container" -msgstr "Editar esta caixa de menu" - -#: ../../mod/mitem.php:187 -msgid "Add menu element" -msgstr "Adicionar um elemento de menu" - -#: ../../mod/mitem.php:188 -msgid "Delete this menu item" -msgstr "Deleter este item de menu" - -#: ../../mod/mitem.php:189 -msgid "Edit this menu item" -msgstr "Editar este item de menu" - -#: ../../mod/mitem.php:206 -msgid "Menu item not found." -msgstr "O item de menu não foi encontrado." - -#: ../../mod/mitem.php:217 -msgid "Menu item deleted." -msgstr "O item de menu foi deletado." - -#: ../../mod/mitem.php:219 -msgid "Menu item could not be deleted." -msgstr "Não foi possível deletar o item de menu." - -#: ../../mod/mitem.php:226 -msgid "Edit Menu Element" -msgstr "Editar elemento de menu" - -#: ../../mod/mitem.php:232 -msgid "Link text" -msgstr "Texto do link" - -#: ../../mod/mood.php:131 -msgid "Set your current mood and tell your friends" -msgstr "Marque seu humor atual e compartilhe com seus amigos" - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Editar coisa" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Selecione um perfil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Publique uma atividade" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Envia apenas para a audiência do perfil aplicável" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Nome da coisa e.g. coisinha" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL da coisa (opcional)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL para foto da coisa (opcional)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Adicionar a coisa ao seu perfil" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Seu plano de serviço permite apenas %d canais." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Nada a importar." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Não foi possível descarregar os dados do servidor antigo" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "O arquivo importado está vazio." - -#: ../../mod/import.php:105 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou." - -#: ../../mod/import.php:123 -msgid "Channel clone failed. Import failed." -msgstr "Clonagem do canal falhou. A importação falhou." - -#: ../../mod/import.php:133 -msgid "Cloned channel not found. Import failed." -msgstr "Canal a clonar não encontrado. A importação falhou." - -#: ../../mod/import.php:446 -msgid "Import completed." -msgstr "A importação foi completada." - -#: ../../mod/import.php:458 -msgid "You must be logged in to use this feature." -msgstr "Você precisa estar autenticado para usar este recurso." - -#: ../../mod/import.php:463 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../mod/import.php:464 -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. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível." - -#: ../../mod/import.php:465 -msgid "File to Upload" -msgstr "Arquivo a carregar" - -#: ../../mod/import.php:466 -msgid "Or provide the old server/hub details" -msgstr "Ou forneça os detalhes do antigo servidor/hub" - -#: ../../mod/import.php:467 -msgid "Your old identity address (xyz@example.com)" -msgstr "O endereço da sua velha identidade (xyz@exemplo.com)" - -#: ../../mod/import.php:468 -msgid "Your old login email address" -msgstr "O endereço de e-mail da sua antiga conta" - -#: ../../mod/import.php:469 -msgid "Your old login password" -msgstr "A senha dua sua antiga conta" - -#: ../../mod/import.php:470 -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 qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia." - -#: ../../mod/import.php:471 -msgid "Make this hub my primary location" -msgstr "Faça deste hub meu local primário" - -#: ../../mod/import.php:472 -msgid "Import existing posts if possible" -msgstr "Importar publicações existentes se possível" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Foi excedido o número total de convites." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Não é um endereço de e-mail válido." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Por favor, una-se a nós na Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Não foi possível enviar a mensagem." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensagem enviada." -msgstr[1] "%d mensagens enviadas." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Você não possui mais convites disponíveis" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Enviar convites." - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Digite os endereços de e-mail, um por linha:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:225 ../../mod/mail.php:338 -msgid "Your message:" -msgstr "Sua mensagem:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on Hubzilla." -msgstr "Por favor junte-se à minha comunidade na Hubzilla" - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Você precisará fornecer este código de convite:" - -#: ../../mod/invite.php:135 -msgid "1. Register at any Hubzilla location (they are all inter-connected)" -msgstr "1. Registre-se em qualquer site da Hubzilla (eles são todos interconectados)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my Hubzilla network address into the site searchbar." -msgstr "2. Entre meu endereço da rede Hubzilla na barra de busca do site." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "ou visite" - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Clique [Conectar]" - -#: ../../mod/item.php:146 -msgid "Unable to locate original post." -msgstr "Não foi possível localizar a publicação original." - -#: ../../mod/item.php:379 -msgid "Empty post discarded." -msgstr "A publicação em branco foi descartada." - -#: ../../mod/item.php:421 -msgid "Executable content type not permitted to this channel." -msgstr "Conteúdo de tipo executável não permitido para este canal." - -#: ../../mod/item.php:849 -msgid "System error. Post not saved." -msgstr "Erro no sistema. A publicação não foi salva." - -#: ../../mod/item.php:1317 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Você atingiu o seu limite de %1$.0f publicações de novos tópicos." - -#: ../../mod/item.php:1323 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Você atingiu o seu limite de %1$.0f páginas web." - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "[Conteúdo incorporado - recarregue a página para ver]" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "Ajuda com este recurso" - -#: ../../mod/layouts.php:85 -msgid "Layout Name" -msgstr "Nome do layout" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Gostar/Desgostar" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Esta ação é restrita a membros." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your Hubzilla ID or register as a new Redmatrix.member to continue." -msgstr "Por favor entre com sua ID da Hubzilla ou registre-se como um novo membro da Hubzilla para continuar." - -#: ../../mod/like.php:77 ../../mod/like.php:104 ../../mod/like.php:142 -msgid "Invalid request." -msgstr "Solicitação inválida." - -#: ../../mod/like.php:119 -msgid "thing" -msgstr "coisa" - -#: ../../mod/like.php:165 -msgid "Channel unavailable." -msgstr "Canal não disponível." - -#: ../../mod/like.php:204 -msgid "Previous action reversed." -msgstr "Ação anterior revertida." - -#: ../../mod/like.php:417 -msgid "Action completed." -msgstr "Ação completada." - -#: ../../mod/like.php:418 -msgid "Thank you." -msgstr "Obrigado." - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Não existe informação disponível sobre a privacidade remota." - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Visível para:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Nenhuma conexão." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Ver o perfil de %s [%s]" - -#: ../../mod/viewconnections.php:86 -msgid "View Connnections" -msgstr "Ver conexões" - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Não foi encontrada uma conta válida." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "A solicitação de restauração de senha foi encaminhada. Verifique seu e-mail." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Membro do site (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Foi feita uma solicitação de restauração de senha em %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi restaurada." - -#: ../../mod/lostpass.php:85 ../../boot.php:1505 -msgid "Password Reset" -msgstr "Reiniciar a senha" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Sua senha foi restaurada, conforme solicitado." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Sua nova senha é" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Salve ou copie a sua nova senha e, então" - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "clique aqui para entrar" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Sua senha pode ser alterada na página de Configurações após você entrar em sua conta." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Sua senha foi modificada em %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Esqueceu a sua senha?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Digite o seu endereço de e-mail e clique em 'Restaurar' para prosseguir com a restauração da sua senha. Após isso, verifique seu e-mail para mais instruções." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "Endereço de e-mail" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Restaurar" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "O hub não foi encontrado." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Votos totais" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Média das avaliações" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Não foi possível encontrar o destinatário." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Não foi possível comunicar com o canal solicitado." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Não foi possível verificar o canal requisitado." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "O canal solicitado tem restrições a mensagens privadas. Falha no envio." - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Mensagens" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "A mensagem foi excluída." - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "Mensagem retirada." - -#: ../../mod/mail.php:215 -msgid "Send Private Message" -msgstr "Enviar mensagem privada" - -#: ../../mod/mail.php:216 ../../mod/mail.php:333 -msgid "To:" -msgstr "Para:" - -#: ../../mod/mail.php:221 ../../mod/mail.php:335 -msgid "Subject:" -msgstr "Assunto:" - -#: ../../mod/mail.php:232 -msgid "Send" -msgstr "Enviar" - -#: ../../mod/mail.php:259 -msgid "Message not found." -msgstr "Mensagem não encontrada." - -#: ../../mod/mail.php:302 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Excluir a mensagem" - -#: ../../mod/mail.php:303 -msgid "Recall message" -msgstr "Retirar mensagem" - -#: ../../mod/mail.php:305 -msgid "Message has been recalled." -msgstr "A mensagem foi retirada." - -#: ../../mod/mail.php:322 -msgid "Private Conversation" -msgstr "Conversa privada" - -#: ../../mod/mail.php:326 -msgid "Delete conversation" -msgstr "Excluir conversa" - -#: ../../mod/mail.php:328 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente." - -#: ../../mod/mail.php:332 -msgid "Send Reply" -msgstr "Enviar resposta" - -#: ../../mod/manage.php:136 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Você criou %1$.0f de %2$.0f canais permitidos." - -#: ../../mod/manage.php:144 -msgid "Create a new channel" -msgstr "Criar um novo canal" - -#: ../../mod/manage.php:149 -msgid "Current Channel" -msgstr "Canal atual" - -#: ../../mod/manage.php:151 -msgid "Attach to one of your channels by selecting it." -msgstr "Selecione um dos seus canais para utilizá-lo." - -#: ../../mod/manage.php:152 -msgid "Default Channel" -msgstr "Canal padrão" - -#: ../../mod/manage.php:153 -msgid "Make Default" -msgstr "Tornar padrão" - -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Fotos do mural" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Correspondência de perfil" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "se interessa por:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Nenhuma correspondência" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Menu atualizado." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Não foi possível atualizar o menu." - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "O menu foi criado." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Não foi possível criar o menu." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Administrar menus" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Descartar" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Criar um novo menu" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Deletar este menu" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Editar os conteúdos do menu" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Editar este menu" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Novo menu" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Nome do menu" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "Deve ser único, exibido somente para você" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Título do menu" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "Título do menu quando visto por outros" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Habilitar links guardados" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "O menu pode ser utilizado para armazenar links guardados" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Menu deletado." - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Não foi possível deletar o menu." - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Editar menu" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "Adicionar ou remover entradas deste menu" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "A conversa foi removida." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Nenhuma mensagem." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Adicionar um canal" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns temáticos, páginas de personalidades, e muito mais. Você pode criar tantos canais quanto o provedor de serviço permita." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Exemplos: \"Maria Caiouá\", \"Roberto Salinas\", \"Elis e sua banda\", \"Futebol de salão\", \"Fanáticos por aeromodelismo\"" - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Escolha um apelido curto" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Ou importe um canal existente de outro local" - -#: ../../mod/new_channel.php:118 -msgid "Channel Type" -msgstr "Tipo de canal" - -#: ../../mod/new_channel.php:119 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Por favor, escolha um tipo de canal (por exemplo rede social ou fórum de comunidade) e requisito de privacidade, para que possamos configurar as melhores permissões para você" - -#: ../../mod/home.php:46 -msgid "Hubzilla - "The Network"" -msgstr "Hubzilla - "A Rede"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Bem-vindo(a) a %s" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identificador de solicitação inválido" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Descartar" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Sem novas notificações do sistema." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Notificações do sistema" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Não foi possível localizar seu hub." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Publicado com sucesso." - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "assinatura do destino inválida" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Erro do protocolo OpenID. Nenhuma ID retornada." - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Aplicativo instalado" - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Aplicativo malformado." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Embarcar código" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Edite aplicativos" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Criar aplicativo" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nome do aplicativo" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Endereço (URL) do aplicativo" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL da foto de ícone" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "ID da versão" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Preço do aplicativo" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Endereço (URL) para comprar o aplicativo" - -#: ../../mod/ping.php:263 -msgid "sent you a private message" -msgstr "lhe enviou uma mensagem privada" - -#: ../../mod/ping.php:314 -msgid "added your channel" -msgstr "adicionou seu canal" - -#: ../../mod/ping.php:355 -msgid "posted an event" -msgstr "publicou um evento" - -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Este grupo não existe" - -#: ../../mod/network.php:129 -msgid "No such channel" -msgstr "Nenhum canal" - -#: ../../mod/network.php:143 -msgid "Search Results For:" -msgstr "Resultados da busca por:" - -#: ../../mod/network.php:198 -msgid "Collection is empty" -msgstr "A coleção está vazia" - -#: ../../mod/network.php:207 -msgid "Collection: " -msgstr "Coleção:" - -#: ../../mod/network.php:226 -msgid "Connection: " -msgstr "Conexão:" - -#: ../../mod/network.php:233 -msgid "Invalid connection." -msgstr "Conexão inválida." - -#: ../../mod/page.php:122 -msgid "Ipsum Lorem" -msgstr "Ipsum Lorem" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "O link foi guardado" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Meus links guardados" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Links guardados das minhas conexões" - -#: ../../mod/channel.php:97 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permissões insuficientes. Requisição redirecionada para a página de perfil." - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nenhuma sugestão disponível. Se este site é novo, por favor tente novamente em 24 horas." - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Votação" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Ver resultados" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "A remoção da conta fica desabilitada por 48 horas após uma troca de senha da conta." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Remover esta conta" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Isso irá remover completamente esta conta, incluindo todos os canais da rede. Uma vez feito isso eles não poderão ser recuperados." - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remove esta conta, todos os seus canais e todos os clones desses canais da rede." - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por padrão, apenas as instâncias dos canais localizadas neste hub serão removidas da rede" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Não foram encontradas restrições de classe de serviço." - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Padrão do esquema" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-Serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Configurações de tema" - -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Definir esquema" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Definir o tamanho da fonte para publicações e comentários" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Definir a face da fonte" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Definir o conjunto de ícones" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Definir o tamanho da sombra grande, padrão 15px 15px 15px" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Definir o tamanho da sombra pequena, padrão 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Definir a cor da sombra, padrão #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Definir o tamanho do raio de curvatura, padrão 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Definir a altura da linha para publicações e comentários" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Definir a imagem do pano de fundo" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Definir o anexo de pano de fundo" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Definir a cor do pano de fundo" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Definir a imagem de fundo de seção" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Definir a cor de fundo de seção" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Definir a cor dos items - use hex" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Definir a cor dos links - use hex" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Definir a largura máxima para itens. Padrão 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Definir a largura mínima para itens. Padrão 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Definir a largura do envólucro para conteúdo genérico. Padrão 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Definir a cor das fontes - use hex" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Definir o elemento background-size" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Opacidade de itens" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Exibir apenas a pré-visualização de publicações" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Exibir a barra lateral na página do canal" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Cor da barra de navegação" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Flutuação de item" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Deslocamento esquerdo do elemento de seção" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Deslocamento direito do elemento de seção" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "largura de seção" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Deslocamento esquerdo do aparte" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Deslocamento direito do aparte" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "Nenhum" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Imagem de cabeçalho" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "Imagem de cabeçalho apenas em páginas de perfil" - -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Hubzilla default)" -msgstr "Leve (padrão da Hubzilla)" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Barra de navegação estreita" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Cor de fundo da barra de navegação" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Cor no topo de gradiente da barra de navegação" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Cor na base de gradiente da barra de navegação" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Cor no topo de gradiente de botão ativo de navegação" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Cor na base de gradiente de botão ativo de navegação" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Cor de borda da barra de navegação" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Cor de ícone da barra de navegação" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Cor de ícone ativo da barra de navegação" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "cor dos links" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Definir a cor da fonte para o cartaz" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Definir a cor do pano de fundo" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Definir a imagem do pano de fundo" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Definir a cor de fundo dos items" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Definir a cor de fundo dos comentários" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Definir a cor da borda dos comentários" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Definir a indentação de comentários" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Definir a cor básica para ícones de itens" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Definir a cor para ícones de itens quando que o mouse está sobre eles" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Definir o tamanho da fonte para a aplicação como um todo" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Definir a cor da fonte para publicações e comentários" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Definir o raio de curvatura dos cantos" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Definir a profundidade de sombra das fotos" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Definir a largura máxima da área de conversas" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Centralizar regiões de conversação" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Definir opacidade mínima para a barra de navegação - para escondê-la" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Definir o tamanho da foto do autor da conversa" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Definir o tamanho da foto dos autores de comentários" - -#: ../../boot.php:1355 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "A atualização %s falhou. Veja os logs de erro." - -#: ../../boot.php:1358 -#, php-format -msgid "Update Error at %s" -msgstr "Erro de atualização em %s" - -#: ../../boot.php:1525 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "Crie uma conta para acessar serviços e aplicações na Hubzilla" - -#: ../../boot.php:1553 -msgid "Password" -msgstr "Senha" - -#: ../../boot.php:1554 -msgid "Remember me" -msgstr "Lembrar de mim" - -#: ../../boot.php:1557 -msgid "Forgot your password?" -msgstr "Esqueceu a sua senha?" - -#: ../../boot.php:2178 -msgid "toggle mobile" -msgstr "alternar para interface móvel" - -#: ../../boot.php:2313 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Certificado SSL do Website não é válido. Por favor corrija-o." - -#: ../../boot.php:2316 -#, php-format -msgid "[red] Website SSL error for %s" -msgstr "[red] erro SSL da página para %s" - -#: ../../boot.php:2353 -msgid "Cron/Scheduled tasks not running." -msgstr "Agendamento de tarefas não está rodando." - -#: ../../boot.php:2357 -#, php-format -msgid "[red] Cron tasks not running on %s" -msgstr "[red] Agendador de tarefas não está rodando em %s" - diff --git a/view/pt-br/hstrings.php b/view/pt-br/hstrings.php deleted file mode 100644 index b69a2a93f..000000000 --- a/view/pt-br/hstrings.php +++ /dev/null @@ -1,2326 +0,0 @@ - 1);; -}} -; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"; -App::$strings["Profile Photos"] = "Fotos do perfil"; -App::$strings["prev"] = "anterior"; -App::$strings["first"] = "primeiro"; -App::$strings["last"] = "último"; -App::$strings["next"] = "próximo"; -App::$strings["older"] = "mais antigo"; -App::$strings["newer"] = "mais recente"; -App::$strings["No connections"] = "Nenhuma conexão"; -App::$strings["%d Connection"] = array( - 0 => "%d conexão", - 1 => "%d conexões", -); -App::$strings["View Connections"] = "Ver conexões"; -App::$strings["Search"] = "Pesquisar"; -App::$strings["Save"] = "Salvar"; -App::$strings["poke"] = "cutucar"; -App::$strings["poked"] = "cutucado"; -App::$strings["ping"] = "pingar"; -App::$strings["pinged"] = "pingou"; -App::$strings["prod"] = "espetar"; -App::$strings["prodded"] = "espetou"; -App::$strings["slap"] = "estapear"; -App::$strings["slapped"] = "estapeou"; -App::$strings["finger"] = "dar um toque"; -App::$strings["fingered"] = "deu um toque"; -App::$strings["rebuff"] = "rebater"; -App::$strings["rebuffed"] = "rebateu"; -App::$strings["happy"] = "feliz"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "suave"; -App::$strings["tired"] = "cansad@"; -App::$strings["perky"] = "animad@"; -App::$strings["angry"] = "nervos@"; -App::$strings["stupified"] = "embasbacad@"; -App::$strings["puzzled"] = "confus@"; -App::$strings["interested"] = "interessad@"; -App::$strings["bitter"] = "amarg@"; -App::$strings["cheerful"] = "animad@"; -App::$strings["alive"] = "viv@"; -App::$strings["annoyed"] = "aborrecid@"; -App::$strings["anxious"] = "ansios@"; -App::$strings["cranky"] = "irritad@"; -App::$strings["disturbed"] = "perturbad@"; -App::$strings["frustrated"] = "frustrad@"; -App::$strings["depressed"] = "deprimido"; -App::$strings["motivated"] = "motivad@"; -App::$strings["relaxed"] = "relaxad@"; -App::$strings["surprised"] = "surpres@"; -App::$strings["Monday"] = "Segunda"; -App::$strings["Tuesday"] = "Terça"; -App::$strings["Wednesday"] = "Quarta"; -App::$strings["Thursday"] = "Quinta"; -App::$strings["Friday"] = "Sexta"; -App::$strings["Saturday"] = "Sábado"; -App::$strings["Sunday"] = "Domingo"; -App::$strings["January"] = "Janeiro"; -App::$strings["February"] = "Fevereiro"; -App::$strings["March"] = "Março"; -App::$strings["April"] = "Abril"; -App::$strings["May"] = "Maio"; -App::$strings["June"] = "Junho"; -App::$strings["July"] = "Julho"; -App::$strings["August"] = "Agosto"; -App::$strings["September"] = "Setembro"; -App::$strings["October"] = "Outubro"; -App::$strings["November"] = "Novembro"; -App::$strings["December"] = "Dezembro"; -App::$strings["unknown.???"] = "desconhecido.???"; -App::$strings["bytes"] = "bytes"; -App::$strings["remove category"] = "remover categoria"; -App::$strings["remove from file"] = "remover do arquivo"; -App::$strings["Click to open/close"] = "Clique para abrir/fechar"; -App::$strings["Link to Source"] = "Link para a origem"; -App::$strings["default"] = "default"; -App::$strings["Page layout"] = "aparência da página"; -App::$strings["You can create your own with the layouts tool"] = "Você pode criar sua própria com as ferramentas de layouts"; -App::$strings["Page content type"] = "Tipo de conteúdo da página"; -App::$strings["Select an alternate language"] = "Selecione um idioma alternativo"; -App::$strings["photo"] = "foto"; -App::$strings["event"] = "evento"; -App::$strings["status"] = "status"; -App::$strings["comment"] = "comentário"; -App::$strings["activity"] = "atividade"; -App::$strings["Design Tools"] = "Ferramentas de Design"; -App::$strings["Blocks"] = "Blocos"; -App::$strings["Menus"] = "Menus"; -App::$strings["Layouts"] = "Layouts"; -App::$strings["Pages"] = "Páginas"; -App::$strings["Collection"] = "Coleção"; -App::$strings["Image/photo"] = "Imagem/foto"; -App::$strings["Encrypted content"] = "Conteúdo criptografado"; -App::$strings["Install %s element: "] = "Instalar elemento %s:"; -App::$strings["webpage"] = "página web"; -App::$strings["layout"] = "layout"; -App::$strings["block"] = "bloco"; -App::$strings["QR code"] = "código QR"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escreveu a seguinte %2\$s %3\$s"; -App::$strings["post"] = "publicação"; -App::$strings["Different viewers will see this text differently"] = "Visualizadores diferentes verão esse texto diferentemente"; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 escreveu:"; -App::$strings["created a new post"] = "criou uma nova publicação"; -App::$strings["commented on %s's post"] = "comentou a publicação de %s"; -App::$strings["Site Admin"] = "Administração do site"; -App::$strings["Bookmarks"] = "Links guardados"; -App::$strings["Address Book"] = "Livro de Endereços"; -App::$strings["Login"] = "Entrar"; -App::$strings["Channel Manager"] = "Seus canais"; -App::$strings["Matrix"] = "Matriz"; -App::$strings["Settings"] = "Configurações"; -App::$strings["Files"] = "Arquivos"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Channel Home"] = "Página inicial do canal"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Diretório"; -App::$strings["Help"] = "Ajuda"; -App::$strings["Mail"] = "Mensagens"; -App::$strings["Mood"] = "Humor"; -App::$strings["Poke"] = "Cutucar"; -App::$strings["Chat"] = "Bate-papo"; -App::$strings["Search"] = "Pesquisar"; -App::$strings["Probe"] = "Sonda"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatório"; -App::$strings["Invite"] = "Convidar"; -App::$strings["Features"] = "Recursos"; -App::$strings["Language"] = "Idioma"; -App::$strings["Post"] = "Publicações"; -App::$strings["Profile Photo"] = "Foto do perfil"; -App::$strings["Update"] = "Atualizar"; -App::$strings["Install"] = "Instalar"; -App::$strings["Purchase"] = "Compras"; -App::$strings["Edit"] = "Editar"; -App::$strings["Delete"] = "Excluir"; -App::$strings["Unknown"] = "Desconhecidos"; -App::$strings["New Page"] = "Nova página"; -App::$strings["View"] = "Ver"; -App::$strings["Preview"] = "Pré-visualizar"; -App::$strings["Actions"] = "Ações"; -App::$strings["Page Link"] = "Link da página"; -App::$strings["Title"] = "Título"; -App::$strings["Created"] = "Criado"; -App::$strings["Edited"] = "Editado"; -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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; -App::$strings["Invalid data packet"] = "Pacote de dados inválido"; -App::$strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; -App::$strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; -App::$strings["Permission denied."] = "Permissão negada."; -App::$strings["Image exceeds website size limit of %lu bytes"] = "A imagem excede o limite de tamanho do site, que é de %"; -App::$strings["Image file is empty."] = "O arquivo de imagem está vazio."; -App::$strings["Unable to process image"] = "Não foi possível processar a imagem"; -App::$strings["Photo storage failed."] = "Não foi possível armazenar a foto."; -App::$strings["Photo Albums"] = "Álbuns de fotos"; -App::$strings["Upload New Photos"] = "Enviar novas fotos"; -App::$strings["Visible to your default audience"] = "Visível para seu público padrão"; -App::$strings["Show"] = "Exibir"; -App::$strings["Don't show"] = "Não exibir"; -App::$strings["Permissions"] = "Permissões"; -App::$strings["Close"] = "Fechar"; -App::$strings[" and "] = " e "; -App::$strings["public profile"] = "perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visite o %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s atualizou %2\$s, alterando %3\$s."; -App::$strings["Public Timeline"] = "Linha do tempo pública"; -App::$strings["Default"] = "Default"; -App::$strings["Directory Options"] = "Opções do Diretório"; -App::$strings["Alphabetic"] = "Alfabética"; -App::$strings["Reverse Alphabetic"] = "Alfabética reversa"; -App::$strings["Newest to Oldest"] = "Das mais recentes para as mais antigas"; -App::$strings["Oldest to Newest"] = "Do mais Antigo para o mais Novo"; -App::$strings["Sort"] = "Ordenar"; -App::$strings["Safe Mode"] = "Modo tranquilo"; -App::$strings["Public Forums Only"] = "Somente Fóruns públicos"; -App::$strings["This Website Only"] = "Somente este Website"; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Início:"; -App::$strings["Finishes:"] = "Fim:"; -App::$strings["Location:"] = "Localização:"; -App::$strings["This event has been added to your calendar."] = "Esse evento foi adicionado ao seu calendário."; -App::$strings["Delete this item?"] = "Excluir este item?"; -App::$strings["Comment"] = "Comentar"; -App::$strings["[+] show all"] = "[+] mostrar todos"; -App::$strings["[-] show less"] = "[-] mostra menos"; -App::$strings["[+] expand"] = "[+] expandir"; -App::$strings["[-] collapse"] = "[-] colapsar"; -App::$strings["Password too short"] = "A senha é muito curta"; -App::$strings["Passwords do not match"] = "As senhas não correspondem"; -App::$strings["everybody"] = "todos"; -App::$strings["Secret Passphrase"] = "Frase secreta"; -App::$strings["Passphrase hint"] = "Dica da frase secreta"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Atenção: permissões foram modificadas mas ainda não foram enviadas."; -App::$strings["close all"] = "fechar tudo"; -App::$strings["Nothing new here"] = "Nada de novo aqui"; -App::$strings["Rate This Channel (this is public)"] = "Avalie esse canal (isso é público)"; -App::$strings["Rating"] = "Avaliação"; -App::$strings["Describe (optional)"] = "Descreva (opcional)"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Please enter a link URL"] = "Por favor entre um endereço URL"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Mudanças não salvas. Você tem certeza que deseja deixar essa página?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "atrás"; -App::$strings["from now"] = "de agora"; -App::$strings["less than a minute"] = "menos de um minuto"; -App::$strings["about a minute"] = "aproximadamente um minuto"; -App::$strings["%d minutes"] = "%d minutos"; -App::$strings["about an hour"] = "aproximadamente uma hora"; -App::$strings["about %d hours"] = "aproximadamente %d horas"; -App::$strings["a day"] = "um dia"; -App::$strings["%d days"] = "%d dias"; -App::$strings["about a month"] = "aproximadamente um mês"; -App::$strings["%d months"] = "%d meses"; -App::$strings["about a year"] = "aproximadamente um ano"; -App::$strings["%d years"] = "%d anos"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["parent"] = "nível superior"; -App::$strings["Principal"] = "Principal"; -App::$strings["Addressbook"] = "Livro de endereços"; -App::$strings["Calendar"] = "Calendário"; -App::$strings["Schedule Inbox"] = "Caixa de entrada da agenda"; -App::$strings["Schedule Outbox"] = "Caixa de saída da agenda"; -App::$strings["Unknown"] = "Desconhecido"; -App::$strings["%1\$s used"] = "%1\$s usados"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s usados de %2\$s (%3\$s%)"; -App::$strings["Files"] = "Arquivos"; -App::$strings["Total"] = "Total"; -App::$strings["Shared"] = "Compartilhado"; -App::$strings["Create"] = "Criar"; -App::$strings["Upload"] = "Enviar"; -App::$strings["Name"] = "Nome"; -App::$strings["Type"] = "Tipo"; -App::$strings["Size"] = "Tamanho"; -App::$strings["Last Modified"] = "Última modificação"; -App::$strings["Delete"] = "Excluir"; -App::$strings["Create new folder"] = "Criar uma nova pasta"; -App::$strings["Upload file"] = "Enviar arquivo"; -App::$strings["%1\$s's bookmarks"] = "Links guardados de %1\$s"; -App::$strings["view full size"] = "ver na tela inteira"; -App::$strings["General Features"] = "Recursos gerais"; -App::$strings["Content Expiration"] = "Expiração de conteúdo"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Remover publicações/comentários e/ou mensagens privadas num momento futuro."; -App::$strings["Multiple Profiles"] = "Múltiplos perfis"; -App::$strings["Ability to create multiple profiles"] = "Possibilidade de criar múltiplos perfis"; -App::$strings["Advanced Profiles"] = "Perfis avançados"; -App::$strings["Additional profile sections and selections"] = "Seções e seleções adicionais no perfil"; -App::$strings["Profile Import/Export"] = "Importar/exportar perfis"; -App::$strings["Save and load profile details across sites/channels"] = "Salvar e carregar detalhes de perfis entre sites/canais"; -App::$strings["Web Pages"] = "Páginas web"; -App::$strings["Provide managed web pages on your channel"] = "Fornece páginas web gerenciáveis no seu canal"; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders"] = "Habilita uma ferramenta para guardar notas e lembretes"; -App::$strings["Navigation Channel Select"] = "Seletor de canais na navegação"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Trocar canais diretamente a partir do menu expansível na navegação"; -App::$strings["Photo Location"] = "Localização da Foto"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Se os dados de localização estão disponíveis na foto enviada, link isso para um mapa."; -App::$strings["Expert Mode"] = "Modo Expert"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "O Modo Expert fornece opções de configurações avançadas"; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Permite definir restrições e termos para aqueles que se conectarem ao seu canal"; -App::$strings["Post Composition Features"] = "Recursos de composição de publicações"; -App::$strings["Use Markdown"] = "Usar Markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Permitir o uso de \"Markdown\" para formatar publicações"; -App::$strings["Large Photos"] = "Fotos Grandes"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inclua miniatura grande (640px) no texto. Se não habilitado, use miniatura pequena (320px)"; -App::$strings["Channel Sources"] = "Fontes do canal"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automaticamente conteúdo de outros canais ou fontes"; -App::$strings["Even More Encryption"] = "Mais encriptação ainda"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir encriptação opcional de conteúdo, ponta-a-ponta com uma chave secreta compartilhada"; -App::$strings["Enable voting tools"] = "Habilitar ferramenta de votos"; -App::$strings["Provide a class of post which others can vote on"] = "Forneça uma classe de publicação que outros possam votar"; -App::$strings["Network and Stream Filtering"] = "Filtragem de rede e fluxo"; -App::$strings["Search by Date"] = "Pesquisar por data"; -App::$strings["Ability to select posts by date ranges"] = "capacidade de selecionar publicações por intervalos de datas"; -App::$strings["Collections Filter"] = "Filtros de coleções"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Habilita widget para exibir publicações da rede apenas para determinadas coleções"; -App::$strings["Saved Searches"] = "Pesquisas salvas"; -App::$strings["Save search terms for re-use"] = "Termos de pesquisa salvos para reutilização"; -App::$strings["Network Personal Tab"] = "Aba de interações na rede"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilita uma aba para exibir apenas publicações da rede com as quais você interagiu"; -App::$strings["Network New Tab"] = "Aba de novidades da rede"; -App::$strings["Enable tab to display all new Network activity"] = "Habilita uma aba para exibir todas as novas atividades da rede"; -App::$strings["Affinity Tool"] = "Ferramenta de afinidade"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtra o fluxo de atividades de acordo com o nível do relacionamento"; -App::$strings["Suggest Channels"] = "Sugerir canais"; -App::$strings["Show channel suggestions"] = "Exibir sugestões de canais"; -App::$strings["Post/Comment Tools"] = "Ferramentas de publicação/comentário"; -App::$strings["Tagging"] = "Etiquetagem"; -App::$strings["Ability to tag existing posts"] = "Possibilidade de colocar etiquetas em publicações existentes"; -App::$strings["Post Categories"] = "Categorizar publicações"; -App::$strings["Add categories to your posts"] = "Adiciona categorias às suas publicações"; -App::$strings["Saved Folders"] = "Pastas salvas"; -App::$strings["Ability to file posts under folders"] = "Possibilidade de arquivar publicações em pastas"; -App::$strings["Dislike Posts"] = "Desgostar de publicações"; -App::$strings["Ability to dislike posts/comments"] = "Possibilidade de desgostar de publicações/comentários"; -App::$strings["Star Posts"] = "Destacar publicações"; -App::$strings["Ability to mark special posts with a star indicator"] = "Possibilidade de marcar publicações em destaque com uma estrela indicadora"; -App::$strings["Tag Cloud"] = "Nuvem de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Fornece uma nuvem de etiquetas pessoais à página do seu canal"; -App::$strings["Categories"] = "Categorias"; -App::$strings["Apps"] = "Aplicações"; -App::$strings["System"] = "Sistema"; -App::$strings["Personal"] = "Pessoal"; -App::$strings["Create Personal App"] = "Criar aplicações pessoais"; -App::$strings["Edit Personal App"] = "Editar aplicações pessoais"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -App::$strings["Suggestions"] = "Sugestões"; -App::$strings["See more..."] = "Veja mais..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Você tem %1$.0f de %2$.0f conexões permitidas."; -App::$strings["Add New Connection"] = "Adicionar nova conexão"; -App::$strings["Enter the channel address"] = "Digite o endereço do canal"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Remover termo"; -App::$strings["Everything"] = "Tudo"; -App::$strings["Archives"] = "Arquivos"; -App::$strings["Me"] = "Eu"; -App::$strings["Family"] = "Família"; -App::$strings["Friends"] = "Amigos"; -App::$strings["Acquaintances"] = "Conhecidos"; -App::$strings["All"] = "Todos"; -App::$strings["Refresh"] = "Atualizar"; -App::$strings["Account settings"] = "Configurações da conta"; -App::$strings["Channel settings"] = "Configurações do canal"; -App::$strings["Additional features"] = "Recursos adicionais"; -App::$strings["Feature/Addon settings"] = "Configurações característica/plugins"; -App::$strings["Display settings"] = "Configurações de exibição"; -App::$strings["Connected apps"] = "Aplicações conectadas"; -App::$strings["Export channel"] = "Exportar o canal"; -App::$strings["Connection Default Permissions"] = "Permissões padrão para conexões"; -App::$strings["Premium Channel Settings"] = "Configurações de canal premium"; -App::$strings["Settings"] = "Configurações"; -App::$strings["Messages"] = "Mensagens"; -App::$strings["Check Mail"] = "Checar mensagens"; -App::$strings["New Message"] = "Nova mensagem"; -App::$strings["Chat Rooms"] = "Salas de bate-papo"; -App::$strings["Bookmarked Chatrooms"] = "Salas de bate-papo guardadas"; -App::$strings["Suggested Chatrooms"] = "Salas de bate-papo sugeridas"; -App::$strings["photo/image"] = "foto/imagem"; -App::$strings["Rate Me"] = "Avalie-me"; -App::$strings["View Ratings"] = "Ver avaliações"; -App::$strings["Public Hubs"] = "Hubs Públicos"; -App::$strings["\$Projectname Notification"] = "\$Projectname Notificação"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Obrigado(a),"; -App::$strings["%s Administrator"] = "Administrador de %s"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Notify] Nova mensagem recebida em %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s te enviou uma nova mensagem privada em %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s enviou %2\$s para você."; -App::$strings["a private message"] = "uma mensagem privada"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visite %s para ver e/ou responder as suas mensagens privadas."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]um/a %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]%5\$s de %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s comentou em [zrl=%3\$s]seu %4\$s[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Notify] Comentário na conversa #%1\$d por %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s comentou em um item/conversa que você acompanha."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visite %s para ver e/ou responder a conversa."; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Notify] %s publicou no mural do seu perfil"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicou no mural do seu perfil em %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicou no [zrl=%3\$s]seu mural[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Notify] %s mencionou você"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s mencionou você em %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]mencionou você[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Notify] %1\$s cutucou você"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s cutucou você em %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]cutucou você[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Notify] %s marcou a sua publicação"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s marcou seu post em %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s marcou [zrl=%3\$s]seu post[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Notify] Você recebeu uma apresentação"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma nova solicitação de conexão de '%2\$s' em %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma nova solicitação de conexão[/zrl] de %3\$s."; -App::$strings["You may visit their profile at %s"] = "Você pode visitar seu perfil em %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Notify] Foi recebida uma sugestão de amizade"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, você recebeu uma sugestão de amizade de '%2\$s' em %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, você recebeu [zrl=%2\$s]uma sugestão de amizade[/zrl] com %3\$s de %4\$s."; -App::$strings["Name:"] = "Nome:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprovar ou rejeitar a sugestão."; -App::$strings["[Red:Notify]"] = "[Red:Notify]"; -App::$strings["Frequently"] = "Frequentemente"; -App::$strings["Hourly"] = "De hora em hora"; -App::$strings["Twice daily"] = "Duas vezes ao dia"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensalmente"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "E-mail"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot!"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/MI"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["No recipient provided."] = "Falta o destinatário."; -App::$strings["[no subject]"] = "[sem assunto]"; -App::$strings["Unable to determine sender."] = "Não foi possível determinar o remetente."; -App::$strings["Stored post could not be verified."] = "Não foi possível verificar a publicação armazenada."; -App::$strings["Channel is blocked on this site."] = "O canal está bloqueado neste site."; -App::$strings["Channel location missing."] = "A localização do canal foi perdida"; -App::$strings["Response from remote channel was incomplete."] = "A resposta do canal remoto está incompleta."; -App::$strings["Channel was deleted and no longer exists."] = "O canal foi deletado e não existe mais."; -App::$strings["Protocol disabled."] = "Protocolo desabilitado."; -App::$strings["Channel discovery failed."] = "A descoberta de canais falhou."; -App::$strings["local account not found."] = "a conta local não foi encontrada."; -App::$strings["Cannot connect to yourself."] = "Não é possível conectar-se consigo mesmo."; -App::$strings["Private Message"] = "Mensagem privada"; -App::$strings["Select"] = "Selecionar"; -App::$strings["Save to Folder"] = "Salvar para pasta"; -App::$strings["I will attend"] = "Vou comparecer"; -App::$strings["I will not attend"] = "Não vou comparecer"; -App::$strings["I might attend"] = "Talvez compareça"; -App::$strings["I agree"] = "Eu concordo"; -App::$strings["I disagree"] = "Eu discordo"; -App::$strings["I abstain"] = "Me abstenho"; -App::$strings["View all"] = "Ver tudo"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "gostou", - 1 => "gostaram", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "desgostou", - 1 => "desgostaram", -); -App::$strings["Add Star"] = "Adicione estrela"; -App::$strings["Remove Star"] = "Remove estrela"; -App::$strings["Toggle Star Status"] = "Alterna status da estrela"; -App::$strings["starred"] = "destacado"; -App::$strings["Message signature validated"] = "A assinatura desta mensagem foi validada"; -App::$strings["Message signature incorrect"] = "A assinatura desta mensagem é incorreta"; -App::$strings["Add Tag"] = "Adiciona etiqueta"; -App::$strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; -App::$strings["like"] = "gostei"; -App::$strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; -App::$strings["dislike"] = "não gostei"; -App::$strings["Share This"] = "Compartilhe isso"; -App::$strings["share"] = "compartilhar"; -App::$strings["%d comment"] = array( - 0 => "%d comentário", - 1 => "%d comentários", -); -App::$strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; -App::$strings["to"] = "para"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Mural-para-mural"; -App::$strings["via Wall-To-Wall:"] = "via Mural-para-mural"; -App::$strings["from %s"] = "de %s"; -App::$strings["last edited: %s"] = "última edição: %s"; -App::$strings["Expires: %s"] = "Expira: %s"; -App::$strings["View in context"] = "Ver no contexto"; -App::$strings["Please wait"] = "Por favor, espere"; -App::$strings["remove"] = "remover"; -App::$strings["Loading..."] = "Carregando..."; -App::$strings["Delete Selected Items"] = "Excluir os itens selecionados"; -App::$strings["View Source"] = "Ver a fonte"; -App::$strings["Follow Thread"] = "Acompanhar a discussão"; -App::$strings["View Status"] = "Ver status"; -App::$strings["View Profile"] = "Ver perfil"; -App::$strings["View Photos"] = "Ver fotos"; -App::$strings["Matrix Activity"] = "Atividade na matriz"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Edit Contact"] = "Editar contato"; -App::$strings["Send PM"] = "Enviar MP"; -App::$strings["%s likes this."] = "%s gostou disso."; -App::$strings["%s doesn't like this."] = "%s não gostou disso."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "%2\$d pessoas gostaram disso.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "%2\$d pessoas não gostaram disso.", -); -App::$strings["and"] = "e"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", e mais %d outras pessoas", -); -App::$strings["%s like this."] = "%s gostou disso."; -App::$strings["%s don't like this."] = "%s não gostou disso."; -App::$strings["Visible to everybody"] = "Visível para todos"; -App::$strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; -App::$strings["Please enter a video link/URL:"] = "Por favor, digite o link/URL do vídeo:"; -App::$strings["Please enter an audio link/URL:"] = "Por favor, digite o link/URL do áudio:"; -App::$strings["Tag term:"] = "Etiqueta:"; -App::$strings["Save to Folder:"] = "Salvar para a pasta:"; -App::$strings["Where are you right now?"] = "Onde você está agora?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Compartilhar"; -App::$strings["Page link title"] = "Título do link da página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Upload photo"] = "Enviar foto"; -App::$strings["upload photo"] = "enviar foto"; -App::$strings["Attach file"] = "Anexar arquivo"; -App::$strings["attach file"] = "anexar arquivo"; -App::$strings["Insert web link"] = "Inserir link web"; -App::$strings["web link"] = "link web"; -App::$strings["Insert video link"] = "Inserir link de vídeo"; -App::$strings["video link"] = "link de vídeo"; -App::$strings["Insert audio link"] = "Inserir link de áudio"; -App::$strings["audio link"] = "link de áudio"; -App::$strings["Set your location"] = "Definir sua localização"; -App::$strings["set location"] = "definir localização"; -App::$strings["Clear browser location"] = "Limpar a localização do navegador"; -App::$strings["clear location"] = "limpar a localização"; -App::$strings["Set title"] = "Definir o título"; -App::$strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)"; -App::$strings["Permission settings"] = "Configurações de permissão"; -App::$strings["permissions"] = "permissões"; -App::$strings["Public post"] = "Publicação pública"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; -App::$strings["Set expiration date"] = "Definir data de expiração"; -App::$strings["Encrypt text"] = "Encriptar texto"; -App::$strings["New window"] = "Nova janela"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abre a localização selecionada em outra aba ou janela"; -App::$strings["User '%s' deleted"] = "O usuário/a '%s' foi deletado/a"; -App::$strings["Attachments:"] = "Anexos:"; -App::$strings["\$Projectname event notification:"] = "Notificação de evento em \$Projectname:"; -App::$strings["Logout"] = "Sair"; -App::$strings["End this session"] = "Encerrar essa sessão"; -App::$strings["Home"] = "Ver canal"; -App::$strings["Your posts and conversations"] = "Suas publicações e conversas"; -App::$strings["View Profile"] = "Ver perfil"; -App::$strings["Your profile page"] = "A página do seu perfil"; -App::$strings["Edit Profiles"] = "Editar perfis"; -App::$strings["Manage/Edit profiles"] = "Administrar/Editar perfis"; -App::$strings["Edit Profile"] = "Editar perfil"; -App::$strings["Edit your profile"] = "Editar seu perfil"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Your photos"] = "Suas fotos"; -App::$strings["Your files"] = "Seus arquivos"; -App::$strings["Chat"] = "Bate-papo"; -App::$strings["Your chatrooms"] = "Suas salas de bate-papo"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Seus links guardados"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Your webpages"] = "Suas páginas web"; -App::$strings["Login"] = "Entrar"; -App::$strings["Sign in"] = "Entrar"; -App::$strings["%s - click to logout"] = "%s - clique para sair"; -App::$strings["Remote authentication"] = "Autenticação remota"; -App::$strings["Click to authenticate to your home hub"] = "Clique para se autenticar com seu hub de origem"; -App::$strings["Home Page"] = "Página inicial"; -App::$strings["Register"] = "Registrar"; -App::$strings["Create an account"] = "Criar uma conta"; -App::$strings["Help"] = "Ajuda"; -App::$strings["Help and documentation"] = "Ajuda e documentação"; -App::$strings["Applications, utilities, links, games"] = "Aplicações, utilitários, links, jogos"; -App::$strings["Search site content"] = "Pesquisar o conteúdo do site"; -App::$strings["Directory"] = "Diretório"; -App::$strings["Channel Directory"] = "Diretório de canais"; -App::$strings["Matrix"] = "Matrix"; -App::$strings["Your matrix"] = "Sua matriz"; -App::$strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas"; -App::$strings["Channel Home"] = "Página inicial do canal"; -App::$strings["Channel home"] = "Página inicial do canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas"; -App::$strings["Connections"] = "Conexões"; -App::$strings["Notices"] = "Notificações"; -App::$strings["Notifications"] = "Notificações"; -App::$strings["See all notifications"] = "Ver todas as notificações"; -App::$strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; -App::$strings["Mail"] = "Mensagens"; -App::$strings["Private mail"] = "Mensagens privadas"; -App::$strings["See all private messages"] = "Ver todas as mensagens privadas"; -App::$strings["Mark all private messages seen"] = "Marcar todas as mensagens privadas como vistas"; -App::$strings["Inbox"] = "Recebidas"; -App::$strings["Outbox"] = "Enviadas"; -App::$strings["Events"] = "Eventos"; -App::$strings["Event Calendar"] = "Agenda de eventos"; -App::$strings["See all events"] = "Ver todos os eventos"; -App::$strings["Mark all events seen"] = "Marcar todos os eventos como vistos"; -App::$strings["Channel Manager"] = "Gerenciador de canais"; -App::$strings["Manage Your Channels"] = "Gerencie os seus canais"; -App::$strings["Account/Channel Settings"] = "Configurações da conta/canal"; -App::$strings["Admin"] = "Admin"; -App::$strings["Site Setup and Configuration"] = "Configuração do site"; -App::$strings["Loading..."] = "Carregando..."; -App::$strings["@name, #tag, content"] = "@nome, #etiqueta, conteúdo"; -App::$strings["Please wait..."] = "Por favor, aguarde..."; -App::$strings["Tags"] = "Etiquetas"; -App::$strings["Keywords"] = "Palavras-chave"; -App::$strings["have"] = "tenho"; -App::$strings["has"] = "tem"; -App::$strings["want"] = "quero"; -App::$strings["wants"] = "quer"; -App::$strings["like"] = "gostei"; -App::$strings["likes"] = "gosta"; -App::$strings["dislike"] = "não gostei"; -App::$strings["dislikes"] = "desgosta"; -App::$strings[" and "] = " e "; -App::$strings["public profile"] = "perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s mudou %2\$s para “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visite o %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s atualizou %2\$s, alterando %3\$s."; -App::$strings["Permission denied"] = "Permissão negada"; -App::$strings["(Unknown)"] = "(Desconhecido)"; -App::$strings["Visible to anybody on the internet."] = "Visível para todos na internet."; -App::$strings["Visible to you only."] = "Visível somente para você."; -App::$strings["Visible to anybody in this network."] = "Visível para todos nesta rede."; -App::$strings["Visible to anybody authenticated."] = "Visível para todos autenticados."; -App::$strings["Visible to anybody on %s."] = "Visível para todos em %s."; -App::$strings["Visible to all connections."] = "Visível para todas as conexões."; -App::$strings["Visible to approved connections."] = "Visível para conexões aprovadas."; -App::$strings["Visible to specific connections."] = "Visível para conexões específicas."; -App::$strings["Item not found."] = "O item não foi encontrado."; -App::$strings["Permission denied."] = "Permissão negada."; -App::$strings["Collection not found."] = "A coleção não foi encontrada."; -App::$strings["Collection is empty."] = "A coleção está vazia."; -App::$strings["Collection: %s"] = "Coleção: %s"; -App::$strings["Connection: %s"] = "Conexão: %s"; -App::$strings["Connection not found."] = "A conexão não foi encontrada."; -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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."; -App::$strings["Can view my normal stream and posts"] = "Pode ver meus fluxo e publicações normais"; -App::$strings["Can view my default channel profile"] = "Pode ver o perfil padrão do meu canal"; -App::$strings["Can view my photo albums"] = "Pode ver meus álbuns de fotos"; -App::$strings["Can view my connections"] = "Pode ver minhas conexões"; -App::$strings["Can view my file storage"] = "Pode ver meu armazenamento de arquivos"; -App::$strings["Can view my webpages"] = "Pode ver minhas páginas web"; -App::$strings["Can send me their channel stream and posts"] = "Pode me enviar seu fluxo e publicações"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pode publicar na página do meu canal (\"mural\")"; -App::$strings["Can comment on or like my posts"] = "Pode comentar em ou gostar de minhas publicações"; -App::$strings["Can send me private mail messages"] = "Pode me enviar mensagens privadas"; -App::$strings["Can post photos to my photo albums"] = "Pode publicar fotos nos meus álbuns de fotos"; -App::$strings["Can like/dislike stuff"] = "Pode gostar/desgostar de coisas"; -App::$strings["Profiles and things other than posts/comments"] = "Perfis e coisas que não publicações/comentários"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Pode encaminhar para todos os contatos do meu canal via @menções na publicação"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avançado - útil para criar canais de fóruns de grupos"; -App::$strings["Can chat with me (when available)"] = "Pode conversar comigo (quando disponívei)"; -App::$strings["Can write to my file storage"] = "Pode escrever em meu armazenamento de arquivos"; -App::$strings["Can edit my webpages"] = "Pode editar minhas páginas web"; -App::$strings["Can source my public posts in derived channels"] = "Pode usar minhas publicações públicas como fonte para canais derivados"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Avançado - muito útil em comunidades abertas"; -App::$strings["Can administer my channel resources"] = "Pode administrar os recursos do meu canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo"; -App::$strings["Social Networking"] = "Rede social"; -App::$strings["Mostly Public"] = "Padrão público"; -App::$strings["Restricted"] = "Restrito"; -App::$strings["Private"] = "Privado"; -App::$strings["Community Forum"] = "Fórum de comunidade"; -App::$strings["Feed Republish"] = "Republicação de feed"; -App::$strings["Special Purpose"] = "Finalidade especial"; -App::$strings["Celebrity/Soapbox"] = "Personalidade/Palanque"; -App::$strings["Group Repository"] = "Repositório para grupo"; -App::$strings["Other"] = "Outro"; -App::$strings["Custom/Expert Mode"] = "Personalizado/Modo expert"; -App::$strings["channel"] = "canal"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s agora está conectado com %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["__ctx:title__ Likes"] = "Curtidas"; -App::$strings["__ctx:title__ Dislikes"] = "Descurtidas"; -App::$strings["__ctx:title__ Agree"] = "Concordo"; -App::$strings["__ctx:title__ Disagree"] = "Não concordo"; -App::$strings["__ctx:title__ Abstain"] = "Abstenções"; -App::$strings["__ctx:title__ Attending"] = "Comparecerão"; -App::$strings["__ctx:title__ Not attending"] = "Não comparecerão"; -App::$strings["__ctx:title__ Might attend"] = "Talvez compareçam"; -App::$strings["View %s's profile @ %s"] = "Ver o perfil de %s's @ %s"; -App::$strings["Categories:"] = "Categorias:"; -App::$strings["Filed under:"] = "Armazenado sob:"; -App::$strings["View in context"] = "Ver no contexto"; -App::$strings["remove"] = "remover"; -App::$strings["Delete Selected Items"] = "Excluir os itens selecionados"; -App::$strings["View Source"] = "Ver a fonte"; -App::$strings["Follow Thread"] = "Acompanhar a discussão"; -App::$strings["View Status"] = "Ver status"; -App::$strings["View Photos"] = "Ver fotos"; -App::$strings["Matrix Activity"] = "Atividade na matriz"; -App::$strings["Edit Contact"] = "Editar contato"; -App::$strings["Send PM"] = "Enviar MP"; -App::$strings["Poke"] = "Cutucar"; -App::$strings["%s likes this."] = "%s gostou disso."; -App::$strings["%s doesn't like this."] = "%s não gostou disso."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "%2\$d pessoas gostaram disso.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "%2\$d pessoas não gostaram disso.", -); -App::$strings["and"] = "e"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => ", e mais %d outras pessoas", -); -App::$strings["%s like this."] = "%s gostou disso."; -App::$strings["%s don't like this."] = "%s não gostou disso."; -App::$strings["Visible to everybody"] = "Visível para todos"; -App::$strings["Please enter a link URL:"] = "Por favor, digite uma URL:"; -App::$strings["Please enter a video link/URL:"] = "Por favor, digite o link/URL do vídeo:"; -App::$strings["Please enter an audio link/URL:"] = "Por favor, digite o link/URL do áudio:"; -App::$strings["Tag term:"] = "Etiqueta:"; -App::$strings["Save to Folder:"] = "Salvar para a pasta:"; -App::$strings["Where are you right now?"] = "Onde você está agora?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Expira YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Compartilhar"; -App::$strings["Page link name"] = "Nome do Link da Página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Upload photo"] = "Enviar foto"; -App::$strings["upload photo"] = "enviar foto"; -App::$strings["Attach file"] = "Anexar arquivo"; -App::$strings["attach file"] = "anexar arquivo"; -App::$strings["Insert web link"] = "Inserir link web"; -App::$strings["web link"] = "link web"; -App::$strings["Insert video link"] = "Inserir link de vídeo"; -App::$strings["video link"] = "link de vídeo"; -App::$strings["Insert audio link"] = "Inserir link de áudio"; -App::$strings["audio link"] = "link de áudio"; -App::$strings["Set your location"] = "Definir sua localização"; -App::$strings["set location"] = "definir localização"; -App::$strings["Toggle voting"] = "Alternar votação"; -App::$strings["Clear browser location"] = "Limpar a localização do navegador"; -App::$strings["clear location"] = "limpar a localização"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Categories (optional, comma-separated list)"] = "categorias (opcional, lista separada por vírgulas)"; -App::$strings["Permission settings"] = "Configurações de permissão"; -App::$strings["permissions"] = "permissões"; -App::$strings["Public post"] = "Publicação pública"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com"; -App::$strings["Set expiration date"] = "Definir data de expiração"; -App::$strings["OK"] = "Ok"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Discover"] = "Descubra"; -App::$strings["Imported public streams"] = "Fluxos públicos importados"; -App::$strings["Commented Order"] = "Recentes e comentados"; -App::$strings["Sort by Comment Date"] = "Ordenar pela data do último comentário"; -App::$strings["Posted Order"] = "Recentemente publicados"; -App::$strings["Sort by Post Date"] = "Ordenar pela data da publicação"; -App::$strings["Posts that mention or involve you"] = "Publicações que mencionam ou envolvem você"; -App::$strings["New"] = "Novo"; -App::$strings["Activity Stream - by date"] = "Fluxo de atividades - por data"; -App::$strings["Starred"] = "Estrelados"; -App::$strings["Favourite Posts"] = "Publicações favoritas"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Publicações marcadas como SPAM"; -App::$strings["Channel"] = "Canal"; -App::$strings["Status Messages and Posts"] = "Mensagens de status e publicações"; -App::$strings["About"] = "Sobre"; -App::$strings["Profile Details"] = "Detalhes do perfil"; -App::$strings["Photo Albums"] = "Álbuns de fotos"; -App::$strings["Files and Storage"] = "Arquivos e armazenamento"; -App::$strings["Chatrooms"] = "Salas de bate-papo"; -App::$strings["Saved Bookmarks"] = "Links guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Comparecerá", - 1 => "Comparecerão", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Não comparecerá", - 1 => "Não comparecerão", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisos", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Concorda", - 1 => "Concordam", -); -App::$strings["Default"] = "Default"; -App::$strings["Frequently"] = "Frequentemente"; -App::$strings["Hourly"] = "De hora em hora"; -App::$strings["Twice daily"] = "Duas vezes ao dia"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensalmente"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "E-mail"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot!"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/MI"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["%d invitation available"] = array( - 0 => "%d convite disponível", - 1 => "%d convites disponíveis", -); -App::$strings["Advanced"] = "Avançado"; -App::$strings["Find Channels"] = "Pesquisar canais"; -App::$strings["Enter name or interest"] = "Digite um nome ou interesse"; -App::$strings["Connect/Follow"] = "Conectar/Acompanhar"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Por exemplo: José da Silva, Pescaria"; -App::$strings["Find"] = "Pesquisar"; -App::$strings["Channel Suggestions"] = "Sugestões de canais"; -App::$strings["Random Profile"] = "Perfil aleatório"; -App::$strings["Invite Friends"] = "Convidar amigos"; -App::$strings["Exammple: name=fred and country=iceland"] = "Exemplo: name=raoni and country=peru"; -App::$strings["Advanced Find"] = "Busca avançada"; -App::$strings["Saved Folders"] = "Pastas salvas"; -App::$strings["Everything"] = "Tudo"; -App::$strings["Categories"] = "Categorias"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexão em comum", - 1 => "%d conexões em comum", -); -App::$strings["Image exceeds website size limit of %lu bytes"] = "A imagem excede o limite de tamanho do site, que é de %"; -App::$strings["Image file is empty."] = "O arquivo de imagem está vazio."; -App::$strings["Unable to process image"] = "Não foi possível processar a imagem"; -App::$strings["Photo storage failed."] = "Não foi possível armazenar a foto."; -App::$strings["Upload New Photos"] = "Enviar novas fotos"; -App::$strings["Invalid data packet"] = "Pacote de dados inválido"; -App::$strings["Unable to verify channel signature"] = "Não foi possível verificar a assinatura do canal"; -App::$strings["Unable to verify site signature for %s"] = "Não foi possível verificar a assinatura do site para %s"; -App::$strings["Embedded content"] = "Conteúdo incorporado"; -App::$strings["Embedding disabled"] = "A incorporação está desabilitada"; -App::$strings["Logged out."] = "Você saiu."; -App::$strings["Failed authentication"] = "Não foi possível autenticar"; -App::$strings["Login failed."] = "Não foi possível entrar."; -App::$strings["%d invitation available"] = array( - 0 => "%d convite disponível", - 1 => "%d convites disponíveis", -); -App::$strings["Advanced"] = "Avançado"; -App::$strings["Find Channels"] = "Pesquisar canais"; -App::$strings["Enter name or interest"] = "Digite um nome ou interesse"; -App::$strings["Connect/Follow"] = "Conectar/Acompanhar"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Por exemplo: José da Silva, Pescaria"; -App::$strings["Find"] = "Pesquisar"; -App::$strings["Channel Suggestions"] = "Sugestões de canais"; -App::$strings["Random Profile"] = "Perfil aleatório"; -App::$strings["Invite Friends"] = "Convidar amigos"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Exemplo avançado: name=raoni and country=peru"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexão em comum", - 1 => "%d conexões em comum", -); -App::$strings["show more"] = "exibir mais"; -App::$strings["Visible to your default audience"] = "Visível para seu público padrão"; -App::$strings["Show"] = "Exibir"; -App::$strings["Don't show"] = "Não exibir"; -App::$strings["Permissions"] = "Permissões"; -App::$strings["Item was not found."] = "O item não foi encontrado."; -App::$strings["No source file."] = "Nenhum arquivo de origem."; -App::$strings["Cannot locate file to replace"] = "Não foi possível locar o arquivo a ser substituído"; -App::$strings["Cannot locate file to revise/update"] = "Não foi possível localizar o arquivo a ser revisado/atualizado"; -App::$strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Você atingiu o seu limite de %1$.0f Mbytes de armazenamento de anexos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Não foi possível enviar o arquivo. Provável limite do sistema ou a ação foi encerrada."; -App::$strings["Stored file could not be verified. Upload failed."] = "Não foi possível verificar o arquivo armazenado. Falha no envio."; -App::$strings["Path not available."] = "O caminho não está disponível."; -App::$strings["Empty pathname"] = "O nome do caminho está em branco"; -App::$strings["duplicate filename or path"] = "nome de arquivo ou caminho duplicado"; -App::$strings["Path not found."] = "Caminho não encontrado."; -App::$strings["mkdir failed."] = "mkdir falhou."; -App::$strings["database storage failed."] = "armazenamento de banco de dados falhou."; -App::$strings["Unable to obtain identity information from database"] = "Não foi possível obter a informação da identidade a partir do banco de dados"; -App::$strings["Empty name"] = "O nome está em branco"; -App::$strings["Name too long"] = "O nome é muito grande"; -App::$strings["No account identifier"] = "Sem identificador de conta"; -App::$strings["Nickname is required."] = "É necessário informar o apelido."; -App::$strings["Reserved nickname. Please choose another."] = "Apelido reservado. Por favor escolha outro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "O apelido possui caracteres não suportados ou já está sendo usado nesse site."; -App::$strings["Unable to retrieve created identity"] = "Não foi possível recuperar a identidade criada"; -App::$strings["Default Profile"] = "Perfil padrão"; -App::$strings["Friends"] = "Amigos"; -App::$strings["Requested channel is not available."] = "Canal solicitado não está disponível."; -App::$strings["Requested profile is not available."] = "O perfil solicitado não está disponível."; -App::$strings["Change profile photo"] = "Mudar a foto do perfil"; -App::$strings["Profiles"] = "Perfis"; -App::$strings["Manage/edit profiles"] = "Administrar/editar perfis"; -App::$strings["Create New Profile"] = "Criar um novo perfil"; -App::$strings["Edit Profile"] = "Editar perfil"; -App::$strings["Profile Image"] = "Imagem do perfil"; -App::$strings["visible to everybody"] = "visível para todos"; -App::$strings["Edit visibility"] = "Editar a visibilidade"; -App::$strings["Gender:"] = "Gênero:"; -App::$strings["Status:"] = "Situação:"; -App::$strings["Homepage:"] = "Página web:"; -App::$strings["Online Now"] = "Online agora"; -App::$strings["g A l F d"] = "G l d F"; -App::$strings["F d"] = "F d"; -App::$strings["[today]"] = "[hoje]"; -App::$strings["Birthday Reminders"] = "Lembres de aniversário"; -App::$strings["Birthdays this week:"] = "Aniversários nesta semana:"; -App::$strings["[No description]"] = "[Sem descrição]"; -App::$strings["Event Reminders"] = "Lembretes de eventos"; -App::$strings["Events this week:"] = "Eventos nesta semana:"; -App::$strings["Full Name:"] = "Nome completo:"; -App::$strings["Like this channel"] = "Gostar deste canal"; -App::$strings["j F, Y"] = "j \\d\\e F, Y"; -App::$strings["j F"] = "j \\d\\e F"; -App::$strings["Birthday:"] = "Aniversário:"; -App::$strings["Age:"] = "Idade:"; -App::$strings["for %1\$d %2\$s"] = "para %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferência sexual:"; -App::$strings["Hometown:"] = "Cidade natal:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posição política:"; -App::$strings["Religion:"] = "Religião:"; -App::$strings["About:"] = "Sobre:"; -App::$strings["Hobbies/Interests:"] = "Hobbies/Interesses:"; -App::$strings["Likes:"] = "Gosta de:"; -App::$strings["Dislikes:"] = "Não gosta de:"; -App::$strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:"; -App::$strings["My other channels:"] = "Meus outros canais:"; -App::$strings["Musical interests:"] = "Interesses musicais:"; -App::$strings["Books, literature:"] = "Livros, literatura:"; -App::$strings["Television:"] = "Televisão:"; -App::$strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:"; -App::$strings["Love/Romance:"] = "Amor/romance:"; -App::$strings["Work/employment:"] = "Trabalho/emprego:"; -App::$strings["School/education:"] = "Escola/educação:"; -App::$strings["Like this thing"] = "Gostar desta coisa"; -App::$strings["Logout"] = "Sair"; -App::$strings["End this session"] = "Encerrar essa sessão"; -App::$strings["Home"] = "Ver canal"; -App::$strings["Your posts and conversations"] = "Suas publicações e conversas"; -App::$strings["Your profile page"] = "A página do seu perfil"; -App::$strings["Edit Profiles"] = "Editar perfis"; -App::$strings["Manage/Edit profiles"] = "Administrar/Editar perfis"; -App::$strings["Edit your profile"] = "Editar seu perfil"; -App::$strings["Your photos"] = "Suas fotos"; -App::$strings["Your files"] = "Seus arquivos"; -App::$strings["Your chatrooms"] = "Suas salas de bate-papo"; -App::$strings["Your bookmarks"] = "Seus links guardados"; -App::$strings["Your webpages"] = "Suas páginas web"; -App::$strings["Sign in"] = "Entrar"; -App::$strings["%s - click to logout"] = "%s - clique para sair"; -App::$strings["Click to authenticate to your home hub"] = "Clique para se autenticar com seu hub de origem"; -App::$strings["Home Page"] = "Página inicial"; -App::$strings["Register"] = "Registrar"; -App::$strings["Create an account"] = "Criar uma conta"; -App::$strings["Help and documentation"] = "Ajuda e documentação"; -App::$strings["Apps"] = "Aplicações"; -App::$strings["Applications, utilities, links, games"] = "Aplicações, utilitários, links, jogos"; -App::$strings["Search site content"] = "Pesquisar o conteúdo do site"; -App::$strings["Channel Locator"] = "Localizador de canais"; -App::$strings["Your matrix"] = "Sua matriz"; -App::$strings["Mark all matrix notifications seen"] = "Marcar todas as notificações da matriz como vistas"; -App::$strings["Channel home"] = "Página inicial do canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas as notificações de canais como vistas"; -App::$strings["Connections"] = "Conexões"; -App::$strings["Notices"] = "Notificações"; -App::$strings["Notifications"] = "Notificações"; -App::$strings["See all notifications"] = "Ver todas as notificações"; -App::$strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas"; -App::$strings["Private mail"] = "Mensagens privadas"; -App::$strings["See all private messages"] = "Ver todas as mensagens privadas"; -App::$strings["Mark all private messages seen"] = "Marcar todas as mensagens privadas como vistas"; -App::$strings["Inbox"] = "Recebidas"; -App::$strings["Outbox"] = "Enviadas"; -App::$strings["New Message"] = "Nova mensagem"; -App::$strings["Event Calendar"] = "Agenda de eventos"; -App::$strings["See all events"] = "Ver todos os eventos"; -App::$strings["Mark all events seen"] = "Marcar todos os eventos como vistos"; -App::$strings["Manage Your Channels"] = "Gerencie os seus canais"; -App::$strings["Account/Channel Settings"] = "Configurações da conta/canal"; -App::$strings["Admin"] = "Admin"; -App::$strings["Site Setup and Configuration"] = "Configuração do site"; -App::$strings["Please wait..."] = "Por favor, aguarde..."; -App::$strings["No recipient provided."] = "Falta o destinatário."; -App::$strings["[no subject]"] = "[sem assunto]"; -App::$strings["Unable to determine sender."] = "Não foi possível determinar o remetente."; -App::$strings["Stored post could not be verified."] = "Não foi possível verificar a publicação armazenada."; -App::$strings["System"] = "Sistema"; -App::$strings["Create Personal App"] = "Crie aplicações pessoais"; -App::$strings["Edit Personal App"] = "Edite aplicações pessoais"; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -App::$strings["Suggestions"] = "Sugestões"; -App::$strings["See more..."] = "Veja mais..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Você tem %1$.0f de %2$.0f conexões permitidas."; -App::$strings["Add New Connection"] = "Adicionar nova conexão"; -App::$strings["Enter the channel address"] = "Digite o endereço do canal"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Remover termo"; -App::$strings["Archives"] = "Arquivos"; -App::$strings["Refresh"] = "Atualizar"; -App::$strings["Me"] = "Eu"; -App::$strings["Best Friends"] = "Melhores amigos"; -App::$strings["Co-workers"] = "Colegas de trabalho"; -App::$strings["Former Friends"] = "Amigos afastados"; -App::$strings["Acquaintances"] = "Conhecidos"; -App::$strings["Everybody"] = "Todos"; -App::$strings["Account settings"] = "Configurações da conta"; -App::$strings["Channel settings"] = "Configurações do canal"; -App::$strings["Additional features"] = "Recursos adicionais"; -App::$strings["Feature settings"] = "Configurações dos recursos"; -App::$strings["Display settings"] = "Configurações de exibição"; -App::$strings["Connected apps"] = "Aplicações conectadas"; -App::$strings["Export channel"] = "Exportar o canal"; -App::$strings["Export content"] = "Exportar conteúdo"; -App::$strings["Automatic Permissions (Advanced)"] = "Permissões automáticas (avançado)"; -App::$strings["Premium Channel Settings"] = "Configurações de canal premium"; -App::$strings["Check Mail"] = "Checar mensagens"; -App::$strings["Chat Rooms"] = "Salas de bate-papo"; -App::$strings["Bookmarked Chatrooms"] = "Salas de bate-papo guardadas"; -App::$strings["Suggested Chatrooms"] = "Salas de bate-papo sugeridas"; -App::$strings["Save to Folder"] = "Salvar para pasta"; -App::$strings["View all"] = "Ver tudo"; -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "desgostou", - 1 => "desgostaram", -); -App::$strings["Add Star"] = "Adicione estrela"; -App::$strings["Remove Star"] = "Remove estrela"; -App::$strings["Toggle Star Status"] = "Alterna status da estrela"; -App::$strings["starred"] = "destacado"; -App::$strings["Add Tag"] = "Adiciona etiqueta"; -App::$strings["I like this (toggle)"] = "Eu gostei disso (alterna)"; -App::$strings["I don't like this (toggle)"] = "Eu não gostei disso (alterna)"; -App::$strings["Share This"] = "Compartilhe isso"; -App::$strings["share"] = "compartilhar"; -App::$strings["View %s's profile - %s"] = "Ver o perfil de %s - %s"; -App::$strings["to"] = "para"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Mural-para-mural"; -App::$strings["via Wall-To-Wall:"] = "via Mural-para-mural"; -App::$strings["Save Bookmarks"] = "Salve Favoritos"; -App::$strings["Add to Calendar"] = "Adicione ao calendário"; -App::$strings["__ctx:noun__ Likes"] = "Gostaram"; -App::$strings["__ctx:noun__ Dislikes"] = "Desgostaram"; -App::$strings["%d comment"] = array( - 0 => "%d comentário", - 1 => "%d comentários", -); -App::$strings["[+] show all"] = "[+] mostrar todos"; -App::$strings["This is you"] = "Este(a) é você"; -App::$strings["Comment"] = "Comentar"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Bold"] = "Negrito"; -App::$strings["Italic"] = "Itálico"; -App::$strings["Underline"] = "Sublinhado"; -App::$strings["Quote"] = "Citação"; -App::$strings["Code"] = "Código"; -App::$strings["Image"] = "Imagem"; -App::$strings["Link"] = "Link"; -App::$strings["Video"] = "Vídeo"; -App::$strings["Delete this item?"] = "Excluir este item?"; -App::$strings["[-] show less"] = "[-] mostra menos"; -App::$strings["[+] expand"] = "[+] expandir"; -App::$strings["[-] collapse"] = "[-] colapsar"; -App::$strings["Password too short"] = "A senha é muito curta"; -App::$strings["Passwords do not match"] = "As senhas não correspondem"; -App::$strings["everybody"] = "todos"; -App::$strings["Secret Passphrase"] = "Frase secreta"; -App::$strings["Passphrase hint"] = "Dica da frase secreta"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Atenção: permissões foram modificadas mas ainda não foram enviadas."; -App::$strings["close all"] = "fechar tudo"; -App::$strings["Nothing new here"] = "Nada de novo aqui"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "atrás"; -App::$strings["from now"] = "de agora"; -App::$strings["less than a minute"] = "menos de um minuto"; -App::$strings["about a minute"] = "aproximadamente um minuto"; -App::$strings["%d minutes"] = "%d minutos"; -App::$strings["about an hour"] = "aproximadamente uma hora"; -App::$strings["about %d hours"] = "aproximadamente %d horas"; -App::$strings["a day"] = "um dia"; -App::$strings["%d days"] = "%d dias"; -App::$strings["about a month"] = "aproximadamente um mês"; -App::$strings["%d months"] = "%d meses"; -App::$strings["about a year"] = "aproximadamente um ano"; -App::$strings["%d years"] = "%d anos"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["New window"] = "Nova janela"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abre a localização selecionada em outra aba ou janela"; -App::$strings["User '%s' deleted"] = "O usuário/a '%s' foi deletado/a"; -App::$strings["Male"] = "Masculino"; -App::$strings["Female"] = "Feminino"; -App::$strings["Currently Male"] = "Atualmente masculino"; -App::$strings["Currently Female"] = "Atualmente feminino"; -App::$strings["Mostly Male"] = "Masculino a maior parte do tempo"; -App::$strings["Mostly Female"] = "Feminino a maior parte do tempo"; -App::$strings["Transgender"] = "Transgênero"; -App::$strings["Intersex"] = "Intersexuado"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutro"; -App::$strings["Non-specific"] = "Não específico"; -App::$strings["Other"] = "Outro"; -App::$strings["Undecided"] = "Indeciso"; -App::$strings["Males"] = "Homens"; -App::$strings["Females"] = "Mulheres"; -App::$strings["Gay"] = "Gays"; -App::$strings["Lesbian"] = "Lésbicas"; -App::$strings["No Preference"] = "Sem preferência"; -App::$strings["Bisexual"] = "Bissexuais"; -App::$strings["Autosexual"] = "Autossexuais"; -App::$strings["Abstinent"] = "Abstinentes"; -App::$strings["Virgin"] = "Virgens"; -App::$strings["Deviant"] = "Desviantes"; -App::$strings["Fetish"] = "Fetiches"; -App::$strings["Oodles"] = "Abundância"; -App::$strings["Nonsexual"] = "Não sexuais"; -App::$strings["Single"] = "Solteiro(a)"; -App::$strings["Lonely"] = "Solitário(a)"; -App::$strings["Available"] = "Disponível"; -App::$strings["Unavailable"] = "Não disponível"; -App::$strings["Has crush"] = "Tem uma paixão"; -App::$strings["Infatuated"] = "Apaixonado"; -App::$strings["Dating"] = "Saindo com alguém"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Viciado(a) em sexo"; -App::$strings["Friends/Benefits"] = "Amigos com benefícios"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Envolvido(a)"; -App::$strings["Married"] = "Casado(a)"; -App::$strings["Imaginarily married"] = "Casado imaginariamente"; -App::$strings["Partners"] = "Parceiros"; -App::$strings["Cohabiting"] = "Coabitando"; -App::$strings["Common law"] = "Direito comum"; -App::$strings["Happy"] = "Feliz"; -App::$strings["Not looking"] = "Não estou procurando"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Traído(a)"; -App::$strings["Separated"] = "Separado(a)"; -App::$strings["Unstable"] = "Instável"; -App::$strings["Divorced"] = "Divorciado(a)"; -App::$strings["Imaginarily divorced"] = "Divorciado imaginariamente"; -App::$strings["Widowed"] = "Viúvo(a)"; -App::$strings["Uncertain"] = "Incerto(a)"; -App::$strings["It's complicated"] = "É complicado"; -App::$strings["Don't care"] = "Não importa"; -App::$strings["Ask me"] = "Pergunte-me"; -App::$strings["Logged out."] = "Você saiu."; -App::$strings["Failed authentication"] = "Não foi possível autenticar"; -App::$strings["Login failed."] = "Não foi possível entrar."; -App::$strings["Can view my normal stream and posts"] = "Pode ver meus fluxo e publicações normais"; -App::$strings["Can view my default channel profile"] = "Pode ver o perfil padrão do meu canal"; -App::$strings["Can view my photo albums"] = "Pode ver meus álbuns de fotos"; -App::$strings["Can view my connections"] = "Pode ver minhas conexões"; -App::$strings["Can view my file storage"] = "Pode ver meu armazenamento de arquivos"; -App::$strings["Can view my webpages"] = "Pode ver minhas páginas web"; -App::$strings["Can send me their channel stream and posts"] = "Pode me enviar seu fluxo e publicações"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pode publicar na página do meu canal (\"mural\")"; -App::$strings["Can comment on or like my posts"] = "Pode comentar em ou gostar de minhas publicações"; -App::$strings["Can send me private mail messages"] = "Pode me enviar mensagens privadas"; -App::$strings["Can post photos to my photo albums"] = "Pode publicar fotos nos meus álbuns de fotos"; -App::$strings["Can like/dislike stuff"] = "Pode gostar/desgostar de coisas"; -App::$strings["Profiles and things other than posts/comments"] = "Perfis e coisas que não publicações/comentários"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Pode encaminhar para todos os contatos do meu canal via @menções na publicação"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avançado - útil para criar canais de fóruns de grupos"; -App::$strings["Can chat with me (when available)"] = "Pode conversar comigo (quando disponívei)"; -App::$strings["Can write to my file storage"] = "Pode escrever em meu armazenamento de arquivos"; -App::$strings["Can edit my webpages"] = "Pode editar minhas páginas web"; -App::$strings["Can source my public posts in derived channels"] = "Pode usar minhas publicações públicas como fonte para canais derivados"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Avançado - muito útil em comunidades abertas"; -App::$strings["Can administer my channel resources"] = "Pode administrar os recursos do meu canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Extremamente avançado. Não mexa nisso a não ser que saiba o que está fazendo"; -App::$strings["Social Networking"] = "Rede social"; -App::$strings["Mostly Public"] = "Padrão público"; -App::$strings["Restricted"] = "Restrito"; -App::$strings["Private"] = "Privado"; -App::$strings["Community Forum"] = "Fórum de comunidade"; -App::$strings["Feed Republish"] = "Republicação de feed"; -App::$strings["Celebrity/Soapbox"] = "Personalidade/Palanque"; -App::$strings["Custom/Expert Mode"] = "Personalizado/Modo expert"; -App::$strings["Set your current mood and tell your friends"] = "Marque seu humor atual e compartilhe com seus amigos"; -App::$strings["Menu not found."] = "O menu não foi encontrado."; -App::$strings["Menu element updated."] = "O elemento de menu foi atualizado."; -App::$strings["Unable to update menu element."] = "Não foi possível atualizar o elemento de menu."; -App::$strings["Menu element added."] = "O elemento de menu foi adicionado."; -App::$strings["Unable to add menu element."] = "Não foi possível adicionar o elemento de menu."; -App::$strings["Not found."] = "Não encontrado."; -App::$strings["Manage Menu Elements"] = "Administrar elementos de menu"; -App::$strings["Edit menu"] = "Editar menu"; -App::$strings["Edit element"] = "Editar elemento"; -App::$strings["Drop element"] = "Descartar elemento"; -App::$strings["New element"] = "Novo elemento"; -App::$strings["Edit this menu container"] = "Editar esta caixa de menu"; -App::$strings["Add menu element"] = "Adicionar um elemento de menu"; -App::$strings["Delete this menu item"] = "Deleter este item de menu"; -App::$strings["Edit this menu item"] = "Editar este item de menu"; -App::$strings["New Menu Element"] = "Novo elemento de menu"; -App::$strings["Menu Item Permissions"] = "Permissões do item do menu"; -App::$strings["(click to open/close)"] = "(clique para abrir/fechar)"; -App::$strings["Link text"] = "Texto do link"; -App::$strings["URL of link"] = "URL do link"; -App::$strings["Use Red magic-auth if available"] = "Usar Red magic-auth se disponível"; -App::$strings["Open link in new window"] = "Abrir link em uma nova janela"; -App::$strings["Order in list"] = "Ordem na lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Números mais altos descem para o fim da lista"; -App::$strings["Menu item not found."] = "O item de menu não foi encontrado."; -App::$strings["Menu item deleted."] = "O item de menu foi deletado."; -App::$strings["Menu item could not be deleted."] = "Não foi possível deletar o item de menu."; -App::$strings["Edit Menu Element"] = "Editar elemento de menu"; -App::$strings["Modify"] = "Modificar"; -App::$strings["Some blurb about what to do when you're new here"] = "Alguma coisa sobre o que fazer quando se é novo aqui"; -App::$strings["sent you a private message"] = "lhe enviou uma mensagem privada"; -App::$strings["added your channel"] = "adicionou seu canal"; -App::$strings["posted an event"] = "publicou um evento"; -App::$strings["network"] = "+ rede"; -App::$strings["Name is required"] = "É necessário informar o nome"; -App::$strings["Key and Secret are required"] = "A chave e o segredo são obrigatórios"; -App::$strings["Passwords do not match. Password unchanged."] = "As senhas não correspondem. A senha não foi modificada."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Não é permitido uma senha em branco. A senha não foi modificada."; -App::$strings["Password changed."] = "A senha foi modificada."; -App::$strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente."; -App::$strings["Not valid email."] = "Não é um e-mail válido"; -App::$strings["Protected email address. Cannot change to that email."] = "Endereço de e-mail protegido. Não é possível mudar para esse e-mail."; -App::$strings["System failure storing new email. Please try again."] = "Falha do sistema ao armazenar novo e-mail. Por favor, tente novamente."; -App::$strings["Settings updated."] = "As configurações foram atualizadas."; -App::$strings["Add application"] = "Adicionar aplicação"; -App::$strings["Name of application"] = "Nome da aplicação"; -App::$strings["Consumer Key"] = "Chave de consumidor"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Gerado automaticamente - troque se desejável. Comprimento máximo 20"; -App::$strings["Consumer Secret"] = "Segredo de consumidor"; -App::$strings["Redirect"] = "Redirecionamento"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirecionamento - deixe em branco, a não ser que sua aplicação especificamente requeira isso"; -App::$strings["Icon url"] = "URL do ícone"; -App::$strings["Optional"] = "Opcional"; -App::$strings["You can't edit this application."] = "Você não pode editar esta aplicação."; -App::$strings["Connected Apps"] = "Aplicações conectadas"; -App::$strings["Client key starts with"] = "Chave do cliente começa com"; -App::$strings["No name"] = "Sem nome"; -App::$strings["Remove authorization"] = "Remover autorização"; -App::$strings["No feature settings configured"] = "Não foi definida nenhuma configuração do recurso"; -App::$strings["Feature Settings"] = "Configurações do recurso"; -App::$strings["Account Settings"] = "Configurações da conta"; -App::$strings["Password Settings"] = "Configurações da senha"; -App::$strings["New Password:"] = "Nova senha:"; -App::$strings["Confirm:"] = "Confirme:"; -App::$strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la"; -App::$strings["Email Address:"] = "Endereço de e-mail:"; -App::$strings["Remove Account"] = "Remover conta"; -App::$strings["Remove this account from this server including all its channels"] = "Remove esta conta deste servidor incluindo todos os seus canais."; -App::$strings["Warning: This action is permanent and cannot be reversed."] = "Atenção: Esta ação é permanente e não pode ser revertida."; -App::$strings["Off"] = "Desligado"; -App::$strings["On"] = "Ligado"; -App::$strings["Additional Features"] = "Recursos adicionais"; -App::$strings["Connector Settings"] = "Configurações do conector"; -App::$strings["No special theme for mobile devices"] = "Sem tema especial para aparelhos móveis"; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Configurações de exibição"; -App::$strings["Display Theme:"] = "Tema do perfil:"; -App::$strings["Mobile Theme:"] = "Tema móvel:"; -App::$strings["Enable user zoom on mobile devices"] = "Permitir zoom pelo usuário em dispositivos móveis"; -App::$strings["Update browser every xx seconds"] = "Atualizar navegador a cada xx segundos"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sem máximo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Número máximo permitido de conversas carregadas:"; -App::$strings["Maximum of 100 items"] = "Máximo de 100 itens"; -App::$strings["Don't show emoticons"] = "Não exibir emoticons"; -App::$strings["Link post titles to source"] = "Ligar o título dos posts à fonte"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de layout de página do sistema - (avançado)"; -App::$strings["Nobody except yourself"] = "Ninguém exceto você mesmo"; -App::$strings["Only those you specifically allow"] = "Apenas quem você der permissão"; -App::$strings["Approved connections"] = "Conexões aprovadas"; -App::$strings["Any connections"] = "Quaisquer conexões"; -App::$strings["Anybody on this website"] = "Qualquer um neste site"; -App::$strings["Anybody in this network"] = "Qualquer um nesta rede"; -App::$strings["Anybody authenticated"] = "Qualquer um autenticado"; -App::$strings["Anybody on the internet"] = "Qualquer um na internet"; -App::$strings["Publish your default profile in the network directory"] = "Publicar seu perfil padrão no diretório da rede?"; -App::$strings["No"] = "Não"; -App::$strings["Yes"] = "Sim"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir sugerir você como amigo potencial para outros membros?"; -App::$strings["or"] = "ou"; -App::$strings["Your channel address is"] = "O endereço do seu canal é"; -App::$strings["Channel Settings"] = "Configurações do canal"; -App::$strings["Basic Settings"] = "Configurações básicas"; -App::$strings["Your Timezone:"] = "Seu fuso horário:"; -App::$strings["Default Post Location:"] = "Localização padrão de suas publicações:"; -App::$strings["Geographical location to display on your posts"] = "Localização geográfica para exibir em suas publicações"; -App::$strings["Use Browser Location:"] = "Usar localizador do navegador:"; -App::$strings["Adult Content"] = "Conteúdo adulto"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal frequentemente ou regularmente publica conteúdo adulto. (Por favor marque qualquer material adulto e/ou nudez com #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Suas permissões já foram configuradas. Clique para vê-las/ajustá-las"; -App::$strings["Hide my online presence"] = "Esconda minha presença online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Previne exibir em seu perfil que você está online"; -App::$strings["Simple Privacy Settings:"] = "Configurações de privacidade simples:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muito público - extremamente permissivo (deve ser usado com cuidado)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - público por padrão, privado quando desejável (similar às permissões de redes sociais, mas com melhor privacidade)"; -App::$strings["Private - default private, never open or public"] = "Privado - privado por padrão, nunca aberto ou público"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por padrão bloquado de/para todos"; -App::$strings["Allow others to tag your posts"] = "Permitir que outros etiquetem suas publicações"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Frequentemente utilizado pela comunidade para retroativamente sinalizar conteúdo inapropriado"; -App::$strings["Advanced Privacy Settings"] = "Configurações de privacidade avançadas"; -App::$strings["Expire other channel content after this many days"] = "Expirar outros conteúdos do canal após este número de dias"; -App::$strings["0 or blank prevents expiration"] = "0 ou em branco previne expiração"; -App::$strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:"; -App::$strings["May reduce spam activity"] = "Pode reduzir a frequência de spam"; -App::$strings["Default Post Permissions"] = "Permissões padrão de publicação"; -App::$strings["Maximum private messages per day from unknown people:"] = "Máximo número de mensagens privadas por dia de pessoas desconhecidas:"; -App::$strings["Useful to reduce spamming"] = "Útil para reduzir a frequência de spam"; -App::$strings["Notification Settings"] = "Configurações de notificação"; -App::$strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:"; -App::$strings["accepting a friend request"] = "aceitar um pedido de amizade"; -App::$strings["joining a forum/community"] = "associar-se a um fórum/comunidade"; -App::$strings["making an interesting profile change"] = "modificar algo interessante em seu perfil"; -App::$strings["Send a notification email when:"] = "Enviar um e-mail de notificação quando:"; -App::$strings["You receive a connection request"] = "Você recebe uma solicitação de conexão"; -App::$strings["Your connections are confirmed"] = "Suas conexões são confirmadas"; -App::$strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil"; -App::$strings["Someone writes a followup comment"] = "Alguém comenta uma publicação"; -App::$strings["You receive a private message"] = "Você recebeu uma mensagem privada"; -App::$strings["You receive a friend suggestion"] = "Você recebe uma sugestão de amizade"; -App::$strings["You are tagged in a post"] = "Você é mencionado num post"; -App::$strings["You are poked/prodded/etc. in a post"] = "Você foi cutucado/espetado/etc. numa publicação"; -App::$strings["Advanced Account/Page Type Settings"] = "Configurações avançadas de conta/tipo de página"; -App::$strings["Change the behaviour of this account for special situations"] = "Mudar o comportamento dessa conta em situações especiais"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Por favor, habilite o modo expert (em Configurações > Recursos adicionais) para ajustar!"; -App::$strings["Miscellaneous Settings"] = "Configurações miscelâneas"; -App::$strings["Personal menu to display in your channel pages"] = "Menu pessoal para exibir nas páginas dos seus canais"; -App::$strings["Remove this channel"] = "Remover este canal"; -App::$strings["Poke/Prod"] = "Cutucar/Espetar"; -App::$strings["poke, prod or do other things to somebody"] = "Cutucar, espetar ou fazer outras coisas a alguém"; -App::$strings["Recipient"] = "Destinatário"; -App::$strings["Choose what you wish to do to recipient"] = "Escolha o que você deseja fazer com seu alvo"; -App::$strings["Make this post private"] = "Torne esta publicação privada"; -App::$strings["Authorize application connection"] = "Autorizar a conexão com a aplicação"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:"; -App::$strings["Please login to continue."] = "Por favor, autentique-se para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Autenticação remota bloqueada. Você está autenticado neste site localmente. Por favor, saia e tente novamente."; -App::$strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso."; -App::$strings["Item not available."] = "O item não está disponível."; -App::$strings["Fetching URL returns error: %1\$s"] = "Carregar o URL retorna o erro: %1\$s"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bem-vindo(a) a %s"; -App::$strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la."; -App::$strings["Image resize failed."] = "Falha ao modificar o tamanho da imagem."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Se a nova foto não aparecer imediatamente, recarregue a página segurando a tecla \"shift\" ou limpe o cache do navegador, "; -App::$strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d"; -App::$strings["Unable to process image."] = "Não foi possível processar a imagem."; -App::$strings["Photo not available."] = "A foto não está disponível."; -App::$strings["Upload File:"] = "Enviar arquivo:"; -App::$strings["Select a profile:"] = "Selecione um perfil:"; -App::$strings["Upload Profile Photo"] = "Enviar foto do perfil"; -App::$strings["skip this step"] = "pule esta etapa"; -App::$strings["select a photo from your photo albums"] = "selecione uma foto do seu álbum de fotos"; -App::$strings["Crop Image"] = "Cortar a imagem"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização."; -App::$strings["Done Editing"] = "Encerrar a edição"; -App::$strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso."; -App::$strings["Image upload failed."] = "Não foi possível enviar a imagem."; -App::$strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s]."; -App::$strings["Invalid item."] = "Item inválido."; -App::$strings["Channel not found."] = "O canal não foi encontrado."; -App::$strings["Page not found."] = "Página não encontrada."; -App::$strings["Like/Dislike"] = "Gostar/Desgostar"; -App::$strings["This action is restricted to members."] = "Esta ação é restrita a membros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor entre com sua \$Projectname ID ou registre-se como novo membro da \$Projectname para continuar."; -App::$strings["Invalid request."] = "Solicitação inválida."; -App::$strings["thing"] = "coisa"; -App::$strings["Channel unavailable."] = "Canal não disponível."; -App::$strings["Previous action reversed."] = "Ação anterior revertida."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s concordam com %2\$s %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s não concordam com %2\$s %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s se abstém da decisão sobre %2\$s %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s comparecerá em %3\$s de %2\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s não comparecerá em %3\$s de %2\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s talvez compareça em %3\$s de %2\$s"; -App::$strings["Action completed."] = "Ação completada."; -App::$strings["Thank you."] = "Obrigado."; -App::$strings["Event can not end before it has started."] = "Um evento não pode terminar antes de seu início."; -App::$strings["Unable to generate preview."] = "Não pode gerar pré-visualização."; -App::$strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; -App::$strings["Event not found."] = "Evento não encontrado."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Editar o evento"; -App::$strings["Delete event"] = "Excluir evento"; -App::$strings["Create New Event"] = "Criar um novo evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Próximo"; -App::$strings["Export"] = "Exportar"; -App::$strings["Event removed"] = "Evento removido"; -App::$strings["Failed to remove event"] = "Falha ao excluir evento"; -App::$strings["Event details"] = "Detalhes do evento"; -App::$strings["Starting date and Title are required."] = "Data de início e título são obrigatórios."; -App::$strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)"; -App::$strings["Event Starts:"] = "Início do evento:"; -App::$strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante"; -App::$strings["Event Finishes:"] = "Término do evento:"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para eventos que ocorrem em um lugar específico. Não prático para feriados globais."; -App::$strings["Description:"] = "Descrição:"; -App::$strings["Title:"] = "Título:"; -App::$strings["Share this event"] = "Compartilhar este evento"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está acompanhando %3\$s de %2\$s"; -App::$strings["Public Sites"] = "Sites públicos"; -App::$strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "Os sites listados permitem ao público geral registrar contas na \$Projectname. Todos os sites na matrix são interligados, portanto ser membro em qualquer um deles te torna membro na matrix como um todo. Alguns sites podem solicitar uma assinatura ou prover planos em níveis. Os links para cada provedor podem fornecer mais detalhes."; -App::$strings["Rate this hub"] = "Avalie esse hub."; -App::$strings["Site URL"] = "URL do site"; -App::$strings["Access Type"] = "Tipo de acesso"; -App::$strings["Registration Policy"] = "Política de registro"; -App::$strings["You must be logged in to see this page."] = "Você precisa estar autenticado para ver esta página."; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permissões insuficientes. Requisição redirecionada para a página de perfil."; -App::$strings["Select a bookmark folder"] = "Escolha uma pasta de links onde guardar"; -App::$strings["Save Bookmark"] = "Guardar link"; -App::$strings["URL of bookmark"] = "URL do link guardado"; -App::$strings["Description"] = "Descrição"; -App::$strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links"; -App::$strings["Room not found"] = "Sala não encontrada"; -App::$strings["Leave Room"] = "Sair da sala"; -App::$strings["Delete This Room"] = "Deletar esta sala"; -App::$strings["I am away right now"] = "Eu estou ausente no momento"; -App::$strings["I am online"] = "Eu estou online"; -App::$strings["Bookmark this room"] = "Guarde esta sala"; -App::$strings["New Chatroom"] = "Nova sala de bate-papo"; -App::$strings["Chatroom Name"] = "Nome da sala de bate-papo"; -App::$strings["%1\$s's Chatrooms"] = "Salas de bate-papo de %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Número máximo de novos registros neste site excedido por hoje. Por favor, tente novamente amanhã."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, indique a aceitação dos Termos de Serviço. Falha ao registrar."; -App::$strings["Passwords do not match."] = "Senhas não conferem."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para confirmar o registro."; -App::$strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site."; -App::$strings["Your registration can not be processed."] = "Não foi possível processar o seu registro."; -App::$strings["Registration on this site/hub is by approval only."] = "O registro neste site/hub requer aprovação."; -App::$strings["Register at another affiliated site/hub"] = "Registre em um outro site/hub afiliado"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o número máximo de registros de novas contas. Por favor, tente novamente amanhã."; -App::$strings["Terms of Service"] = "Termos de Serviço"; -App::$strings["I accept the %s for this website"] = "Eu aceito os %s deste website."; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Eu sou maior de 13 anos e aceito os %s deste website"; -App::$strings["Registration"] = "Registro"; -App::$strings["Membership on this site is by invitation only."] = "Novas contas neste site se dão apenas por convite."; -App::$strings["Please enter your invitation code"] = "Por favor, digite o código do seu convite"; -App::$strings["Your email address"] = "Seu endereço de e-mail"; -App::$strings["Choose a password"] = "Escolha uma senha"; -App::$strings["Please re-enter your password"] = "Por favor, digite sua senha novamente"; -App::$strings["Away"] = "Ausente"; -App::$strings["Online"] = "Online"; -App::$strings["Please login."] = "Por favor, autentique-se."; -App::$strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Hubzilla - Visitantes: Usuário: {seu endereço de e-mail}, Senha: +++"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "A remoção da canais fica desabilitada por 48 horas após uma troca de senha da conta."; -App::$strings["Remove This Channel"] = "Remover este canal"; -App::$strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Isso irá remover completamente este canal da rede. Uma vez que seja feito não será possível recuperá-lo."; -App::$strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:"; -App::$strings["Remove this channel and all its clones from the network"] = "Remover este canal e todos os seus clones da rede"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por padrão, apenas a instância do canal localizada neste hub será removida da rede"; -App::$strings["Remove Channel"] = "Remover canal"; -App::$strings["No channel."] = "Nenhum canal."; -App::$strings["Common connections"] = "Conexões em comum"; -App::$strings["No connections in common."] = "Nenhuma conexão em comum."; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos um problema ao entrar com a OpenID fornecida. Por favor, verifique se digitou corretamente a ID."; -App::$strings["The error message was:"] = "A mensagem de erro foi:"; -App::$strings["Authentication failed."] = "A autenticação falhou."; -App::$strings["Remote Authentication"] = "Autenticação remota"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Entre o endereço do seu canal (e.g. canal@exemplo.com)"; -App::$strings["Authenticate"] = "Autenticar"; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuração de canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restrições de canal premium para conexão"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor, insira suas restrições ou condições, como um recibo de depósito, normas de conduta, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal pode exigir passos adicionais ou compreensão das seguintes condições antes de conectar:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Tentativas de conexões verão então o seguinte texto antes de prosseguir:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Ao prosseguir, eu certifico que cumpri todas as instruções exibidas nesta página."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Nenhuma instrução foi especificada pelo dono do canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal restrito ou premium"; -App::$strings["No such group"] = "Este grupo não existe"; -App::$strings["Search Results For:"] = "Resultados da busca por:"; -App::$strings["Collection is empty"] = "A coleção está vazia"; -App::$strings["Collection: "] = "Coleção:"; -App::$strings["Connection: "] = "Conexão:"; -App::$strings["Invalid connection."] = "Conexão inválida."; -App::$strings["Could not access contact record."] = "Não foi possível acessar o registro do contato."; -App::$strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado."; -App::$strings["Connection updated."] = "A conexão foi atualizada."; -App::$strings["Failed to update connection record."] = "Não foi possível atualizar o registro da conexão."; -App::$strings["Blocked"] = "Bloqueado"; -App::$strings["Ignored"] = "Ignorado"; -App::$strings["Hidden"] = "Oculto"; -App::$strings["Archived"] = "Arquivado"; -App::$strings["All"] = "Todos"; -App::$strings["Suggest new connections"] = "Sugerir novas conexões"; -App::$strings["New Connections"] = "Novas conexões"; -App::$strings["Show pending (new) connections"] = "Exibir conexões pendentes (novas)"; -App::$strings["Show all connections"] = "Exibir todas as conexões"; -App::$strings["Unblocked"] = "Não bloqueado"; -App::$strings["Only show unblocked connections"] = "Exibir apenas conexões não bloqueadas"; -App::$strings["Only show blocked connections"] = "Exibir apenas conexões bloqueadas"; -App::$strings["Only show ignored connections"] = "Exibir apenas conexões ignoradas"; -App::$strings["Only show archived connections"] = "Exibir apenas conexões arquivadas"; -App::$strings["Only show hidden connections"] = "Exibir apenas conexões ocultas"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Editar conexão"; -App::$strings["Search your connections"] = "Pesquisar em suas conexões"; -App::$strings["Finding: "] = "Pesquisando: "; -App::$strings["Edit post"] = "Editar a publicação"; -App::$strings["\$Projectname channel"] = "Canal na \$Projectname"; -App::$strings["Collection created."] = "A coleção foi criada."; -App::$strings["Could not create collection."] = "Não foi possível criar a coleção."; -App::$strings["Collection updated."] = "Coleção atualizada"; -App::$strings["Create a collection of channels."] = "Criar uma coleção de canais."; -App::$strings["Collection Name: "] = "Nome da coleção:"; -App::$strings["Members are visible to other channels"] = "Membros são visíveis para outros canais"; -App::$strings["Collection removed."] = "Coleção removida."; -App::$strings["Unable to remove collection."] = "Não foi possível remover a coleção."; -App::$strings["Collection Editor"] = "Editor de coleção"; -App::$strings["Members"] = "Membros"; -App::$strings["All Connected Channels"] = "Todas os canais conectados"; -App::$strings["Click on a channel to add or remove."] = "Clique em um canal para adicionar ou remover."; -App::$strings["Version %s"] = "Versão %s"; -App::$strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instalados:"; -App::$strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicação instalado"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este é um hub da \$Projectname - uma rede global cooperativa de websites descentralizados com privacidade aprimorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Buscar último fundo:"; -App::$strings["Running at web location"] = "Sendo executado no endereço web"; -App::$strings["Please visit redmatrix.me to learn more about \$Projectname."] = "Por favor visite redmatrix.me para aprender mais sobre a \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugestões, elogios, etc - mande um e-mail para \"redmatrix\" arrôba librelist ponto com"; -App::$strings["Site Administrators"] = "Administradores do site"; -App::$strings["Help:"] = "Ajuda:"; -App::$strings["Not Found"] = "Não encontrada"; -App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Configuração"; -App::$strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Não foi possível conectar à URL especificada para o site. Provavlmente um problema de DNS ou com o certificado SSL."; -App::$strings["Could not create table."] = "Não foi possível criar a tabela."; -App::$strings["Your site database has been installed."] = "O banco de dados do seu site foi instalado."; -App::$strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = "Pode ser que você precise importar o arquivo \"install/database.sql\" manualmente, usando o phpmyadmin or mysql."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, veja o arquivo \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Checagem do sistema"; -App::$strings["Next"] = "Próximo"; -App::$strings["Check again"] = "Cheque novamente"; -App::$strings["Database connection"] = "Conexão ao banco de dados"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar a \$Projectname é necessário saber como se conectar ao seu banco de dados."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a isso."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "O banco de dados que você especificar abaixo já deve existir. Caso contrário, crie-o antes de prosseguir."; -App::$strings["Database Server Name"] = "Nome do servidor de banco de dados"; -App::$strings["Default is localhost"] = "O default é localhost"; -App::$strings["Database Port"] = "Porta do banco de dados"; -App::$strings["Communication port number - use 0 for default"] = "Número da porta de comunicação - use 0 para o default"; -App::$strings["Database Login Name"] = "Nome do usuário do banco de dados"; -App::$strings["Database Login Password"] = "Senha do usuário do banco de dados"; -App::$strings["Database Name"] = "Nome do banco de dados"; -App::$strings["Site administrator email address"] = "Endereço de email do administrador do site"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."; -App::$strings["Website URL"] = "URL do website"; -App::$strings["Please use SSL (https) URL if available."] = "Por favor, use uma URL SSL (https) se disponível."; -App::$strings["Please select a default timezone for your website"] = "Por favor, selecione o fuso horário padrão para o seu site"; -App::$strings["Site settings"] = "Configurações do site"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor 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."] = "Caso você não tenha uma versão de linha de comando do PHP instalada no seu servidor, você não será capaz de executar coletas em segundo plano pelo cron."; -App::$strings["PHP executable path"] = "Caminho para o executável do PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."; -App::$strings["Command line PHP"] = "PHP em linha de comando"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."; -App::$strings["This is required for message delivery to work."] = "Isto é necessário para o funcionamento do envio de mensagens."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Gerar chaves de criptografia"; -App::$strings["libCurl PHP module"] = "Módulo PHP libCurl"; -App::$strings["GD graphics PHP module"] = "Módulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; -App::$strings["mysqli PHP module"] = "Módulo PHP mysqli"; -App::$strings["mb_string PHP module"] = "Módulo PHP mb_string "; -App::$strings["mcrypt PHP module"] = "Módulo PHP mcrypt"; -App::$strings["Apache mod_rewrite module"] = "Módulo mod_rewrite do Apache"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Erro: proc_open é necessário, mas não está instalado ou foi desabilitado no php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."; -App::$strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado."; -App::$strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string do PHP é necessário, mas não está instalado."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Erro: o módulo mcrypt do PHP é necessário, mas não 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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."; -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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome .htconfig.php, na pasta raiz do seu Red."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"install/INSTALL.TXT\" para instruções."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php tem permissão de escrita"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red usa o engine de template Smarty3 para renderizar suas telas. Smarty3 compila templates para PHP para acelerar a renderização."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório %s no diretório raiz da Red."; -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, certifique-se de que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."; -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 uma medida de segurança, você deve fornecer ao servidor web permissão de escrita somente em %s e não aos arquivos de template (.tpl) que ele contém."; -App::$strings["%s is writable"] = "%s tem permissão de escrita"; -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"] = "A Red usa o diretório store para salvar arquivos carregados. O servidor web necessita de permissão de escrita no diretório store dentro do diretório raiz da Red"; -App::$strings["store is writable"] = "store tem permissão de escrita"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Não foi possível validar o certificado SSL. Corrija o certificado ou desabilite o acesso via https ao site."; -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 você oferece acesso https ao seu website ou permite conexões na porta TCP 443 (a porta https:), você DEVE usar um certificado reconhecido pelos navegadores. Você NÃO DEVE usar certificados assinados por você mesmo!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Essa restrição é incorporada porque publicações públicas suas podem, por exemplo, conter referências a imagens no seu próprio hub."; -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 seu certificado não for reconhecido, membros de outros sites (que podem ter certificados válidos) receberão uma mensagem de aviso nos seus próprios sites reclamando de problemas de segurança."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Isso pode causar problemas de usabilidade (não só no seu site) então nós precisamos insistir nesse requisito."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existem provedores que disponibilizam gratuitamente certificados reconhecidos por navegadores."; -App::$strings["SSL certificate validation"] = "Validação do certificado SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "A reescrita de URLs não está funcionando no .htaccess. Verifique as configurações do servidor."; -App::$strings["Url rewrite is working"] = "A reescrita de URLs está funcionando"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."; -App::$strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados."; -App::$strings["

What next

"] = "

Próximos passos

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o coletor."; -App::$strings["No channel."] = "Nenhum canal."; -App::$strings["Common connections"] = "Conexões em comum"; -App::$strings["No connections in common."] = "Nenhuma conexão em comum."; -App::$strings["This site is not a directory server"] = "Este site não é um servidor de diretório"; -App::$strings["Could not access contact record."] = "Não foi possível acessar o registro do contato."; -App::$strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado."; -App::$strings["Connection updated."] = "A conexão foi atualizada."; -App::$strings["Failed to update connection record."] = "Não foi possível atualizar o registro da conexão."; -App::$strings["Blocked"] = "Bloqueado"; -App::$strings["Ignored"] = "Ignorado"; -App::$strings["Hidden"] = "Oculto"; -App::$strings["Archived"] = "Arquivado"; -App::$strings["Suggest new connections"] = "Sugerir novas conexões"; -App::$strings["New Connections"] = "Novas conexões"; -App::$strings["Show pending (new) connections"] = "Exibir conexões pendentes (novas)"; -App::$strings["All Connections"] = "Todas as conexões"; -App::$strings["Show all connections"] = "Exibir todas as conexões"; -App::$strings["Unblocked"] = "Não bloqueado"; -App::$strings["Only show unblocked connections"] = "Exibir apenas conexões não bloqueadas"; -App::$strings["Only show blocked connections"] = "Exibir apenas conexões bloqueadas"; -App::$strings["Only show ignored connections"] = "Exibir apenas conexões ignoradas"; -App::$strings["Only show archived connections"] = "Exibir apenas conexões arquivadas"; -App::$strings["Only show hidden connections"] = "Exibir apenas conexões ocultas"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Editar conexão"; -App::$strings["Search your connections"] = "Pesquisar em suas conexões"; -App::$strings["Finding: "] = "Pesquisando: "; -App::$strings["Block Name"] = "Nome do bloco"; -App::$strings["Block Title"] = "Título do Bloco"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s marcou %3\$s de %2\$s com %4\$s"; -App::$strings["\$Projectname - Guests: Username: {your email address}, Password: +++"] = "\$Projectname - Convidados: Nome de usuário: {seu endereço de e-mail}, Senha: +++"; -App::$strings["Page owner information could not be retrieved."] = "As informações do dono da pagina não puderam ser obtidas."; -App::$strings["Album not found."] = "O álbum não foi encontrado."; -App::$strings["Delete Album"] = "Excluir o álbum"; -App::$strings["Delete Photo"] = "Excluir a foto"; -App::$strings["Public access denied."] = "Acesso público negado."; -App::$strings["No photos selected"] = "Não foi selecionada nenhuma foto"; -App::$strings["Access to this item is restricted."] = "O acesso a este item está restrito."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Utilizados %1$.2f MB de %2$.2f MB para armazenamento de fotos."; -App::$strings["%1$.2f MB photo storage used."] = "Utilizados %1$.2f MB para armazenamento de fotos."; -App::$strings["Upload Photos"] = "Enviar fotos"; -App::$strings["Enter a new album name"] = "Digite um nome para o novo álbum"; -App::$strings["or select an existing one (doubleclick)"] = "ou escolha um já existente (duplo clique)"; -App::$strings["Create a status post for this upload"] = "Crie uma publicação de status para este upload."; -App::$strings["Album name could not be decoded"] = "Não foi possível decodificar o nome do álbum"; -App::$strings["Contact Photos"] = "Fotos dos contatos"; -App::$strings["Show Newest First"] = "Exibir primeiro os mais recentes"; -App::$strings["Show Oldest First"] = "Exibir primeiro os mais antigos"; -App::$strings["View Photo"] = "Ver a foto"; -App::$strings["Edit Album"] = "Editar o álbum"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. Acesso a este item pode estar restrito."; -App::$strings["Photo not available"] = "A foto não está disponível"; -App::$strings["Use as profile photo"] = "Usar como uma foto de perfil"; -App::$strings["Private Photo"] = "Foto privada"; -App::$strings["View Full Size"] = "Ver no tamanho real"; -App::$strings["Edit photo"] = "Editar a foto"; -App::$strings["Rotate CW (right)"] = "Rotacionar H (horário)"; -App::$strings["Rotate CCW (left)"] = "Rotacionar AH (anti-horário)"; -App::$strings["Caption"] = "Legenda"; -App::$strings["Add a Tag"] = "Adicionar uma etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemplo: @beto, @Barbara_Almeida, @julia@exemplo.com"; -App::$strings["Flag as adult in album view"] = "Sinalizar como adulto na apresentação de álbuns"; -App::$strings["In This Photo:"] = "Nesta foto:"; -App::$strings["Map"] = "Mapa"; -App::$strings["View Album"] = "Ver álbum"; -App::$strings["Recent Photos"] = "Fotos recentes"; -App::$strings["Profile Match"] = "Correspondência de perfil"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão."; -App::$strings["is interested in:"] = "se interessa por:"; -App::$strings["No matches"] = "Nenhuma correspondência"; -App::$strings["Away"] = "Ausente"; -App::$strings["Online"] = "Online"; -App::$strings["Select a bookmark folder"] = "Escolha uma pasta de links onde guardar"; -App::$strings["Save Bookmark"] = "Guardar link"; -App::$strings["URL of bookmark"] = "URL do link guardado"; -App::$strings["Description"] = "Descrição"; -App::$strings["Or enter new bookmark folder name"] = "Ou digite o nome para uma nova pasta de links"; -App::$strings["No more system notifications."] = "Sem novas notificações do sistema."; -App::$strings["System Notifications"] = "Notificações do sistema"; -App::$strings["network"] = "+ rede"; -App::$strings["RSS"] = "RSS"; -App::$strings["Layout updated."] = "Layout atualizado."; -App::$strings["Edit System Page Description"] = "Editar descrição de página do sistema"; -App::$strings["Layout not found."] = "Layout não encontrado."; -App::$strings["Module Name:"] = "Nome do módulo:"; -App::$strings["Layout Help"] = "Ajuda de layout"; -App::$strings["Edit Layout"] = "Editar layout"; -App::$strings["Delete layout?"] = "Deletar layout?"; -App::$strings["Delete Layout"] = "Deletar layout"; -App::$strings["Item is not editable"] = "O item não está editável"; -App::$strings["Delete item?"] = "Deletar item?"; -App::$strings["Total invitation limit exceeded."] = "Foi excedido o número total de convites."; -App::$strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; -App::$strings["Please join us on Red"] = "Por favor, una-se a nós na Red"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site."; -App::$strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; -App::$strings["%d message sent."] = array( - 0 => "%d mensagem enviada.", - 1 => "%d mensagens enviadas.", -); -App::$strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; -App::$strings["Send invitations"] = "Enviar convites."; -App::$strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; -App::$strings["Your message:"] = "Sua mensagem:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor junte-se à minha comunidade na \$Projectname."; -App::$strings["You will need to supply this invitation code: "] = "Você precisará fornecer este código de convite:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registre-se em qualquer site da \$Projectname (eles são todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Entre com meu endereço da \$Projectname na barra de busca do site."; -App::$strings["or visit "] = "ou visite"; -App::$strings["3. Click [Connect]"] = "3. Clique [Conectar]"; -App::$strings["Location not found."] = "A localização não foi encontrada."; -App::$strings["Primary location cannot be removed."] = "A localização primária não pode ser removida."; -App::$strings["No locations found."] = "Nenhuma localização encontrada."; -App::$strings["Manage Channel Locations"] = "Gerenciar localizações do canal"; -App::$strings["Location (address)"] = "Localização (endereço)"; -App::$strings["Primary Location"] = "Localização primária"; -App::$strings["Drop location"] = "Descartar localização"; -App::$strings["Failed to create source. No channel selected."] = "Falha ao criar a fonte. Nenhum canal selecionado."; -App::$strings["Source created."] = "A fonte foi criada."; -App::$strings["Source updated."] = "A fonte foi atualizada."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Administrar as fontes remotas de conteúdo para o seu canal."; -App::$strings["New Source"] = "Nova fonte"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo ou uma seleção do conteúdo do seguinte canal para este canal, e distribuí-lo de acordo com as configurações do seu canal."; -App::$strings["Only import content with these words (one per line)"] = "Importar apenas conteúd com estas palavras (uma por linha)"; -App::$strings["Leave blank to import all public content"] = "Deixe em branco para importar todo o conteúdo público"; -App::$strings["Channel Name"] = "Nome do canal"; -App::$strings["Source not found."] = "A fonte não foi encontrada."; -App::$strings["Edit Source"] = "Editar fonte"; -App::$strings["Delete Source"] = "Deletar fonte"; -App::$strings["Source removed"] = "A fonte foi removida."; -App::$strings["Unable to remove source."] = "Não foi possível remover a fonte."; -App::$strings["- select -"] = "- selecionar -"; -App::$strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios."; -App::$strings["Event not found."] = "Evento não encontrado."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Editar o evento"; -App::$strings["Create New Event"] = "Criar um novo evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["hour:minute"] = "hora:minuto"; -App::$strings["Event details"] = "Detalhes do evento"; -App::$strings["Format is %s %s."] = "O formato é %s %s."; -App::$strings["Starting date and Title are required."] = "Data de início e título são obrigatórios."; -App::$strings["Event Starts:"] = "Início do evento:"; -App::$strings["Required"] = "Obrigatório"; -App::$strings["Finish date/time is not known or not relevant"] = "A data/hora de término não é conhecida ou não é relevante"; -App::$strings["Event Finishes:"] = "Término do evento:"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador"; -App::$strings["Description:"] = "Descrição:"; -App::$strings["Title:"] = "Título:"; -App::$strings["Share this event"] = "Compartilhar este evento"; -App::$strings["Permission Denied."] = "Permissão negada."; -App::$strings["File not found."] = "O arquivo não foi encontrado."; -App::$strings["Edit file permissions"] = "Editar permissões do arquivo"; -App::$strings["Set/edit permissions"] = "Definir/editar permissões"; -App::$strings["Include all files and sub folders"] = "Incluir todos os arquivos e subpastas"; -App::$strings["Return to file list"] = "Retornar à lista de arquivos"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/colar este código para anexar um arquivo a uma publicação"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/colar este URL para linkar para o arquivo em uma página web"; -App::$strings["Channel added."] = "Canal adicionado."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está acompanhando %3\$s de %2\$s"; -App::$strings["Contact not found."] = "O contato não foi encontrado."; -App::$strings["Friend suggestion sent."] = "Sugestão de amizade enviada."; -App::$strings["Suggest Friends"] = "Sugerir amigos"; -App::$strings["Suggest a friend for %s"] = "Sugerir um amigo para %s"; -App::$strings["Hub not found."] = "O hub não foi encontrado."; -App::$strings["Poke/Prod"] = "Cutucar/Espetar"; -App::$strings["poke, prod or do other things to somebody"] = "Cutucar, espetar ou fazer outras coisas a alguém"; -App::$strings["Recipient"] = "Destinatário"; -App::$strings["Choose what you wish to do to recipient"] = "Escolha o que você deseja fazer com seu alvo"; -App::$strings["Make this post private"] = "Torne esta publicação privada"; -App::$strings["Invalid profile identifier."] = "Identificador de perfil inválido."; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil"; -App::$strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover."; -App::$strings["Visible To"] = "Visível para"; -App::$strings["%s element installed"] = "Elemento %s instalado"; -App::$strings["%s element installation failed"] = "Instalação de elemento %s falhou"; -App::$strings["Profile not found."] = "O perfil não foi encontrado."; -App::$strings["Profile deleted."] = "O perfil foi excluído."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "O novo perfil foi criado."; -App::$strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem."; -App::$strings["Profile unavailable to export."] = "Perfil indisponível para exportar."; -App::$strings["Profile Name is required."] = "É obrigatório informar o nome do perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Parceiro/a romântico/a"; -App::$strings["Likes"] = "Gosta de"; -App::$strings["Dislikes"] = "Não gosta de"; -App::$strings["Work/Employment"] = "Trabalho/Emprego"; -App::$strings["Religion"] = "Religião"; -App::$strings["Political Views"] = "Posição política"; -App::$strings["Gender"] = "Gênero"; -App::$strings["Sexual Preference"] = "Preferência sexual"; -App::$strings["Homepage"] = "Página web"; -App::$strings["Interests"] = "Interesses"; -App::$strings["Address"] = "Endereço"; -App::$strings["Profile updated."] = "O perfil foi atualizado."; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Esconder sua lista de contatos/amigos dos visitantes no seu perfil?"; -App::$strings["Edit Profile Details"] = "Editar os detalhes do perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Change Profile Photo"] = "Mudar a foto do perfil"; -App::$strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Excluir este perfil"; -App::$strings["Import profile from file"] = "Importar perfil dum arquivo"; -App::$strings["Export profile to file"] = "Exportar perfil para arquivo"; -App::$strings["Profile Name:"] = "Nome do perfil:"; -App::$strings["Your Full Name:"] = "Seu nome completo:"; -App::$strings["Title/Description:"] = "Título/Descrição:"; -App::$strings["Your Gender:"] = "Seu gênero:"; -App::$strings["Birthday :"] = "Data de nascimento :"; -App::$strings["Street Address:"] = "Endereço:"; -App::$strings["Locality/City:"] = "Localidade/Cidade:"; -App::$strings["Postal/Zip Code:"] = "CEP:"; -App::$strings["Country:"] = "País:"; -App::$strings["Region/State:"] = "Região/Estado:"; -App::$strings[" Marital Status:"] = "Estado civil :"; -App::$strings["Who: (if applicable)"] = "Quem: (se aplicável)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"; -App::$strings["Since [date]:"] = "Desde [data]:"; -App::$strings["Homepage URL:"] = "Endereço do website:"; -App::$strings["Religious Views:"] = "Orientação religiosa:"; -App::$strings["Keywords:"] = "Palavras-chave:"; -App::$strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software"; -App::$strings["Used in directory listings"] = "Usado em listas de diretório"; -App::$strings["Tell us about yourself..."] = "Fale um pouco sobre você..."; -App::$strings["Hobbies/Interests"] = "Hobbies/Interesses"; -App::$strings["Contact information and Social Networks"] = "Informações de contato e redes sociais"; -App::$strings["My other channels"] = "Meus outros canais"; -App::$strings["Musical interests"] = "Interesses musicais"; -App::$strings["Books, literature"] = "Livros, literatura"; -App::$strings["Television"] = "Televisão"; -App::$strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento"; -App::$strings["Love/romance"] = "Amor/romance"; -App::$strings["Work/employment"] = "Trabalho/emprego"; -App::$strings["School/education"] = "Escola/educação"; -App::$strings["This is your default profile."] = "Este é seu perfil padrão."; -App::$strings["Age: "] = "Idade: "; -App::$strings["Edit/Manage Profiles"] = "Editar/Administrar perfis"; -App::$strings["Add profile things"] = "Adicionar coisas ao perfil"; -App::$strings["Include desirable objects in your profile"] = "Inclua objetos desejáveis no seu perfil"; -App::$strings["No ratings"] = "Sem avaliações"; -App::$strings["Ratings"] = "Avaliações"; -App::$strings["Rating: "] = "Avaliações"; -App::$strings["Website: "] = "Website:"; -App::$strings["Description: "] = "Descrição:"; -App::$strings["Source of Item"] = "Fonte do Item"; -App::$strings["OpenID protocol error. No ID returned."] = "Erro do protocolo OpenID. Nenhuma ID retornada."; -App::$strings["Welcome %s. Remote authentication successful."] = "Bem vindo %s. Autenticação remota realizada com sucesso."; -App::$strings["%d rating"] = array( - 0 => "%d avaliação", - 1 => "%d avaliações", -); -App::$strings["Gender: "] = "Gênero: "; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Website:"; -App::$strings["Hometown: "] = "Cidade natal:"; -App::$strings["About: "] = "Sobre:"; -App::$strings["Public Forum:"] = "Fórum público:"; -App::$strings["Keywords: "] = "Palavras-chave:"; -App::$strings["Common connections: %s"] = "Conexões em Comum: %s"; -App::$strings["Finding:"] = "Pesquisando:"; -App::$strings["next page"] = "próxima página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar escondidas)."; -App::$strings["Export Channel"] = "Exportar o canal"; -App::$strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = "Exportar suas informações básicas do canal para um arquivo pequeno. Isso funciona como um backup das suas ligações, permissões, perfis e dados básicos, que podem ser usados para importar os dados para um novo hub, não mas não contém seu conteúdo."; -App::$strings["Export Content"] = "Exportar conteúdo"; -App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportar as informações do seu canal e todo conteúdo para um backup JSON. Este backup irá conter todas suas conexões, permissões, dados de perfil e todo seu conteúdo, mas geralmente não é adequado para importar um canal para um novo hub, pois esse arquivo pode ser MUITO grande. Por favor seja paciente - pode demorar muitos minutos para este download começar."; -App::$strings["No connections."] = "Nenhuma conexão."; -App::$strings["Visit %s's profile [%s]"] = "Ver o perfil de %s [%s]"; -App::$strings["invalid target signature"] = "assinatura do destino inválida"; -App::$strings["Theme settings updated."] = "As configurações de tema foram atualizadas."; -App::$strings["Site"] = "Site"; -App::$strings["Accounts"] = "Contas"; -App::$strings["Channels"] = "Canais"; -App::$strings["Plugins"] = "Plugins"; -App::$strings["Themes"] = "Temas"; -App::$strings["Server"] = "Servidor"; -App::$strings["Profile Config"] = "Configuração de perfis"; -App::$strings["DB updates"] = "Atualizações do Banco de Dados"; -App::$strings["Logs"] = "Logs"; -App::$strings["Plugin Features"] = "Recursos dos plugins"; -App::$strings["User registrations waiting for confirmation"] = "Registros de usuário aguardando confirmação"; -App::$strings["Message queues"] = "Filas de mensagem"; -App::$strings["Administration"] = "Administração"; -App::$strings["Summary"] = "Resumo"; -App::$strings["Registered users"] = "Usuários registrados"; -App::$strings["Pending registrations"] = "Registros pendentes"; -App::$strings["Version"] = "Versão"; -App::$strings["Active plugins"] = "Plugins ativos"; -App::$strings["Site settings updated."] = "As configurações de site foram atualizadas."; -App::$strings["No special theme for accessibility"] = "Sem tema especial para acessibilidade"; -App::$strings["Yes - with approval"] = "Sim - pendente aprovação"; -App::$strings["My site is not a public server"] = "Meu site não é um servidor público"; -App::$strings["My site has paid access only"] = "Meu site oferece somente acesso pago"; -App::$strings["My site has free access only"] = "Meu site oferece somente acesso gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Meu site oferece contas gratuitas com recursos adicionais pagos"; -App::$strings["File upload"] = "Carregamento de arquivos"; -App::$strings["Policies"] = "Políticas"; -App::$strings["Site name"] = "Nome do site"; -App::$strings["Banner/Logo"] = "Cartaz/Logo"; -App::$strings["Administrator Information"] = "Informações do Administrador"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informações de contato com administradores do site. Exibida na página siteinfo. BBCode pode ser usado aqui."; -App::$strings["System language"] = "Idioma do sistema"; -App::$strings["System theme"] = "Tema do sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema padrão do sistema - pode ser sobrescrito por perfis de usuário - mudar configurações do tema"; -App::$strings["Mobile system theme"] = "Tema do sistema móvel"; -App::$strings["Theme for mobile devices"] = "Tema para dispositivos móveis"; -App::$strings["Accessibility system theme"] = "Tema do sistema acessível"; -App::$strings["Accessibility theme"] = "Tema acessível"; -App::$strings["Enable Diaspora Protocol"] = "Habilitar protocolo Diaspora"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Comunicar com Diaspora e Friendica - experimental"; -App::$strings["Allow Feeds as Connections"] = "Permitir Feeds como conexões"; -App::$strings["(Heavy system resource usage)"] = "(Alto uso de recursos do sistema)"; -App::$strings["Maximum image size"] = "Tamanho máximo de imagens"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamanho máximo em bytes de imagens carregadas. O padrão é 0, significando sem limites."; -App::$strings["Does this site allow new member registration?"] = "Este site permite o registro de novos membros?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Qual descreve melhor os tipos de conta oferecidas por este hub?"; -App::$strings["Register text"] = "Texto de registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Será exibido proeminentemente na página de registro."; -App::$strings["Accounts abandoned after x days"] = "Contas abandonadas após x dias"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Não gastará recursos do sistema coletando de sites externos para contas abandonadas. Use 0 para sem limite de tempo."; -App::$strings["Allowed friend domains"] = "Domínios permitidos para amigos"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista, separada por vírgulas, de domínios permitidos para estabelecer amizades com este site. Wildcards são aceitas. Vazio para permitir qualquer domínio"; -App::$strings["Allowed email domains"] = "Domínios permitidos de e-mail"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista, separada por vírgulas, de domínios permitidos em endereços de e-mail para registros nesse site. Wildcards são aceitas. Vazio para permitir qualquer domínio"; -App::$strings["Block public"] = "Bloquear público"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marque para bloquear o acesso público a todas as páginas pessoais que seriam públicas, a não ser que se esteja autenticado."; -App::$strings["Verify Email Addresses"] = "Verificar endereços de email"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Clique para verificar endereços de email usados no registro de contas (recomendado)."; -App::$strings["Force publish"] = "Forçar publicação"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Marque para forçar todos os perfis neste site a aparecerem listados no diretório do site."; -App::$strings["Disable discovery tab"] = "Desabilitar a aba \"Descubra\""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Remove da visualização de rede a aba com conteúdos públicos obtidos de fontes escolhidas para esse site."; -App::$strings["No login on Homepage"] = "Sem formulário de autenticação na página inicial"; -App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Marque para esconder o formulário de autenticação da página inicial do seu site quando visitantes chegarem sem estar autenticados (e.g. quando você inclui os conteúdos da página inicial através do canal do site)."; -App::$strings["Proxy user"] = "Usuário do proxy"; -App::$strings["Proxy URL"] = "URL do proxy"; -App::$strings["Network timeout"] = "Timeout da rede"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor em segundos. Use 0 para ilimitado (não recomendado)."; -App::$strings["Delivery interval"] = "Intervalo de entrega"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Atrase os processos de entrega em segundo plano por este número de segundos para reduzir a carga do sistema. Recomendado: 4-5 para hosts compartilhados, 2-3 para servidores virtuais privados. 0-1 para grandes servidores dedicados."; -App::$strings["Poll interval"] = "Intervalo de coleta"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Atrase os processos de coleta em segundo plano por este número de segundos para reduzir a carga do sistema. Se 0, use o intervalo de entrega."; -App::$strings["Maximum Load Average"] = "Carga média máxima"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima do sistema antes de adiar processos de entrega e coleta - padrão 50."; -App::$strings["No server found"] = "Nenhum servidor foi encontrado"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "para o canal"; -App::$strings["on server"] = "no servidor"; -App::$strings["Status"] = "Status"; -App::$strings["Update has been marked successful"] = "A atualização foi designada bem sucedida"; -App::$strings["Executing %s failed. Check system logs."] = "Execução de %s falhou. Verifique os logs do sistema."; -App::$strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "A atualização %s não retornou um status. Situação incerta quando ao seu sucesso."; -App::$strings["Update function %s could not be found."] = "A função de atualização %s não foi encontrada."; -App::$strings["No failed updates."] = "Nenhuma falha nas atualizações."; -App::$strings["Failed Updates"] = "Falha nas atualizações"; -App::$strings["Mark success (if update was manually applied)"] = "Marque sucesso (se a atualização foi aplicada manualmente)"; -App::$strings["Attempt to execute this update step automatically"] = "Tente executar este passo da atualização automaticamente"; -App::$strings["%s user blocked/unblocked"] = array( - 0 => "%s usuário foi bloqueado/desbloqueado", - 1 => "%s usuários foram bloqueados/desbloqueados", -); -App::$strings["%s user deleted"] = array( - 0 => "%s usuário foi deletado", - 1 => "%s usuários foram deletados", -); -App::$strings["Account not found"] = "A conta não foi encontrada"; -App::$strings["User '%s' unblocked"] = "O usuário/a '%s' foi desbloqueado/a"; -App::$strings["User '%s' blocked"] = "O usuário/a '%s' foi bloqueado/a"; -App::$strings["Users"] = "Usuários"; -App::$strings["select all"] = "selecionar tudo"; -App::$strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação"; -App::$strings["Request date"] = "Data de requisição"; -App::$strings["No registrations."] = "Nenhum registro."; -App::$strings["Approve"] = "Aprovar"; -App::$strings["Deny"] = "Negar"; -App::$strings["Register date"] = "Data de registro"; -App::$strings["Last login"] = "Última autenticação"; -App::$strings["Expires"] = "Expira"; -App::$strings["Service Class"] = "Classe de serviço"; -App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão deletados!\\n\\nTudo o que esses usuários postaram neste site será permanentemente deletado!\\n\\nTem certeza?"; -App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "O/A usuário/a {0} será deletado/a!\\n\\nTudo o que esse/a usuário/a postou neste site será permanentemente deletado!\\n\\nTem certeza?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canal censurado/descensurado", - 1 => "%s canais censurados/descensurados", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canal deletado", - 1 => "%s canais deletados", -); -App::$strings["Channel not found"] = "Canal não encontrado"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' deletado"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' não censurado"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; -App::$strings["Censor"] = "Censurar"; -App::$strings["Uncensor"] = "Não censurar"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os canais selecionados serão deletados!\\n\\nTudo que foi postado nesses canais nesse site será permanentemente deletado!\\n\\nVocê tem certeza?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "O canal {0} será deletado!\\n\\nTudo o que foi postado nesse canal nesse site será permanentemente deletado!\\n\\nVocê tem certeza?"; -App::$strings["Plugin %s disabled."] = "Plugin %s desabilitado."; -App::$strings["Plugin %s enabled."] = "Plugin %s habilitado."; -App::$strings["Disable"] = "Desabilitar"; -App::$strings["Enable"] = "Habilitar"; -App::$strings["Toggle"] = "Alternar"; -App::$strings["Author: "] = "Autor:"; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["No themes found."] = "Nenhum tema foi encontrado."; -App::$strings["Screenshot"] = "Captura de tela"; -App::$strings["[Experimental]"] = "[Experimental]"; -App::$strings["[Unsupported]"] = "[Desassistido]"; -App::$strings["Log settings updated."] = "As configurações de log foram atualizadas."; -App::$strings["Clear"] = "Limpar"; -App::$strings["Debugging"] = "Depuração"; -App::$strings["Log file"] = "Arquivo de log"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "É necessário que o servidor web possa escrever neste arquivo. Relativo ao diretório raiz da Red."; -App::$strings["Log level"] = "Nível do log"; -App::$strings["New Profile Field"] = "Novo campo de perfil"; -App::$strings["Field nickname"] = "Nome de apresentação do campo"; -App::$strings["System name of field"] = "Nome de sistema do campo"; -App::$strings["Input type"] = "Tipo de entrada"; -App::$strings["Field Name"] = "Nome do campo"; -App::$strings["Label on profile pages"] = "Rótulo nas páginas de perfil"; -App::$strings["Help text"] = "Texto de ajuda"; -App::$strings["Additional info (optional)"] = "Informações adicionais (opcional)"; -App::$strings["Field definition not found"] = "A dfinição de campo não foi encontrada"; -App::$strings["Edit Profile Field"] = "Editar campo de perfil"; -App::$strings["Thing updated"] = "A coisa foi atualizada"; -App::$strings["Object store: failed"] = "Armazenamento do objeto: falhou"; -App::$strings["Thing added"] = "A coisa foi adicionada"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Exibir coisa"; -App::$strings["item not found."] = "o item não foi encontrado"; -App::$strings["Edit Thing"] = "Editar coisa"; -App::$strings["Select a profile"] = "Selecione um perfil"; -App::$strings["Post an activity"] = "Publique uma atividade"; -App::$strings["Only sends to viewers of the applicable profile"] = "Envia apenas para a audiência do perfil aplicável"; -App::$strings["Name of thing e.g. something"] = "Nome da coisa e.g. coisinha"; -App::$strings["URL of thing (optional)"] = "URL da coisa (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "URL para foto da coisa (opcional)"; -App::$strings["Add Thing to your Profile"] = "Adicionar a coisa ao seu perfil"; -App::$strings["Your service plan only allows %d channels."] = "Seu plano de serviço permite apenas %d canais."; -App::$strings["Nothing to import."] = "Nada a importar."; -App::$strings["Unable to download data from old server"] = "Não foi possível descarregar os dados do servidor antigo"; -App::$strings["Imported file is empty."] = "O arquivo importado está vazio."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Não foi possível criar um identificador de canal duplicado neste sistema. A importação falhou."; -App::$strings["Channel clone failed. Import failed."] = "Clonagem do canal falhou. A importação falhou."; -App::$strings["Cloned channel not found. Import failed."] = "Canal a clonar não encontrado. A importação falhou."; -App::$strings["Import completed."] = "A importação foi completada."; -App::$strings["You must be logged in to use this feature."] = "Você precisa estar autenticado para usar este recurso."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Use este formulário para importar um canal existente de um servidor/hub diferente. Você pode obter a identidade do canal do servidor/hub antigo pela rede, ou fornecer um arquivo de exportação. Somente a identidade e as conexões/relacionamentos serão importados. Importação de conteúdos ainda não está disponível."; -App::$strings["File to Upload"] = "Arquivo a carregar"; -App::$strings["Or provide the old server/hub details"] = "Ou forneça os detalhes do antigo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "O endereço da sua velha identidade (xyz@exemplo.com)"; -App::$strings["Your old login email address"] = "O endereço de e-mail da sua antiga conta"; -App::$strings["Your old login password"] = "A senha dua sua antiga conta"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para qualquer das opções, por favor escolha se deseja fazer deste hub seu novo endereço primário, ou se o velho local deve continuar com esse papel. Você será capaz de publicar a partir de ambos os locais, mas somente um pode estar designado como local primário para arquivos, fotos e mídia."; -App::$strings["Make this hub my primary location"] = "Faça deste hub meu local primário"; -App::$strings["Import existing posts if possible"] = "Importar publicações existentes se possível"; -App::$strings["Total invitation limit exceeded."] = "Foi excedido o número total de convites."; -App::$strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido."; -App::$strings["Please join us on Red"] = "Por favor, una-se a nós na Red"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Você excedeu o limite de convites. Por favor, entre em contato com o administrador do site."; -App::$strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem."; -App::$strings["%d message sent."] = array( - 0 => "%d mensagem enviada.", - 1 => "%d mensagens enviadas.", -); -App::$strings["You have no more invitations available"] = "Você não possui mais convites disponíveis"; -App::$strings["Send invitations"] = "Enviar convites."; -App::$strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:"; -App::$strings["Your message:"] = "Sua mensagem:"; -App::$strings["Please join my community on Hubzilla."] = "Por favor junte-se à minha comunidade na Hubzilla"; -App::$strings["You will need to supply this invitation code: "] = "Você precisará fornecer este código de convite:"; -App::$strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registre-se em qualquer site da Hubzilla (eles são todos interconectados)"; -App::$strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Entre meu endereço da rede Hubzilla na barra de busca do site."; -App::$strings["or visit "] = "ou visite"; -App::$strings["3. Click [Connect]"] = "3. Clique [Conectar]"; -App::$strings["Unable to locate original post."] = "Não foi possível localizar a publicação original."; -App::$strings["Empty post discarded."] = "A publicação em branco foi descartada."; -App::$strings["Executable content type not permitted to this channel."] = "Conteúdo de tipo executável não permitido para este canal."; -App::$strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Você atingiu o seu limite de %1$.0f publicações de novos tópicos."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Você atingiu o seu limite de %1$.0f páginas web."; -App::$strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]"; -App::$strings["Help with this feature"] = "Ajuda com este recurso"; -App::$strings["Layout Name"] = "Nome do layout"; -App::$strings["Like/Dislike"] = "Gostar/Desgostar"; -App::$strings["This action is restricted to members."] = "Esta ação é restrita a membros."; -App::$strings["Please login with your Hubzilla ID or register as a new Redmatrix.member to continue."] = "Por favor entre com sua ID da Hubzilla ou registre-se como um novo membro da Hubzilla para continuar."; -App::$strings["Invalid request."] = "Solicitação inválida."; -App::$strings["thing"] = "coisa"; -App::$strings["Channel unavailable."] = "Canal não disponível."; -App::$strings["Previous action reversed."] = "Ação anterior revertida."; -App::$strings["Action completed."] = "Ação completada."; -App::$strings["Thank you."] = "Obrigado."; -App::$strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota."; -App::$strings["Visible to:"] = "Visível para:"; -App::$strings["Comanche page description language help"] = "Página de Ajuda da descrição da Linguagem Comanche "; -App::$strings["Layout Description"] = "Descrição de Layout"; -App::$strings["Download PDL file"] = "Baixar arquivo PDL"; -App::$strings["First Name"] = "Primeiro Nome"; -App::$strings["Last Name"] = "Último Nome"; -App::$strings["Nickname"] = "Apelido"; -App::$strings["Full Name"] = "Nome Completo"; -App::$strings["Profile Photo 16px"] = "Foto de Perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto de Perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto de Perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto de Perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto de Perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto de Perfil 128px"; -App::$strings["Timezone"] = "Fuso Horário"; -App::$strings["Homepage URL"] = "URL da Página"; -App::$strings["Birth Year"] = "Ano de Nascimento"; -App::$strings["Birth Month"] = "Mês de Nascimento"; -App::$strings["Birth Day"] = "Dia de Nascimento"; -App::$strings["Birthdate"] = "Data de Nascimento"; -App::$strings["Conversation removed."] = "A conversa foi removida."; -App::$strings["No messages."] = "Nenhuma mensagem."; -App::$strings["Delete conversation"] = "Excluir conversa"; -App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -App::$strings["Unable to create element."] = "Não foi possível criar elemento."; -App::$strings["Unable to update menu element."] = "Não foi possível atualizar o elemento de menu."; -App::$strings["Unable to add menu element."] = "Não foi possível adicionar o elemento de menu."; -App::$strings["Menu Item Permissions"] = "Permissões do item do menu"; -App::$strings["Link Name"] = "Nome do Link"; -App::$strings["Link or Submenu Target"] = "Alvo do Link ou Submenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Insira o URL do link ou selecione um nome de menu para criar um submenu"; -App::$strings["Use magic-auth if available"] = "Usar magic-auth se disponível"; -App::$strings["Open link in new window"] = "Abrir link em uma nova janela"; -App::$strings["Order in list"] = "Ordem na lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Números mais altos descem para o fim da lista"; -App::$strings["Submit and finish"] = "Enviar e terminar"; -App::$strings["Submit and continue"] = "Enviar e continuar"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Alvo do Link"; -App::$strings["Edit menu"] = "Editar menu"; -App::$strings["Edit element"] = "Editar elemento"; -App::$strings["Drop element"] = "Descartar elemento"; -App::$strings["New element"] = "Novo elemento"; -App::$strings["Edit this menu container"] = "Editar esta caixa de menu"; -App::$strings["Add menu element"] = "Adicionar um elemento de menu"; -App::$strings["Delete this menu item"] = "Deleter este item de menu"; -App::$strings["Edit this menu item"] = "Editar este item de menu"; -App::$strings["Menu item not found."] = "O item de menu não foi encontrado."; -App::$strings["Menu item deleted."] = "O item de menu foi deletado."; -App::$strings["Menu item could not be deleted."] = "Não foi possível deletar o item de menu."; -App::$strings["Edit Menu Element"] = "Editar elemento de menu"; -App::$strings["Link text"] = "Texto do link"; -App::$strings["Set your current mood and tell your friends"] = "Marque seu humor atual e compartilhe com seus amigos"; -App::$strings["Total votes"] = "Votos totais"; -App::$strings["Average Rating"] = "Média das avaliações"; -App::$strings["Unable to lookup recipient."] = "Não foi possível encontrar o destinatário."; -App::$strings["Unable to communicate with requested channel."] = "Não foi possível comunicar com o canal solicitado."; -App::$strings["Cannot verify requested channel."] = "Não foi possível verificar o canal requisitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "O canal solicitado tem restrições a mensagens privadas. Falha no envio."; -App::$strings["Messages"] = "Mensagens"; -App::$strings["Message deleted."] = "A mensagem foi excluída."; -App::$strings["Message recalled."] = "Mensagem retirada."; -App::$strings["Send Private Message"] = "Enviar mensagem privada"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Assunto:"; -App::$strings["Send"] = "Enviar"; -App::$strings["Message not found."] = "Mensagem não encontrada."; -App::$strings["Delete message"] = "Excluir a mensagem"; -App::$strings["Recall message"] = "Retirar mensagem"; -App::$strings["Message has been recalled."] = "A mensagem foi retirada."; -App::$strings["Private Conversation"] = "Conversa privada"; -App::$strings["Delete conversation"] = "Excluir conversa"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicação segura indisponível. Você talvez consiga responder pela página de perfil do remetente."; -App::$strings["Send Reply"] = "Enviar resposta"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Você criou %1$.0f de %2$.0f canais permitidos."; -App::$strings["Create a new channel"] = "Criar um novo canal"; -App::$strings["Current Channel"] = "Canal atual"; -App::$strings["Attach to one of your channels by selecting it."] = "Selecione um dos seus canais para utilizá-lo."; -App::$strings["Default Channel"] = "Canal padrão"; -App::$strings["Make Default"] = "Tornar padrão"; -App::$strings["Wall Photos"] = "Fotos do mural"; -App::$strings["Profile Match"] = "Correspondência de perfil"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Nenhuma palavra-chave para combinar. Por favor, adicione palavras-chave ao seu perfil padrão."; -App::$strings["is interested in:"] = "se interessa por:"; -App::$strings["No matches"] = "Nenhuma correspondência"; -App::$strings["Menu updated."] = "Menu atualizado."; -App::$strings["Unable to update menu."] = "Não foi possível atualizar o menu."; -App::$strings["Menu created."] = "O menu foi criado."; -App::$strings["Unable to create menu."] = "Não foi possível criar o menu."; -App::$strings["Manage Menus"] = "Administrar menus"; -App::$strings["Drop"] = "Descartar"; -App::$strings["Create a new menu"] = "Criar um novo menu"; -App::$strings["Delete this menu"] = "Deletar este menu"; -App::$strings["Edit menu contents"] = "Editar os conteúdos do menu"; -App::$strings["Edit this menu"] = "Editar este menu"; -App::$strings["New Menu"] = "Novo menu"; -App::$strings["Menu name"] = "Nome do menu"; -App::$strings["Must be unique, only seen by you"] = "Deve ser único, exibido somente para você"; -App::$strings["Menu title"] = "Título do menu"; -App::$strings["Menu title as seen by others"] = "Título do menu quando visto por outros"; -App::$strings["Allow bookmarks"] = "Habilitar links guardados"; -App::$strings["Menu may be used to store saved bookmarks"] = "O menu pode ser utilizado para armazenar links guardados"; -App::$strings["Menu deleted."] = "Menu deletado."; -App::$strings["Menu could not be deleted."] = "Não foi possível deletar o menu."; -App::$strings["Edit Menu"] = "Editar menu"; -App::$strings["Add or remove entries to this menu"] = "Adicionar ou remover entradas deste menu"; -App::$strings["Conversation removed."] = "A conversa foi removida."; -App::$strings["No messages."] = "Nenhuma mensagem."; -App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -App::$strings["Add a Channel"] = "Adicionar um canal"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Um canal é uma coleção sua de páginas relacionadas. Um canal pode ser usado para um perfil de rede social, um blog, grupos de conversação e fóruns temáticos, páginas de personalidades, e muito mais. Você pode criar tantos canais quanto o provedor de serviço permita."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemplos: \"Maria Caiouá\", \"Roberto Salinas\", \"Elis e sua banda\", \"Futebol de salão\", \"Fanáticos por aeromodelismo\""; -App::$strings["Choose a short nickname"] = "Escolha um apelido curto"; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Seu apelido será usado para criar um endereço para o canal de fácil memorização (como um endereço de email), que você poderá compartilhar com outros."; -App::$strings["Or import an existing channel from another location"] = "Ou importe um canal existente de outro local"; -App::$strings["Channel Type"] = "Tipo de canal"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Por favor, escolha um tipo de canal (por exemplo rede social ou fórum de comunidade) e requisito de privacidade, para que possamos configurar as melhores permissões para você"; -App::$strings["Hubzilla - "The Network""] = "Hubzilla - "A Rede""; -App::$strings["Welcome to %s"] = "Bem-vindo(a) a %s"; -App::$strings["Invalid request identifier."] = "Identificador de solicitação inválido"; -App::$strings["Discard"] = "Descartar"; -App::$strings["No more system notifications."] = "Sem novas notificações do sistema."; -App::$strings["System Notifications"] = "Notificações do sistema"; -App::$strings["Unable to find your hub."] = "Não foi possível localizar seu hub."; -App::$strings["Post successful."] = "Publicado com sucesso."; -App::$strings["invalid target signature"] = "assinatura do destino inválida"; -App::$strings["OpenID protocol error. No ID returned."] = "Erro do protocolo OpenID. Nenhuma ID retornada."; -App::$strings["App installed."] = "Aplicativo instalado"; -App::$strings["Malformed app."] = "Aplicativo malformado."; -App::$strings["Embed code"] = "Embarcar código"; -App::$strings["Edit App"] = "Edite aplicativos"; -App::$strings["Create App"] = "Criar aplicativo"; -App::$strings["Name of app"] = "Nome do aplicativo"; -App::$strings["Location (URL) of app"] = "Endereço (URL) do aplicativo"; -App::$strings["Photo icon URL"] = "URL da foto de ícone"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Version ID"] = "ID da versão"; -App::$strings["Price of app"] = "Preço do aplicativo"; -App::$strings["Location (URL) to purchase app"] = "Endereço (URL) para comprar o aplicativo"; -App::$strings["Poll"] = "Votação"; -App::$strings["View Results"] = "Ver resultados"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "A remoção da conta fica desabilitada por 48 horas após uma troca de senha da conta."; -App::$strings["Remove This Account"] = "Remover esta conta"; -App::$strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Isso irá remover completamente esta conta, incluindo todos os canais da rede. Uma vez feito isso eles não poderão ser recuperados."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remove esta conta, todos os seus canais e todos os clones desses canais da rede."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por padrão, apenas as instâncias dos canais localizadas neste hub serão removidas da rede"; -App::$strings["No service class restrictions found."] = "Não foram encontradas restrições de classe de serviço."; -App::$strings["Schema Default"] = "Padrão do esquema"; -App::$strings["Sans-Serif"] = "Sans-Serif"; -App::$strings["Monospace"] = "Monospace"; -App::$strings["Theme settings"] = "Configurações de tema"; -App::$strings["Set scheme"] = "Definir esquema"; -App::$strings["Set font-size for posts and comments"] = "Definir o tamanho da fonte para publicações e comentários"; -App::$strings["Set font face"] = "Definir a face da fonte"; -App::$strings["Set iconset"] = "Definir o conjunto de ícones"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Definir o tamanho da sombra grande, padrão 15px 15px 15px"; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Definir o tamanho da sombra pequena, padrão 5px 5px 5px"; -App::$strings["Set shadow color, default #000"] = "Definir a cor da sombra, padrão #000"; -App::$strings["Set radius size, default 5px"] = "Definir o tamanho do raio de curvatura, padrão 5px"; -App::$strings["Set line-height for posts and comments"] = "Definir a altura da linha para publicações e comentários"; -App::$strings["Set background image"] = "Definir a imagem do pano de fundo"; -App::$strings["Set background attachment"] = "Definir o anexo de pano de fundo"; -App::$strings["Set background color"] = "Definir a cor do pano de fundo"; -App::$strings["Set section background image"] = "Definir a imagem de fundo de seção"; -App::$strings["Set section background color"] = "Definir a cor de fundo de seção"; -App::$strings["Set color of items - use hex"] = "Definir a cor dos items - use hex"; -App::$strings["Set color of links - use hex"] = "Definir a cor dos links - use hex"; -App::$strings["Set max-width for items. Default 400px"] = "Definir a largura máxima para itens. Padrão 400px"; -App::$strings["Set min-width for items. Default 240px"] = "Definir a largura mínima para itens. Padrão 240px"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Definir a largura do envólucro para conteúdo genérico. Padrão 48%"; -App::$strings["Set color of fonts - use hex"] = "Definir a cor das fontes - use hex"; -App::$strings["Set background-size element"] = "Definir o elemento background-size"; -App::$strings["Item opacity"] = "Opacidade de itens"; -App::$strings["Display post previews only"] = "Exibir apenas a pré-visualização de publicações"; -App::$strings["Display side bar on channel page"] = "Exibir a barra lateral na página do canal"; -App::$strings["Colour of the navigation bar"] = "Cor da barra de navegação"; -App::$strings["Item float"] = "Flutuação de item"; -App::$strings["Left offset of the section element"] = "Deslocamento esquerdo do elemento de seção"; -App::$strings["Right offset of the section element"] = "Deslocamento direito do elemento de seção"; -App::$strings["Section width"] = "largura de seção"; -App::$strings["Left offset of the aside"] = "Deslocamento esquerdo do aparte"; -App::$strings["Right offset of the aside element"] = "Deslocamento direito do aparte"; -App::$strings["None"] = "Nenhum"; -App::$strings["Header image"] = "Imagem de cabeçalho"; -App::$strings["Header image only on profile pages"] = "Imagem de cabeçalho apenas em páginas de perfil"; -App::$strings["Light (Hubzilla default)"] = "Leve (padrão da Hubzilla)"; -App::$strings["Narrow navbar"] = "Barra de navegação estreita"; -App::$strings["Navigation bar background color"] = "Cor de fundo da barra de navegação"; -App::$strings["Navigation bar gradient top color"] = "Cor no topo de gradiente da barra de navegação"; -App::$strings["Navigation bar gradient bottom color"] = "Cor na base de gradiente da barra de navegação"; -App::$strings["Navigation active button gradient top color"] = "Cor no topo de gradiente de botão ativo de navegação"; -App::$strings["Navigation active button gradient bottom color"] = "Cor na base de gradiente de botão ativo de navegação"; -App::$strings["Navigation bar border color "] = "Cor de borda da barra de navegação"; -App::$strings["Navigation bar icon color "] = "Cor de ícone da barra de navegação"; -App::$strings["Navigation bar active icon color "] = "Cor de ícone ativo da barra de navegação"; -App::$strings["link color"] = "cor dos links"; -App::$strings["Set font-color for banner"] = "Definir a cor da fonte para o cartaz"; -App::$strings["Set the background color"] = "Definir a cor do pano de fundo"; -App::$strings["Set the background image"] = "Definir a imagem do pano de fundo"; -App::$strings["Set the background color of items"] = "Definir a cor de fundo dos items"; -App::$strings["Set the background color of comments"] = "Definir a cor de fundo dos comentários"; -App::$strings["Set the border color of comments"] = "Definir a cor da borda dos comentários"; -App::$strings["Set the indent for comments"] = "Definir a indentação de comentários"; -App::$strings["Set the basic color for item icons"] = "Definir a cor básica para ícones de itens"; -App::$strings["Set the hover color for item icons"] = "Definir a cor para ícones de itens quando que o mouse está sobre eles"; -App::$strings["Set font-size for the entire application"] = "Definir o tamanho da fonte para a aplicação como um todo"; -App::$strings["Set font-color for posts and comments"] = "Definir a cor da fonte para publicações e comentários"; -App::$strings["Set radius of corners"] = "Definir o raio de curvatura dos cantos"; -App::$strings["Set shadow depth of photos"] = "Definir a profundidade de sombra das fotos"; -App::$strings["Set maximum width of conversation regions"] = "Definir a largura máxima da área de conversas"; -App::$strings["Center conversation regions"] = "Centralizar regiões de conversação"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Definir opacidade mínima para a barra de navegação - para escondê-la"; -App::$strings["Set size of conversation author photo"] = "Definir o tamanho da foto do autor da conversa"; -App::$strings["Set size of followup author photos"] = "Definir o tamanho da foto dos autores de comentários"; -App::$strings["Sloppy photo albums"] = "Álbuns de fotos desleixados"; -App::$strings["Are you a clean desk or a messy desk person?"] = "Sua mesa é do tipo limpinha ou bagunçada?"; -App::$strings["Update %s failed. See error logs."] = "A atualização %s falhou. Veja os logs de erro."; -App::$strings["Update Error at %s"] = "Erro de atualização em %s"; -App::$strings["Create an account to access services and applications within the Hubzilla"] = "Crie uma conta para acessar serviços e aplicações na Hubzilla"; -App::$strings["Password"] = "Senha"; -App::$strings["Remember me"] = "Lembrar de mim"; -App::$strings["Forgot your password?"] = "Esqueceu a sua senha?"; -App::$strings["permission denied"] = "permissão negada"; -App::$strings["Got Zot?"] = "Já tem Zot?"; -App::$strings["toggle mobile"] = "alternar para interface móvel"; diff --git a/view/ru/hmessages.po b/view/ru/hmessages.po deleted file mode 100644 index b04bf742f..000000000 --- a/view/ru/hmessages.po +++ /dev/null @@ -1,14855 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -# Translators: -# Alex , 2016-2017 -# Max Kostikov , 2018 -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: hubzilla\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-08-21 11:34+0200\n" -"PO-Revision-Date: 2018-08-21 16:39+0200\n" -"Last-Translator: Max Kostikov \n" -"Language-Team: Russian (http://www.transifex.com/Friendica/hubzilla/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))\n" - -#: ../../util/nconfig.php:34 -msgid "Source channel not found." -msgstr "Канал-источник не найден." - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:19 -msgid "lonely" -msgstr "одинокий" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:20 -msgid "drunk" -msgstr "пьяный" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:21 -msgid "horny" -msgstr "возбуждённый" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:22 -msgid "stoned" -msgstr "под кайфом" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:23 -msgid "fucked up" -msgstr "облажался" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:24 -msgid "clusterfucked" -msgstr "в полной заднице" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:25 -msgid "crazy" -msgstr "сумасшедший" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:26 -msgid "hurt" -msgstr "обиженный" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:27 -msgid "sleepy" -msgstr "сонный" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:28 -msgid "grumpy" -msgstr "сердитый" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:29 -msgid "high" -msgstr "кайфует" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:30 -msgid "semi-conscious" -msgstr "в полубезсознании" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:31 -msgid "in love" -msgstr "влюблённый" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:32 -msgid "in lust" -msgstr "похотливый" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:33 -msgid "naked" -msgstr "обнажённый" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:34 -msgid "stinky" -msgstr "вонючий" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:35 -msgid "sweaty" -msgstr "потный" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:36 -msgid "bleeding out" -msgstr "истекающий кровью" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:37 -msgid "victorious" -msgstr "победивший" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:38 -msgid "defeated" -msgstr "проигравший" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:39 -msgid "envious" -msgstr "завидует" - -#: ../../extend/addon/hzaddons/moremoods/moremoods.php:40 -msgid "jealous" -msgstr "ревнует" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" -msgstr "Публиковать в Dreamwidth" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" -msgstr "Включить плагин публикаций Dreamwidth" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:73 -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:85 -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:53 -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:73 -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:85 -#: ../../extend/addon/hzaddons/planets/planets.php:149 -#: ../../extend/addon/hzaddons/libertree/libertree.php:69 -#: ../../extend/addon/hzaddons/libertree/libertree.php:81 -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:211 -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:215 -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:84 -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:120 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:219 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:223 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:227 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:231 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:309 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:313 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:351 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:355 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:359 -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:70 -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:82 -#: ../../extend/addon/hzaddons/twitter/twitter.php:243 -#: ../../extend/addon/hzaddons/twitter/twitter.php:252 -#: ../../extend/addon/hzaddons/twitter/twitter.php:261 -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:178 -#: ../../extend/addon/hzaddons/rtof/rtof.php:81 -#: ../../extend/addon/hzaddons/rtof/rtof.php:85 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:389 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:424 -#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:81 -#: ../../extend/addon/hzaddons/visage/visage.php:166 -#: ../../extend/addon/hzaddons/cart/cart.php:1206 -#: ../../extend/addon/hzaddons/cart/cart.php:1213 -#: ../../extend/addon/hzaddons/cart/cart.php:1221 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:73 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:653 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:657 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:99 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:104 -#: ../../extend/addon/hzaddons/nsabait/nsabait.php:157 -#: ../../extend/addon/hzaddons/nofed/nofed.php:72 -#: ../../extend/addon/hzaddons/nofed/nofed.php:76 -#: ../../extend/addon/hzaddons/redred/redred.php:95 -#: ../../extend/addon/hzaddons/redred/redred.php:99 -#: ../../extend/addon/hzaddons/wppost/wppost.php:82 -#: ../../extend/addon/hzaddons/wppost/wppost.php:105 -#: ../../extend/addon/hzaddons/wppost/wppost.php:109 ../../boot.php:1621 -#: ../../view/theme/redbasic/php/config.php:98 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Events.php:470 -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Sources.php:116 -#: ../../Zotlabs/Module/Sources.php:151 -#: ../../Zotlabs/Module/Filestorage.php:178 -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 -#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 -#: ../../Zotlabs/Module/Admin/Site.php:266 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Menu.php:162 -#: ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Settings/Channel.php:315 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 -#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Wiki.php:218 -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "No" -msgstr "Нет" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:73 -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:85 -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:53 -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:73 -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:85 -#: ../../extend/addon/hzaddons/planets/planets.php:149 -#: ../../extend/addon/hzaddons/libertree/libertree.php:69 -#: ../../extend/addon/hzaddons/libertree/libertree.php:81 -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:211 -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:215 -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:84 -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:120 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:219 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:223 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:227 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:231 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:309 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:313 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:351 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:355 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:359 -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:70 -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:82 -#: ../../extend/addon/hzaddons/twitter/twitter.php:243 -#: ../../extend/addon/hzaddons/twitter/twitter.php:252 -#: ../../extend/addon/hzaddons/twitter/twitter.php:261 -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:178 -#: ../../extend/addon/hzaddons/rtof/rtof.php:81 -#: ../../extend/addon/hzaddons/rtof/rtof.php:85 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:389 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:424 -#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:81 -#: ../../extend/addon/hzaddons/visage/visage.php:166 -#: ../../extend/addon/hzaddons/cart/cart.php:1206 -#: ../../extend/addon/hzaddons/cart/cart.php:1213 -#: ../../extend/addon/hzaddons/cart/cart.php:1221 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:73 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:653 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:657 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:99 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:104 -#: ../../extend/addon/hzaddons/nsabait/nsabait.php:157 -#: ../../extend/addon/hzaddons/nofed/nofed.php:72 -#: ../../extend/addon/hzaddons/nofed/nofed.php:76 -#: ../../extend/addon/hzaddons/redred/redred.php:95 -#: ../../extend/addon/hzaddons/redred/redred.php:99 -#: ../../extend/addon/hzaddons/wppost/wppost.php:82 -#: ../../extend/addon/hzaddons/wppost/wppost.php:105 -#: ../../extend/addon/hzaddons/wppost/wppost.php:109 ../../boot.php:1621 -#: ../../view/theme/redbasic/php/config.php:98 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Events.php:470 -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Sources.php:116 -#: ../../Zotlabs/Module/Sources.php:151 -#: ../../Zotlabs/Module/Filestorage.php:178 -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Mitem.php:176 -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 -#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Admin/Site.php:268 -#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Menu.php:162 -#: ../../Zotlabs/Module/Menu.php:221 -#: ../../Zotlabs/Module/Settings/Channel.php:315 -#: ../../Zotlabs/Module/Settings/Display.php:100 -#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 -#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Wiki.php:218 -#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "Yes" -msgstr "Да" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:77 -msgid "Dreamwidth username" -msgstr "Имя пользователя Dreamwidth" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:81 -msgid "Dreamwidth password" -msgstr "Пароль Dreamwidth" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" -msgstr "Публиковать в Dreamwidth по умолчанию" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" -msgstr "Настройки публикаций в Dreamwidth" - -#: ../../extend/addon/hzaddons/dwpost/dwpost.php:89 -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:100 -#: ../../extend/addon/hzaddons/superblock/superblock.php:120 -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:69 -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:95 -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:89 -#: ../../extend/addon/hzaddons/planets/planets.php:153 -#: ../../extend/addon/hzaddons/libertree/libertree.php:85 -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:71 -#: ../../extend/addon/hzaddons/logrot/logrot.php:35 -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:124 -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:219 -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:92 -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:124 -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:237 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:371 -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:86 -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:168 -#: ../../extend/addon/hzaddons/likebanner/likebanner.php:57 -#: ../../extend/addon/hzaddons/twitter/twitter.php:218 -#: ../../extend/addon/hzaddons/twitter/twitter.php:265 -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1159 -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:831 -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:53 -#: ../../extend/addon/hzaddons/skeleton/skeleton.php:65 -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:284 -#: ../../extend/addon/hzaddons/startpage/startpage.php:113 -#: ../../extend/addon/hzaddons/pageheader/pageheader.php:48 -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:191 -#: ../../extend/addon/hzaddons/rtof/rtof.php:101 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:322 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:380 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:432 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:900 -#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:85 -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:97 -#: ../../extend/addon/hzaddons/piwik/piwik.php:95 -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:136 -#: ../../extend/addon/hzaddons/visage/visage.php:170 -#: ../../extend/addon/hzaddons/cart/cart.php:1251 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:78 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:647 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:144 -#: ../../extend/addon/hzaddons/nsabait/nsabait.php:161 -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:84 -#: ../../extend/addon/hzaddons/nofed/nofed.php:80 -#: ../../extend/addon/hzaddons/redred/redred.php:119 -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:60 -#: ../../extend/addon/hzaddons/irc/irc.php:53 -#: ../../extend/addon/hzaddons/wppost/wppost.php:113 -#: ../../view/theme/redbasic/php/config.php:93 ../../include/js_strings.php:22 -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../Zotlabs/Widget/Wiki_pages.php:40 -#: ../../Zotlabs/Widget/Wiki_pages.php:99 -#: ../../Zotlabs/Widget/Eventstools.php:16 ../../Zotlabs/Module/Appman.php:153 -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1127 -#: ../../Zotlabs/Module/Photos.php:1245 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Pdledit.php:98 ../../Zotlabs/Module/Mail.php:431 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Sources.php:117 -#: ../../Zotlabs/Module/Sources.php:154 -#: ../../Zotlabs/Module/Filestorage.php:183 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Connedit.php:887 -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Setup.php:308 -#: ../../Zotlabs/Module/Setup.php:349 ../../Zotlabs/Module/Mitem.php:259 -#: ../../Zotlabs/Module/Admin/Addons.php:438 -#: ../../Zotlabs/Module/Admin/Site.php:309 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Security.php:112 -#: ../../Zotlabs/Module/Admin/Profs.php:178 -#: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Defperms.php:249 -#: ../../Zotlabs/Module/Settings/Features.php:79 -#: ../../Zotlabs/Module/Settings/Channel.php:516 -#: ../../Zotlabs/Module/Settings/Featured.php:54 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Display.php:192 -#: ../../Zotlabs/Module/Settings/Permcats.php:115 -#: ../../Zotlabs/Module/Settings/Oauth2.php:85 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Import.php:565 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Group.php:121 -#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Profiles.php:723 -#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Import_items.php:129 -msgid "Submit" -msgstr "Отправить" - -#: ../../extend/addon/hzaddons/mdpost/mdpost.php:40 ../../include/text.php:1886 -#: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:208 -#: ../../Zotlabs/Module/Wiki.php:350 -msgid "Markdown" -msgstr "Разметка" - -#: ../../extend/addon/hzaddons/mdpost/mdpost.php:41 -msgid "Use markdown for editing posts" -msgstr "Использовать язык разметки для редактирования публикаций" - -#: ../../extend/addon/hzaddons/randpost/randpost.php:97 -msgid "You're welcome." -msgstr "Пожалуйста." - -#: ../../extend/addon/hzaddons/randpost/randpost.php:98 -msgid "Ah shucks..." -msgstr "О, чёрт..." - -#: ../../extend/addon/hzaddons/randpost/randpost.php:99 -msgid "Don't mention it." -msgstr "Не стоит благодарности." - -#: ../../extend/addon/hzaddons/randpost/randpost.php:100 -msgid "<blush>" -msgstr "<краснею>" - -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:19 -msgid "Send test email" -msgstr "Отправить тестовый email" - -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:50 -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:50 -msgid "No recipients found." -msgstr "Получателей не найдено." - -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:66 -msgid "Mail sent." -msgstr "Сообщение отправлено" - -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:68 -msgid "Sending of mail failed." -msgstr "Не удалось отправить сообщение." - -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:77 -msgid "Mail Test" -msgstr "Тестовое сообщение" - -#: ../../extend/addon/hzaddons/mailtest/mailtest.php:96 -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:92 -msgid "Message subject" -msgstr "Тема сообщения" - -#: ../../extend/addon/hzaddons/donate/donate.php:21 -msgid "Project Servers and Resources" -msgstr "Серверы и ресурсы проекта" - -#: ../../extend/addon/hzaddons/donate/donate.php:22 -msgid "Project Creator and Tech Lead" -msgstr "Создатель проекта и технический руководитель" - -#: ../../extend/addon/hzaddons/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "Администратор, разработчик, администратор каталога, поддержка" - -#: ../../extend/addon/hzaddons/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." -msgstr "И сотни других людей и организаций которые помогали в создании Hubzilla." - -#: ../../extend/addon/hzaddons/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." -msgstr "Проекты Redmatrix / Hubzilla предоставляются, в основном, добровольцами, которые предоставляют свое время и опыт и, часто, оплачивают из своего кармана услуги, которыми они делятся с другими." - -#: ../../extend/addon/hzaddons/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"you do.)" -msgstr "Здесь нет корпоративного финансирования и рекламы, мы не собираем и не продаем вашу личную информацию. (Мы не контролируем вашу личную информацию - это делаете вы.)" - -#: ../../extend/addon/hzaddons/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." -msgstr "Помогите поддержать нашу новаторскую работу в областях децентрализации, веб-идентификации и конфиденциальности." - -#: ../../extend/addon/hzaddons/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." -msgstr "В ваших пожертвованиях поддерживают серверы и службы, а также помогают нам предоставлять новые возможности и продолжать развитие." - -#: ../../extend/addon/hzaddons/donate/donate.php:60 -msgid "Donate" -msgstr "Пожертвовать" - -#: ../../extend/addon/hzaddons/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" -msgstr "Выберите проект, разработчика или общедоступный узел для поддержки в форме единоразового пожертвования" - -#: ../../extend/addon/hzaddons/donate/donate.php:63 -msgid "Donate Now" -msgstr "Пожертвовать сейчас" - -#: ../../extend/addon/hzaddons/donate/donate.php:64 -msgid "" -"Or become a project sponsor (Hubzilla Project only)" -msgstr "или станьте спонсором проекта (только для Hubzilla)" - -#: ../../extend/addon/hzaddons/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" -msgstr "Пожалуйста, если желаете, укажите ваше имя для отображения в списке спонсоров." - -#: ../../extend/addon/hzaddons/donate/donate.php:66 -msgid "Sponsor" -msgstr "Спонсор" - -#: ../../extend/addon/hzaddons/donate/donate.php:69 -msgid "Special thanks to: " -msgstr "Особые благодарности:" - -#: ../../extend/addon/hzaddons/superblock/superblock.php:112 -msgid "Currently blocked" -msgstr "В настоящее время заблокирован" - -#: ../../extend/addon/hzaddons/superblock/superblock.php:114 -msgid "No channels currently blocked" -msgstr "В настоящее время никакие каналы не блокируются" - -#: ../../extend/addon/hzaddons/superblock/superblock.php:116 -#: ../../Zotlabs/Module/Photos.php:1025 ../../Zotlabs/Module/Tagrm.php:137 -#: ../../Zotlabs/Module/Admin/Addons.php:455 -msgid "Remove" -msgstr "Удалить" - -#: ../../extend/addon/hzaddons/superblock/superblock.php:120 -msgid "Superblock Settings" -msgstr "Настройки Superblock" - -#: ../../extend/addon/hzaddons/superblock/superblock.php:345 -msgid "Block Completely" -msgstr "Заблокировать полностью" - -#: ../../extend/addon/hzaddons/superblock/superblock.php:394 -msgid "superblock settings updated" -msgstr "Настройки Superblock обновлены." - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:31 -msgid "XMPP settings updated." -msgstr "Настройки XMPP обновлены." - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:53 -msgid "Enable Chat" -msgstr "Включить чат" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:58 -msgid "Individual credentials" -msgstr "Индивидуальные разрешения" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" -msgstr "Сервер Jabber BOSH" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:69 -msgid "XMPP Settings" -msgstr "Настройки XMPP" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:91 -#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:46 -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:150 -msgid "Save Settings" -msgstr "Сохранить настройки" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" -msgstr "Узел Jabber BOSH" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:93 -msgid "Use central userbase" -msgstr "Использовать центральную базу данных" - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:93 -msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "Если включено, участники автоматически войдут на сервер ejabberd, который должен быть установлен на этом компьютере с синхронизированными учетными данными через скрипт \"auth_ejabberd.php\"." - -#: ../../extend/addon/hzaddons/xmpp/xmpp.php:102 -#: ../../extend/addon/hzaddons/logrot/logrot.php:54 -#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:54 -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:82 -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:184 -#: ../../extend/addon/hzaddons/twitter/twitter.php:772 -#: ../../extend/addon/hzaddons/piwik/piwik.php:116 -#: ../../Zotlabs/Module/Defperms.php:103 -#: ../../Zotlabs/Module/Settings/Channel.php:272 -msgid "Settings updated." -msgstr "Настройки обновлены." - -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:19 -msgid "Send email to all members" -msgstr "Отправить email всем участникам" - -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:33 -#: ../../Zotlabs/Lib/Enotify.php:65 -#, php-format -msgid "%s Administrator" -msgstr "администратор %s" - -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." -msgstr "%1$d из %2$d сообщений отправлено." - -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:81 -msgid "Send email to all hub members." -msgstr "Отправить email всем участникам узла." - -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:93 -msgid "Sender Email address" -msgstr "Адрес электронной почты отправителя" - -#: ../../extend/addon/hzaddons/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" -msgstr "Тестовый режим (отправка только администратору узла)" - -#: ../../extend/addon/hzaddons/buglink/buglink.php:16 -#: ../../Zotlabs/Lib/Apps.php:299 -msgid "Report Bug" -msgstr "Сообщить об ошибке" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" -msgstr "Опубликовать в InsaneJournal" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" -msgstr "Включить плагин публикаций InsaneJournal" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "Имя пользователя InsaneJournal" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:81 -msgid "InsaneJournal password" -msgstr "Пароль InsaneJournal" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" -msgstr "Публиковать в InsaneJournal по умолчанию" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" -msgstr "Настройки публикаций в InsaneJournal" - -#: ../../extend/addon/hzaddons/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." -msgstr "Настройки InsaneJournal сохранены." - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" -msgstr "Каталог статистики Hubzilla" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:95 -msgid "Total Hubs" -msgstr "Всего хабов" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" -msgstr "Хабы Hubzilla" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:99 -msgid "Friendica Hubs" -msgstr "Хабы Friendica" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:101 -msgid "Diaspora Pods" -msgstr "Стручки Diaspora" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" -msgstr "Каналы Hubzilla" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:105 -msgid "Friendica Channels" -msgstr "Каналы Friendica" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:107 -msgid "Diaspora Channels" -msgstr "Каналы Diaspora" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:109 -msgid "Aged 35 and above" -msgstr "Возраст 35 и выше" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:111 -msgid "Aged 34 and under" -msgstr "Возраст 34 и ниже" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:113 -msgid "Average Age" -msgstr "Средний возраст" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:115 -msgid "Known Chatrooms" -msgstr "Известные чаты" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:117 -msgid "Known Tags" -msgstr "Известные теги" - -#: ../../extend/addon/hzaddons/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," -msgstr "Обратите внимание, что статистика Diaspora и Friendica это только те, о которых ** этот каталог ** знает, а не все известные в сети. Это также относится и к чатам." - -#: ../../extend/addon/hzaddons/chess/chess.php:353 -#: ../../extend/addon/hzaddons/chess/chess.php:542 -msgid "Invalid game." -msgstr "Недействительная игра" - -#: ../../extend/addon/hzaddons/chess/chess.php:359 -#: ../../extend/addon/hzaddons/chess/chess.php:582 -msgid "You are not a player in this game." -msgstr "Вы не играете в эту игру." - -#: ../../extend/addon/hzaddons/chess/chess.php:415 -msgid "You must be a local channel to create a game." -msgstr "Ваш канал должен быть локальным чтобы создать игру." - -#: ../../extend/addon/hzaddons/chess/chess.php:433 -msgid "You must select one opponent that is not yourself." -msgstr "Вы должны выбрать противника который не является вами." - -#: ../../extend/addon/hzaddons/chess/chess.php:444 -msgid "Random color chosen." -msgstr "Выбран случайный цвет." - -#: ../../extend/addon/hzaddons/chess/chess.php:452 -msgid "Error creating new game." -msgstr "Ошибка создания новой игры." - -#: ../../extend/addon/hzaddons/chess/chess.php:486 -#: ../../include/channel.php:1151 -msgid "Requested channel is not available." -msgstr "Запрошенный канал не доступен." - -#: ../../extend/addon/hzaddons/chess/chess.php:500 -msgid "You must select a local channel /chess/channelname" -msgstr "Вы должны выбрать локальный канал /chess/channelname" - -#: ../../extend/addon/hzaddons/chess/chess.php:508 -#: ../../Zotlabs/Module/Channel.php:35 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Вы должны авторизоваться, чтобы увидеть эту страницу." - -#: ../../extend/addon/hzaddons/chess/chess.php:1066 -msgid "Enable notifications" -msgstr "Включить оповещения" - -#: ../../extend/addon/hzaddons/planets/planets.php:121 -msgid "Planets Settings updated." -msgstr "Настройки Planets обновлены." - -#: ../../extend/addon/hzaddons/planets/planets.php:149 -msgid "Enable Planets Plugin" -msgstr "Включить плагин Planets" - -#: ../../extend/addon/hzaddons/planets/planets.php:153 -msgid "Planets Settings" -msgstr "Настройки Planets" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:38 -msgid "Post to Libertree" -msgstr "Опубликовать в Libertree" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "Включить плагин публикаций Libertree" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:73 -msgid "Libertree API token" -msgstr "Токен Libertree API" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:77 -msgid "Libertree site URL" -msgstr "URL сайта Libertree" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:81 -msgid "Post to Libertree by default" -msgstr "Публиковать в Libertree по умолчанию" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:85 -msgid "Libertree Post Settings" -msgstr "Настройки публикаций в Libertree" - -#: ../../extend/addon/hzaddons/libertree/libertree.php:99 -msgid "Libertree Settings saved." -msgstr "Настройки Libertree сохранены." - -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 -msgid "Only authenticate automatically to sites of your friends" -msgstr "Автоматически аутентифицироватся только на сайтах ваших друзей" - -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 -msgid "By default you are automatically authenticated anywhere in the network" -msgstr "По умолчанию вы автоматически аутентифицируетесь во всей сети" - -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:71 -msgid "Authchoose Settings" -msgstr "Настройки выбора аутентификации" - -#: ../../extend/addon/hzaddons/authchoose/authchoose.php:85 -msgid "Atuhchoose Settings updated." -msgstr "Настройки выбора аутентификации обновлены." - -#: ../../extend/addon/hzaddons/logrot/logrot.php:36 -msgid "Logfile archive directory" -msgstr "Каталог архивирования журнала" - -#: ../../extend/addon/hzaddons/logrot/logrot.php:36 -msgid "Directory to store rotated logs" -msgstr "Каталог для хранения заархивированных журналов" - -#: ../../extend/addon/hzaddons/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" -msgstr "Размер файла журнала в байтах для архивирования" - -#: ../../extend/addon/hzaddons/logrot/logrot.php:38 -msgid "Number of logfiles to retain" -msgstr "Количество сохраняемых файлов журналов" - -#: ../../extend/addon/hzaddons/qrator/qrator.php:48 -msgid "QR code" -msgstr "QR-код" - -#: ../../extend/addon/hzaddons/qrator/qrator.php:63 -msgid "QR Generator" -msgstr "Генератор QR-кодов" - -#: ../../extend/addon/hzaddons/qrator/qrator.php:64 -msgid "Enter some text" -msgstr "Введите любой текст" - -#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" -msgstr "текст, который будет добавлен во все исходящие публикации с этого сайта" - -#: ../../extend/addon/hzaddons/redfiles/redfilehelper.php:64 -msgid "file" -msgstr "файл" - -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:109 -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:82 -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:119 -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:73 -#: ../../include/items.php:364 ../../Zotlabs/Web/WebServer.php:122 -#: ../../Zotlabs/Module/Subthread.php:86 ../../Zotlabs/Module/Like.php:296 -#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Group.php:83 ../../Zotlabs/Module/Profperm.php:28 -#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Import_items.php:120 -msgid "Permission denied" -msgstr "Доступ запрещен" - -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" -msgstr "Импорт файлового хранилища Redmatrix" - -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." -msgstr "Это позволит импортировать все ваши файлы в Redmatrix в этот канал." - -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:121 -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:131 -msgid "Redmatrix Server base URL" -msgstr "Базовый URL сервера Redmatrix" - -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:122 -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:132 -msgid "Redmatrix Login Username" -msgstr "Имя пользователя Redmatrix" - -#: ../../extend/addon/hzaddons/redfiles/redfiles.php:123 -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:133 -msgid "Redmatrix Login Password" -msgstr "Пароль Redmatrix" - -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" -msgstr "Деактивировать функцию" - -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:215 -msgid "Hide the button and show the smilies directly." -msgstr "Скрыть кнопку и сразу показывать смайлики." - -#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:219 -msgid "Smileybutton Settings" -msgstr "Настройки кнопки смайликов" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." -msgstr "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения." - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:84 -msgid "Enable Content filter" -msgstr "Включить фильтрацию содержимого" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" -msgstr "Список ключевых слов для скрытия, через запятую" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" -msgstr "слово, /регулярное_выражение/, lang=xx, lang!=xx" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" -msgstr "Настройка \"Not Safe For Work\"" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" -msgstr "Фильтр содержимого общего назначения" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." -msgstr "Настройки NSFW сохранены." - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:207 -msgid "Possible adult content" -msgstr "Возможно содержимое для взрослых" - -#: ../../extend/addon/hzaddons/nsfw/nsfw.php:222 -#, php-format -msgid "%s - view" -msgstr "%s - просмотр" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" -msgstr "" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." -msgstr "Настройки виджета Flattr обновлены." - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" -msgstr "Пользователь Flattr" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" -msgstr "URL ccылки на Flattr" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" -msgstr "Если пусто, то используется URL канала" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" -msgstr "Заголовок вещи на Flattr" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" -msgstr "Если пусто, то будет использовано \"Название канала Hubzilla\"" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" -msgstr "Статическая или динамическая кнопка Flattr" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:112 -msgid "static" -msgstr "статическая" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:112 -msgid "dynamic" -msgstr "динамическая" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" -msgstr "Выравнивание виджета" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:116 -msgid "left" -msgstr "слева" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:116 -msgid "right" -msgstr "справа" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" -msgstr "Включить виджет Flattr" - -#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "Настройки виджета Flattr" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:40 -#: ../../extend/addon/hzaddons/openid/Mod_Id.php:53 -#: ../../extend/addon/hzaddons/keepout/keepout.php:36 -#: ../../include/attach.php:150 ../../include/attach.php:197 -#: ../../include/attach.php:270 ../../include/attach.php:379 -#: ../../include/attach.php:393 ../../include/attach.php:400 -#: ../../include/attach.php:482 ../../include/attach.php:1042 -#: ../../include/attach.php:1116 ../../include/attach.php:1281 -#: ../../include/items.php:3653 ../../include/photos.php:27 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 -#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Photos.php:69 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connections.php:29 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 -#: ../../Zotlabs/Module/Item.php:1108 ../../Zotlabs/Module/Events.php:271 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Settings.php:59 -#: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Mail.php:146 -#: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Suggest.php:28 -#: ../../Zotlabs/Module/Channel.php:115 ../../Zotlabs/Module/Channel.php:281 -#: ../../Zotlabs/Module/Channel.php:320 ../../Zotlabs/Module/Block.php:24 -#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Api.php:24 -#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Sources.php:77 -#: ../../Zotlabs/Module/Profile_photo.php:302 -#: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Filestorage.php:15 -#: ../../Zotlabs/Module/Filestorage.php:70 -#: ../../Zotlabs/Module/Filestorage.php:96 -#: ../../Zotlabs/Module/Filestorage.php:140 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Connedit.php:389 -#: ../../Zotlabs/Module/Webpages.php:118 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:107 -#: ../../Zotlabs/Module/Editwebpage.php:121 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Moderate.php:13 -#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Bookmarks.php:64 -#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 -#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Cover_photo.php:313 -#: ../../Zotlabs/Module/Cover_photo.php:326 ../../Zotlabs/Module/Like.php:185 -#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Menu.php:129 -#: ../../Zotlabs/Module/Menu.php:140 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Settings/Features.php:38 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/New_channel.php:105 -#: ../../Zotlabs/Module/New_channel.php:130 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Regmod.php:20 -#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Cards.php:72 -#: ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Article_edit.php:51 ../../Zotlabs/Module/Wiki.php:50 -#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 -#: ../../Zotlabs/Module/Group.php:12 ../../Zotlabs/Module/Group.php:24 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Thing.php:280 ../../Zotlabs/Module/Thing.php:300 -#: ../../Zotlabs/Module/Thing.php:341 ../../Zotlabs/Module/Display.php:449 -#: ../../Zotlabs/Module/Cloud.php:40 ../../Zotlabs/Module/Mood.php:116 -msgid "Permission denied." -msgstr "Доступ запрещен." - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." -msgstr "Вы аутентифицированы в Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:149 -msgid "return to the featured settings page" -msgstr "Вернутся к странице настроек" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:163 -msgid "Post to Pump.io" -msgstr "Опубликовать в Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:198 -msgid "Pump.io servername" -msgstr "Имя сервера Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" -msgstr "Без \"http://\" или \"https://\"" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:202 -msgid "Pump.io username" -msgstr "Имя пользователя Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:202 -msgid "Without the servername" -msgstr "без имени сервера" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" -msgstr "Вы не аутентифицированы на Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" -msgstr "Аутентифицировать (повторно) ваше соединение с Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "Включить плагин публикаций Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" -msgstr "Публиковать в Pump.io по умолчанию" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:227 -msgid "Should posts be public" -msgstr "Публикации должны быть общедоступными" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:231 -msgid "Mirror all public posts" -msgstr "Отображать все общедоступные публикации" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" -msgstr "Настройки публикаций в Pump.io" - -#: ../../extend/addon/hzaddons/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." -msgstr "Настройки публикаций в Pump.io сохранены." - -#: ../../extend/addon/hzaddons/bookmarker/bookmarker.php:38 -#: ../../Zotlabs/Lib/ThreadItem.php:403 -msgid "Save Bookmarks" -msgstr "Сохранить закладки" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:305 -#: ../../include/channel.php:1396 ../../include/channel.php:1567 -msgid "Status:" -msgstr "Статус:" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:309 -msgid "Activate addon" -msgstr "Активировать расширение" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" -msgstr "Скрыть виджет чата Jappixmini из веб-интерфейса" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:318 -msgid "Jabber username" -msgstr "Имя пользователя Jabber" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:324 -msgid "Jabber server" -msgstr "Сервер Jabber" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" -msgstr "URL узла Jabber BOSH" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:337 -msgid "Jabber password" -msgstr "Пароль Jabber" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" -msgstr "Зашифровать пароль Jabber с помощью пароля Hubzilla" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 -#: ../../Zotlabs/Module/Settings/Channel.php:592 -#: ../../Zotlabs/Module/Settings/Channel.php:597 -#: ../../Zotlabs/Module/Settings/Channel.php:598 -#: ../../Zotlabs/Module/Settings/Channel.php:599 -msgid "Recommended" -msgstr "рекомендовано" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:347 -#: ../../extend/addon/hzaddons/redred/redred.php:115 -msgid "Hubzilla password" -msgstr "Пароль Hubzilla" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:351 -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" -msgstr "Утверждать запросы на подписку от контактов Hubzilla автоматически" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "Очистить внутренний список адресов контактов Jabber" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:364 -msgid "Configuration Help" -msgstr "Помощь по конфигурации" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:368 -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 -#: ../../Zotlabs/Module/Profiles.php:796 -msgid "Add Contact" -msgstr "Добавить контакт" - -#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" -msgstr "Настройки Jappix Mini" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" -msgstr "Опубликовать в LiveJournal" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" -msgstr "Включить плагин публикаций LiveJournal" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:74 -msgid "LiveJournal username" -msgstr "Имя пользователя LiveJournal" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:78 -msgid "LiveJournal password" -msgstr "Пароль LiveJournal" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" -msgstr "Публиковать в LiveJournal по умолчанию" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" -msgstr "Настройки публикаций в LiveJournal" - -#: ../../extend/addon/hzaddons/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." -msgstr "Настройки LiveJournal сохранены." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " -msgstr "Возникшие при удалении таблицы базы данных ошибки" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:95 -#: ../../extend/addon/hzaddons/twitter/twitter.php:779 -msgid "Submit Settings" -msgstr "Отправить настройки" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" -msgstr "Удалить таблицы при деинсталляции?" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:96 -msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "Если включено, то таблицы базы данных Rendezvous будут удалены при удалении плагина." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" -msgstr "Токен доступа к Mapbox" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:97 -msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "Если вы введете токен доступа к Mapbox, он будет использоваться для извлечения фрагментов карты из Mapbox вместо стандартного сервера OpenStreetMap." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:162 -msgid "Rendezvous" -msgstr "" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:167 -msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." -msgstr "Этот идентификатор был удалён другим участником из-за неактивности. Пожалуйста нажмите кнопку \"Новый идентификатор\" для обновления страницы и получения нового идентификатора. Вы можете использовать то же имя." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" -msgstr "Добро пожаловать в Rendezvous!" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:169 -msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." -msgstr "Введите ваше имя для вступления в это Rendezvous. Для того, чтобы делиться вашим положением с другими участниками, нажмите \"GPS control\". Когда ваше местоположение определно, красная точка появится и остальные смогут увидеть вас на карте." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "Давайте встретимся здесь" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:172 -#: ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Widget/Wiki_page_history.php:22 -#: ../../Zotlabs/Module/Cdav.php:1170 ../../Zotlabs/Module/Connedit.php:906 -#: ../../Zotlabs/Module/Sharedwithme.php:105 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Module/Wiki.php:209 -#: ../../Zotlabs/Module/Group.php:125 ../../Zotlabs/Storage/Browser.php:285 -msgid "Name" -msgstr "Имя" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:173 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:659 -#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Cdav.php:871 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Описание" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "Новый маркер" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:175 -msgid "Edit marker" -msgstr "Редактировать маркер" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:176 -msgid "New identity" -msgstr "Новый идентификатор" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:177 -msgid "Delete marker" -msgstr "Удалить маркер" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:178 -msgid "Delete member" -msgstr "Удалить участника" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" -msgstr "Изменить оповещение о близости" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:180 -msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.

Enter a radius in meters (0 to disable):" -msgstr "Оповещение о близости будет произведено, если этот участник находится на определённом расстоянии от вас.

Введите радиус в метрах (0 для отключения):" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:180 -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "расстояние" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" -msgstr "Расстояние для уведомления о близости (метров)" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:182 -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:184 -msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.

Enter a radius in meters (0 to disable):" -msgstr "Оповещение о близости будет произведено, если вы находитесь на определённом расстоянии местоположения маркера.

Введите радиус в метрах (0 для отключения):" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" -msgstr "Маркер уведомления о близости" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:186 -msgid "Reminder note" -msgstr "Напоминание" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." -msgstr "Введите сообщение для отображения когда вы находитесь рядом" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" -msgstr "Добавить новое Rendezvous." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." -msgstr "Создайте новое Rendezvous и поделитесь ссылкой доступа с теми, кого вы хотите пригласить в группу. Тот, кто откроет эту ссылку, станет её участником. Участники могут видеть местоположение, добавлять маркеры на карту или делится своим собственным местоположением с группой." - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:232 -msgid "You have no rendezvous. Press the button above to create a rendezvous!" -msgstr "У вас нет Rendezvous. Нажмите на кнопку ниже чтобы создать его!" - -#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:401 -#: ../../Zotlabs/Module/Setup.php:707 -msgid "Errors encountered creating database tables." -msgstr "При создании базы данных возникли ошибки." - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:146 -msgid "View Larger" -msgstr "Увеличить" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" -msgstr "URL сервера Tile" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of public tile servers" -msgstr "Список общедоступных серверов" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" -msgstr "URL сервера Nominatim (обратное геокодирование)" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:170 -msgid "" -"A list of Nominatim servers" -msgstr "Список серверов Nominatim" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" -msgstr "Масштаб по умолчанию" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" -msgstr "Уровень размера по умолчанию (1 - весь мир, 18 - максимальный; зависит от сервера)." - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" -msgstr "Включите маркер на карте" - -#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." -msgstr "Включить маркер на карте" - -#: ../../extend/addon/hzaddons/openid/openid.php:49 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Мы столкнулись с проблемой входа с предоставленным вами OpenID. Пожалуйста, проверьте корректность его написания." - -#: ../../extend/addon/hzaddons/openid/openid.php:49 -msgid "The error message was:" -msgstr "Сообщение об ошибке было:" - -#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Ошибка протокола OpenID. Идентификатор не возвращён." - -#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:76 -#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:178 -#: ../../Zotlabs/Zot/Auth.php:264 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Добро пожаловать %s. Удаленная аутентификация успешно завершена." - -#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:188 -#: ../../include/auth.php:317 -msgid "Login failed." -msgstr "Не удалось войти." - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:52 -msgid "First Name" -msgstr "Имя" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:53 -msgid "Last Name" -msgstr "Фамилия" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:54 -#: ../../extend/addon/hzaddons/redred/redred.php:111 -msgid "Nickname" -msgstr "Псевдоним" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:55 -msgid "Full Name" -msgstr "Полное имя" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:56 -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:57 -#: ../../extend/addon/hzaddons/rtof/rtof.php:93 -#: ../../extend/addon/hzaddons/redred/redred.php:107 -#: ../../include/network.php:1769 ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Connedit.php:910 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Profiles.php:787 -msgid "Email" -msgstr "Электронная почта" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:58 -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:59 -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:60 -#: ../../Zotlabs/Lib/Apps.php:330 -msgid "Profile Photo" -msgstr "Фотография профиля" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" -msgstr "Фотография профиля 16px" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" -msgstr "Фотография профиля 32px" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" -msgstr "Фотография профиля 48px" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" -msgstr "Фотография профиля 64px" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" -msgstr "Фотография профиля 80px" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" -msgstr "Фотография профиля 128px" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:67 -msgid "Timezone" -msgstr "Часовой пояс" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:68 -#: ../../Zotlabs/Module/Profiles.php:767 -msgid "Homepage URL" -msgstr "URL домашней страницы" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:69 -#: ../../Zotlabs/Lib/Apps.php:328 -msgid "Language" -msgstr "Язык" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:70 -msgid "Birth Year" -msgstr "Год рождения" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:71 -msgid "Birth Month" -msgstr "Месяц рождения" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:72 -msgid "Birth Day" -msgstr "День рождения" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:73 -msgid "Birthdate" -msgstr "Дата рождения" - -#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:74 -#: ../../Zotlabs/Module/Profiles.php:486 -msgid "Gender" -msgstr "Гендер" - -#: ../../extend/addon/hzaddons/openid/Mod_Id.php:85 -#: ../../include/channel.php:1480 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Мужчина" - -#: ../../extend/addon/hzaddons/openid/Mod_Id.php:87 -#: ../../include/channel.php:1478 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Женщина" - -#: ../../extend/addon/hzaddons/likebanner/likebanner.php:51 -msgid "Your Webbie:" -msgstr "Ваш Webbie:" - -#: ../../extend/addon/hzaddons/likebanner/likebanner.php:54 -msgid "Fontsize (px):" -msgstr "Размер шрифта (px):" - -#: ../../extend/addon/hzaddons/likebanner/likebanner.php:68 -msgid "Link:" -msgstr "Ссылка:" - -#: ../../extend/addon/hzaddons/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" -msgstr "Нравится на Hubzilla" - -#: ../../extend/addon/hzaddons/likebanner/likebanner.php:72 -msgid "Embed:" -msgstr "Встроить:" - -#: ../../extend/addon/hzaddons/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" -msgstr "Расширенный обмен идентификацией" - -#: ../../extend/addon/hzaddons/sendzid/sendzid.php:26 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with $Projectname sites." -msgstr "Поделиться вашим идентификатором на всех веб-сайтах в Интернет. Если выключено, то идентификатор доступен только для сайтов $Projectname." - -#: ../../extend/addon/hzaddons/ldapauth/ldapauth.php:70 -msgid "An account has been created for you." -msgstr "Учётная запись, которая была для вас создана." - -#: ../../extend/addon/hzaddons/ldapauth/ldapauth.php:77 -msgid "Authentication successful but rejected: account creation is disabled." -msgstr "Аутентификация выполнена успешно, но отклонена: создание учетной записи отключено." - -#: ../../extend/addon/hzaddons/twitter/twitter.php:99 -msgid "Post to Twitter" -msgstr "Опубликовать в Twitter" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:155 -msgid "Twitter settings updated." -msgstr "Настройки Twitter обновлены" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:184 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "Не найдено пары ключей для Twitter. Пожалуйста, свяжитесь с администратором сайта." - -#: ../../extend/addon/hzaddons/twitter/twitter.php:206 -msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input " -"box below and submit the form. Only your public posts will " -"be posted to Twitter." -msgstr "В этой установке Hubzilla плагин Twitter был включён, однако пока он не подключён к вашему аккаунту в Twitter. Для этого нажмите на кнопку ниже для получения PIN-кода от Twitter который нужно скопировать в поле ввода и отправить форму. Только ваши общедоступные публикации будут опубликованы в Twitter." - -#: ../../extend/addon/hzaddons/twitter/twitter.php:208 -msgid "Log in with Twitter" -msgstr "Войти в Twitter" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:211 -msgid "Copy the PIN from Twitter here" -msgstr "Скопируйте PIN-код из Twitter здесь" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:233 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:401 -msgid "Currently connected to: " -msgstr "В настоящее время подключён к:" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:238 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." -msgstr "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в Twitter, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен." - -#: ../../extend/addon/hzaddons/twitter/twitter.php:243 -msgid "Allow posting to Twitter" -msgstr "Разрешить публиковать в Twitter" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:243 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:247 -msgid "Twitter post length" -msgstr "Длина публикации Twitter" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:247 -msgid "Maximum tweet length" -msgstr "Максимальная длина твита" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:252 -msgid "Send public postings to Twitter by default" -msgstr "Отправлять общедоступные публикации в Twitter по умолчанию" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:252 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" -msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter по умолчанию" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:261 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:424 -msgid "Clear OAuth configuration" -msgstr "Очистить конфигурацию OAuth" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:270 -msgid "Twitter Post Settings" -msgstr "Настройки публикаций в Twitter" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:781 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:894 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -msgid "Consumer Key" -msgstr "Ключ клиента" - -#: ../../extend/addon/hzaddons/twitter/twitter.php:782 -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:893 -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -msgid "Consumer Secret" -msgstr "Код клиента" - -#: ../../extend/addon/hzaddons/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" -msgstr "Пометка фотографий для взрослых" - -#: ../../extend/addon/hzaddons/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" -msgstr "Предоставьте возможность редактирования фотографий, чтобы скрыть неприемлемые фотографии из альбома по умолчанию" - -#: ../../extend/addon/hzaddons/pubcrawl/as.php:961 -#: ../../include/conversation.php:1165 ../../Zotlabs/Lib/Apps.php:867 -#: ../../Zotlabs/Lib/Apps.php:949 ../../Zotlabs/Widget/Album.php:84 -#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Module/Cdav.php:786 -#: ../../Zotlabs/Module/Cdav.php:787 ../../Zotlabs/Module/Cdav.php:794 -#: ../../Zotlabs/Module/Photos.php:822 ../../Zotlabs/Module/Photos.php:1278 -#: ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Storage/Browser.php:164 -msgid "Unknown" -msgstr "Неизвестный" - -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1219 -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1374 -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1553 -#: ../../include/network.php:1768 -msgid "ActivityPub" -msgstr "" - -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1509 -#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1530 -#: ../../extend/addon/hzaddons/redphotos/redphotohelper.php:71 -#: ../../include/conversation.php:116 ../../include/text.php:2022 -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 -msgid "photo" -msgstr "фото" - -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1509 -#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1530 -#: ../../include/conversation.php:144 ../../include/text.php:2028 -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -msgid "status" -msgstr "статус" - -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1544 -#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1559 -#: ../../include/conversation.php:160 ../../Zotlabs/Module/Like.php:438 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s нравится %3$s %2$s" - -#: ../../extend/addon/hzaddons/pubcrawl/as.php:1546 -#: ../../include/conversation.php:163 ../../Zotlabs/Module/Like.php:440 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s не нравится %2$s %3$s" - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1136 -msgid "ActivityPub Protocol Settings updated." -msgstr "Настройки протокола ActivityPub обновлены." - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1145 -msgid "" -"The ActivityPub protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Протокол ActivityPub не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала. " - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1148 -msgid "Enable the ActivityPub protocol for this channel" -msgstr "Включить протокол ActivityPub для этого канала" - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1151 -msgid "Deliver to ActivityPub recipients in privacy groups" -msgstr "Доставить получателям ActivityPub в группах безопасности" - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1151 -msgid "" -"May result in a large number of mentions and expose all the members of your " -"privacy group" -msgstr "Может привести к большому количеству упоминаний и раскрытию участников группы безопасности" - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1155 -msgid "Send multi-media HTML articles" -msgstr "Отправить HTML статьи с мультимедиа" - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1155 -msgid "Not supported by some microblog services such as Mastodon" -msgstr "Не поддерживается некоторыми микроблогами, например Mastodon" - -#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1159 -msgid "ActivityPub Protocol Settings" -msgstr "Настройки протокола ActivityPub" - -#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Имя пользователя не найдено в файле для импорта." - -#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:41 -#: ../../include/import.php:72 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Не удалось создать уникальный адрес канала. Импорт не завершен." - -#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:139 -#: ../../Zotlabs/Module/Import.php:513 -msgid "Import completed." -msgstr "Импорт завершен." - -#: ../../extend/addon/hzaddons/diaspora/util.php:308 -#: ../../extend/addon/hzaddons/diaspora/util.php:321 -#: ../../extend/addon/hzaddons/diaspora/p.php:48 -#: ../../Zotlabs/Lib/Enotify.php:61 -msgid "$projectname" -msgstr "" - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:787 -msgid "Diaspora Protocol Settings updated." -msgstr "Настройки протокола Diaspora обновлены." - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:806 -msgid "" -"The Diaspora protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Прокол Diaspora не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала." - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:809 -msgid "Enable the Diaspora protocol for this channel" -msgstr "Включить протокол Diaspora для этого канала" - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:813 -msgid "Allow any Diaspora member to comment on your public posts" -msgstr "Разрешить любому участнику Diaspora комментировать ваши общедоступные публикации" - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:817 -msgid "Prevent your hashtags from being redirected to other sites" -msgstr "Предотвратить перенаправление тегов на другие сайты" - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:821 -msgid "Sign and forward posts and comments with no existing Diaspora signature" -msgstr "Подписывать и отправлять публикации и комментарии с несуществующей подписью Diaspora" - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:826 -msgid "Followed hashtags (comma separated, do not include the #)" -msgstr "Отслеживаемые теги (через запятую, исключая #)" - -#: ../../extend/addon/hzaddons/diaspora/diaspora.php:831 -msgid "Diaspora Protocol Settings" -msgstr "Настройки протокола Diaspora" - -#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2102 -#: ../../Zotlabs/Module/Like.php:448 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s посещает %2$s%3$s" - -#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2104 -#: ../../Zotlabs/Module/Like.php:450 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s не посещает %2$s%3$s" - -#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2106 -#: ../../Zotlabs/Module/Like.php:452 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s может посетить %2$s%3$s" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:50 -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:128 -msgid "System defaults:" -msgstr "Системные по умолчанию:" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" -msgstr "Предпочитаемый Clipart ID" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." -msgstr "Список предпочитаемых Clipart ID. Эти будут показаны первыми." - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:55 -msgid "Default Search Term" -msgstr "Условие поиска по умолчанию" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." -msgstr "Условие поиска по умолчанию. Показываются во вторую очередь." - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:56 -msgid "Return After" -msgstr "Вернуться после" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." -msgstr "Страница для загрузки после выбора изображения." - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1037 ../../include/nav.php:108 -#: ../../Zotlabs/Lib/Apps.php:313 ../../Zotlabs/Module/Connedit.php:594 -msgid "View Profile" -msgstr "Просмотреть профиль" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:58 -#: ../../include/nav.php:113 ../../include/channel.php:1300 -msgid "Edit Profile" -msgstr "Редактировать профиль" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:59 -msgid "Profile List" -msgstr "Список профилей" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" -msgstr "Порядок предпочтения" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." -msgstr "Порядок сортировки предпочитаемых Clipart ID. " - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:62 -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:68 -msgid "Newest first" -msgstr "Новое первым" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:65 -msgid "As entered" -msgstr "По мере ввода" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:67 -msgid "Order of other" -msgstr "Порядок других" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." -msgstr "Порядок сортировки остальных Clipart ID." - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" -msgstr "Самое загружаемое первым" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:70 -msgid "Most liked first" -msgstr "Самое нравящееся первым" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" -msgstr "Сообщение от предпочитаемых ID" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." -msgstr "Отображаемое сообщение над предпочитаемыми результатами." - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " -msgstr "Загружено:" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:78 -msgid "Drawn by: " -msgstr "Нарисовано:" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:182 -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:194 -msgid "Use this image" -msgstr "Использовать это изображение" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" -msgstr "Или выберите из бесплатных изображений на OpenClipart.org" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:195 -msgid "Search Term" -msgstr "Условие поиска" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." -msgstr "Неизвестная ошибка. Пожалуйста, повторите попытку позже." - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:298 -#: ../../Zotlabs/Module/Profile_photo.php:218 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Если новая фотография не отображается немедленно то нажмите Shift + \"Обновить\" для очистки кэша браузера" - -#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:308 -msgid "Profile photo updated successfully." -msgstr "Фотография профиля обновлена успешно." - -#: ../../extend/addon/hzaddons/tour/tour.php:76 -msgid "Edit your profile and change settings." -msgstr "Отредактировать ваш профиль и изменить настройки." - -#: ../../extend/addon/hzaddons/tour/tour.php:77 -msgid "Click here to see activity from your connections." -msgstr "Нажмите сюда для отображения активности ваши контактов." - -#: ../../extend/addon/hzaddons/tour/tour.php:78 -msgid "Click here to see your channel home." -msgstr "Нажмите сюда чтобы увидеть главную страницу вашего канала." - -#: ../../extend/addon/hzaddons/tour/tour.php:79 -msgid "You can access your private messages from here." -msgstr "Вы можете получить доступ с личной переписке здесь." - -#: ../../extend/addon/hzaddons/tour/tour.php:80 -msgid "Create new events here." -msgstr "Создать новое событие здесь." - -#: ../../extend/addon/hzaddons/tour/tour.php:81 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." -msgstr "Вы можете подключать новые контакты и менять разрешения для существующих здесь. Также вы можете создавать их группы." - -#: ../../extend/addon/hzaddons/tour/tour.php:82 -msgid "System notifications will arrive here" -msgstr "Системные оповещения будут показываться здесь" - -#: ../../extend/addon/hzaddons/tour/tour.php:83 -msgid "Search for content and users" -msgstr "Поиск пользователей и содержимого" - -#: ../../extend/addon/hzaddons/tour/tour.php:84 -msgid "Browse for new contacts" -msgstr "Поиск новых контактов" - -#: ../../extend/addon/hzaddons/tour/tour.php:85 -msgid "Launch installed apps" -msgstr "Запустить установленные приложения" - -#: ../../extend/addon/hzaddons/tour/tour.php:86 -msgid "Looking for help? Click here." -msgstr "Нужна помощь? Нажмите сюда." - -#: ../../extend/addon/hzaddons/tour/tour.php:87 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" -msgstr "Новые события произошли в вашей сети. Нажмите здесь для того, чтобы знать что случилось!" - -#: ../../extend/addon/hzaddons/tour/tour.php:88 -msgid "You have received a new private message. Click here to see from who!" -msgstr "Вы получили новое личное сообщение. Нажмите чтобы увидеть от кого!" - -#: ../../extend/addon/hzaddons/tour/tour.php:89 -msgid "There are events this week. Click here too see which!" -msgstr "На этой неделе есть события. Нажмите здесь чтобы увидеть какие!" - -#: ../../extend/addon/hzaddons/tour/tour.php:90 -msgid "You have received a new introduction. Click here to see who!" -msgstr "Вы были представлены. Нажмите чтобы увидеть кому!" - -#: ../../extend/addon/hzaddons/tour/tour.php:91 -msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "Это новое системное уведомление. Нажмите чтобы посмотреть что случилось!" - -#: ../../extend/addon/hzaddons/tour/tour.php:94 -msgid "Click here to share text, images, videos and sound." -msgstr "Нажмите сюда чтобы поделиться текстом, изображениями, видео или треком." - -#: ../../extend/addon/hzaddons/tour/tour.php:95 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "Вы можете написать необязательный заголовок для вашей публикации (желательно для больших постов)." - -#: ../../extend/addon/hzaddons/tour/tour.php:96 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "Введите категории здесь чтобы было проще найти вашу публикацию позднее." - -#: ../../extend/addon/hzaddons/tour/tour.php:97 -msgid "Share photos, links, location, etc." -msgstr "Поделиться фотографией, ссылками, местоположение и т.п." - -#: ../../extend/addon/hzaddons/tour/tour.php:98 -msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "Хотите только поделиться временным содержимым? Установите срок его действия." - -#: ../../extend/addon/hzaddons/tour/tour.php:99 -msgid "You can password protect content." -msgstr "Вы можете защитить содержимое паролем." - -#: ../../extend/addon/hzaddons/tour/tour.php:100 -msgid "Choose who you share with." -msgstr "Выбрать с кем поделиться." - -#: ../../extend/addon/hzaddons/tour/tour.php:102 -msgid "Click here when you are done." -msgstr "Нажмите здесь когда закончите." - -#: ../../extend/addon/hzaddons/tour/tour.php:105 -msgid "Adjust from which channels posts should be displayed." -msgstr "Настройте из каких каналов должны отображаться публикации." - -#: ../../extend/addon/hzaddons/tour/tour.php:106 -msgid "Only show posts from channels in the specified privacy group." -msgstr "Показывать только публикации из определённой группы безопасности." - -#: ../../extend/addon/hzaddons/tour/tour.php:110 -msgid "" -"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "Лёгкий поиск сообщения, содержащего теги (ключевые слова, которым предшествует символ #)." - -#: ../../extend/addon/hzaddons/tour/tour.php:111 -msgid "Easily find posts in given category." -msgstr "Лёгкий поиск публикаций в данной категории." - -#: ../../extend/addon/hzaddons/tour/tour.php:112 -msgid "Easily find posts by date." -msgstr "Лёгкий поиск публикаций по дате." - -#: ../../extend/addon/hzaddons/tour/tour.php:113 -msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we " -"think you might find interesting." -msgstr "Рекомендуемые пользователи, которые были представлены в качестве предложений, и которые, по нашему мнению, могут оказаться интересными." - -#: ../../extend/addon/hzaddons/tour/tour.php:114 -msgid "Here you see channels you have connected to." -msgstr "Здесь вы видите каналы, к которым вы подключились." - -#: ../../extend/addon/hzaddons/tour/tour.php:115 -msgid "Save your search so you can repeat it at a later date." -msgstr "Сохраните ваш поиск с тем, чтобы повторить его позже." - -#: ../../extend/addon/hzaddons/tour/tour.php:118 -msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It " -"is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." -msgstr "Если вы видите этот значок, вы можете быть уверены, что отправитель - это тот, кто это говорит. Это нормально, что не всегда можно проверить отправителя, поэтому значок иногда будет отсутствовать. Обычно об этом не нужно беспокоиться." - -#: ../../extend/addon/hzaddons/tour/tour.php:119 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" -msgstr "Опасность! Кажется, кто-то пытался подделать сообщение! Это сообщение не обязательно от того, от кого оно значится!" - -#: ../../extend/addon/hzaddons/tour/tour.php:126 -msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.

You can also advance by pressing the " -"return key" -msgstr "Добро пожаловать в Hubzilla! Желаете получить обзор пользовательского интерфейса?

Вы можете его приостановаить и в любое время перезагрузив страницу или перейдя на другую.

Также вы можете нажать клавишу \"Назад\"" - -#: ../../extend/addon/hzaddons/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "Некоторые настройки" - -#: ../../extend/addon/hzaddons/skeleton/skeleton.php:61 -msgid "A setting" -msgstr "Настройка" - -#: ../../extend/addon/hzaddons/skeleton/skeleton.php:64 -msgid "Skeleton Settings" -msgstr "Настройки скелета" - -#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" -msgstr "Показать ограничения на загрузку" - -#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " -msgstr "Максимальный размер настроенный в Hubzilla:" - -#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " -msgstr "" - -#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " -msgstr "" - -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:258 -msgid "GNU-Social Protocol Settings updated." -msgstr "Настройки протокола GNU Social обновлены." - -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:277 -msgid "" -"The GNU-Social protocol does not support location independence. Connections " -"you make within that network may be unreachable from alternate channel " -"locations." -msgstr "Прокол GNU Social не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала." - -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:280 -msgid "Enable the GNU-Social protocol for this channel" -msgstr "Включить протокол GNU Social для этого канала" - -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:284 -msgid "GNU-Social Protocol Settings" -msgstr "Настройки протокола GNU Social" - -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:480 -msgid "Follow" -msgstr "Отслеживать" - -#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:483 -#, php-format -msgid "%1$s is now following %2$s" -msgstr "%1$s сейчас отслеживает %2$s" - -#: ../../extend/addon/hzaddons/gallery/gallery.php:42 -#: ../../extend/addon/hzaddons/gallery/Mod_Gallery.php:111 -msgid "Gallery" -msgstr "Галерея" - -#: ../../extend/addon/hzaddons/gallery/gallery.php:45 -msgid "Photo Gallery" -msgstr "Фотогалерея" - -#: ../../extend/addon/hzaddons/startpage/startpage.php:109 -msgid "Page to load after login" -msgstr "Страница для загрузки после входа" - -#: ../../extend/addon/hzaddons/startpage/startpage.php:109 -msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "Примеры: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (оставьте пустым для для страницы сети по умолчанию)." - -#: ../../extend/addon/hzaddons/startpage/startpage.php:113 -msgid "Startpage Settings" -msgstr "Настройки стартовой страницы" - -#: ../../extend/addon/hzaddons/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" -msgstr "Отображаемое сообщение на каждой странице на этом сервере." - -#: ../../extend/addon/hzaddons/pageheader/pageheader.php:48 -msgid "Pageheader Settings" -msgstr "Настройки шапки страницы" - -#: ../../extend/addon/hzaddons/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." -msgstr "Настройки шапки страницы сохранены." - -#: ../../extend/addon/hzaddons/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tic-Tac-Toe в трёх измерениях" - -#: ../../extend/addon/hzaddons/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" -msgstr "" - -#: ../../extend/addon/hzaddons/tictac/tictac.php:59 -msgid "New game" -msgstr "Новая игра" - -#: ../../extend/addon/hzaddons/tictac/tictac.php:60 -msgid "New game with handicap" -msgstr "Новая игра с форой" - -#: ../../extend/addon/hzaddons/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "Трехмерный Tic-Tac-Toe похож на традиционную игру, за исключением того, что игра идёт на нескольких уровнях одновременно." - -#: ../../extend/addon/hzaddons/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." -msgstr "Имеется три уровня. Вы выигрываете, получая три подряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях." - -#: ../../extend/addon/hzaddons/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." -msgstr "Игра с форой отключает центральную позицию на среднем уровне, потому что игрок, претендующий на этот квадрат, часто имеет несправедливое преимущество." - -#: ../../extend/addon/hzaddons/tictac/tictac.php:183 -msgid "You go first..." -msgstr "Вы начинаете..." - -#: ../../extend/addon/hzaddons/tictac/tictac.php:188 -msgid "I'm going first this time..." -msgstr "На этот раз начинаю я..." - -#: ../../extend/addon/hzaddons/tictac/tictac.php:194 -msgid "You won!" -msgstr "Вы выиграли!" - -#: ../../extend/addon/hzaddons/tictac/tictac.php:200 -#: ../../extend/addon/hzaddons/tictac/tictac.php:225 -msgid "\"Cat\" game!" -msgstr "Ничья!" - -#: ../../extend/addon/hzaddons/tictac/tictac.php:223 -msgid "I won!" -msgstr "Я выиграл!" - -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:148 -msgid "Fuzzloc Settings updated." -msgstr "Настройки Fuzzloc обновлены." - -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:175 -msgid "" -"Fuzzloc allows you to blur your precise location if your channel uses " -"browser location mapping." -msgstr "Fuzzloc позволяет размыть ваше точное местоположение, если ваш канал использует сопоставление местоположений браузера." - -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:178 -msgid "Enable Fuzzloc Plugin" -msgstr "Включить плагин Fuzzloc" - -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:182 -msgid "Minimum offset in meters" -msgstr "Минимальное смещение в метрах" - -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:186 -msgid "Maximum offset in meters" -msgstr "Максимальное смещение в метрах" - -#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:191 -msgid "Fuzzloc Settings" -msgstr "Настройки Fuzzloc" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:45 -msgid "Post to Friendica" -msgstr "Опубликовать в Friendica" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:62 -msgid "rtof Settings saved." -msgstr "Настройки rtof сохранены." - -#: ../../extend/addon/hzaddons/rtof/rtof.php:81 -msgid "Allow posting to Friendica" -msgstr "Разрешить публиковать в Friendica" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" -msgstr "Отправлять общедоступные публикации во Friendica по умолчанию" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:89 -msgid "Friendica API Path" -msgstr "Путь к Friendica API" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:89 -#: ../../extend/addon/hzaddons/redred/redred.php:103 -msgid "https://{sitename}/api" -msgstr "" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:93 -msgid "Friendica login name" -msgstr "Имя входа Friendica" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:97 -msgid "Friendica password" -msgstr "Пароль Friendica" - -#: ../../extend/addon/hzaddons/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" -msgstr "Настройки публикаций Hubzilla для Friendica" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:143 -msgid "Post to GNU social" -msgstr "Опубликовать в GNU Social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:195 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Пожалуйста свяжитесь с администратором сайта.
Предоставленный URL API недействителен." - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." -msgstr "Нам не удалось установить контакт с GNU Social API по введённому вами пути" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:266 -msgid "GNU social settings updated." -msgstr "Настройки GNU Social обновлены." - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" -msgstr "Глобально доступные ключи OAuthKeys GNU Social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." -msgstr "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)." - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" -msgstr "Предоставьте ваши собственные регистрационные данные OAuth" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as " -"an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.
Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." -msgstr "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API.
Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social." - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" -msgstr "Ключ клиента OAuth" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" -msgstr "Пароль клиента OAuth" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:341 -msgid "Base API Path" -msgstr "Основной путь к API" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:341 -msgid "Remember the trailing /" -msgstr "Запомнить закрывающий /" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:345 -msgid "GNU social application name" -msgstr "Имя приложения GNU social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your public posts will be " -"posted to GNU social." -msgstr "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social." - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:370 -msgid "Log in with GNU social" -msgstr "Войти с GNU social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" -msgstr "Скопируйте код безопасности GNU social здесь" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" -msgstr "Отменить процесс подключения" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:385 -msgid "Current GNU social API is" -msgstr "Текущий GNU social API" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" -msgstr "Отменить подключение с GNU social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:406 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." -msgstr "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен." - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "Разрешить публиковать в GNU social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" -msgstr "Публиковать в GNU social по умолчанию" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" -msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" -msgstr "Настройки публикаций GNU social" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:891 -#: ../../Zotlabs/Module/Admin/Site.php:317 -msgid "Site name" -msgstr "Название сайта" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:892 -msgid "API URL" -msgstr "" - -#: ../../extend/addon/hzaddons/statusnet/statusnet.php:895 -msgid "Application name" -msgstr "Название приложения" - -#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" -msgstr "Включить Rainbowtag" - -#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" -msgstr "Настройки Rainbowtag" - -#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." -msgstr "Настройки Rainbowtag сохранены." - -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:92 -msgid "Friendica Photo Album Import" -msgstr "Импортировать альбом фотографий Friendica" - -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:93 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал." - -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:94 -msgid "Friendica Server base URL" -msgstr "Базовый URL сервера Friendica" - -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:95 -msgid "Friendica Login Username" -msgstr "Имя пользователя для входа Friendica" - -#: ../../extend/addon/hzaddons/frphotos/frphotos.php:96 -msgid "Friendica Login Password" -msgstr "Пароль для входа Firendica" - -#: ../../extend/addon/hzaddons/piwik/piwik.php:85 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Этот сайт отслеживается с помощью инструментов аналитики Piwik." - -#: ../../extend/addon/hzaddons/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you can " -"set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта." - -#: ../../extend/addon/hzaddons/piwik/piwik.php:96 -msgid "Piwik Base URL" -msgstr "Базовый URL Piwik" - -#: ../../extend/addon/hzaddons/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)" - -#: ../../extend/addon/hzaddons/piwik/piwik.php:97 -msgid "Site ID" -msgstr "ID сайта" - -#: ../../extend/addon/hzaddons/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" -msgstr "Показывать ссылку на отказ от использования cookies?" - -#: ../../extend/addon/hzaddons/piwik/piwik.php:99 -msgid "Asynchronous tracking" -msgstr "Асинхронное отслеживание" - -#: ../../extend/addon/hzaddons/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" -msgstr "Включить отслеживание ошибок JavaScript на фронтенде." - -#: ../../extend/addon/hzaddons/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" -msgstr "Эта функция требует версию Piwik >= 2.2.0" - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:106 -msgid "Photos imported" -msgstr "Фотографии импортированы" - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" -msgstr "Импортировать альбом фотографий Redmatrix" - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." -msgstr "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал." - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:134 -msgid "Import just this album" -msgstr "Импортировать только этот альбом" - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" -msgstr "Оставьте пустым для импорта всех альбомов" - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:135 -msgid "Maximum count to import" -msgstr "Максимальное количество для импорта" - -#: ../../extend/addon/hzaddons/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" -msgstr "0 или пусто для импорта всех доступных" - -#: ../../extend/addon/hzaddons/opensearch/opensearch.php:26 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Искать %1$s (%2$s)" - -#: ../../extend/addon/hzaddons/opensearch/opensearch.php:28 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "" - -#: ../../extend/addon/hzaddons/opensearch/opensearch.php:42 -#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:74 -#: ../../Zotlabs/Module/Home.php:82 -msgid "$Projectname" -msgstr "" - -#: ../../extend/addon/hzaddons/opensearch/opensearch.php:43 -msgid "Search $Projectname" -msgstr "Поиск $Projectname" - -#: ../../extend/addon/hzaddons/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "Последние просмотры канала / профиля" - -#: ../../extend/addon/hzaddons/visage/visage.php:98 -msgid "This plugin/addon has not been configured." -msgstr "Это расширение не было настроено." - -#: ../../extend/addon/hzaddons/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "Пожалуйста, посетите настройки Visage на %s" - -#: ../../extend/addon/hzaddons/visage/visage.php:99 -msgid "your feature settings page" -msgstr "страница ваших установочных параметров" - -#: ../../extend/addon/hzaddons/visage/visage.php:112 -msgid "No entries." -msgstr "Нет записей." - -#: ../../extend/addon/hzaddons/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "Включить журналирование посетителей Visage" - -#: ../../extend/addon/hzaddons/visage/visage.php:170 -msgid "Visage Settings" -msgstr "Настройки Visage" - -#: ../../extend/addon/hzaddons/cart/manual_payments.php:7 -msgid "Error: order mismatch. Please try again." -msgstr "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз" - -#: ../../extend/addon/hzaddons/cart/manual_payments.php:30 -msgid "Manual payments are not enabled." -msgstr "Ручные платежи не подключены." - -#: ../../extend/addon/hzaddons/cart/manual_payments.php:37 -#: ../../extend/addon/hzaddons/cart/cart.php:1447 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:417 -msgid "Order not found." -msgstr "Заказ не найден." - -#: ../../extend/addon/hzaddons/cart/manual_payments.php:46 -msgid "Finished" -msgstr "Завершено" - -#: ../../extend/addon/hzaddons/cart/manual_payments.php:62 -#: ../../extend/addon/hzaddons/cart/cart.php:1425 -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:481 -#: ../../extend/addon/hzaddons/cart/myshop.php:51 -#: ../../Zotlabs/Module/Wiki.php:68 -msgid "Invalid channel" -msgstr "Недействительный канал" - -#: ../../extend/addon/hzaddons/cart/cart.php:467 -msgid "[cart] Item Added" -msgstr "[cart] Элемент добавлен" - -#: ../../extend/addon/hzaddons/cart/cart.php:851 -msgid "Order already checked out." -msgstr "Заказ уже проверен." - -#: ../../extend/addon/hzaddons/cart/cart.php:1204 -msgid "Enable Shopping Cart" -msgstr "Включить корзину" - -#: ../../extend/addon/hzaddons/cart/cart.php:1211 -msgid "Enable Test Catalog" -msgstr "Включить тестовый каталог" - -#: ../../extend/addon/hzaddons/cart/cart.php:1219 -msgid "Enable Manual Payments" -msgstr "Включить ручные платежи" - -#: ../../extend/addon/hzaddons/cart/cart.php:1238 -msgid "Base Merchant Currency" -msgstr "Основная торговая валюта" - -#: ../../extend/addon/hzaddons/cart/cart.php:1250 -msgid "Cart - Base Settings" -msgstr "Корзина - Основные настройки" - -#: ../../extend/addon/hzaddons/cart/cart.php:1275 -#: ../../extend/addon/hzaddons/cart/cart.php:1278 -msgid "Shop" -msgstr "Магазин" - -#: ../../extend/addon/hzaddons/cart/cart.php:1298 -#: ../../Zotlabs/Module/Wiki.php:30 -msgid "Profile Unavailable." -msgstr "Профиль недоступен." - -#: ../../extend/addon/hzaddons/cart/cart.php:1329 -#: ../../extend/addon/hzaddons/cart/myshop.php:125 -msgid "Order Not Found" -msgstr "Заказ не найден" - -#: ../../extend/addon/hzaddons/cart/cart.php:1406 -msgid "You must be logged into the Grid to shop." -msgstr "Вы должны быть в сети для доступа к магазину" - -#: ../../extend/addon/hzaddons/cart/cart.php:1416 -msgid "Cart Not Enabled (profile: " -msgstr "Корзина не подключена (профиль:" - -#: ../../extend/addon/hzaddons/cart/cart.php:1456 -msgid "Access denied." -msgstr "Доступ запрещён." - -#: ../../extend/addon/hzaddons/cart/cart.php:1508 -#: ../../extend/addon/hzaddons/cart/cart.php:1652 -msgid "No Order Found" -msgstr "Нет найденных заказов" - -#: ../../extend/addon/hzaddons/cart/cart.php:1517 -msgid "An unknown error has occurred Please start again." -msgstr "Произошла неизвестная ошибка. Пожалуйста, начните снова." - -#: ../../extend/addon/hzaddons/cart/cart.php:1685 -msgid "Invalid Payment Type. Please start again." -msgstr "Недействительный тип платежа. Пожалуйста, начните снова." - -#: ../../extend/addon/hzaddons/cart/cart.php:1692 -msgid "Order not found" -msgstr "Заказ не найден" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:71 -msgid "Enable Hubzilla Services Module" -msgstr "Включить модуль сервиса Hubzilla" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:77 -msgid "Cart - Hubzilla Services Addon" -msgstr "Корзина - плагин сервиса Hubzilla" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:169 -msgid "New Sku" -msgstr "Новый код" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:204 -msgid "Cannot save edits to locked item." -msgstr "Невозможно сохранить изменения заблокированной позиции." - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:252 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:339 -msgid "SKU not found." -msgstr "Код не найден." - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:305 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:309 -msgid "Invalid Activation Directive." -msgstr "Недействительная директива активации." - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:380 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:384 -msgid "Invalid Deactivation Directive." -msgstr "Недействительная директива деактивации" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:570 -msgid "Add to this privacy group" -msgstr "Добавить в эту группу безопасности" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:586 -msgid "Set user service class" -msgstr "Установить класс обслуживания пользователя" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:613 -msgid "You must be using a local account to purchase this service." -msgstr "Вы должны использовать локальную учётноую запись для покупки этого сервиса." - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:651 -msgid "Changes Locked" -msgstr "Изменения заблокированы" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:655 -msgid "Item available for purchase." -msgstr "Позиция доступна для приобретения." - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:662 -msgid "Price" -msgstr "Цена" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:665 -msgid "Add buyer to privacy group" -msgstr "Добавить покупателя в группу безопасности" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:670 -msgid "Add buyer as connection" -msgstr "Добавить покупателя как контакт" - -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:677 -#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:718 -msgid "Set Service Class" -msgstr "Установить класс обслуживания" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:97 -msgid "Enable Paypal Button Module" -msgstr "Включить модуль кнопки Paypal" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:102 -msgid "Use Production Key" -msgstr "Использовать ключ Production" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:109 -msgid "Paypal Sandbox Client Key" -msgstr "Ключ клиента Paypal Sandbox" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:116 -msgid "Paypal Sandbox Secret Key" -msgstr "Секретный ключ Paypal Sandbox" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:122 -msgid "Paypal Production Client Key" -msgstr "Ключ клиента Paypal Production" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:129 -msgid "Paypal Production Secret Key" -msgstr "Секретный ключ Paypal Production" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:143 -msgid "Cart - Paypal Addon" -msgstr "Корзина - Paypal плагин" - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:277 -msgid "Paypal button payments are not enabled." -msgstr "Кнопка Paypal для платежей не включена." - -#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:295 -msgid "" -"Paypal button payments are not properly configured. Please choose another " -"payment option." -msgstr "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты." - -#: ../../extend/addon/hzaddons/cart/myshop.php:44 -msgid "Access Denied." -msgstr "Доступ запрещён." - -#: ../../extend/addon/hzaddons/cart/myshop.php:155 -#: ../../extend/addon/hzaddons/cart/myshop.php:191 -#: ../../extend/addon/hzaddons/cart/myshop.php:225 -#: ../../extend/addon/hzaddons/cart/myshop.php:273 -#: ../../extend/addon/hzaddons/cart/myshop.php:308 -#: ../../extend/addon/hzaddons/cart/myshop.php:331 -msgid "Access Denied" -msgstr "Доступ запрещён" - -#: ../../extend/addon/hzaddons/cart/myshop.php:200 -#: ../../extend/addon/hzaddons/cart/myshop.php:234 -#: ../../extend/addon/hzaddons/cart/myshop.php:283 -#: ../../extend/addon/hzaddons/cart/myshop.php:341 -msgid "Invalid Item" -msgstr "Недействительный элемент" - -#: ../../extend/addon/hzaddons/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "Настройки Nsabait обновлены" - -#: ../../extend/addon/hzaddons/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" -msgstr "Включить плагин NSAbait" - -#: ../../extend/addon/hzaddons/nsabait/nsabait.php:161 -msgid "NSAbait Settings" -msgstr "Настройки Nsabait" - -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:79 -msgid "Hubzilla File Storage Import" -msgstr "Импорт файлового хранилища Hubzilla" - -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:80 -msgid "This will import all your cloud files from another server." -msgstr "Это позволит импортировать все ваши файлы с другого сервера." - -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:81 -msgid "Hubzilla Server base URL" -msgstr "Базовый URL сервера Hubzilla" - -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:82 -msgid "Since modified date yyyy-mm-dd" -msgstr "Начиная с даты изменений yyyy-mm-dd" - -#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:83 -msgid "Until modified date yyyy-mm-dd" -msgstr "Заканчивая датой изменений yyyy-mm-dd" - -#: ../../extend/addon/hzaddons/nofed/nofed.php:42 -msgid "Federate" -msgstr "" - -#: ../../extend/addon/hzaddons/nofed/nofed.php:56 -msgid "nofed Settings saved." -msgstr "Настройки nofed сохранены." - -#: ../../extend/addon/hzaddons/nofed/nofed.php:72 -msgid "Allow Federation Toggle" -msgstr "Разрешить переключение федерации" - -#: ../../extend/addon/hzaddons/nofed/nofed.php:76 -msgid "Federate posts by default" -msgstr "Разрешить федерацию публикаций по умолчанию" - -#: ../../extend/addon/hzaddons/nofed/nofed.php:80 -msgid "NoFed Settings" -msgstr "Настройки NoFed" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:123 -msgid "generic profile image" -msgstr "Стандартное изображение профиля" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:124 -msgid "random geometric pattern" -msgstr "Случайный геометрический рисунок" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:125 -msgid "monster face" -msgstr "Лицо чудовища" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:126 -msgid "computer generated face" -msgstr "Сгенерированное компьютером лицо" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:127 -msgid "retro arcade style face" -msgstr "Лицо в стиле старой аркадной игры" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:128 -msgid "Hub default profile photo" -msgstr "Фотография профиля по умолчанию" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:143 -msgid "Information" -msgstr "Информация" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:143 -msgid "" -"Libravatar addon is installed, too. Please disable Libravatar addon or this " -"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar." - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:151 -msgid "Default avatar image" -msgstr "Изображение аватара по умолчанию" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:151 -msgid "Select default avatar image if none was found at Gravatar. See README" -msgstr "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)." - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:152 -msgid "Rating of images" -msgstr "Оценки изображений" - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:152 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "Выберите подходящую оценку аватара для вашего сайта (см. README)." - -#: ../../extend/addon/hzaddons/gravatar/gravatar.php:165 -msgid "Gravatar settings updated." -msgstr "Настройки Gravatar обновлены." - -#: ../../extend/addon/hzaddons/redred/redred.php:45 -msgid "Post to Red" -msgstr "Опубликовать в Red" - -#: ../../extend/addon/hzaddons/redred/redred.php:60 -msgid "Channel is required." -msgstr "Необходим канал." - -#: ../../extend/addon/hzaddons/redred/redred.php:65 -#: ../../Zotlabs/Module/Network.php:304 -msgid "Invalid channel." -msgstr "Недействительный канал." - -#: ../../extend/addon/hzaddons/redred/redred.php:76 -msgid "redred Settings saved." -msgstr "Настройки RedRed сохранены." - -#: ../../extend/addon/hzaddons/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" -msgstr "Разрешить публиковать в другой канал Hubzilla" - -#: ../../extend/addon/hzaddons/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" -msgstr "Отправлять общедоступные публикации в канал Hubzilla по умолчанию" - -#: ../../extend/addon/hzaddons/redred/redred.php:103 -msgid "Hubzilla API Path" -msgstr "Путь к Hubzilla API" - -#: ../../extend/addon/hzaddons/redred/redred.php:107 -msgid "Hubzilla login name" -msgstr "Имя входа Hubzilla" - -#: ../../extend/addon/hzaddons/redred/redred.php:111 -msgid "Hubzilla channel name" -msgstr "Название канала Hubzilla" - -#: ../../extend/addon/hzaddons/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" -msgstr "Настройки перекрёстных публикаций Hubzilla" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." -msgstr "" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." -msgstr "" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." -msgstr "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:51 -msgid "Guitar Chords" -msgstr "Гитарные аккорды" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" -msgstr "Полный онлайн словарь аккордов" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:57 -msgid "Tuning" -msgstr "Настройка" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" -msgstr "Наименование аккорда - example: Em7" - -#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" -msgstr "Показывать струны для левшей" - -#: ../../extend/addon/hzaddons/chords/chords.php:33 -msgid "Quick Reference" -msgstr "Быстрая ссылка" - -#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:34 -msgid "New registration" -msgstr "Новая регистрация" - -#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:40 -#: ../../Zotlabs/Module/Invite.php:82 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Доставка сообщения не удалась." - -#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:42 -#, php-format -msgid "Message sent to %s. New account registration: %s" -msgstr "Сообщение отправлено в %s. Регистрация нового аккаунта: %s" - -#: ../../extend/addon/hzaddons/irc/irc.php:45 -msgid "Channels to auto connect" -msgstr "Каналы для автоматического подключения" - -#: ../../extend/addon/hzaddons/irc/irc.php:45 -#: ../../extend/addon/hzaddons/irc/irc.php:49 -msgid "Comma separated list" -msgstr "Список, разделённый запятыми" - -#: ../../extend/addon/hzaddons/irc/irc.php:49 -#: ../../extend/addon/hzaddons/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Популярные каналы" - -#: ../../extend/addon/hzaddons/irc/irc.php:53 -msgid "IRC Settings" -msgstr "Настройки IRC" - -#: ../../extend/addon/hzaddons/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Настройки IRC сохранены" - -#: ../../extend/addon/hzaddons/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Чат IRC" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "дать леща" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "получил леща" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:20 -msgid "shag" -msgstr "вздрючить" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "вздрюченный" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:21 -msgid "patent" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:21 -msgid "patented" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:22 -msgid "hug" -msgstr "обнять" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:22 -msgid "hugged" -msgstr "обнятый" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:23 -msgid "murder" -msgstr "убить" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:23 -msgid "murdered" -msgstr "убитый" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:24 -msgid "worship" -msgstr "почитать" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:24 -msgid "worshipped" -msgstr "почитаемый" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:25 -msgid "kiss" -msgstr "целовать" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:25 -msgid "kissed" -msgstr "поцелованный" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:26 -msgid "tempt" -msgstr "искушать" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:26 -msgid "tempted" -msgstr "искушённый" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:27 -msgid "raise eyebrows at" -msgstr "поднять брови" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" -msgstr "поднял брови" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:28 -msgid "insult" -msgstr "оскорбить" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:28 -msgid "insulted" -msgstr "оскорблённый" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:29 -msgid "praise" -msgstr "хвалить" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:29 -msgid "praised" -msgstr "похваленный" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:30 -msgid "be dubious of" -msgstr "усомниться" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:30 -msgid "was dubious of" -msgstr "усомнился" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:31 -msgid "eat" -msgstr "есть" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:31 -msgid "ate" -msgstr "съел" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:32 -msgid "giggle and fawn at" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:32 -msgid "giggled and fawned at" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:33 -msgid "doubt" -msgstr "сомневаться" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:33 -msgid "doubted" -msgstr "сомневался" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:34 -msgid "glare" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:34 -msgid "glared at" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:35 -msgid "fuck" -msgstr "трахнуть" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:35 -msgid "fucked" -msgstr "трахнул" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:36 -msgid "bonk" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:36 -msgid "bonked" -msgstr "" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:37 -msgid "declare undying love for" -msgstr "признаться в любви к" - -#: ../../extend/addon/hzaddons/morepokes/morepokes.php:37 -msgid "declared undying love for" -msgstr "признался в любви к" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:45 -msgid "Post to WordPress" -msgstr "Опубликовать в WordPress" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" -msgstr "Включить плагин публикаций WordPress" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:86 -msgid "WordPress username" -msgstr "Имя пользователя WordPress" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:90 -msgid "WordPress password" -msgstr "Пароль WordPress" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:94 -msgid "WordPress API URL" -msgstr "URL API WordPress" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" -msgstr "Обычно https://your-blog.tld/xmlrpc.php" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:98 -msgid "WordPress blogid" -msgstr "" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" -msgstr "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:105 -msgid "Post to WordPress by default" -msgstr "Публиковать в WordPress по умолчанию" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" -msgstr "Пересылать комментарии (требуется плагин hubzilla_wp)" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:113 -msgid "WordPress Post Settings" -msgstr "Настройки публикации в WordPress" - -#: ../../extend/addon/hzaddons/wppost/wppost.php:129 -msgid "Wordpress Settings saved." -msgstr "Настройки WordPress сохранены." - -#: ../../extend/addon/hzaddons/wholikesme/wholikesme.php:29 -msgid "Who likes me?" -msgstr "Кому я нравлюсь?" - -#: ../../extend/addon/hzaddons/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "Ваш аккаунт на %s перестанет работать через несколько дней." - -#: ../../extend/addon/hzaddons/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "Ваш тестовый аккаунт в $Productname близок к окончанию срока действия." - -#: ../../boot.php:1595 -msgid "Create an account to access services and applications" -msgstr "Создайте аккаунт для доступа к службам и приложениям" - -#: ../../boot.php:1596 ../../include/nav.php:158 -#: ../../Zotlabs/Module/Register.php:294 -msgid "Register" -msgstr "Регистрация" - -#: ../../boot.php:1615 ../../include/nav.php:105 ../../include/nav.php:134 -#: ../../include/nav.php:153 -msgid "Logout" -msgstr "Выход" - -#: ../../boot.php:1616 ../../include/nav.php:120 ../../include/nav.php:124 -#: ../../Zotlabs/Lib/Apps.php:305 -msgid "Login" -msgstr "Войти" - -#: ../../boot.php:1617 ../../include/channel.php:2334 -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Удаленная аутентификация" - -#: ../../boot.php:1619 -msgid "Login/Email" -msgstr "Пользователь / email" - -#: ../../boot.php:1620 -msgid "Password" -msgstr "Пароль" - -#: ../../boot.php:1621 -msgid "Remember me" -msgstr "Запомнить меня" - -#: ../../boot.php:1624 -msgid "Forgot your password?" -msgstr "Забыли пароль или логин?" - -#: ../../boot.php:1625 ../../Zotlabs/Module/Lostpass.php:91 -msgid "Password Reset" -msgstr "Сбросить пароль" - -#: ../../boot.php:2408 -#, php-format -msgid "[$Projectname] Website SSL error for %s" -msgstr "[$Projectname] Ошибка SSL/TLS веб-сайта для %s" - -#: ../../boot.php:2413 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "SSL/TLS сертификат веб-сайт недействителен. Исправьте это." - -#: ../../boot.php:2529 -#, php-format -msgid "[$Projectname] Cron tasks not running on %s" -msgstr "[$Projectname] Задания Cron не запущены на %s" - -#: ../../boot.php:2534 -msgid "Cron/Scheduled tasks not running." -msgstr "Задания Cron / планировщика не запущены." - -#: ../../boot.php:2535 ../../include/datetime.php:238 -msgid "never" -msgstr "никогда" - -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3078 -#: ../../Zotlabs/Module/Admin/Site.php:198 -msgid "Default" -msgstr "По умолчанию" - -#: ../../view/theme/redbasic/php/config.php:16 -#: ../../view/theme/redbasic/php/config.php:19 -msgid "Focus (Hubzilla default)" -msgstr "Фокус (по умолчанию Hubzilla)" - -#: ../../view/theme/redbasic/php/config.php:97 -msgid "Theme settings" -msgstr "Настройки темы" - -#: ../../view/theme/redbasic/php/config.php:98 -msgid "Narrow navbar" -msgstr "Узкая панель навигации" - -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Navigation bar background color" -msgstr "Панель навигации, цвет фона" - -#: ../../view/theme/redbasic/php/config.php:100 -msgid "Navigation bar icon color " -msgstr "Панель навигации, цвет значков" - -#: ../../view/theme/redbasic/php/config.php:101 -msgid "Navigation bar active icon color " -msgstr "Панель навигации, цвет активного значка" - -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Link color" -msgstr "цвет ссылок" - -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set font-color for banner" -msgstr "Цвет текста в шапке" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Set the background color" -msgstr "Цвет фона" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Set the background image" -msgstr "Фоновое изображение" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Set the background color of items" -msgstr "Цвет фона элементов" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Set the background color of comments" -msgstr "Цвет фона комментариев" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Set font-size for the entire application" -msgstr "Установить системный размер шрифта" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Examples: 1rem, 100%, 16px" -msgstr "Например: 1rem, 100%, 16px" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Set font-color for posts and comments" -msgstr "Цвет шрифта для постов и комментариев" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Set radius of corners" -msgstr "Радиус скруглений" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Example: 4px" -msgstr "Например: 4px" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Set shadow depth of photos" -msgstr "Глубина теней фотографий" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Set maximum width of content region in pixel" -msgstr "Максимальная ширина содержания региона (в пикселях)" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Leave empty for default width" -msgstr "Оставьте пустым для ширины по умолчанию" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Set size of conversation author photo" -msgstr "Размер фотографии автора беседы" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set size of followup author photos" -msgstr "Размер фотографий подписчиков" - -#: ../../include/bbcode.php:200 ../../include/bbcode.php:1202 -#: ../../include/bbcode.php:1205 ../../include/bbcode.php:1210 -#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1216 -#: ../../include/bbcode.php:1219 ../../include/bbcode.php:1224 -#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 -#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1238 -#: ../../include/bbcode.php:1241 -msgid "Image/photo" -msgstr "Изображение / фотография" - -#: ../../include/bbcode.php:239 ../../include/bbcode.php:1252 -msgid "Encrypted content" -msgstr "Зашифрованное содержание" - -#: ../../include/bbcode.php:255 -#, php-format -msgid "Install %1$s element %2$s" -msgstr "Установить %1$s элемент %2$s" - -#: ../../include/bbcode.php:259 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Эта публикация содержит устанавливаемый %s элемент, однако у вас нет разрешений для его установки на этом сайте." - -#: ../../include/bbcode.php:269 ../../Zotlabs/Module/Impel.php:43 -msgid "webpage" -msgstr "веб-страница" - -#: ../../include/bbcode.php:272 ../../Zotlabs/Module/Impel.php:53 -msgid "layout" -msgstr "шаблон" - -#: ../../include/bbcode.php:275 ../../Zotlabs/Module/Impel.php:48 -msgid "block" -msgstr "заблокировать" - -#: ../../include/bbcode.php:278 ../../Zotlabs/Module/Impel.php:60 -msgid "menu" -msgstr "меню" - -#: ../../include/bbcode.php:350 -msgid "card" -msgstr "карточка" - -#: ../../include/bbcode.php:352 -msgid "article" -msgstr "статья" - -#: ../../include/bbcode.php:354 ../../include/markdown.php:160 -#: ../../Zotlabs/Module/Tagger.php:77 -msgid "post" -msgstr "публикация" - -#: ../../include/bbcode.php:358 ../../include/markdown.php:158 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s была создана %2$s %3$s" - -#: ../../include/bbcode.php:435 ../../include/bbcode.php:443 -msgid "Click to open/close" -msgstr "Нажмите, чтобы открыть/закрыть" - -#: ../../include/bbcode.php:443 -msgid "spoiler" -msgstr "спойлер" - -#: ../../include/bbcode.php:456 -msgid "View article" -msgstr "Просмотр статьи" - -#: ../../include/bbcode.php:456 -msgid "View summary" -msgstr "Просмотр резюме" - -#: ../../include/bbcode.php:746 ../../include/bbcode.php:916 -#: ../../Zotlabs/Lib/NativeWikiPage.php:597 -msgid "Different viewers will see this text differently" -msgstr "Различные зрители увидят этот текст по-разному" - -#: ../../include/bbcode.php:1190 -msgid "$1 wrote:" -msgstr "$1 писал:" - -#: ../../include/account.php:36 -msgid "Not a valid email address" -msgstr "Недействительный адрес электронной почты" - -#: ../../include/account.php:38 -msgid "Your email domain is not among those allowed on this site" -msgstr "Домен электронной почты не входит в число тех, которые разрешены на этом сайте" - -#: ../../include/account.php:44 -msgid "Your email address is already registered at this site." -msgstr "Ваш адрес электронной почты уже зарегистрирован на этом сайте." - -#: ../../include/account.php:76 -msgid "An invitation is required." -msgstr "Требуется приглашение." - -#: ../../include/account.php:80 -msgid "Invitation could not be verified." -msgstr "Не удалось проверить приглашение." - -#: ../../include/account.php:158 -msgid "Please enter the required information." -msgstr "Пожалуйста, введите необходимую информацию." - -#: ../../include/account.php:225 -msgid "Failed to store account information." -msgstr "Не удалось сохранить информацию аккаунта." - -#: ../../include/account.php:314 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Подтверждение регистрации для %s" - -#: ../../include/account.php:385 -#, php-format -msgid "Registration request at %s" -msgstr "Запрос регистрации на %s" - -#: ../../include/account.php:407 -msgid "your registration password" -msgstr "ваш пароль регистрации" - -#: ../../include/account.php:413 ../../include/account.php:475 -#, php-format -msgid "Registration details for %s" -msgstr "Регистрационные данные для %s" - -#: ../../include/account.php:486 -msgid "Account approved." -msgstr "Аккаунт утвержден." - -#: ../../include/account.php:526 -#, php-format -msgid "Registration revoked for %s" -msgstr "Регистрация отозвана для %s" - -#: ../../include/account.php:805 ../../include/account.php:807 -msgid "Click here to upgrade." -msgstr "Нажмите здесь для обновления." - -#: ../../include/account.php:813 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Это действие превышает ограничения, установленные в вашем плане." - -#: ../../include/account.php:818 -msgid "This action is not available under your subscription plan." -msgstr "Это действие невозможно из-за ограничений в вашем плане." - -#: ../../include/auth.php:192 -msgid "Delegation session ended." -msgstr "Делегированная сессия завершена." - -#: ../../include/auth.php:196 -msgid "Logged out." -msgstr "Вышел из системы." - -#: ../../include/auth.php:291 -msgid "Email validation is incomplete. Please check your email." -msgstr "Проверка email не завершена. Пожалуйста, проверьте вашу почту." - -#: ../../include/auth.php:307 -msgid "Failed authentication" -msgstr "Ошибка аутентификации" - -#: ../../include/conversation.php:119 ../../include/event.php:1153 -#: ../../include/text.php:2025 ../../Zotlabs/Module/Events.php:260 -#: ../../Zotlabs/Module/Tagger.php:73 ../../Zotlabs/Module/Like.php:386 -msgid "event" -msgstr "событие" - -#: ../../include/conversation.php:122 ../../Zotlabs/Module/Like.php:121 -msgid "channel" -msgstr "канал" - -#: ../../include/conversation.php:146 ../../include/text.php:2030 -#: ../../Zotlabs/Module/Tagger.php:79 -msgid "comment" -msgstr "комментарий" - -#: ../../include/conversation.php:169 -#, php-format -msgid "likes %1$s's %2$s" -msgstr "Нравится %1$s %2$s" - -#: ../../include/conversation.php:172 -#, php-format -msgid "doesn't like %1$s's %2$s" -msgstr "Не нравится %1$s %2$s" - -#: ../../include/conversation.php:212 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s теперь в контакте с %2$s" - -#: ../../include/conversation.php:247 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ткнул %2$s" - -#: ../../include/conversation.php:251 ../../include/text.php:1140 -#: ../../include/text.php:1144 -msgid "poked" -msgstr "ткнут" - -#: ../../include/conversation.php:268 ../../Zotlabs/Module/Mood.php:67 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s в %2$s" - -#: ../../include/conversation.php:483 ../../Zotlabs/Lib/ThreadItem.php:431 -msgid "This is an unsaved preview" -msgstr "Это несохранённый просмотр" - -#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1142 -msgctxt "title" -msgid "Likes" -msgstr "Нравится" - -#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1142 -msgctxt "title" -msgid "Dislikes" -msgstr "Не нравится" - -#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1143 -msgctxt "title" -msgid "Agree" -msgstr "Согласен" - -#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1143 -msgctxt "title" -msgid "Disagree" -msgstr "Не согласен" - -#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1143 -msgctxt "title" -msgid "Abstain" -msgstr "Воздержался" - -#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1144 -msgctxt "title" -msgid "Attending" -msgstr "Посещаю" - -#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1144 -msgctxt "title" -msgid "Not attending" -msgstr "Не посещаю" - -#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1144 -msgctxt "title" -msgid "Might attend" -msgstr "Возможно посещу" - -#: ../../include/conversation.php:690 ../../Zotlabs/Lib/ThreadItem.php:158 -msgid "Select" -msgstr "Выбрать" - -#: ../../include/conversation.php:691 ../../include/conversation.php:736 -#: ../../Zotlabs/Lib/ThreadItem.php:148 ../../Zotlabs/Lib/Apps.php:500 -#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 -#: ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Connections.php:289 -#: ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Module/Editblock.php:139 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Editwebpage.php:167 -#: ../../Zotlabs/Module/Editlayout.php:138 -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Admin/Profs.php:176 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Settings/Oauth2.php:151 -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -#: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Profiles.php:800 ../../Zotlabs/Module/Thing.php:267 -#: ../../Zotlabs/Storage/Browser.php:291 -msgid "Delete" -msgstr "Удалить" - -#: ../../include/conversation.php:695 ../../Zotlabs/Lib/ThreadItem.php:247 -msgid "Toggle Star Status" -msgstr "Переключить статус пометки" - -#: ../../include/conversation.php:700 ../../Zotlabs/Lib/ThreadItem.php:97 -msgid "Private Message" -msgstr "Личное сообщение" - -#: ../../include/conversation.php:707 ../../Zotlabs/Lib/ThreadItem.php:258 -msgid "Message signature validated" -msgstr "Подпись сообщения проверена" - -#: ../../include/conversation.php:708 ../../Zotlabs/Lib/ThreadItem.php:259 -msgid "Message signature incorrect" -msgstr "Подпись сообщения неверная" - -#: ../../include/conversation.php:735 ../../Zotlabs/Module/Connections.php:303 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -msgid "Approve" -msgstr "Утвердить" - -#: ../../include/conversation.php:739 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Просмотреть профиль %s @ %s" - -#: ../../include/conversation.php:759 -msgid "Categories:" -msgstr "Категории:" - -#: ../../include/conversation.php:760 -msgid "Filed under:" -msgstr "Хранить под:" - -#: ../../include/conversation.php:766 ../../Zotlabs/Lib/ThreadItem.php:367 -#, php-format -msgid "from %s" -msgstr "от %s" - -#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:370 -#, php-format -msgid "last edited: %s" -msgstr "последнее редактирование: %s" - -#: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:371 -#, php-format -msgid "Expires: %s" -msgstr "Срок действия: %s" - -#: ../../include/conversation.php:785 -msgid "View in context" -msgstr "Показать в контексте" - -#: ../../include/conversation.php:787 ../../Zotlabs/Lib/ThreadItem.php:432 -#: ../../Zotlabs/Module/Photos.php:1108 -msgid "Please wait" -msgstr "Подождите пожалуйста" - -#: ../../include/conversation.php:886 -msgid "remove" -msgstr "удалить" - -#: ../../include/conversation.php:890 -msgid "Loading..." -msgstr "Загрузка..." - -#: ../../include/conversation.php:891 -msgid "Delete Selected Items" -msgstr "Удалить выбранные элементы" - -#: ../../include/conversation.php:934 -msgid "View Source" -msgstr "Просмотреть источник" - -#: ../../include/conversation.php:944 -msgid "Follow Thread" -msgstr "Следить за темой" - -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Прекратить отслеживать тему" - -#: ../../include/conversation.php:1047 ../../Zotlabs/Module/Connedit.php:615 -msgid "Recent Activity" -msgstr "Последние действия" - -#: ../../include/conversation.php:1057 ../../include/channel.php:1376 -#: ../../include/connections.php:110 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Module/Suggest.php:56 -#: ../../Zotlabs/Module/Directory.php:338 -msgid "Connect" -msgstr "Подключить" - -#: ../../include/conversation.php:1067 -msgid "Edit Connection" -msgstr "Редактировать контакт" - -#: ../../include/conversation.php:1077 -msgid "Message" -msgstr "Сообщение" - -#: ../../include/conversation.php:1087 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../Zotlabs/Module/Ratings.php:97 -msgid "Ratings" -msgstr "Оценки" - -#: ../../include/conversation.php:1097 ../../Zotlabs/Lib/Apps.php:320 -#: ../../Zotlabs/Module/Poke.php:182 -msgid "Poke" -msgstr "Ткнуть" - -#: ../../include/conversation.php:1211 -#, php-format -msgid "%s likes this." -msgstr "%s нравится это." - -#: ../../include/conversation.php:1211 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не нравится это." - -#: ../../include/conversation.php:1215 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d человеку это нравится." -msgstr[1] "%2$d человекам это нравится." -msgstr[2] "%2$d человекам это нравится." - -#: ../../include/conversation.php:1217 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d человеку это не нравится." -msgstr[1] "%2$d человекам это не нравится." -msgstr[2] "%2$d человекам это не нравится." - -#: ../../include/conversation.php:1223 -msgid "and" -msgstr "и" - -#: ../../include/conversation.php:1226 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", и ещё %d человеку" -msgstr[1] ", и ещё %d человекам" -msgstr[2] ", и ещё %d человекам" - -#: ../../include/conversation.php:1227 -#, php-format -msgid "%s like this." -msgstr "%s нравится это." - -#: ../../include/conversation.php:1227 -#, php-format -msgid "%s don't like this." -msgstr "%s не нравится это." - -#: ../../include/conversation.php:1270 -msgid "Set your location" -msgstr "Задать своё местоположение" - -#: ../../include/conversation.php:1271 -msgid "Clear browser location" -msgstr "Очистить местоположение из браузера" - -#: ../../include/conversation.php:1283 ../../Zotlabs/Module/Mail.php:288 -#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 -#: ../../Zotlabs/Module/Editblock.php:116 -#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Article_edit.php:101 -msgid "Insert web link" -msgstr "Вставить веб-ссылку" - -#: ../../include/conversation.php:1287 -msgid "Embed (existing) photo from your photo albums" -msgstr "Встроить (существующее) фото из вашего фотоальбома" - -#: ../../include/conversation.php:1322 ../../Zotlabs/Module/Mail.php:241 -#: ../../Zotlabs/Module/Mail.php:362 ../../Zotlabs/Module/Chat.php:205 -msgid "Please enter a link URL:" -msgstr "Пожалуйста введите URL ссылки:" - -#: ../../include/conversation.php:1323 -msgid "Tag term:" -msgstr "Теги:" - -#: ../../include/conversation.php:1324 -msgid "Where are you right now?" -msgstr "Где вы сейчас?" - -#: ../../include/conversation.php:1327 -#: ../../Zotlabs/Module/Profile_photo.php:467 -#: ../../Zotlabs/Module/Cover_photo.php:401 ../../Zotlabs/Module/Wiki.php:381 -msgid "Choose images to embed" -msgstr "Выбрать изображения для встраивания" - -#: ../../include/conversation.php:1328 -#: ../../Zotlabs/Module/Profile_photo.php:468 -#: ../../Zotlabs/Module/Cover_photo.php:402 ../../Zotlabs/Module/Wiki.php:382 -msgid "Choose an album" -msgstr "Выбрать альбом" - -#: ../../include/conversation.php:1329 -msgid "Choose a different album..." -msgstr "Выбрать другой альбом..." - -#: ../../include/conversation.php:1330 -#: ../../Zotlabs/Module/Profile_photo.php:470 -#: ../../Zotlabs/Module/Cover_photo.php:404 ../../Zotlabs/Module/Wiki.php:384 -msgid "Error getting album list" -msgstr "Ошибка получения списка альбомов" - -#: ../../include/conversation.php:1331 -#: ../../Zotlabs/Module/Profile_photo.php:471 -#: ../../Zotlabs/Module/Cover_photo.php:405 ../../Zotlabs/Module/Wiki.php:385 -msgid "Error getting photo link" -msgstr "Ошибка получения ссылки на фотографию" - -#: ../../include/conversation.php:1332 -#: ../../Zotlabs/Module/Profile_photo.php:472 -#: ../../Zotlabs/Module/Cover_photo.php:406 ../../Zotlabs/Module/Wiki.php:386 -msgid "Error getting album" -msgstr "Ошибка получения альбома" - -#: ../../include/conversation.php:1333 -msgid "Comments enabled" -msgstr "Комментарии включены" - -#: ../../include/conversation.php:1334 -msgid "Comments disabled" -msgstr "Комментарии отключены" - -#: ../../include/conversation.php:1341 ../../Zotlabs/Lib/ThreadItem.php:767 -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Module/Events.php:478 -#: ../../Zotlabs/Module/Webpages.php:247 -msgid "Preview" -msgstr "Предварительный просмотр" - -#: ../../include/conversation.php:1374 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Module/Layouts.php:194 -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Wiki.php:287 -msgid "Share" -msgstr "Поделиться" - -#: ../../include/conversation.php:1383 -msgid "Page link name" -msgstr "Название ссылки на страницу " - -#: ../../include/conversation.php:1386 -msgid "Post as" -msgstr "Опубликовать как" - -#: ../../include/conversation.php:1388 ../../Zotlabs/Lib/ThreadItem.php:758 -msgid "Bold" -msgstr "Жирный" - -#: ../../include/conversation.php:1389 ../../Zotlabs/Lib/ThreadItem.php:759 -msgid "Italic" -msgstr "Курсив" - -#: ../../include/conversation.php:1390 ../../Zotlabs/Lib/ThreadItem.php:760 -msgid "Underline" -msgstr "Подчеркнутый" - -#: ../../include/conversation.php:1391 ../../Zotlabs/Lib/ThreadItem.php:761 -msgid "Quote" -msgstr "Цитата" - -#: ../../include/conversation.php:1392 ../../Zotlabs/Lib/ThreadItem.php:762 -msgid "Code" -msgstr "Код" - -#: ../../include/conversation.php:1393 ../../Zotlabs/Lib/ThreadItem.php:764 -msgid "Attach/Upload file" -msgstr "Прикрепить/загрузить файл" - -#: ../../include/conversation.php:1396 ../../Zotlabs/Module/Wiki.php:378 -msgid "Embed an image from your albums" -msgstr "Встроить изображение из ваших альбомов" - -#: ../../include/conversation.php:1397 ../../include/conversation.php:1446 -#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Card_edit.php:131 -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:109 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../Zotlabs/Module/Connedit.php:924 -#: ../../Zotlabs/Module/Editwebpage.php:169 -#: ../../Zotlabs/Module/Editlayout.php:140 -#: ../../Zotlabs/Module/Admin/Addons.php:423 -#: ../../Zotlabs/Module/Cover_photo.php:399 -#: ../../Zotlabs/Module/Settings/Oauth2.php:86 -#: ../../Zotlabs/Module/Settings/Oauth2.php:114 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 -#: ../../Zotlabs/Module/Profiles.php:801 -msgid "Cancel" -msgstr "Отменить" - -#: ../../include/conversation.php:1398 ../../include/conversation.php:1445 -#: ../../Zotlabs/Module/Profile_photo.php:466 -#: ../../Zotlabs/Module/Cover_photo.php:400 ../../Zotlabs/Module/Wiki.php:380 -msgid "OK" -msgstr "" - -#: ../../include/conversation.php:1400 -msgid "Toggle voting" -msgstr "Подключить голосование" - -#: ../../include/conversation.php:1403 -msgid "Disable comments" -msgstr "Отключить комментарии" - -#: ../../include/conversation.php:1404 -msgid "Toggle comments" -msgstr "Переключить комментарии" - -#: ../../include/conversation.php:1409 ../../Zotlabs/Module/Photos.php:703 -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 -#: ../../Zotlabs/Module/Article_edit.php:117 -msgid "Title (optional)" -msgstr "Заголовок (необязательно)" - -#: ../../include/conversation.php:1412 -msgid "Categories (optional, comma-separated list)" -msgstr "Категории (необязательно, список через запятую)" - -#: ../../include/conversation.php:1413 ../../Zotlabs/Module/Events.php:479 -msgid "Permission settings" -msgstr "Настройки разрешений" - -#: ../../include/conversation.php:1435 -msgid "Other networks and post services" -msgstr "Другие сети и службы публикаций" - -#: ../../include/conversation.php:1438 ../../Zotlabs/Module/Mail.php:292 -#: ../../Zotlabs/Module/Mail.php:434 -msgid "Set expiration date" -msgstr "Установить срок действия" - -#: ../../include/conversation.php:1441 -msgid "Set publish date" -msgstr "Установить дату публикации" - -#: ../../include/conversation.php:1443 ../../Zotlabs/Lib/ThreadItem.php:771 -#: ../../Zotlabs/Module/Mail.php:294 ../../Zotlabs/Module/Mail.php:436 -#: ../../Zotlabs/Module/Chat.php:206 -msgid "Encrypt text" -msgstr "Зашифровать текст" - -#: ../../include/conversation.php:1702 -msgid "Commented Order" -msgstr "По комментариям" - -#: ../../include/conversation.php:1705 -msgid "Sort by Comment Date" -msgstr "Сортировать по дате комментария" - -#: ../../include/conversation.php:1709 -msgid "Posted Order" -msgstr "По публикациям" - -#: ../../include/conversation.php:1712 -msgid "Sort by Post Date" -msgstr "Сортировать по дате публикации" - -#: ../../include/conversation.php:1717 ../../Zotlabs/Module/Profiles.php:733 -msgid "Personal" -msgstr "Личное" - -#: ../../include/conversation.php:1720 -msgid "Posts that mention or involve you" -msgstr "Публикации, где вы были упомянуты или участвовали" - -#: ../../include/conversation.php:1726 ../../Zotlabs/Module/Connections.php:80 -#: ../../Zotlabs/Module/Connections.php:89 -#: ../../Zotlabs/Module/Notifications.php:50 ../../Zotlabs/Module/Menu.php:179 -msgid "New" -msgstr "Новые" - -#: ../../include/conversation.php:1729 -msgid "Activity Stream - by date" -msgstr "Поток активности - по дате" - -#: ../../include/conversation.php:1735 -msgid "Starred" -msgstr "Отмеченые" - -#: ../../include/conversation.php:1738 -msgid "Favourite Posts" -msgstr "Любимые публикации" - -#: ../../include/conversation.php:1745 -msgid "Spam" -msgstr "Спам" - -#: ../../include/conversation.php:1748 -msgid "Posts flagged as SPAM" -msgstr "Публикация помечена как спам" - -#: ../../include/conversation.php:1820 ../../include/nav.php:370 -#: ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Channel" -msgstr "Канал" - -#: ../../include/conversation.php:1823 ../../include/nav.php:373 -msgid "Status Messages and Posts" -msgstr "Статусы и публикации" - -#: ../../include/conversation.php:1833 ../../include/nav.php:383 -#: ../../Zotlabs/Module/Help.php:80 -msgid "About" -msgstr "О себе" - -#: ../../include/conversation.php:1836 ../../include/nav.php:386 -msgid "Profile Details" -msgstr "Информация о профиле" - -#: ../../include/conversation.php:1843 ../../include/nav.php:393 -#: ../../Zotlabs/Lib/Apps.php:314 ../../Zotlabs/Module/Fbrowser.php:29 -msgid "Photos" -msgstr "Фотографии" - -#: ../../include/conversation.php:1846 ../../include/nav.php:396 -#: ../../include/photos.php:667 -msgid "Photo Albums" -msgstr "Фотоальбомы" - -#: ../../include/conversation.php:1851 ../../include/nav.php:401 -#: ../../Zotlabs/Lib/Apps.php:309 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Storage/Browser.php:272 -msgid "Files" -msgstr "Файлы" - -#: ../../include/conversation.php:1854 ../../include/nav.php:404 -msgid "Files and Storage" -msgstr "Файлы и хранилище" - -#: ../../include/conversation.php:1862 ../../include/conversation.php:1865 -#: ../../Zotlabs/Lib/Apps.php:315 -msgid "Events" -msgstr "События" - -#: ../../include/conversation.php:1876 ../../include/conversation.php:1879 -#: ../../include/nav.php:426 ../../include/nav.php:429 -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -msgid "Chatrooms" -msgstr "Чаты" - -#: ../../include/conversation.php:1891 ../../include/nav.php:439 -msgid "Bookmarks" -msgstr "Закладки" - -#: ../../include/conversation.php:1894 ../../include/nav.php:442 -msgid "Saved Bookmarks" -msgstr "Сохранённые закладки" - -#: ../../include/conversation.php:1902 ../../include/nav.php:450 -#: ../../include/features.php:123 ../../Zotlabs/Lib/Apps.php:297 -#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 -msgid "Cards" -msgstr "Карточки" - -#: ../../include/conversation.php:1905 ../../include/nav.php:453 -msgid "View Cards" -msgstr "Просмотреть карточки" - -#: ../../include/conversation.php:1913 -msgid "articles" -msgstr "статьи" - -#: ../../include/conversation.php:1916 ../../include/nav.php:464 -msgid "View Articles" -msgstr "Просмотр статей" - -#: ../../include/conversation.php:1924 ../../include/nav.php:473 -#: ../../Zotlabs/Lib/Apps.php:310 ../../Zotlabs/Module/Webpages.php:237 -msgid "Webpages" -msgstr "Веб-страницы" - -#: ../../include/conversation.php:1927 ../../include/nav.php:476 -msgid "View Webpages" -msgstr "Просмотр веб-страниц" - -#: ../../include/conversation.php:1937 ../../include/nav.php:486 -#: ../../Zotlabs/Module/Wiki.php:197 -msgid "Wikis" -msgstr "" - -#: ../../include/conversation.php:1940 ../../include/nav.php:489 -#: ../../include/features.php:96 ../../Zotlabs/Lib/Apps.php:311 -msgid "Wiki" -msgstr "" - -#: ../../include/conversation.php:1990 ../../include/taxonomy.php:661 -#: ../../include/channel.php:1539 ../../Zotlabs/Lib/ThreadItem.php:216 -#: ../../Zotlabs/Module/Photos.php:1165 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Нравится" -msgstr[1] "Нравится" -msgstr[2] "Нравится" - -#: ../../include/conversation.php:1993 ../../Zotlabs/Lib/ThreadItem.php:221 -#: ../../Zotlabs/Module/Photos.php:1170 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Не нравится" -msgstr[1] "Не нравится" -msgstr[2] "Не нравится" - -#: ../../include/conversation.php:1996 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Посетит" -msgstr[1] "Посетят" -msgstr[2] "Посетят" - -#: ../../include/conversation.php:1999 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Не посетит" -msgstr[1] "Не посетят" -msgstr[2] "Не посетят" - -#: ../../include/conversation.php:2002 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr "Не решил" - -#: ../../include/conversation.php:2005 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Согласен" -msgstr[1] "Согласны" -msgstr[2] "Согласны" - -#: ../../include/conversation.php:2008 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Не согласен" -msgstr[1] "Не согласны" -msgstr[2] "Не согласны" - -#: ../../include/conversation.php:2011 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Воздержался" -msgstr[1] "Воздержались" -msgstr[2] "Воздержались" - -#: ../../include/zot.php:772 -msgid "Invalid data packet" -msgstr "Неверный пакет данных" - -#: ../../include/zot.php:799 -msgid "Unable to verify channel signature" -msgstr "Невозможно проверить подпись канала" - -#: ../../include/zot.php:2557 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Невозможно проверить подпись сайта %s" - -#: ../../include/zot.php:4221 -msgid "invalid target signature" -msgstr "недопустимая целевая подпись" - -#: ../../include/event.php:24 ../../include/event.php:71 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../include/event.php:32 ../../include/event.php:75 -msgid "Starts:" -msgstr "Начало:" - -#: ../../include/event.php:42 ../../include/event.php:79 -msgid "Finishes:" -msgstr "Окончание:" - -#: ../../include/event.php:54 ../../include/event.php:86 -#: ../../include/channel.php:1391 ../../Zotlabs/Module/Directory.php:324 -msgid "Location:" -msgstr "Местоположение:" - -#: ../../include/event.php:1011 -msgid "This event has been added to your calendar." -msgstr "Это событие было добавлено в ваш календарь." - -#: ../../include/event.php:1227 -msgid "Not specified" -msgstr "Не указано" - -#: ../../include/event.php:1228 -msgid "Needs Action" -msgstr "Требует действия" - -#: ../../include/event.php:1229 -msgid "Completed" -msgstr "Завершено" - -#: ../../include/event.php:1230 -msgid "In Process" -msgstr "В процессе" - -#: ../../include/event.php:1231 -msgid "Cancelled" -msgstr "Отменено" - -#: ../../include/event.php:1308 ../../include/connections.php:698 -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 -#: ../../Zotlabs/Module/Profiles.php:792 -msgid "Mobile" -msgstr "Мобильный" - -#: ../../include/event.php:1309 ../../include/connections.php:699 -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:793 -msgid "Home" -msgstr "Домашний" - -#: ../../include/event.php:1310 ../../include/connections.php:700 -msgid "Home, Voice" -msgstr "Дом, голос" - -#: ../../include/event.php:1311 ../../include/connections.php:701 -msgid "Home, Fax" -msgstr "Дом, факс" - -#: ../../include/event.php:1312 ../../include/connections.php:702 -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:794 -msgid "Work" -msgstr "Рабочий" - -#: ../../include/event.php:1313 ../../include/connections.php:703 -msgid "Work, Voice" -msgstr "Работа, голос" - -#: ../../include/event.php:1314 ../../include/connections.php:704 -msgid "Work, Fax" -msgstr "Работа, факс" - -#: ../../include/event.php:1315 ../../include/event.php:1322 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/connections.php:705 ../../include/connections.php:712 -#: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/Connedit.php:918 -#: ../../Zotlabs/Module/Settings/Channel.php:496 -#: ../../Zotlabs/Module/New_channel.php:172 -#: ../../Zotlabs/Module/Register.php:233 ../../Zotlabs/Module/Profiles.php:795 -msgid "Other" -msgstr "Другой" - -#: ../../include/attach.php:265 ../../include/attach.php:374 -msgid "Item was not found." -msgstr "Элемент не найден." - -#: ../../include/attach.php:282 -msgid "Unknown error." -msgstr "Неизвестная ошибка." - -#: ../../include/attach.php:567 -msgid "No source file." -msgstr "Нет исходного файла." - -#: ../../include/attach.php:589 -msgid "Cannot locate file to replace" -msgstr "Не удается найти файл для замены" - -#: ../../include/attach.php:608 -msgid "Cannot locate file to revise/update" -msgstr "Не удается найти файл для пересмотра / обновления" - -#: ../../include/attach.php:750 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Файл превышает предельный размер %d" - -#: ../../include/attach.php:771 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Вы достигли предела %1$.0f Мбайт для хранения вложений." - -#: ../../include/attach.php:953 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена." - -#: ../../include/attach.php:982 -msgid "Stored file could not be verified. Upload failed." -msgstr "Файл для сохранения не может быть проверен. Загрузка не удалась." - -#: ../../include/attach.php:1056 ../../include/attach.php:1072 -msgid "Path not available." -msgstr "Путь недоступен." - -#: ../../include/attach.php:1121 ../../include/attach.php:1286 -msgid "Empty pathname" -msgstr "Пустое имя пути" - -#: ../../include/attach.php:1147 -msgid "duplicate filename or path" -msgstr "дублирующееся имя файла или пути" - -#: ../../include/attach.php:1172 -msgid "Path not found." -msgstr "Путь не найден." - -#: ../../include/attach.php:1240 -msgid "mkdir failed." -msgstr "mkdir не удался" - -#: ../../include/attach.php:1244 -msgid "database storage failed." -msgstr "ошибка при записи базы данных." - -#: ../../include/attach.php:1292 -msgid "Empty path" -msgstr "Пустое имя пути" - -#: ../../include/feedutils.php:860 ../../include/text.php:1451 -msgid "unknown" -msgstr "неизвестный" - -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Закладки пользователя %1$s" - -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Параметры каталога" - -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Безопасный режим" - -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Только публичные форумы" - -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Только этот веб-сайт" - -#: ../../include/network.php:760 -msgid "view full size" -msgstr "посмотреть в полный размер" - -#: ../../include/network.php:1763 ../../include/network.php:1764 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1765 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1766 -msgid "GNU-Social" -msgstr "GNU social" - -#: ../../include/network.php:1767 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1770 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1771 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1772 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1773 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1774 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1775 -msgid "MySpace" -msgstr "" - -#: ../../include/activities.php:41 -msgid " and " -msgstr " и " - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "общедоступный профиль" - -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s изменил %2$s на “%3$s”" - -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Посетить %1$s %2$s" - -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s обновлено %2$s, изменено %3$s." - -#: ../../include/nav.php:88 -msgid "Remote authentication" -msgstr "Удаленная аутентификация" - -#: ../../include/nav.php:88 -msgid "Click to authenticate to your home hub" -msgstr "Нажмите, чтобы аутентифицировать себя на домашнем узле" - -#: ../../include/nav.php:94 ../../Zotlabs/Lib/Apps.php:306 -#: ../../Zotlabs/Module/Manage.php:170 -msgid "Channel Manager" -msgstr "Менеджер каналов" - -#: ../../include/nav.php:94 -msgid "Manage your channels" -msgstr "Управление вашими каналами" - -#: ../../include/nav.php:97 ../../include/group.php:320 -#: ../../include/features.php:221 ../../Zotlabs/Lib/Apps.php:333 -#: ../../Zotlabs/Widget/Activity_filter.php:68 -#: ../../Zotlabs/Module/Group.php:113 ../../Zotlabs/Module/Group.php:124 -msgid "Privacy Groups" -msgstr "Группы безопасности" - -#: ../../include/nav.php:97 -msgid "Manage your privacy groups" -msgstr "Управление вашим группами безопасности" - -#: ../../include/nav.php:99 ../../Zotlabs/Lib/Apps.php:308 -#: ../../Zotlabs/Widget/Settings_menu.php:141 -#: ../../Zotlabs/Widget/Newmember.php:46 -#: ../../Zotlabs/Module/Admin/Addons.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 -msgid "Settings" -msgstr "Настройки" - -#: ../../include/nav.php:99 -msgid "Account/Channel Settings" -msgstr "Настройки аккаунта / канала" - -#: ../../include/nav.php:105 ../../include/nav.php:134 -msgid "End this session" -msgstr "Закончить эту сессию" - -#: ../../include/nav.php:108 -msgid "Your profile page" -msgstr "Страницa вашего профиля" - -#: ../../include/nav.php:111 ../../include/channel.php:1296 -#: ../../Zotlabs/Module/Profiles.php:830 -msgid "Edit Profiles" -msgstr "Редактирование профилей" - -#: ../../include/nav.php:111 -msgid "Manage/Edit profiles" -msgstr "Управление / редактирование профилей" - -#: ../../include/nav.php:113 ../../Zotlabs/Widget/Newmember.php:28 -msgid "Edit your profile" -msgstr "Редактировать профиль" - -#: ../../include/nav.php:120 ../../include/nav.php:124 -msgid "Sign in" -msgstr "Войти" - -#: ../../include/nav.php:151 -msgid "Take me home" -msgstr "Домой" - -#: ../../include/nav.php:153 -msgid "Log me out of this site" -msgstr "Выйти с этого сайта" - -#: ../../include/nav.php:158 -msgid "Create an account" -msgstr "Создать аккаунт" - -#: ../../include/nav.php:170 ../../include/nav.php:272 -#: ../../include/help.php:68 ../../include/help.php:74 -#: ../../Zotlabs/Lib/Apps.php:317 ../../Zotlabs/Module/Layouts.php:186 -msgid "Help" -msgstr "Помощь" - -#: ../../include/nav.php:170 -msgid "Help and documentation" -msgstr "Справочная информация и документация" - -#: ../../include/nav.php:185 ../../include/acl_selectors.php:118 -#: ../../include/text.php:1062 ../../include/text.php:1074 -#: ../../Zotlabs/Lib/Apps.php:322 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:148 -#: ../../Zotlabs/Module/Connections.php:335 ../../Zotlabs/Module/Search.php:44 -msgid "Search" -msgstr "Поиск" - -#: ../../include/nav.php:185 -msgid "Search site @name, !forum, #tag, ?docs, content" -msgstr "Искать на сайте @name, !forum, #tag, ?docs, содержимое" - -#: ../../include/nav.php:191 ../../Zotlabs/Widget/Admin.php:55 -msgid "Admin" -msgstr "Администрирование" - -#: ../../include/nav.php:191 -msgid "Site Setup and Configuration" -msgstr "Установка и конфигурация сайта" - -#: ../../include/nav.php:276 ../../Zotlabs/Widget/Notifications.php:162 -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -#: ../../Zotlabs/Module/New_channel.php:154 -#: ../../Zotlabs/Module/New_channel.php:161 -msgid "Loading" -msgstr "Загрузка" - -#: ../../include/nav.php:282 -msgid "@name, !forum, #tag, ?doc, content" -msgstr "@name, !forum, #tag, ?docs, содержимое" - -#: ../../include/nav.php:283 -msgid "Please wait..." -msgstr "Подождите пожалуйста ..." - -#: ../../include/nav.php:289 -msgid "Add Apps" -msgstr "Добавить приложения" - -#: ../../include/nav.php:290 -msgid "Arrange Apps" -msgstr "Упорядочить приложения" - -#: ../../include/nav.php:291 -msgid "Toggle System Apps" -msgstr "Переключить системные приложения" - -#: ../../include/nav.php:412 ../../include/nav.php:415 -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" -msgstr "Календарь" - -#: ../../include/nav.php:461 ../../include/features.php:133 -#: ../../Zotlabs/Lib/Apps.php:296 ../../Zotlabs/Module/Articles.php:38 -#: ../../Zotlabs/Module/Articles.php:191 -msgid "Articles" -msgstr "Статьи" - -#: ../../include/help.php:34 -msgid "Help:" -msgstr "Помощь:" - -#: ../../include/help.php:78 -msgid "Not Found" -msgstr "Не найдено" - -#: ../../include/help.php:81 ../../Zotlabs/Lib/NativeWikiPage.php:519 -#: ../../Zotlabs/Web/Router.php:167 ../../Zotlabs/Module/Block.php:77 -#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Display.php:141 -#: ../../Zotlabs/Module/Display.php:158 ../../Zotlabs/Module/Display.php:175 -msgid "Page not found." -msgstr "Страница не найдена." - -#: ../../include/group.php:22 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем." - -#: ../../include/group.php:264 -msgid "Add new connections to this privacy group" -msgstr "Добавить новые контакты в группу безопасности" - -#: ../../include/group.php:298 -msgid "edit" -msgstr "редактировать" - -#: ../../include/group.php:321 -msgid "Edit group" -msgstr "Редактировать группу" - -#: ../../include/group.php:322 -msgid "Add privacy group" -msgstr "Добавить группу безопасности" - -#: ../../include/group.php:323 -msgid "Channels not in any privacy group" -msgstr "Каналы не включены ни в одну группу безопасности" - -#: ../../include/group.php:325 ../../Zotlabs/Widget/Savedsearch.php:84 -msgid "add" -msgstr "добавить" - -#: ../../include/import.php:25 -msgid "Unable to import a removed channel." -msgstr "Невозможно импортировать удалённый канал." - -#: ../../include/import.php:51 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Не удалось создать дублирующийся идентификатор канала. Импорт невозможен." - -#: ../../include/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "Клон канала не найден. Импорт невозможен." - -#: ../../include/photo/photo_driver.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:120 -#: ../../Zotlabs/Module/Profile_photo.php:248 -msgid "Profile Photos" -msgstr "Фотографии профиля" - -#: ../../include/taxonomy.php:320 -msgid "Trending" -msgstr "В тренде" - -#: ../../include/taxonomy.php:320 ../../include/taxonomy.php:449 -#: ../../include/taxonomy.php:470 ../../Zotlabs/Widget/Tagcloud.php:22 -msgid "Tags" -msgstr "Теги" - -#: ../../include/taxonomy.php:409 ../../include/taxonomy.php:491 -#: ../../include/taxonomy.php:511 ../../include/taxonomy.php:532 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 -#: ../../Zotlabs/Widget/Appcategories.php:43 -msgid "Categories" -msgstr "Категории" - -#: ../../include/taxonomy.php:552 -msgid "Keywords" -msgstr "Ключевые слова" - -#: ../../include/taxonomy.php:573 -msgid "have" -msgstr "иметь" - -#: ../../include/taxonomy.php:573 -msgid "has" -msgstr "есть" - -#: ../../include/taxonomy.php:574 -msgid "want" -msgstr "хотеть" - -#: ../../include/taxonomy.php:574 -msgid "wants" -msgstr "хотеть" - -#: ../../include/taxonomy.php:575 ../../Zotlabs/Lib/ThreadItem.php:285 -msgid "like" -msgstr "нравится" - -#: ../../include/taxonomy.php:575 -msgid "likes" -msgstr "нравится" - -#: ../../include/taxonomy.php:576 ../../Zotlabs/Lib/ThreadItem.php:286 -msgid "dislike" -msgstr "не нравится" - -#: ../../include/taxonomy.php:576 -msgid "dislikes" -msgstr "не нравится" - -#: ../../include/zid.php:351 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s приветствует %2$s" - -#: ../../include/language.php:397 ../../include/text.php:1866 -msgid "default" -msgstr "по умолчанию" - -#: ../../include/language.php:410 -msgid "Select an alternate language" -msgstr "Выбор дополнительного языка" - -#: ../../include/follow.php:37 -msgid "Channel is blocked on this site." -msgstr "Канал блокируется на этом сайте." - -#: ../../include/follow.php:42 -msgid "Channel location missing." -msgstr "Местоположение канала отсутствует." - -#: ../../include/follow.php:84 -msgid "Response from remote channel was incomplete." -msgstr "Ответ удаленного канала неполный." - -#: ../../include/follow.php:96 -msgid "Premium channel - please visit:" -msgstr "Премимум-канал - пожалуйста посетите:" - -#: ../../include/follow.php:110 -msgid "Channel was deleted and no longer exists." -msgstr "Канал удален и больше не существует." - -#: ../../include/follow.php:165 -msgid "Remote channel or protocol unavailable." -msgstr "Удалённый канал или протокол недоступен." - -#: ../../include/follow.php:188 -msgid "Channel discovery failed." -msgstr "Не удалось обнаружить канал." - -#: ../../include/follow.php:200 -msgid "Protocol disabled." -msgstr "Протокол отключен." - -#: ../../include/follow.php:211 -msgid "Cannot connect to yourself." -msgstr "Нельзя подключиться к самому себе." - -#: ../../include/acl_selectors.php:33 -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -msgid "Visible to your default audience" -msgstr "Видно вашей аудитории по умолчанию." - -#: ../../include/acl_selectors.php:88 ../../Zotlabs/Module/Acl.php:120 -#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -msgctxt "acl" -msgid "Profile" -msgstr "Профиль" - -#: ../../include/acl_selectors.php:106 -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Only me" -msgstr "Только мне" - -#: ../../include/acl_selectors.php:113 -msgid "Who can see this?" -msgstr "Кто может это видеть?" - -#: ../../include/acl_selectors.php:114 -msgid "Custom selection" -msgstr "Настраиваемый выбор" - -#: ../../include/acl_selectors.php:115 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." -msgstr "Нажмите \"Показать\" чтобы разрешить просмотр. \"Не показывать\" позволит вам переопределить и ограничить область показа." - -#: ../../include/acl_selectors.php:116 -msgid "Show" -msgstr "Показать" - -#: ../../include/acl_selectors.php:117 -msgid "Don't show" -msgstr "Не показывать" - -#: ../../include/acl_selectors.php:123 ../../Zotlabs/Module/Photos.php:707 -#: ../../Zotlabs/Module/Photos.php:1076 -#: ../../Zotlabs/Module/Filestorage.php:170 -#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 -#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -msgid "Permissions" -msgstr "Разрешения" - -#: ../../include/acl_selectors.php:125 ../../Zotlabs/Lib/ThreadItem.php:426 -#: ../../Zotlabs/Module/Photos.php:1298 -msgid "Close" -msgstr "Закрыть" - -#: ../../include/acl_selectors.php:150 -#, 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 "Разрешения публикации %s не могут быть изменены %s после того, как ею поделились. Эти разрешения устанавливают кому разрешено просматривать эту публикацию." - -#: ../../include/datetime.php:58 ../../Zotlabs/Widget/Newmember.php:44 -#: ../../Zotlabs/Module/Profiles.php:736 -msgid "Miscellaneous" -msgstr "Прочее" - -#: ../../include/datetime.php:140 -msgid "Birthday" -msgstr "День рождения" - -#: ../../include/datetime.php:140 -msgid "Age: " -msgstr "Возраст:" - -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD или MM-DD" - -#: ../../include/datetime.php:211 ../../Zotlabs/Module/Appman.php:141 -#: ../../Zotlabs/Module/Appman.php:142 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:465 ../../Zotlabs/Module/Profiles.php:745 -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Required" -msgstr "Требуется" - -#: ../../include/datetime.php:244 -msgid "less than a second ago" -msgstr "менее чем одну секунду" - -#: ../../include/datetime.php:262 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s назад" - -#: ../../include/datetime.php:273 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "год" -msgstr[1] "года" -msgstr[2] "лет" - -#: ../../include/datetime.php:276 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "месяц" -msgstr[1] "месяца" -msgstr[2] "месяцев" - -#: ../../include/datetime.php:279 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "неделю" -msgstr[1] "недели" -msgstr[2] "недель" - -#: ../../include/datetime.php:282 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "день" -msgstr[1] "дня" -msgstr[2] "дней" - -#: ../../include/datetime.php:285 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "час" -msgstr[1] "часа" -msgstr[2] "часов" - -#: ../../include/datetime.php:288 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "минуту" -msgstr[1] "минуты" -msgstr[2] "минут" - -#: ../../include/datetime.php:291 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "секунду" -msgstr[1] "секунды" -msgstr[2] "секунд" - -#: ../../include/datetime.php:520 -#, php-format -msgid "%1$s's birthday" -msgstr "У %1$s День рождения" - -#: ../../include/datetime.php:521 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "С Днем рождения %1$s !" - -#: ../../include/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Не удается найти DNS информацию для сервера базы данных '%s'" - -#: ../../include/text.php:492 -msgid "prev" -msgstr "предыдущий" - -#: ../../include/text.php:494 -msgid "first" -msgstr "первый" - -#: ../../include/text.php:523 -msgid "last" -msgstr "последний" - -#: ../../include/text.php:526 -msgid "next" -msgstr "следующий" - -#: ../../include/text.php:537 -msgid "older" -msgstr "старше" - -#: ../../include/text.php:539 -msgid "newer" -msgstr "новее" - -#: ../../include/text.php:963 -msgid "No connections" -msgstr "Нет контактов" - -#: ../../include/text.php:975 ../../Zotlabs/Lib/Apps.php:302 -#: ../../Zotlabs/Module/Connections.php:331 -msgid "Connections" -msgstr "Контакты" - -#: ../../include/text.php:995 -#, php-format -msgid "View all %s connections" -msgstr "Просмотреть все %s контактов" - -#: ../../include/text.php:1051 -#, php-format -msgid "Network: %s" -msgstr "Сеть: %s" - -#: ../../include/text.php:1063 ../../include/text.php:1075 -#: ../../Zotlabs/Widget/Notes.php:18 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Admin/Profs.php:94 -#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:53 -msgid "Save" -msgstr "Запомнить" - -#: ../../include/text.php:1140 ../../include/text.php:1144 -msgid "poke" -msgstr "Ткнуть" - -#: ../../include/text.php:1145 -msgid "ping" -msgstr "Пингануть" - -#: ../../include/text.php:1145 -msgid "pinged" -msgstr "Отпингован" - -#: ../../include/text.php:1146 -msgid "prod" -msgstr "Подтолкнуть" - -#: ../../include/text.php:1146 -msgid "prodded" -msgstr "Подтолкнут" - -#: ../../include/text.php:1147 -msgid "slap" -msgstr "Шлёпнуть" - -#: ../../include/text.php:1147 -msgid "slapped" -msgstr "Шлёпнут" - -#: ../../include/text.php:1148 -msgid "finger" -msgstr "Указать" - -#: ../../include/text.php:1148 -msgid "fingered" -msgstr "Указан" - -#: ../../include/text.php:1149 -msgid "rebuff" -msgstr "Дать отпор" - -#: ../../include/text.php:1149 -msgid "rebuffed" -msgstr "Дан отпор" - -#: ../../include/text.php:1172 -msgid "happy" -msgstr "счастливый" - -#: ../../include/text.php:1173 -msgid "sad" -msgstr "грустный" - -#: ../../include/text.php:1174 -msgid "mellow" -msgstr "спокойный" - -#: ../../include/text.php:1175 -msgid "tired" -msgstr "усталый" - -#: ../../include/text.php:1176 -msgid "perky" -msgstr "весёлый" - -#: ../../include/text.php:1177 -msgid "angry" -msgstr "сердитый" - -#: ../../include/text.php:1178 -msgid "stupefied" -msgstr "отупевший" - -#: ../../include/text.php:1179 -msgid "puzzled" -msgstr "недоумевающий" - -#: ../../include/text.php:1180 -msgid "interested" -msgstr "заинтересованный" - -#: ../../include/text.php:1181 -msgid "bitter" -msgstr "едкий" - -#: ../../include/text.php:1182 -msgid "cheerful" -msgstr "бодрый" - -#: ../../include/text.php:1183 -msgid "alive" -msgstr "энергичный" - -#: ../../include/text.php:1184 -msgid "annoyed" -msgstr "раздражённый" - -#: ../../include/text.php:1185 -msgid "anxious" -msgstr "обеспокоенный" - -#: ../../include/text.php:1186 -msgid "cranky" -msgstr "капризный" - -#: ../../include/text.php:1187 -msgid "disturbed" -msgstr "встревоженный" - -#: ../../include/text.php:1188 -msgid "frustrated" -msgstr "разочарованный" - -#: ../../include/text.php:1189 -msgid "depressed" -msgstr "подавленный" - -#: ../../include/text.php:1190 -msgid "motivated" -msgstr "мотивированный" - -#: ../../include/text.php:1191 -msgid "relaxed" -msgstr "расслабленный" - -#: ../../include/text.php:1192 -msgid "surprised" -msgstr "удивленный" - -#: ../../include/text.php:1371 ../../include/js_strings.php:86 -msgid "Monday" -msgstr "Понедельник" - -#: ../../include/text.php:1371 ../../include/js_strings.php:87 -msgid "Tuesday" -msgstr "Вторник" - -#: ../../include/text.php:1371 ../../include/js_strings.php:88 -msgid "Wednesday" -msgstr "Среда" - -#: ../../include/text.php:1371 ../../include/js_strings.php:89 -msgid "Thursday" -msgstr "Четверг" - -#: ../../include/text.php:1371 ../../include/js_strings.php:90 -msgid "Friday" -msgstr "Пятница" - -#: ../../include/text.php:1371 ../../include/js_strings.php:91 -msgid "Saturday" -msgstr "Суббота" - -#: ../../include/text.php:1371 ../../include/js_strings.php:85 -msgid "Sunday" -msgstr "Воскресенье" - -#: ../../include/text.php:1375 ../../include/js_strings.php:61 -msgid "January" -msgstr "Январь" - -#: ../../include/text.php:1375 ../../include/js_strings.php:62 -msgid "February" -msgstr "Февраль" - -#: ../../include/text.php:1375 ../../include/js_strings.php:63 -msgid "March" -msgstr "Март" - -#: ../../include/text.php:1375 ../../include/js_strings.php:64 -msgid "April" -msgstr "Апрель" - -#: ../../include/text.php:1375 -msgid "May" -msgstr "Май" - -#: ../../include/text.php:1375 ../../include/js_strings.php:66 -msgid "June" -msgstr "Июнь" - -#: ../../include/text.php:1375 ../../include/js_strings.php:67 -msgid "July" -msgstr "Июль" - -#: ../../include/text.php:1375 ../../include/js_strings.php:68 -msgid "August" -msgstr "Август" - -#: ../../include/text.php:1375 ../../include/js_strings.php:69 -msgid "September" -msgstr "Сентябрь" - -#: ../../include/text.php:1375 ../../include/js_strings.php:70 -msgid "October" -msgstr "Октябрь" - -#: ../../include/text.php:1375 ../../include/js_strings.php:71 -msgid "November" -msgstr "Ноябрь" - -#: ../../include/text.php:1375 ../../include/js_strings.php:72 -msgid "December" -msgstr "Декабрь" - -#: ../../include/text.php:1449 -msgid "Unknown Attachment" -msgstr "Неизвестное вложение" - -#: ../../include/text.php:1451 ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:287 -msgid "Size" -msgstr "Размер" - -#: ../../include/text.php:1487 -msgid "remove category" -msgstr "удалить категорию" - -#: ../../include/text.php:1561 -msgid "remove from file" -msgstr "удалить из файла" - -#: ../../include/text.php:1703 ../../include/message.php:12 -msgid "Download binary/encrypted content" -msgstr "Загрузить двоичное / зашифрованное содержимое" - -#: ../../include/text.php:1844 ../../Zotlabs/Module/Events.php:660 -#: ../../Zotlabs/Module/Cal.php:315 -msgid "Link to Source" -msgstr "Ссылка на источник" - -#: ../../include/text.php:1874 -msgid "Page layout" -msgstr "Шаблон страницы" - -#: ../../include/text.php:1874 -msgid "You can create your own with the layouts tool" -msgstr "Вы можете создать свой собственный с помощью инструмента шаблонов" - -#: ../../include/text.php:1884 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:208 -#: ../../Zotlabs/Module/Wiki.php:350 -msgid "BBcode" -msgstr "" - -#: ../../include/text.php:1885 -msgid "HTML" -msgstr "" - -#: ../../include/text.php:1887 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:208 -msgid "Text" -msgstr "Текст" - -#: ../../include/text.php:1888 -msgid "Comanche Layout" -msgstr "Шаблон Comanche" - -#: ../../include/text.php:1893 -msgid "PHP" -msgstr "" - -#: ../../include/text.php:1902 -msgid "Page content type" -msgstr "Тип содержимого страницы" - -#: ../../include/text.php:2035 -msgid "activity" -msgstr "активность" - -#: ../../include/text.php:2135 -msgid "a-z, 0-9, -, and _ only" -msgstr "Только a-z, 0-9, -, и _" - -#: ../../include/text.php:2455 -msgid "Design Tools" -msgstr "Инструменты дизайна" - -#: ../../include/text.php:2458 ../../Zotlabs/Module/Blocks.php:154 -msgid "Blocks" -msgstr "Блокировки" - -#: ../../include/text.php:2459 ../../Zotlabs/Module/Menu.php:170 -msgid "Menus" -msgstr "Меню" - -#: ../../include/text.php:2460 ../../Zotlabs/Module/Layouts.php:184 -msgid "Layouts" -msgstr "Шаблоны" - -#: ../../include/text.php:2461 -msgid "Pages" -msgstr "Страницы" - -#: ../../include/text.php:2482 ../../Zotlabs/Module/Cal.php:344 -msgid "Import" -msgstr "Импортировать" - -#: ../../include/text.php:2483 -msgid "Import website..." -msgstr "Импорт веб-сайта..." - -#: ../../include/text.php:2484 -msgid "Select folder to import" -msgstr "Выбрать каталог для импорта" - -#: ../../include/text.php:2485 -msgid "Import from a zipped folder:" -msgstr "Импортировать из каталога в zip-архиве:" - -#: ../../include/text.php:2486 -msgid "Import from cloud files:" -msgstr "Импортировать из сетевых файлов:" - -#: ../../include/text.php:2487 -msgid "/cloud/channel/path/to/folder" -msgstr "" - -#: ../../include/text.php:2488 -msgid "Enter path to website files" -msgstr "Введите путь к файлам веб-сайта" - -#: ../../include/text.php:2489 -msgid "Select folder" -msgstr "Выбрать каталог" - -#: ../../include/text.php:2490 -msgid "Export website..." -msgstr "Экспорт веб-сайта..." - -#: ../../include/text.php:2491 -msgid "Export to a zip file" -msgstr "Экспортировать в ZIP файл." - -#: ../../include/text.php:2492 -msgid "website.zip" -msgstr "" - -#: ../../include/text.php:2493 -msgid "Enter a name for the zip file." -msgstr "Введите имя для ZIP файла." - -#: ../../include/text.php:2494 -msgid "Export to cloud files" -msgstr "Эскпортировать в сетевые файлы:" - -#: ../../include/text.php:2495 -msgid "/path/to/export/folder" -msgstr "" - -#: ../../include/text.php:2496 -msgid "Enter a path to a cloud files destination." -msgstr "Введите путь к расположению сетевых файлов." - -#: ../../include/text.php:2497 -msgid "Specify folder" -msgstr "Указать каталог" - -#: ../../include/text.php:2817 ../../Zotlabs/Storage/Browser.php:131 -msgid "Collection" -msgstr "Коллекция" - -#: ../../include/security.php:541 -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 "Не верный токен безопасности для формы. Вероятно, это произошло потому, что форма была открыта слишком долго (> 3-х часов) перед его отправкой." - -#: ../../include/menu.php:118 ../../include/channel.php:1296 -#: ../../include/channel.php:1300 ../../Zotlabs/Lib/ThreadItem.php:128 -#: ../../Zotlabs/Lib/Apps.php:499 ../../Zotlabs/Widget/Cdav.php:126 -#: ../../Zotlabs/Widget/Cdav.php:162 ../../Zotlabs/Module/Connections.php:281 -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Connections.php:339 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Webpages.php:240 -#: ../../Zotlabs/Module/Editwebpage.php:142 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Settings/Oauth2.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Article_edit.php:99 ../../Zotlabs/Module/Wiki.php:202 -#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Group.php:216 -#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Storage/Browser.php:290 -msgid "Edit" -msgstr "Изменить" - -#: ../../include/items.php:891 ../../include/items.php:951 -msgid "(Unknown)" -msgstr "(Неизвестный)" - -#: ../../include/items.php:1137 -msgid "Visible to anybody on the internet." -msgstr "Виден всем в интернете." - -#: ../../include/items.php:1139 -msgid "Visible to you only." -msgstr "Видно только вам." - -#: ../../include/items.php:1141 -msgid "Visible to anybody in this network." -msgstr "Видно всем в этой сети." - -#: ../../include/items.php:1143 -msgid "Visible to anybody authenticated." -msgstr "Видно всем аутентифицированным." - -#: ../../include/items.php:1145 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Видно всем в %s." - -#: ../../include/items.php:1147 -msgid "Visible to all connections." -msgstr "Видно всем контактам." - -#: ../../include/items.php:1149 -msgid "Visible to approved connections." -msgstr "Видно только одобренным контактам." - -#: ../../include/items.php:1151 -msgid "Visible to specific connections." -msgstr "Видно указанным контактам." - -#: ../../include/items.php:3566 ../../Zotlabs/Module/Viewsrc.php:25 -#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../Zotlabs/Module/Admin/Addons.php:259 -#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 -#: ../../Zotlabs/Module/Display.php:46 ../../Zotlabs/Module/Display.php:453 -msgid "Item not found." -msgstr "Элемент не найден." - -#: ../../include/items.php:4125 ../../Zotlabs/Module/Group.php:51 -#: ../../Zotlabs/Module/Group.php:181 -msgid "Privacy group not found." -msgstr "Группа безопасности не найдена." - -#: ../../include/items.php:4141 -msgid "Privacy group is empty." -msgstr "Группа безопасности пуста" - -#: ../../include/items.php:4148 -#, php-format -msgid "Privacy group: %s" -msgstr "Группа безопасности: %s" - -#: ../../include/items.php:4158 ../../Zotlabs/Module/Connedit.php:850 -#, php-format -msgid "Connection: %s" -msgstr "Контакт: %s" - -#: ../../include/items.php:4160 -msgid "Connection not found." -msgstr "Контакт не найден." - -#: ../../include/items.php:4502 ../../Zotlabs/Module/Cover_photo.php:269 -msgid "female" -msgstr "женщина" - -#: ../../include/items.php:4503 ../../Zotlabs/Module/Cover_photo.php:270 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s обновила её %2$s" - -#: ../../include/items.php:4504 ../../Zotlabs/Module/Cover_photo.php:271 -msgid "male" -msgstr "мужчина" - -#: ../../include/items.php:4505 ../../Zotlabs/Module/Cover_photo.php:272 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s обновил его %2$s" - -#: ../../include/items.php:4507 ../../Zotlabs/Module/Cover_photo.php:274 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s обновили их %2$s" - -#: ../../include/items.php:4509 -msgid "profile photo" -msgstr "Фотография профиля" - -#: ../../include/items.php:4700 -#, php-format -msgid "[Edited %s]" -msgstr "[Отредактировано %s]" - -#: ../../include/items.php:4700 -msgctxt "edit_activity" -msgid "Post" -msgstr "Публикация" - -#: ../../include/items.php:4700 -msgctxt "edit_activity" -msgid "Comment" -msgstr "Комментарий" - -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "доступно %d приглашение" -msgstr[1] "доступны %d приглашения" -msgstr[2] "доступны %d приглашений" - -#: ../../include/contact_widgets.php:16 ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Advanced" -msgstr "Дополнительно" - -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Поиск каналов" - -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Впишите имя или интерес" - -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Подключить / отслеживать" - -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Примеры: Владимир Ильич, Революционер" - -#: ../../include/contact_widgets.php:23 -#: ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Module/Directory.php:401 -#: ../../Zotlabs/Module/Directory.php:406 -msgid "Find" -msgstr "Поиск" - -#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Suggest.php:64 -#: ../../Zotlabs/Module/Directory.php:405 -msgid "Channel Suggestions" -msgstr "Рекомендации каналов" - -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Случайный профиль" - -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Пригласить друзей" - -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Расширенный пример: name=ivan and country=russia" - -#: ../../include/contact_widgets.php:53 ../../include/features.php:488 -#: ../../Zotlabs/Widget/Filer.php:28 -#: ../../Zotlabs/Widget/Activity_filter.php:134 -msgid "Saved Folders" -msgstr "Сохранённые каталоги" - -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 -#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 -#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 -msgid "Everything" -msgstr "Всё" - -#: ../../include/contact_widgets.php:223 -msgid "Common Connections" -msgstr "Общие контакты" - -#: ../../include/contact_widgets.php:228 -#, php-format -msgid "View all %d common connections" -msgstr "Просмотреть все %d общих контактов" - -#: ../../include/channel.php:35 -msgid "Unable to obtain identity information from database" -msgstr "Невозможно получить идентификационную информацию из базы данных" - -#: ../../include/channel.php:68 -msgid "Empty name" -msgstr "Пустое имя" - -#: ../../include/channel.php:71 -msgid "Name too long" -msgstr "Слишком длинное имя" - -#: ../../include/channel.php:188 -msgid "No account identifier" -msgstr "Идентификатор аккаунта отсутствует" - -#: ../../include/channel.php:200 -msgid "Nickname is required." -msgstr "Требуется псевдоним." - -#: ../../include/channel.php:214 ../../include/channel.php:599 -#: ../../Zotlabs/Module/Changeaddr.php:46 -msgid "Reserved nickname. Please choose another." -msgstr "Зарезервированый псевдоним. Пожалуйста, выберите другой." - -#: ../../include/channel.php:219 ../../include/channel.php:604 -#: ../../Zotlabs/Module/Changeaddr.php:51 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Псевдоним имеет недопустимые символы или уже используется на этом сайте." - -#: ../../include/channel.php:277 -msgid "Unable to retrieve created identity" -msgstr "Не удается получить созданный идентификатор" - -#: ../../include/channel.php:373 -msgid "Default Profile" -msgstr "Профиль по умолчанию" - -#: ../../include/channel.php:437 ../../include/channel.php:438 -#: ../../include/channel.php:445 ../../include/selectors.php:123 -#: ../../Zotlabs/Widget/Affinity.php:24 ../../Zotlabs/Module/Connedit.php:711 -#: ../../Zotlabs/Module/Settings/Channel.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:72 -#: ../../Zotlabs/Module/Settings/Channel.php:73 -#: ../../Zotlabs/Module/Settings/Channel.php:76 -#: ../../Zotlabs/Module/Settings/Channel.php:87 -msgid "Friends" -msgstr "Друзья" - -#: ../../include/channel.php:532 ../../include/channel.php:621 -msgid "Unable to retrieve modified identity" -msgstr "Не удается найти изменённый идентификатор" - -#: ../../include/channel.php:1197 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Filestorage.php:51 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Articles.php:29 -#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Cards.php:33 -#: ../../Zotlabs/Module/Profile.php:20 -msgid "Requested profile is not available." -msgstr "Запрашиваемый профиль не доступен." - -#: ../../include/channel.php:1289 ../../Zotlabs/Module/Profiles.php:728 -msgid "Change profile photo" -msgstr "Изменить фотографию профиля" - -#: ../../include/channel.php:1297 -msgid "Create New Profile" -msgstr "Создать новый профиль" - -#: ../../include/channel.php:1315 ../../Zotlabs/Module/Profiles.php:820 -msgid "Profile Image" -msgstr "Изображение профиля" - -#: ../../include/channel.php:1318 -msgid "Visible to everybody" -msgstr "Видно всем" - -#: ../../include/channel.php:1319 ../../Zotlabs/Module/Profiles.php:725 -#: ../../Zotlabs/Module/Profiles.php:824 -msgid "Edit visibility" -msgstr "Редактировать видимость" - -#: ../../include/channel.php:1395 ../../include/channel.php:1523 -msgid "Gender:" -msgstr "Пол:" - -#: ../../include/channel.php:1397 ../../include/channel.php:1591 -msgid "Homepage:" -msgstr "Домашняя страница:" - -#: ../../include/channel.php:1398 -msgid "Online Now" -msgstr "Сейчас в сети" - -#: ../../include/channel.php:1451 -msgid "Change your profile photo" -msgstr "Изменить фотографию вашего профиля" - -#: ../../include/channel.php:1482 -msgid "Trans" -msgstr "Трансексуал" - -#: ../../include/channel.php:1484 ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Среднего рода" - -#: ../../include/channel.php:1486 ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Неспецифический" - -#: ../../include/channel.php:1521 ../../Zotlabs/Module/Settings/Channel.php:522 -msgid "Full Name:" -msgstr "Полное имя:" - -#: ../../include/channel.php:1528 -msgid "Like this channel" -msgstr "нравится этот канал" - -#: ../../include/channel.php:1552 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1553 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1560 -msgid "Birthday:" -msgstr "День рождения:" - -#: ../../include/channel.php:1564 ../../Zotlabs/Module/Directory.php:319 -msgid "Age:" -msgstr "Возраст:" - -#: ../../include/channel.php:1573 -#, php-format -msgid "for %1$d %2$s" -msgstr "для %1$d %2$s" - -#: ../../include/channel.php:1585 -msgid "Tags:" -msgstr "Теги:" - -#: ../../include/channel.php:1589 -msgid "Sexual Preference:" -msgstr "Сексуальные предпочтения:" - -#: ../../include/channel.php:1593 ../../Zotlabs/Module/Directory.php:335 -msgid "Hometown:" -msgstr "Родной город:" - -#: ../../include/channel.php:1595 -msgid "Political Views:" -msgstr "Политические взгляды:" - -#: ../../include/channel.php:1597 -msgid "Religion:" -msgstr "Религия:" - -#: ../../include/channel.php:1599 ../../Zotlabs/Module/Directory.php:337 -msgid "About:" -msgstr "О себе:" - -#: ../../include/channel.php:1601 -msgid "Hobbies/Interests:" -msgstr "Хобби / интересы:" - -#: ../../include/channel.php:1603 -msgid "Likes:" -msgstr "Что вам нравится:" - -#: ../../include/channel.php:1605 -msgid "Dislikes:" -msgstr "Что вам не нравится:" - -#: ../../include/channel.php:1607 -msgid "Contact information and Social Networks:" -msgstr "Контактная информация и социальные сети:" - -#: ../../include/channel.php:1609 -msgid "My other channels:" -msgstr "Мои другие каналы:" - -#: ../../include/channel.php:1611 -msgid "Musical interests:" -msgstr "Музыкальные интересы:" - -#: ../../include/channel.php:1613 -msgid "Books, literature:" -msgstr "Книги, литература:" - -#: ../../include/channel.php:1615 -msgid "Television:" -msgstr "Телевидение:" - -#: ../../include/channel.php:1617 -msgid "Film/dance/culture/entertainment:" -msgstr "Кино / танцы / культура / развлечения:" - -#: ../../include/channel.php:1619 -msgid "Love/Romance:" -msgstr "Любовь / романтика:" - -#: ../../include/channel.php:1621 -msgid "Work/employment:" -msgstr "Работа / занятость:" - -#: ../../include/channel.php:1623 -msgid "School/education:" -msgstr "Школа / образование:" - -#: ../../include/channel.php:1644 ../../Zotlabs/Lib/Apps.php:331 -#: ../../Zotlabs/Module/Profperm.php:113 -msgid "Profile" -msgstr "Профиль" - -#: ../../include/channel.php:1646 -msgid "Like this thing" -msgstr "нравится этo" - -#: ../../include/channel.php:1647 ../../Zotlabs/Module/Events.php:691 -#: ../../Zotlabs/Module/Cal.php:341 -msgid "Export" -msgstr "Экспорт" - -#: ../../include/channel.php:2081 ../../Zotlabs/Module/Cover_photo.php:276 -msgid "cover photo" -msgstr "фотография обложки" - -#: ../../include/channel.php:2335 ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Введите адрес вашего канала (например: channel@example.com)" - -#: ../../include/channel.php:2336 ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Проверка подлинности" - -#: ../../include/channel.php:2490 ../../Zotlabs/Module/Admin/Accounts.php:91 -#, php-format -msgid "Account '%s' deleted" -msgstr "Аккаунт '%s' удален" - -#: ../../include/features.php:56 -msgid "General Features" -msgstr "Главные функции" - -#: ../../include/features.php:60 ../../Zotlabs/Widget/Newmember.php:62 -msgid "New Member Links" -msgstr "Ссылки для новичков" - -#: ../../include/features.php:61 -msgid "Display new member quick links menu" -msgstr "Показать меню быстрых ссылок для новых участников" - -#: ../../include/features.php:69 -msgid "Advanced Profiles" -msgstr "Расширенные профили" - -#: ../../include/features.php:70 -msgid "Additional profile sections and selections" -msgstr "Дополнительные секции и выборы профиля" - -#: ../../include/features.php:78 -msgid "Profile Import/Export" -msgstr "Импорт / экспорт профиля" - -#: ../../include/features.php:79 -msgid "Save and load profile details across sites/channels" -msgstr "Сохранение и загрузка настроек профиля на всех сайтах / каналах" - -#: ../../include/features.php:87 -msgid "Web Pages" -msgstr "Веб-страницы" - -#: ../../include/features.php:88 -msgid "Provide managed web pages on your channel" -msgstr "Предоставлять управляемые веб-страницы на Вашем канале" - -#: ../../include/features.php:97 -msgid "Provide a wiki for your channel" -msgstr "Предоставьте Wiki для вашего канала" - -#: ../../include/features.php:114 -msgid "Private Notes" -msgstr "Личные заметки" - -#: ../../include/features.php:115 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)" - -#: ../../include/features.php:124 -msgid "Create personal planning cards" -msgstr "Создать личные карточки планирования" - -#: ../../include/features.php:134 -msgid "Create interactive articles" -msgstr "Создать интерактивные статьи" - -#: ../../include/features.php:142 -msgid "Navigation Channel Select" -msgstr "Выбор канала навигации" - -#: ../../include/features.php:143 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Изменить канал напрямую из выпадающего меню" - -#: ../../include/features.php:151 -msgid "Photo Location" -msgstr "Местоположение фотографии" - -#: ../../include/features.php:152 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Если данные о местоположении доступны на загруженных фотографий, связать их с картой." - -#: ../../include/features.php:160 -msgid "Access Controlled Chatrooms" -msgstr "Получить доступ к контролируемым чатам" - -#: ../../include/features.php:161 -msgid "Provide chatrooms and chat services with access control." -msgstr "Предоставлять чаты и их службы с контролем доступа." - -#: ../../include/features.php:170 -msgid "Smart Birthdays" -msgstr "\"Умные\" Дни рождений" - -#: ../../include/features.php:171 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Сделать уведомления о днях рождения зависимыми от часового пояса в том случае, если ваши друзья разбросаны по планете." - -#: ../../include/features.php:179 -msgid "Event Timezone Selection" -msgstr "Выбор часового пояса события" - -#: ../../include/features.php:180 -msgid "Allow event creation in timezones other than your own." -msgstr "Разрешить создание события в часовой зоне отличной от вашей" - -#: ../../include/features.php:189 -msgid "Premium Channel" -msgstr "Премиум-канал" - -#: ../../include/features.php:190 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Позволяет установить ограничения и условия для подключающихся к вашему каналу" - -#: ../../include/features.php:198 -msgid "Advanced Directory Search" -msgstr "Расширенный поиск в каталоге" - -#: ../../include/features.php:199 -msgid "Allows creation of complex directory search queries" -msgstr "Позволяет создание сложных поисковых запросов в каталоге" - -#: ../../include/features.php:207 -msgid "Advanced Theme and Layout Settings" -msgstr "Расширенный настройки темы и отображения" - -#: ../../include/features.php:208 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Разрешает тонкую настройку тем и шаблонов страниц" - -#: ../../include/features.php:217 -msgid "Access Control and Permissions" -msgstr "Управление доступом и разрешениями" - -#: ../../include/features.php:222 -msgid "Enable management and selection of privacy groups" -msgstr "Включить управление и выбор групп безопасности" - -#: ../../include/features.php:230 -msgid "Multiple Profiles" -msgstr "Несколько профилей" - -#: ../../include/features.php:231 -msgid "Ability to create multiple profiles" -msgstr "Возможность создания нескольких профилей" - -#: ../../include/features.php:240 ../../Zotlabs/Widget/Settings_menu.php:108 -#: ../../Zotlabs/Module/Settings/Permcats.php:99 -msgid "Permission Categories" -msgstr "Категории разрешений" - -#: ../../include/features.php:241 -msgid "Create custom connection permission limits" -msgstr "Создать пользовательские ограничения на доступ к подключению" - -#: ../../include/features.php:249 -msgid "OAuth1 Clients" -msgstr "Клиенты OAuth1" - -#: ../../include/features.php:250 -msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." -msgstr "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений." - -#: ../../include/features.php:258 -msgid "OAuth2 Clients" -msgstr "Клиенты OAuth2" - -#: ../../include/features.php:259 -msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." -msgstr "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений." - -#: ../../include/features.php:267 -msgid "Access Tokens" -msgstr "Токены доступа" - -#: ../../include/features.php:268 -msgid "Create access tokens so that non-members can access private content." -msgstr "Создать токены доступа для доступа к приватному содержимому." - -#: ../../include/features.php:279 -msgid "Post Composition Features" -msgstr "Функции создания публикаций" - -#: ../../include/features.php:283 -msgid "Large Photos" -msgstr "Большие фотографии" - -#: ../../include/features.php:284 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Включить большие (1024px) миниатюры изображений в публикациях. Если не включено, использовать маленькие (640px) миниатюры." - -#: ../../include/features.php:292 ../../Zotlabs/Widget/Settings_menu.php:133 -#: ../../Zotlabs/Module/Sources.php:99 -msgid "Channel Sources" -msgstr "Источники канала" - -#: ../../include/features.php:293 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Автоматический импорт контента из других каналов или лент" - -#: ../../include/features.php:301 -msgid "Even More Encryption" -msgstr "Еще больше шифрования" - -#: ../../include/features.php:302 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Разрешить дополнительное end-to-end шифрование содержимого с общим секретным ключом" - -#: ../../include/features.php:310 -msgid "Enable Voting Tools" -msgstr "Включить инструменты голосования" - -#: ../../include/features.php:311 -msgid "Provide a class of post which others can vote on" -msgstr "Предоставь класс публикаций с возможностью голосования" - -#: ../../include/features.php:319 -msgid "Disable Comments" -msgstr "Отключить комментарии" - -#: ../../include/features.php:320 -msgid "Provide the option to disable comments for a post" -msgstr "Предоставить возможность отключать комментарии для публикаций" - -#: ../../include/features.php:328 -msgid "Delayed Posting" -msgstr "Задержанная публикация" - -#: ../../include/features.php:329 -msgid "Allow posts to be published at a later date" -msgstr "Разрешить размешать публикации следующими датами" - -#: ../../include/features.php:337 -msgid "Content Expiration" -msgstr "Истечение срока действия содержимого" - -#: ../../include/features.php:338 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Удалять публикации / комментарии и / или личные сообщения" - -#: ../../include/features.php:346 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Подавлять дублирующие публикации / комментарии" - -#: ../../include/features.php:347 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Предотвращает появление публикаций с одинаковым содержимым если интервал между ними менее 2 минут" - -#: ../../include/features.php:355 -msgid "Auto-save drafts of posts and comments" -msgstr "Автоматически сохранять черновики публикаций и комментариев" - -#: ../../include/features.php:356 -msgid "" -"Automatically saves post and comment drafts in local browser storage to help " -"prevent accidental loss of compositions" -msgstr "Автоматически сохраняет черновики публикаций и комментариев в локальном хранилище браузера для предотвращения их случайной утраты" - -#: ../../include/features.php:367 -msgid "Network and Stream Filtering" -msgstr "Фильтрация сети и потока" - -#: ../../include/features.php:371 -msgid "Search by Date" -msgstr "Поиск по дате" - -#: ../../include/features.php:372 -msgid "Ability to select posts by date ranges" -msgstr "Возможность выбора сообщений по диапазонам дат" - -#: ../../include/features.php:381 ../../Zotlabs/Widget/Savedsearch.php:83 -msgid "Saved Searches" -msgstr "Сохранённые поиски" - -#: ../../include/features.php:382 -msgid "Save search terms for re-use" -msgstr "Сохранять результаты поиска для повторного использования" - -#: ../../include/features.php:390 -msgid "Alternate Stream Order" -msgstr "Отображение потока" - -#: ../../include/features.php:391 -msgid "" -"Ability to order the stream by last post date, last comment date or " -"unthreaded activities" -msgstr "Возможность показывать поток по дате последнего сообщения, последнего комментария или в порядке поступления" - -#: ../../include/features.php:399 -msgid "Contact Filter" -msgstr "Фильтр контактов" - -#: ../../include/features.php:400 -msgid "Ability to display only posts of a selected contact" -msgstr "Возможность показа публикаций только от выбранных контактов" - -#: ../../include/features.php:408 -msgid "Forum Filter" -msgstr "Фильтр по форумам" - -#: ../../include/features.php:409 -msgid "Ability to display only posts of a specific forum" -msgstr "Возможность показа публикаций только определённого форума" - -#: ../../include/features.php:417 -msgid "Personal Posts Filter" -msgstr "Персональный фильтр публикаций" - -#: ../../include/features.php:418 -msgid "Ability to display only posts that you've interacted on" -msgstr "Возможность показа только тех публикаций с которыми вы взаимодействовали" - -#: ../../include/features.php:426 -msgid "Affinity Tool" -msgstr "Инструмент сходства / соответствия" - -#: ../../include/features.php:427 -msgid "Filter stream activity by depth of relationships" -msgstr "Фильтровать потоки активности по глубине отношений" - -#: ../../include/features.php:435 ../../Zotlabs/Lib/Apps.php:304 -msgid "Suggest Channels" -msgstr "Предлагаемые каналы" - -#: ../../include/features.php:436 -msgid "Show friend and connection suggestions" -msgstr "Показать предложения в друзья" - -#: ../../include/features.php:444 -msgid "Connection Filtering" -msgstr "Фильтрация контактов" - -#: ../../include/features.php:445 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Фильтр входящих сообщений от контактов на основе ключевых слов / контента" - -#: ../../include/features.php:457 -msgid "Post/Comment Tools" -msgstr "Инструменты публикаций / комментариев" - -#: ../../include/features.php:461 -msgid "Community Tagging" -msgstr "Отметки сообщества" - -#: ../../include/features.php:462 -msgid "Ability to tag existing posts" -msgstr "Возможность помечать тегами существующие публикации" - -#: ../../include/features.php:470 -msgid "Post Categories" -msgstr "Категории публикаций" - -#: ../../include/features.php:471 -msgid "Add categories to your posts" -msgstr "Добавить категории для ваших публикаций" - -#: ../../include/features.php:479 -msgid "Emoji Reactions" -msgstr "Реакции Emoji" - -#: ../../include/features.php:480 -msgid "Add emoji reaction ability to posts" -msgstr "Возможность добавлять реакции Emoji к публикациям" - -#: ../../include/features.php:489 -msgid "Ability to file posts under folders" -msgstr "Возможность размещать публикации в каталогах" - -#: ../../include/features.php:497 -msgid "Dislike Posts" -msgstr "Не нравящиеся публикации" - -#: ../../include/features.php:498 -msgid "Ability to dislike posts/comments" -msgstr "Возможность отмечать не нравящиеся публикации / комментарии" - -#: ../../include/features.php:506 -msgid "Star Posts" -msgstr "Помечать сообщения" - -#: ../../include/features.php:507 -msgid "Ability to mark special posts with a star indicator" -msgstr "Возможность отметить специальные сообщения индикатором-звёздочкой" - -#: ../../include/features.php:515 -msgid "Tag Cloud" -msgstr "Облако тегов" - -#: ../../include/features.php:516 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Показывает личное облако тегов на странице канала" - -#: ../../include/message.php:40 -msgid "Unable to determine sender." -msgstr "Невозможно определить отправителя." - -#: ../../include/message.php:79 -msgid "No recipient provided." -msgstr "Получатель не предоставлен." - -#: ../../include/message.php:84 -msgid "[no subject]" -msgstr "[без темы]" - -#: ../../include/message.php:214 -msgid "Stored post could not be verified." -msgstr "Сохранённая публикация не может быть проверена." - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Часто" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ежечасно" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Дважды в день" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ежедневно" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Еженедельно" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ежемесячно" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "В настоящее время мужской" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "В настоящее время женский" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "В основном мужской" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "В основном женский" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Трансгендер" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Интерсексуал" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Транссексуал" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Гермафродит" - -#: ../../include/selectors.php:49 -msgid "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/js_strings.php:5 -msgid "Delete this item?" -msgstr "Удалить этот элемент?" - -#: ../../include/js_strings.php:6 ../../Zotlabs/Lib/ThreadItem.php:756 -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1244 -msgid "Comment" -msgstr "Комментарий" - -#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:463 -#, php-format -msgid "%s show all" -msgstr "%s показать всё" - -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s показать меньше" - -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s развернуть" - -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s свернуть" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Пароль слишком короткий" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Пароли не совпадают" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "все" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Тайный пароль" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Подсказка для пароля" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Уведомление: Права доступа изменились, но до сих пор не сохранены." - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "закрыть все" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Здесь нет ничего нового" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Оценкa этoго канала (общедоступно)" - -#: ../../include/js_strings.php:20 ../../Zotlabs/Module/Connedit.php:870 -#: ../../Zotlabs/Module/Rate.php:155 -msgid "Rating" -msgstr "Оценка" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Охарактеризовать (необязательно)" - -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Пожалуйста, введите URL ссылки" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?" - -#: ../../include/js_strings.php:25 ../../Zotlabs/Module/Cdav.php:872 -#: ../../Zotlabs/Module/Pubsites.php:52 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:509 -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Location" -msgstr "Место" - -#: ../../include/js_strings.php:26 -msgid "lovely" -msgstr "прекрасно" - -#: ../../include/js_strings.php:27 -msgid "wonderful" -msgstr "замечательно" - -#: ../../include/js_strings.php:28 -msgid "fantastic" -msgstr "фантастично" - -#: ../../include/js_strings.php:29 -msgid "great" -msgstr "отлично" - -#: ../../include/js_strings.php:30 -msgid "" -"Your chosen nickname was either already taken or not valid. Please use our " -"suggestion (" -msgstr "Выбранный вами псевдоним уже используется или недействителен. Попробуйте использовать наше предложение (" - -#: ../../include/js_strings.php:31 -msgid ") or enter a new one." -msgstr ") или введите новый." - -#: ../../include/js_strings.php:32 -msgid "Thank you, this nickname is valid." -msgstr "Спасибо, этот псевдоним может быть использован." - -#: ../../include/js_strings.php:33 -msgid "A channel name is required." -msgstr "Требуется название канала." - -#: ../../include/js_strings.php:34 -msgid "This is a " -msgstr "Это " - -#: ../../include/js_strings.php:35 -msgid " channel name" -msgstr " название канала" - -#: ../../include/js_strings.php:41 -msgid "timeago.prefixAgo" -msgstr "" - -#: ../../include/js_strings.php:42 -msgid "timeago.prefixFromNow" -msgstr "" - -#: ../../include/js_strings.php:43 -msgid "timeago.suffixAgo" -msgstr "назад" - -#: ../../include/js_strings.php:44 -msgid "timeago.suffixFromNow" -msgstr "" - -#: ../../include/js_strings.php:47 -msgid "less than a minute" -msgstr "менее чем одну минуту" - -#: ../../include/js_strings.php:48 -msgid "about a minute" -msgstr "около минуты" - -#: ../../include/js_strings.php:49 -#, php-format -msgid "%d minutes" -msgstr "%d минут" - -#: ../../include/js_strings.php:50 -msgid "about an hour" -msgstr "около часа" - -#: ../../include/js_strings.php:51 -#, php-format -msgid "about %d hours" -msgstr "около %d часов" - -#: ../../include/js_strings.php:52 -msgid "a day" -msgstr "день" - -#: ../../include/js_strings.php:53 -#, php-format -msgid "%d days" -msgstr "%d дней" - -#: ../../include/js_strings.php:54 -msgid "about a month" -msgstr "около месяца" - -#: ../../include/js_strings.php:55 -#, php-format -msgid "%d months" -msgstr "%d месяцев" - -#: ../../include/js_strings.php:56 -msgid "about a year" -msgstr "около года" - -#: ../../include/js_strings.php:57 -#, php-format -msgid "%d years" -msgstr "%d лет" - -#: ../../include/js_strings.php:58 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:59 -msgid "timeago.numbers" -msgstr "" - -#: ../../include/js_strings.php:65 -msgctxt "long" -msgid "May" -msgstr "Май" - -#: ../../include/js_strings.php:73 -msgid "Jan" -msgstr "Янв" - -#: ../../include/js_strings.php:74 -msgid "Feb" -msgstr "Фев" - -#: ../../include/js_strings.php:75 -msgid "Mar" -msgstr "Мар" - -#: ../../include/js_strings.php:76 -msgid "Apr" -msgstr "Апр" - -#: ../../include/js_strings.php:77 -msgctxt "short" -msgid "May" -msgstr "Май" - -#: ../../include/js_strings.php:78 -msgid "Jun" -msgstr "Июн" - -#: ../../include/js_strings.php:79 -msgid "Jul" -msgstr "Июл" - -#: ../../include/js_strings.php:80 -msgid "Aug" -msgstr "Авг" - -#: ../../include/js_strings.php:81 -msgid "Sep" -msgstr "Сен" - -#: ../../include/js_strings.php:82 -msgid "Oct" -msgstr "Окт" - -#: ../../include/js_strings.php:83 -msgid "Nov" -msgstr "Ноя" - -#: ../../include/js_strings.php:84 -msgid "Dec" -msgstr "Дек" - -#: ../../include/js_strings.php:92 -msgid "Sun" -msgstr "Вск" - -#: ../../include/js_strings.php:93 -msgid "Mon" -msgstr "Пон" - -#: ../../include/js_strings.php:94 -msgid "Tue" -msgstr "Вт" - -#: ../../include/js_strings.php:95 -msgid "Wed" -msgstr "Ср" - -#: ../../include/js_strings.php:96 -msgid "Thu" -msgstr "Чет" - -#: ../../include/js_strings.php:97 -msgid "Fri" -msgstr "Пят" - -#: ../../include/js_strings.php:98 -msgid "Sat" -msgstr "Суб" - -#: ../../include/js_strings.php:99 -msgctxt "calendar" -msgid "today" -msgstr "сегодня" - -#: ../../include/js_strings.php:100 -msgctxt "calendar" -msgid "month" -msgstr "месяц" - -#: ../../include/js_strings.php:101 -msgctxt "calendar" -msgid "week" -msgstr "неделя" - -#: ../../include/js_strings.php:102 -msgctxt "calendar" -msgid "day" -msgstr "день" - -#: ../../include/js_strings.php:103 -msgctxt "calendar" -msgid "All day" -msgstr "Весь день" - -#: ../../include/oembed.php:224 -msgid "View PDF" -msgstr "Просмотреть PDF" - -#: ../../include/oembed.php:347 -msgid " by " -msgstr " по " - -#: ../../include/oembed.php:348 -msgid " on " -msgstr " на " - -#: ../../include/oembed.php:377 -msgid "Embedded content" -msgstr "Встроенное содержимое" - -#: ../../include/oembed.php:386 -msgid "Embedding disabled" -msgstr "Встраивание отключено" - -#: ../../include/photos.php:151 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Файл превышает предельный размер для сайта в %lu байт" - -#: ../../include/photos.php:162 -msgid "Image file is empty." -msgstr "Файл изображения пуст." - -#: ../../include/photos.php:196 ../../Zotlabs/Module/Profile_photo.php:225 -#: ../../Zotlabs/Module/Cover_photo.php:205 -msgid "Unable to process image" -msgstr "Не удается обработать изображение" - -#: ../../include/photos.php:327 -msgid "Photo storage failed." -msgstr "Ошибка хранилища фотографий." - -#: ../../include/photos.php:376 -msgid "a new photo" -msgstr "новая фотография" - -#: ../../include/photos.php:380 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s опубликовал %2$s в %3$s" - -#: ../../include/photos.php:668 ../../Zotlabs/Module/Photos.php:1370 -#: ../../Zotlabs/Module/Photos.php:1383 ../../Zotlabs/Module/Photos.php:1384 -msgid "Recent Photos" -msgstr "Последние фотографии" - -#: ../../include/photos.php:672 -msgid "Upload New Photos" -msgstr "Загрузить новые фотографии" - -#: ../../include/connections.php:133 -msgid "New window" -msgstr "Новое окно" - -#: ../../include/connections.php:134 -msgid "Open the selected location in a different window or browser tab" -msgstr "Открыть выбранное местоположение в другом окне или вкладке браузера" - -#: ../../Zotlabs/Lib/NativeWiki.php:151 -msgid "Wiki updated successfully" -msgstr "Wiki успешно обновлена" - -#: ../../Zotlabs/Lib/NativeWiki.php:205 -msgid "Wiki files deleted successfully" -msgstr "Wiki успешно удалена" - -#: ../../Zotlabs/Lib/Techlevels.php:10 -msgid "0. Beginner/Basic" -msgstr "Начинающий / Базовый" - -#: ../../Zotlabs/Lib/Techlevels.php:11 -msgid "1. Novice - not skilled but willing to learn" -msgstr "1. Новичок - не опытный, но желающий учиться" - -#: ../../Zotlabs/Lib/Techlevels.php:12 -msgid "2. Intermediate - somewhat comfortable" -msgstr "2. Промежуточный - более удобный" - -#: ../../Zotlabs/Lib/Techlevels.php:13 -msgid "3. Advanced - very comfortable" -msgstr "3. Продвинутый - очень удобный" - -#: ../../Zotlabs/Lib/Techlevels.php:14 -msgid "4. Expert - I can write computer code" -msgstr "4. Эксперт - я умею программировать" - -#: ../../Zotlabs/Lib/Techlevels.php:15 -msgid "5. Wizard - I probably know more than you do" -msgstr "5. Волшебник - возможно я знаю больше чем ты" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "Общедоступно" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" -msgstr "Любому в сети $Projectname" - -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -#, php-format -msgid "Any account on %s" -msgstr "Любой аккаунт в %s" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "Любой из моих контактов" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "Только те контакты, кому я дам разрешение" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Любой аутентифицированный (может включать посетителей их других сетей)" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "Любые контакты включая те, которые вы ещё не одобрили" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Это настройка по умолчанию для аудитории ваших обычных потоков и публикаций" - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Это настройка по умолчанию для тех, кто может просматривать профиль вашего основного канала" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "Это настройка по умолчанию для тех, кто может просматривать ваши контакты" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Это настройка по умолчанию для тех, кто может просматривать ваше хранилище файлов и фотографий" - -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" -msgstr "Это настройка по умолчанию для аудитории ваших веб-страниц" - -#: ../../Zotlabs/Lib/ThreadItem.php:152 ../../Zotlabs/Storage/Browser.php:280 -msgid "Admin Delete" -msgstr "Удалено администратором" - -#: ../../Zotlabs/Lib/ThreadItem.php:162 ../../Zotlabs/Module/Filer.php:54 -msgid "Save to Folder" -msgstr "Сохранить в каталог" - -#: ../../Zotlabs/Lib/ThreadItem.php:183 -msgid "I will attend" -msgstr "Я буду присутствовать" - -#: ../../Zotlabs/Lib/ThreadItem.php:183 -msgid "I will not attend" -msgstr "Я не буду присутствовать" - -#: ../../Zotlabs/Lib/ThreadItem.php:183 -msgid "I might attend" -msgstr "Я возможно буду присутствовать" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 -msgid "I agree" -msgstr "Я согласен" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 -msgid "I disagree" -msgstr "Я не согласен" - -#: ../../Zotlabs/Lib/ThreadItem.php:193 -msgid "I abstain" -msgstr "Я воздержался" - -#: ../../Zotlabs/Lib/ThreadItem.php:212 ../../Zotlabs/Lib/ThreadItem.php:224 -#: ../../Zotlabs/Module/Photos.php:1161 ../../Zotlabs/Module/Photos.php:1173 -msgid "View all" -msgstr "Просмотреть все" - -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Add Tag" -msgstr "Добавить тег" - -#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../Zotlabs/Module/Photos.php:1105 -msgid "I like this (toggle)" -msgstr "мне это нравится (переключение)" - -#: ../../Zotlabs/Lib/ThreadItem.php:286 ../../Zotlabs/Module/Photos.php:1106 -msgid "I don't like this (toggle)" -msgstr "мне это не нравится (переключение)" - -#: ../../Zotlabs/Lib/ThreadItem.php:290 -msgid "Share This" -msgstr "Поделиться этим" - -#: ../../Zotlabs/Lib/ThreadItem.php:290 -msgid "share" -msgstr "поделиться" - -#: ../../Zotlabs/Lib/ThreadItem.php:299 -msgid "Delivery Report" -msgstr "Отчёт о доставке" - -#: ../../Zotlabs/Lib/ThreadItem.php:317 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d комментарий" -msgstr[1] "%d комментария" -msgstr[2] "%d комментариев" - -#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../Zotlabs/Lib/ThreadItem.php:348 -#, php-format -msgid "View %s's profile - %s" -msgstr "Просмотр %s профиля - %s" - -#: ../../Zotlabs/Lib/ThreadItem.php:351 -msgid "to" -msgstr "к" - -#: ../../Zotlabs/Lib/ThreadItem.php:352 -msgid "via" -msgstr "через" - -#: ../../Zotlabs/Lib/ThreadItem.php:353 -msgid "Wall-to-Wall" -msgstr "Стена-к-Стене" - -#: ../../Zotlabs/Lib/ThreadItem.php:354 -msgid "via Wall-To-Wall:" -msgstr "через Стена-к-Стене:" - -#: ../../Zotlabs/Lib/ThreadItem.php:379 -msgid "Attend" -msgstr "Посетить" - -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Attendance Options" -msgstr "Параметры посещаемости" - -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Vote" -msgstr "Голосовать" - -#: ../../Zotlabs/Lib/ThreadItem.php:382 -msgid "Voting Options" -msgstr "Параметры голосования" - -#: ../../Zotlabs/Lib/ThreadItem.php:404 -msgid "Add to Calendar" -msgstr "Добавить в календарь" - -#: ../../Zotlabs/Lib/ThreadItem.php:413 -#: ../../Zotlabs/Module/Notifications.php:60 -msgid "Mark all seen" -msgstr "Отметить как просмотренное" - -#: ../../Zotlabs/Lib/ThreadItem.php:420 ../../Zotlabs/Module/Photos.php:1292 -msgctxt "noun" -msgid "Likes" -msgstr "Нравится" - -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../Zotlabs/Module/Photos.php:1293 -msgctxt "noun" -msgid "Dislikes" -msgstr "Не нравится" - -#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../Zotlabs/Module/Photos.php:1124 -#: ../../Zotlabs/Module/Photos.php:1242 -msgid "This is you" -msgstr "Это вы" - -#: ../../Zotlabs/Lib/ThreadItem.php:763 -msgid "Image" -msgstr "Изображение" - -#: ../../Zotlabs/Lib/ThreadItem.php:765 -msgid "Insert Link" -msgstr "Вставить ссылку" - -#: ../../Zotlabs/Lib/ThreadItem.php:766 -msgid "Video" -msgstr "Видео" - -#: ../../Zotlabs/Lib/ThreadItem.php:776 -msgid "Your full name (required)" -msgstr "Ваше полное имя (требуется)" - -#: ../../Zotlabs/Lib/ThreadItem.php:777 -msgid "Your email address (required)" -msgstr "Ваш адрес электронной почты (требуется)" - -#: ../../Zotlabs/Lib/ThreadItem.php:778 -msgid "Your website URL (optional)" -msgstr "URL вашего вебсайта (необязательно)" - -#: ../../Zotlabs/Lib/Apps.php:295 ../../Zotlabs/Module/Apps.php:50 -msgid "Apps" -msgstr "Приложения" - -#: ../../Zotlabs/Lib/Apps.php:298 -msgid "Site Admin" -msgstr "Администратор сайта" - -#: ../../Zotlabs/Lib/Apps.php:300 -msgid "View Bookmarks" -msgstr "Просмотреть закадки" - -#: ../../Zotlabs/Lib/Apps.php:301 -msgid "My Chatrooms" -msgstr "Мои чаты" - -#: ../../Zotlabs/Lib/Apps.php:303 -msgid "Remote Diagnostics" -msgstr "Удалённая диагностика" - -#: ../../Zotlabs/Lib/Apps.php:307 -msgid "Activity" -msgstr "Активность" - -#: ../../Zotlabs/Lib/Apps.php:312 -msgid "Channel Home" -msgstr "Главная канала" - -#: ../../Zotlabs/Lib/Apps.php:316 -msgid "Directory" -msgstr "Каталог" - -#: ../../Zotlabs/Lib/Apps.php:318 -msgid "Mail" -msgstr "Переписка" - -#: ../../Zotlabs/Lib/Apps.php:319 ../../Zotlabs/Module/Mood.php:135 -msgid "Mood" -msgstr "Настроение" - -#: ../../Zotlabs/Lib/Apps.php:321 -msgid "Chat" -msgstr "Чат" - -#: ../../Zotlabs/Lib/Apps.php:323 -msgid "Probe" -msgstr "Проба" - -#: ../../Zotlabs/Lib/Apps.php:324 -msgid "Suggest" -msgstr "Предложить" - -#: ../../Zotlabs/Lib/Apps.php:325 -msgid "Random Channel" -msgstr "Случайный канал" - -#: ../../Zotlabs/Lib/Apps.php:326 -msgid "Invite" -msgstr "Пригласить" - -#: ../../Zotlabs/Lib/Apps.php:327 ../../Zotlabs/Widget/Admin.php:26 -msgid "Features" -msgstr "Функции" - -#: ../../Zotlabs/Lib/Apps.php:329 -msgid "Post" -msgstr "Публикация" - -#: ../../Zotlabs/Lib/Apps.php:332 -msgid "Profiles" -msgstr "Редактировать профиль" - -#: ../../Zotlabs/Lib/Apps.php:334 -msgid "Notifications" -msgstr "Оповещения" - -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Order Apps" -msgstr "Порядок приложений" - -#: ../../Zotlabs/Lib/Apps.php:480 ../../Zotlabs/Module/Cdav.php:1186 -#: ../../Zotlabs/Module/Connedit.php:922 -#: ../../Zotlabs/Module/Admin/Addons.php:453 -#: ../../Zotlabs/Module/Settings/Oauth2.php:40 -#: ../../Zotlabs/Module/Settings/Oauth2.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:43 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Profiles.php:799 -msgid "Update" -msgstr "Обновить" - -#: ../../Zotlabs/Lib/Apps.php:480 ../../Zotlabs/Module/Admin/Addons.php:422 -msgid "Install" -msgstr "Установить" - -#: ../../Zotlabs/Lib/Apps.php:497 -msgid "Purchase" -msgstr "Купить" - -#: ../../Zotlabs/Lib/Apps.php:501 -msgid "Undelete" -msgstr "Восстановить" - -#: ../../Zotlabs/Lib/Apps.php:509 -msgid "Add to app-tray" -msgstr "Добавить в app-tray" - -#: ../../Zotlabs/Lib/Apps.php:510 -msgid "Remove from app-tray" -msgstr "Удалить из app-tray" - -#: ../../Zotlabs/Lib/Apps.php:511 -msgid "Pin to navbar" -msgstr "Добавить на панель навигации" - -#: ../../Zotlabs/Lib/Apps.php:512 -msgid "Unpin from navbar" -msgstr "Удалить с панели навигации" - -#: ../../Zotlabs/Lib/Enotify.php:60 -msgid "$Projectname Notification" -msgstr "Оповещение $Projectname " - -#: ../../Zotlabs/Lib/Enotify.php:63 -msgid "Thank You," -msgstr "Спасибо," - -#: ../../Zotlabs/Lib/Enotify.php:66 -#, php-format -msgid "This email was sent by %1$s at %2$s." -msgstr "Это письмо было отправлено %1$s на %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:67 -#, php-format -msgid "" -"To stop receiving these messages, please adjust your Notification Settings " -"at %s" -msgstr "Чтобы прекратить получать эти сообщения, настройте параметры уведомлений в %s" - -#: ../../Zotlabs/Lib/Enotify.php:68 -#, php-format -msgid "To stop receiving these messages, please adjust your %s." -msgstr "Чтобы прекратить получать эти сообщения, пожалуйста измените %s." - -#: ../../Zotlabs/Lib/Enotify.php:68 -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Notification Settings" -msgstr "Настройки уведомлений" - -#: ../../Zotlabs/Lib/Enotify.php:123 -#, php-format -msgid "%s " -msgstr "" - -#: ../../Zotlabs/Lib/Enotify.php:127 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Notify] Получено новое сообщение в %s" - -#: ../../Zotlabs/Lib/Enotify.php:129 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s отправил вам новое личное сообщение в %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s отправил вам %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:130 -msgid "a private message" -msgstr "личное сообщение" - -#: ../../Zotlabs/Lib/Enotify.php:131 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения." - -#: ../../Zotlabs/Lib/Enotify.php:144 -msgid "commented on" -msgstr "прокомментировал" - -#: ../../Zotlabs/Lib/Enotify.php:155 -msgid "liked" -msgstr "понравилось" - -#: ../../Zotlabs/Lib/Enotify.php:158 -msgid "disliked" -msgstr "не понравилось" - -#: ../../Zotlabs/Lib/Enotify.php:201 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]%4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:209 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]%5$s %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:218 -#, php-format -msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s %2$s [zrl=%3$s]ваш %4$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Отмодерирован комментарий к беседе #%1$d по %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Комментарий к беседе #%1$d по %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:233 -#, php-format -msgid "%1$s commented on an item/conversation you have been following." -msgstr "%1$s прокомментировал тему / беседу за которым вы следите." - -#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 -#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 -#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Пожалуйста, посетите %s для просмотра и / или ответа в беседе." - -#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 -#, php-format -msgid "Please visit %s to approve or reject this comment." -msgstr "Пожалуйста посетитет %s для одобрения и отклонения комментария." - -#: ../../Zotlabs/Lib/Enotify.php:299 -#, php-format -msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" -msgstr "%1$s понравился [zrl=%2$s]ваш %3$s[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:313 -#, php-format -msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" -msgstr "[$Projectname:Notify] Беседа получила отметку \"нравится\" #%1$d от %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:314 -#, php-format -msgid "%1$s liked an item/conversation you created." -msgstr "%1$s нравится тема / беседа которую вы создали." - -#: ../../Zotlabs/Lib/Enotify.php:325 -#, php-format -msgid "[$Projectname:Notify] %s posted to your profile wall" -msgstr "[$Projectname:Notify] %s сделал публикацию на стене вашего профиля" - -#: ../../Zotlabs/Lib/Enotify.php:327 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s сделал публикацию на стене вашего профиля в %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:329 -#, php-format -msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" -msgstr "%1$s опубликовал на [zrl=%2$s]вашей стене[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:352 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Notify] %s отметил вас" - -#: ../../Zotlabs/Lib/Enotify.php:353 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s отметил вас в %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:354 -#, php-format -msgid "%1$s [zrl=%2$s]tagged you[/zrl]." -msgstr "%1$s [zrl=%2$s]отметил вас[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:365 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Notify] %1$s ткнул вас" - -#: ../../Zotlabs/Lib/Enotify.php:366 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ткнул вас в %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:367 -#, php-format -msgid "%1$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s [zrl=%2$s]ткнул вас[/zrl]." - -#: ../../Zotlabs/Lib/Enotify.php:382 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Notify] %s отметил вашу публикацию" - -#: ../../Zotlabs/Lib/Enotify.php:383 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s отметил вашу публикацию на %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:384 -#, php-format -msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" -msgstr "%1$s отметил [zrl=%2$s]вашу публикацию[/zrl]" - -#: ../../Zotlabs/Lib/Enotify.php:395 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Notify] Получено приглашение" - -#: ../../Zotlabs/Lib/Enotify.php:396 -#, php-format -msgid "You've received an new connection request from '%1$s' at %2$s" -msgstr "Вы получили новый запрос контакта от '%1$s' в %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:397 -#, php-format -msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." -msgstr "Вы получили [zrl=%1$s]новый запрос контакта[/zrl] от %2$s." - -#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Вы можете увидеть его профиль по ссылке %s" - -#: ../../Zotlabs/Lib/Enotify.php:402 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта." - -#: ../../Zotlabs/Lib/Enotify.php:409 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Notify] Получено предложение дружить" - -#: ../../Zotlabs/Lib/Enotify.php:410 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Вы получили предложение дружить от '%1$s' в %2$s" - -#: ../../Zotlabs/Lib/Enotify.php:411 -#, php-format -msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." -msgstr "Вы получили [zrl=%1$s]предложение дружить[/zrl] для %2$s от %3$s." - -#: ../../Zotlabs/Lib/Enotify.php:416 -msgid "Name:" -msgstr "Имя:" - -#: ../../Zotlabs/Lib/Enotify.php:417 -msgid "Photo:" -msgstr "Фото:" - -#: ../../Zotlabs/Lib/Enotify.php:420 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение." - -#: ../../Zotlabs/Lib/Enotify.php:640 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Уведомление]" - -#: ../../Zotlabs/Lib/Enotify.php:808 -msgid "created a new post" -msgstr "создал новую публикацию" - -#: ../../Zotlabs/Lib/Enotify.php:809 -#, php-format -msgid "commented on %s's post" -msgstr "прокомментировал публикацию %s" - -#: ../../Zotlabs/Lib/Enotify.php:816 -#, php-format -msgid "edited a post dated %s" -msgstr "отредактировал публикацию датированную %s" - -#: ../../Zotlabs/Lib/Enotify.php:820 -#, php-format -msgid "edited a comment dated %s" -msgstr "отредактировал комментарий датированный %s" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:42 -#: ../../Zotlabs/Lib/NativeWikiPage.php:93 -msgid "(No Title)" -msgstr "(нет заголовка)" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:107 -msgid "Wiki page create failed." -msgstr "Не удалось создать страницу Wiki." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:120 -msgid "Wiki not found." -msgstr "Wiki не найдена." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:131 -msgid "Destination name already exists" -msgstr "Имя назначения уже существует" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:163 -#: ../../Zotlabs/Lib/NativeWikiPage.php:359 -msgid "Page not found" -msgstr "Страница не найдена." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:194 -msgid "Error reading page content" -msgstr "Ошибка чтения содержимого страницы" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:350 -#: ../../Zotlabs/Lib/NativeWikiPage.php:400 -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -#: ../../Zotlabs/Lib/NativeWikiPage.php:508 -msgid "Error reading wiki" -msgstr "Ошибка чтения Wiki" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:388 -msgid "Page update failed." -msgstr "Не удалось обновить страницу." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:422 -msgid "Nothing deleted" -msgstr "Ничего не удалено" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:488 -msgid "Compare: object not found." -msgstr "Сравнение: объект не найден." - -#: ../../Zotlabs/Lib/NativeWikiPage.php:494 -msgid "Page updated" -msgstr "Страница обновлена" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:497 -msgid "Untitled" -msgstr "Не озаглавлено" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:503 -msgid "Wiki resource_id required for git commit" -msgstr "Требуется resource_id Wiki для отправки в Git" - -#: ../../Zotlabs/Lib/NativeWikiPage.php:559 -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "Сообщение" - -#: ../../Zotlabs/Lib/Permcat.php:82 -msgctxt "permcat" -msgid "default" -msgstr "по умолчанию" - -#: ../../Zotlabs/Lib/Permcat.php:133 -msgctxt "permcat" -msgid "follower" -msgstr "поклонник" - -#: ../../Zotlabs/Lib/Permcat.php:137 -msgctxt "permcat" -msgid "contributor" -msgstr "участник" - -#: ../../Zotlabs/Lib/Permcat.php:141 -msgctxt "permcat" -msgid "publisher" -msgstr "издатель" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:83 -#, php-format -msgid "Update Error at %s" -msgstr "Ошибка обновления на %s" - -#: ../../Zotlabs/Lib/DB_Upgrade.php:89 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Выполнение %s неудачно. Проверьте системный журнал." - -#: ../../Zotlabs/Lib/Chatroom.php:23 -msgid "Missing room name" -msgstr "Отсутствует название комнаты" - -#: ../../Zotlabs/Lib/Chatroom.php:32 -msgid "Duplicate room name" -msgstr "Название комнаты дублируется" - -#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 -msgid "Invalid room specifier." -msgstr "Неверный указатель комнаты." - -#: ../../Zotlabs/Lib/Chatroom.php:122 -msgid "Room not found." -msgstr "Комната не найдена." - -#: ../../Zotlabs/Lib/Chatroom.php:143 -msgid "Room is full" -msgstr "Комната переполнена" - -#: ../../Zotlabs/Widget/Activity_order.php:89 -msgid "Commented Date" -msgstr "По комментариям" - -#: ../../Zotlabs/Widget/Activity_order.php:93 -msgid "Order by last commented date" -msgstr "Сортировка по дате последнего комментария" - -#: ../../Zotlabs/Widget/Activity_order.php:96 -msgid "Posted Date" -msgstr "По публикациям" - -#: ../../Zotlabs/Widget/Activity_order.php:100 -msgid "Order by last posted date" -msgstr "Сортировка по дате последней публикации" - -#: ../../Zotlabs/Widget/Activity_order.php:103 -msgid "Date Unthreaded" -msgstr "По порядку" - -#: ../../Zotlabs/Widget/Activity_order.php:107 -msgid "Order unthreaded by date" -msgstr "Сортировка в порядке поступления" - -#: ../../Zotlabs/Widget/Activity_order.php:122 -msgid "Activity Order" -msgstr "Сортировка активности" - -#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Site" -msgstr "Сайт" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Module/Admin.php:96 -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Accounts.php:180 -msgid "Accounts" -msgstr "Учётные записи" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "Регистрации участников, ожидающие подверждения" - -#: ../../Zotlabs/Widget/Admin.php:24 ../../Zotlabs/Module/Admin.php:114 -#: ../../Zotlabs/Module/Admin/Channels.php:146 -msgid "Channels" -msgstr "Каналы" - -#: ../../Zotlabs/Widget/Admin.php:25 ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Security" -msgstr "Безопасность" - -#: ../../Zotlabs/Widget/Admin.php:27 ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:437 -msgid "Addons" -msgstr "Расширения" - -#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Themes.php:157 -msgid "Themes" -msgstr "Темы" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "Просмотр очереди" - -#: ../../Zotlabs/Widget/Admin.php:30 ../../Zotlabs/Module/Admin/Profs.php:168 -msgid "Profile Fields" -msgstr "Поля профиля" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "Обновление базы данных" - -#: ../../Zotlabs/Widget/Admin.php:48 ../../Zotlabs/Widget/Admin.php:58 -#: ../../Zotlabs/Module/Admin/Logs.php:83 -msgid "Logs" -msgstr "Журналы" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Addon Features" -msgstr "Настройки расширений" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "Задачи" - -#: ../../Zotlabs/Widget/Suggestions.php:46 ../../Zotlabs/Module/Suggest.php:58 -msgid "Ignore/Hide" -msgstr "Игнорировать / cкрыть" - -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" -msgstr "Рекомендации" - -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." -msgstr "Просмотреть больше..." - -#: ../../Zotlabs/Widget/Conversations.php:17 -msgid "Received Messages" -msgstr "Полученные сообщения" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Sent Messages" -msgstr "Отправленные сообщения" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Conversations" -msgstr "Беседы" - -#: ../../Zotlabs/Widget/Conversations.php:37 -msgid "No messages." -msgstr "Сообщений нет." - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "Удалить беседу" - -#: ../../Zotlabs/Widget/Cdav.php:37 -msgid "Select Channel" -msgstr "Выбрать канал" - -#: ../../Zotlabs/Widget/Cdav.php:42 -msgid "Read-write" -msgstr "Чтение-запись" - -#: ../../Zotlabs/Widget/Cdav.php:43 -msgid "Read-only" -msgstr "Только чтение" - -#: ../../Zotlabs/Widget/Cdav.php:117 -msgid "My Calendars" -msgstr "Мои календари" - -#: ../../Zotlabs/Widget/Cdav.php:119 -msgid "Shared Calendars" -msgstr "Общие календари" - -#: ../../Zotlabs/Widget/Cdav.php:123 -msgid "Share this calendar" -msgstr "Поделиться этим календарём" - -#: ../../Zotlabs/Widget/Cdav.php:125 -msgid "Calendar name and color" -msgstr "Имя и цвет календаря" - -#: ../../Zotlabs/Widget/Cdav.php:127 -msgid "Create new calendar" -msgstr "Создать новый календарь" - -#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/Layouts.php:185 -#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Module/Articles.php:96 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/New_channel.php:188 -#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 -msgid "Create" -msgstr "Создать" - -#: ../../Zotlabs/Widget/Cdav.php:129 -msgid "Calendar Name" -msgstr "Имя календаря" - -#: ../../Zotlabs/Widget/Cdav.php:130 -msgid "Calendar Tools" -msgstr "Инструменты календаря" - -#: ../../Zotlabs/Widget/Cdav.php:131 -msgid "Import calendar" -msgstr "Импортировать календарь" - -#: ../../Zotlabs/Widget/Cdav.php:132 -msgid "Select a calendar to import to" -msgstr "Выбрать календарь для импорта в" - -#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 -#: ../../Zotlabs/Widget/Album.php:97 ../../Zotlabs/Widget/Portfolio.php:110 -#: ../../Zotlabs/Module/Photos.php:717 -#: ../../Zotlabs/Module/Profile_photo.php:459 -#: ../../Zotlabs/Module/Cover_photo.php:395 -#: ../../Zotlabs/Module/Embedphotos.php:158 -#: ../../Zotlabs/Storage/Browser.php:392 -msgid "Upload" -msgstr "Загрузка" - -#: ../../Zotlabs/Widget/Cdav.php:159 -msgid "Addressbooks" -msgstr "Адресные книги" - -#: ../../Zotlabs/Widget/Cdav.php:161 -msgid "Addressbook name" -msgstr "Имя адресной книги" - -#: ../../Zotlabs/Widget/Cdav.php:163 -msgid "Create new addressbook" -msgstr "Создать новую адресную книгу" - -#: ../../Zotlabs/Widget/Cdav.php:164 -msgid "Addressbook Name" -msgstr "Имя адресной книги" - -#: ../../Zotlabs/Widget/Cdav.php:166 -msgid "Addressbook Tools" -msgstr "Инструменты адресной книги" - -#: ../../Zotlabs/Widget/Cdav.php:167 -msgid "Import addressbook" -msgstr "Импортировать адресную книгу" - -#: ../../Zotlabs/Widget/Cdav.php:168 -msgid "Select an addressbook to import to" -msgstr "Выбрать адресную книгу для импорта в" - -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "Активность" - -#: ../../Zotlabs/Widget/Hq_controls.php:14 -msgid "HQ Control Panel" -msgstr "Панель управления HQ" - -#: ../../Zotlabs/Widget/Hq_controls.php:17 -msgid "Create a new post" -msgstr "Создать новую публикацию" - -#: ../../Zotlabs/Widget/Wiki_pages.php:32 -#: ../../Zotlabs/Widget/Wiki_pages.php:91 -msgid "Add new page" -msgstr "Добавить новую страницу" - -#: ../../Zotlabs/Widget/Wiki_pages.php:39 -#: ../../Zotlabs/Widget/Wiki_pages.php:98 ../../Zotlabs/Module/Dreport.php:151 -msgid "Options" -msgstr "Параметры" - -#: ../../Zotlabs/Widget/Wiki_pages.php:85 -msgid "Wiki Pages" -msgstr "Wiki страницы" - -#: ../../Zotlabs/Widget/Wiki_pages.php:96 -msgid "Page name" -msgstr "Название страницы" - -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "Меню личной переписки" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "Комбинированный вид" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 -msgid "Inbox" -msgstr "Входящие" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 -msgid "Outbox" -msgstr "Исходящие" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 -msgid "New Message" -msgstr "Новое сообщение" - -#: ../../Zotlabs/Widget/Photo_rand.php:58 ../../Zotlabs/Widget/Photo.php:48 -msgid "photo/image" -msgstr "фотография / изображение" - -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" -msgstr "Архивы" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "Инструменты для событий" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "Экспортировать календарь" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" -msgstr "Импортировать календарь" - -#: ../../Zotlabs/Widget/Wiki_list.php:15 -msgid "Wiki List" -msgstr "Список Wiki" - -#: ../../Zotlabs/Widget/Settings_menu.php:35 -msgid "Account settings" -msgstr "Настройки аккаунта" - -#: ../../Zotlabs/Widget/Settings_menu.php:41 -msgid "Channel settings" -msgstr "Настройки канала" - -#: ../../Zotlabs/Widget/Settings_menu.php:50 -msgid "Additional features" -msgstr "Дополнительные функции" - -#: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Addon settings" -msgstr "Настройки расширений" - -#: ../../Zotlabs/Widget/Settings_menu.php:63 -msgid "Display settings" -msgstr "Настройки отображения" - -#: ../../Zotlabs/Widget/Settings_menu.php:70 -msgid "Manage locations" -msgstr "Управление местоположением" - -#: ../../Zotlabs/Widget/Settings_menu.php:77 -msgid "Export channel" -msgstr "Экспортировать канал" - -#: ../../Zotlabs/Widget/Settings_menu.php:84 -msgid "OAuth1 apps" -msgstr "Приложения OAuth1" - -#: ../../Zotlabs/Widget/Settings_menu.php:92 -msgid "OAuth2 apps" -msgstr "Приложения OAuth2" - -#: ../../Zotlabs/Widget/Settings_menu.php:100 -#: ../../Zotlabs/Module/Settings/Tokens.php:150 -msgid "Guest Access Tokens" -msgstr "Токен гостевого доступа" - -#: ../../Zotlabs/Widget/Settings_menu.php:117 -#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 -msgid "Connection Default Permissions" -msgstr "Разрешения по умолчанию для контакта" - -#: ../../Zotlabs/Widget/Settings_menu.php:125 -msgid "Premium Channel Settings" -msgstr "Настройки премиум-канала" - -#: ../../Zotlabs/Widget/Album.php:78 ../../Zotlabs/Widget/Portfolio.php:87 -#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1355 -#: ../../Zotlabs/Module/Embedphotos.php:140 -msgid "View Photo" -msgstr "Посмотреть фотографию" - -#: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 -#: ../../Zotlabs/Module/Photos.php:847 ../../Zotlabs/Module/Embedphotos.php:156 -msgid "Edit Album" -msgstr "Редактировать Фотоальбом" - -#: ../../Zotlabs/Widget/Pubsites.php:12 ../../Zotlabs/Module/Pubsites.php:24 -msgid "Public Hubs" -msgstr "Публичные хабы" - -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" -msgstr "Заметки" - -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" -msgstr "Обзор" - -#: ../../Zotlabs/Widget/Appstore.php:11 -msgid "App Collections" -msgstr "Коллекции приложений" - -#: ../../Zotlabs/Widget/Appstore.php:13 -msgid "Available Apps" -msgstr "Доступные приложения" - -#: ../../Zotlabs/Widget/Appstore.php:14 -msgid "Installed apps" -msgstr "Установленные приложения" - -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" -msgstr "Закладки чатов" - -#: ../../Zotlabs/Widget/Follow.php:22 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "У вас есть %1$.0f из %2$.0f разрешенных контактов." - -#: ../../Zotlabs/Widget/Follow.php:29 -msgid "Add New Connection" -msgstr "Добавить новый контакт" - -#: ../../Zotlabs/Widget/Follow.php:30 -msgid "Enter channel address" -msgstr "Введите адрес канала" - -#: ../../Zotlabs/Widget/Follow.php:31 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Пример: ivan@example.com, http://example.com/ivan" - -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" -msgstr "Участники чата" - -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" -msgstr "Рекомендуемые чаты" - -#: ../../Zotlabs/Widget/Rating.php:51 -msgid "Rating Tools" -msgstr "Инструменты оценки" - -#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 -msgid "Rate Me" -msgstr "Оценить меня" - -#: ../../Zotlabs/Widget/Rating.php:60 -msgid "View Ratings" -msgstr "Просмотр оценок" - -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" -msgstr "Удалить термин" - -#: ../../Zotlabs/Widget/Affinity.php:22 ../../Zotlabs/Module/Connedit.php:709 -msgid "Me" -msgstr "Я" - -#: ../../Zotlabs/Widget/Affinity.php:23 ../../Zotlabs/Module/Connedit.php:710 -msgid "Family" -msgstr "Семья" - -#: ../../Zotlabs/Widget/Affinity.php:25 ../../Zotlabs/Module/Connedit.php:712 -msgid "Acquaintances" -msgstr "Знакомые" - -#: ../../Zotlabs/Widget/Affinity.php:26 ../../Zotlabs/Module/Connections.php:94 -#: ../../Zotlabs/Module/Connections.php:108 -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "All" -msgstr "Все" - -#: ../../Zotlabs/Widget/Affinity.php:45 -msgid "Refresh" -msgstr "Обновить" - -#: ../../Zotlabs/Widget/Activity_filter.php:24 -msgid "Personal Posts" -msgstr "Личные публикации" - -#: ../../Zotlabs/Widget/Activity_filter.php:28 -msgid "Show posts that mention or involve me" -msgstr "Показывать публикации где вы были упомянуты или привлечены" - -#: ../../Zotlabs/Widget/Activity_filter.php:39 -msgid "Starred Posts" -msgstr "Отмеченные публикации" - -#: ../../Zotlabs/Widget/Activity_filter.php:43 -msgid "Show posts that I have starred" -msgstr "Показывать публикации которые я отметил" - -#: ../../Zotlabs/Widget/Activity_filter.php:63 -#, php-format -msgid "Show posts related to the %s privacy group" -msgstr "Показывать публикации относящиеся к группе безопасности %s" - -#: ../../Zotlabs/Widget/Activity_filter.php:72 -msgid "Show my privacy groups" -msgstr "Показывать мои группы безопасности" - -#: ../../Zotlabs/Widget/Activity_filter.php:93 -msgid "Show posts to this forum" -msgstr "Показывать публикации этого форума" - -#: ../../Zotlabs/Widget/Activity_filter.php:100 -#: ../../Zotlabs/Widget/Notifications.php:119 -#: ../../Zotlabs/Widget/Notifications.php:120 -#: ../../Zotlabs/Widget/Forums.php:100 -msgid "Forums" -msgstr "Форумы" - -#: ../../Zotlabs/Widget/Activity_filter.php:104 -msgid "Show forums" -msgstr "Показывать форумы" - -#: ../../Zotlabs/Widget/Activity_filter.php:128 -#, php-format -msgid "Show posts that I have filed to %s" -msgstr "Показывать публикации которые я добавил в %s" - -#: ../../Zotlabs/Widget/Activity_filter.php:138 -msgid "Show filed post categories" -msgstr "Показывать категории добавленных публикаций" - -#: ../../Zotlabs/Widget/Activity_filter.php:152 -msgid "Panel search" -msgstr "Панель поиска" - -#: ../../Zotlabs/Widget/Activity_filter.php:162 -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:122 -#: ../../Zotlabs/Widget/Notifications.php:153 -msgid "Filter by name" -msgstr "Отфильтровать по имени" - -#: ../../Zotlabs/Widget/Activity_filter.php:177 -msgid "Remove active filter" -msgstr "Удалить активный фильтр" - -#: ../../Zotlabs/Widget/Activity_filter.php:193 -msgid "Activity Filters" -msgstr "Фильтры активности" - -#: ../../Zotlabs/Widget/Cover_photo.php:54 -msgid "Click to show more" -msgstr "Нажмите чтобы показать больше" - -#: ../../Zotlabs/Widget/Notifications.php:16 -msgid "New Network Activity" -msgstr "Новая сетевая активность" - -#: ../../Zotlabs/Widget/Notifications.php:17 -msgid "New Network Activity Notifications" -msgstr "Новые уведомления о сетевой активности" - -#: ../../Zotlabs/Widget/Notifications.php:20 -msgid "View your network activity" -msgstr "Просмотреть вашу сетевую активность" - -#: ../../Zotlabs/Widget/Notifications.php:23 -msgid "Mark all notifications read" -msgstr "Пометить уведомления как прочитанные" - -#: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:45 -#: ../../Zotlabs/Widget/Notifications.php:152 -msgid "Show new posts only" -msgstr "Показывать только новые публикации" - -#: ../../Zotlabs/Widget/Notifications.php:35 -msgid "New Home Activity" -msgstr "Новая локальная активность" - -#: ../../Zotlabs/Widget/Notifications.php:36 -msgid "New Home Activity Notifications" -msgstr "Новые уведомления локальной активности" - -#: ../../Zotlabs/Widget/Notifications.php:39 -msgid "View your home activity" -msgstr "Просмотреть локальную активность" - -#: ../../Zotlabs/Widget/Notifications.php:42 -#: ../../Zotlabs/Widget/Notifications.php:149 -msgid "Mark all notifications seen" -msgstr "Пометить уведомления как просмотренные" - -#: ../../Zotlabs/Widget/Notifications.php:54 -msgid "New Mails" -msgstr "Новая переписка" - -#: ../../Zotlabs/Widget/Notifications.php:55 -msgid "New Mails Notifications" -msgstr "Уведомления о новой переписке" - -#: ../../Zotlabs/Widget/Notifications.php:58 -msgid "View your private mails" -msgstr "Просмотреть вашу личную переписку" - -#: ../../Zotlabs/Widget/Notifications.php:61 -msgid "Mark all messages seen" -msgstr "Пометить сообщения как просмотренные" - -#: ../../Zotlabs/Widget/Notifications.php:69 -msgid "New Events" -msgstr "Новые события" - -#: ../../Zotlabs/Widget/Notifications.php:70 -msgid "New Events Notifications" -msgstr "Уведомления о новых событиях" - -#: ../../Zotlabs/Widget/Notifications.php:73 -msgid "View events" -msgstr "Просмотреть события" - -#: ../../Zotlabs/Widget/Notifications.php:76 -msgid "Mark all events seen" -msgstr "Пометить все события как просмотренные" - -#: ../../Zotlabs/Widget/Notifications.php:84 -#: ../../Zotlabs/Module/Connections.php:147 -msgid "New Connections" -msgstr "Новые контакты" - -#: ../../Zotlabs/Widget/Notifications.php:85 -msgid "New Connections Notifications" -msgstr "Уведомления о новых контактах" - -#: ../../Zotlabs/Widget/Notifications.php:88 -msgid "View all connections" -msgstr "Просмотр всех контактов" - -#: ../../Zotlabs/Widget/Notifications.php:96 -msgid "New Files" -msgstr "Новые файлы" - -#: ../../Zotlabs/Widget/Notifications.php:97 -msgid "New Files Notifications" -msgstr "Уведомления о новых файлах" - -#: ../../Zotlabs/Widget/Notifications.php:104 -#: ../../Zotlabs/Widget/Notifications.php:105 -msgid "Notices" -msgstr "Оповещения" - -#: ../../Zotlabs/Widget/Notifications.php:108 -msgid "View all notices" -msgstr "Просмотреть все оповещения" - -#: ../../Zotlabs/Widget/Notifications.php:111 -msgid "Mark all notices seen" -msgstr "Пометить все оповещения как просмотренные" - -#: ../../Zotlabs/Widget/Notifications.php:132 -msgid "New Registrations" -msgstr "Новые регистрации" - -#: ../../Zotlabs/Widget/Notifications.php:133 -msgid "New Registrations Notifications" -msgstr "Уведомления о новых регистрациях" - -#: ../../Zotlabs/Widget/Notifications.php:142 -#: ../../Zotlabs/Module/Pubstream.php:95 -msgid "Public Stream" -msgstr "Публичный поток" - -#: ../../Zotlabs/Widget/Notifications.php:143 -msgid "Public Stream Notifications" -msgstr "Уведомления публичного потока" - -#: ../../Zotlabs/Widget/Notifications.php:146 -msgid "View the public stream" -msgstr "Просмотреть публичный поток" - -#: ../../Zotlabs/Widget/Notifications.php:161 -msgid "Sorry, you have got no notifications at the moment" -msgstr "Извините, но сейчас у вас нет уведомлений" - -#: ../../Zotlabs/Widget/Newmember.php:24 -msgid "Profile Creation" -msgstr "Создание профиля" - -#: ../../Zotlabs/Widget/Newmember.php:26 -msgid "Upload profile photo" -msgstr "Загрузить фотографию профиля" - -#: ../../Zotlabs/Widget/Newmember.php:27 -msgid "Upload cover photo" -msgstr "Загрузить фотографию обложки" - -#: ../../Zotlabs/Widget/Newmember.php:31 -msgid "Find and Connect with others" -msgstr "Найти и вступить в контакт" - -#: ../../Zotlabs/Widget/Newmember.php:33 -msgid "View the directory" -msgstr "Просмотреть каталог" - -#: ../../Zotlabs/Widget/Newmember.php:34 ../../Zotlabs/Module/Go.php:38 -msgid "View friend suggestions" -msgstr "Просмотр рекомендуемых друзей" - -#: ../../Zotlabs/Widget/Newmember.php:35 -msgid "Manage your connections" -msgstr "Управлять вашими контактами" - -#: ../../Zotlabs/Widget/Newmember.php:38 -msgid "Communicate" -msgstr "Связаться" - -#: ../../Zotlabs/Widget/Newmember.php:40 -msgid "View your channel homepage" -msgstr "Домашняя страница канала" - -#: ../../Zotlabs/Widget/Newmember.php:41 -msgid "View your network stream" -msgstr "Просмотреть ваш сетевой поток" - -#: ../../Zotlabs/Widget/Newmember.php:47 -msgid "Documentation" -msgstr "Документация" - -#: ../../Zotlabs/Widget/Newmember.php:58 -msgid "View public stream" -msgstr "Просмотреть публичный поток" - -#: ../../Zotlabs/Access/PermissionRoles.php:283 -msgid "Social Networking" -msgstr "Социальная Сеть" - -#: ../../Zotlabs/Access/PermissionRoles.php:284 -msgid "Social - Federation" -msgstr "Социальная - Федерация" - -#: ../../Zotlabs/Access/PermissionRoles.php:285 -msgid "Social - Mostly Public" -msgstr "Социальная - В основном общественный" - -#: ../../Zotlabs/Access/PermissionRoles.php:286 -msgid "Social - Restricted" -msgstr "Социальная - Ограниченный" - -#: ../../Zotlabs/Access/PermissionRoles.php:287 -msgid "Social - Private" -msgstr "Социальная - Частный" - -#: ../../Zotlabs/Access/PermissionRoles.php:290 -msgid "Community Forum" -msgstr "Форум сообщества" - -#: ../../Zotlabs/Access/PermissionRoles.php:291 -msgid "Forum - Mostly Public" -msgstr "Форум - В основном общественный" - -#: ../../Zotlabs/Access/PermissionRoles.php:292 -msgid "Forum - Restricted" -msgstr "Форум - Ограниченный" - -#: ../../Zotlabs/Access/PermissionRoles.php:293 -msgid "Forum - Private" -msgstr "Форум - Частный" - -#: ../../Zotlabs/Access/PermissionRoles.php:296 -msgid "Feed Republish" -msgstr "Публиковать ленты новостей" - -#: ../../Zotlabs/Access/PermissionRoles.php:297 -msgid "Feed - Mostly Public" -msgstr "Ленты новостей - В основном общественный" - -#: ../../Zotlabs/Access/PermissionRoles.php:298 -msgid "Feed - Restricted" -msgstr "Ленты новостей - Ограниченный" - -#: ../../Zotlabs/Access/PermissionRoles.php:301 -msgid "Special Purpose" -msgstr "Спец. назначение" - -#: ../../Zotlabs/Access/PermissionRoles.php:302 -msgid "Special - Celebrity/Soapbox" -msgstr "Спец. назначение - Знаменитость/Soapbox" - -#: ../../Zotlabs/Access/PermissionRoles.php:303 -msgid "Special - Group Repository" -msgstr "Спец. назначение - Групповой репозиторий" - -#: ../../Zotlabs/Access/PermissionRoles.php:307 -msgid "Custom/Expert Mode" -msgstr "Экспертный режим" - -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can view my channel stream and posts" -msgstr "Может просматривать мою ленту и сообщения" - -#: ../../Zotlabs/Access/Permissions.php:57 -msgid "Can send me their channel stream and posts" -msgstr "Может присылать мне свои потоки и сообщения" - -#: ../../Zotlabs/Access/Permissions.php:58 -msgid "Can view my default channel profile" -msgstr "Может просматривать мой стандартный профиль канала" - -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can view my connections" -msgstr "Может просматривать мои контакты" - -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can view my file storage and photos" -msgstr "Может просматривать мое хранилище файлов" - -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can upload/modify my file storage and photos" -msgstr "Может загружать/изменять мои файлы и фотографии в хранилище" - -#: ../../Zotlabs/Access/Permissions.php:62 -msgid "Can view my channel webpages" -msgstr "Может просматривать мои веб-страницы" - -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can view my wiki pages" -msgstr "Может просматривать мои вики-страницы" - -#: ../../Zotlabs/Access/Permissions.php:64 -msgid "Can create/edit my channel webpages" -msgstr "Может редактировать мои веб-страницы" - -#: ../../Zotlabs/Access/Permissions.php:65 -msgid "Can write to my wiki pages" -msgstr "Может редактировать мои вики-страницы" - -#: ../../Zotlabs/Access/Permissions.php:66 -msgid "Can post on my channel (wall) page" -msgstr "Может публиковать на моей странице канала" - -#: ../../Zotlabs/Access/Permissions.php:67 -msgid "Can comment on or like my posts" -msgstr "Может прокомментировать или отмечать как понравившиеся мои посты" - -#: ../../Zotlabs/Access/Permissions.php:68 -msgid "Can send me private mail messages" -msgstr "Может отправлять мне личные сообщения по эл. почте" - -#: ../../Zotlabs/Access/Permissions.php:69 -msgid "Can like/dislike profiles and profile things" -msgstr "Может комментировать или отмечать как нравится/ненравится мой профиль" - -#: ../../Zotlabs/Access/Permissions.php:70 -msgid "Can forward to all my channel connections via ! mentions in posts" -msgstr "Может пересылать всем подписчикам моего канала используя ! в публикациях" - -#: ../../Zotlabs/Access/Permissions.php:71 -msgid "Can chat with me" -msgstr "Может общаться со мной в чате" - -#: ../../Zotlabs/Access/Permissions.php:72 -msgid "Can source my public posts in derived channels" -msgstr "Может использовать мои публичные сообщения в клонированных лентах сообщений" - -#: ../../Zotlabs/Access/Permissions.php:73 -msgid "Can administer my channel" -msgstr "Может администрировать мой канал" - -#: ../../Zotlabs/Zot/Auth.php:152 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." -msgstr "Удалённая аутентификация заблокирована. Вы вошли на этот сайт локально. Пожалуйста, выйдите и попробуйте ещё раз." - -#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 -msgid "App installed." -msgstr "Приложение установлено." - -#: ../../Zotlabs/Module/Appman.php:49 -msgid "Malformed app." -msgstr "Неработающее приложение." - -#: ../../Zotlabs/Module/Appman.php:130 -msgid "Embed code" -msgstr "Встроить код" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Edit App" -msgstr "Редактировать приложение" - -#: ../../Zotlabs/Module/Appman.php:136 -msgid "Create App" -msgstr "Создать приложение" - -#: ../../Zotlabs/Module/Appman.php:141 -msgid "Name of app" -msgstr "Наименование приложения" - -#: ../../Zotlabs/Module/Appman.php:142 -msgid "Location (URL) of app" -msgstr "Местоположение (URL) приложения" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "Photo icon URL" -msgstr "URL пиктограммы" - -#: ../../Zotlabs/Module/Appman.php:144 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 пикселей - необязательно" - -#: ../../Zotlabs/Module/Appman.php:145 -msgid "Categories (optional, comma separated list)" -msgstr "Категории (необязательно, список через запятую)" - -#: ../../Zotlabs/Module/Appman.php:146 -msgid "Version ID" -msgstr "ID версии" - -#: ../../Zotlabs/Module/Appman.php:147 -msgid "Price of app" -msgstr "Цена приложения" - -#: ../../Zotlabs/Module/Appman.php:148 -msgid "Location (URL) to purchase app" -msgstr "Ссылка (URL) для покупки приложения" - -#: ../../Zotlabs/Module/Acl.php:359 -msgid "network" -msgstr "сеть" - -#: ../../Zotlabs/Module/Cdav.php:785 -msgid "INVALID EVENT DISMISSED!" -msgstr "НЕДЕЙСТВИТЕЛЬНОЕ СОБЫТИЕ ОТКЛОНЕНО!" - -#: ../../Zotlabs/Module/Cdav.php:786 -msgid "Summary: " -msgstr "Резюме:" - -#: ../../Zotlabs/Module/Cdav.php:787 -msgid "Date: " -msgstr "Дата:" - -#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 -msgid "Reason: " -msgstr "Причина:" - -#: ../../Zotlabs/Module/Cdav.php:793 -msgid "INVALID CARD DISMISSED!" -msgstr "НЕДЕЙСТВИТЕЛЬНАЯ КАРТОЧКА ОТКЛОНЕНА!" - -#: ../../Zotlabs/Module/Cdav.php:794 -msgid "Name: " -msgstr "Имя:" - -#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 -msgid "Event title" -msgstr "Наименование события" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 -msgid "Start date and time" -msgstr "Дата и время начала" - -#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 -msgid "Example: YYYY-MM-DD HH:mm" -msgstr "Пример: YYYY-MM-DD HH:mm" - -#: ../../Zotlabs/Module/Cdav.php:870 -msgid "End date and time" -msgstr "Дата и время окончания" - -#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Photos.php:976 -#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Events.php:698 -#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 -msgid "Previous" -msgstr "Предыдущая" - -#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Photos.php:985 -#: ../../Zotlabs/Module/Events.php:690 ../../Zotlabs/Module/Events.php:699 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 -#: ../../Zotlabs/Module/Setup.php:263 -msgid "Next" -msgstr "Следующая" - -#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 -#: ../../Zotlabs/Module/Cal.php:348 -msgid "Today" -msgstr "Сегодня" - -#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 -msgid "Month" -msgstr "Месяц" - -#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 -msgid "Week" -msgstr "Неделя" - -#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 -msgid "Day" -msgstr "День" - -#: ../../Zotlabs/Module/Cdav.php:885 -msgid "List month" -msgstr "Просмотреть месяц" - -#: ../../Zotlabs/Module/Cdav.php:886 -msgid "List week" -msgstr "Просмотреть неделю" - -#: ../../Zotlabs/Module/Cdav.php:887 -msgid "List day" -msgstr "Просмотреть день" - -#: ../../Zotlabs/Module/Cdav.php:894 -msgid "More" -msgstr "Больше" - -#: ../../Zotlabs/Module/Cdav.php:895 -msgid "Less" -msgstr "Меньше" - -#: ../../Zotlabs/Module/Cdav.php:896 -msgid "Select calendar" -msgstr "Выбрать календарь" - -#: ../../Zotlabs/Module/Cdav.php:898 -msgid "Delete all" -msgstr "Удалить всё" - -#: ../../Zotlabs/Module/Cdav.php:900 -msgid "Sorry! Editing of recurrent events is not yet implemented." -msgstr "Простите, но редактирование повторяющихся событий пока не реализовано." - -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 -msgid "Organisation" -msgstr "Организация" - -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 -msgid "Title" -msgstr "Наименование" - -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 -#: ../../Zotlabs/Module/Profiles.php:786 -msgid "Phone" -msgstr "Телефон" - -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Instant messenger" -msgstr "Мессенджер" - -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 -#: ../../Zotlabs/Module/Profiles.php:789 -msgid "Website" -msgstr "Веб-сайт" - -#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Connedit.php:913 -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 -#: ../../Zotlabs/Module/Profiles.php:790 -msgid "Address" -msgstr "Адрес" - -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 -#: ../../Zotlabs/Module/Profiles.php:791 -msgid "Note" -msgstr "Заметка" - -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 -#: ../../Zotlabs/Module/Profiles.php:797 -msgid "Add Field" -msgstr "Добавить поле" - -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 -msgid "P.O. Box" -msgstr "абонентский ящик" - -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 -msgid "Additional" -msgstr "Дополнительно" - -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 -msgid "Street" -msgstr "Улица" - -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 -msgid "Locality" -msgstr "Населённый пункт" - -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 -msgid "Region" -msgstr "Регион" - -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 -msgid "ZIP Code" -msgstr "Индекс" - -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 -#: ../../Zotlabs/Module/Profiles.php:757 -msgid "Country" -msgstr "Страна" - -#: ../../Zotlabs/Module/Cdav.php:1242 -msgid "Default Calendar" -msgstr "Календарь по умолчанию" - -#: ../../Zotlabs/Module/Cdav.php:1252 -msgid "Default Addressbook" -msgstr "Адресная книга по умолчанию" - -#: ../../Zotlabs/Module/Go.php:21 -msgid "This page is available only to site members" -msgstr "Эта страница доступна только для подписчиков сайта" - -#: ../../Zotlabs/Module/Go.php:27 -msgid "Welcome" -msgstr "Добро пожаловать" - -#: ../../Zotlabs/Module/Go.php:29 -msgid "What would you like to do?" -msgstr "Что бы вы хотели сделать?" - -#: ../../Zotlabs/Module/Go.php:31 -msgid "" -"Please bookmark this page if you would like to return to it in the future" -msgstr "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем" - -#: ../../Zotlabs/Module/Go.php:35 -msgid "Upload a profile photo" -msgstr "Загрузить фотографию профиля" - -#: ../../Zotlabs/Module/Go.php:36 -msgid "Upload a cover photo" -msgstr "Загрузить фотографию обложки" - -#: ../../Zotlabs/Module/Go.php:37 -msgid "Edit your default profile" -msgstr "Редактировать ваш профиль по умолчанию" - -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the channel directory" -msgstr "Просмотр каталога каналов" - -#: ../../Zotlabs/Module/Go.php:40 -msgid "View/edit your channel settings" -msgstr "Просмотреть / редактировать настройки вашего канала" - -#: ../../Zotlabs/Module/Go.php:41 -msgid "View the site or project documentation" -msgstr "Просмотр документации сайта / проекта" - -#: ../../Zotlabs/Module/Go.php:42 -msgid "Visit your channel homepage" -msgstr "Посетить страницу вашего канала" - -#: ../../Zotlabs/Module/Go.php:43 -msgid "" -"View your connections and/or add somebody whose address you already know" -msgstr "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете" - -#: ../../Zotlabs/Module/Go.php:44 -msgid "" -"View your personal stream (this may be empty until you add some connections)" -msgstr "Ваш персональный поток (может быть пуст пока вы не добавите контакты)" - -#: ../../Zotlabs/Module/Go.php:52 -msgid "View the public stream. Warning: this content is not moderated" -msgstr "Просмотр публичного потока. Предупреждение: этот контент не модерируется" - -#: ../../Zotlabs/Module/Photos.php:78 -msgid "Page owner information could not be retrieved." -msgstr "Информация о владельце страницы не может быть получена." - -#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 -msgid "Album not found." -msgstr "Альбом не найден." - -#: ../../Zotlabs/Module/Photos.php:103 -msgid "Delete Album" -msgstr "Удалить альбом" - -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1088 -msgid "Delete Photo" -msgstr "Удалить фотографию" - -#: ../../Zotlabs/Module/Photos.php:545 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Directory.php:68 -#: ../../Zotlabs/Module/Display.php:30 -msgid "Public access denied." -msgstr "Публичный доступ запрещен." - -#: ../../Zotlabs/Module/Photos.php:556 -msgid "No photos selected" -msgstr "Никакие фотографии не выбраны" - -#: ../../Zotlabs/Module/Photos.php:605 -msgid "Access to this item is restricted." -msgstr "Доступ к этому элементу ограничен." - -#: ../../Zotlabs/Module/Photos.php:651 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото." - -#: ../../Zotlabs/Module/Photos.php:654 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Вы использовали %1$.2f мегабайт для хранения фото." - -#: ../../Zotlabs/Module/Photos.php:696 -msgid "Upload Photos" -msgstr "Загрузить фотографии" - -#: ../../Zotlabs/Module/Photos.php:700 -msgid "Enter an album name" -msgstr "Введите название альбома" - -#: ../../Zotlabs/Module/Photos.php:701 -msgid "or select an existing album (doubleclick)" -msgstr "или выберите существующий альбом (двойной щелчок)" - -#: ../../Zotlabs/Module/Photos.php:702 -msgid "Create a status post for this upload" -msgstr "Сделать публикацию о статусе для этой загрузки" - -#: ../../Zotlabs/Module/Photos.php:704 -msgid "Description (optional)" -msgstr "Описание (необязательно)" - -#: ../../Zotlabs/Module/Photos.php:790 -msgid "Show Newest First" -msgstr "Показать новые первыми" - -#: ../../Zotlabs/Module/Photos.php:792 -msgid "Show Oldest First" -msgstr "Показать старые первыми" - -#: ../../Zotlabs/Module/Photos.php:849 ../../Zotlabs/Module/Photos.php:1386 -msgid "Add Photos" -msgstr "Добавить фотографии" - -#: ../../Zotlabs/Module/Photos.php:897 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Доступ запрещен. Доступ к этому элементу может быть ограничен." - -#: ../../Zotlabs/Module/Photos.php:899 -msgid "Photo not available" -msgstr "Фотография не доступна" - -#: ../../Zotlabs/Module/Photos.php:957 -msgid "Use as profile photo" -msgstr "Использовать в качестве фотографии профиля" - -#: ../../Zotlabs/Module/Photos.php:958 -msgid "Use as cover photo" -msgstr "Использовать в качестве фотографии обложки" - -#: ../../Zotlabs/Module/Photos.php:965 -msgid "Private Photo" -msgstr "Личная фотография" - -#: ../../Zotlabs/Module/Photos.php:980 -msgid "View Full Size" -msgstr "Посмотреть в полный размер" - -#: ../../Zotlabs/Module/Photos.php:1062 -msgid "Edit photo" -msgstr "Редактировать фотографию" - -#: ../../Zotlabs/Module/Photos.php:1064 -msgid "Rotate CW (right)" -msgstr "Повернуть CW (направо)" - -#: ../../Zotlabs/Module/Photos.php:1065 -msgid "Rotate CCW (left)" -msgstr "Повернуть CCW (налево)" - -#: ../../Zotlabs/Module/Photos.php:1068 -msgid "Move photo to album" -msgstr "Переместить фотографию в альбом" - -#: ../../Zotlabs/Module/Photos.php:1069 -msgid "Enter a new album name" -msgstr "Введите новое название альбома" - -#: ../../Zotlabs/Module/Photos.php:1070 -msgid "or select an existing one (doubleclick)" -msgstr "или выбрать существующую (двойной щелчок)" - -#: ../../Zotlabs/Module/Photos.php:1075 -msgid "Add a Tag" -msgstr "Добавить тег" - -#: ../../Zotlabs/Module/Photos.php:1083 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../Zotlabs/Module/Photos.php:1086 -msgid "Flag as adult in album view" -msgstr "Пометить как альбом \"для взрослых\"" - -#: ../../Zotlabs/Module/Photos.php:1270 -msgid "Photo Tools" -msgstr "Фото-Инструменты" - -#: ../../Zotlabs/Module/Photos.php:1279 -msgid "In This Photo:" -msgstr "На этой фотографии:" - -#: ../../Zotlabs/Module/Photos.php:1284 -msgid "Map" -msgstr "Карта" - -#: ../../Zotlabs/Module/Pubsites.php:27 -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 "Указанные хабы разрешают публичную регистрацию для сети $Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения." - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL сервера" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Тип доступа" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Политика регистрации" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Статистика" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Программное обеспечение" - -#: ../../Zotlabs/Module/Pubsites.php:49 -msgid "Rate" -msgstr "Оценка" - -#: ../../Zotlabs/Module/Pubsites.php:60 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Webpages.php:246 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Wiki.php:204 -msgid "View" -msgstr "Просмотр" - -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Продолжить" - -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Установка премиум канала" - -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Включить ограничения для премиум канала" - -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п." - -#: ../../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 "Этот канал до подключения может требовать дополнительных шагов или подтверждений следующих условий:" - -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Потенциальные соединения будут видеть следующий предварительный текст:" - -#: ../../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 "Продолжая, я подтверждаю что я выполнил все условия представленные на данной странице." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Владельцем канала не было представлено никаких специальных инструкций.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Ограниченный или Премиум канал" - -#: ../../Zotlabs/Module/Poke.php:183 -msgid "Poke somebody" -msgstr "Ткнуть кого-нибудь" - -#: ../../Zotlabs/Module/Poke.php:186 -msgid "Poke/Prod" -msgstr "Толкнуть / подтолкнуть" - -#: ../../Zotlabs/Module/Poke.php:187 -msgid "Poke, prod or do other things to somebody" -msgstr "Толкнуть, подтолкнуть или сделать что-то ещё с кем-то" - -#: ../../Zotlabs/Module/Poke.php:194 -msgid "Recipient" -msgstr "Получатель" - -#: ../../Zotlabs/Module/Poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Выбрать что вы хотите сделать с получателем" - -#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 -msgid "Make this post private" -msgstr "Сделать эту публикацию приватной" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Невозможно найти ваш сервер" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Успешно опубликовано." - -#: ../../Zotlabs/Module/Impel.php:183 -#, php-format -msgid "%s element installed" -msgstr "%s элемент установлен" - -#: ../../Zotlabs/Module/Impel.php:186 -#, php-format -msgid "%s element installation failed" -msgstr "%sустановка элемента неудачна." - -#: ../../Zotlabs/Module/Ping.php:332 -msgid "sent you a private message" -msgstr "отправил вам личное сообщение" - -#: ../../Zotlabs/Module/Ping.php:385 -msgid "added your channel" -msgstr "добавил ваш канал" - -#: ../../Zotlabs/Module/Ping.php:409 -msgid "requires approval" -msgstr "Требуется подтверждение" - -#: ../../Zotlabs/Module/Ping.php:419 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../Zotlabs/Module/Ping.php:437 -msgid "[today]" -msgstr "[сегодня]" - -#: ../../Zotlabs/Module/Ping.php:446 -msgid "posted an event" -msgstr "событие опубликовано" - -#: ../../Zotlabs/Module/Ping.php:479 -msgid "shared a file with you" -msgstr "с вами поделились файлом" - -#: ../../Zotlabs/Module/Ping.php:654 -msgid "Private forum" -msgstr "Частный форум" - -#: ../../Zotlabs/Module/Ping.php:654 -msgid "Public forum" -msgstr "Публичный форум" - -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "Некоторые предложения о том, что делать, если вы здесь новичок " - -#: ../../Zotlabs/Module/Connections.php:55 -#: ../../Zotlabs/Module/Connections.php:112 -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Active" -msgstr "Активен" - -#: ../../Zotlabs/Module/Connections.php:60 -#: ../../Zotlabs/Module/Connections.php:164 -#: ../../Zotlabs/Module/Connections.php:261 -msgid "Blocked" -msgstr "Заблокирован" - -#: ../../Zotlabs/Module/Connections.php:65 -#: ../../Zotlabs/Module/Connections.php:171 -#: ../../Zotlabs/Module/Connections.php:260 -msgid "Ignored" -msgstr "Игнорируется" - -#: ../../Zotlabs/Module/Connections.php:70 -#: ../../Zotlabs/Module/Connections.php:185 -#: ../../Zotlabs/Module/Connections.php:259 -msgid "Hidden" -msgstr "Скрыт" - -#: ../../Zotlabs/Module/Connections.php:75 -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Archived/Unreachable" -msgstr "Заархивировано / недоступно" - -#: ../../Zotlabs/Module/Connections.php:140 -msgid "Active Connections" -msgstr "Активные контакты" - -#: ../../Zotlabs/Module/Connections.php:143 -msgid "Show active connections" -msgstr "Показать активные контакты" - -#: ../../Zotlabs/Module/Connections.php:150 -msgid "Show pending (new) connections" -msgstr "Просмотр (новых) ожидающих контактов" - -#: ../../Zotlabs/Module/Connections.php:167 -msgid "Only show blocked connections" -msgstr "Показать только заблокированные контакты" - -#: ../../Zotlabs/Module/Connections.php:174 -msgid "Only show ignored connections" -msgstr "Показать только проигнорированные контакты" - -#: ../../Zotlabs/Module/Connections.php:181 -msgid "Only show archived/unreachable connections" -msgstr "Показать только заархивированные / недоступные контакты" - -#: ../../Zotlabs/Module/Connections.php:188 -msgid "Only show hidden connections" -msgstr "Показать только скрытые контакты" - -#: ../../Zotlabs/Module/Connections.php:200 -#: ../../Zotlabs/Module/Profperm.php:140 -msgid "All Connections" -msgstr "Все контакты" - -#: ../../Zotlabs/Module/Connections.php:203 -msgid "Show all connections" -msgstr "Просмотр всех контактов" - -#: ../../Zotlabs/Module/Connections.php:257 -msgid "Pending approval" -msgstr "Ожидающие подтверждения" - -#: ../../Zotlabs/Module/Connections.php:258 -msgid "Archived" -msgstr "Зархивирован" - -#: ../../Zotlabs/Module/Connections.php:262 -msgid "Not connected at this location" -msgstr "Не подключено в этом месте" - -#: ../../Zotlabs/Module/Connections.php:279 -#, php-format -msgid "%1$s [%2$s]" -msgstr "" - -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Edit connection" -msgstr "Редактировать контакт" - -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Delete connection" -msgstr "Удалить контакт" - -#: ../../Zotlabs/Module/Connections.php:291 -msgid "Channel address" -msgstr "Адрес канала" - -#: ../../Zotlabs/Module/Connections.php:293 -msgid "Network" -msgstr "Сеть" - -#: ../../Zotlabs/Module/Connections.php:296 -msgid "Call" -msgstr "Вызов" - -#: ../../Zotlabs/Module/Connections.php:298 -msgid "Status" -msgstr "Статус" - -#: ../../Zotlabs/Module/Connections.php:300 -msgid "Connected" -msgstr "Подключено" - -#: ../../Zotlabs/Module/Connections.php:302 -msgid "Approve connection" -msgstr "Утвердить контакт" - -#: ../../Zotlabs/Module/Connections.php:304 -msgid "Ignore connection" -msgstr "Игнорировать контакт" - -#: ../../Zotlabs/Module/Connections.php:305 -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Ignore" -msgstr "Игнорировать" - -#: ../../Zotlabs/Module/Connections.php:306 -msgid "Recent activity" -msgstr "Последние действия" - -#: ../../Zotlabs/Module/Connections.php:336 -msgid "Search your connections" -msgstr "Поиск ваших контактов" - -#: ../../Zotlabs/Module/Connections.php:337 -msgid "Connections search" -msgstr "Поиск контаков" - -#: ../../Zotlabs/Module/Item.php:194 -msgid "Unable to locate original post." -msgstr "Не удалось найти оригинальную публикацию." - -#: ../../Zotlabs/Module/Item.php:477 -msgid "Empty post discarded." -msgstr "Пустая публикация отклонена." - -#: ../../Zotlabs/Module/Item.php:864 -msgid "Duplicate post suppressed." -msgstr "Подавлена дублирующаяся публикация." - -#: ../../Zotlabs/Module/Item.php:1009 -msgid "System error. Post not saved." -msgstr "Системная ошибка. Публикация не сохранена." - -#: ../../Zotlabs/Module/Item.php:1045 -msgid "Your comment is awaiting approval." -msgstr "Ваш комментарий ожидает одобрения." - -#: ../../Zotlabs/Module/Item.php:1162 -msgid "Unable to obtain post information from database." -msgstr "Невозможно получить информацию о публикации из базы данных" - -#: ../../Zotlabs/Module/Item.php:1191 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня." - -#: ../../Zotlabs/Module/Item.php:1198 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Вы достигли вашего ограничения в %1$.0f страниц." - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "События календаря импортированы." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Не найдено событий в календаре." - -#: ../../Zotlabs/Module/Events.php:110 -msgid "Event can not end before it has started." -msgstr "Событие не может завершиться до его начала." - -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." -msgstr "Невозможно создать предварительный просмотр." - -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." -msgstr "Требуются наименование события и время начала." - -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." -msgstr "Событие не найдено." - -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" -msgstr "Редактировать наименование события" - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" -msgstr "Категории (список через запятую)" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" -msgstr "Редактировать категорию" - -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" -msgstr "Категория" - -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" -msgstr "Редактировать дату и время начала" - -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -msgid "Finish date and time are not known or not relevant" -msgstr "Дата и время окончания неизвестны или неприменимы" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Edit finish date and time" -msgstr "Редактировать дату и время окончания" - -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" -msgstr "Дата и время окончания" - -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" -msgstr "Настройте просмотр часовых поясов" - -#: ../../Zotlabs/Module/Events.php:471 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Важно для событий, которые происходят в определённом месте. Не подходит для всеобщих праздников." - -#: ../../Zotlabs/Module/Events.php:473 -msgid "Edit Description" -msgstr "Редактировать описание" - -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" -msgstr "Редактировать местоположение" - -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" -msgstr "Часовой пояс:" - -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" -msgstr "Дополнительные настройки" - -#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 -msgid "l, F j" -msgstr "" - -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" -msgstr "Редактировать событие" - -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" -msgstr "Удалить событие" - -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" -msgstr "календарь" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Edit Event" -msgstr "Редактировать событие" - -#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 -msgid "Create Event" -msgstr "Создать событие" - -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" -msgstr "Событие удалено" - -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" -msgstr "Не удалось удалить событие" - -#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Editlayout.php:128 -msgid "Layout Name" -msgstr "Название шаблона" - -#: ../../Zotlabs/Module/Layouts.php:132 ../../Zotlabs/Module/Editlayout.php:129 -msgid "Layout Description (Optional)" -msgstr "Описание шаблона (необязательно)" - -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" -msgstr "Помощь по языку описания страниц Comanche " - -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" -msgstr "Описание шаблона" - -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 -msgid "Created" -msgstr "Создано" - -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 -msgid "Edited" -msgstr "Отредактировано" - -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" -msgstr "Загрузить PDL файл" - -#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 -msgid "No more system notifications." -msgstr "Нет новых оповещений системы." - -#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 -msgid "System Notifications" -msgstr "Системные оповещения " - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Шаблон обновлен." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 -msgid "Feature disabled." -msgstr "Функция отключена." - -#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 -msgid "Edit System Page Description" -msgstr "Редактировать описание системной страницы" - -#: ../../Zotlabs/Module/Pdledit.php:68 -msgid "(modified)" -msgstr "(изменено)" - -#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" -msgstr "Сбросить" - -#: ../../Zotlabs/Module/Pdledit.php:85 -msgid "Layout not found." -msgstr "Шаблон не найден." - -#: ../../Zotlabs/Module/Pdledit.php:91 -msgid "Module Name:" -msgstr "Имя модуля:" - -#: ../../Zotlabs/Module/Pdledit.php:92 -msgid "Layout Help" -msgstr "Помощь к шаблону" - -#: ../../Zotlabs/Module/Pdledit.php:93 -msgid "Edit another layout" -msgstr "Редактировать другой шаблон" - -#: ../../Zotlabs/Module/Pdledit.php:94 -msgid "System layout" -msgstr "Системный шаблон" - -#: ../../Zotlabs/Module/Mail.php:73 -msgid "Unable to lookup recipient." -msgstr "Не удалось найти получателя." - -#: ../../Zotlabs/Module/Mail.php:80 -msgid "Unable to communicate with requested channel." -msgstr "Не удалось установить связь с запрашиваемым каналом." - -#: ../../Zotlabs/Module/Mail.php:87 -msgid "Cannot verify requested channel." -msgstr "Не удалось установить подлинность требуемого канала." - -#: ../../Zotlabs/Module/Mail.php:105 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Выбранный канал ограничивает частные сообщения. Отправка не удалась." - -#: ../../Zotlabs/Module/Mail.php:160 -msgid "Messages" -msgstr "Сообщения" - -#: ../../Zotlabs/Module/Mail.php:173 -msgid "message" -msgstr "сообщение" - -#: ../../Zotlabs/Module/Mail.php:214 -msgid "Message recalled." -msgstr "Сообщение отозванно." - -#: ../../Zotlabs/Module/Mail.php:227 -msgid "Conversation removed." -msgstr "Беседа удалена." - -#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Истекает YYYY-MM-DD HH:MM" - -#: ../../Zotlabs/Module/Mail.php:270 -msgid "Requested channel is not in this network" -msgstr "Запрашиваемый канал не доступен." - -#: ../../Zotlabs/Module/Mail.php:278 -msgid "Send Private Message" -msgstr "Отправить личное сообщение" - -#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 -msgid "To:" -msgstr "Кому:" - -#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 -msgid "Subject:" -msgstr "Тема:" - -#: ../../Zotlabs/Module/Mail.php:285 ../../Zotlabs/Module/Invite.php:140 -msgid "Your message:" -msgstr "Сообщение:" - -#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 -msgid "Attach file" -msgstr "Прикрепить файл" - -#: ../../Zotlabs/Module/Mail.php:289 -msgid "Send" -msgstr "Отправить" - -#: ../../Zotlabs/Module/Mail.php:393 -msgid "Delete message" -msgstr "Удалить сообщение" - -#: ../../Zotlabs/Module/Mail.php:394 -msgid "Delivery report" -msgstr "Отчёт о доставке" - -#: ../../Zotlabs/Module/Mail.php:395 -msgid "Recall message" -msgstr "Отозвать сообщение" - -#: ../../Zotlabs/Module/Mail.php:397 -msgid "Message has been recalled." -msgstr "Сообщение отозванно" - -#: ../../Zotlabs/Module/Mail.php:414 -msgid "Delete Conversation" -msgstr "Удалить беседу" - -#: ../../Zotlabs/Module/Mail.php:416 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя." - -#: ../../Zotlabs/Module/Mail.php:420 -msgid "Send Reply" -msgstr "Отправить ответ" - -#: ../../Zotlabs/Module/Mail.php:425 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Ваше сообщение для %s (%s):" - -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта." - -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Удалить этот канал" - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "WARNING: " -msgstr "ПРЕДУПРЕЖДЕНИЕ:" - -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Этот канал будет полностью удалён из сети." - -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Это действие необратимо и не может быть отменено!" - -#: ../../Zotlabs/Module/Removeme.php:62 -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Changeaddr.php:79 -msgid "Please enter your password for verification:" -msgstr "Пожалуйста, введите ваш пароль для проверки:" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Удалить этот канал и все его клоны из сети" - -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:622 -msgid "Remove Channel" -msgstr "Удаление канала" - -#: ../../Zotlabs/Module/Hq.php:134 ../../Zotlabs/Module/Channel.php:164 -#: ../../Zotlabs/Module/Pubstream.php:80 ../../Zotlabs/Module/Network.php:204 -#: ../../Zotlabs/Module/Display.php:81 -msgid "Reset form" -msgstr "Очистить форму" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "Welcome to Hubzilla!" -msgstr "Добро пожаловать в Hubzilla!" - -#: ../../Zotlabs/Module/Hq.php:140 -msgid "You have got no unseen posts..." -msgstr "У вас нет видимых публикаций..." - -#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Article_edit.php:17 -#: ../../Zotlabs/Module/Article_edit.php:33 -msgid "Item not found" -msgstr "Элемент не найден" - -#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Block.php:41 -#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Wall_upload.php:31 -#: ../../Zotlabs/Module/Article_edit.php:44 -#: ../../Zotlabs/Module/Chanview.php:96 -msgid "Channel not found." -msgstr "Канал не найден." - -#: ../../Zotlabs/Module/Card_edit.php:128 -msgid "Edit Card" -msgstr "Редактировать карточку" - -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Поиск Xchan" - -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Запрос Xchan начинается с (или webbie):" - -#: ../../Zotlabs/Module/Xchan.php:41 ../../Zotlabs/Module/Mitem.php:134 -#: ../../Zotlabs/Module/Menu.php:231 -msgid "Not found." -msgstr "Не найдено." - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Нет предложений. Если это новый сайт, повторите попытку через 24 часа." - -#: ../../Zotlabs/Module/Channel.php:50 ../../Zotlabs/Module/Hcard.php:37 -#: ../../Zotlabs/Module/Profile.php:45 -msgid "Posts and comments" -msgstr "Публикации и комментарии" - -#: ../../Zotlabs/Module/Channel.php:57 ../../Zotlabs/Module/Hcard.php:44 -#: ../../Zotlabs/Module/Profile.php:52 -msgid "Only posts" -msgstr "Только публикации" - -#: ../../Zotlabs/Module/Channel.php:112 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Недостаточно прав. Запрос перенаправлен на страницу профиля." - -#: ../../Zotlabs/Module/Channel.php:129 ../../Zotlabs/Module/Network.php:174 -msgid "Search Results For:" -msgstr "Результаты поиска для:" - -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" -msgstr "Поиск документации" - -#: ../../Zotlabs/Module/Help.php:81 ../../Zotlabs/Module/Group.php:126 -msgid "Members" -msgstr "Участники" - -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" -msgstr "Администраторы" - -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" -msgstr "Разработчики" - -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" -msgstr "Руководства" - -#: ../../Zotlabs/Module/Help.php:95 -msgid "$Projectname Documentation" -msgstr "$Projectname Документация" - -#: ../../Zotlabs/Module/Help.php:96 -msgid "Contents" -msgstr "Содержимое" - -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Этот сайт не является сервером каталога" - -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" -msgstr "Экспорт канала" - -#: ../../Zotlabs/Module/Uexport.php:59 -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 "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер." - -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" -msgstr "Экспортировать содержимое" - -#: ../../Zotlabs/Module/Uexport.php:61 -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 "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка." - -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export your posts from a given year." -msgstr "Экспортировать ваши публикации за данный год." - -#: ../../Zotlabs/Module/Uexport.php:65 -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 "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат." - -#: ../../Zotlabs/Module/Uexport.php:66 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Для выбора всех публикаций заданного года, например текущего, посетите %2$s" - -#: ../../Zotlabs/Module/Uexport.php:67 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %2$s" - -#: ../../Zotlabs/Module/Uexport.php:68 -#, 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 "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)." - -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" -msgstr "Нет на месте" - -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" -msgstr "В сети" - -#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 -msgid "Invalid item." -msgstr "Недействительный элемент." - -#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 -msgid "Authorize application connection" -msgstr "Авторизовать подключение приложения" - -#: ../../Zotlabs/Module/Api.php:75 -msgid "Return to your app and insert this Security Code:" -msgstr "Вернитесь к своему приложению и вставьте этот код безопасности:" - -#: ../../Zotlabs/Module/Api.php:85 -msgid "Please login to continue." -msgstr "Пожалуйста, войдите, чтобы продолжить." - -#: ../../Zotlabs/Module/Api.php:97 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?" - -#: ../../Zotlabs/Module/Viewsrc.php:43 -msgid "item" -msgstr "пункт" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Оценок нет" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Оценкa:" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Веб-сайт:" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Описание:" - -#: ../../Zotlabs/Module/Sources.php:38 -msgid "Failed to create source. No channel selected." -msgstr "Не удалось создать источник. Канал не выбран." - -#: ../../Zotlabs/Module/Sources.php:54 -msgid "Source created." -msgstr "Источник создан." - -#: ../../Zotlabs/Module/Sources.php:67 -msgid "Source updated." -msgstr "Источник обновлен." - -#: ../../Zotlabs/Module/Sources.php:93 -msgid "*" -msgstr "" - -#: ../../Zotlabs/Module/Sources.php:100 -msgid "Manage remote sources of content for your channel." -msgstr "Управлять удалённым источниками содержимого для вашего канала" - -#: ../../Zotlabs/Module/Sources.php:101 ../../Zotlabs/Module/Sources.php:111 -msgid "New Source" -msgstr "Новый источник" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:146 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками." - -#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 -msgid "Only import content with these words (one per line)" -msgstr "Импортировать содержимое только с этим текстом (построчно)" - -#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 -msgid "Leave blank to import all public content" -msgstr "Оставьте пустым для импорта всего общедоступного содержимого" - -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:153 -msgid "Channel Name" -msgstr "Название канала" - -#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)" - -#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -msgid "Optional" -msgstr "Необязательно" - -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -msgid "Resend posts with this channel as author" -msgstr "Отправить публикации в этот канал повторно как автор" - -#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 -msgid "Copyrights may apply" -msgstr "Могут применяться авторские права" - -#: ../../Zotlabs/Module/Sources.php:136 ../../Zotlabs/Module/Sources.php:166 -msgid "Source not found." -msgstr "Источник не найден." - -#: ../../Zotlabs/Module/Sources.php:143 -msgid "Edit Source" -msgstr "Редактировать источник" - -#: ../../Zotlabs/Module/Sources.php:144 -msgid "Delete Source" -msgstr "Удалить источник" - -#: ../../Zotlabs/Module/Sources.php:174 -msgid "Source removed" -msgstr "Источник удален" - -#: ../../Zotlabs/Module/Sources.php:176 -msgid "Unable to remove source." -msgstr "Невозможно удалить источник." - -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "About this site" -msgstr "Об этом сайте" - -#: ../../Zotlabs/Module/Siteinfo.php:22 -msgid "Site Name" -msgstr "Название сайта" - -#: ../../Zotlabs/Module/Siteinfo.php:24 ../../Zotlabs/Module/Admin/Site.php:325 -msgid "Site Information" -msgstr "Информация о сайте" - -#: ../../Zotlabs/Module/Siteinfo.php:26 -msgid "Administrator" -msgstr "Администратор" - -#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:241 -msgid "Terms of Service" -msgstr "Условия предоставления услуг" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "Software and Project information" -msgstr "Информация о программном обеспечении и проекте" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "This site is powered by $Projectname" -msgstr "Этот сайт работает на $Projectname" - -#: ../../Zotlabs/Module/Siteinfo.php:31 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Additional federated transport protocols:" -msgstr "Дополнительные федеративные транспортные протоколы:" - -#: ../../Zotlabs/Module/Siteinfo.php:36 -#, php-format -msgid "Version %s" -msgstr "Версия %s" - -#: ../../Zotlabs/Module/Siteinfo.php:37 -msgid "Project homepage" -msgstr "Домашняя страница проекта" - -#: ../../Zotlabs/Module/Siteinfo.php:38 -msgid "Developer homepage" -msgstr "Домашняя страница разработчика" - -#: ../../Zotlabs/Module/Profile_photo.php:66 -#: ../../Zotlabs/Module/Cover_photo.php:57 -msgid "Image uploaded but image cropping failed." -msgstr "Изображение загружено но обрезка не удалась." - -#: ../../Zotlabs/Module/Profile_photo.php:142 -#: ../../Zotlabs/Module/Cover_photo.php:191 -msgid "Image resize failed." -msgstr "Не удалось изменить размер изображения." - -#: ../../Zotlabs/Module/Profile_photo.php:260 -#: ../../Zotlabs/Module/Cover_photo.php:229 -msgid "Image upload failed." -msgstr "Загрузка изображения не удалась." - -#: ../../Zotlabs/Module/Profile_photo.php:279 -#: ../../Zotlabs/Module/Cover_photo.php:246 -msgid "Unable to process image." -msgstr "Невозможно обработать изображение." - -#: ../../Zotlabs/Module/Profile_photo.php:343 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Cover_photo.php:339 -#: ../../Zotlabs/Module/Cover_photo.php:354 -msgid "Photo not available." -msgstr "Фотография недоступна." - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your default profile photo is visible to anybody on the internet. Profile " -"photos for alternate profiles will inherit the permissions of the profile" -msgstr "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля" - -#: ../../Zotlabs/Module/Profile_photo.php:454 -msgid "" -"Your profile photo is visible to anybody on the internet and may be " -"distributed to other websites." -msgstr "Фотография вашего профиля видна всем в Интернете и может быть отправлена на другие сайты." - -#: ../../Zotlabs/Module/Profile_photo.php:456 -#: ../../Zotlabs/Module/Cover_photo.php:392 -msgid "Upload File:" -msgstr "Загрузить файл:" - -#: ../../Zotlabs/Module/Profile_photo.php:457 -#: ../../Zotlabs/Module/Cover_photo.php:393 -msgid "Select a profile:" -msgstr "Выбрать профиль:" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Use Photo for Profile" -msgstr "Использовать фотографию для профиля" - -#: ../../Zotlabs/Module/Profile_photo.php:458 -msgid "Change Profile Photo" -msgstr "Изменить фотографию профиля" - -#: ../../Zotlabs/Module/Profile_photo.php:459 -msgid "Use" -msgstr "Использовать" - -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Profile_photo.php:464 -#: ../../Zotlabs/Module/Cover_photo.php:397 -#: ../../Zotlabs/Module/Cover_photo.php:398 -msgid "Use a photo from your albums" -msgstr "Использовать фотографию из ваших альбомов" - -#: ../../Zotlabs/Module/Profile_photo.php:469 -#: ../../Zotlabs/Module/Cover_photo.php:403 ../../Zotlabs/Module/Wiki.php:383 -msgid "Choose a different album" -msgstr "Выбрать другой альбом" - -#: ../../Zotlabs/Module/Profile_photo.php:474 -#: ../../Zotlabs/Module/Cover_photo.php:409 -msgid "Select existing photo" -msgstr "Выбрать существующую фотографию" - -#: ../../Zotlabs/Module/Profile_photo.php:493 -#: ../../Zotlabs/Module/Cover_photo.php:426 -msgid "Crop Image" -msgstr "Обрезать изображение" - -#: ../../Zotlabs/Module/Profile_photo.php:494 -#: ../../Zotlabs/Module/Cover_photo.php:427 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Пожалуйста настройте обрезку изображения для оптимального просмотра." - -#: ../../Zotlabs/Module/Profile_photo.php:496 -#: ../../Zotlabs/Module/Cover_photo.php:429 -msgid "Done Editing" -msgstr "Закончить редактирование" - -#: ../../Zotlabs/Module/Subthread.php:142 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s отслеживает %2$s's %3$s" - -#: ../../Zotlabs/Module/Subthread.php:144 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s прекратил отслеживать %2$s's %3$s" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Канала нет." - -#: ../../Zotlabs/Module/Common.php:45 -msgid "No connections in common." -msgstr "Общих контактов нет." - -#: ../../Zotlabs/Module/Common.php:65 -msgid "View Common Connections" -msgstr "Просмотр общий контактов" - -#: ../../Zotlabs/Module/Filestorage.php:79 -msgid "Permission Denied." -msgstr "Доступ запрещен." - -#: ../../Zotlabs/Module/Filestorage.php:112 -msgid "File not found." -msgstr "Файл не найден." - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Edit file permissions" -msgstr "Редактировать разрешения файла" - -#: ../../Zotlabs/Module/Filestorage.php:177 -msgid "Set/edit permissions" -msgstr "Редактировать разрешения" - -#: ../../Zotlabs/Module/Filestorage.php:178 -msgid "Include all files and sub folders" -msgstr "Включить все файлы и подкаталоги" - -#: ../../Zotlabs/Module/Filestorage.php:179 -msgid "Return to file list" -msgstr "Вернутся к списку файлов" - -#: ../../Zotlabs/Module/Filestorage.php:181 -msgid "Copy/paste this code to attach file to a post" -msgstr "Копировать / вставить этот код для прикрепления файла к публикации" - -#: ../../Zotlabs/Module/Filestorage.php:182 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Копировать / вставить эту URL для ссылки на файл со страницы" - -#: ../../Zotlabs/Module/Filestorage.php:184 -msgid "Share this file" -msgstr "Поделиться этим файлом" - -#: ../../Zotlabs/Module/Filestorage.php:185 -msgid "Show URL to this file" -msgstr "Показать URL этого файла" - -#: ../../Zotlabs/Module/Filestorage.php:186 -#: ../../Zotlabs/Storage/Browser.php:405 -msgid "Show in your contacts shared folder" -msgstr "Показать общий каталог в ваших контактах" - -#: ../../Zotlabs/Module/Tagger.php:48 -msgid "Post not found." -msgstr "Публикация не найдена" - -#: ../../Zotlabs/Module/Tagger.php:119 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s отметил тегом %2$s %3$s с %4$s" - -#: ../../Zotlabs/Module/Page.php:173 -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 "" - -#: ../../Zotlabs/Module/Editblock.php:113 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Название блока" - -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" -msgstr "Редактировать блок" - -#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 -msgid "Item is not editable" -msgstr "Элемент нельзя редактировать" - -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 -msgid "Edit post" -msgstr "Редактировать сообщение" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Тег удалён" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Удалить тег элемента" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Выбрать тег для удаления:" - -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Удалить этот аккаунт" - -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Этот аккаунт и все его каналы будут полностью удалены из сети." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Удалить этот аккаунт, все его каналы и их клоны из сети." - -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети" - -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:120 -msgid "Remove Account" -msgstr "Удалить аккаунт" - -#: ../../Zotlabs/Module/Admin.php:97 -msgid "Blocked accounts" -msgstr "Заблокированные аккаунты" - -#: ../../Zotlabs/Module/Admin.php:98 -msgid "Expired accounts" -msgstr "Просроченные аккаунты" - -#: ../../Zotlabs/Module/Admin.php:99 -msgid "Expiring accounts" -msgstr "Близкие к просрочке аккаунты" - -#: ../../Zotlabs/Module/Admin.php:115 ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Основной" - -#: ../../Zotlabs/Module/Admin.php:116 -msgid "Clones" -msgstr "Клоны" - -#: ../../Zotlabs/Module/Admin.php:122 -msgid "Message queues" -msgstr "Очередь сообщений" - -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" -msgstr "Ваше программное обеспечение должно быть обновлено" - -#: ../../Zotlabs/Module/Admin.php:140 ../../Zotlabs/Module/Admin/Addons.php:341 -#: ../../Zotlabs/Module/Admin/Addons.php:436 -#: ../../Zotlabs/Module/Admin/Site.php:307 -#: ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Security.php:92 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -msgid "Administration" -msgstr "Администрирование" - -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Summary" -msgstr "Резюме" - -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Registered accounts" -msgstr "Зарегистрированные аккаунты" - -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Pending registrations" -msgstr "Ждут утверждения" - -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Registered channels" -msgstr "Зарегистрированные каналы" - -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Active addons" -msgstr "Активные расширения" - -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Version" -msgstr "Версия системы" - -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Repository version (master)" -msgstr "Версия репозитория (master)" - -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (dev)" -msgstr "Версия репозитория (dev)" - -#: ../../Zotlabs/Module/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 -msgid "Could not access contact record." -msgstr "Не удалось получить доступ к записи контакта." - -#: ../../Zotlabs/Module/Connedit.php:109 -msgid "Could not locate selected profile." -msgstr "Не удалось обнаружить выбранный профиль." - -#: ../../Zotlabs/Module/Connedit.php:246 -msgid "Connection updated." -msgstr "Контакты обновлены." - -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Failed to update connection record." -msgstr "Не удалось обновить запись контакта." - -#: ../../Zotlabs/Module/Connedit.php:302 -msgid "is now connected to" -msgstr "теперь подключён к" - -#: ../../Zotlabs/Module/Connedit.php:427 -msgid "Could not access address book record." -msgstr "Не удалось получить доступ к записи адресной книги." - -#: ../../Zotlabs/Module/Connedit.php:475 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Обновление невозможно - в настоящее время канал недоступен." - -#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 -#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 -#: ../../Zotlabs/Module/Connedit.php:530 -msgid "Unable to set address book parameters." -msgstr "Не удалось получить доступ к параметрам адресной книги." - -#: ../../Zotlabs/Module/Connedit.php:554 -msgid "Connection has been removed." -msgstr "Контакт был удалён." - -#: ../../Zotlabs/Module/Connedit.php:597 -#, php-format -msgid "View %s's profile" -msgstr "Просмотр %s профиля" - -#: ../../Zotlabs/Module/Connedit.php:601 -msgid "Refresh Permissions" -msgstr "Обновить разрешения" - -#: ../../Zotlabs/Module/Connedit.php:604 -msgid "Fetch updated permissions" -msgstr "Получить обновлённые разрешения" - -#: ../../Zotlabs/Module/Connedit.php:608 -msgid "Refresh Photo" -msgstr "Обновить фотографию" - -#: ../../Zotlabs/Module/Connedit.php:611 -msgid "Fetch updated photo" -msgstr "Получить обновлённую фотографию" - -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "View recent posts and comments" -msgstr "Просмотреть последние публикации и комментарии" - -#: ../../Zotlabs/Module/Connedit.php:622 -#: ../../Zotlabs/Module/Admin/Accounts.php:177 -msgid "Unblock" -msgstr "Разблокировать" - -#: ../../Zotlabs/Module/Connedit.php:622 -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -msgid "Block" -msgstr "Блокировать" - -#: ../../Zotlabs/Module/Connedit.php:625 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Блокировать (или разблокировать) связи с этим контактом" - -#: ../../Zotlabs/Module/Connedit.php:626 -msgid "This connection is blocked!" -msgstr "Этот контакт заблокирован!" - -#: ../../Zotlabs/Module/Connedit.php:630 -msgid "Unignore" -msgstr "Не игнорировать" - -#: ../../Zotlabs/Module/Connedit.php:633 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Игнорировать (или не игнорировать) все связи для этого контакта" - -#: ../../Zotlabs/Module/Connedit.php:634 -msgid "This connection is ignored!" -msgstr "Этот контакт игнорируется!" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Unarchive" -msgstr "Разархивировать" - -#: ../../Zotlabs/Module/Connedit.php:638 -msgid "Archive" -msgstr "Заархивировать" - -#: ../../Zotlabs/Module/Connedit.php:641 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Заархивировать (или разархивировать) этот контакт - пометить канал отключённым но сохранить содержимое" - -#: ../../Zotlabs/Module/Connedit.php:642 -msgid "This connection is archived!" -msgstr "Этот контакт заархивирован!" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Unhide" -msgstr "Показать" - -#: ../../Zotlabs/Module/Connedit.php:646 -msgid "Hide" -msgstr "Скрыть" - -#: ../../Zotlabs/Module/Connedit.php:649 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Скрыть или показать этот контакт от / для остальных" - -#: ../../Zotlabs/Module/Connedit.php:650 -msgid "This connection is hidden!" -msgstr "Этот контакт скрыт!" - -#: ../../Zotlabs/Module/Connedit.php:657 -msgid "Delete this connection" -msgstr "Удалить этот контакт" - -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Fetch Vcard" -msgstr "Получить vCard" - -#: ../../Zotlabs/Module/Connedit.php:668 -msgid "Fetch electronic calling card for this connection" -msgstr "Получить электронную телефонную карточку для этого контакта" - -#: ../../Zotlabs/Module/Connedit.php:679 -msgid "Open Individual Permissions section by default" -msgstr "Открывать раздел \"Индивидуальные разрешения\" по умолчанию" - -#: ../../Zotlabs/Module/Connedit.php:702 -msgid "Affinity" -msgstr "Сходство" - -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "Open Set Affinity section by default" -msgstr "Открыть секцию установления сходства по умолчанию" - -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "Filter" -msgstr "Фильтр" - -#: ../../Zotlabs/Module/Connedit.php:742 -msgid "Open Custom Filter section by default" -msgstr "Открывать секцию \"Настраиваемый фильтр\" по умолчанию" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Approve this connection" -msgstr "Утвердить этот контакт" - -#: ../../Zotlabs/Module/Connedit.php:779 -msgid "Accept connection to allow communication" -msgstr "Принять контакт чтобы разрешить связь" - -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Set Affinity" -msgstr "Установить сходство" - -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Set Profile" -msgstr "Установить профиль" - -#: ../../Zotlabs/Module/Connedit.php:790 -msgid "Set Affinity & Profile" -msgstr "Установить сходство и профиль" - -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This connection is unreachable from this location." -msgstr "Этот контакт недоступен для данного местоположения" - -#: ../../Zotlabs/Module/Connedit.php:839 -msgid "This connection may be unreachable from other channel locations." -msgstr "Этот контакт может быть недоступен из других мест размещения канала" - -#: ../../Zotlabs/Module/Connedit.php:841 -msgid "Location independence is not supported by their network." -msgstr "Независимое местоположение не поддерживается их сетью." - -#: ../../Zotlabs/Module/Connedit.php:847 -msgid "" -"This connection is unreachable from this location. Location independence is " -"not supported by their network." -msgstr "Этот контакт недоступен из данного местоположения. Независимое местоположение не поддерживается их сетью." - -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 -msgid "Apply these permissions automatically" -msgstr "Применить эти разрешения автоматически" - -#: ../../Zotlabs/Module/Connedit.php:851 -msgid "Connection requests will be approved without your interaction" -msgstr "Запросы контактов будут одобрены без вашего участия" - -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 -msgid "Permission role" -msgstr "Роль разрешения" - -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 -msgid "Add permission role" -msgstr "Добавить роль разрешения" - -#: ../../Zotlabs/Module/Connedit.php:860 -msgid "This connection's primary address is" -msgstr "Главный адрес это контакта" - -#: ../../Zotlabs/Module/Connedit.php:861 -msgid "Available locations:" -msgstr "Доступные расположения:" - -#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям." - -#: ../../Zotlabs/Module/Connedit.php:867 -msgid "Connection Tools" -msgstr "Инструменты контактов" - -#: ../../Zotlabs/Module/Connedit.php:869 -msgid "Slide to adjust your degree of friendship" -msgstr "Прокрутить для настройки степени дружбы" - -#: ../../Zotlabs/Module/Connedit.php:871 -msgid "Slide to adjust your rating" -msgstr "Прокрутить для настройки оценки" - -#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 -msgid "Optionally explain your rating" -msgstr "Объясните свою оценку (не обязательно)" - -#: ../../Zotlabs/Module/Connedit.php:874 -msgid "Custom Filter" -msgstr "Настраиваемый фильтр" - -#: ../../Zotlabs/Module/Connedit.php:875 -msgid "Only import posts with this text" -msgstr "Импортировать публикации только с этим текстом" - -#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 -#: ../../Zotlabs/Module/Admin/Site.php:347 -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "слова по одному в строку, #тег, /шаблон/ или lang=xxl; оставьте пустым для импорта всех публикаций" - -#: ../../Zotlabs/Module/Connedit.php:876 -msgid "Do not import posts with this text" -msgstr "Не импортировать публикации с этим текстом" - -#: ../../Zotlabs/Module/Connedit.php:878 -msgid "This information is public!" -msgstr "Эта информация общедоступна!" - -#: ../../Zotlabs/Module/Connedit.php:883 -msgid "Connection Pending Approval" -msgstr "Ожидающие подтверждения контактов" - -#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -msgid "inherited" -msgstr "наследуется" - -#: ../../Zotlabs/Module/Connedit.php:888 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Пожалуйста, выберите профиль который вы хотит показывать в %s при безопасном просмотре." - -#: ../../Zotlabs/Module/Connedit.php:890 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" -msgstr "Их настройки" - -#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 -#: ../../Zotlabs/Module/Settings/Permcats.php:108 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "My Settings" -msgstr "Мои настройки" - -#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 -#: ../../Zotlabs/Module/Settings/Permcats.php:113 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -msgid "Individual Permissions" -msgstr "Индивидуальные разрешения" - -#: ../../Zotlabs/Module/Connedit.php:894 -#: ../../Zotlabs/Module/Settings/Permcats.php:114 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -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:895 -msgid "" -"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." -msgstr "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек." - -#: ../../Zotlabs/Module/Connedit.php:896 -msgid "Last update:" -msgstr "Последнее обновление:" - -#: ../../Zotlabs/Module/Connedit.php:904 -msgid "Details" -msgstr "Сведения" - -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import Webpage Elements" -msgstr "Импортировать части веб-страницы" - -#: ../../Zotlabs/Module/Webpages.php:55 -msgid "Import selected" -msgstr "Импортировать выбранное" - -#: ../../Zotlabs/Module/Webpages.php:78 -msgid "Export Webpage Elements" -msgstr "Экспортировать часть веб-страницы" - -#: ../../Zotlabs/Module/Webpages.php:79 -msgid "Export selected" -msgstr "Экспортировать выбранное" - -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Actions" -msgstr "Действия" - -#: ../../Zotlabs/Module/Webpages.php:249 -msgid "Page Link" -msgstr "Ссылка страницы" - -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Заголовок страницы" - -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Неверный тип файла." - -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Ошибка открытия ZIP файла" - -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "Неверный путь к каталогу." - -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "Не обнаружено частей веб-страницы." - -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Импорт завершен." - -#: ../../Zotlabs/Module/Editwebpage.php:139 -msgid "Page link" -msgstr "Ссылка страницы" - -#: ../../Zotlabs/Module/Editwebpage.php:166 -msgid "Edit Webpage" -msgstr "Редактировать веб-страницу" - -#: ../../Zotlabs/Module/Editlayout.php:137 -msgid "Edit Layout" -msgstr "Редактировать шаблон" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Для доступа к этому серверу каталогов требуется токен" - -#: ../../Zotlabs/Module/Moderate.php:65 -msgid "Comment approved" -msgstr "Комментарий одобрен" - -#: ../../Zotlabs/Module/Moderate.php:69 -msgid "Comment deleted" -msgstr "Комментарий удалён" - -#: ../../Zotlabs/Module/Articles.php:95 -msgid "Add Article" -msgstr "Добавить статью" - -#: ../../Zotlabs/Module/Bookmarks.php:56 -msgid "Bookmark added" -msgstr "Закладка добавлена" - -#: ../../Zotlabs/Module/Bookmarks.php:79 -msgid "My Bookmarks" -msgstr "Мои закладки" - -#: ../../Zotlabs/Module/Bookmarks.php:90 -msgid "My Connections Bookmarks" -msgstr "Закладки моих контактов" - -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Files: shared with me" -msgstr "Файлы: поделились со мной" - -#: ../../Zotlabs/Module/Sharedwithme.php:106 -msgid "NEW" -msgstr "НОВОЕ" - -#: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:288 -msgid "Last Modified" -msgstr "Последнее изменение" - -#: ../../Zotlabs/Module/Sharedwithme.php:109 -msgid "Remove all files" -msgstr "Удалить все файлы" - -#: ../../Zotlabs/Module/Sharedwithme.php:110 -msgid "Remove this file" -msgstr "Удалить этот файл" - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Выбрать каталог для закладок" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Сохранить закладку" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL закладки" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "или введите новое имя каталога закладок" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Доступ запрещен." - -#: ../../Zotlabs/Module/Authorize.php:17 -msgid "Unknown App" -msgstr "Неизвестное приложение" - -#: ../../Zotlabs/Module/Authorize.php:22 -msgid "Authorize" -msgstr "Авторизовать" - -#: ../../Zotlabs/Module/Authorize.php:23 -#, php-format -msgid "Do you authorize the app %s to access your channel data?" -msgstr "Авторизуете ли вы приложение %s для доступа к данным вашего канала?" - -#: ../../Zotlabs/Module/Authorize.php:25 -msgid "Allow" -msgstr "Разрешить" - -#: ../../Zotlabs/Module/Authorize.php:26 -#: ../../Zotlabs/Module/Admin/Accounts.php:174 -msgid "Deny" -msgstr "Запретить" - -#: ../../Zotlabs/Module/Search.php:230 -#, php-format -msgid "Items tagged with: %s" -msgstr "Объекты помечены как: %s" - -#: ../../Zotlabs/Module/Search.php:232 -#, php-format -msgid "Search results for: %s" -msgstr "Результаты поиска для: %s" - -#: ../../Zotlabs/Module/Setup.php:170 -msgid "$Projectname Server - Setup" -msgstr "$Projectname сервер - Установка" - -#: ../../Zotlabs/Module/Setup.php:174 -msgid "Could not connect to database." -msgstr "Не удалось подключиться к серверу баз данных." - -#: ../../Zotlabs/Module/Setup.php:178 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Не удалось подключиться к указанному URL. Вероятно проблема с SSL сертификатом или DNS." - -#: ../../Zotlabs/Module/Setup.php:185 -msgid "Could not create table." -msgstr "Не удалось создать таблицу." - -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Your site database has been installed." -msgstr "Ваша база данных установлена." - -#: ../../Zotlabs/Module/Setup.php:197 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Вам может понадобится импортировать файл \"install/schema_xxx.sql\" вручную используя клиент базы данных." - -#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:749 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"." - -#: ../../Zotlabs/Module/Setup.php:259 -msgid "System check" -msgstr "Проверка системы" - -#: ../../Zotlabs/Module/Setup.php:264 -msgid "Check again" -msgstr "Перепроверить" - -#: ../../Zotlabs/Module/Setup.php:286 -msgid "Database connection" -msgstr "Подключение к базе данных" - -#: ../../Zotlabs/Module/Setup.php:287 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Для установки $Projectname необходимо знать как подключиться к ваше базе данных." - -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Пожалуйста, свяжитесь с вашим хостинг провайдером или администрацией сайта если у вас есть вопросы об этих настройках." - -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Указанная ниже база данных должна существовать. Если это не так, пожалуйста, создайте её перед тем, как продолжить." - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Database Server Name" -msgstr "Имя сервера баз данных" - -#: ../../Zotlabs/Module/Setup.php:293 -msgid "Default is 127.0.0.1" -msgstr "По умолчанию 127.0.0.1" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Port" -msgstr "Порт сервера баз данных" - -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Communication port number - use 0 for default" -msgstr "Порт коммуникации - используйте 0 по умолчанию" - -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Login Name" -msgstr "Имя для подключения к базе данных" - -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Password" -msgstr "Пароль для подключения к базе данных" - -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Name" -msgstr "Имя базы данных" - -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Type" -msgstr "Тип базы данных" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "Site administrator email address" -msgstr "Адрес электронной почты администратора сайта" - -#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Ваш адрес электронной почты должен соответствовать этому для использования веб-панели администратора." - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Website URL" -msgstr "URL веб-сайта" - -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 -msgid "Please use SSL (https) URL if available." -msgstr "Пожалуйста, используйте SSL (https) URL если возможно." - -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 -msgid "Please select a default timezone for your website" -msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" - -#: ../../Zotlabs/Module/Setup.php:330 -msgid "Site settings" -msgstr "Настройки сайта" - -#: ../../Zotlabs/Module/Setup.php:384 -msgid "PHP version 5.5 or greater is required." -msgstr "Требуется PHP версии 5.5 или выше" - -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version" -msgstr "Версия PHP" - -#: ../../Zotlabs/Module/Setup.php:401 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Не удалось найти консольную версию PHP в путях переменной PATH веб-сервера." - -#: ../../Zotlabs/Module/Setup.php:402 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. " - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "PHP executable path" -msgstr "Пусть к исполняемому модулю PHP" - -#: ../../Zotlabs/Module/Setup.php:406 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки." - -#: ../../Zotlabs/Module/Setup.php:411 -msgid "Command line PHP" -msgstr "Командная строка PHP" - -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." -msgstr "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена." - -#: ../../Zotlabs/Module/Setup.php:424 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "В консольной версии PHP в вашей системе отключена опция \"register_argc_argv\"." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "This is required for message delivery to work." -msgstr "Это необходимо для функционирования доставки сообщений." - -#: ../../Zotlabs/Module/Setup.php:428 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:446 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Максимально разрешённый общий размер загрузок установлен в %s. Максимальный размер одной загрузки установлен в %s. Вам разрешено загружать до %d файлов за один приём." - -#: ../../Zotlabs/Module/Setup.php:451 -msgid "You can adjust these settings in the server php.ini file." -msgstr "Вы можете изменить эти настройки в файле php.ini на сервере." - -#: ../../Zotlabs/Module/Setup.php:453 -msgid "PHP upload limits" -msgstr "Максимальный размер загрузки в PHP" - -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования" - -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." -msgstr "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../Zotlabs/Module/Setup.php:480 -msgid "Generate encryption keys" -msgstr "Генерация ключей шифрования" - -#: ../../Zotlabs/Module/Setup.php:497 -msgid "libCurl PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:498 -msgid "GD graphics PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:499 -msgid "OpenSSL PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:500 -msgid "PDO database PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:501 -msgid "mb_string PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:502 -msgid "xml PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:503 -msgid "zip PHP module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен." - -#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:527 -msgid "Error: libCURL PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:531 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: openssl PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: PDO database PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:543 -msgid "Error: mb_string PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:547 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:551 -msgid "Error: zip PHP module required but not installed." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 -msgid ".htconfig.php is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:575 -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 "" - -#: ../../Zotlabs/Module/Setup.php:576 -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 "" - -#: ../../Zotlabs/Module/Setup.php:577 -msgid "Please see install/INSTALL.txt for additional information." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:593 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:594 -#, 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:595 ../../Zotlabs/Module/Setup.php:616 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:596 -#, 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 "" - -#: ../../Zotlabs/Module/Setup.php:599 -#, php-format -msgid "%s is writable" -msgstr "%s доступен для записи" - -#: ../../Zotlabs/Module/Setup.php:615 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" -msgstr "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения." - -#: ../../Zotlabs/Module/Setup.php:619 -msgid "store is writable" -msgstr "хранилище доступно для записи" - -#: ../../Zotlabs/Module/Setup.php:651 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:652 -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 "" - -#: ../../Zotlabs/Module/Setup.php:653 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе." - -#: ../../Zotlabs/Module/Setup.php:654 -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 "" - -#: ../../Zotlabs/Module/Setup.php:655 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:656 -msgid "" -"Providers are available that issue free certificates which are browser-valid." -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:658 -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:660 -msgid "SSL certificate validation" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:666 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:669 -msgid "Url rewrite is working" -msgstr "Перезапись URL работает" - -#: ../../Zotlabs/Module/Setup.php:683 -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 "" - -#: ../../Zotlabs/Module/Setup.php:747 -msgid "

What next?

" -msgstr "

Что дальше?

" - -#: ../../Zotlabs/Module/Setup.php:748 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "Вам понадобится [вручную] настроить запланированную задачу для опрашивателя." - -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Удаленная информация о конфиденциальности недоступна." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Видимо для:" - -#: ../../Zotlabs/Module/Follow.php:36 -msgid "Connection added." -msgstr "Контакт добавлен." - -#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:208 -msgid "Menu not found." -msgstr "Меню не найдено" - -#: ../../Zotlabs/Module/Mitem.php:63 -msgid "Unable to create element." -msgstr "Невозможно создать элемент." - -#: ../../Zotlabs/Module/Mitem.php:87 -msgid "Unable to update menu element." -msgstr "Невозможно обновить элемент меню." - -#: ../../Zotlabs/Module/Mitem.php:103 -msgid "Unable to add menu element." -msgstr "Невозможно добавить элемент меню." - -#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 -msgid "Menu Item Permissions" -msgstr "Разрешения на пункт меню" - -#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "(click to open/close)" -msgstr "(нажмите чтобы открыть/закрыть)" - -#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 -msgid "Link Name" -msgstr "Имя ссылки" - -#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 -msgid "Link or Submenu Target" -msgstr "Ссылка или цель подменю" - -#: ../../Zotlabs/Module/Mitem.php:175 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Введите URL ссылки или выберите имя меню для создания подменю" - -#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 -msgid "Use magic-auth if available" -msgstr "Использовать magic-auth если возможно" - -#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 -msgid "Open link in new window" -msgstr "Открыть ссылку в новом окне" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Order in list" -msgstr "Порядок в списке" - -#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Большие значения в конце списка" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Submit and finish" -msgstr "Отправить и завершить" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Submit and continue" -msgstr "Отправить и продолжить" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Menu:" -msgstr "Меню:" - -#: ../../Zotlabs/Module/Mitem.php:192 -msgid "Link Target" -msgstr "Цель ссылки" - -#: ../../Zotlabs/Module/Mitem.php:195 -msgid "Edit menu" -msgstr "Редактировать меню" - -#: ../../Zotlabs/Module/Mitem.php:198 -msgid "Edit element" -msgstr "Редактировать элемент" - -#: ../../Zotlabs/Module/Mitem.php:199 -msgid "Drop element" -msgstr "Удалить элемент" - -#: ../../Zotlabs/Module/Mitem.php:200 -msgid "New element" -msgstr "Новый элемент" - -#: ../../Zotlabs/Module/Mitem.php:201 -msgid "Edit this menu container" -msgstr "Редактировать контейнер меню" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Add menu element" -msgstr "Добавить элемент меню" - -#: ../../Zotlabs/Module/Mitem.php:203 -msgid "Delete this menu item" -msgstr "Удалить этот элемент меню" - -#: ../../Zotlabs/Module/Mitem.php:204 -msgid "Edit this menu item" -msgstr "Редактировать этот элемент меню" - -#: ../../Zotlabs/Module/Mitem.php:222 -msgid "Menu item not found." -msgstr "Элемент меню не найден." - -#: ../../Zotlabs/Module/Mitem.php:235 -msgid "Menu item deleted." -msgstr "Элемент меню удалён." - -#: ../../Zotlabs/Module/Mitem.php:237 -msgid "Menu item could not be deleted." -msgstr "Невозможно удалить элемент меню." - -#: ../../Zotlabs/Module/Mitem.php:244 -msgid "Edit Menu Element" -msgstr "Редактировать элемент меню" - -#: ../../Zotlabs/Module/Mitem.php:254 -msgid "Link text" -msgstr "Текст ссылки" - -#: ../../Zotlabs/Module/Admin/Addons.php:289 -#, php-format -msgid "Plugin %s disabled." -msgstr "Плагин %s отключен." - -#: ../../Zotlabs/Module/Admin/Addons.php:294 -#, php-format -msgid "Plugin %s enabled." -msgstr "Плагин %s включен." - -#: ../../Zotlabs/Module/Admin/Addons.php:310 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Disable" -msgstr "Запретить" - -#: ../../Zotlabs/Module/Admin/Addons.php:313 -#: ../../Zotlabs/Module/Admin/Themes.php:97 -msgid "Enable" -msgstr "Разрешить" - -#: ../../Zotlabs/Module/Admin/Addons.php:343 -#: ../../Zotlabs/Module/Admin/Themes.php:124 -msgid "Toggle" -msgstr "Переключить" - -#: ../../Zotlabs/Module/Admin/Addons.php:351 -#: ../../Zotlabs/Module/Admin/Themes.php:134 -msgid "Author: " -msgstr "Автор: " - -#: ../../Zotlabs/Module/Admin/Addons.php:352 -#: ../../Zotlabs/Module/Admin/Themes.php:135 -msgid "Maintainer: " -msgstr "Сопровождающий:" - -#: ../../Zotlabs/Module/Admin/Addons.php:353 -msgid "Minimum project version: " -msgstr "Минимальная версия проекта:" - -#: ../../Zotlabs/Module/Admin/Addons.php:354 -msgid "Maximum project version: " -msgstr "Максимальная версия проекта:" - -#: ../../Zotlabs/Module/Admin/Addons.php:355 -msgid "Minimum PHP version: " -msgstr "Минимальная версия PHP:" - -#: ../../Zotlabs/Module/Admin/Addons.php:356 -msgid "Compatible Server Roles: " -msgstr "Совместимые роли сервера:" - -#: ../../Zotlabs/Module/Admin/Addons.php:357 -msgid "Requires: " -msgstr "Необходимо:" - -#: ../../Zotlabs/Module/Admin/Addons.php:358 -#: ../../Zotlabs/Module/Admin/Addons.php:442 -msgid "Disabled - version incompatibility" -msgstr "Отключено - несовместимость версий" - -#: ../../Zotlabs/Module/Admin/Addons.php:411 -msgid "Enter the public git repository URL of the addon repo." -msgstr "Введите URL публичного репозитория расширений git" - -#: ../../Zotlabs/Module/Admin/Addons.php:412 -msgid "Addon repo git URL" -msgstr "URL репозитория расширений git" - -#: ../../Zotlabs/Module/Admin/Addons.php:413 -msgid "Custom repo name" -msgstr "Пользовательское имя репозитория" - -#: ../../Zotlabs/Module/Admin/Addons.php:413 -msgid "(optional)" -msgstr "(необязательно)" - -#: ../../Zotlabs/Module/Admin/Addons.php:414 -msgid "Download Addon Repo" -msgstr "Загрузить репозиторий расширений" - -#: ../../Zotlabs/Module/Admin/Addons.php:421 -msgid "Install new repo" -msgstr "Установить новый репозиторий" - -#: ../../Zotlabs/Module/Admin/Addons.php:445 -msgid "Manage Repos" -msgstr "Управление репозиториями" - -#: ../../Zotlabs/Module/Admin/Addons.php:446 -msgid "Installed Addon Repositories" -msgstr "Установленные репозитории расширений" - -#: ../../Zotlabs/Module/Admin/Addons.php:447 -msgid "Install a New Addon Repository" -msgstr "Установить новый репозиторий расширений" - -#: ../../Zotlabs/Module/Admin/Addons.php:454 -msgid "Switch branch" -msgstr "Переключить ветку" - -#: ../../Zotlabs/Module/Admin/Site.php:172 -msgid "Site settings updated." -msgstr "Настройки сайта обновлены." - -#: ../../Zotlabs/Module/Admin/Site.php:209 -#: ../../Zotlabs/Module/Settings/Display.php:130 -#, php-format -msgid "%s - (Incompatible)" -msgstr "%s - (несовместимо)" - -#: ../../Zotlabs/Module/Admin/Site.php:216 -msgid "mobile" -msgstr "мобильный" - -#: ../../Zotlabs/Module/Admin/Site.php:218 -msgid "experimental" -msgstr "экспериментальный" - -#: ../../Zotlabs/Module/Admin/Site.php:220 -msgid "unsupported" -msgstr "неподдерживаемый" - -#: ../../Zotlabs/Module/Admin/Site.php:267 -msgid "Yes - with approval" -msgstr "Да - требует подтверждения" - -#: ../../Zotlabs/Module/Admin/Site.php:273 -msgid "My site is not a public server" -msgstr "Мой сайт не является публичным сервером" - -#: ../../Zotlabs/Module/Admin/Site.php:274 -msgid "My site has paid access only" -msgstr "Мой сайт доступен только с оплатой " - -#: ../../Zotlabs/Module/Admin/Site.php:275 -msgid "My site has free access only" -msgstr "На моём сайте разрешён свободный доступ" - -#: ../../Zotlabs/Module/Admin/Site.php:276 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами" - -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Beginner/Basic" -msgstr "Начинающий/Базовый" - -#: ../../Zotlabs/Module/Admin/Site.php:289 -msgid "Novice - not skilled but willing to learn" -msgstr "Новичок - не опытный, но желающий учиться" - -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Intermediate - somewhat comfortable" -msgstr "Промежуточный - более удобный" - -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "Advanced - very comfortable" -msgstr "Продвинутый - очень удобный" - -#: ../../Zotlabs/Module/Admin/Site.php:292 -msgid "Expert - I can write computer code" -msgstr "Эксперт - я умею программировать" - -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Wizard - I probably know more than you do" -msgstr "Волшебник - возможно я знаю больше чем ты" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Default permission role for new accounts" -msgstr "Разрешения по умолчанию для новых аккаунтов" - -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "" -"This role will be used for the first channel created after registration." -msgstr "Эта роль будет использоваться для первого канала, созданного после регистрации." - -#: ../../Zotlabs/Module/Admin/Site.php:310 -#: ../../Zotlabs/Module/Register.php:278 -msgid "Registration" -msgstr "Регистрация" - -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "File upload" -msgstr "Загрузка файла" - -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Policies" -msgstr "Правила" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Site default technical skill level" -msgstr "Уровень технических навыков на сайте по умолчанию" - -#: ../../Zotlabs/Module/Admin/Site.php:319 -msgid "Used to provide a member experience matched to technical comfort level" -msgstr "Используется чтобы обеспечить удобство на уровне технических навыков пользователя" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Lock the technical skill level setting" -msgstr "Заблокировать уровень технических навыков" - -#: ../../Zotlabs/Module/Admin/Site.php:321 -msgid "Members can set their own technical comfort level by default" -msgstr "Участники могут выбрать уровень своих технических навыков по умолчанию" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Banner/Logo" -msgstr "Баннер / логотип" - -#: ../../Zotlabs/Module/Admin/Site.php:323 -msgid "Unfiltered HTML/CSS/JS is allowed" -msgstr "Разрешён нефильтруемый HTML/CSS/JS" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "Administrator Information" -msgstr "Информация об администраторе" - -#: ../../Zotlabs/Module/Admin/Site.php:324 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode." - -#: ../../Zotlabs/Module/Admin/Site.php:325 -msgid "" -"Publicly visible description of this site. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode." - -#: ../../Zotlabs/Module/Admin/Site.php:326 -msgid "System language" -msgstr "Язык системы" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "System theme" -msgstr "Системная тема" - -#: ../../Zotlabs/Module/Admin/Site.php:327 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы." - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "Allow Feeds as Connections" -msgstr "Разрешить ленты новостей как контакты" - -#: ../../Zotlabs/Module/Admin/Site.php:330 -msgid "(Heavy system resource usage)" -msgstr "(Высокое использование системных ресурсов)" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "Maximum image size" -msgstr "Максимальный размер изображения" - -#: ../../Zotlabs/Module/Admin/Site.php:331 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений." - -#: ../../Zotlabs/Module/Admin/Site.php:332 -msgid "Does this site allow new member registration?" -msgstr "Разрешается ли регистрация новых пользователей на этом сайте?" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "Invitation only" -msgstr "Только по приглашениям" - -#: ../../Zotlabs/Module/Admin/Site.php:333 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"." - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Minimum age" -msgstr "Минимальный возраст" - -#: ../../Zotlabs/Module/Admin/Site.php:334 -msgid "Minimum age (in years) for who may register on this site." -msgstr "Минимальный возраст (в годах) для регистрации на этом сайте." - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Как лучше описать тип учётных записей предлагаемых на этом хабе?" - -#: ../../Zotlabs/Module/Admin/Site.php:335 -msgid "This is displayed on the public server site list." -msgstr "Это отображается в списке общедоступных серверов." - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Register text" -msgstr "Текст регистрации" - -#: ../../Zotlabs/Module/Admin/Site.php:336 -msgid "Will be displayed prominently on the registration page." -msgstr "Будет отображаться на странице регистрации на видном месте." - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)." - -#: ../../Zotlabs/Module/Admin/Site.php:338 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла." - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "Preserve site homepage URL" -msgstr "Сохранить URL главной страницы сайта" - -#: ../../Zotlabs/Module/Admin/Site.php:339 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "Accounts abandoned after x days" -msgstr "Аккаунты считаются заброшенными после N дней" - -#: ../../Zotlabs/Module/Admin/Site.php:340 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений." - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "Allowed friend domains" -msgstr "Разрешенные домены друзей" - -#: ../../Zotlabs/Module/Admin/Site.php:341 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены." - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "Verify Email Addresses" -msgstr "Проверка адреса электронной почты" - -#: ../../Zotlabs/Module/Admin/Site.php:342 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)." - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "Force publish" -msgstr "Принудительно публиковать" - -#: ../../Zotlabs/Module/Admin/Site.php:343 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Включите для принудительного включения всех учётных записей на данном сайте в каталог." - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "Import Public Streams" -msgstr "Импортированные публичные потоки" - -#: ../../Zotlabs/Module/Admin/Site.php:344 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться." - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "Site only Public Streams" -msgstr "Публичные потоки только с сайта" - -#: ../../Zotlabs/Module/Admin/Site.php:345 -msgid "" -"Allow access to public content originating only from this site if Imported " -"Public Streams are disabled." -msgstr "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены." - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "Allow anybody on the internet to access the Public streams" -msgstr "Разрешить всем доступ к публичным потокам" - -#: ../../Zotlabs/Module/Admin/Site.php:346 -msgid "" -"Disable to require authentication before viewing. Warning: this content is " -"unmoderated." -msgstr "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться." - -#: ../../Zotlabs/Module/Admin/Site.php:347 -msgid "Only import Public stream posts with this text" -msgstr "Импортировать только публичные потоки с этим текстом" - -#: ../../Zotlabs/Module/Admin/Site.php:348 -msgid "Do not import Public stream posts with this text" -msgstr "Не импортировать публичные потоки с этим текстом" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "Login on Homepage" -msgstr "Вход на домашней странице" - -#: ../../Zotlabs/Module/Admin/Site.php:351 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено." - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "Enable context help" -msgstr "Включить контекстную помощь" - -#: ../../Zotlabs/Module/Admin/Site.php:352 -msgid "" -"Display contextual help for the current page when the help button is pressed." -msgstr "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"." - -#: ../../Zotlabs/Module/Admin/Site.php:354 -msgid "Reply-to email address for system generated email." -msgstr "Адрес email Reply-to для генерируемых системой сообщений." - -#: ../../Zotlabs/Module/Admin/Site.php:355 -msgid "Sender (From) email address for system generated email." -msgstr "Адрес email отправителя (From) для генерируемых системой сообщений." - -#: ../../Zotlabs/Module/Admin/Site.php:356 -msgid "Name of email sender for system generated email." -msgstr "Имя отправителя для генерируемых системой сообщений." - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Directory Server URL" -msgstr "URL сервера каталогов" - -#: ../../Zotlabs/Module/Admin/Site.php:358 -msgid "Default directory server" -msgstr "Сервер каталогов по умолчанию" - -#: ../../Zotlabs/Module/Admin/Site.php:360 -msgid "Proxy user" -msgstr "Имя пользователя proxy-сервера" - -#: ../../Zotlabs/Module/Admin/Site.php:361 -msgid "Proxy URL" -msgstr "URL proxy-сервера" - -#: ../../Zotlabs/Module/Admin/Site.php:362 -msgid "Network timeout" -msgstr "Время ожидания сети" - -#: ../../Zotlabs/Module/Admin/Site.php:362 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)." - -#: ../../Zotlabs/Module/Admin/Site.php:363 -msgid "Delivery interval" -msgstr "Интервал доставки" - -#: ../../Zotlabs/Module/Admin/Site.php:363 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов." - -#: ../../Zotlabs/Module/Admin/Site.php:364 -msgid "Deliveries per process" -msgstr "Доставок на процесс" - -#: ../../Zotlabs/Module/Admin/Site.php:364 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust " -"if necessary to tune system performance. Recommend: 1-5." -msgstr "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5." - -#: ../../Zotlabs/Module/Admin/Site.php:365 -msgid "Queue Threshold" -msgstr "Порог очереди" - -#: ../../Zotlabs/Module/Admin/Site.php:365 -msgid "" -"Always defer immediate delivery if queue contains more than this number of " -"entries." -msgstr "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это." - -#: ../../Zotlabs/Module/Admin/Site.php:366 -msgid "Poll interval" -msgstr "Интервал опроса" - -#: ../../Zotlabs/Module/Admin/Site.php:366 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки." - -#: ../../Zotlabs/Module/Admin/Site.php:367 -msgid "Path to ImageMagick convert program" -msgstr "Путь к ImageMagick" - -#: ../../Zotlabs/Module/Admin/Site.php:367 -msgid "" -"If set, use this program to generate photo thumbnails for huge images ( > " -"4000 pixels in either dimension), otherwise memory exhaustion may occur. " -"Example: /usr/bin/convert" -msgstr "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert" - -#: ../../Zotlabs/Module/Admin/Site.php:368 -msgid "Allow SVG thumbnails in file browser" -msgstr "Разрешить SVG миниатюры в просмотрщике файлов" - -#: ../../Zotlabs/Module/Admin/Site.php:368 -msgid "WARNING: SVG images may contain malicious code." -msgstr "Внимание: изображения SVG могут содержать вредоносный код." - -#: ../../Zotlabs/Module/Admin/Site.php:369 -msgid "Maximum Load Average" -msgstr "Максимальная средняя нагрузка" - -#: ../../Zotlabs/Module/Admin/Site.php:369 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50." - -#: ../../Zotlabs/Module/Admin/Site.php:370 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Срок хранения в днях для импортированного содержимого (из матрицы / сети)." - -#: ../../Zotlabs/Module/Admin/Site.php:370 -msgid "0 for no expiration of imported content" -msgstr "0 для постоянного хранения импортированного содержимого" - -#: ../../Zotlabs/Module/Admin/Site.php:371 -msgid "" -"Do not expire any posts which have comments less than this many days ago" -msgstr "Продлевать строк хранения для любых публикаций, которые имеют комментарии возрастом менее этого значения" - -#: ../../Zotlabs/Module/Admin/Site.php:373 -msgid "" -"Public servers: Optional landing (marketing) webpage for new registrants" -msgstr "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей" - -#: ../../Zotlabs/Module/Admin/Site.php:373 -#, php-format -msgid "Create this page first. Default is %s/register" -msgstr "Создать эту страницу первой. По умолчанию %s/register" - -#: ../../Zotlabs/Module/Admin/Site.php:374 -msgid "Page to display after creating a new channel" -msgstr "Страница для показа после создания нового канала" - -#: ../../Zotlabs/Module/Admin/Site.php:374 -msgid "Default: profiles" -msgstr "По умолчанию: profiles" - -#: ../../Zotlabs/Module/Admin/Site.php:376 -msgid "Optional: site location" -msgstr "Необязательно: место размещения сайта" - -#: ../../Zotlabs/Module/Admin/Site.php:376 -msgid "Region or country" -msgstr "Регион или страна" - -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "Настройки журнала обновлены." - -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Очистить" - -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Отладка" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "Файл журнала" - -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта." - -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Уровень журнала" - -#: ../../Zotlabs/Module/Admin/Accounts.php:37 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s аккаунт блокирован/разблокирован" -msgstr[1] "%s аккаунта блокированы/разблокированы" -msgstr[2] "%s аккаунтов блокированы/разблокированы" - -#: ../../Zotlabs/Module/Admin/Accounts.php:44 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s аккаунт удалён" -msgstr[1] "%s аккаунта удалёны" -msgstr[2] "%s аккаунтов удалёны" - -#: ../../Zotlabs/Module/Admin/Accounts.php:80 -msgid "Account not found" -msgstr "Аккаунт не найден" - -#: ../../Zotlabs/Module/Admin/Accounts.php:99 -#, php-format -msgid "Account '%s' blocked" -msgstr "Аккаунт '%s' заблокирован" - -#: ../../Zotlabs/Module/Admin/Accounts.php:107 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Аккаунт '%s' разблокирован" - -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Channels.php:148 -msgid "select all" -msgstr "выбрать все" - -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Registrations waiting for confirm" -msgstr "Регистрации ждут подтверждения" - -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Request date" -msgstr "Дата запроса" - -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -msgid "No registrations." -msgstr "Нет новых регистраций." - -#: ../../Zotlabs/Module/Admin/Accounts.php:182 -msgid "ID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "All Channels" -msgstr "Все каналы" - -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Register date" -msgstr "Дата регистрации" - -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Last login" -msgstr "Последний вход" - -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Expires" -msgstr "Срок действия" - -#: ../../Zotlabs/Module/Admin/Accounts.php:188 -msgid "Service Class" -msgstr "Класс обслуживания" - -#: ../../Zotlabs/Module/Admin/Accounts.php:190 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " -"on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?" - -#: ../../Zotlabs/Module/Admin/Accounts.php:191 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?" - -#: ../../Zotlabs/Module/Admin/Security.php:83 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." -msgstr "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно." - -#: ../../Zotlabs/Module/Admin/Security.php:86 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:" - -#: ../../Zotlabs/Module/Admin/Security.php:87 -msgid "" -"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" -"
https://vimeo.com/
https://soundcloud.com/
" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Security.php:88 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "се остальные встроенные материалы будут отфильтрованы, если встроенное содержимое с этого сайта явно заблокировано." - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block public" -msgstr "Блокировать публичный доступ" - -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы." - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Provide a cloud root directory" -msgstr "Предоставить корневой каталог в облаке" - -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"The cloud root directory lists all channel names which provide public files" -msgstr "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы" - -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Show total disk space available to cloud uploads" -msgstr "Показывать общее доступное для загрузок место в хранилище" - -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Установить HTTP-заголовок \"Transport Security\"" - -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Установить HTTP-заголовок \"Content Security Policy\"" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Allowed email domains" -msgstr "Разрешённые домены email" - -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены." - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "Not allowed email domains" -msgstr "Запрещённые домены email" - -#: ../../Zotlabs/Module/Admin/Security.php:101 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны." - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "Allow communications only from these sites" -msgstr "Разрешить связь только с этими сайтами" - -#: ../../Zotlabs/Module/Admin/Security.php:102 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)." - -#: ../../Zotlabs/Module/Admin/Security.php:103 -msgid "Block communications from these sites" -msgstr "Блокировать связь с этими сайтами" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "Allow communications only from these channels" -msgstr "Разрешить связь только для этих каналов" - -#: ../../Zotlabs/Module/Admin/Security.php:104 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" -msgstr "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)." - -#: ../../Zotlabs/Module/Admin/Security.php:105 -msgid "Block communications from these channels" -msgstr "Блокировать связь с этими каналами" - -#: ../../Zotlabs/Module/Admin/Security.php:106 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок." - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов" - -#: ../../Zotlabs/Module/Admin/Security.php:107 -msgid "One site per line. By default embedded content is filtered." -msgstr "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется." - -#: ../../Zotlabs/Module/Admin/Security.php:108 -msgid "Block embedded HTML from these domains" -msgstr "Блокировать встраивание HTML-содержимого для этих доменов" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "Обновление было помечено как успешное" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:31 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Выполнение %s неудачно. Проверьте системный журнал." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:34 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Обновление %sбыло успешно применено." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:38 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Обновление %s не вернуло статус. Неизвестно было ли оно успешным." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:41 -#, php-format -msgid "Update function %s could not be found." -msgstr "Функция обновления %sне может быть найдена." - -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Обновления с ошибками" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Пометить успешным (если обновление было применено вручную)" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" -msgstr "Попытаться применить это обновление автоматически" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:67 -msgid "No failed updates." -msgstr "Ошибок обновлений нет." - -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "New Profile Field" -msgstr "Поле нового профиля" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "Field nickname" -msgstr "Псевдоним поля" - -#: ../../Zotlabs/Module/Admin/Profs.php:90 -#: ../../Zotlabs/Module/Admin/Profs.php:110 -msgid "System name of field" -msgstr "Системное имя поля" - -#: ../../Zotlabs/Module/Admin/Profs.php:91 -#: ../../Zotlabs/Module/Admin/Profs.php:111 -msgid "Input type" -msgstr "Тип ввода" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Field Name" -msgstr "Имя поля" - -#: ../../Zotlabs/Module/Admin/Profs.php:92 -#: ../../Zotlabs/Module/Admin/Profs.php:112 -msgid "Label on profile pages" -msgstr "Метка на странице профиля" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Help text" -msgstr "Текст подсказки" - -#: ../../Zotlabs/Module/Admin/Profs.php:93 -#: ../../Zotlabs/Module/Admin/Profs.php:113 -msgid "Additional info (optional)" -msgstr "Дополнительная информация (необязательно)" - -#: ../../Zotlabs/Module/Admin/Profs.php:103 -msgid "Field definition not found" -msgstr "Определения поля не найдено" - -#: ../../Zotlabs/Module/Admin/Profs.php:109 -msgid "Edit Profile Field" -msgstr "Редактировать поле профиля" - -#: ../../Zotlabs/Module/Admin/Profs.php:169 -msgid "Basic Profile Fields" -msgstr "Основные поля профиля" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "Advanced Profile Fields" -msgstr "Дополнительные поля профиля" - -#: ../../Zotlabs/Module/Admin/Profs.php:170 -msgid "(In addition to basic fields)" -msgstr "(к основым полям)" - -#: ../../Zotlabs/Module/Admin/Profs.php:172 -msgid "All available fields" -msgstr "Все доступные поля" - -#: ../../Zotlabs/Module/Admin/Profs.php:173 -msgid "Custom Fields" -msgstr "Настраиваемые поля" - -#: ../../Zotlabs/Module/Admin/Profs.php:177 -msgid "Create Custom Field" -msgstr "Создать настраиваемое поле" - -#: ../../Zotlabs/Module/Admin/Themes.php:26 -msgid "Theme settings updated." -msgstr "Настройки темы обновленны." - -#: ../../Zotlabs/Module/Admin/Themes.php:61 -msgid "No themes found." -msgstr "Темы не найдены." - -#: ../../Zotlabs/Module/Admin/Themes.php:116 -msgid "Screenshot" -msgstr "Снимок экрана" - -#: ../../Zotlabs/Module/Admin/Themes.php:162 -msgid "[Experimental]" -msgstr "[экспериментальный]" - -#: ../../Zotlabs/Module/Admin/Themes.php:163 -msgid "[Unsupported]" -msgstr "[неподдерживаемый]" - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "Off" -msgstr "Выкл." - -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:65 -msgid "On" -msgstr "Вкл." - -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Заблокировать функцию \"%s\"" - -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Управлять дополнительными функциями" - -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" -msgstr "Статистика очереди" - -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" -msgstr "Всего записей" - -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" -msgstr "Приоритет" - -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" -msgstr "Конечный URL-адрес" - -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" -msgstr "Пометить хаб как постоянно отключенный" - -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" -msgstr "Освободить очередь для этого хаба" - -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" -msgstr "Последний известный контакт" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." -msgstr "Пароль для аккаунта %d изменён." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." -msgstr "Настройки аккаунта обновлены." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." -msgstr "Учётная запись не найдена." - -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" -msgstr "Редактировать аккаунт" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" -msgstr "Новый пароль" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" -msgstr "Повторите новый пароль" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" -msgstr "Уровень технических навыков" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" -msgstr "Язык сообщения для email" - -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" -msgstr "Класс обслуживания" - -#: ../../Zotlabs/Module/Admin/Channels.php:31 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s канал цензурируется/нецензурируется" -msgstr[1] "%s канала цензурируются/нецензурируются" -msgstr[2] "%s каналов цензурируются/нецензурируются" - -#: ../../Zotlabs/Module/Admin/Channels.php:40 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "в %s канале код разрешён/запрещён" -msgstr[1] "в %s каналах код разрешён/запрещён" -msgstr[2] "в %s каналах код разрешён/запрещён" - -#: ../../Zotlabs/Module/Admin/Channels.php:46 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s канал удалён" -msgstr[1] "%s канала удалены" -msgstr[2] "%s каналов удалены" - -#: ../../Zotlabs/Module/Admin/Channels.php:65 -msgid "Channel not found" -msgstr "Канал не найден" - -#: ../../Zotlabs/Module/Admin/Channels.php:75 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Канал '%s' удалён" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' censored" -msgstr "Канал '%s' цензурируется" - -#: ../../Zotlabs/Module/Admin/Channels.php:87 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Канал '%s' нецензурируется" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Код в канале '%s' разрешён" - -#: ../../Zotlabs/Module/Admin/Channels.php:98 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Код в канале '%s' запрещён" - -#: ../../Zotlabs/Module/Admin/Channels.php:150 -msgid "Censor" -msgstr "Цензурировать" - -#: ../../Zotlabs/Module/Admin/Channels.php:151 -msgid "Uncensor" -msgstr "Нецензурировать" - -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "Allow Code" -msgstr "Разрешить код" - -#: ../../Zotlabs/Module/Admin/Channels.php:153 -msgid "Disallow Code" -msgstr "Запретить код" - -#: ../../Zotlabs/Module/Admin/Channels.php:158 -msgid "UID" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?" - -#: ../../Zotlabs/Module/Admin/Channels.php:163 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?" - -#: ../../Zotlabs/Module/Email_validation.php:24 -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "Не удалось выполнить проверку токена." - -#: ../../Zotlabs/Module/Email_validation.php:36 -msgid "Email Verification Required" -msgstr "Требуется проверка адреса email" - -#: ../../Zotlabs/Module/Email_validation.php:37 -#, php-format -msgid "" -"A verification token was sent to your email address [%s]. Enter that token " -"here to complete the account verification step. Please allow a few minutes " -"for delivery, and check your spam folder if you do not see the message." -msgstr "Проверочный токен был выслн на ваш адрес электронной почты {%s]. Введите этот токен здесь для завершения этапа проверки учётной записи. Пожалуйста, подождите несколько минут для завершения доставки и проверьте вашу папку \"Спам\" если вы не видите письма." - -#: ../../Zotlabs/Module/Email_validation.php:38 -msgid "Resend Email" -msgstr "Выслать повторно" - -#: ../../Zotlabs/Module/Email_validation.php:41 -msgid "Validation token" -msgstr "Проверочный токен" - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Превышено общее количество приглашений." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Недействительный адрес электронной почты." - -#: ../../Zotlabs/Module/Invite.php:67 -msgid "Please join us on $Projectname" -msgstr "Присоединятесь к $Projectname !" - -#: ../../Zotlabs/Module/Invite.php:77 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта." - -#: ../../Zotlabs/Module/Invite.php:86 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d сообщение отправлено." -msgstr[1] "%d сообщения отправлено." -msgstr[2] "%d сообщений отправлено." - -#: ../../Zotlabs/Module/Invite.php:107 -msgid "You have no more invitations available" -msgstr "У вас больше нет приглашений" - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "Send invitations" -msgstr "Отправить приглашение" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Enter email addresses, one per line:" -msgstr "Введите адреса электронной почты, по одному в строке:" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "Please join my community on $Projectname." -msgstr "Присоединятесь к нашему сообществу $Projectname !" - -#: ../../Zotlabs/Module/Invite.php:143 -msgid "You will need to supply this invitation code:" -msgstr "Вам нужно предоставит этот код приглашения:" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Зарегистрируйтесь на любом из серверов $Projectname" - -#: ../../Zotlabs/Module/Invite.php:146 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Введите сетевой адрес $Projectname в поисковой строке сайта" - -#: ../../Zotlabs/Module/Invite.php:147 -msgid "or visit" -msgstr "или посетите" - -#: ../../Zotlabs/Module/Invite.php:149 -msgid "3. Click [Connect]" -msgstr "Нажать [Подключиться]" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Заблокировать заголовок" - -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Cover_photo.php:218 -msgid "Cover Photos" -msgstr "Фотографии обложки" - -#: ../../Zotlabs/Module/Cover_photo.php:390 -msgid "Your cover photo may be visible to anybody on the internet" -msgstr "Фотография вашей обложки может быть видна всем в Интернете" - -#: ../../Zotlabs/Module/Cover_photo.php:394 -msgid "Change Cover Photo" -msgstr "Изменить фотографию обложки" - -#: ../../Zotlabs/Module/Like.php:54 -msgid "Like/Dislike" -msgstr "Нравится / не нравится" - -#: ../../Zotlabs/Module/Like.php:59 -msgid "This action is restricted to members." -msgstr "Это действие доступно только участникам." - -#: ../../Zotlabs/Module/Like.php:60 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Пожалуйста, для продолжения войдите с вашим $Projectname ID или зарегистрируйтесь как новый участник $Projectname." - -#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 -msgid "Invalid request." -msgstr "Неверный запрос." - -#: ../../Zotlabs/Module/Like.php:150 -msgid "thing" -msgstr "предмет" - -#: ../../Zotlabs/Module/Like.php:196 -msgid "Channel unavailable." -msgstr "Канал недоступен." - -#: ../../Zotlabs/Module/Like.php:244 -msgid "Previous action reversed." -msgstr "Предыдущее действие отменено." - -#: ../../Zotlabs/Module/Like.php:442 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s согласен с %2$s %3$s" - -#: ../../Zotlabs/Module/Like.php:444 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s не согласен с %2$s %3$s" - -#: ../../Zotlabs/Module/Like.php:446 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s воздерживается от решения по %2$s%3$s" - -#: ../../Zotlabs/Module/Like.php:564 -msgid "Action completed." -msgstr "Действие завершено." - -#: ../../Zotlabs/Module/Like.php:565 -msgid "Thank you." -msgstr "Спасибо." - -#: ../../Zotlabs/Module/Defperms.php:239 -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "" -"If enabled, connection requests will be approved without your interaction" -msgstr "Если включено, запросы контактов будут одобрены без вашего участия" - -#: ../../Zotlabs/Module/Defperms.php:246 -msgid "Automatic approval settings" -msgstr "Настройки автоматического одобрения" - -#: ../../Zotlabs/Module/Defperms.php:254 -msgid "" -"Some individual permissions may have been preset or locked based on your " -"channel type and privacy settings." -msgstr "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности." - -#: ../../Zotlabs/Module/Menu.php:67 -msgid "Unable to update menu." -msgstr "Невозможно обновить меню." - -#: ../../Zotlabs/Module/Menu.php:78 -msgid "Unable to create menu." -msgstr "Невозможно создать меню." - -#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 -msgid "Menu Name" -msgstr "Название меню" - -#: ../../Zotlabs/Module/Menu.php:160 -msgid "Unique name (not visible on webpage) - required" -msgstr "Уникальное название (не видимо на странице) - требуется" - -#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 -msgid "Menu Title" -msgstr "Заголовок меню" - -#: ../../Zotlabs/Module/Menu.php:161 -msgid "Visible on webpage - leave empty for no title" -msgstr "Видимость на странице - оставьте пустым если не хотите иметь заголовок" - -#: ../../Zotlabs/Module/Menu.php:162 -msgid "Allow Bookmarks" -msgstr "Разрешить закладки" - -#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 -msgid "Menu may be used to store saved bookmarks" -msgstr "Меню может использоваться, чтобы сохранить закладки" - -#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 -msgid "Submit and proceed" -msgstr "Отправить и обработать" - -#: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Удалить" - -#: ../../Zotlabs/Module/Menu.php:180 -msgid "Bookmarks allowed" -msgstr "Закладки разрешены" - -#: ../../Zotlabs/Module/Menu.php:182 -msgid "Delete this menu" -msgstr "Удалить это меню" - -#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 -msgid "Edit menu contents" -msgstr "Редактировать содержание меню" - -#: ../../Zotlabs/Module/Menu.php:184 -msgid "Edit this menu" -msgstr "Редактировать это меню" - -#: ../../Zotlabs/Module/Menu.php:200 -msgid "Menu could not be deleted." -msgstr "Меню не может быть удалено." - -#: ../../Zotlabs/Module/Menu.php:213 -msgid "Edit Menu" -msgstr "Редактировать меню" - -#: ../../Zotlabs/Module/Menu.php:217 -msgid "Add or remove entries to this menu" -msgstr "Добавить или удалить пункты этого меню" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Menu name" -msgstr "Название меню" - -#: ../../Zotlabs/Module/Menu.php:219 -msgid "Must be unique, only seen by you" -msgstr "Должно быть уникальным (видно только вам)" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title" -msgstr "Заголовок меню" - -#: ../../Zotlabs/Module/Menu.php:220 -msgid "Menu title as seen by others" -msgstr "Видимый другими заголовок меню" - -#: ../../Zotlabs/Module/Menu.php:221 -msgid "Allow bookmarks" -msgstr "Разрешить закладки" - -#: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Вы создали %1$.0f из %2$.0f возможных каналов." - -#: ../../Zotlabs/Module/Manage.php:145 -msgid "Create a new channel" -msgstr "Создать новый канал" - -#: ../../Zotlabs/Module/Manage.php:145 ../../Zotlabs/Module/Chat.php:256 -#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Profiles.php:831 -msgid "Create New" -msgstr "Создать новый" - -#: ../../Zotlabs/Module/Manage.php:171 -msgid "Current Channel" -msgstr "Текущий канал" - -#: ../../Zotlabs/Module/Manage.php:173 -msgid "Switch to one of your channels by selecting it." -msgstr "Выбрать и переключиться на один из ваших каналов" - -#: ../../Zotlabs/Module/Manage.php:174 -msgid "Default Channel" -msgstr "Основной канал" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Make Default" -msgstr "Сделать основным" - -#: ../../Zotlabs/Module/Manage.php:178 -#, php-format -msgid "%d new messages" -msgstr "%d новых сообщений" - -#: ../../Zotlabs/Module/Manage.php:179 -#, php-format -msgid "%d new introductions" -msgstr "%d новых представлений" - -#: ../../Zotlabs/Module/Manage.php:181 -msgid "Delegated Channel" -msgstr "Делегированный канал" - -#: ../../Zotlabs/Module/Changeaddr.php:35 -msgid "" -"Channel name changes are not allowed within 48 hours of changing the account " -"password." -msgstr "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта." - -#: ../../Zotlabs/Module/Changeaddr.php:77 -msgid "Change channel nickname/address" -msgstr "Изменить псевдоним / адрес канала" - -#: ../../Zotlabs/Module/Changeaddr.php:78 -msgid "Any/all connections on other networks will be lost!" -msgstr "Любые / все контакты в других сетях будут утеряны!" - -#: ../../Zotlabs/Module/Changeaddr.php:80 -msgid "New channel address" -msgstr "Новый адрес канала" - -#: ../../Zotlabs/Module/Changeaddr.php:81 -msgid "Rename Channel" -msgstr "Переименовать канал" - -#: ../../Zotlabs/Module/Settings/Features.php:73 -msgid "Additional Features" -msgstr "Дополнительные функции" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" -msgstr "Ваш уровень технических навыков" - -#: ../../Zotlabs/Module/Settings/Features.php:74 -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "" -"Used to provide a member experience and additional features consistent with " -"your comfort level" -msgstr "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне" - -#: ../../Zotlabs/Module/Settings/Channel.php:333 -msgid "Nobody except yourself" -msgstr "Никто кроме вас" - -#: ../../Zotlabs/Module/Settings/Channel.php:334 -msgid "Only those you specifically allow" -msgstr "Только персонально разрешённые" - -#: ../../Zotlabs/Module/Settings/Channel.php:335 -msgid "Approved connections" -msgstr "Одобренные контакты" - -#: ../../Zotlabs/Module/Settings/Channel.php:336 -msgid "Any connections" -msgstr "Любые контакты" - -#: ../../Zotlabs/Module/Settings/Channel.php:337 -msgid "Anybody on this website" -msgstr "Любой на этом сайте" - -#: ../../Zotlabs/Module/Settings/Channel.php:338 -msgid "Anybody in this network" -msgstr "Любой в этой сети" - -#: ../../Zotlabs/Module/Settings/Channel.php:339 -msgid "Anybody authenticated" -msgstr "Любой аутентифицированный" - -#: ../../Zotlabs/Module/Settings/Channel.php:340 -msgid "Anybody on the internet" -msgstr "Любой в интернете" - -#: ../../Zotlabs/Module/Settings/Channel.php:415 -msgid "Publish your default profile in the network directory" -msgstr "Публиковать ваш профиль по умолчанию в сетевом каталоге" - -#: ../../Zotlabs/Module/Settings/Channel.php:420 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Разрешить предлагать вас как потенциального друга для новых пользователей?" - -#: ../../Zotlabs/Module/Settings/Channel.php:424 -msgid "or" -msgstr "или" - -#: ../../Zotlabs/Module/Settings/Channel.php:433 -msgid "Your channel address is" -msgstr "Адрес вашего канала" - -#: ../../Zotlabs/Module/Settings/Channel.php:436 -msgid "Your files/photos are accessible via WebDAV at" -msgstr "Ваши файы / фотографии доступны через WebDAV по" - -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "Automatic membership approval" -msgstr "Членство одобрено автоматически" - -#: ../../Zotlabs/Module/Settings/Channel.php:514 -msgid "Channel Settings" -msgstr "Настройки канала" - -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Basic Settings" -msgstr "Основные настройки" - -#: ../../Zotlabs/Module/Settings/Channel.php:523 -#: ../../Zotlabs/Module/Settings/Account.php:119 -msgid "Email Address:" -msgstr "Адрес email:" - -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Your Timezone:" -msgstr "Часовой пояс:" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Default Post Location:" -msgstr "Расположение по умолчанию:" - -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Geographical location to display on your posts" -msgstr "Показывать географическое положение в ваших публикациях" - -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Use Browser Location:" -msgstr "Определять расположение из браузера" - -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "Adult Content" -msgstr "Содержимое для взрослых" - -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Этот канал часто или регулярно публикует содержимое для взрослых. Пожалуйста, помечайте любой такой материал тегом #NSFW" - -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "Security and Privacy Settings" -msgstr "Безопасность и настройки приватности" - -#: ../../Zotlabs/Module/Settings/Channel.php:532 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить" - -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Hide my online presence" -msgstr "Скрывать моё присутствие онлайн" - -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Prevents displaying in your profile that you are online" -msgstr "Предотвращает отображения статуса \"в сети\" в вашем профиле" - -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Simple Privacy Settings:" -msgstr "Простые настройки безопасности:" - -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)" - -#: ../../Zotlabs/Module/Settings/Channel.php:538 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)" - -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "Private - default private, never open or public" -msgstr "Частный - частный по умочанию, не открытый и не публичный" - -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Blocked - default blocked to/from everybody" -msgstr "Закрытый - заблокированный по умолчанию от / для всех" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "Allow others to tag your posts" -msgstr "Разрешить другим отмечать ваши публикации" - -#: ../../Zotlabs/Module/Settings/Channel.php:542 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Часто используется сообществом для маркировки неподобающего содержания" - -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Channel Permission Limits" -msgstr "Ограничения разрешений канала" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Expire other channel content after this many days" -msgstr "Храненить содержимое других каналов, дней" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "0 or blank to use the website limit." -msgstr "0 или пусто - использовать настройки сайта." - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -#, php-format -msgid "This website expires after %d days." -msgstr "Срок хранения содержимого этого сайта истекает через %d дней" - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "This website does not expire imported content." -msgstr "Срок хранения импортированного содержимого этого сайта не ограничен." - -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Ограничение сайта имеет приоритет если ниже вашего значения." - -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "Maximum Friend Requests/Day:" -msgstr "Запросов в друзья в день:" - -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "May reduce spam activity" -msgstr "Может ограничить спам активность" - -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "Default Privacy Group" -msgstr "Группа конфиденциальности по умолчанию" - -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Use my default audience setting for the type of object published" -msgstr "Использовать настройки аудитории по умолчанию для типа опубликованного объекта" - -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "Profile to assign new connections" -msgstr "Назначить профиль для новых контактов" - -#: ../../Zotlabs/Module/Settings/Channel.php:560 -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:266 -msgid "Channel role and privacy" -msgstr "Роль и конфиденциальность канала" - -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "Default Permissions Group" -msgstr "Группа разрешений по умолчанию" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Maximum private messages per day from unknown people:" -msgstr "Максимально количество сообщений от незнакомых людей, в день:" - -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Useful to reduce spamming" -msgstr "Полезно для сокращения количества спама" - -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "By default post a status message when:" -msgstr "По умолчанию публиковать новый статус при:" - -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "accepting a friend request" -msgstr "одобрении запроса в друзья" - -#: ../../Zotlabs/Module/Settings/Channel.php:573 -msgid "joining a forum/community" -msgstr "вступлении в сообщество / форум" - -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "making an interesting profile change" -msgstr "интересном изменении профиля" - -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "Send a notification email when:" -msgstr "Отправить уведомление по email когда:" - -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "You receive a connection request" -msgstr "вы получили новый запрос контакта" - -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "Your connections are confirmed" -msgstr "ваш запрос контакта был одобрен" - -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "Someone writes on your profile wall" -msgstr "кто-то написал на стене вашего профиля" - -#: ../../Zotlabs/Module/Settings/Channel.php:579 -msgid "Someone writes a followup comment" -msgstr "кто-то пишет комментарий" - -#: ../../Zotlabs/Module/Settings/Channel.php:580 -msgid "You receive a private message" -msgstr "вы получили личное сообщение" - -#: ../../Zotlabs/Module/Settings/Channel.php:581 -msgid "You receive a friend suggestion" -msgstr "вы получили предложение друзей" - -#: ../../Zotlabs/Module/Settings/Channel.php:582 -msgid "You are tagged in a post" -msgstr "вы были отмечены в публикации" - -#: ../../Zotlabs/Module/Settings/Channel.php:583 -msgid "You are poked/prodded/etc. in a post" -msgstr "вас толкнули, подтолкнули и т.п. в публикации" - -#: ../../Zotlabs/Module/Settings/Channel.php:585 -msgid "Someone likes your post/comment" -msgstr "кому-то нравится ваша публикация / комментарий" - -#: ../../Zotlabs/Module/Settings/Channel.php:588 -msgid "Show visual notifications including:" -msgstr "Показывать визуальные оповещения включая:" - -#: ../../Zotlabs/Module/Settings/Channel.php:590 -msgid "Unseen grid activity" -msgstr "невидимую сетевую активность" - -#: ../../Zotlabs/Module/Settings/Channel.php:591 -msgid "Unseen channel activity" -msgstr "невидимую активность в канале" - -#: ../../Zotlabs/Module/Settings/Channel.php:592 -msgid "Unseen private messages" -msgstr "невидимое личное сообщение" - -#: ../../Zotlabs/Module/Settings/Channel.php:593 -msgid "Upcoming events" -msgstr "грядущие события" - -#: ../../Zotlabs/Module/Settings/Channel.php:594 -msgid "Events today" -msgstr "события сегодня" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Upcoming birthdays" -msgstr "грядущие дни рождения" - -#: ../../Zotlabs/Module/Settings/Channel.php:595 -msgid "Not available in all themes" -msgstr "не доступно во всех темах" - -#: ../../Zotlabs/Module/Settings/Channel.php:596 -msgid "System (personal) notifications" -msgstr "системные (личные) уведомления" - -#: ../../Zotlabs/Module/Settings/Channel.php:597 -msgid "System info messages" -msgstr "сообщения с системной информацией" - -#: ../../Zotlabs/Module/Settings/Channel.php:598 -msgid "System critical alerts" -msgstr "критические уведомления системы" - -#: ../../Zotlabs/Module/Settings/Channel.php:599 -msgid "New connections" -msgstr "новые контакты" - -#: ../../Zotlabs/Module/Settings/Channel.php:600 -msgid "System Registrations" -msgstr "системные регистрации" - -#: ../../Zotlabs/Module/Settings/Channel.php:601 -msgid "Unseen shared files" -msgstr "невидимые общие файлы" - -#: ../../Zotlabs/Module/Settings/Channel.php:602 -msgid "Unseen public activity" -msgstr "невидимая публичная активность" - -#: ../../Zotlabs/Module/Settings/Channel.php:603 -msgid "Unseen likes and dislikes" -msgstr "невидимые лайки и дислайки" - -#: ../../Zotlabs/Module/Settings/Channel.php:604 -msgid "Unseen forum posts" -msgstr "Невидимые публикации на форуме" - -#: ../../Zotlabs/Module/Settings/Channel.php:605 -msgid "Email notification hub (hostname)" -msgstr "Центр уведомлений по email (имя хоста)" - -#: ../../Zotlabs/Module/Settings/Channel.php:605 -#, php-format -msgid "" -"If your channel is mirrored to multiple hubs, set this to your preferred " -"location. This will prevent duplicate email notifications. Example: %s" -msgstr "Если ваш канал зеркалируется в нескольких местах, это ваше предпочтительное местоположение. Это должно предотвратить дублировать уведомлений по email. Например: %s" - -#: ../../Zotlabs/Module/Settings/Channel.php:606 -msgid "Show new wall posts, private messages and connections under Notices" -msgstr "Показать новые сообщения на стене, личные сообщения и контакты в \"Уведомлениях\"" - -#: ../../Zotlabs/Module/Settings/Channel.php:608 -msgid "Notify me of events this many days in advance" -msgstr "Уведомлять меня о событиях заранее, дней" - -#: ../../Zotlabs/Module/Settings/Channel.php:608 -msgid "Must be greater than 0" -msgstr "Должно быть больше 0" - -#: ../../Zotlabs/Module/Settings/Channel.php:614 -msgid "Advanced Account/Page Type Settings" -msgstr "Дополнительные настройки учётной записи / страницы" - -#: ../../Zotlabs/Module/Settings/Channel.php:615 -msgid "Change the behaviour of this account for special situations" -msgstr "Изменить поведение этого аккаунта в особых ситуациях" - -#: ../../Zotlabs/Module/Settings/Channel.php:617 -msgid "Miscellaneous Settings" -msgstr "Дополнительные настройки" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 -msgid "Default photo upload folder" -msgstr "Каталог загрузки фотографий по умолчанию" - -#: ../../Zotlabs/Module/Settings/Channel.php:618 -#: ../../Zotlabs/Module/Settings/Channel.php:619 -msgid "%Y - current year, %m - current month" -msgstr "%Y - текущий год, %y - текущий месяц" - -#: ../../Zotlabs/Module/Settings/Channel.php:619 -msgid "Default file upload folder" -msgstr "Каталог загрузки файлов по умолчанию" - -#: ../../Zotlabs/Module/Settings/Channel.php:621 -msgid "Personal menu to display in your channel pages" -msgstr "Персональное меню для отображения на странице вашего канала" - -#: ../../Zotlabs/Module/Settings/Channel.php:623 -msgid "Remove this channel." -msgstr "Удалить этот канал." - -#: ../../Zotlabs/Module/Settings/Channel.php:624 -msgid "Firefox Share $Projectname provider" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Channel.php:625 -msgid "Start calendar week on Monday" -msgstr "Начинать календарную неделю с понедельника" - -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "Обновлены настройки слайдера cходства." - -#: ../../Zotlabs/Module/Settings/Featured.php:38 -msgid "No feature settings configured" -msgstr "Параметры функций не настроены" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "Максимальный уровень сходства по умолчанию." - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "0-99 (по умолчанию 99)" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "Минимальный уровень сходства по умолчанию." - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "0-99 (по умолчанию 0)" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "Настройки слайдера сходства" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 -msgid "Addon Settings" -msgstr "Настройки расширений" - -#: ../../Zotlabs/Module/Settings/Featured.php:68 -msgid "Please save/submit changes to any panel before opening another." -msgstr "Пожалуйста сохраните / отправьте изменения на панели прежде чем открывать другую." - -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "Не действительный адрес email." - -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." -msgstr "Защищенный адрес электронной почты. Нельзя изменить." - -#: ../../Zotlabs/Module/Settings/Account.php:32 -msgid "System failure storing new email. Please try again." -msgstr "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз." - -#: ../../Zotlabs/Module/Settings/Account.php:40 -msgid "Technical skill level updated" -msgstr "Уровень технических навыков обновлён" - -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "Не удалось выполнить проверку пароля." - -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." -msgstr "Пароли не совпадают. Пароль не изменён." - -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Пустые пароли не допускаются. Пароль не изменён." - -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." -msgstr "Пароль изменен." - -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." -msgstr "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз." - -#: ../../Zotlabs/Module/Settings/Account.php:112 -msgid "Account Settings" -msgstr "Настройки аккаунта" - -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" -msgstr "Текущий пароль" - -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" -msgstr "Введите новый пароль:" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" -msgstr "Подтвердите новый пароль:" - -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" -msgstr "Оставьте поля пустыми до измнения" - -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" -msgstr "Удалить этот аккаунт включая все каналы" - -#: ../../Zotlabs/Module/Settings/Display.php:139 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (экспериментальный)" - -#: ../../Zotlabs/Module/Settings/Display.php:187 -msgid "Display Settings" -msgstr "Настройки отображения" - -#: ../../Zotlabs/Module/Settings/Display.php:188 -msgid "Theme Settings" -msgstr "Настройки темы" - -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Custom Theme Settings" -msgstr "Дополнительные настройки темы" - -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Content Settings" -msgstr "Настройки содержимого" - -#: ../../Zotlabs/Module/Settings/Display.php:196 -msgid "Display Theme:" -msgstr "Тема отображения:" - -#: ../../Zotlabs/Module/Settings/Display.php:197 -msgid "Select scheme" -msgstr "Выбрать схему" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Preload images before rendering the page" -msgstr "Предзагрузка изображений перед обработкой страницы" - -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" -msgstr "Субъективное время загрузки страницы будет длиннее, но страница будет готова при отображении" - -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Enable user zoom on mobile devices" -msgstr "Включить масштабирование на мобильных устройствах" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Update browser every xx seconds" -msgstr "Обновление браузера каждые N секунд" - -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Минимум 10 секунд, без максимума" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum number of conversations to load at any time:" -msgstr "Максимальное количество бесед для загрузки одновременно:" - -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Maximum of 100 items" -msgstr "Максимум 100 элементов" - -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Show emoticons (smilies) as images" -msgstr "Показывать эмотиконы (смайлики) как изображения" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Provide channel menu in navigation bar" -msgstr "Показывать меню канала в панели навигации" - -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Default: channel menu located in app menu" -msgstr "По умолчанию каналы расположены в меню приложения" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Manual conversation updates" -msgstr "Обновление бесед вручную" - -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Default is on, turning this off may increase screen jumping" -msgstr "Включено по умолчанию, выключение может привести к рывкам в отображении" - -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Link post titles to source" -msgstr "Ссылки на источник заголовков публикаций" - -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "System Page Layout Editor - (advanced)" -msgstr "Системный редактор макета страницы - (продвинутый)" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Use blog/list mode on channel page" -msgstr "Использовать режим блога / списка на странице канала" - -#: ../../Zotlabs/Module/Settings/Display.php:210 -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "(comments displayed separately)" -msgstr "(комментарии отображаются отдельно)" - -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on grid page" -msgstr "Использовать режим блога / списка на странице матрицы" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Channel page max height of content (in pixels)" -msgstr "Максимальная высота содержания канала (в пикселях)" - -#: ../../Zotlabs/Module/Settings/Display.php:212 -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "click to expand content exceeding this height" -msgstr "нажмите, чтобы увеличить содержимое, превышающее эту высоту" - -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "Grid page max height of content (in pixels)" -msgstr "Максимальная высота содержания на страницах матрицы (в пикселях)" - -#: ../../Zotlabs/Module/Settings/Permcats.php:23 -msgid "Permission Name is required." -msgstr "Требуется имя разрешения" - -#: ../../Zotlabs/Module/Settings/Permcats.php:42 -msgid "Permission category saved." -msgstr "Категория разрешения сохранена." - -#: ../../Zotlabs/Module/Settings/Permcats.php:66 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "Используйте эту форму для создания правил разрешений для различных групп людей и контактов." - -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "Permission Name" -msgstr "Имя разрешения" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:36 -msgid "Name and Secret are required" -msgstr "Требуются имя и код" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:84 -msgid "Add OAuth2 application" -msgstr "Добавить приложение OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:87 -#: ../../Zotlabs/Module/Settings/Oauth2.php:115 -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -msgid "Name of application" -msgstr "Название приложения" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:88 -#: ../../Zotlabs/Module/Settings/Oauth2.php:116 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Сгенерирован автоматические - измените если требуется. Макс. длина 20" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Redirect" -msgstr "Перенаправление" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:89 -#: ../../Zotlabs/Module/Settings/Oauth2.php:117 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" -msgstr "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -msgid "Grant Types" -msgstr "Разрешить типы" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:90 -#: ../../Zotlabs/Module/Settings/Oauth2.php:91 -#: ../../Zotlabs/Module/Settings/Oauth2.php:118 -#: ../../Zotlabs/Module/Settings/Oauth2.php:119 -msgid "leave blank unless your application sepcifically requires this" -msgstr "оставьте пустыми до тех пока ваше приложение не требует этого" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:91 -#: ../../Zotlabs/Module/Settings/Oauth2.php:119 -msgid "Authorization scope" -msgstr "Область полномочий" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:103 -msgid "OAuth2 Application not found." -msgstr "Приложение OAuth2 не найдено." - -#: ../../Zotlabs/Module/Settings/Oauth2.php:112 -#: ../../Zotlabs/Module/Settings/Oauth2.php:149 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -msgid "Add application" -msgstr "Добавить приложение" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:148 -msgid "Connected OAuth2 Apps" -msgstr "Подключённые приложения OAuth2" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:152 -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "Client key starts with" -msgstr "Ключ клиента начинаетя с" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:153 -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "No name" -msgstr "Без названия" - -#: ../../Zotlabs/Module/Settings/Oauth2.php:154 -#: ../../Zotlabs/Module/Settings/Oauth.php:154 -msgid "Remove authorization" -msgstr "Удалить разрешение" - -#: ../../Zotlabs/Module/Settings/Oauth.php:35 -msgid "Name is required" -msgstr "Необходимо имя" - -#: ../../Zotlabs/Module/Settings/Oauth.php:39 -msgid "Key and Secret are required" -msgstr "Требуются ключ и код" - -#: ../../Zotlabs/Module/Settings/Oauth.php:94 -#: ../../Zotlabs/Module/Settings/Oauth.php:120 -msgid "Icon url" -msgstr "URL значка" - -#: ../../Zotlabs/Module/Settings/Oauth.php:105 -msgid "Application not found." -msgstr "Приложение не найдено." - -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Connected Apps" -msgstr "Подключенные приложения" - -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Этот канал ограничен %d токенами" - -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Требуются имя и пароль." - -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Токен сохранён." - -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -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 private content." -msgstr "Используйте эту форму для создания идентификаторов временного доступа для сторонних пользователей. Эти идентификаторы могут использоваться в списках контроля доступа, и посетители могут использовать эти учетные данные для доступа к частному контенту." - -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -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 "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:" - -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Имя" - -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Пароль" - -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Срок действия (yyyy-mm-dd)" - -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Комната не найдена" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Покинуть комнату" - -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Удалить комнату" - -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Я сейчас отошёл" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Я на связи" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Запомнить эту комнату" - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Новый чат" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Название чата" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Завершение чатов (минут)" - -#: ../../Zotlabs/Module/Chat.php:250 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Чаты пользователя %1$s" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "No chatrooms available" -msgstr "Нет доступных чатов" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "Expiration" -msgstr "Срок действия" - -#: ../../Zotlabs/Module/Chat.php:260 -msgid "min" -msgstr "мин." - -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Веб-сайт:" - -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Удалённый канал [%s] (пока неизвестен на этом сайте)" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Оценка (эта информация общедоступна)" - -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Объясните свою оценку (необязательно; эта информация общедоступна)" - -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Загрузка URL возвращает ошибку: %1$s" - -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Местоположение не найдено" - -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Поиск местоположения не удался" - -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." -msgstr "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее" - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Синхронизировать местоположение" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Местоположений не найдено" - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Управление местоположением канала" - -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Синхронизировать" - -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Пожалуйста, подождите несколько минут между последовательными операциями." - -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." -msgstr "По возможности, очистите местоположение, войдя на этот веб-сайт / хаб и удалив свой канал." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Используйте эту форму, чтобы удалить местоположение, если хаб больше не функционирует." - -#: ../../Zotlabs/Module/Import.php:66 ../../Zotlabs/Module/Import_items.php:48 -msgid "Nothing to import." -msgstr "Ничего импортировать." - -#: ../../Zotlabs/Module/Import.php:81 ../../Zotlabs/Module/Import.php:97 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Unable to download data from old server" -msgstr "Невозможно загрузить данные со старого сервера" - -#: ../../Zotlabs/Module/Import.php:104 ../../Zotlabs/Module/Import_items.php:77 -msgid "Imported file is empty." -msgstr "Импортированный файл пуст." - -#: ../../Zotlabs/Module/Import.php:146 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Ваш класс обслуживания разрешает только %d каналов." - -#: ../../Zotlabs/Module/Import.php:173 -msgid "No channel. Import failed." -msgstr "Канала нет. Импорт невозможен." - -#: ../../Zotlabs/Module/Import.php:541 -msgid "You must be logged in to use this feature." -msgstr "Вы должны войти в систему, чтобы использовать эту функцию." - -#: ../../Zotlabs/Module/Import.php:546 -msgid "Import Channel" -msgstr "Импортировать канал" - -#: ../../Zotlabs/Module/Import.php:547 -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:548 -#: ../../Zotlabs/Module/Import_items.php:127 -msgid "File to Upload" -msgstr "Файл для загрузки" - -#: ../../Zotlabs/Module/Import.php:549 -msgid "Or provide the old server/hub details" -msgstr "или предоставьте данные старого сервера" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Ваш старый адрес идентичности (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Ваш старый адрес электронной почты" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Ваш старый пароль" - -#: ../../Zotlabs/Module/Import.php:554 -msgid "Import a few months of posts if possible (limited by available memory" -msgstr "Импортировать несколько месяцев публикаций если возможно (ограничено доступной памятью)" - -#: ../../Zotlabs/Module/Import.php:556 -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 "Для любого варианта, пожалуйста, выберите, следует ли сделать этот хаб вашим новым основным адресом, или ваше прежнее местоположение должно продолжить выполнять эту роль. Вы сможете отправлять сообщения из любого местоположения, но только одно может быть помечено как основное место для файлов, фотографий и мультимедиа." - -#: ../../Zotlabs/Module/Import.php:558 -msgid "Make this hub my primary location" -msgstr "Сделать этот хаб главным" - -#: ../../Zotlabs/Module/Import.php:559 -msgid "Move this channel (disable all previous locations)" -msgstr "Переместить это канал (отключить все предыдущие месторасположения)" - -#: ../../Zotlabs/Module/Import.php:560 -msgid "Use this channel nickname instead of the one provided" -msgstr "Использовать псевдоним этого канала вместо предоставленного" - -#: ../../Zotlabs/Module/Import.php:560 -msgid "" -"Leave blank to keep your existing channel nickname. You will be randomly " -"assigned a similar nickname if either name is already allocated on this site." -msgstr "Оставьте пустым для сохранения существующего псевдонима канала. Вам будет случайным образом назначен похожий псевдоним если такое имя уже выделено на этом сайте." - -#: ../../Zotlabs/Module/Import.php:562 -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/Viewconnections.php:65 -msgid "No connections." -msgstr "Контактов нет." - -#: ../../Zotlabs/Module/Viewconnections.php:83 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Посетить %s ​​профиль [%s]" - -#: ../../Zotlabs/Module/Viewconnections.php:113 -msgid "View Connections" -msgstr "Просмотр контактов" - -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Ошибка аутентификации." - -#: ../../Zotlabs/Module/New_channel.php:156 -msgid "Your real name is recommended." -msgstr "Рекомендуется использовать ваше настоящее имя." - -#: ../../Zotlabs/Module/New_channel.php:157 -msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" -msgstr "Примеры: \"Иван Иванов\", \"Оксана и кони\", \"Футбол\", \"Тимур и его команда\"" - -#: ../../Zotlabs/Module/New_channel.php:162 -msgid "" -"This will be used to create a unique network address (like an email address)." -msgstr "Это будет использовано для создания уникального сетевого адреса (наподобие email)." - -#: ../../Zotlabs/Module/New_channel.php:164 -msgid "Allowed characters are a-z 0-9, - and _" -msgstr "Разрешённые символы a-z 0-9, - и _" - -#: ../../Zotlabs/Module/New_channel.php:174 -msgid "Channel name" -msgstr "Название канала" - -#: ../../Zotlabs/Module/New_channel.php:176 -#: ../../Zotlabs/Module/Register.php:265 -msgid "Choose a short nickname" -msgstr "Выберите короткий псевдоним" - -#: ../../Zotlabs/Module/New_channel.php:177 -msgid "" -"Select a channel permission role compatible with your usage needs and " -"privacy requirements." -msgstr "Выберите разрешения для канала в соответствии с вашими потребностями и требованиями безопасности." - -#: ../../Zotlabs/Module/New_channel.php:177 -#: ../../Zotlabs/Module/Register.php:266 -msgid "Read more about channel permission roles" -msgstr "Прочитать больше о разрешениях для каналов" - -#: ../../Zotlabs/Module/New_channel.php:180 -msgid "Create a Channel" -msgstr "Создать канал" - -#: ../../Zotlabs/Module/New_channel.php:181 -msgid "" -"A channel is a unique network identity. It can represent a person (social " -"network profile), a forum (group), a business or celebrity page, a newsfeed, " -"and many other things." -msgstr "Канал это уникальная сетевая идентичность. Он может представлять человека (профиль в социальной сети), форум или группу, бизнес или страницу знаменитости, новостную ленту и многие другие вещи." - -#: ../../Zotlabs/Module/New_channel.php:182 -msgid "" -"or import an existing channel from another location." -msgstr "или импортировать существующий канал из другого места." - -#: ../../Zotlabs/Module/New_channel.php:187 -msgid "Validate" -msgstr "Проверить" - -#: ../../Zotlabs/Module/Apps.php:53 -msgid "Manage apps" -msgstr "Управление приложениями" - -#: ../../Zotlabs/Module/Apps.php:54 -msgid "Create new app" -msgstr "Создать новое приложение" - -#: ../../Zotlabs/Module/Directory.php:106 -msgid "No default suggestions were found." -msgstr "Предложений по умолчанию не найдено." - -#: ../../Zotlabs/Module/Directory.php:255 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d оценка" -msgstr[1] "%d оценки" -msgstr[2] "%d оценок" - -#: ../../Zotlabs/Module/Directory.php:266 -msgid "Gender: " -msgstr "Пол:" - -#: ../../Zotlabs/Module/Directory.php:268 -msgid "Status: " -msgstr "Статус:" - -#: ../../Zotlabs/Module/Directory.php:270 -msgid "Homepage: " -msgstr "Домашняя страница:" - -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Description:" -msgstr "Описание:" - -#: ../../Zotlabs/Module/Directory.php:339 -msgid "Public Forum:" -msgstr "Публичный форум:" - -#: ../../Zotlabs/Module/Directory.php:342 -msgid "Keywords: " -msgstr "Ключевые слова:" - -#: ../../Zotlabs/Module/Directory.php:345 -msgid "Don't suggest" -msgstr "Не предлагать" - -#: ../../Zotlabs/Module/Directory.php:347 -msgid "Common connections (estimated):" -msgstr "Общие контакты (оценочно):" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Global Directory" -msgstr "Глобальный каталог" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Local Directory" -msgstr "Локальный каталог" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Finding:" -msgstr "Поиск:" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "next page" -msgstr "следующая страница" - -#: ../../Zotlabs/Module/Directory.php:407 -msgid "previous page" -msgstr "предыдущая страница" - -#: ../../Zotlabs/Module/Directory.php:408 -msgid "Sort options" -msgstr "Параметры сортировки" - -#: ../../Zotlabs/Module/Directory.php:409 -msgid "Alphabetic" -msgstr "По алфавиту" - -#: ../../Zotlabs/Module/Directory.php:410 -msgid "Reverse Alphabetic" -msgstr "Против алфавита" - -#: ../../Zotlabs/Module/Directory.php:411 -msgid "Newest to Oldest" -msgstr "От новых к старым" - -#: ../../Zotlabs/Module/Directory.php:412 -msgid "Oldest to Newest" -msgstr "От старых к новым" - -#: ../../Zotlabs/Module/Directory.php:429 -msgid "No entries (some entries may be hidden)." -msgstr "Нет записей (некоторые записи могут быть скрыты)." - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Enter a folder name" -msgstr "Введите название каталога" - -#: ../../Zotlabs/Module/Filer.php:52 -msgid "or select an existing folder (doubleclick)" -msgstr "или выберите существующий каталог (двойной щелчок)" - -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" -msgstr "Неверное сообщение" - -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" -msgstr "Ничего не найдено." - -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" -msgstr "синхронизация канала завершена" - -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" -msgstr "в очереди" - -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" -msgstr "опубликовано" - -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" -msgstr "принято к доставке" - -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" -msgstr "обновлено" - -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" -msgstr "обновление игнорируется" - -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" -msgstr "доступ запрещен" - -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" -msgstr "получатель не найден" - -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" -msgstr "почта отозвана" - -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" -msgstr "получено дублирующее сообщение" - -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" -msgstr "почта доставлен" - -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Отчёт о доставке для %1$s" - -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" -msgstr "Доставить повторно" - -#: ../../Zotlabs/Module/Network.php:116 -msgid "No such group" -msgstr "Нет такой группы" - -#: ../../Zotlabs/Module/Network.php:157 -msgid "No such channel" -msgstr "Нет такого канала" - -#: ../../Zotlabs/Module/Network.php:242 -msgid "Privacy group is empty" -msgstr "Группа безопасности пуста" - -#: ../../Zotlabs/Module/Network.php:253 -msgid "Privacy group: " -msgstr "Группа безопасности: " - -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Пожалуйста, войдите." - -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Ограничений класса обслуживание не найдено." - -#: ../../Zotlabs/Module/Cards.php:99 -msgid "Add Card" -msgstr "Добавить карточку" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of Pinned Navbar Apps" -msgstr "Изменить порядок приложений на панели навигации" - -#: ../../Zotlabs/Module/Apporder.php:44 -msgid "Change Order of App Tray Apps" -msgstr "Изменить порядок приложений в лотке" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "" -"Use arrows to move the corresponding app left (top) or right (bottom) in the " -"navbar" -msgstr "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации" - -#: ../../Zotlabs/Module/Apporder.php:45 -msgid "Use arrows to move the corresponding app up or down in the app tray" -msgstr "Используйте стрелки для перемещения приложения вверх или вниз в лотке" - -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра." - -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Пожалуйста, подтвердите согласие с \"Условиями обслуживания\". Регистрация не удалась." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Пароли не совпадают." - -#: ../../Zotlabs/Module/Register.php:132 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Регистрация завершена успешно. Для продолжения создайте свой первый канал..." - -#: ../../Zotlabs/Module/Register.php:135 -msgid "" -"Registration successful. Please check your email for validation instructions." -msgstr "Регистрация завершена успешно. Пожалуйста проверьте вашу электронную почту для подтверждения." - -#: ../../Zotlabs/Module/Register.php:142 -msgid "Your registration is pending approval by the site owner." -msgstr "Ваша регистрация ожидает одобрения администрации сайта." - -#: ../../Zotlabs/Module/Register.php:145 -msgid "Your registration can not be processed." -msgstr "Ваша регистрация не может быть обработана." - -#: ../../Zotlabs/Module/Register.php:192 -msgid "Registration on this hub is disabled." -msgstr "Регистрация на этом хабе отключена." - -#: ../../Zotlabs/Module/Register.php:201 -msgid "Registration on this hub is by approval only." -msgstr "Регистрация на этом хабе только по утверждению." - -#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 -msgid "Register at another affiliated hub." -msgstr "Зарегистрироваться на другом хабе." - -#: ../../Zotlabs/Module/Register.php:210 -msgid "Registration on this hub is by invitation only." -msgstr "Регистрация на этом хабе доступна только по приглашениям." - -#: ../../Zotlabs/Module/Register.php:221 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. " - -#: ../../Zotlabs/Module/Register.php:247 -#, php-format -msgid "I accept the %s for this website" -msgstr "Я принимаю %s для этого веб-сайта." - -#: ../../Zotlabs/Module/Register.php:254 -#, php-format -msgid "I am over %s years of age and accept the %s for this website" -msgstr "Мой возраст превышает %s лет и я принимаю %s для этого веб-сайта." - -#: ../../Zotlabs/Module/Register.php:259 -msgid "Your email address" -msgstr "Ваш адрес электронной почты" - -#: ../../Zotlabs/Module/Register.php:260 -msgid "Choose a password" -msgstr "Выберите пароль" - -#: ../../Zotlabs/Module/Register.php:261 -msgid "Please re-enter your password" -msgstr "Пожалуйста, введите пароль еще раз" - -#: ../../Zotlabs/Module/Register.php:262 -msgid "Please enter your invitation code" -msgstr "Пожалуйста, введите Ваш код приглашения" - -#: ../../Zotlabs/Module/Register.php:263 -msgid "Your Name" -msgstr "Ваше имя" - -#: ../../Zotlabs/Module/Register.php:263 -msgid "Real names are preferred." -msgstr "Предпочтительны реальные имена." - -#: ../../Zotlabs/Module/Register.php:265 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" -msgstr "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s" - -#: ../../Zotlabs/Module/Register.php:266 -msgid "" -"Select a channel permission role for your usage needs and privacy " -"requirements." -msgstr "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности." - -#: ../../Zotlabs/Module/Register.php:267 -msgid "no" -msgstr "нет" - -#: ../../Zotlabs/Module/Register.php:267 -msgid "yes" -msgstr "да" - -#: ../../Zotlabs/Module/Register.php:295 -msgid "" -"This site requires email verification. After completing this form, please " -"check your email for further instructions." -msgstr "Этот сайт требует проверку адреса электронной почты. После заполнения этой формы, пожалуйста, проверьте ваш почтовый ящик для дальнейших инструкций." - -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Этот параметр требует специальной обработки и редактирования и был заблокирован." - -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Редактор конфигурации" - -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please " -"leave this page unless you are comfortable with and knowledgeable about how " -"to correctly use this feature." -msgstr "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию." - -#: ../../Zotlabs/Module/Article_edit.php:128 -msgid "Edit Article" -msgstr "Редактировать статью" - -#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:123 -msgid "Not found" -msgstr "Не найдено." - -#: ../../Zotlabs/Module/Wiki.php:124 -msgid "Error retrieving wiki" -msgstr "Ошибка при получении Wiki" - -#: ../../Zotlabs/Module/Wiki.php:131 -msgid "Error creating zip file export folder" -msgstr "Ошибка при создании zip-файла при экспорте каталога" - -#: ../../Zotlabs/Module/Wiki.php:182 -msgid "Error downloading wiki: " -msgstr "Ошибка загрузки Wiki:" - -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Download" -msgstr "Загрузить" - -#: ../../Zotlabs/Module/Wiki.php:207 -msgid "Wiki name" -msgstr "Название Wiki" - -#: ../../Zotlabs/Module/Wiki.php:208 -msgid "Content type" -msgstr "Тип содержимого" - -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:286 -msgid "Type" -msgstr "Тип" - -#: ../../Zotlabs/Module/Wiki.php:211 -msgid "Any type" -msgstr "Любой тип" - -#: ../../Zotlabs/Module/Wiki.php:218 -msgid "Lock content type" -msgstr "Зафиксировать тип содержимого" - -#: ../../Zotlabs/Module/Wiki.php:219 -msgid "Create a status post for this wiki" -msgstr "Создать публикацию о статусе этой Wiki" - -#: ../../Zotlabs/Module/Wiki.php:220 -msgid "Edit Wiki Name" -msgstr "Редактировать наименование Wiki" - -#: ../../Zotlabs/Module/Wiki.php:262 -msgid "Wiki not found" -msgstr "Wiki не найдена" - -#: ../../Zotlabs/Module/Wiki.php:286 -msgid "Rename page" -msgstr "Переименовать страницу" - -#: ../../Zotlabs/Module/Wiki.php:307 -msgid "Error retrieving page content" -msgstr "Ошибка при получении содержимого страницы" - -#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 -msgid "New page" -msgstr "Новая страница" - -#: ../../Zotlabs/Module/Wiki.php:345 -msgid "Revision Comparison" -msgstr "Сравнение ревизий" - -#: ../../Zotlabs/Module/Wiki.php:346 -msgid "Revert" -msgstr "Вернуть" - -#: ../../Zotlabs/Module/Wiki.php:353 -msgid "Short description of your changes (optional)" -msgstr "Краткое описание ваших изменений (необязательно)" - -#: ../../Zotlabs/Module/Wiki.php:362 -msgid "Source" -msgstr "Источник" - -#: ../../Zotlabs/Module/Wiki.php:372 -msgid "New page name" -msgstr "Новое имя страницы" - -#: ../../Zotlabs/Module/Wiki.php:377 -msgid "Embed image from photo albums" -msgstr "Встроить изображение из фотоальбома" - -#: ../../Zotlabs/Module/Wiki.php:462 -msgid "Error creating wiki. Invalid name." -msgstr "Ошибка создания Wiki. Неверное имя." - -#: ../../Zotlabs/Module/Wiki.php:469 -msgid "A wiki with this name already exists." -msgstr "Wiki с таким именем уже существует." - -#: ../../Zotlabs/Module/Wiki.php:482 -msgid "Wiki created, but error creating Home page." -msgstr "Wiki создана, но возникла ошибка при создании домашней страницы" - -#: ../../Zotlabs/Module/Wiki.php:489 -msgid "Error creating wiki" -msgstr "Ошибка при создании Wiki" - -#: ../../Zotlabs/Module/Wiki.php:512 -msgid "Error updating wiki. Invalid name." -msgstr "Ошибка при обновлении Wiki. Неверное имя." - -#: ../../Zotlabs/Module/Wiki.php:532 -msgid "Error updating wiki" -msgstr "Ошибка при обновлении Wiki" - -#: ../../Zotlabs/Module/Wiki.php:547 -msgid "Wiki delete permission denied." -msgstr "Нет прав на удаление Wiki." - -#: ../../Zotlabs/Module/Wiki.php:557 -msgid "Error deleting wiki" -msgstr "Ошибка удаления Wiki" - -#: ../../Zotlabs/Module/Wiki.php:590 -msgid "New page created" -msgstr "Создана новая страница" - -#: ../../Zotlabs/Module/Wiki.php:711 -msgid "Cannot delete Home" -msgstr "Невозможно удалить домашнюю страницу" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Current Revision" -msgstr "Текущая ревизия" - -#: ../../Zotlabs/Module/Wiki.php:775 -msgid "Selected Revision" -msgstr "Выбранная ревизия" - -#: ../../Zotlabs/Module/Wiki.php:825 -msgid "You must be authenticated." -msgstr "Вы должны быть аутентифицированы." - -#: ../../Zotlabs/Module/Magic.php:76 -msgid "Hub not found." -msgstr "Узел не найден." - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Элемент недоступен." - -#: ../../Zotlabs/Module/Group.php:35 -msgid "Privacy group created." -msgstr "Группа безопасности создана." - -#: ../../Zotlabs/Module/Group.php:38 -msgid "Could not create privacy group." -msgstr "Не удалось создать группу безопасности." - -#: ../../Zotlabs/Module/Group.php:67 -msgid "Privacy group updated." -msgstr "Группа безопасности обновлена." - -#: ../../Zotlabs/Module/Group.php:114 -msgid "Add Group" -msgstr "Добавить группу" - -#: ../../Zotlabs/Module/Group.php:118 -msgid "Privacy group name" -msgstr "Имя группы безопасности" - -#: ../../Zotlabs/Module/Group.php:119 ../../Zotlabs/Module/Group.php:220 -msgid "Members are visible to other channels" -msgstr "Участники канала видимые для остальных" - -#: ../../Zotlabs/Module/Group.php:151 -msgid "Privacy group removed." -msgstr "Группа безопасности удалена." - -#: ../../Zotlabs/Module/Group.php:153 -msgid "Unable to remove privacy group." -msgstr "Ну удалось удалить группу безопасности." - -#: ../../Zotlabs/Module/Group.php:215 -#, php-format -msgid "Privacy Group: %s" -msgstr "Группа безопасности: %s" - -#: ../../Zotlabs/Module/Group.php:217 -msgid "Privacy group name: " -msgstr "Название группы безопасности: " - -#: ../../Zotlabs/Module/Group.php:222 -msgid "Delete Group" -msgstr "Удалить группу" - -#: ../../Zotlabs/Module/Group.php:232 -msgid "Group members" -msgstr "Члены группы" - -#: ../../Zotlabs/Module/Group.php:234 -msgid "Not in this group" -msgstr "Не в этой группе" - -#: ../../Zotlabs/Module/Group.php:266 -msgid "Click a channel to toggle membership" -msgstr "Нажмите на канал для просмотра членства" - -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 -msgid "Profile not found." -msgstr "Профиль не найден." - -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Профиль удален." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" -msgstr "Профиль -" - -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." -msgstr "Новый профиль создан." - -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." -msgstr "Профиль недоступен для клонирования." - -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Профиль недоступен для экспорта." - -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." -msgstr "Требуется имя профиля." - -#: ../../Zotlabs/Module/Profiles.php:459 -msgid "Marital Status" -msgstr "Семейное положение" - -#: ../../Zotlabs/Module/Profiles.php:463 -msgid "Romantic Partner" -msgstr "Романтический партнер" - -#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 -msgid "Likes" -msgstr "Нравится" - -#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 -msgid "Dislikes" -msgstr "Не нравится" - -#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 -msgid "Work/Employment" -msgstr "Работа / Занятость" - -#: ../../Zotlabs/Module/Profiles.php:478 -msgid "Religion" -msgstr "Религия" - -#: ../../Zotlabs/Module/Profiles.php:482 -msgid "Political Views" -msgstr "Политические взгляды" - -#: ../../Zotlabs/Module/Profiles.php:490 -msgid "Sexual Preference" -msgstr "Сексуальная ориентация" - -#: ../../Zotlabs/Module/Profiles.php:494 -msgid "Homepage" -msgstr "Домашняя страница" - -#: ../../Zotlabs/Module/Profiles.php:498 -msgid "Interests" -msgstr "Интересы" - -#: ../../Zotlabs/Module/Profiles.php:594 -msgid "Profile updated." -msgstr "Профиль обновлен." - -#: ../../Zotlabs/Module/Profiles.php:678 -msgid "Hide your connections list from viewers of this profile" -msgstr "Скрывать от просмотра ваш список контактов в этом профиле" - -#: ../../Zotlabs/Module/Profiles.php:722 -msgid "Edit Profile Details" -msgstr "Редактирование профиля" - -#: ../../Zotlabs/Module/Profiles.php:724 -msgid "View this profile" -msgstr "Посмотреть этот профиль" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Profile Tools" -msgstr "Инструменты профиля" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Change cover photo" -msgstr "Изменить фотографию обложки" - -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Create a new profile using these settings" -msgstr "Создать новый профиль со следующими настройками" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Clone this profile" -msgstr "Клонировать этот профиль" - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Delete this profile" -msgstr "Удалить этот профиль" - -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Add profile things" -msgstr "Добавить в профиль" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Relationship" -msgstr "Отношения" - -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Import profile from file" -msgstr "Импортировать профиль из файла" - -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Export profile to file" -msgstr "Экспортировать профиль в файл" - -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Your gender" -msgstr "Ваш пол" - -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Marital status" -msgstr "Семейное положение" - -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Sexual preference" -msgstr "Сексуальная ориентация" - -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "Profile name" -msgstr "Имя профиля" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "This is your default profile." -msgstr "Это ваш профиль по умолчанию." - -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Your full name" -msgstr "Ваше полное имя" - -#: ../../Zotlabs/Module/Profiles.php:750 -msgid "Title/Description" -msgstr "Заголовок / описание" - -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Street address" -msgstr "Улица, дом, квартира" - -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Locality/City" -msgstr "Населенный пункт / город" - -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Region/State" -msgstr "Регион / Область" - -#: ../../Zotlabs/Module/Profiles.php:756 -msgid "Postal/Zip code" -msgstr "Почтовый индекс" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Who (if applicable)" -msgstr "Кто (если применимо)" - -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Примеры: ivan1990, Ivan Petrov, ivan@example.com" - -#: ../../Zotlabs/Module/Profiles.php:763 -msgid "Since (date)" -msgstr "С (дата)" - -#: ../../Zotlabs/Module/Profiles.php:766 -msgid "Tell us about yourself" -msgstr "Расскажите нам о себе" - -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Hometown" -msgstr "Родной город" - -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Political views" -msgstr "Политические взгляды" - -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Religious views" -msgstr "Религиозные взгляды" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Keywords used in directory listings" -msgstr "Ключевые слова для участия в каталоге" - -#: ../../Zotlabs/Module/Profiles.php:771 -msgid "Example: fishing photography software" -msgstr "Например: fishing photography software" - -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Musical interests" -msgstr "Музыкальные интересы" - -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Books, literature" -msgstr "Книги, литература" - -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Television" -msgstr "Телевидение" - -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Кино / танцы / культура / развлечения" - -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Hobbies/Interests" -msgstr "Хобби / интересы" - -#: ../../Zotlabs/Module/Profiles.php:779 -msgid "Love/Romance" -msgstr "Любовь / романтические отношения" - -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "School/Education" -msgstr "Школа / образование" - -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "Contact information and social networks" -msgstr "Информация и социальные сети для связи" - -#: ../../Zotlabs/Module/Profiles.php:783 -msgid "My other channels" -msgstr "Мои другие контакты" - -#: ../../Zotlabs/Module/Profiles.php:785 -msgid "Communications" -msgstr "Связи" - -#: ../../Zotlabs/Module/Email_resend.php:30 -msgid "Email verification resent" -msgstr "Сообщение для проверки email отправлено повторно" - -#: ../../Zotlabs/Module/Email_resend.php:33 -msgid "Unable to resend email verification message." -msgstr "Невозможно повторно отправить сообщение для проверки email" - -#: ../../Zotlabs/Module/Profile.php:93 -msgid "vcard" -msgstr "vCard" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Неверный идентификатор профиля" - -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" -msgstr "Редактор видимости профиля" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." -msgstr "Нажмите на контакт, чтобы добавить или удалить." - -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" -msgstr "Видно" - -#: ../../Zotlabs/Module/Thing.php:120 -msgid "Thing updated" -msgstr "Обновлено" - -#: ../../Zotlabs/Module/Thing.php:172 -msgid "Object store: failed" -msgstr "Хранлищие объектов: неудача" - -#: ../../Zotlabs/Module/Thing.php:176 -msgid "Thing added" -msgstr "Добавлено" - -#: ../../Zotlabs/Module/Thing.php:202 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "" - -#: ../../Zotlabs/Module/Thing.php:265 -msgid "Show Thing" -msgstr "Показать" - -#: ../../Zotlabs/Module/Thing.php:272 -msgid "item not found." -msgstr "Элемент не найден." - -#: ../../Zotlabs/Module/Thing.php:305 -msgid "Edit Thing" -msgstr "Редактировать" - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 -msgid "Select a profile" -msgstr "Выбрать профиль" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Post an activity" -msgstr "Опубликовать мероприятие" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 -msgid "Only sends to viewers of the applicable profile" -msgstr "Отправлять только подходящий профиль" - -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 -msgid "Name of thing e.g. something" -msgstr "Наименование, например \"нечто\"" - -#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 -msgid "URL of thing (optional)" -msgstr "URL (необязательно)" - -#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 -msgid "URL for photo of thing (optional)" -msgstr "URL для фотографии (необязательно)" - -#: ../../Zotlabs/Module/Thing.php:362 -msgid "Add Thing to your Profile" -msgstr "Добавить к вашему профилю" - -#: ../../Zotlabs/Module/Display.php:394 -msgid "Article" -msgstr "Статья" - -#: ../../Zotlabs/Module/Display.php:446 -msgid "Item has been removed." -msgstr "Элемент был удалён." - -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Добро пожаловать в %s" - -#: ../../Zotlabs/Module/Cloud.php:129 -msgid "Please refresh page" -msgstr "Пожалуйста обновите страницу" - -#: ../../Zotlabs/Module/Cloud.php:132 -msgid "Unknown error" -msgstr "Неизвестная ошибка" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Действительный аккаунт не найден." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Запрос на сброс пароля отправлен. Проверьте вашу электронную почту." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" -msgstr "Участник сайта (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" -msgstr "Запрошен сброс пароля на %s" - -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Запрос не может быть проверен. (Вы могли отправить его раньше). Сброс пароля не возможен." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." -msgstr "Ваш пароль в соответствии с просьбой сброшен." - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" -msgstr "Ваш новый пароль" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" -msgstr "Сохраните ваш новый пароль и затем" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" -msgstr "нажмите здесь чтобы войти" - -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ваш пароль может быть изменён на странице Настройки после успешного входа." - -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" -msgstr "Пароль был изменен на %s" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" -msgstr "Забыли ваш пароль?" - -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. " - -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" -msgstr "Адрес электронной почты" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Установить текущее настроение и рассказать друзьям" - -#: ../../Zotlabs/Module/Import_items.php:93 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Предупреждение: Версия базы данных отличается от %1$d обновления." - -#: ../../Zotlabs/Module/Import_items.php:108 -msgid "Import completed" -msgstr "Импорт завершён." - -#: ../../Zotlabs/Module/Import_items.php:125 -msgid "Import Items" -msgstr "Импортировать объекты" - -#: ../../Zotlabs/Module/Import_items.php:126 -msgid "Use this form to import existing posts and content from an export file." -msgstr "Используйте эту форму для импорта существующих публикаций и содержимого из файла." - -#: ../../Zotlabs/Module/Chanview.php:139 -msgid "toggle full screen mode" -msgstr "переключение полноэкранного режима" - -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 -msgid "parent" -msgstr "источник" - -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Субъект" - -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Адресная книга" - -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "План занятий входящий" - -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "План занятий исходящий" - -#: ../../Zotlabs/Storage/Browser.php:273 -msgid "Total" -msgstr "Всего" - -#: ../../Zotlabs/Storage/Browser.php:275 -msgid "Shared" -msgstr "Общие" - -#: ../../Zotlabs/Storage/Browser.php:277 -msgid "Add Files" -msgstr "Добавить файлы" - -#: ../../Zotlabs/Storage/Browser.php:361 -#, php-format -msgid "You are using %1$s of your available file storage." -msgstr "Вы используете %1$s из доступного вам хранилища файлов." - -#: ../../Zotlabs/Storage/Browser.php:366 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" -msgstr "Вы используете %1$s из %2$s доступного хранилища файлов (%3$s%)." - -#: ../../Zotlabs/Storage/Browser.php:377 -msgid "WARNING:" -msgstr "Предупреждение:" - -#: ../../Zotlabs/Storage/Browser.php:389 -msgid "Create new folder" -msgstr "Создать новую папку" - -#: ../../Zotlabs/Storage/Browser.php:391 -msgid "Upload file" -msgstr "Загрузить файл" - -#: ../../Zotlabs/Storage/Browser.php:404 -msgid "Drop files here to immediately upload" -msgstr "Поместите файлы сюда для немедленной загрузки" diff --git a/view/ru/hstrings.php b/view/ru/hstrings.php deleted file mode 100644 index b37c85888..000000000 --- a/view/ru/hstrings.php +++ /dev/null @@ -1,3381 +0,0 @@ -=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : 2)); -}} -App::$rtl = 0; -App::$strings["Source channel not found."] = "Канал-источник не найден."; -App::$strings["lonely"] = "одинокий"; -App::$strings["drunk"] = "пьяный"; -App::$strings["horny"] = "возбуждённый"; -App::$strings["stoned"] = "под кайфом"; -App::$strings["fucked up"] = "облажался"; -App::$strings["clusterfucked"] = "в полной заднице"; -App::$strings["crazy"] = "сумасшедший"; -App::$strings["hurt"] = "обиженный"; -App::$strings["sleepy"] = "сонный"; -App::$strings["grumpy"] = "сердитый"; -App::$strings["high"] = "кайфует"; -App::$strings["semi-conscious"] = "в полубезсознании"; -App::$strings["in love"] = "влюблённый"; -App::$strings["in lust"] = "похотливый"; -App::$strings["naked"] = "обнажённый"; -App::$strings["stinky"] = "вонючий"; -App::$strings["sweaty"] = "потный"; -App::$strings["bleeding out"] = "истекающий кровью"; -App::$strings["victorious"] = "победивший"; -App::$strings["defeated"] = "проигравший"; -App::$strings["envious"] = "завидует"; -App::$strings["jealous"] = "ревнует"; -App::$strings["Post to Dreamwidth"] = "Публиковать в Dreamwidth"; -App::$strings["Enable Dreamwidth Post Plugin"] = "Включить плагин публикаций Dreamwidth"; -App::$strings["No"] = "Нет"; -App::$strings["Yes"] = "Да"; -App::$strings["Dreamwidth username"] = "Имя пользователя Dreamwidth"; -App::$strings["Dreamwidth password"] = "Пароль Dreamwidth"; -App::$strings["Post to Dreamwidth by default"] = "Публиковать в Dreamwidth по умолчанию"; -App::$strings["Dreamwidth Post Settings"] = "Настройки публикаций в Dreamwidth"; -App::$strings["Submit"] = "Отправить"; -App::$strings["Markdown"] = "Разметка"; -App::$strings["Use markdown for editing posts"] = "Использовать язык разметки для редактирования публикаций"; -App::$strings["You're welcome."] = "Пожалуйста."; -App::$strings["Ah shucks..."] = "О, чёрт..."; -App::$strings["Don't mention it."] = "Не стоит благодарности."; -App::$strings["<blush>"] = "<краснею>"; -App::$strings["Send test email"] = "Отправить тестовый email"; -App::$strings["No recipients found."] = "Получателей не найдено."; -App::$strings["Mail sent."] = "Сообщение отправлено"; -App::$strings["Sending of mail failed."] = "Не удалось отправить сообщение."; -App::$strings["Mail Test"] = "Тестовое сообщение"; -App::$strings["Message subject"] = "Тема сообщения"; -App::$strings["Project Servers and Resources"] = "Серверы и ресурсы проекта"; -App::$strings["Project Creator and Tech Lead"] = "Создатель проекта и технический руководитель"; -App::$strings["Admin, developer, directorymin, support bloke"] = "Администратор, разработчик, администратор каталога, поддержка"; -App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "И сотни других людей и организаций которые помогали в создании Hubzilla."; -App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Проекты Redmatrix / Hubzilla предоставляются, в основном, добровольцами, которые предоставляют свое время и опыт и, часто, оплачивают из своего кармана услуги, которыми они делятся с другими."; -App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Здесь нет корпоративного финансирования и рекламы, мы не собираем и не продаем вашу личную информацию. (Мы не контролируем вашу личную информацию - это делаете вы.)"; -App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Помогите поддержать нашу новаторскую работу в областях децентрализации, веб-идентификации и конфиденциальности."; -App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "В ваших пожертвованиях поддерживают серверы и службы, а также помогают нам предоставлять новые возможности и продолжать развитие."; -App::$strings["Donate"] = "Пожертвовать"; -App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Выберите проект, разработчика или общедоступный узел для поддержки в форме единоразового пожертвования"; -App::$strings["Donate Now"] = "Пожертвовать сейчас"; -App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "или станьте спонсором проекта (только для Hubzilla)"; -App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Пожалуйста, если желаете, укажите ваше имя для отображения в списке спонсоров."; -App::$strings["Sponsor"] = "Спонсор"; -App::$strings["Special thanks to: "] = "Особые благодарности:"; -App::$strings["Currently blocked"] = "В настоящее время заблокирован"; -App::$strings["No channels currently blocked"] = "В настоящее время никакие каналы не блокируются"; -App::$strings["Remove"] = "Удалить"; -App::$strings["Superblock Settings"] = "Настройки Superblock"; -App::$strings["Block Completely"] = "Заблокировать полностью"; -App::$strings["superblock settings updated"] = "Настройки Superblock обновлены."; -App::$strings["XMPP settings updated."] = "Настройки XMPP обновлены."; -App::$strings["Enable Chat"] = "Включить чат"; -App::$strings["Individual credentials"] = "Индивидуальные разрешения"; -App::$strings["Jabber BOSH server"] = "Сервер Jabber BOSH"; -App::$strings["XMPP Settings"] = "Настройки XMPP"; -App::$strings["Save Settings"] = "Сохранить настройки"; -App::$strings["Jabber BOSH host"] = "Узел Jabber BOSH"; -App::$strings["Use central userbase"] = "Использовать центральную базу данных"; -App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Если включено, участники автоматически войдут на сервер ejabberd, который должен быть установлен на этом компьютере с синхронизированными учетными данными через скрипт \"auth_ejabberd.php\"."; -App::$strings["Settings updated."] = "Настройки обновлены."; -App::$strings["Send email to all members"] = "Отправить email всем участникам"; -App::$strings["%s Administrator"] = "администратор %s"; -App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d из %2\$d сообщений отправлено."; -App::$strings["Send email to all hub members."] = "Отправить email всем участникам узла."; -App::$strings["Sender Email address"] = "Адрес электронной почты отправителя"; -App::$strings["Test mode (only send to hub administrator)"] = "Тестовый режим (отправка только администратору узла)"; -App::$strings["Report Bug"] = "Сообщить об ошибке"; -App::$strings["Post to Insanejournal"] = "Опубликовать в InsaneJournal"; -App::$strings["Enable InsaneJournal Post Plugin"] = "Включить плагин публикаций InsaneJournal"; -App::$strings["InsaneJournal username"] = "Имя пользователя InsaneJournal"; -App::$strings["InsaneJournal password"] = "Пароль InsaneJournal"; -App::$strings["Post to InsaneJournal by default"] = "Публиковать в InsaneJournal по умолчанию"; -App::$strings["InsaneJournal Post Settings"] = "Настройки публикаций в InsaneJournal"; -App::$strings["Insane Journal Settings saved."] = "Настройки InsaneJournal сохранены."; -App::$strings["Hubzilla Directory Stats"] = "Каталог статистики Hubzilla"; -App::$strings["Total Hubs"] = "Всего хабов"; -App::$strings["Hubzilla Hubs"] = "Хабы Hubzilla"; -App::$strings["Friendica Hubs"] = "Хабы Friendica"; -App::$strings["Diaspora Pods"] = "Стручки Diaspora"; -App::$strings["Hubzilla Channels"] = "Каналы Hubzilla"; -App::$strings["Friendica Channels"] = "Каналы Friendica"; -App::$strings["Diaspora Channels"] = "Каналы Diaspora"; -App::$strings["Aged 35 and above"] = "Возраст 35 и выше"; -App::$strings["Aged 34 and under"] = "Возраст 34 и ниже"; -App::$strings["Average Age"] = "Средний возраст"; -App::$strings["Known Chatrooms"] = "Известные чаты"; -App::$strings["Known Tags"] = "Известные теги"; -App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Обратите внимание, что статистика Diaspora и Friendica это только те, о которых ** этот каталог ** знает, а не все известные в сети. Это также относится и к чатам."; -App::$strings["Invalid game."] = "Недействительная игра"; -App::$strings["You are not a player in this game."] = "Вы не играете в эту игру."; -App::$strings["You must be a local channel to create a game."] = "Ваш канал должен быть локальным чтобы создать игру."; -App::$strings["You must select one opponent that is not yourself."] = "Вы должны выбрать противника который не является вами."; -App::$strings["Random color chosen."] = "Выбран случайный цвет."; -App::$strings["Error creating new game."] = "Ошибка создания новой игры."; -App::$strings["Requested channel is not available."] = "Запрошенный канал не доступен."; -App::$strings["You must select a local channel /chess/channelname"] = "Вы должны выбрать локальный канал /chess/channelname"; -App::$strings["You must be logged in to see this page."] = "Вы должны авторизоваться, чтобы увидеть эту страницу."; -App::$strings["Enable notifications"] = "Включить оповещения"; -App::$strings["Planets Settings updated."] = "Настройки Planets обновлены."; -App::$strings["Enable Planets Plugin"] = "Включить плагин Planets"; -App::$strings["Planets Settings"] = "Настройки Planets"; -App::$strings["Post to Libertree"] = "Опубликовать в Libertree"; -App::$strings["Enable Libertree Post Plugin"] = "Включить плагин публикаций Libertree"; -App::$strings["Libertree API token"] = "Токен Libertree API"; -App::$strings["Libertree site URL"] = "URL сайта Libertree"; -App::$strings["Post to Libertree by default"] = "Публиковать в Libertree по умолчанию"; -App::$strings["Libertree Post Settings"] = "Настройки публикаций в Libertree"; -App::$strings["Libertree Settings saved."] = "Настройки Libertree сохранены."; -App::$strings["Only authenticate automatically to sites of your friends"] = "Автоматически аутентифицироватся только на сайтах ваших друзей"; -App::$strings["By default you are automatically authenticated anywhere in the network"] = "По умолчанию вы автоматически аутентифицируетесь во всей сети"; -App::$strings["Authchoose Settings"] = "Настройки выбора аутентификации"; -App::$strings["Atuhchoose Settings updated."] = "Настройки выбора аутентификации обновлены."; -App::$strings["Logfile archive directory"] = "Каталог архивирования журнала"; -App::$strings["Directory to store rotated logs"] = "Каталог для хранения заархивированных журналов"; -App::$strings["Logfile size in bytes before rotating"] = "Размер файла журнала в байтах для архивирования"; -App::$strings["Number of logfiles to retain"] = "Количество сохраняемых файлов журналов"; -App::$strings["QR code"] = "QR-код"; -App::$strings["QR Generator"] = "Генератор QR-кодов"; -App::$strings["Enter some text"] = "Введите любой текст"; -App::$strings["text to include in all outgoing posts from this site"] = "текст, который будет добавлен во все исходящие публикации с этого сайта"; -App::$strings["file"] = "файл"; -App::$strings["Permission denied"] = "Доступ запрещен"; -App::$strings["Redmatrix File Storage Import"] = "Импорт файлового хранилища Redmatrix"; -App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Это позволит импортировать все ваши файлы в Redmatrix в этот канал."; -App::$strings["Redmatrix Server base URL"] = "Базовый URL сервера Redmatrix"; -App::$strings["Redmatrix Login Username"] = "Имя пользователя Redmatrix"; -App::$strings["Redmatrix Login Password"] = "Пароль Redmatrix"; -App::$strings["Deactivate the feature"] = "Деактивировать функцию"; -App::$strings["Hide the button and show the smilies directly."] = "Скрыть кнопку и сразу показывать смайлики."; -App::$strings["Smileybutton Settings"] = "Настройки кнопки смайликов"; -App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения."; -App::$strings["Enable Content filter"] = "Включить фильтрацию содержимого"; -App::$strings["Comma separated list of keywords to hide"] = "Список ключевых слов для скрытия, через запятую"; -App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "слово, /регулярное_выражение/, lang=xx, lang!=xx"; -App::$strings["Not Safe For Work Settings"] = "Настройка \"Not Safe For Work\""; -App::$strings["General Purpose Content Filter"] = "Фильтр содержимого общего назначения"; -App::$strings["NSFW Settings saved."] = "Настройки NSFW сохранены."; -App::$strings["Possible adult content"] = "Возможно содержимое для взрослых"; -App::$strings["%s - view"] = "%s - просмотр"; -App::$strings["Flattr this!"] = ""; -App::$strings["Flattr widget settings updated."] = "Настройки виджета Flattr обновлены."; -App::$strings["Flattr user"] = "Пользователь Flattr"; -App::$strings["URL of the Thing to flattr"] = "URL ccылки на Flattr"; -App::$strings["If empty channel URL is used"] = "Если пусто, то используется URL канала"; -App::$strings["Title of the Thing to flattr"] = "Заголовок вещи на Flattr"; -App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Если пусто, то будет использовано \"Название канала Hubzilla\""; -App::$strings["Static or dynamic flattr button"] = "Статическая или динамическая кнопка Flattr"; -App::$strings["static"] = "статическая"; -App::$strings["dynamic"] = "динамическая"; -App::$strings["Alignment of the widget"] = "Выравнивание виджета"; -App::$strings["left"] = "слева"; -App::$strings["right"] = "справа"; -App::$strings["Enable Flattr widget"] = "Включить виджет Flattr"; -App::$strings["Flattr Widget Settings"] = "Настройки виджета Flattr"; -App::$strings["Permission denied."] = "Доступ запрещен."; -App::$strings["You are now authenticated to pumpio."] = "Вы аутентифицированы в Pump.io"; -App::$strings["return to the featured settings page"] = "Вернутся к странице настроек"; -App::$strings["Post to Pump.io"] = "Опубликовать в Pump.io"; -App::$strings["Pump.io servername"] = "Имя сервера Pump.io"; -App::$strings["Without \"http://\" or \"https://\""] = "Без \"http://\" или \"https://\""; -App::$strings["Pump.io username"] = "Имя пользователя Pump.io"; -App::$strings["Without the servername"] = "без имени сервера"; -App::$strings["You are not authenticated to pumpio"] = "Вы не аутентифицированы на Pump.io"; -App::$strings["(Re-)Authenticate your pump.io connection"] = "Аутентифицировать (повторно) ваше соединение с Pump.io"; -App::$strings["Enable pump.io Post Plugin"] = "Включить плагин публикаций Pump.io"; -App::$strings["Post to pump.io by default"] = "Публиковать в Pump.io по умолчанию"; -App::$strings["Should posts be public"] = "Публикации должны быть общедоступными"; -App::$strings["Mirror all public posts"] = "Отображать все общедоступные публикации"; -App::$strings["Pump.io Post Settings"] = "Настройки публикаций в Pump.io"; -App::$strings["PumpIO Settings saved."] = "Настройки публикаций в Pump.io сохранены."; -App::$strings["Save Bookmarks"] = "Сохранить закладки"; -App::$strings["Status:"] = "Статус:"; -App::$strings["Activate addon"] = "Активировать расширение"; -App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Скрыть виджет чата Jappixmini из веб-интерфейса"; -App::$strings["Jabber username"] = "Имя пользователя Jabber"; -App::$strings["Jabber server"] = "Сервер Jabber"; -App::$strings["Jabber BOSH host URL"] = "URL узла Jabber BOSH"; -App::$strings["Jabber password"] = "Пароль Jabber"; -App::$strings["Encrypt Jabber password with Hubzilla password"] = "Зашифровать пароль Jabber с помощью пароля Hubzilla"; -App::$strings["Recommended"] = "рекомендовано"; -App::$strings["Hubzilla password"] = "Пароль Hubzilla"; -App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Утверждать запросы на подписку от контактов Hubzilla автоматически"; -App::$strings["Purge internal list of jabber addresses of contacts"] = "Очистить внутренний список адресов контактов Jabber"; -App::$strings["Configuration Help"] = "Помощь по конфигурации"; -App::$strings["Add Contact"] = "Добавить контакт"; -App::$strings["Jappix Mini Settings"] = "Настройки Jappix Mini"; -App::$strings["Post to LiveJournal"] = "Опубликовать в LiveJournal"; -App::$strings["Enable LiveJournal Post Plugin"] = "Включить плагин публикаций LiveJournal"; -App::$strings["LiveJournal username"] = "Имя пользователя LiveJournal"; -App::$strings["LiveJournal password"] = "Пароль LiveJournal"; -App::$strings["Post to LiveJournal by default"] = "Публиковать в LiveJournal по умолчанию"; -App::$strings["LiveJournal Post Settings"] = "Настройки публикаций в LiveJournal"; -App::$strings["LiveJournal Settings saved."] = "Настройки LiveJournal сохранены."; -App::$strings["Errors encountered deleting database table "] = "Возникшие при удалении таблицы базы данных ошибки"; -App::$strings["Submit Settings"] = "Отправить настройки"; -App::$strings["Drop tables when uninstalling?"] = "Удалить таблицы при деинсталляции?"; -App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Если включено, то таблицы базы данных Rendezvous будут удалены при удалении плагина."; -App::$strings["Mapbox Access Token"] = "Токен доступа к Mapbox"; -App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Если вы введете токен доступа к Mapbox, он будет использоваться для извлечения фрагментов карты из Mapbox вместо стандартного сервера OpenStreetMap."; -App::$strings["Rendezvous"] = ""; -App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Этот идентификатор был удалён другим участником из-за неактивности. Пожалуйста нажмите кнопку \"Новый идентификатор\" для обновления страницы и получения нового идентификатора. Вы можете использовать то же имя."; -App::$strings["Welcome to Rendezvous!"] = "Добро пожаловать в Rendezvous!"; -App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Введите ваше имя для вступления в это Rendezvous. Для того, чтобы делиться вашим положением с другими участниками, нажмите \"GPS control\". Когда ваше местоположение определно, красная точка появится и остальные смогут увидеть вас на карте."; -App::$strings["Let's meet here"] = "Давайте встретимся здесь"; -App::$strings["Name"] = "Имя"; -App::$strings["Description"] = "Описание"; -App::$strings["New marker"] = "Новый маркер"; -App::$strings["Edit marker"] = "Редактировать маркер"; -App::$strings["New identity"] = "Новый идентификатор"; -App::$strings["Delete marker"] = "Удалить маркер"; -App::$strings["Delete member"] = "Удалить участника"; -App::$strings["Edit proximity alert"] = "Изменить оповещение о близости"; -App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Оповещение о близости будет произведено, если этот участник находится на определённом расстоянии от вас.

Введите радиус в метрах (0 для отключения):"; -App::$strings["distance"] = "расстояние"; -App::$strings["Proximity alert distance (meters)"] = "Расстояние для уведомления о близости (метров)"; -App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Оповещение о близости будет произведено, если вы находитесь на определённом расстоянии местоположения маркера.

Введите радиус в метрах (0 для отключения):"; -App::$strings["Marker proximity alert"] = "Маркер уведомления о близости"; -App::$strings["Reminder note"] = "Напоминание"; -App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Введите сообщение для отображения когда вы находитесь рядом"; -App::$strings["Add new rendezvous"] = "Добавить новое Rendezvous."; -App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Создайте новое Rendezvous и поделитесь ссылкой доступа с теми, кого вы хотите пригласить в группу. Тот, кто откроет эту ссылку, станет её участником. Участники могут видеть местоположение, добавлять маркеры на карту или делится своим собственным местоположением с группой."; -App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "У вас нет Rendezvous. Нажмите на кнопку ниже чтобы создать его!"; -App::$strings["Errors encountered creating database tables."] = "При создании базы данных возникли ошибки."; -App::$strings["View Larger"] = "Увеличить"; -App::$strings["Tile Server URL"] = "URL сервера Tile"; -App::$strings["A list of public tile servers"] = "Список общедоступных серверов"; -App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL сервера Nominatim (обратное геокодирование)"; -App::$strings["A list of Nominatim servers"] = "Список серверов Nominatim"; -App::$strings["Default zoom"] = "Масштаб по умолчанию"; -App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Уровень размера по умолчанию (1 - весь мир, 18 - максимальный; зависит от сервера)."; -App::$strings["Include marker on map"] = "Включите маркер на карте"; -App::$strings["Include a marker on the map."] = "Включить маркер на карте"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой входа с предоставленным вами OpenID. Пожалуйста, проверьте корректность его написания."; -App::$strings["The error message was:"] = "Сообщение об ошибке было:"; -App::$strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Идентификатор не возвращён."; -App::$strings["Welcome %s. Remote authentication successful."] = "Добро пожаловать %s. Удаленная аутентификация успешно завершена."; -App::$strings["Login failed."] = "Не удалось войти."; -App::$strings["First Name"] = "Имя"; -App::$strings["Last Name"] = "Фамилия"; -App::$strings["Nickname"] = "Псевдоним"; -App::$strings["Full Name"] = "Полное имя"; -App::$strings["Email"] = "Электронная почта"; -App::$strings["Profile Photo"] = "Фотография профиля"; -App::$strings["Profile Photo 16px"] = "Фотография профиля 16px"; -App::$strings["Profile Photo 32px"] = "Фотография профиля 32px"; -App::$strings["Profile Photo 48px"] = "Фотография профиля 48px"; -App::$strings["Profile Photo 64px"] = "Фотография профиля 64px"; -App::$strings["Profile Photo 80px"] = "Фотография профиля 80px"; -App::$strings["Profile Photo 128px"] = "Фотография профиля 128px"; -App::$strings["Timezone"] = "Часовой пояс"; -App::$strings["Homepage URL"] = "URL домашней страницы"; -App::$strings["Language"] = "Язык"; -App::$strings["Birth Year"] = "Год рождения"; -App::$strings["Birth Month"] = "Месяц рождения"; -App::$strings["Birth Day"] = "День рождения"; -App::$strings["Birthdate"] = "Дата рождения"; -App::$strings["Gender"] = "Гендер"; -App::$strings["Male"] = "Мужчина"; -App::$strings["Female"] = "Женщина"; -App::$strings["Your Webbie:"] = "Ваш Webbie:"; -App::$strings["Fontsize (px):"] = "Размер шрифта (px):"; -App::$strings["Link:"] = "Ссылка:"; -App::$strings["Like us on Hubzilla"] = "Нравится на Hubzilla"; -App::$strings["Embed:"] = "Встроить:"; -App::$strings["Extended Identity Sharing"] = "Расширенный обмен идентификацией"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Поделиться вашим идентификатором на всех веб-сайтах в Интернет. Если выключено, то идентификатор доступен только для сайтов \$Projectname."; -App::$strings["An account has been created for you."] = "Учётная запись, которая была для вас создана."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "Аутентификация выполнена успешно, но отклонена: создание учетной записи отключено."; -App::$strings["Post to Twitter"] = "Опубликовать в Twitter"; -App::$strings["Twitter settings updated."] = "Настройки Twitter обновлены"; -App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Не найдено пары ключей для Twitter. Пожалуйста, свяжитесь с администратором сайта."; -App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "В этой установке Hubzilla плагин Twitter был включён, однако пока он не подключён к вашему аккаунту в Twitter. Для этого нажмите на кнопку ниже для получения PIN-кода от Twitter который нужно скопировать в поле ввода и отправить форму. Только ваши общедоступные публикации будут опубликованы в Twitter."; -App::$strings["Log in with Twitter"] = "Войти в Twitter"; -App::$strings["Copy the PIN from Twitter here"] = "Скопируйте PIN-код из Twitter здесь"; -App::$strings["Currently connected to: "] = "В настоящее время подключён к:"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в Twitter, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; -App::$strings["Allow posting to Twitter"] = "Разрешить публиковать в Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter"; -App::$strings["Twitter post length"] = "Длина публикации Twitter"; -App::$strings["Maximum tweet length"] = "Максимальная длина твита"; -App::$strings["Send public postings to Twitter by default"] = "Отправлять общедоступные публикации в Twitter по умолчанию"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter по умолчанию"; -App::$strings["Clear OAuth configuration"] = "Очистить конфигурацию OAuth"; -App::$strings["Twitter Post Settings"] = "Настройки публикаций в Twitter"; -App::$strings["Consumer Key"] = "Ключ клиента"; -App::$strings["Consumer Secret"] = "Код клиента"; -App::$strings["Flag Adult Photos"] = "Пометка фотографий для взрослых"; -App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Предоставьте возможность редактирования фотографий, чтобы скрыть неприемлемые фотографии из альбома по умолчанию"; -App::$strings["Unknown"] = "Неизвестный"; -App::$strings["ActivityPub"] = ""; -App::$strings["photo"] = "фото"; -App::$strings["status"] = "статус"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s %3\$s"; -App::$strings["ActivityPub Protocol Settings updated."] = "Настройки протокола ActivityPub обновлены."; -App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Протокол ActivityPub не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала. "; -App::$strings["Enable the ActivityPub protocol for this channel"] = "Включить протокол ActivityPub для этого канала"; -App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Доставить получателям ActivityPub в группах безопасности"; -App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Может привести к большому количеству упоминаний и раскрытию участников группы безопасности"; -App::$strings["Send multi-media HTML articles"] = "Отправить HTML статьи с мультимедиа"; -App::$strings["Not supported by some microblog services such as Mastodon"] = "Не поддерживается некоторыми микроблогами, например Mastodon"; -App::$strings["ActivityPub Protocol Settings"] = "Настройки протокола ActivityPub"; -App::$strings["No username found in import file."] = "Имя пользователя не найдено в файле для импорта."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Не удалось создать уникальный адрес канала. Импорт не завершен."; -App::$strings["Import completed."] = "Импорт завершен."; -App::$strings["\$projectname"] = ""; -App::$strings["Diaspora Protocol Settings updated."] = "Настройки протокола Diaspora обновлены."; -App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Прокол Diaspora не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала."; -App::$strings["Enable the Diaspora protocol for this channel"] = "Включить протокол Diaspora для этого канала"; -App::$strings["Allow any Diaspora member to comment on your public posts"] = "Разрешить любому участнику Diaspora комментировать ваши общедоступные публикации"; -App::$strings["Prevent your hashtags from being redirected to other sites"] = "Предотвратить перенаправление тегов на другие сайты"; -App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Подписывать и отправлять публикации и комментарии с несуществующей подписью Diaspora"; -App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Отслеживаемые теги (через запятую, исключая #)"; -App::$strings["Diaspora Protocol Settings"] = "Настройки протокола Diaspora"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s посещает %2\$s%3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s не посещает %2\$s%3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s может посетить %2\$s%3\$s"; -App::$strings["System defaults:"] = "Системные по умолчанию:"; -App::$strings["Preferred Clipart IDs"] = "Предпочитаемый Clipart ID"; -App::$strings["List of preferred clipart ids. These will be shown first."] = "Список предпочитаемых Clipart ID. Эти будут показаны первыми."; -App::$strings["Default Search Term"] = "Условие поиска по умолчанию"; -App::$strings["The default search term. These will be shown second."] = "Условие поиска по умолчанию. Показываются во вторую очередь."; -App::$strings["Return After"] = "Вернуться после"; -App::$strings["Page to load after image selection."] = "Страница для загрузки после выбора изображения."; -App::$strings["View Profile"] = "Просмотреть профиль"; -App::$strings["Edit Profile"] = "Редактировать профиль"; -App::$strings["Profile List"] = "Список профилей"; -App::$strings["Order of Preferred"] = "Порядок предпочтения"; -App::$strings["Sort order of preferred clipart ids."] = "Порядок сортировки предпочитаемых Clipart ID. "; -App::$strings["Newest first"] = "Новое первым"; -App::$strings["As entered"] = "По мере ввода"; -App::$strings["Order of other"] = "Порядок других"; -App::$strings["Sort order of other clipart ids."] = "Порядок сортировки остальных Clipart ID."; -App::$strings["Most downloaded first"] = "Самое загружаемое первым"; -App::$strings["Most liked first"] = "Самое нравящееся первым"; -App::$strings["Preferred IDs Message"] = "Сообщение от предпочитаемых ID"; -App::$strings["Message to display above preferred results."] = "Отображаемое сообщение над предпочитаемыми результатами."; -App::$strings["Uploaded by: "] = "Загружено:"; -App::$strings["Drawn by: "] = "Нарисовано:"; -App::$strings["Use this image"] = "Использовать это изображение"; -App::$strings["Or select from a free OpenClipart.org image:"] = "Или выберите из бесплатных изображений на OpenClipart.org"; -App::$strings["Search Term"] = "Условие поиска"; -App::$strings["Unknown error. Please try again later."] = "Неизвестная ошибка. Пожалуйста, повторите попытку позже."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Если новая фотография не отображается немедленно то нажмите Shift + \"Обновить\" для очистки кэша браузера"; -App::$strings["Profile photo updated successfully."] = "Фотография профиля обновлена успешно."; -App::$strings["Edit your profile and change settings."] = "Отредактировать ваш профиль и изменить настройки."; -App::$strings["Click here to see activity from your connections."] = "Нажмите сюда для отображения активности ваши контактов."; -App::$strings["Click here to see your channel home."] = "Нажмите сюда чтобы увидеть главную страницу вашего канала."; -App::$strings["You can access your private messages from here."] = "Вы можете получить доступ с личной переписке здесь."; -App::$strings["Create new events here."] = "Создать новое событие здесь."; -App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Вы можете подключать новые контакты и менять разрешения для существующих здесь. Также вы можете создавать их группы."; -App::$strings["System notifications will arrive here"] = "Системные оповещения будут показываться здесь"; -App::$strings["Search for content and users"] = "Поиск пользователей и содержимого"; -App::$strings["Browse for new contacts"] = "Поиск новых контактов"; -App::$strings["Launch installed apps"] = "Запустить установленные приложения"; -App::$strings["Looking for help? Click here."] = "Нужна помощь? Нажмите сюда."; -App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Новые события произошли в вашей сети. Нажмите здесь для того, чтобы знать что случилось!"; -App::$strings["You have received a new private message. Click here to see from who!"] = "Вы получили новое личное сообщение. Нажмите чтобы увидеть от кого!"; -App::$strings["There are events this week. Click here too see which!"] = "На этой неделе есть события. Нажмите здесь чтобы увидеть какие!"; -App::$strings["You have received a new introduction. Click here to see who!"] = "Вы были представлены. Нажмите чтобы увидеть кому!"; -App::$strings["There is a new system notification. Click here to see what has happened!"] = "Это новое системное уведомление. Нажмите чтобы посмотреть что случилось!"; -App::$strings["Click here to share text, images, videos and sound."] = "Нажмите сюда чтобы поделиться текстом, изображениями, видео или треком."; -App::$strings["You can write an optional title for your update (good for long posts)."] = "Вы можете написать необязательный заголовок для вашей публикации (желательно для больших постов)."; -App::$strings["Entering some categories here makes it easier to find your post later."] = "Введите категории здесь чтобы было проще найти вашу публикацию позднее."; -App::$strings["Share photos, links, location, etc."] = "Поделиться фотографией, ссылками, местоположение и т.п."; -App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Хотите только поделиться временным содержимым? Установите срок его действия."; -App::$strings["You can password protect content."] = "Вы можете защитить содержимое паролем."; -App::$strings["Choose who you share with."] = "Выбрать с кем поделиться."; -App::$strings["Click here when you are done."] = "Нажмите здесь когда закончите."; -App::$strings["Adjust from which channels posts should be displayed."] = "Настройте из каких каналов должны отображаться публикации."; -App::$strings["Only show posts from channels in the specified privacy group."] = "Показывать только публикации из определённой группы безопасности."; -App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Лёгкий поиск сообщения, содержащего теги (ключевые слова, которым предшествует символ #)."; -App::$strings["Easily find posts in given category."] = "Лёгкий поиск публикаций в данной категории."; -App::$strings["Easily find posts by date."] = "Лёгкий поиск публикаций по дате."; -App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Рекомендуемые пользователи, которые были представлены в качестве предложений, и которые, по нашему мнению, могут оказаться интересными."; -App::$strings["Here you see channels you have connected to."] = "Здесь вы видите каналы, к которым вы подключились."; -App::$strings["Save your search so you can repeat it at a later date."] = "Сохраните ваш поиск с тем, чтобы повторить его позже."; -App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Если вы видите этот значок, вы можете быть уверены, что отправитель - это тот, кто это говорит. Это нормально, что не всегда можно проверить отправителя, поэтому значок иногда будет отсутствовать. Обычно об этом не нужно беспокоиться."; -App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Опасность! Кажется, кто-то пытался подделать сообщение! Это сообщение не обязательно от того, от кого оно значится!"; -App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Добро пожаловать в Hubzilla! Желаете получить обзор пользовательского интерфейса?

Вы можете его приостановаить и в любое время перезагрузив страницу или перейдя на другую.

Также вы можете нажать клавишу \"Назад\""; -App::$strings["Some setting"] = "Некоторые настройки"; -App::$strings["A setting"] = "Настройка"; -App::$strings["Skeleton Settings"] = "Настройки скелета"; -App::$strings["Show Upload Limits"] = "Показать ограничения на загрузку"; -App::$strings["Hubzilla configured maximum size: "] = "Максимальный размер настроенный в Hubzilla:"; -App::$strings["PHP upload_max_filesize: "] = ""; -App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; -App::$strings["GNU-Social Protocol Settings updated."] = "Настройки протокола GNU Social обновлены."; -App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Прокол GNU Social не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала."; -App::$strings["Enable the GNU-Social protocol for this channel"] = "Включить протокол GNU Social для этого канала"; -App::$strings["GNU-Social Protocol Settings"] = "Настройки протокола GNU Social"; -App::$strings["Follow"] = "Отслеживать"; -App::$strings["%1\$s is now following %2\$s"] = "%1\$s сейчас отслеживает %2\$s"; -App::$strings["Gallery"] = "Галерея"; -App::$strings["Photo Gallery"] = "Фотогалерея"; -App::$strings["Page to load after login"] = "Страница для загрузки после входа"; -App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Примеры: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (оставьте пустым для для страницы сети по умолчанию)."; -App::$strings["Startpage Settings"] = "Настройки стартовой страницы"; -App::$strings["Message to display on every page on this server"] = "Отображаемое сообщение на каждой странице на этом сервере."; -App::$strings["Pageheader Settings"] = "Настройки шапки страницы"; -App::$strings["pageheader Settings saved."] = "Настройки шапки страницы сохранены."; -App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe в трёх измерениях"; -App::$strings["3D Tic-Tac-Toe"] = ""; -App::$strings["New game"] = "Новая игра"; -App::$strings["New game with handicap"] = "Новая игра с форой"; -App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Трехмерный Tic-Tac-Toe похож на традиционную игру, за исключением того, что игра идёт на нескольких уровнях одновременно."; -App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Имеется три уровня. Вы выигрываете, получая три подряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях."; -App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Игра с форой отключает центральную позицию на среднем уровне, потому что игрок, претендующий на этот квадрат, часто имеет несправедливое преимущество."; -App::$strings["You go first..."] = "Вы начинаете..."; -App::$strings["I'm going first this time..."] = "На этот раз начинаю я..."; -App::$strings["You won!"] = "Вы выиграли!"; -App::$strings["\"Cat\" game!"] = "Ничья!"; -App::$strings["I won!"] = "Я выиграл!"; -App::$strings["Fuzzloc Settings updated."] = "Настройки Fuzzloc обновлены."; -App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc позволяет размыть ваше точное местоположение, если ваш канал использует сопоставление местоположений браузера."; -App::$strings["Enable Fuzzloc Plugin"] = "Включить плагин Fuzzloc"; -App::$strings["Minimum offset in meters"] = "Минимальное смещение в метрах"; -App::$strings["Maximum offset in meters"] = "Максимальное смещение в метрах"; -App::$strings["Fuzzloc Settings"] = "Настройки Fuzzloc"; -App::$strings["Post to Friendica"] = "Опубликовать в Friendica"; -App::$strings["rtof Settings saved."] = "Настройки rtof сохранены."; -App::$strings["Allow posting to Friendica"] = "Разрешить публиковать в Friendica"; -App::$strings["Send public postings to Friendica by default"] = "Отправлять общедоступные публикации во Friendica по умолчанию"; -App::$strings["Friendica API Path"] = "Путь к Friendica API"; -App::$strings["https://{sitename}/api"] = ""; -App::$strings["Friendica login name"] = "Имя входа Friendica"; -App::$strings["Friendica password"] = "Пароль Friendica"; -App::$strings["Hubzilla to Friendica Post Settings"] = "Настройки публикаций Hubzilla для Friendica"; -App::$strings["Post to GNU social"] = "Опубликовать в GNU Social"; -App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Пожалуйста свяжитесь с администратором сайта.
Предоставленный URL API недействителен."; -App::$strings["We could not contact the GNU social API with the Path you entered."] = "Нам не удалось установить контакт с GNU Social API по введённому вами пути"; -App::$strings["GNU social settings updated."] = "Настройки GNU Social обновлены."; -App::$strings["Globally Available GNU social OAuthKeys"] = "Глобально доступные ключи OAuthKeys GNU Social"; -App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."; -App::$strings["Provide your own OAuth Credentials"] = "Предоставьте ваши собственные регистрационные данные OAuth"; -App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API.
Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social."; -App::$strings["OAuth Consumer Key"] = "Ключ клиента OAuth"; -App::$strings["OAuth Consumer Secret"] = "Пароль клиента OAuth"; -App::$strings["Base API Path"] = "Основной путь к API"; -App::$strings["Remember the trailing /"] = "Запомнить закрывающий /"; -App::$strings["GNU social application name"] = "Имя приложения GNU social"; -App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social."; -App::$strings["Log in with GNU social"] = "Войти с GNU social"; -App::$strings["Copy the security code from GNU social here"] = "Скопируйте код безопасности GNU social здесь"; -App::$strings["Cancel Connection Process"] = "Отменить процесс подключения"; -App::$strings["Current GNU social API is"] = "Текущий GNU social API"; -App::$strings["Cancel GNU social Connection"] = "Отменить подключение с GNU social"; -App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; -App::$strings["Allow posting to GNU social"] = "Разрешить публиковать в GNU social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social"; -App::$strings["Post to GNU social by default"] = "Публиковать в GNU social по умолчанию"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию"; -App::$strings["GNU social Post Settings"] = "Настройки публикаций GNU social"; -App::$strings["Site name"] = "Название сайта"; -App::$strings["API URL"] = ""; -App::$strings["Application name"] = "Название приложения"; -App::$strings["Enable Rainbowtag"] = "Включить Rainbowtag"; -App::$strings["Rainbowtag Settings"] = "Настройки Rainbowtag"; -App::$strings["Rainbowtag Settings saved."] = "Настройки Rainbowtag сохранены."; -App::$strings["Friendica Photo Album Import"] = "Импортировать альбом фотографий Friendica"; -App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал."; -App::$strings["Friendica Server base URL"] = "Базовый URL сервера Friendica"; -App::$strings["Friendica Login Username"] = "Имя пользователя для входа Friendica"; -App::$strings["Friendica Login Password"] = "Пароль для входа Firendica"; -App::$strings["This website is tracked using the Piwik analytics tool."] = "Этот сайт отслеживается с помощью инструментов аналитики Piwik."; -App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта."; -App::$strings["Piwik Base URL"] = "Базовый URL Piwik"; -App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)"; -App::$strings["Site ID"] = "ID сайта"; -App::$strings["Show opt-out cookie link?"] = "Показывать ссылку на отказ от использования cookies?"; -App::$strings["Asynchronous tracking"] = "Асинхронное отслеживание"; -App::$strings["Enable frontend JavaScript error tracking"] = "Включить отслеживание ошибок JavaScript на фронтенде."; -App::$strings["This feature requires Piwik >= 2.2.0"] = "Эта функция требует версию Piwik >= 2.2.0"; -App::$strings["Photos imported"] = "Фотографии импортированы"; -App::$strings["Redmatrix Photo Album Import"] = "Импортировать альбом фотографий Redmatrix"; -App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал."; -App::$strings["Import just this album"] = "Импортировать только этот альбом"; -App::$strings["Leave blank to import all albums"] = "Оставьте пустым для импорта всех альбомов"; -App::$strings["Maximum count to import"] = "Максимальное количество для импорта"; -App::$strings["0 or blank to import all available"] = "0 или пусто для импорта всех доступных"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Искать %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = ""; -App::$strings["\$Projectname"] = ""; -App::$strings["Search \$Projectname"] = "Поиск \$Projectname"; -App::$strings["Recent Channel/Profile Viewers"] = "Последние просмотры канала / профиля"; -App::$strings["This plugin/addon has not been configured."] = "Это расширение не было настроено."; -App::$strings["Please visit the Visage settings on %s"] = "Пожалуйста, посетите настройки Visage на %s"; -App::$strings["your feature settings page"] = "страница ваших установочных параметров"; -App::$strings["No entries."] = "Нет записей."; -App::$strings["Enable Visage Visitor Logging"] = "Включить журналирование посетителей Visage"; -App::$strings["Visage Settings"] = "Настройки Visage"; -App::$strings["Error: order mismatch. Please try again."] = "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз"; -App::$strings["Manual payments are not enabled."] = "Ручные платежи не подключены."; -App::$strings["Order not found."] = "Заказ не найден."; -App::$strings["Finished"] = "Завершено"; -App::$strings["Invalid channel"] = "Недействительный канал"; -App::$strings["[cart] Item Added"] = "[cart] Элемент добавлен"; -App::$strings["Order already checked out."] = "Заказ уже проверен."; -App::$strings["Enable Shopping Cart"] = "Включить корзину"; -App::$strings["Enable Test Catalog"] = "Включить тестовый каталог"; -App::$strings["Enable Manual Payments"] = "Включить ручные платежи"; -App::$strings["Base Merchant Currency"] = "Основная торговая валюта"; -App::$strings["Cart - Base Settings"] = "Корзина - Основные настройки"; -App::$strings["Shop"] = "Магазин"; -App::$strings["Profile Unavailable."] = "Профиль недоступен."; -App::$strings["Order Not Found"] = "Заказ не найден"; -App::$strings["You must be logged into the Grid to shop."] = "Вы должны быть в сети для доступа к магазину"; -App::$strings["Cart Not Enabled (profile: "] = "Корзина не подключена (профиль:"; -App::$strings["Access denied."] = "Доступ запрещён."; -App::$strings["No Order Found"] = "Нет найденных заказов"; -App::$strings["An unknown error has occurred Please start again."] = "Произошла неизвестная ошибка. Пожалуйста, начните снова."; -App::$strings["Invalid Payment Type. Please start again."] = "Недействительный тип платежа. Пожалуйста, начните снова."; -App::$strings["Order not found"] = "Заказ не найден"; -App::$strings["Enable Hubzilla Services Module"] = "Включить модуль сервиса Hubzilla"; -App::$strings["Cart - Hubzilla Services Addon"] = "Корзина - плагин сервиса Hubzilla"; -App::$strings["New Sku"] = "Новый код"; -App::$strings["Cannot save edits to locked item."] = "Невозможно сохранить изменения заблокированной позиции."; -App::$strings["SKU not found."] = "Код не найден."; -App::$strings["Invalid Activation Directive."] = "Недействительная директива активации."; -App::$strings["Invalid Deactivation Directive."] = "Недействительная директива деактивации"; -App::$strings["Add to this privacy group"] = "Добавить в эту группу безопасности"; -App::$strings["Set user service class"] = "Установить класс обслуживания пользователя"; -App::$strings["You must be using a local account to purchase this service."] = "Вы должны использовать локальную учётноую запись для покупки этого сервиса."; -App::$strings["Changes Locked"] = "Изменения заблокированы"; -App::$strings["Item available for purchase."] = "Позиция доступна для приобретения."; -App::$strings["Price"] = "Цена"; -App::$strings["Add buyer to privacy group"] = "Добавить покупателя в группу безопасности"; -App::$strings["Add buyer as connection"] = "Добавить покупателя как контакт"; -App::$strings["Set Service Class"] = "Установить класс обслуживания"; -App::$strings["Enable Paypal Button Module"] = "Включить модуль кнопки Paypal"; -App::$strings["Use Production Key"] = "Использовать ключ Production"; -App::$strings["Paypal Sandbox Client Key"] = "Ключ клиента Paypal Sandbox"; -App::$strings["Paypal Sandbox Secret Key"] = "Секретный ключ Paypal Sandbox"; -App::$strings["Paypal Production Client Key"] = "Ключ клиента Paypal Production"; -App::$strings["Paypal Production Secret Key"] = "Секретный ключ Paypal Production"; -App::$strings["Cart - Paypal Addon"] = "Корзина - Paypal плагин"; -App::$strings["Paypal button payments are not enabled."] = "Кнопка Paypal для платежей не включена."; -App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты."; -App::$strings["Access Denied."] = "Доступ запрещён."; -App::$strings["Access Denied"] = "Доступ запрещён"; -App::$strings["Invalid Item"] = "Недействительный элемент"; -App::$strings["Nsabait Settings updated."] = "Настройки Nsabait обновлены"; -App::$strings["Enable NSAbait Plugin"] = "Включить плагин NSAbait"; -App::$strings["NSAbait Settings"] = "Настройки Nsabait"; -App::$strings["Hubzilla File Storage Import"] = "Импорт файлового хранилища Hubzilla"; -App::$strings["This will import all your cloud files from another server."] = "Это позволит импортировать все ваши файлы с другого сервера."; -App::$strings["Hubzilla Server base URL"] = "Базовый URL сервера Hubzilla"; -App::$strings["Since modified date yyyy-mm-dd"] = "Начиная с даты изменений yyyy-mm-dd"; -App::$strings["Until modified date yyyy-mm-dd"] = "Заканчивая датой изменений yyyy-mm-dd"; -App::$strings["Federate"] = ""; -App::$strings["nofed Settings saved."] = "Настройки nofed сохранены."; -App::$strings["Allow Federation Toggle"] = "Разрешить переключение федерации"; -App::$strings["Federate posts by default"] = "Разрешить федерацию публикаций по умолчанию"; -App::$strings["NoFed Settings"] = "Настройки NoFed"; -App::$strings["generic profile image"] = "Стандартное изображение профиля"; -App::$strings["random geometric pattern"] = "Случайный геометрический рисунок"; -App::$strings["monster face"] = "Лицо чудовища"; -App::$strings["computer generated face"] = "Сгенерированное компьютером лицо"; -App::$strings["retro arcade style face"] = "Лицо в стиле старой аркадной игры"; -App::$strings["Hub default profile photo"] = "Фотография профиля по умолчанию"; -App::$strings["Information"] = "Информация"; -App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar."; -App::$strings["Default avatar image"] = "Изображение аватара по умолчанию"; -App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)."; -App::$strings["Rating of images"] = "Оценки изображений"; -App::$strings["Select the appropriate avatar rating for your site. See README"] = "Выберите подходящую оценку аватара для вашего сайта (см. README)."; -App::$strings["Gravatar settings updated."] = "Настройки Gravatar обновлены."; -App::$strings["Post to Red"] = "Опубликовать в Red"; -App::$strings["Channel is required."] = "Необходим канал."; -App::$strings["Invalid channel."] = "Недействительный канал."; -App::$strings["redred Settings saved."] = "Настройки RedRed сохранены."; -App::$strings["Allow posting to another Hubzilla Channel"] = "Разрешить публиковать в другой канал Hubzilla"; -App::$strings["Send public postings to Hubzilla channel by default"] = "Отправлять общедоступные публикации в канал Hubzilla по умолчанию"; -App::$strings["Hubzilla API Path"] = "Путь к Hubzilla API"; -App::$strings["Hubzilla login name"] = "Имя входа Hubzilla"; -App::$strings["Hubzilla channel name"] = "Название канала Hubzilla"; -App::$strings["Hubzilla Crosspost Settings"] = "Настройки перекрёстных публикаций Hubzilla"; -App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; -App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; -App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; -App::$strings["Guitar Chords"] = "Гитарные аккорды"; -App::$strings["The complete online chord dictionary"] = "Полный онлайн словарь аккордов"; -App::$strings["Tuning"] = "Настройка"; -App::$strings["Chord name: example: Em7"] = "Наименование аккорда - example: Em7"; -App::$strings["Show for left handed stringing"] = "Показывать струны для левшей"; -App::$strings["Quick Reference"] = "Быстрая ссылка"; -App::$strings["New registration"] = "Новая регистрация"; -App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; -App::$strings["Message sent to %s. New account registration: %s"] = "Сообщение отправлено в %s. Регистрация нового аккаунта: %s"; -App::$strings["Channels to auto connect"] = "Каналы для автоматического подключения"; -App::$strings["Comma separated list"] = "Список, разделённый запятыми"; -App::$strings["Popular Channels"] = "Популярные каналы"; -App::$strings["IRC Settings"] = "Настройки IRC"; -App::$strings["IRC settings saved."] = "Настройки IRC сохранены"; -App::$strings["IRC Chatroom"] = "Чат IRC"; -App::$strings["bitchslap"] = "дать леща"; -App::$strings["bitchslapped"] = "получил леща"; -App::$strings["shag"] = "вздрючить"; -App::$strings["shagged"] = "вздрюченный"; -App::$strings["patent"] = ""; -App::$strings["patented"] = ""; -App::$strings["hug"] = "обнять"; -App::$strings["hugged"] = "обнятый"; -App::$strings["murder"] = "убить"; -App::$strings["murdered"] = "убитый"; -App::$strings["worship"] = "почитать"; -App::$strings["worshipped"] = "почитаемый"; -App::$strings["kiss"] = "целовать"; -App::$strings["kissed"] = "поцелованный"; -App::$strings["tempt"] = "искушать"; -App::$strings["tempted"] = "искушённый"; -App::$strings["raise eyebrows at"] = "поднять брови"; -App::$strings["raised their eyebrows at"] = "поднял брови"; -App::$strings["insult"] = "оскорбить"; -App::$strings["insulted"] = "оскорблённый"; -App::$strings["praise"] = "хвалить"; -App::$strings["praised"] = "похваленный"; -App::$strings["be dubious of"] = "усомниться"; -App::$strings["was dubious of"] = "усомнился"; -App::$strings["eat"] = "есть"; -App::$strings["ate"] = "съел"; -App::$strings["giggle and fawn at"] = ""; -App::$strings["giggled and fawned at"] = ""; -App::$strings["doubt"] = "сомневаться"; -App::$strings["doubted"] = "сомневался"; -App::$strings["glare"] = ""; -App::$strings["glared at"] = ""; -App::$strings["fuck"] = "трахнуть"; -App::$strings["fucked"] = "трахнул"; -App::$strings["bonk"] = ""; -App::$strings["bonked"] = ""; -App::$strings["declare undying love for"] = "признаться в любви к"; -App::$strings["declared undying love for"] = "признался в любви к"; -App::$strings["Post to WordPress"] = "Опубликовать в WordPress"; -App::$strings["Enable WordPress Post Plugin"] = "Включить плагин публикаций WordPress"; -App::$strings["WordPress username"] = "Имя пользователя WordPress"; -App::$strings["WordPress password"] = "Пароль WordPress"; -App::$strings["WordPress API URL"] = "URL API WordPress"; -App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Обычно https://your-blog.tld/xmlrpc.php"; -App::$strings["WordPress blogid"] = ""; -App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым"; -App::$strings["Post to WordPress by default"] = "Публиковать в WordPress по умолчанию"; -App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Пересылать комментарии (требуется плагин hubzilla_wp)"; -App::$strings["WordPress Post Settings"] = "Настройки публикации в WordPress"; -App::$strings["Wordpress Settings saved."] = "Настройки WordPress сохранены."; -App::$strings["Who likes me?"] = "Кому я нравлюсь?"; -App::$strings["Your account on %s will expire in a few days."] = "Ваш аккаунт на %s перестанет работать через несколько дней."; -App::$strings["Your $Productname test account is about to expire."] = "Ваш тестовый аккаунт в $Productname близок к окончанию срока действия."; -App::$strings["Create an account to access services and applications"] = "Создайте аккаунт для доступа к службам и приложениям"; -App::$strings["Register"] = "Регистрация"; -App::$strings["Logout"] = "Выход"; -App::$strings["Login"] = "Войти"; -App::$strings["Remote Authentication"] = "Удаленная аутентификация"; -App::$strings["Login/Email"] = "Пользователь / email"; -App::$strings["Password"] = "Пароль"; -App::$strings["Remember me"] = "Запомнить меня"; -App::$strings["Forgot your password?"] = "Забыли пароль или логин?"; -App::$strings["Password Reset"] = "Сбросить пароль"; -App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Ошибка SSL/TLS веб-сайта для %s"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "SSL/TLS сертификат веб-сайт недействителен. Исправьте это."; -App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Задания Cron не запущены на %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Задания Cron / планировщика не запущены."; -App::$strings["never"] = "никогда"; -App::$strings["Default"] = "По умолчанию"; -App::$strings["Focus (Hubzilla default)"] = "Фокус (по умолчанию Hubzilla)"; -App::$strings["Theme settings"] = "Настройки темы"; -App::$strings["Narrow navbar"] = "Узкая панель навигации"; -App::$strings["Navigation bar background color"] = "Панель навигации, цвет фона"; -App::$strings["Navigation bar icon color "] = "Панель навигации, цвет значков"; -App::$strings["Navigation bar active icon color "] = "Панель навигации, цвет активного значка"; -App::$strings["Link color"] = "цвет ссылок"; -App::$strings["Set font-color for banner"] = "Цвет текста в шапке"; -App::$strings["Set the background color"] = "Цвет фона"; -App::$strings["Set the background image"] = "Фоновое изображение"; -App::$strings["Set the background color of items"] = "Цвет фона элементов"; -App::$strings["Set the background color of comments"] = "Цвет фона комментариев"; -App::$strings["Set font-size for the entire application"] = "Установить системный размер шрифта"; -App::$strings["Examples: 1rem, 100%, 16px"] = "Например: 1rem, 100%, 16px"; -App::$strings["Set font-color for posts and comments"] = "Цвет шрифта для постов и комментариев"; -App::$strings["Set radius of corners"] = "Радиус скруглений"; -App::$strings["Example: 4px"] = "Например: 4px"; -App::$strings["Set shadow depth of photos"] = "Глубина теней фотографий"; -App::$strings["Set maximum width of content region in pixel"] = "Максимальная ширина содержания региона (в пикселях)"; -App::$strings["Leave empty for default width"] = "Оставьте пустым для ширины по умолчанию"; -App::$strings["Set size of conversation author photo"] = "Размер фотографии автора беседы"; -App::$strings["Set size of followup author photos"] = "Размер фотографий подписчиков"; -App::$strings["Image/photo"] = "Изображение / фотография"; -App::$strings["Encrypted content"] = "Зашифрованное содержание"; -App::$strings["Install %1\$s element %2\$s"] = "Установить %1\$s элемент %2\$s"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Эта публикация содержит устанавливаемый %s элемент, однако у вас нет разрешений для его установки на этом сайте."; -App::$strings["webpage"] = "веб-страница"; -App::$strings["layout"] = "шаблон"; -App::$strings["block"] = "заблокировать"; -App::$strings["menu"] = "меню"; -App::$strings["card"] = "карточка"; -App::$strings["article"] = "статья"; -App::$strings["post"] = "публикация"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s была создана %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть"; -App::$strings["spoiler"] = "спойлер"; -App::$strings["View article"] = "Просмотр статьи"; -App::$strings["View summary"] = "Просмотр резюме"; -App::$strings["Different viewers will see this text differently"] = "Различные зрители увидят этот текст по-разному"; -App::$strings["$1 wrote:"] = "$1 писал:"; -App::$strings["Not a valid email address"] = "Недействительный адрес электронной почты"; -App::$strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте"; -App::$strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте."; -App::$strings["An invitation is required."] = "Требуется приглашение."; -App::$strings["Invitation could not be verified."] = "Не удалось проверить приглашение."; -App::$strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; -App::$strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта."; -App::$strings["Registration confirmation for %s"] = "Подтверждение регистрации для %s"; -App::$strings["Registration request at %s"] = "Запрос регистрации на %s"; -App::$strings["your registration password"] = "ваш пароль регистрации"; -App::$strings["Registration details for %s"] = "Регистрационные данные для %s"; -App::$strings["Account approved."] = "Аккаунт утвержден."; -App::$strings["Registration revoked for %s"] = "Регистрация отозвана для %s"; -App::$strings["Click here to upgrade."] = "Нажмите здесь для обновления."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает ограничения, установленные в вашем плане."; -App::$strings["This action is not available under your subscription plan."] = "Это действие невозможно из-за ограничений в вашем плане."; -App::$strings["Delegation session ended."] = "Делегированная сессия завершена."; -App::$strings["Logged out."] = "Вышел из системы."; -App::$strings["Email validation is incomplete. Please check your email."] = "Проверка email не завершена. Пожалуйста, проверьте вашу почту."; -App::$strings["Failed authentication"] = "Ошибка аутентификации"; -App::$strings["event"] = "событие"; -App::$strings["channel"] = "канал"; -App::$strings["comment"] = "комментарий"; -App::$strings["likes %1\$s's %2\$s"] = "Нравится %1\$s %2\$s"; -App::$strings["doesn't like %1\$s's %2\$s"] = "Не нравится %1\$s %2\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь в контакте с %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ткнул %2\$s"; -App::$strings["poked"] = "ткнут"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s в %2\$s"; -App::$strings["This is an unsaved preview"] = "Это несохранённый просмотр"; -App::$strings["__ctx:title__ Likes"] = "Нравится"; -App::$strings["__ctx:title__ Dislikes"] = "Не нравится"; -App::$strings["__ctx:title__ Agree"] = "Согласен"; -App::$strings["__ctx:title__ Disagree"] = "Не согласен"; -App::$strings["__ctx:title__ Abstain"] = "Воздержался"; -App::$strings["__ctx:title__ Attending"] = "Посещаю"; -App::$strings["__ctx:title__ Not attending"] = "Не посещаю"; -App::$strings["__ctx:title__ Might attend"] = "Возможно посещу"; -App::$strings["Select"] = "Выбрать"; -App::$strings["Delete"] = "Удалить"; -App::$strings["Toggle Star Status"] = "Переключить статус пометки"; -App::$strings["Private Message"] = "Личное сообщение"; -App::$strings["Message signature validated"] = "Подпись сообщения проверена"; -App::$strings["Message signature incorrect"] = "Подпись сообщения неверная"; -App::$strings["Approve"] = "Утвердить"; -App::$strings["View %s's profile @ %s"] = "Просмотреть профиль %s @ %s"; -App::$strings["Categories:"] = "Категории:"; -App::$strings["Filed under:"] = "Хранить под:"; -App::$strings["from %s"] = "от %s"; -App::$strings["last edited: %s"] = "последнее редактирование: %s"; -App::$strings["Expires: %s"] = "Срок действия: %s"; -App::$strings["View in context"] = "Показать в контексте"; -App::$strings["Please wait"] = "Подождите пожалуйста"; -App::$strings["remove"] = "удалить"; -App::$strings["Loading..."] = "Загрузка..."; -App::$strings["Delete Selected Items"] = "Удалить выбранные элементы"; -App::$strings["View Source"] = "Просмотреть источник"; -App::$strings["Follow Thread"] = "Следить за темой"; -App::$strings["Unfollow Thread"] = "Прекратить отслеживать тему"; -App::$strings["Recent Activity"] = "Последние действия"; -App::$strings["Connect"] = "Подключить"; -App::$strings["Edit Connection"] = "Редактировать контакт"; -App::$strings["Message"] = "Сообщение"; -App::$strings["Ratings"] = "Оценки"; -App::$strings["Poke"] = "Ткнуть"; -App::$strings["%s likes this."] = "%s нравится это."; -App::$strings["%s doesn't like this."] = "%s не нравится это."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d человеку это нравится.", - 1 => "%2\$d человекам это нравится.", - 2 => "%2\$d человекам это нравится.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d человеку это не нравится.", - 1 => "%2\$d человекам это не нравится.", - 2 => "%2\$d человекам это не нравится.", -); -App::$strings["and"] = "и"; -App::$strings[", and %d other people"] = array( - 0 => ", и ещё %d человеку", - 1 => ", и ещё %d человекам", - 2 => ", и ещё %d человекам", -); -App::$strings["%s like this."] = "%s нравится это."; -App::$strings["%s don't like this."] = "%s не нравится это."; -App::$strings["Set your location"] = "Задать своё местоположение"; -App::$strings["Clear browser location"] = "Очистить местоположение из браузера"; -App::$strings["Insert web link"] = "Вставить веб-ссылку"; -App::$strings["Embed (existing) photo from your photo albums"] = "Встроить (существующее) фото из вашего фотоальбома"; -App::$strings["Please enter a link URL:"] = "Пожалуйста введите URL ссылки:"; -App::$strings["Tag term:"] = "Теги:"; -App::$strings["Where are you right now?"] = "Где вы сейчас?"; -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["Comments enabled"] = "Комментарии включены"; -App::$strings["Comments disabled"] = "Комментарии отключены"; -App::$strings["Preview"] = "Предварительный просмотр"; -App::$strings["Share"] = "Поделиться"; -App::$strings["Page link name"] = "Название ссылки на страницу "; -App::$strings["Post as"] = "Опубликовать как"; -App::$strings["Bold"] = "Жирный"; -App::$strings["Italic"] = "Курсив"; -App::$strings["Underline"] = "Подчеркнутый"; -App::$strings["Quote"] = "Цитата"; -App::$strings["Code"] = "Код"; -App::$strings["Attach/Upload file"] = "Прикрепить/загрузить файл"; -App::$strings["Embed an image from your albums"] = "Встроить изображение из ваших альбомов"; -App::$strings["Cancel"] = "Отменить"; -App::$strings["OK"] = ""; -App::$strings["Toggle voting"] = "Подключить голосование"; -App::$strings["Disable comments"] = "Отключить комментарии"; -App::$strings["Toggle comments"] = "Переключить комментарии"; -App::$strings["Title (optional)"] = "Заголовок (необязательно)"; -App::$strings["Categories (optional, comma-separated list)"] = "Категории (необязательно, список через запятую)"; -App::$strings["Permission settings"] = "Настройки разрешений"; -App::$strings["Other networks and post services"] = "Другие сети и службы публикаций"; -App::$strings["Set expiration date"] = "Установить срок действия"; -App::$strings["Set publish date"] = "Установить дату публикации"; -App::$strings["Encrypt text"] = "Зашифровать текст"; -App::$strings["Commented Order"] = "По комментариям"; -App::$strings["Sort by Comment Date"] = "Сортировать по дате комментария"; -App::$strings["Posted Order"] = "По публикациям"; -App::$strings["Sort by Post Date"] = "Сортировать по дате публикации"; -App::$strings["Personal"] = "Личное"; -App::$strings["Posts that mention or involve you"] = "Публикации, где вы были упомянуты или участвовали"; -App::$strings["New"] = "Новые"; -App::$strings["Activity Stream - by date"] = "Поток активности - по дате"; -App::$strings["Starred"] = "Отмеченые"; -App::$strings["Favourite Posts"] = "Любимые публикации"; -App::$strings["Spam"] = "Спам"; -App::$strings["Posts flagged as SPAM"] = "Публикация помечена как спам"; -App::$strings["Channel"] = "Канал"; -App::$strings["Status Messages and Posts"] = "Статусы и публикации"; -App::$strings["About"] = "О себе"; -App::$strings["Profile Details"] = "Информация о профиле"; -App::$strings["Photos"] = "Фотографии"; -App::$strings["Photo Albums"] = "Фотоальбомы"; -App::$strings["Files"] = "Файлы"; -App::$strings["Files and Storage"] = "Файлы и хранилище"; -App::$strings["Events"] = "События"; -App::$strings["Chatrooms"] = "Чаты"; -App::$strings["Bookmarks"] = "Закладки"; -App::$strings["Saved Bookmarks"] = "Сохранённые закладки"; -App::$strings["Cards"] = "Карточки"; -App::$strings["View Cards"] = "Просмотреть карточки"; -App::$strings["articles"] = "статьи"; -App::$strings["View Articles"] = "Просмотр статей"; -App::$strings["Webpages"] = "Веб-страницы"; -App::$strings["View Webpages"] = "Просмотр веб-страниц"; -App::$strings["Wikis"] = ""; -App::$strings["Wiki"] = ""; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Нравится", - 1 => "Нравится", - 2 => "Нравится", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Не нравится", - 1 => "Не нравится", - 2 => "Не нравится", -); -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Посетит", - 1 => "Посетят", - 2 => "Посетят", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Не посетит", - 1 => "Не посетят", - 2 => "Не посетят", -); -App::$strings["__ctx:noun__ Undecided"] = "Не решил"; -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "Согласен", - 1 => "Согласны", - 2 => "Согласны", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Не согласен", - 1 => "Не согласны", - 2 => "Не согласны", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Воздержался", - 1 => "Воздержались", - 2 => "Воздержались", -); -App::$strings["Invalid data packet"] = "Неверный пакет данных"; -App::$strings["Unable to verify channel signature"] = "Невозможно проверить подпись канала"; -App::$strings["Unable to verify site signature for %s"] = "Невозможно проверить подпись сайта %s"; -App::$strings["invalid target signature"] = "недопустимая целевая подпись"; -App::$strings["l F d, Y \\@ g:i A"] = ""; -App::$strings["Starts:"] = "Начало:"; -App::$strings["Finishes:"] = "Окончание:"; -App::$strings["Location:"] = "Местоположение:"; -App::$strings["This event has been added to your calendar."] = "Это событие было добавлено в ваш календарь."; -App::$strings["Not specified"] = "Не указано"; -App::$strings["Needs Action"] = "Требует действия"; -App::$strings["Completed"] = "Завершено"; -App::$strings["In Process"] = "В процессе"; -App::$strings["Cancelled"] = "Отменено"; -App::$strings["Mobile"] = "Мобильный"; -App::$strings["Home"] = "Домашний"; -App::$strings["Home, Voice"] = "Дом, голос"; -App::$strings["Home, Fax"] = "Дом, факс"; -App::$strings["Work"] = "Рабочий"; -App::$strings["Work, Voice"] = "Работа, голос"; -App::$strings["Work, Fax"] = "Работа, факс"; -App::$strings["Other"] = "Другой"; -App::$strings["Item was not found."] = "Элемент не найден."; -App::$strings["Unknown error."] = "Неизвестная ошибка."; -App::$strings["No source file."] = "Нет исходного файла."; -App::$strings["Cannot locate file to replace"] = "Не удается найти файл для замены"; -App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления"; -App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Вы достигли предела %1$.0f Мбайт для хранения вложений."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."; -App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не может быть проверен. Загрузка не удалась."; -App::$strings["Path not available."] = "Путь недоступен."; -App::$strings["Empty pathname"] = "Пустое имя пути"; -App::$strings["duplicate filename or path"] = "дублирующееся имя файла или пути"; -App::$strings["Path not found."] = "Путь не найден."; -App::$strings["mkdir failed."] = "mkdir не удался"; -App::$strings["database storage failed."] = "ошибка при записи базы данных."; -App::$strings["Empty path"] = "Пустое имя пути"; -App::$strings["unknown"] = "неизвестный"; -App::$strings["%1\$s's bookmarks"] = "Закладки пользователя %1\$s"; -App::$strings["Directory Options"] = "Параметры каталога"; -App::$strings["Safe Mode"] = "Безопасный режим"; -App::$strings["Public Forums Only"] = "Только публичные форумы"; -App::$strings["This Website Only"] = "Только этот веб-сайт"; -App::$strings["view full size"] = "посмотреть в полный размер"; -App::$strings["Friendica"] = ""; -App::$strings["OStatus"] = ""; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = ""; -App::$strings["Diaspora"] = ""; -App::$strings["Facebook"] = ""; -App::$strings["Zot"] = ""; -App::$strings["LinkedIn"] = ""; -App::$strings["XMPP/IM"] = ""; -App::$strings["MySpace"] = ""; -App::$strings[" and "] = " и "; -App::$strings["public profile"] = "общедоступный профиль"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s обновлено %2\$s, изменено %3\$s."; -App::$strings["Remote authentication"] = "Удаленная аутентификация"; -App::$strings["Click to authenticate to your home hub"] = "Нажмите, чтобы аутентифицировать себя на домашнем узле"; -App::$strings["Channel Manager"] = "Менеджер каналов"; -App::$strings["Manage your channels"] = "Управление вашими каналами"; -App::$strings["Privacy Groups"] = "Группы безопасности"; -App::$strings["Manage your privacy groups"] = "Управление вашим группами безопасности"; -App::$strings["Settings"] = "Настройки"; -App::$strings["Account/Channel Settings"] = "Настройки аккаунта / канала"; -App::$strings["End this session"] = "Закончить эту сессию"; -App::$strings["Your profile page"] = "Страницa вашего профиля"; -App::$strings["Edit Profiles"] = "Редактирование профилей"; -App::$strings["Manage/Edit profiles"] = "Управление / редактирование профилей"; -App::$strings["Edit your profile"] = "Редактировать профиль"; -App::$strings["Sign in"] = "Войти"; -App::$strings["Take me home"] = "Домой"; -App::$strings["Log me out of this site"] = "Выйти с этого сайта"; -App::$strings["Create an account"] = "Создать аккаунт"; -App::$strings["Help"] = "Помощь"; -App::$strings["Help and documentation"] = "Справочная информация и документация"; -App::$strings["Search"] = "Поиск"; -App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Искать на сайте @name, !forum, #tag, ?docs, содержимое"; -App::$strings["Admin"] = "Администрирование"; -App::$strings["Site Setup and Configuration"] = "Установка и конфигурация сайта"; -App::$strings["Loading"] = "Загрузка"; -App::$strings["@name, !forum, #tag, ?doc, content"] = "@name, !forum, #tag, ?docs, содержимое"; -App::$strings["Please wait..."] = "Подождите пожалуйста ..."; -App::$strings["Add Apps"] = "Добавить приложения"; -App::$strings["Arrange Apps"] = "Упорядочить приложения"; -App::$strings["Toggle System Apps"] = "Переключить системные приложения"; -App::$strings["Calendar"] = "Календарь"; -App::$strings["Articles"] = "Статьи"; -App::$strings["Help:"] = "Помощь:"; -App::$strings["Not Found"] = "Не найдено"; -App::$strings["Page not found."] = "Страница не найдена."; -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."] = "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем."; -App::$strings["Add new connections to this privacy group"] = "Добавить новые контакты в группу безопасности"; -App::$strings["edit"] = "редактировать"; -App::$strings["Edit group"] = "Редактировать группу"; -App::$strings["Add privacy group"] = "Добавить группу безопасности"; -App::$strings["Channels not in any privacy group"] = "Каналы не включены ни в одну группу безопасности"; -App::$strings["add"] = "добавить"; -App::$strings["Unable to import a removed channel."] = "Невозможно импортировать удалённый канал."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Не удалось создать дублирующийся идентификатор канала. Импорт невозможен."; -App::$strings["Cloned channel not found. Import failed."] = "Клон канала не найден. Импорт невозможен."; -App::$strings["Profile Photos"] = "Фотографии профиля"; -App::$strings["Trending"] = "В тренде"; -App::$strings["Tags"] = "Теги"; -App::$strings["Categories"] = "Категории"; -App::$strings["Keywords"] = "Ключевые слова"; -App::$strings["have"] = "иметь"; -App::$strings["has"] = "есть"; -App::$strings["want"] = "хотеть"; -App::$strings["wants"] = "хотеть"; -App::$strings["like"] = "нравится"; -App::$strings["likes"] = "нравится"; -App::$strings["dislike"] = "не нравится"; -App::$strings["dislikes"] = "не нравится"; -App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s приветствует %2\$s"; -App::$strings["default"] = "по умолчанию"; -App::$strings["Select an alternate language"] = "Выбор дополнительного языка"; -App::$strings["Channel is blocked on this site."] = "Канал блокируется на этом сайте."; -App::$strings["Channel location missing."] = "Местоположение канала отсутствует."; -App::$strings["Response from remote channel was incomplete."] = "Ответ удаленного канала неполный."; -App::$strings["Premium channel - please visit:"] = "Премимум-канал - пожалуйста посетите:"; -App::$strings["Channel was deleted and no longer exists."] = "Канал удален и больше не существует."; -App::$strings["Remote channel or protocol unavailable."] = "Удалённый канал или протокол недоступен."; -App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал."; -App::$strings["Protocol disabled."] = "Протокол отключен."; -App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; -App::$strings["Visible to your default audience"] = "Видно вашей аудитории по умолчанию."; -App::$strings["__ctx:acl__ Profile"] = "Профиль"; -App::$strings["Only me"] = "Только мне"; -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"] = "Показать"; -App::$strings["Don't show"] = "Не показывать"; -App::$strings["Permissions"] = "Разрешения"; -App::$strings["Close"] = "Закрыть"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Разрешения публикации %s не могут быть изменены %s после того, как ею поделились. Эти разрешения устанавливают кому разрешено просматривать эту публикацию."; -App::$strings["Miscellaneous"] = "Прочее"; -App::$strings["Birthday"] = "День рождения"; -App::$strings["Age: "] = "Возраст:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD"; -App::$strings["Required"] = "Требуется"; -App::$strings["less than a second ago"] = "менее чем одну секунду"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s назад"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "год", - 1 => "года", - 2 => "лет", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "месяц", - 1 => "месяца", - 2 => "месяцев", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "неделю", - 1 => "недели", - 2 => "недель", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "день", - 1 => "дня", - 2 => "дней", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "час", - 1 => "часа", - 2 => "часов", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "минуту", - 1 => "минуты", - 2 => "минут", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "секунду", - 1 => "секунды", - 2 => "секунд", -); -App::$strings["%1\$s's birthday"] = "У %1\$s День рождения"; -App::$strings["Happy Birthday %1\$s"] = "С Днем рождения %1\$s !"; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Не удается найти DNS информацию для сервера базы данных '%s'"; -App::$strings["prev"] = "предыдущий"; -App::$strings["first"] = "первый"; -App::$strings["last"] = "последний"; -App::$strings["next"] = "следующий"; -App::$strings["older"] = "старше"; -App::$strings["newer"] = "новее"; -App::$strings["No connections"] = "Нет контактов"; -App::$strings["Connections"] = "Контакты"; -App::$strings["View all %s connections"] = "Просмотреть все %s контактов"; -App::$strings["Network: %s"] = "Сеть: %s"; -App::$strings["Save"] = "Запомнить"; -App::$strings["poke"] = "Ткнуть"; -App::$strings["ping"] = "Пингануть"; -App::$strings["pinged"] = "Отпингован"; -App::$strings["prod"] = "Подтолкнуть"; -App::$strings["prodded"] = "Подтолкнут"; -App::$strings["slap"] = "Шлёпнуть"; -App::$strings["slapped"] = "Шлёпнут"; -App::$strings["finger"] = "Указать"; -App::$strings["fingered"] = "Указан"; -App::$strings["rebuff"] = "Дать отпор"; -App::$strings["rebuffed"] = "Дан отпор"; -App::$strings["happy"] = "счастливый"; -App::$strings["sad"] = "грустный"; -App::$strings["mellow"] = "спокойный"; -App::$strings["tired"] = "усталый"; -App::$strings["perky"] = "весёлый"; -App::$strings["angry"] = "сердитый"; -App::$strings["stupefied"] = "отупевший"; -App::$strings["puzzled"] = "недоумевающий"; -App::$strings["interested"] = "заинтересованный"; -App::$strings["bitter"] = "едкий"; -App::$strings["cheerful"] = "бодрый"; -App::$strings["alive"] = "энергичный"; -App::$strings["annoyed"] = "раздражённый"; -App::$strings["anxious"] = "обеспокоенный"; -App::$strings["cranky"] = "капризный"; -App::$strings["disturbed"] = "встревоженный"; -App::$strings["frustrated"] = "разочарованный"; -App::$strings["depressed"] = "подавленный"; -App::$strings["motivated"] = "мотивированный"; -App::$strings["relaxed"] = "расслабленный"; -App::$strings["surprised"] = "удивленный"; -App::$strings["Monday"] = "Понедельник"; -App::$strings["Tuesday"] = "Вторник"; -App::$strings["Wednesday"] = "Среда"; -App::$strings["Thursday"] = "Четверг"; -App::$strings["Friday"] = "Пятница"; -App::$strings["Saturday"] = "Суббота"; -App::$strings["Sunday"] = "Воскресенье"; -App::$strings["January"] = "Январь"; -App::$strings["February"] = "Февраль"; -App::$strings["March"] = "Март"; -App::$strings["April"] = "Апрель"; -App::$strings["May"] = "Май"; -App::$strings["June"] = "Июнь"; -App::$strings["July"] = "Июль"; -App::$strings["August"] = "Август"; -App::$strings["September"] = "Сентябрь"; -App::$strings["October"] = "Октябрь"; -App::$strings["November"] = "Ноябрь"; -App::$strings["December"] = "Декабрь"; -App::$strings["Unknown Attachment"] = "Неизвестное вложение"; -App::$strings["Size"] = "Размер"; -App::$strings["remove category"] = "удалить категорию"; -App::$strings["remove from file"] = "удалить из файла"; -App::$strings["Download binary/encrypted content"] = "Загрузить двоичное / зашифрованное содержимое"; -App::$strings["Link to Source"] = "Ссылка на источник"; -App::$strings["Page layout"] = "Шаблон страницы"; -App::$strings["You can create your own with the layouts tool"] = "Вы можете создать свой собственный с помощью инструмента шаблонов"; -App::$strings["BBcode"] = ""; -App::$strings["HTML"] = ""; -App::$strings["Text"] = "Текст"; -App::$strings["Comanche Layout"] = "Шаблон Comanche"; -App::$strings["PHP"] = ""; -App::$strings["Page content type"] = "Тип содержимого страницы"; -App::$strings["activity"] = "активность"; -App::$strings["a-z, 0-9, -, and _ only"] = "Только a-z, 0-9, -, и _"; -App::$strings["Design Tools"] = "Инструменты дизайна"; -App::$strings["Blocks"] = "Блокировки"; -App::$strings["Menus"] = "Меню"; -App::$strings["Layouts"] = "Шаблоны"; -App::$strings["Pages"] = "Страницы"; -App::$strings["Import"] = "Импортировать"; -App::$strings["Import website..."] = "Импорт веб-сайта..."; -App::$strings["Select folder to import"] = "Выбрать каталог для импорта"; -App::$strings["Import from a zipped folder:"] = "Импортировать из каталога в zip-архиве:"; -App::$strings["Import from cloud files:"] = "Импортировать из сетевых файлов:"; -App::$strings["/cloud/channel/path/to/folder"] = ""; -App::$strings["Enter path to website files"] = "Введите путь к файлам веб-сайта"; -App::$strings["Select folder"] = "Выбрать каталог"; -App::$strings["Export website..."] = "Экспорт веб-сайта..."; -App::$strings["Export to a zip file"] = "Экспортировать в ZIP файл."; -App::$strings["website.zip"] = ""; -App::$strings["Enter a name for the zip file."] = "Введите имя для ZIP файла."; -App::$strings["Export to cloud files"] = "Эскпортировать в сетевые файлы:"; -App::$strings["/path/to/export/folder"] = ""; -App::$strings["Enter a path to a cloud files destination."] = "Введите путь к расположению сетевых файлов."; -App::$strings["Specify folder"] = "Указать каталог"; -App::$strings["Collection"] = "Коллекция"; -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."] = "Не верный токен безопасности для формы. Вероятно, это произошло потому, что форма была открыта слишком долго (> 3-х часов) перед его отправкой."; -App::$strings["Edit"] = "Изменить"; -App::$strings["(Unknown)"] = "(Неизвестный)"; -App::$strings["Visible to anybody on the internet."] = "Виден всем в интернете."; -App::$strings["Visible to you only."] = "Видно только вам."; -App::$strings["Visible to anybody in this network."] = "Видно всем в этой сети."; -App::$strings["Visible to anybody authenticated."] = "Видно всем аутентифицированным."; -App::$strings["Visible to anybody on %s."] = "Видно всем в %s."; -App::$strings["Visible to all connections."] = "Видно всем контактам."; -App::$strings["Visible to approved connections."] = "Видно только одобренным контактам."; -App::$strings["Visible to specific connections."] = "Видно указанным контактам."; -App::$strings["Item not found."] = "Элемент не найден."; -App::$strings["Privacy group not found."] = "Группа безопасности не найдена."; -App::$strings["Privacy group is empty."] = "Группа безопасности пуста"; -App::$strings["Privacy group: %s"] = "Группа безопасности: %s"; -App::$strings["Connection: %s"] = "Контакт: %s"; -App::$strings["Connection not found."] = "Контакт не найден."; -App::$strings["female"] = "женщина"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s обновила её %2\$s"; -App::$strings["male"] = "мужчина"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s обновил его %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s обновили их %2\$s"; -App::$strings["profile photo"] = "Фотография профиля"; -App::$strings["[Edited %s]"] = "[Отредактировано %s]"; -App::$strings["__ctx:edit_activity__ Post"] = "Публикация"; -App::$strings["__ctx:edit_activity__ Comment"] = "Комментарий"; -App::$strings["%d invitation available"] = array( - 0 => "доступно %d приглашение", - 1 => "доступны %d приглашения", - 2 => "доступны %d приглашений", -); -App::$strings["Advanced"] = "Дополнительно"; -App::$strings["Find Channels"] = "Поиск каналов"; -App::$strings["Enter name or interest"] = "Впишите имя или интерес"; -App::$strings["Connect/Follow"] = "Подключить / отслеживать"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; -App::$strings["Find"] = "Поиск"; -App::$strings["Channel Suggestions"] = "Рекомендации каналов"; -App::$strings["Random Profile"] = "Случайный профиль"; -App::$strings["Invite Friends"] = "Пригласить друзей"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Расширенный пример: name=ivan and country=russia"; -App::$strings["Saved Folders"] = "Сохранённые каталоги"; -App::$strings["Everything"] = "Всё"; -App::$strings["Common Connections"] = "Общие контакты"; -App::$strings["View all %d common connections"] = "Просмотреть все %d общих контактов"; -App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; -App::$strings["Empty name"] = "Пустое имя"; -App::$strings["Name too long"] = "Слишком длинное имя"; -App::$strings["No account identifier"] = "Идентификатор аккаунта отсутствует"; -App::$strings["Nickname is required."] = "Требуется псевдоним."; -App::$strings["Reserved nickname. Please choose another."] = "Зарезервированый псевдоним. Пожалуйста, выберите другой."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте."; -App::$strings["Unable to retrieve created identity"] = "Не удается получить созданный идентификатор"; -App::$strings["Default Profile"] = "Профиль по умолчанию"; -App::$strings["Friends"] = "Друзья"; -App::$strings["Unable to retrieve modified identity"] = "Не удается найти изменённый идентификатор"; -App::$strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен."; -App::$strings["Change profile photo"] = "Изменить фотографию профиля"; -App::$strings["Create New Profile"] = "Создать новый профиль"; -App::$strings["Profile Image"] = "Изображение профиля"; -App::$strings["Visible to everybody"] = "Видно всем"; -App::$strings["Edit visibility"] = "Редактировать видимость"; -App::$strings["Gender:"] = "Пол:"; -App::$strings["Homepage:"] = "Домашняя страница:"; -App::$strings["Online Now"] = "Сейчас в сети"; -App::$strings["Change your profile photo"] = "Изменить фотографию вашего профиля"; -App::$strings["Trans"] = "Трансексуал"; -App::$strings["Neuter"] = "Среднего рода"; -App::$strings["Non-specific"] = "Неспецифический"; -App::$strings["Full Name:"] = "Полное имя:"; -App::$strings["Like this channel"] = "нравится этот канал"; -App::$strings["j F, Y"] = ""; -App::$strings["j F"] = ""; -App::$strings["Birthday:"] = "День рождения:"; -App::$strings["Age:"] = "Возраст:"; -App::$strings["for %1\$d %2\$s"] = "для %1\$d %2\$s"; -App::$strings["Tags:"] = "Теги:"; -App::$strings["Sexual Preference:"] = "Сексуальные предпочтения:"; -App::$strings["Hometown:"] = "Родной город:"; -App::$strings["Political Views:"] = "Политические взгляды:"; -App::$strings["Religion:"] = "Религия:"; -App::$strings["About:"] = "О себе:"; -App::$strings["Hobbies/Interests:"] = "Хобби / интересы:"; -App::$strings["Likes:"] = "Что вам нравится:"; -App::$strings["Dislikes:"] = "Что вам не нравится:"; -App::$strings["Contact information and Social Networks:"] = "Контактная информация и социальные сети:"; -App::$strings["My other channels:"] = "Мои другие каналы:"; -App::$strings["Musical interests:"] = "Музыкальные интересы:"; -App::$strings["Books, literature:"] = "Книги, литература:"; -App::$strings["Television:"] = "Телевидение:"; -App::$strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:"; -App::$strings["Love/Romance:"] = "Любовь / романтика:"; -App::$strings["Work/employment:"] = "Работа / занятость:"; -App::$strings["School/education:"] = "Школа / образование:"; -App::$strings["Profile"] = "Профиль"; -App::$strings["Like this thing"] = "нравится этo"; -App::$strings["Export"] = "Экспорт"; -App::$strings["cover photo"] = "фотография обложки"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)"; -App::$strings["Authenticate"] = "Проверка подлинности"; -App::$strings["Account '%s' deleted"] = "Аккаунт '%s' удален"; -App::$strings["General Features"] = "Главные функции"; -App::$strings["New Member Links"] = "Ссылки для новичков"; -App::$strings["Display new member quick links menu"] = "Показать меню быстрых ссылок для новых участников"; -App::$strings["Advanced Profiles"] = "Расширенные профили"; -App::$strings["Additional profile sections and selections"] = "Дополнительные секции и выборы профиля"; -App::$strings["Profile Import/Export"] = "Импорт / экспорт профиля"; -App::$strings["Save and load profile details across sites/channels"] = "Сохранение и загрузка настроек профиля на всех сайтах / каналах"; -App::$strings["Web Pages"] = "Веб-страницы"; -App::$strings["Provide managed web pages on your channel"] = "Предоставлять управляемые веб-страницы на Вашем канале"; -App::$strings["Provide a wiki for your channel"] = "Предоставьте Wiki для вашего канала"; -App::$strings["Private Notes"] = "Личные заметки"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)"; -App::$strings["Create personal planning cards"] = "Создать личные карточки планирования"; -App::$strings["Create interactive articles"] = "Создать интерактивные статьи"; -App::$strings["Navigation Channel Select"] = "Выбор канала навигации"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Изменить канал напрямую из выпадающего меню"; -App::$strings["Photo Location"] = "Местоположение фотографии"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Если данные о местоположении доступны на загруженных фотографий, связать их с картой."; -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["Event Timezone Selection"] = "Выбор часового пояса события"; -App::$strings["Allow event creation in timezones other than your own."] = "Разрешить создание события в часовой зоне отличной от вашей"; -App::$strings["Premium Channel"] = "Премиум-канал"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Позволяет установить ограничения и условия для подключающихся к вашему каналу"; -App::$strings["Advanced Directory Search"] = "Расширенный поиск в каталоге"; -App::$strings["Allows creation of complex directory search queries"] = "Позволяет создание сложных поисковых запросов в каталоге"; -App::$strings["Advanced Theme and Layout Settings"] = "Расширенный настройки темы и отображения"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Разрешает тонкую настройку тем и шаблонов страниц"; -App::$strings["Access Control and Permissions"] = "Управление доступом и разрешениями"; -App::$strings["Enable management and selection of privacy groups"] = "Включить управление и выбор групп безопасности"; -App::$strings["Multiple Profiles"] = "Несколько профилей"; -App::$strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; -App::$strings["Permission Categories"] = "Категории разрешений"; -App::$strings["Create custom connection permission limits"] = "Создать пользовательские ограничения на доступ к подключению"; -App::$strings["OAuth1 Clients"] = "Клиенты OAuth1"; -App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений."; -App::$strings["OAuth2 Clients"] = "Клиенты OAuth2"; -App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений."; -App::$strings["Access Tokens"] = "Токены доступа"; -App::$strings["Create access tokens so that non-members can access private content."] = "Создать токены доступа для доступа к приватному содержимому."; -App::$strings["Post Composition Features"] = "Функции создания публикаций"; -App::$strings["Large Photos"] = "Большие фотографии"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Включить большие (1024px) миниатюры изображений в публикациях. Если не включено, использовать маленькие (640px) миниатюры."; -App::$strings["Channel Sources"] = "Источники канала"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Автоматический импорт контента из других каналов или лент"; -App::$strings["Even More Encryption"] = "Еще больше шифрования"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Разрешить дополнительное end-to-end шифрование содержимого с общим секретным ключом"; -App::$strings["Enable Voting Tools"] = "Включить инструменты голосования"; -App::$strings["Provide a class of post which others can vote on"] = "Предоставь класс публикаций с возможностью голосования"; -App::$strings["Disable Comments"] = "Отключить комментарии"; -App::$strings["Provide the option to disable comments for a post"] = "Предоставить возможность отключать комментарии для публикаций"; -App::$strings["Delayed Posting"] = "Задержанная публикация"; -App::$strings["Allow posts to be published at a later date"] = "Разрешить размешать публикации следующими датами"; -App::$strings["Content Expiration"] = "Истечение срока действия содержимого"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Удалять публикации / комментарии и / или личные сообщения"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Подавлять дублирующие публикации / комментарии"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Предотвращает появление публикаций с одинаковым содержимым если интервал между ними менее 2 минут"; -App::$strings["Auto-save drafts of posts and comments"] = "Автоматически сохранять черновики публикаций и комментариев"; -App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Автоматически сохраняет черновики публикаций и комментариев в локальном хранилище браузера для предотвращения их случайной утраты"; -App::$strings["Network and Stream Filtering"] = "Фильтрация сети и потока"; -App::$strings["Search by Date"] = "Поиск по дате"; -App::$strings["Ability to select posts by date ranges"] = "Возможность выбора сообщений по диапазонам дат"; -App::$strings["Saved Searches"] = "Сохранённые поиски"; -App::$strings["Save search terms for re-use"] = "Сохранять результаты поиска для повторного использования"; -App::$strings["Alternate Stream Order"] = "Отображение потока"; -App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Возможность показывать поток по дате последнего сообщения, последнего комментария или в порядке поступления"; -App::$strings["Contact Filter"] = "Фильтр контактов"; -App::$strings["Ability to display only posts of a selected contact"] = "Возможность показа публикаций только от выбранных контактов"; -App::$strings["Forum Filter"] = "Фильтр по форумам"; -App::$strings["Ability to display only posts of a specific forum"] = "Возможность показа публикаций только определённого форума"; -App::$strings["Personal Posts Filter"] = "Персональный фильтр публикаций"; -App::$strings["Ability to display only posts that you've interacted on"] = "Возможность показа только тех публикаций с которыми вы взаимодействовали"; -App::$strings["Affinity Tool"] = "Инструмент сходства / соответствия"; -App::$strings["Filter stream activity by depth of relationships"] = "Фильтровать потоки активности по глубине отношений"; -App::$strings["Suggest Channels"] = "Предлагаемые каналы"; -App::$strings["Show friend and connection suggestions"] = "Показать предложения в друзья"; -App::$strings["Connection Filtering"] = "Фильтрация контактов"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Фильтр входящих сообщений от контактов на основе ключевых слов / контента"; -App::$strings["Post/Comment Tools"] = "Инструменты публикаций / комментариев"; -App::$strings["Community Tagging"] = "Отметки сообщества"; -App::$strings["Ability to tag existing posts"] = "Возможность помечать тегами существующие публикации"; -App::$strings["Post Categories"] = "Категории публикаций"; -App::$strings["Add categories to your posts"] = "Добавить категории для ваших публикаций"; -App::$strings["Emoji Reactions"] = "Реакции Emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Возможность добавлять реакции Emoji к публикациям"; -App::$strings["Ability to file posts under folders"] = "Возможность размещать публикации в каталогах"; -App::$strings["Dislike Posts"] = "Не нравящиеся публикации"; -App::$strings["Ability to dislike posts/comments"] = "Возможность отмечать не нравящиеся публикации / комментарии"; -App::$strings["Star Posts"] = "Помечать сообщения"; -App::$strings["Ability to mark special posts with a star indicator"] = "Возможность отметить специальные сообщения индикатором-звёздочкой"; -App::$strings["Tag Cloud"] = "Облако тегов"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Показывает личное облако тегов на странице канала"; -App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; -App::$strings["No recipient provided."] = "Получатель не предоставлен."; -App::$strings["[no subject]"] = "[без темы]"; -App::$strings["Stored post could not be verified."] = "Сохранённая публикация не может быть проверена."; -App::$strings["Frequently"] = "Часто"; -App::$strings["Hourly"] = "Ежечасно"; -App::$strings["Twice daily"] = "Дважды в день"; -App::$strings["Daily"] = "Ежедневно"; -App::$strings["Weekly"] = "Еженедельно"; -App::$strings["Monthly"] = "Ежемесячно"; -App::$strings["Currently Male"] = "В настоящее время мужской"; -App::$strings["Currently Female"] = "В настоящее время женский"; -App::$strings["Mostly Male"] = "В основном мужской"; -App::$strings["Mostly Female"] = "В основном женский"; -App::$strings["Transgender"] = "Трансгендер"; -App::$strings["Intersex"] = "Интерсексуал"; -App::$strings["Transsexual"] = "Транссексуал"; -App::$strings["Hermaphrodite"] = "Гермафродит"; -App::$strings["Undecided"] = "Не решил"; -App::$strings["Males"] = "Мужчины"; -App::$strings["Females"] = "Женщины"; -App::$strings["Gay"] = "Гей"; -App::$strings["Lesbian"] = "Лесбиянка"; -App::$strings["No Preference"] = "Без предпочтений"; -App::$strings["Bisexual"] = "Бисексуал"; -App::$strings["Autosexual"] = "Автосексуал"; -App::$strings["Abstinent"] = "Воздержание"; -App::$strings["Virgin"] = "Девственник"; -App::$strings["Deviant"] = "Отклоняющийся от нормы"; -App::$strings["Fetish"] = "Фетишист"; -App::$strings["Oodles"] = "Множественный"; -App::$strings["Nonsexual"] = "Асексуал"; -App::$strings["Single"] = "Одиночка"; -App::$strings["Lonely"] = "Одинокий"; -App::$strings["Available"] = "Свободен"; -App::$strings["Unavailable"] = "Занят"; -App::$strings["Has crush"] = "Влюблён"; -App::$strings["Infatuated"] = "без ума"; -App::$strings["Dating"] = "Встречаюсь"; -App::$strings["Unfaithful"] = "Неверный"; -App::$strings["Sex Addict"] = "Эротоман"; -App::$strings["Friends/Benefits"] = "Друзья / Выгоды"; -App::$strings["Casual"] = "Легкомысленный"; -App::$strings["Engaged"] = "Помолвлен"; -App::$strings["Married"] = "В браке"; -App::$strings["Imaginarily married"] = "В воображаемом браке"; -App::$strings["Partners"] = "Партнёрство"; -App::$strings["Cohabiting"] = "Сожительствующие"; -App::$strings["Common law"] = "Гражданский брак"; -App::$strings["Happy"] = "Счастлив"; -App::$strings["Not looking"] = "Не нуждаюсь"; -App::$strings["Swinger"] = "Свингер"; -App::$strings["Betrayed"] = "Предан"; -App::$strings["Separated"] = "Разделён"; -App::$strings["Unstable"] = "Нестабильно"; -App::$strings["Divorced"] = "В разводе"; -App::$strings["Imaginarily divorced"] = "В воображаемом разводе"; -App::$strings["Widowed"] = "Вдовец / вдова"; -App::$strings["Uncertain"] = "Неопределенный"; -App::$strings["It's complicated"] = "Это сложно"; -App::$strings["Don't care"] = "Всё равно"; -App::$strings["Ask me"] = "Спроси меня"; -App::$strings["Delete this item?"] = "Удалить этот элемент?"; -App::$strings["Comment"] = "Комментарий"; -App::$strings["%s show all"] = "%s показать всё"; -App::$strings["%s show less"] = "%s показать меньше"; -App::$strings["%s expand"] = "%s развернуть"; -App::$strings["%s collapse"] = "%s свернуть"; -App::$strings["Password too short"] = "Пароль слишком короткий"; -App::$strings["Passwords do not match"] = "Пароли не совпадают"; -App::$strings["everybody"] = "все"; -App::$strings["Secret Passphrase"] = "Тайный пароль"; -App::$strings["Passphrase hint"] = "Подсказка для пароля"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Уведомление: Права доступа изменились, но до сих пор не сохранены."; -App::$strings["close all"] = "закрыть все"; -App::$strings["Nothing new here"] = "Здесь нет ничего нового"; -App::$strings["Rate This Channel (this is public)"] = "Оценкa этoго канала (общедоступно)"; -App::$strings["Rating"] = "Оценка"; -App::$strings["Describe (optional)"] = "Охарактеризовать (необязательно)"; -App::$strings["Please enter a link URL"] = "Пожалуйста, введите URL ссылки"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?"; -App::$strings["Location"] = "Место"; -App::$strings["lovely"] = "прекрасно"; -App::$strings["wonderful"] = "замечательно"; -App::$strings["fantastic"] = "фантастично"; -App::$strings["great"] = "отлично"; -App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "Выбранный вами псевдоним уже используется или недействителен. Попробуйте использовать наше предложение ("; -App::$strings[") or enter a new one."] = ") или введите новый."; -App::$strings["Thank you, this nickname is valid."] = "Спасибо, этот псевдоним может быть использован."; -App::$strings["A channel name is required."] = "Требуется название канала."; -App::$strings["This is a "] = "Это "; -App::$strings[" channel name"] = " название канала"; -App::$strings["timeago.prefixAgo"] = ""; -App::$strings["timeago.prefixFromNow"] = ""; -App::$strings["timeago.suffixAgo"] = "назад"; -App::$strings["timeago.suffixFromNow"] = ""; -App::$strings["less than a minute"] = "менее чем одну минуту"; -App::$strings["about a minute"] = "около минуты"; -App::$strings["%d minutes"] = "%d минут"; -App::$strings["about an hour"] = "около часа"; -App::$strings["about %d hours"] = "около %d часов"; -App::$strings["a day"] = "день"; -App::$strings["%d days"] = "%d дней"; -App::$strings["about a month"] = "около месяца"; -App::$strings["%d months"] = "%d месяцев"; -App::$strings["about a year"] = "около года"; -App::$strings["%d years"] = "%d лет"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = ""; -App::$strings["__ctx:long__ May"] = "Май"; -App::$strings["Jan"] = "Янв"; -App::$strings["Feb"] = "Фев"; -App::$strings["Mar"] = "Мар"; -App::$strings["Apr"] = "Апр"; -App::$strings["__ctx:short__ May"] = "Май"; -App::$strings["Jun"] = "Июн"; -App::$strings["Jul"] = "Июл"; -App::$strings["Aug"] = "Авг"; -App::$strings["Sep"] = "Сен"; -App::$strings["Oct"] = "Окт"; -App::$strings["Nov"] = "Ноя"; -App::$strings["Dec"] = "Дек"; -App::$strings["Sun"] = "Вск"; -App::$strings["Mon"] = "Пон"; -App::$strings["Tue"] = "Вт"; -App::$strings["Wed"] = "Ср"; -App::$strings["Thu"] = "Чет"; -App::$strings["Fri"] = "Пят"; -App::$strings["Sat"] = "Суб"; -App::$strings["__ctx:calendar__ today"] = "сегодня"; -App::$strings["__ctx:calendar__ month"] = "месяц"; -App::$strings["__ctx:calendar__ week"] = "неделя"; -App::$strings["__ctx:calendar__ day"] = "день"; -App::$strings["__ctx:calendar__ All day"] = "Весь день"; -App::$strings["View PDF"] = "Просмотреть PDF"; -App::$strings[" by "] = " по "; -App::$strings[" on "] = " на "; -App::$strings["Embedded content"] = "Встроенное содержимое"; -App::$strings["Embedding disabled"] = "Встраивание отключено"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Файл превышает предельный размер для сайта в %lu байт"; -App::$strings["Image file is empty."] = "Файл изображения пуст."; -App::$strings["Unable to process image"] = "Не удается обработать изображение"; -App::$strings["Photo storage failed."] = "Ошибка хранилища фотографий."; -App::$strings["a new photo"] = "новая фотография"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s опубликовал %2\$s в %3\$s"; -App::$strings["Recent Photos"] = "Последние фотографии"; -App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; -App::$strings["New window"] = "Новое окно"; -App::$strings["Open the selected location in a different window or browser tab"] = "Открыть выбранное местоположение в другом окне или вкладке браузера"; -App::$strings["Wiki updated successfully"] = "Wiki успешно обновлена"; -App::$strings["Wiki files deleted successfully"] = "Wiki успешно удалена"; -App::$strings["0. Beginner/Basic"] = "Начинающий / Базовый"; -App::$strings["1. Novice - not skilled but willing to learn"] = "1. Новичок - не опытный, но желающий учиться"; -App::$strings["2. Intermediate - somewhat comfortable"] = "2. Промежуточный - более удобный"; -App::$strings["3. Advanced - very comfortable"] = "3. Продвинутый - очень удобный"; -App::$strings["4. Expert - I can write computer code"] = "4. Эксперт - я умею программировать"; -App::$strings["5. Wizard - I probably know more than you do"] = "5. Волшебник - возможно я знаю больше чем ты"; -App::$strings["Public"] = "Общедоступно"; -App::$strings["Anybody in the \$Projectname network"] = "Любому в сети \$Projectname"; -App::$strings["Any account on %s"] = "Любой аккаунт в %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["Admin Delete"] = "Удалено администратором"; -App::$strings["Save to Folder"] = "Сохранить в каталог"; -App::$strings["I will attend"] = "Я буду присутствовать"; -App::$strings["I will not attend"] = "Я не буду присутствовать"; -App::$strings["I might attend"] = "Я возможно буду присутствовать"; -App::$strings["I agree"] = "Я согласен"; -App::$strings["I disagree"] = "Я не согласен"; -App::$strings["I abstain"] = "Я воздержался"; -App::$strings["View all"] = "Просмотреть все"; -App::$strings["Add Tag"] = "Добавить тег"; -App::$strings["I like this (toggle)"] = "мне это нравится (переключение)"; -App::$strings["I don't like this (toggle)"] = "мне это не нравится (переключение)"; -App::$strings["Share This"] = "Поделиться этим"; -App::$strings["share"] = "поделиться"; -App::$strings["Delivery Report"] = "Отчёт о доставке"; -App::$strings["%d comment"] = array( - 0 => "%d комментарий", - 1 => "%d комментария", - 2 => "%d комментариев", -); -App::$strings["View %s's profile - %s"] = "Просмотр %s профиля - %s"; -App::$strings["to"] = "к"; -App::$strings["via"] = "через"; -App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; -App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; -App::$strings["Attend"] = "Посетить"; -App::$strings["Attendance Options"] = "Параметры посещаемости"; -App::$strings["Vote"] = "Голосовать"; -App::$strings["Voting Options"] = "Параметры голосования"; -App::$strings["Add to Calendar"] = "Добавить в календарь"; -App::$strings["Mark all seen"] = "Отметить как просмотренное"; -App::$strings["__ctx:noun__ Likes"] = "Нравится"; -App::$strings["__ctx:noun__ Dislikes"] = "Не нравится"; -App::$strings["This is you"] = "Это вы"; -App::$strings["Image"] = "Изображение"; -App::$strings["Insert Link"] = "Вставить ссылку"; -App::$strings["Video"] = "Видео"; -App::$strings["Your full name (required)"] = "Ваше полное имя (требуется)"; -App::$strings["Your email address (required)"] = "Ваш адрес электронной почты (требуется)"; -App::$strings["Your website URL (optional)"] = "URL вашего вебсайта (необязательно)"; -App::$strings["Apps"] = "Приложения"; -App::$strings["Site Admin"] = "Администратор сайта"; -App::$strings["View Bookmarks"] = "Просмотреть закадки"; -App::$strings["My Chatrooms"] = "Мои чаты"; -App::$strings["Remote Diagnostics"] = "Удалённая диагностика"; -App::$strings["Activity"] = "Активность"; -App::$strings["Channel Home"] = "Главная канала"; -App::$strings["Directory"] = "Каталог"; -App::$strings["Mail"] = "Переписка"; -App::$strings["Mood"] = "Настроение"; -App::$strings["Chat"] = "Чат"; -App::$strings["Probe"] = "Проба"; -App::$strings["Suggest"] = "Предложить"; -App::$strings["Random Channel"] = "Случайный канал"; -App::$strings["Invite"] = "Пригласить"; -App::$strings["Features"] = "Функции"; -App::$strings["Post"] = "Публикация"; -App::$strings["Profiles"] = "Редактировать профиль"; -App::$strings["Notifications"] = "Оповещения"; -App::$strings["Order Apps"] = "Порядок приложений"; -App::$strings["Update"] = "Обновить"; -App::$strings["Install"] = "Установить"; -App::$strings["Purchase"] = "Купить"; -App::$strings["Undelete"] = "Восстановить"; -App::$strings["Add to app-tray"] = "Добавить в app-tray"; -App::$strings["Remove from app-tray"] = "Удалить из app-tray"; -App::$strings["Pin to navbar"] = "Добавить на панель навигации"; -App::$strings["Unpin from navbar"] = "Удалить с панели навигации"; -App::$strings["\$Projectname Notification"] = "Оповещение \$Projectname "; -App::$strings["Thank You,"] = "Спасибо,"; -App::$strings["This email was sent by %1\$s at %2\$s."] = "Это письмо было отправлено %1\$s на %2\$s."; -App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Чтобы прекратить получать эти сообщения, настройте параметры уведомлений в %s"; -App::$strings["To stop receiving these messages, please adjust your %s."] = "Чтобы прекратить получать эти сообщения, пожалуйста измените %s."; -App::$strings["Notification Settings"] = "Настройки уведомлений"; -App::$strings["%s "] = ""; -App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Получено новое сообщение в %s"; -App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение в %2\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s отправил вам %2\$s."; -App::$strings["a private message"] = "личное сообщение"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; -App::$strings["commented on"] = "прокомментировал"; -App::$strings["liked"] = "понравилось"; -App::$strings["disliked"] = "не понравилось"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%5\$s %4\$s[/zrl]"; -App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]ваш %4\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Отмодерирован комментарий к беседе #%1\$d по %2\$s"; -App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Комментарий к беседе #%1\$d по %2\$s"; -App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s прокомментировал тему / беседу за которым вы следите."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и / или ответа в беседе."; -App::$strings["Please visit %s to approve or reject this comment."] = "Пожалуйста посетитет %s для одобрения и отклонения комментария."; -App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s понравился [zrl=%2\$s]ваш %3\$s[/zrl]"; -App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Беседа получила отметку \"нравится\" #%1\$d от %2\$s"; -App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s нравится тема / беседа которую вы создали."; -App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s сделал публикацию на стене вашего профиля"; -App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s сделал публикацию на стене вашего профиля в %2\$s"; -App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s опубликовал на [zrl=%2\$s]вашей стене[/zrl]"; -App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %s отметил вас"; -App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s отметил вас в %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]отметил вас[/zrl]."; -App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s ткнул вас"; -App::$strings["%1\$s poked you at %2\$s"] = "%1\$s ткнул вас в %2\$s"; -App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]ткнул вас[/zrl]."; -App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s отметил вашу публикацию"; -App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s отметил вашу публикацию на %2\$s"; -App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s отметил [zrl=%2\$s]вашу публикацию[/zrl]"; -App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Получено приглашение"; -App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Вы получили новый запрос контакта от '%1\$s' в %2\$s"; -App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Вы получили [zrl=%1\$s]новый запрос контакта[/zrl] от %2\$s."; -App::$strings["You may visit their profile at %s"] = "Вы можете увидеть его профиль по ссылке %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта."; -App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Получено предложение дружить"; -App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружить от '%1\$s' в %2\$s"; -App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Вы получили [zrl=%1\$s]предложение дружить[/zrl] для %2\$s от %3\$s."; -App::$strings["Name:"] = "Имя:"; -App::$strings["Photo:"] = "Фото:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение."; -App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Уведомление]"; -App::$strings["created a new post"] = "создал новую публикацию"; -App::$strings["commented on %s's post"] = "прокомментировал публикацию %s"; -App::$strings["edited a post dated %s"] = "отредактировал публикацию датированную %s"; -App::$strings["edited a comment dated %s"] = "отредактировал комментарий датированный %s"; -App::$strings["(No Title)"] = "(нет заголовка)"; -App::$strings["Wiki page create failed."] = "Не удалось создать страницу Wiki."; -App::$strings["Wiki not found."] = "Wiki не найдена."; -App::$strings["Destination name already exists"] = "Имя назначения уже существует"; -App::$strings["Page not found"] = "Страница не найдена."; -App::$strings["Error reading page content"] = "Ошибка чтения содержимого страницы"; -App::$strings["Error reading wiki"] = "Ошибка чтения Wiki"; -App::$strings["Page update failed."] = "Не удалось обновить страницу."; -App::$strings["Nothing deleted"] = "Ничего не удалено"; -App::$strings["Compare: object not found."] = "Сравнение: объект не найден."; -App::$strings["Page updated"] = "Страница обновлена"; -App::$strings["Untitled"] = "Не озаглавлено"; -App::$strings["Wiki resource_id required for git commit"] = "Требуется resource_id Wiki для отправки в Git"; -App::$strings["__ctx:wiki_history__ Message"] = "Сообщение"; -App::$strings["__ctx:permcat__ default"] = "по умолчанию"; -App::$strings["__ctx:permcat__ follower"] = "поклонник"; -App::$strings["__ctx:permcat__ contributor"] = "участник"; -App::$strings["__ctx:permcat__ publisher"] = "издатель"; -App::$strings["Update Error at %s"] = "Ошибка обновления на %s"; -App::$strings["Update %s failed. See error logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; -App::$strings["Missing room name"] = "Отсутствует название комнаты"; -App::$strings["Duplicate room name"] = "Название комнаты дублируется"; -App::$strings["Invalid room specifier."] = "Неверный указатель комнаты."; -App::$strings["Room not found."] = "Комната не найдена."; -App::$strings["Room is full"] = "Комната переполнена"; -App::$strings["Commented Date"] = "По комментариям"; -App::$strings["Order by last commented date"] = "Сортировка по дате последнего комментария"; -App::$strings["Posted Date"] = "По публикациям"; -App::$strings["Order by last posted date"] = "Сортировка по дате последней публикации"; -App::$strings["Date Unthreaded"] = "По порядку"; -App::$strings["Order unthreaded by date"] = "Сортировка в порядке поступления"; -App::$strings["Activity Order"] = "Сортировка активности"; -App::$strings["Site"] = "Сайт"; -App::$strings["Accounts"] = "Учётные записи"; -App::$strings["Member registrations waiting for confirmation"] = "Регистрации участников, ожидающие подверждения"; -App::$strings["Channels"] = "Каналы"; -App::$strings["Security"] = "Безопасность"; -App::$strings["Addons"] = "Расширения"; -App::$strings["Themes"] = "Темы"; -App::$strings["Inspect queue"] = "Просмотр очереди"; -App::$strings["Profile Fields"] = "Поля профиля"; -App::$strings["DB updates"] = "Обновление базы данных"; -App::$strings["Logs"] = "Журналы"; -App::$strings["Addon Features"] = "Настройки расширений"; -App::$strings["Tasks"] = "Задачи"; -App::$strings["Ignore/Hide"] = "Игнорировать / cкрыть"; -App::$strings["Suggestions"] = "Рекомендации"; -App::$strings["See more..."] = "Просмотреть больше..."; -App::$strings["Received Messages"] = "Полученные сообщения"; -App::$strings["Sent Messages"] = "Отправленные сообщения"; -App::$strings["Conversations"] = "Беседы"; -App::$strings["No messages."] = "Сообщений нет."; -App::$strings["Delete conversation"] = "Удалить беседу"; -App::$strings["Select Channel"] = "Выбрать канал"; -App::$strings["Read-write"] = "Чтение-запись"; -App::$strings["Read-only"] = "Только чтение"; -App::$strings["My Calendars"] = "Мои календари"; -App::$strings["Shared Calendars"] = "Общие календари"; -App::$strings["Share this calendar"] = "Поделиться этим календарём"; -App::$strings["Calendar name and color"] = "Имя и цвет календаря"; -App::$strings["Create new calendar"] = "Создать новый календарь"; -App::$strings["Create"] = "Создать"; -App::$strings["Calendar Name"] = "Имя календаря"; -App::$strings["Calendar Tools"] = "Инструменты календаря"; -App::$strings["Import calendar"] = "Импортировать календарь"; -App::$strings["Select a calendar to import to"] = "Выбрать календарь для импорта в"; -App::$strings["Upload"] = "Загрузка"; -App::$strings["Addressbooks"] = "Адресные книги"; -App::$strings["Addressbook name"] = "Имя адресной книги"; -App::$strings["Create new addressbook"] = "Создать новую адресную книгу"; -App::$strings["Addressbook Name"] = "Имя адресной книги"; -App::$strings["Addressbook Tools"] = "Инструменты адресной книги"; -App::$strings["Import addressbook"] = "Импортировать адресную книгу"; -App::$strings["Select an addressbook to import to"] = "Выбрать адресную книгу для импорта в"; -App::$strings["__ctx:widget__ Activity"] = "Активность"; -App::$strings["HQ Control Panel"] = "Панель управления HQ"; -App::$strings["Create a new post"] = "Создать новую публикацию"; -App::$strings["Add new page"] = "Добавить новую страницу"; -App::$strings["Options"] = "Параметры"; -App::$strings["Wiki Pages"] = "Wiki страницы"; -App::$strings["Page name"] = "Название страницы"; -App::$strings["Private Mail Menu"] = "Меню личной переписки"; -App::$strings["Combined View"] = "Комбинированный вид"; -App::$strings["Inbox"] = "Входящие"; -App::$strings["Outbox"] = "Исходящие"; -App::$strings["New Message"] = "Новое сообщение"; -App::$strings["photo/image"] = "фотография / изображение"; -App::$strings["Archives"] = "Архивы"; -App::$strings["Events Tools"] = "Инструменты для событий"; -App::$strings["Export Calendar"] = "Экспортировать календарь"; -App::$strings["Import Calendar"] = "Импортировать календарь"; -App::$strings["Wiki List"] = "Список Wiki"; -App::$strings["Account settings"] = "Настройки аккаунта"; -App::$strings["Channel settings"] = "Настройки канала"; -App::$strings["Additional features"] = "Дополнительные функции"; -App::$strings["Addon settings"] = "Настройки расширений"; -App::$strings["Display settings"] = "Настройки отображения"; -App::$strings["Manage locations"] = "Управление местоположением"; -App::$strings["Export channel"] = "Экспортировать канал"; -App::$strings["OAuth1 apps"] = "Приложения OAuth1"; -App::$strings["OAuth2 apps"] = "Приложения OAuth2"; -App::$strings["Guest Access Tokens"] = "Токен гостевого доступа"; -App::$strings["Connection Default Permissions"] = "Разрешения по умолчанию для контакта"; -App::$strings["Premium Channel Settings"] = "Настройки премиум-канала"; -App::$strings["View Photo"] = "Посмотреть фотографию"; -App::$strings["Edit Album"] = "Редактировать Фотоальбом"; -App::$strings["Public Hubs"] = "Публичные хабы"; -App::$strings["Notes"] = "Заметки"; -App::$strings["Overview"] = "Обзор"; -App::$strings["App Collections"] = "Коллекции приложений"; -App::$strings["Available Apps"] = "Доступные приложения"; -App::$strings["Installed apps"] = "Установленные приложения"; -App::$strings["Bookmarked Chatrooms"] = "Закладки чатов"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "У вас есть %1$.0f из %2$.0f разрешенных контактов."; -App::$strings["Add New Connection"] = "Добавить новый контакт"; -App::$strings["Enter channel address"] = "Введите адрес канала"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Пример: ivan@example.com, http://example.com/ivan"; -App::$strings["Chat Members"] = "Участники чата"; -App::$strings["Suggested Chatrooms"] = "Рекомендуемые чаты"; -App::$strings["Rating Tools"] = "Инструменты оценки"; -App::$strings["Rate Me"] = "Оценить меня"; -App::$strings["View Ratings"] = "Просмотр оценок"; -App::$strings["Remove term"] = "Удалить термин"; -App::$strings["Me"] = "Я"; -App::$strings["Family"] = "Семья"; -App::$strings["Acquaintances"] = "Знакомые"; -App::$strings["All"] = "Все"; -App::$strings["Refresh"] = "Обновить"; -App::$strings["Personal Posts"] = "Личные публикации"; -App::$strings["Show posts that mention or involve me"] = "Показывать публикации где вы были упомянуты или привлечены"; -App::$strings["Starred Posts"] = "Отмеченные публикации"; -App::$strings["Show posts that I have starred"] = "Показывать публикации которые я отметил"; -App::$strings["Show posts related to the %s privacy group"] = "Показывать публикации относящиеся к группе безопасности %s"; -App::$strings["Show my privacy groups"] = "Показывать мои группы безопасности"; -App::$strings["Show posts to this forum"] = "Показывать публикации этого форума"; -App::$strings["Forums"] = "Форумы"; -App::$strings["Show forums"] = "Показывать форумы"; -App::$strings["Show posts that I have filed to %s"] = "Показывать публикации которые я добавил в %s"; -App::$strings["Show filed post categories"] = "Показывать категории добавленных публикаций"; -App::$strings["Panel search"] = "Панель поиска"; -App::$strings["Filter by name"] = "Отфильтровать по имени"; -App::$strings["Remove active filter"] = "Удалить активный фильтр"; -App::$strings["Activity Filters"] = "Фильтры активности"; -App::$strings["Click to show more"] = "Нажмите чтобы показать больше"; -App::$strings["New Network Activity"] = "Новая сетевая активность"; -App::$strings["New Network Activity Notifications"] = "Новые уведомления о сетевой активности"; -App::$strings["View your network activity"] = "Просмотреть вашу сетевую активность"; -App::$strings["Mark all notifications read"] = "Пометить уведомления как прочитанные"; -App::$strings["Show new posts only"] = "Показывать только новые публикации"; -App::$strings["New Home Activity"] = "Новая локальная активность"; -App::$strings["New Home Activity Notifications"] = "Новые уведомления локальной активности"; -App::$strings["View your home activity"] = "Просмотреть локальную активность"; -App::$strings["Mark all notifications seen"] = "Пометить уведомления как просмотренные"; -App::$strings["New Mails"] = "Новая переписка"; -App::$strings["New Mails Notifications"] = "Уведомления о новой переписке"; -App::$strings["View your private mails"] = "Просмотреть вашу личную переписку"; -App::$strings["Mark all messages seen"] = "Пометить сообщения как просмотренные"; -App::$strings["New Events"] = "Новые события"; -App::$strings["New Events Notifications"] = "Уведомления о новых событиях"; -App::$strings["View events"] = "Просмотреть события"; -App::$strings["Mark all events seen"] = "Пометить все события как просмотренные"; -App::$strings["New Connections"] = "Новые контакты"; -App::$strings["New Connections Notifications"] = "Уведомления о новых контактах"; -App::$strings["View all connections"] = "Просмотр всех контактов"; -App::$strings["New Files"] = "Новые файлы"; -App::$strings["New Files Notifications"] = "Уведомления о новых файлах"; -App::$strings["Notices"] = "Оповещения"; -App::$strings["View all notices"] = "Просмотреть все оповещения"; -App::$strings["Mark all notices seen"] = "Пометить все оповещения как просмотренные"; -App::$strings["New Registrations"] = "Новые регистрации"; -App::$strings["New Registrations Notifications"] = "Уведомления о новых регистрациях"; -App::$strings["Public Stream"] = "Публичный поток"; -App::$strings["Public Stream Notifications"] = "Уведомления публичного потока"; -App::$strings["View the public stream"] = "Просмотреть публичный поток"; -App::$strings["Sorry, you have got no notifications at the moment"] = "Извините, но сейчас у вас нет уведомлений"; -App::$strings["Profile Creation"] = "Создание профиля"; -App::$strings["Upload profile photo"] = "Загрузить фотографию профиля"; -App::$strings["Upload cover photo"] = "Загрузить фотографию обложки"; -App::$strings["Find and Connect with others"] = "Найти и вступить в контакт"; -App::$strings["View the directory"] = "Просмотреть каталог"; -App::$strings["View friend suggestions"] = "Просмотр рекомендуемых друзей"; -App::$strings["Manage your connections"] = "Управлять вашими контактами"; -App::$strings["Communicate"] = "Связаться"; -App::$strings["View your channel homepage"] = "Домашняя страница канала"; -App::$strings["View your network stream"] = "Просмотреть ваш сетевой поток"; -App::$strings["Documentation"] = "Документация"; -App::$strings["View public stream"] = "Просмотреть публичный поток"; -App::$strings["Social Networking"] = "Социальная Сеть"; -App::$strings["Social - Federation"] = "Социальная - Федерация"; -App::$strings["Social - Mostly Public"] = "Социальная - В основном общественный"; -App::$strings["Social - Restricted"] = "Социальная - Ограниченный"; -App::$strings["Social - Private"] = "Социальная - Частный"; -App::$strings["Community Forum"] = "Форум сообщества"; -App::$strings["Forum - Mostly Public"] = "Форум - В основном общественный"; -App::$strings["Forum - Restricted"] = "Форум - Ограниченный"; -App::$strings["Forum - Private"] = "Форум - Частный"; -App::$strings["Feed Republish"] = "Публиковать ленты новостей"; -App::$strings["Feed - Mostly Public"] = "Ленты новостей - В основном общественный"; -App::$strings["Feed - Restricted"] = "Ленты новостей - Ограниченный"; -App::$strings["Special Purpose"] = "Спец. назначение"; -App::$strings["Special - Celebrity/Soapbox"] = "Спец. назначение - Знаменитость/Soapbox"; -App::$strings["Special - Group Repository"] = "Спец. назначение - Групповой репозиторий"; -App::$strings["Custom/Expert Mode"] = "Экспертный режим"; -App::$strings["Can view my channel stream and posts"] = "Может просматривать мою ленту и сообщения"; -App::$strings["Can send me their channel stream and posts"] = "Может присылать мне свои потоки и сообщения"; -App::$strings["Can view my default channel profile"] = "Может просматривать мой стандартный профиль канала"; -App::$strings["Can view my connections"] = "Может просматривать мои контакты"; -App::$strings["Can view my file storage and photos"] = "Может просматривать мое хранилище файлов"; -App::$strings["Can upload/modify my file storage and photos"] = "Может загружать/изменять мои файлы и фотографии в хранилище"; -App::$strings["Can view my channel webpages"] = "Может просматривать мои веб-страницы"; -App::$strings["Can view my wiki pages"] = "Может просматривать мои вики-страницы"; -App::$strings["Can create/edit my channel webpages"] = "Может редактировать мои веб-страницы"; -App::$strings["Can write to my wiki pages"] = "Может редактировать мои вики-страницы"; -App::$strings["Can post on my channel (wall) page"] = "Может публиковать на моей странице канала"; -App::$strings["Can comment on or like my posts"] = "Может прокомментировать или отмечать как понравившиеся мои посты"; -App::$strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте"; -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"] = "Может использовать мои публичные сообщения в клонированных лентах сообщений"; -App::$strings["Can administer my channel"] = "Может администрировать мой канал"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Удалённая аутентификация заблокирована. Вы вошли на этот сайт локально. Пожалуйста, выйдите и попробуйте ещё раз."; -App::$strings["App installed."] = "Приложение установлено."; -App::$strings["Malformed app."] = "Неработающее приложение."; -App::$strings["Embed code"] = "Встроить код"; -App::$strings["Edit App"] = "Редактировать приложение"; -App::$strings["Create App"] = "Создать приложение"; -App::$strings["Name of app"] = "Наименование приложения"; -App::$strings["Location (URL) of app"] = "Местоположение (URL) приложения"; -App::$strings["Photo icon URL"] = "URL пиктограммы"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 пикселей - необязательно"; -App::$strings["Categories (optional, comma separated list)"] = "Категории (необязательно, список через запятую)"; -App::$strings["Version ID"] = "ID версии"; -App::$strings["Price of app"] = "Цена приложения"; -App::$strings["Location (URL) to purchase app"] = "Ссылка (URL) для покупки приложения"; -App::$strings["network"] = "сеть"; -App::$strings["INVALID EVENT DISMISSED!"] = "НЕДЕЙСТВИТЕЛЬНОЕ СОБЫТИЕ ОТКЛОНЕНО!"; -App::$strings["Summary: "] = "Резюме:"; -App::$strings["Date: "] = "Дата:"; -App::$strings["Reason: "] = "Причина:"; -App::$strings["INVALID CARD DISMISSED!"] = "НЕДЕЙСТВИТЕЛЬНАЯ КАРТОЧКА ОТКЛОНЕНА!"; -App::$strings["Name: "] = "Имя:"; -App::$strings["Event title"] = "Наименование события"; -App::$strings["Start date and time"] = "Дата и время начала"; -App::$strings["Example: YYYY-MM-DD HH:mm"] = "Пример: YYYY-MM-DD HH:mm"; -App::$strings["End date and time"] = "Дата и время окончания"; -App::$strings["Previous"] = "Предыдущая"; -App::$strings["Next"] = "Следующая"; -App::$strings["Today"] = "Сегодня"; -App::$strings["Month"] = "Месяц"; -App::$strings["Week"] = "Неделя"; -App::$strings["Day"] = "День"; -App::$strings["List month"] = "Просмотреть месяц"; -App::$strings["List week"] = "Просмотреть неделю"; -App::$strings["List day"] = "Просмотреть день"; -App::$strings["More"] = "Больше"; -App::$strings["Less"] = "Меньше"; -App::$strings["Select calendar"] = "Выбрать календарь"; -App::$strings["Delete all"] = "Удалить всё"; -App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Простите, но редактирование повторяющихся событий пока не реализовано."; -App::$strings["Organisation"] = "Организация"; -App::$strings["Title"] = "Наименование"; -App::$strings["Phone"] = "Телефон"; -App::$strings["Instant messenger"] = "Мессенджер"; -App::$strings["Website"] = "Веб-сайт"; -App::$strings["Address"] = "Адрес"; -App::$strings["Note"] = "Заметка"; -App::$strings["Add Field"] = "Добавить поле"; -App::$strings["P.O. Box"] = "абонентский ящик"; -App::$strings["Additional"] = "Дополнительно"; -App::$strings["Street"] = "Улица"; -App::$strings["Locality"] = "Населённый пункт"; -App::$strings["Region"] = "Регион"; -App::$strings["ZIP Code"] = "Индекс"; -App::$strings["Country"] = "Страна"; -App::$strings["Default Calendar"] = "Календарь по умолчанию"; -App::$strings["Default Addressbook"] = "Адресная книга по умолчанию"; -App::$strings["This page is available only to site members"] = "Эта страница доступна только для подписчиков сайта"; -App::$strings["Welcome"] = "Добро пожаловать"; -App::$strings["What would you like to do?"] = "Что бы вы хотели сделать?"; -App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем"; -App::$strings["Upload a profile photo"] = "Загрузить фотографию профиля"; -App::$strings["Upload a cover photo"] = "Загрузить фотографию обложки"; -App::$strings["Edit your default profile"] = "Редактировать ваш профиль по умолчанию"; -App::$strings["View the channel directory"] = "Просмотр каталога каналов"; -App::$strings["View/edit your channel settings"] = "Просмотреть / редактировать настройки вашего канала"; -App::$strings["View the site or project documentation"] = "Просмотр документации сайта / проекта"; -App::$strings["Visit your channel homepage"] = "Посетить страницу вашего канала"; -App::$strings["View your connections and/or add somebody whose address you already know"] = "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете"; -App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ваш персональный поток (может быть пуст пока вы не добавите контакты)"; -App::$strings["View the public stream. Warning: this content is not moderated"] = "Просмотр публичного потока. Предупреждение: этот контент не модерируется"; -App::$strings["Page owner information could not be retrieved."] = "Информация о владельце страницы не может быть получена."; -App::$strings["Album not found."] = "Альбом не найден."; -App::$strings["Delete Album"] = "Удалить альбом"; -App::$strings["Delete Photo"] = "Удалить фотографию"; -App::$strings["Public access denied."] = "Публичный доступ запрещен."; -App::$strings["No photos selected"] = "Никакие фотографии не выбраны"; -App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото."; -App::$strings["%1$.2f MB photo storage used."] = "Вы использовали %1$.2f мегабайт для хранения фото."; -App::$strings["Upload Photos"] = "Загрузить фотографии"; -App::$strings["Enter an album name"] = "Введите название альбома"; -App::$strings["or select an existing album (doubleclick)"] = "или выберите существующий альбом (двойной щелчок)"; -App::$strings["Create a status post for this upload"] = "Сделать публикацию о статусе для этой загрузки"; -App::$strings["Description (optional)"] = "Описание (необязательно)"; -App::$strings["Show Newest First"] = "Показать новые первыми"; -App::$strings["Show Oldest First"] = "Показать старые первыми"; -App::$strings["Add Photos"] = "Добавить фотографии"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Доступ запрещен. Доступ к этому элементу может быть ограничен."; -App::$strings["Photo not available"] = "Фотография не доступна"; -App::$strings["Use as profile photo"] = "Использовать в качестве фотографии профиля"; -App::$strings["Use as cover photo"] = "Использовать в качестве фотографии обложки"; -App::$strings["Private Photo"] = "Личная фотография"; -App::$strings["View Full Size"] = "Посмотреть в полный размер"; -App::$strings["Edit photo"] = "Редактировать фотографию"; -App::$strings["Rotate CW (right)"] = "Повернуть CW (направо)"; -App::$strings["Rotate CCW (left)"] = "Повернуть CCW (налево)"; -App::$strings["Move photo to album"] = "Переместить фотографию в альбом"; -App::$strings["Enter a new album name"] = "Введите новое название альбома"; -App::$strings["or select an existing one (doubleclick)"] = "или выбрать существующую (двойной щелчок)"; -App::$strings["Add a Tag"] = "Добавить тег"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Пометить как альбом \"для взрослых\""; -App::$strings["Photo Tools"] = "Фото-Инструменты"; -App::$strings["In This Photo:"] = "На этой фотографии:"; -App::$strings["Map"] = "Карта"; -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."] = "Указанные хабы разрешают публичную регистрацию для сети \$Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения."; -App::$strings["Hub URL"] = "URL сервера"; -App::$strings["Access Type"] = "Тип доступа"; -App::$strings["Registration Policy"] = "Политика регистрации"; -App::$strings["Stats"] = "Статистика"; -App::$strings["Software"] = "Программное обеспечение"; -App::$strings["Rate"] = "Оценка"; -App::$strings["View"] = "Просмотр"; -App::$strings["Continue"] = "Продолжить"; -App::$strings["Premium Channel Setup"] = "Установка премиум канала"; -App::$strings["Enable premium channel connection restrictions"] = "Включить ограничения для премиум канала"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Этот канал до подключения может требовать дополнительных шагов или подтверждений следующих условий:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Потенциальные соединения будут видеть следующий предварительный текст:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Продолжая, я подтверждаю что я выполнил все условия представленные на данной странице."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Владельцем канала не было представлено никаких специальных инструкций.)"; -App::$strings["Restricted or Premium Channel"] = "Ограниченный или Премиум канал"; -App::$strings["Poke somebody"] = "Ткнуть кого-нибудь"; -App::$strings["Poke/Prod"] = "Толкнуть / подтолкнуть"; -App::$strings["Poke, prod or do other things to somebody"] = "Толкнуть, подтолкнуть или сделать что-то ещё с кем-то"; -App::$strings["Recipient"] = "Получатель"; -App::$strings["Choose what you wish to do to recipient"] = "Выбрать что вы хотите сделать с получателем"; -App::$strings["Make this post private"] = "Сделать эту публикацию приватной"; -App::$strings["Unable to find your hub."] = "Невозможно найти ваш сервер"; -App::$strings["Post successful."] = "Успешно опубликовано."; -App::$strings["%s element installed"] = "%s элемент установлен"; -App::$strings["%s element installation failed"] = "%sустановка элемента неудачна."; -App::$strings["sent you a private message"] = "отправил вам личное сообщение"; -App::$strings["added your channel"] = "добавил ваш канал"; -App::$strings["requires approval"] = "Требуется подтверждение"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["[today]"] = "[сегодня]"; -App::$strings["posted an event"] = "событие опубликовано"; -App::$strings["shared a file with you"] = "с вами поделились файлом"; -App::$strings["Private forum"] = "Частный форум"; -App::$strings["Public forum"] = "Публичный форум"; -App::$strings["Some blurb about what to do when you're new here"] = "Некоторые предложения о том, что делать, если вы здесь новичок "; -App::$strings["Active"] = "Активен"; -App::$strings["Blocked"] = "Заблокирован"; -App::$strings["Ignored"] = "Игнорируется"; -App::$strings["Hidden"] = "Скрыт"; -App::$strings["Archived/Unreachable"] = "Заархивировано / недоступно"; -App::$strings["Active Connections"] = "Активные контакты"; -App::$strings["Show active connections"] = "Показать активные контакты"; -App::$strings["Show pending (new) connections"] = "Просмотр (новых) ожидающих контактов"; -App::$strings["Only show blocked connections"] = "Показать только заблокированные контакты"; -App::$strings["Only show ignored connections"] = "Показать только проигнорированные контакты"; -App::$strings["Only show archived/unreachable connections"] = "Показать только заархивированные / недоступные контакты"; -App::$strings["Only show hidden connections"] = "Показать только скрытые контакты"; -App::$strings["All Connections"] = "Все контакты"; -App::$strings["Show all connections"] = "Просмотр всех контактов"; -App::$strings["Pending approval"] = "Ожидающие подтверждения"; -App::$strings["Archived"] = "Зархивирован"; -App::$strings["Not connected at this location"] = "Не подключено в этом месте"; -App::$strings["%1\$s [%2\$s]"] = ""; -App::$strings["Edit connection"] = "Редактировать контакт"; -App::$strings["Delete connection"] = "Удалить контакт"; -App::$strings["Channel address"] = "Адрес канала"; -App::$strings["Network"] = "Сеть"; -App::$strings["Call"] = "Вызов"; -App::$strings["Status"] = "Статус"; -App::$strings["Connected"] = "Подключено"; -App::$strings["Approve connection"] = "Утвердить контакт"; -App::$strings["Ignore connection"] = "Игнорировать контакт"; -App::$strings["Ignore"] = "Игнорировать"; -App::$strings["Recent activity"] = "Последние действия"; -App::$strings["Search your connections"] = "Поиск ваших контактов"; -App::$strings["Connections search"] = "Поиск контаков"; -App::$strings["Unable to locate original post."] = "Не удалось найти оригинальную публикацию."; -App::$strings["Empty post discarded."] = "Пустая публикация отклонена."; -App::$strings["Duplicate post suppressed."] = "Подавлена дублирующаяся публикация."; -App::$strings["System error. Post not saved."] = "Системная ошибка. Публикация не сохранена."; -App::$strings["Your comment is awaiting approval."] = "Ваш комментарий ожидает одобрения."; -App::$strings["Unable to obtain post information from database."] = "Невозможно получить информацию о публикации из базы данных"; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Вы достигли вашего ограничения в %1$.0f страниц."; -App::$strings["Calendar entries imported."] = "События календаря импортированы."; -App::$strings["No calendar entries found."] = "Не найдено событий в календаре."; -App::$strings["Event can not end before it has started."] = "Событие не может завершиться до его начала."; -App::$strings["Unable to generate preview."] = "Невозможно создать предварительный просмотр."; -App::$strings["Event title and start time are required."] = "Требуются наименование события и время начала."; -App::$strings["Event not found."] = "Событие не найдено."; -App::$strings["Edit event title"] = "Редактировать наименование события"; -App::$strings["Categories (comma-separated list)"] = "Категории (список через запятую)"; -App::$strings["Edit Category"] = "Редактировать категорию"; -App::$strings["Category"] = "Категория"; -App::$strings["Edit start date and time"] = "Редактировать дату и время начала"; -App::$strings["Finish date and time are not known or not relevant"] = "Дата и время окончания неизвестны или неприменимы"; -App::$strings["Edit finish date and time"] = "Редактировать дату и время окончания"; -App::$strings["Finish date and time"] = "Дата и время окончания"; -App::$strings["Adjust for viewer timezone"] = "Настройте просмотр часовых поясов"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Важно для событий, которые происходят в определённом месте. Не подходит для всеобщих праздников."; -App::$strings["Edit Description"] = "Редактировать описание"; -App::$strings["Edit Location"] = "Редактировать местоположение"; -App::$strings["Timezone:"] = "Часовой пояс:"; -App::$strings["Advanced Options"] = "Дополнительные настройки"; -App::$strings["l, F j"] = ""; -App::$strings["Edit event"] = "Редактировать событие"; -App::$strings["Delete event"] = "Удалить событие"; -App::$strings["calendar"] = "календарь"; -App::$strings["Edit Event"] = "Редактировать событие"; -App::$strings["Create Event"] = "Создать событие"; -App::$strings["Event removed"] = "Событие удалено"; -App::$strings["Failed to remove event"] = "Не удалось удалить событие"; -App::$strings["Layout Name"] = "Название шаблона"; -App::$strings["Layout Description (Optional)"] = "Описание шаблона (необязательно)"; -App::$strings["Comanche page description language help"] = "Помощь по языку описания страниц Comanche "; -App::$strings["Layout Description"] = "Описание шаблона"; -App::$strings["Created"] = "Создано"; -App::$strings["Edited"] = "Отредактировано"; -App::$strings["Download PDL file"] = "Загрузить PDL файл"; -App::$strings["No more system notifications."] = "Нет новых оповещений системы."; -App::$strings["System Notifications"] = "Системные оповещения "; -App::$strings["Layout updated."] = "Шаблон обновлен."; -App::$strings["Feature disabled."] = "Функция отключена."; -App::$strings["Edit System Page Description"] = "Редактировать описание системной страницы"; -App::$strings["(modified)"] = "(изменено)"; -App::$strings["Reset"] = "Сбросить"; -App::$strings["Layout not found."] = "Шаблон не найден."; -App::$strings["Module Name:"] = "Имя модуля:"; -App::$strings["Layout Help"] = "Помощь к шаблону"; -App::$strings["Edit another layout"] = "Редактировать другой шаблон"; -App::$strings["System layout"] = "Системный шаблон"; -App::$strings["Unable to lookup recipient."] = "Не удалось найти получателя."; -App::$strings["Unable to communicate with requested channel."] = "Не удалось установить связь с запрашиваемым каналом."; -App::$strings["Cannot verify requested channel."] = "Не удалось установить подлинность требуемого канала."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Выбранный канал ограничивает частные сообщения. Отправка не удалась."; -App::$strings["Messages"] = "Сообщения"; -App::$strings["message"] = "сообщение"; -App::$strings["Message recalled."] = "Сообщение отозванно."; -App::$strings["Conversation removed."] = "Беседа удалена."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Истекает YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Запрашиваемый канал не доступен."; -App::$strings["Send Private Message"] = "Отправить личное сообщение"; -App::$strings["To:"] = "Кому:"; -App::$strings["Subject:"] = "Тема:"; -App::$strings["Your message:"] = "Сообщение:"; -App::$strings["Attach file"] = "Прикрепить файл"; -App::$strings["Send"] = "Отправить"; -App::$strings["Delete message"] = "Удалить сообщение"; -App::$strings["Delivery report"] = "Отчёт о доставке"; -App::$strings["Recall message"] = "Отозвать сообщение"; -App::$strings["Message has been recalled."] = "Сообщение отозванно"; -App::$strings["Delete Conversation"] = "Удалить беседу"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя."; -App::$strings["Send Reply"] = "Отправить ответ"; -App::$strings["Your message for %s (%s):"] = "Ваше сообщение для %s (%s):"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; -App::$strings["Remove This Channel"] = "Удалить этот канал"; -App::$strings["WARNING: "] = "ПРЕДУПРЕЖДЕНИЕ:"; -App::$strings["This channel will be completely removed from the network. "] = "Этот канал будет полностью удалён из сети."; -App::$strings["This action is permanent and can not be undone!"] = "Это действие необратимо и не может быть отменено!"; -App::$strings["Please enter your password for verification:"] = "Пожалуйста, введите ваш пароль для проверки:"; -App::$strings["Remove this channel and all its clones from the network"] = "Удалить этот канал и все его клоны из сети"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети"; -App::$strings["Remove Channel"] = "Удаление канала"; -App::$strings["Reset form"] = "Очистить форму"; -App::$strings["Welcome to Hubzilla!"] = "Добро пожаловать в Hubzilla!"; -App::$strings["You have got no unseen posts..."] = "У вас нет видимых публикаций..."; -App::$strings["Item not found"] = "Элемент не найден"; -App::$strings["Channel not found."] = "Канал не найден."; -App::$strings["Edit Card"] = "Редактировать карточку"; -App::$strings["Xchan Lookup"] = "Поиск Xchan"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Запрос Xchan начинается с (или webbie):"; -App::$strings["Not found."] = "Не найдено."; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, повторите попытку через 24 часа."; -App::$strings["Posts and comments"] = "Публикации и комментарии"; -App::$strings["Only posts"] = "Только публикации"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Недостаточно прав. Запрос перенаправлен на страницу профиля."; -App::$strings["Search Results For:"] = "Результаты поиска для:"; -App::$strings["Documentation Search"] = "Поиск документации"; -App::$strings["Members"] = "Участники"; -App::$strings["Administrators"] = "Администраторы"; -App::$strings["Developers"] = "Разработчики"; -App::$strings["Tutorials"] = "Руководства"; -App::$strings["\$Projectname Documentation"] = "\$Projectname Документация"; -App::$strings["Contents"] = "Содержимое"; -App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; -App::$strings["Export Channel"] = "Экспорт канала"; -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."] = "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер."; -App::$strings["Export Content"] = "Экспортировать содержимое"; -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."] = "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка."; -App::$strings["Export your posts from a given year."] = "Экспортировать ваши публикации за данный год."; -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."] = "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Для выбора всех публикаций заданного года, например текущего, посетите %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %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)."] = "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2\$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)."; -App::$strings["Away"] = "Нет на месте"; -App::$strings["Online"] = "В сети"; -App::$strings["Invalid item."] = "Недействительный элемент."; -App::$strings["Authorize application connection"] = "Авторизовать подключение приложения"; -App::$strings["Return to your app and insert this Security Code:"] = "Вернитесь к своему приложению и вставьте этот код безопасности:"; -App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?"; -App::$strings["item"] = "пункт"; -App::$strings["No ratings"] = "Оценок нет"; -App::$strings["Rating: "] = "Оценкa:"; -App::$strings["Website: "] = "Веб-сайт:"; -App::$strings["Description: "] = "Описание:"; -App::$strings["Failed to create source. No channel selected."] = "Не удалось создать источник. Канал не выбран."; -App::$strings["Source created."] = "Источник создан."; -App::$strings["Source updated."] = "Источник обновлен."; -App::$strings["*"] = ""; -App::$strings["Manage remote sources of content for your channel."] = "Управлять удалённым источниками содержимого для вашего канала"; -App::$strings["New Source"] = "Новый источник"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками."; -App::$strings["Only import content with these words (one per line)"] = "Импортировать содержимое только с этим текстом (построчно)"; -App::$strings["Leave blank to import all public content"] = "Оставьте пустым для импорта всего общедоступного содержимого"; -App::$strings["Channel Name"] = "Название канала"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)"; -App::$strings["Optional"] = "Необязательно"; -App::$strings["Resend posts with this channel as author"] = "Отправить публикации в этот канал повторно как автор"; -App::$strings["Copyrights may apply"] = "Могут применяться авторские права"; -App::$strings["Source not found."] = "Источник не найден."; -App::$strings["Edit Source"] = "Редактировать источник"; -App::$strings["Delete Source"] = "Удалить источник"; -App::$strings["Source removed"] = "Источник удален"; -App::$strings["Unable to remove source."] = "Невозможно удалить источник."; -App::$strings["About this site"] = "Об этом сайте"; -App::$strings["Site Name"] = "Название сайта"; -App::$strings["Site Information"] = "Информация о сайте"; -App::$strings["Administrator"] = "Администратор"; -App::$strings["Terms of Service"] = "Условия предоставления услуг"; -App::$strings["Software and Project information"] = "Информация о программном обеспечении и проекте"; -App::$strings["This site is powered by \$Projectname"] = "Этот сайт работает на \$Projectname"; -App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot"; -App::$strings["Additional federated transport protocols:"] = "Дополнительные федеративные транспортные протоколы:"; -App::$strings["Version %s"] = "Версия %s"; -App::$strings["Project homepage"] = "Домашняя страница проекта"; -App::$strings["Developer homepage"] = "Домашняя страница разработчика"; -App::$strings["Image uploaded but image cropping failed."] = "Изображение загружено но обрезка не удалась."; -App::$strings["Image resize failed."] = "Не удалось изменить размер изображения."; -App::$strings["Image upload failed."] = "Загрузка изображения не удалась."; -App::$strings["Unable to process image."] = "Невозможно обработать изображение."; -App::$strings["Photo not available."] = "Фотография недоступна."; -App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля"; -App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "Фотография вашего профиля видна всем в Интернете и может быть отправлена на другие сайты."; -App::$strings["Upload File:"] = "Загрузить файл:"; -App::$strings["Select a profile:"] = "Выбрать профиль:"; -App::$strings["Use Photo for Profile"] = "Использовать фотографию для профиля"; -App::$strings["Change Profile Photo"] = "Изменить фотографию профиля"; -App::$strings["Use"] = "Использовать"; -App::$strings["Use a photo from your albums"] = "Использовать фотографию из ваших альбомов"; -App::$strings["Choose a different album"] = "Выбрать другой альбом"; -App::$strings["Select existing photo"] = "Выбрать существующую фотографию"; -App::$strings["Crop Image"] = "Обрезать изображение"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста настройте обрезку изображения для оптимального просмотра."; -App::$strings["Done Editing"] = "Закончить редактирование"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s отслеживает %2\$s's %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s прекратил отслеживать %2\$s's %3\$s"; -App::$strings["No channel."] = "Канала нет."; -App::$strings["No connections in common."] = "Общих контактов нет."; -App::$strings["View Common Connections"] = "Просмотр общий контактов"; -App::$strings["Permission Denied."] = "Доступ запрещен."; -App::$strings["File not found."] = "Файл не найден."; -App::$strings["Edit file permissions"] = "Редактировать разрешения файла"; -App::$strings["Set/edit permissions"] = "Редактировать разрешения"; -App::$strings["Include all files and sub folders"] = "Включить все файлы и подкаталоги"; -App::$strings["Return to file list"] = "Вернутся к списку файлов"; -App::$strings["Copy/paste this code to attach file to a post"] = "Копировать / вставить этот код для прикрепления файла к публикации"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Копировать / вставить эту URL для ссылки на файл со страницы"; -App::$strings["Share this file"] = "Поделиться этим файлом"; -App::$strings["Show URL to this file"] = "Показать URL этого файла"; -App::$strings["Show in your contacts shared folder"] = "Показать общий каталог в ваших контактах"; -App::$strings["Post not found."] = "Публикация не найдена"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s отметил тегом %2\$s %3\$s с %4\$s"; -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."] = ""; -App::$strings["Block Name"] = "Название блока"; -App::$strings["Edit Block"] = "Редактировать блок"; -App::$strings["Item is not editable"] = "Элемент нельзя редактировать"; -App::$strings["Edit post"] = "Редактировать сообщение"; -App::$strings["Tag removed"] = "Тег удалён"; -App::$strings["Remove Item Tag"] = "Удалить тег элемента"; -App::$strings["Select a tag to remove: "] = "Выбрать тег для удаления:"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; -App::$strings["Remove This Account"] = "Удалить этот аккаунт"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Этот аккаунт и все его каналы будут полностью удалены из сети."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Удалить этот аккаунт, все его каналы и их клоны из сети."; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети"; -App::$strings["Remove Account"] = "Удалить аккаунт"; -App::$strings["Blocked accounts"] = "Заблокированные аккаунты"; -App::$strings["Expired accounts"] = "Просроченные аккаунты"; -App::$strings["Expiring accounts"] = "Близкие к просрочке аккаунты"; -App::$strings["Primary"] = "Основной"; -App::$strings["Clones"] = "Клоны"; -App::$strings["Message queues"] = "Очередь сообщений"; -App::$strings["Your software should be updated"] = "Ваше программное обеспечение должно быть обновлено"; -App::$strings["Administration"] = "Администрирование"; -App::$strings["Summary"] = "Резюме"; -App::$strings["Registered accounts"] = "Зарегистрированные аккаунты"; -App::$strings["Pending registrations"] = "Ждут утверждения"; -App::$strings["Registered channels"] = "Зарегистрированные каналы"; -App::$strings["Active addons"] = "Активные расширения"; -App::$strings["Version"] = "Версия системы"; -App::$strings["Repository version (master)"] = "Версия репозитория (master)"; -App::$strings["Repository version (dev)"] = "Версия репозитория (dev)"; -App::$strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; -App::$strings["Could not locate selected profile."] = "Не удалось обнаружить выбранный профиль."; -App::$strings["Connection updated."] = "Контакты обновлены."; -App::$strings["Failed to update connection record."] = "Не удалось обновить запись контакта."; -App::$strings["is now connected to"] = "теперь подключён к"; -App::$strings["Could not access address book record."] = "Не удалось получить доступ к записи адресной книги."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Обновление невозможно - в настоящее время канал недоступен."; -App::$strings["Unable to set address book parameters."] = "Не удалось получить доступ к параметрам адресной книги."; -App::$strings["Connection has been removed."] = "Контакт был удалён."; -App::$strings["View %s's profile"] = "Просмотр %s профиля"; -App::$strings["Refresh Permissions"] = "Обновить разрешения"; -App::$strings["Fetch updated permissions"] = "Получить обновлённые разрешения"; -App::$strings["Refresh Photo"] = "Обновить фотографию"; -App::$strings["Fetch updated photo"] = "Получить обновлённую фотографию"; -App::$strings["View recent posts and comments"] = "Просмотреть последние публикации и комментарии"; -App::$strings["Unblock"] = "Разблокировать"; -App::$strings["Block"] = "Блокировать"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Блокировать (или разблокировать) связи с этим контактом"; -App::$strings["This connection is blocked!"] = "Этот контакт заблокирован!"; -App::$strings["Unignore"] = "Не игнорировать"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Игнорировать (или не игнорировать) все связи для этого контакта"; -App::$strings["This connection is ignored!"] = "Этот контакт игнорируется!"; -App::$strings["Unarchive"] = "Разархивировать"; -App::$strings["Archive"] = "Заархивировать"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Заархивировать (или разархивировать) этот контакт - пометить канал отключённым но сохранить содержимое"; -App::$strings["This connection is archived!"] = "Этот контакт заархивирован!"; -App::$strings["Unhide"] = "Показать"; -App::$strings["Hide"] = "Скрыть"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Скрыть или показать этот контакт от / для остальных"; -App::$strings["This connection is hidden!"] = "Этот контакт скрыт!"; -App::$strings["Delete this connection"] = "Удалить этот контакт"; -App::$strings["Fetch Vcard"] = "Получить vCard"; -App::$strings["Fetch electronic calling card for this connection"] = "Получить электронную телефонную карточку для этого контакта"; -App::$strings["Open Individual Permissions section by default"] = "Открывать раздел \"Индивидуальные разрешения\" по умолчанию"; -App::$strings["Affinity"] = "Сходство"; -App::$strings["Open Set Affinity section by default"] = "Открыть секцию установления сходства по умолчанию"; -App::$strings["Filter"] = "Фильтр"; -App::$strings["Open Custom Filter section by default"] = "Открывать секцию \"Настраиваемый фильтр\" по умолчанию"; -App::$strings["Approve this connection"] = "Утвердить этот контакт"; -App::$strings["Accept connection to allow communication"] = "Принять контакт чтобы разрешить связь"; -App::$strings["Set Affinity"] = "Установить сходство"; -App::$strings["Set Profile"] = "Установить профиль"; -App::$strings["Set Affinity & Profile"] = "Установить сходство и профиль"; -App::$strings["This connection is unreachable from this location."] = "Этот контакт недоступен для данного местоположения"; -App::$strings["This connection may be unreachable from other channel locations."] = "Этот контакт может быть недоступен из других мест размещения канала"; -App::$strings["Location independence is not supported by their network."] = "Независимое местоположение не поддерживается их сетью."; -App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Этот контакт недоступен из данного местоположения. Независимое местоположение не поддерживается их сетью."; -App::$strings["Apply these permissions automatically"] = "Применить эти разрешения автоматически"; -App::$strings["Connection requests will be approved without your interaction"] = "Запросы контактов будут одобрены без вашего участия"; -App::$strings["Permission role"] = "Роль разрешения"; -App::$strings["Add permission role"] = "Добавить роль разрешения"; -App::$strings["This connection's primary address is"] = "Главный адрес это контакта"; -App::$strings["Available locations:"] = "Доступные расположения:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям."; -App::$strings["Connection Tools"] = "Инструменты контактов"; -App::$strings["Slide to adjust your degree of friendship"] = "Прокрутить для настройки степени дружбы"; -App::$strings["Slide to adjust your rating"] = "Прокрутить для настройки оценки"; -App::$strings["Optionally explain your rating"] = "Объясните свою оценку (не обязательно)"; -App::$strings["Custom Filter"] = "Настраиваемый фильтр"; -App::$strings["Only import posts with this text"] = "Импортировать публикации только с этим текстом"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "слова по одному в строку, #тег, /шаблон/ или lang=xxl; оставьте пустым для импорта всех публикаций"; -App::$strings["Do not import posts with this text"] = "Не импортировать публикации с этим текстом"; -App::$strings["This information is public!"] = "Эта информация общедоступна!"; -App::$strings["Connection Pending Approval"] = "Ожидающие подтверждения контактов"; -App::$strings["inherited"] = "наследуется"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль который вы хотит показывать в %s при безопасном просмотре."; -App::$strings["Their Settings"] = "Их настройки"; -App::$strings["My Settings"] = "Мои настройки"; -App::$strings["Individual Permissions"] = "Индивидуальные разрешения"; -App::$strings["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."] = "Некоторые разрешения могут наследовать из настроек приватности ваших каналов которые могут иметь более высокий приоритет чем индивидуальные. Вы не можете менять эти настройки здесь."; -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."] = "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек."; -App::$strings["Last update:"] = "Последнее обновление:"; -App::$strings["Details"] = "Сведения"; -App::$strings["Import Webpage Elements"] = "Импортировать части веб-страницы"; -App::$strings["Import selected"] = "Импортировать выбранное"; -App::$strings["Export Webpage Elements"] = "Экспортировать часть веб-страницы"; -App::$strings["Export selected"] = "Экспортировать выбранное"; -App::$strings["Actions"] = "Действия"; -App::$strings["Page Link"] = "Ссылка страницы"; -App::$strings["Page Title"] = "Заголовок страницы"; -App::$strings["Invalid file type."] = "Неверный тип файла."; -App::$strings["Error opening zip file"] = "Ошибка открытия ZIP файла"; -App::$strings["Invalid folder path."] = "Неверный путь к каталогу."; -App::$strings["No webpage elements detected."] = "Не обнаружено частей веб-страницы."; -App::$strings["Import complete."] = "Импорт завершен."; -App::$strings["Page link"] = "Ссылка страницы"; -App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; -App::$strings["Edit Layout"] = "Редактировать шаблон"; -App::$strings["This directory server requires an access token"] = "Для доступа к этому серверу каталогов требуется токен"; -App::$strings["Comment approved"] = "Комментарий одобрен"; -App::$strings["Comment deleted"] = "Комментарий удалён"; -App::$strings["Add Article"] = "Добавить статью"; -App::$strings["Bookmark added"] = "Закладка добавлена"; -App::$strings["My Bookmarks"] = "Мои закладки"; -App::$strings["My Connections Bookmarks"] = "Закладки моих контактов"; -App::$strings["Files: shared with me"] = "Файлы: поделились со мной"; -App::$strings["NEW"] = "НОВОЕ"; -App::$strings["Last Modified"] = "Последнее изменение"; -App::$strings["Remove all files"] = "Удалить все файлы"; -App::$strings["Remove this file"] = "Удалить этот файл"; -App::$strings["Select a bookmark folder"] = "Выбрать каталог для закладок"; -App::$strings["Save Bookmark"] = "Сохранить закладку"; -App::$strings["URL of bookmark"] = "URL закладки"; -App::$strings["Or enter new bookmark folder name"] = "или введите новое имя каталога закладок"; -App::$strings["Permissions denied."] = "Доступ запрещен."; -App::$strings["Unknown App"] = "Неизвестное приложение"; -App::$strings["Authorize"] = "Авторизовать"; -App::$strings["Do you authorize the app %s to access your channel data?"] = "Авторизуете ли вы приложение %s для доступа к данным вашего канала?"; -App::$strings["Allow"] = "Разрешить"; -App::$strings["Deny"] = "Запретить"; -App::$strings["Items tagged with: %s"] = "Объекты помечены как: %s"; -App::$strings["Search results for: %s"] = "Результаты поиска для: %s"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname сервер - Установка"; -App::$strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Не удалось подключиться к указанному URL. Вероятно проблема с SSL сертификатом или DNS."; -App::$strings["Could not create table."] = "Не удалось создать таблицу."; -App::$strings["Your site database has been installed."] = "Ваша база данных установлена."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Вам может понадобится импортировать файл \"install/schema_xxx.sql\" вручную используя клиент базы данных."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Проверка системы"; -App::$strings["Check again"] = "Перепроверить"; -App::$strings["Database connection"] = "Подключение к базе данных"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Для установки \$Projectname необходимо знать как подключиться к ваше базе данных."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг провайдером или администрацией сайта если у вас есть вопросы об этих настройках."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Указанная ниже база данных должна существовать. Если это не так, пожалуйста, создайте её перед тем, как продолжить."; -App::$strings["Database Server Name"] = "Имя сервера баз данных"; -App::$strings["Default is 127.0.0.1"] = "По умолчанию 127.0.0.1"; -App::$strings["Database Port"] = "Порт сервера баз данных"; -App::$strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию"; -App::$strings["Database Login Name"] = "Имя для подключения к базе данных"; -App::$strings["Database Login Password"] = "Пароль для подключения к базе данных"; -App::$strings["Database Name"] = "Имя базы данных"; -App::$strings["Database Type"] = "Тип базы данных"; -App::$strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты должен соответствовать этому для использования веб-панели администратора."; -App::$strings["Website URL"] = "URL веб-сайта"; -App::$strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно."; -App::$strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; -App::$strings["Site settings"] = "Настройки сайта"; -App::$strings["PHP version 5.5 or greater is required."] = "Требуется PHP версии 5.5 или выше"; -App::$strings["PHP version"] = "Версия PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти консольную версию PHP в путях переменной PATH веб-сервера."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. "; -App::$strings["PHP executable path"] = "Пусть к исполняемому модулю PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки."; -App::$strings["Command line PHP"] = "Командная строка PHP"; -App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена."; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "В консольной версии PHP в вашей системе отключена опция \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Это необходимо для функционирования доставки сообщений."; -App::$strings["PHP register_argc_argv"] = ""; -App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Максимально разрешённый общий размер загрузок установлен в %s. Максимальный размер одной загрузки установлен в %s. Вам разрешено загружать до %d файлов за один приём."; -App::$strings["You can adjust these settings in the server php.ini file."] = "Вы можете изменить эти настройки в файле php.ini на сервере."; -App::$strings["PHP upload limits"] = "Максимальный размер загрузки в PHP"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Генерация ключей шифрования"; -App::$strings["libCurl PHP module"] = ""; -App::$strings["GD graphics PHP module"] = ""; -App::$strings["OpenSSL PHP module"] = ""; -App::$strings["PDO database PHP module"] = ""; -App::$strings["mb_string PHP module"] = ""; -App::$strings["xml PHP module"] = ""; -App::$strings["zip PHP module"] = ""; -App::$strings["Apache mod_rewrite module"] = ""; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен."; -App::$strings["exec"] = ""; -App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["shell_exec"] = ""; -App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; -App::$strings["Error: libCURL PHP module required but not installed."] = ""; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; -App::$strings["Error: openssl PHP module required but not installed."] = ""; -App::$strings["Error: PDO database PHP module required but not installed."] = ""; -App::$strings["Error: mb_string PHP module required but not installed."] = ""; -App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; -App::$strings["Error: zip PHP module required but not installed."] = ""; -App::$strings[".htconfig.php is writable"] = ""; -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."] = ""; -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."] = ""; -App::$strings["Please see install/INSTALL.txt for additional information."] = ""; -App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -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."] = ""; -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."] = ""; -App::$strings["%s is writable"] = "%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 top level web folder"] = "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения."; -App::$strings["store is writable"] = "хранилище доступно для записи"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -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!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе."; -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."] = ""; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; -App::$strings["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."] = ""; -App::$strings["SSL certificate validation"] = ""; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; -App::$strings["Url rewrite is working"] = "Перезапись URL работает"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["

What next?

"] = "

Что дальше?

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Вам понадобится [вручную] настроить запланированную задачу для опрашивателя."; -App::$strings["Remote privacy information not available."] = "Удаленная информация о конфиденциальности недоступна."; -App::$strings["Visible to:"] = "Видимо для:"; -App::$strings["Connection added."] = "Контакт добавлен."; -App::$strings["Menu not found."] = "Меню не найдено"; -App::$strings["Unable to create element."] = "Невозможно создать элемент."; -App::$strings["Unable to update menu element."] = "Невозможно обновить элемент меню."; -App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; -App::$strings["Menu Item Permissions"] = "Разрешения на пункт меню"; -App::$strings["(click to open/close)"] = "(нажмите чтобы открыть/закрыть)"; -App::$strings["Link Name"] = "Имя ссылки"; -App::$strings["Link or Submenu Target"] = "Ссылка или цель подменю"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Введите URL ссылки или выберите имя меню для создания подменю"; -App::$strings["Use magic-auth if available"] = "Использовать magic-auth если возможно"; -App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; -App::$strings["Order in list"] = "Порядок в списке"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Большие значения в конце списка"; -App::$strings["Submit and finish"] = "Отправить и завершить"; -App::$strings["Submit and continue"] = "Отправить и продолжить"; -App::$strings["Menu:"] = "Меню:"; -App::$strings["Link Target"] = "Цель ссылки"; -App::$strings["Edit menu"] = "Редактировать меню"; -App::$strings["Edit element"] = "Редактировать элемент"; -App::$strings["Drop element"] = "Удалить элемент"; -App::$strings["New element"] = "Новый элемент"; -App::$strings["Edit this menu container"] = "Редактировать контейнер меню"; -App::$strings["Add menu element"] = "Добавить элемент меню"; -App::$strings["Delete this menu item"] = "Удалить этот элемент меню"; -App::$strings["Edit this menu item"] = "Редактировать этот элемент меню"; -App::$strings["Menu item not found."] = "Элемент меню не найден."; -App::$strings["Menu item deleted."] = "Элемент меню удалён."; -App::$strings["Menu item could not be deleted."] = "Невозможно удалить элемент меню."; -App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; -App::$strings["Link text"] = "Текст ссылки"; -App::$strings["Plugin %s disabled."] = "Плагин %s отключен."; -App::$strings["Plugin %s enabled."] = "Плагин %s включен."; -App::$strings["Disable"] = "Запретить"; -App::$strings["Enable"] = "Разрешить"; -App::$strings["Toggle"] = "Переключить"; -App::$strings["Author: "] = "Автор: "; -App::$strings["Maintainer: "] = "Сопровождающий:"; -App::$strings["Minimum project version: "] = "Минимальная версия проекта:"; -App::$strings["Maximum project version: "] = "Максимальная версия проекта:"; -App::$strings["Minimum PHP version: "] = "Минимальная версия PHP:"; -App::$strings["Compatible Server Roles: "] = "Совместимые роли сервера:"; -App::$strings["Requires: "] = "Необходимо:"; -App::$strings["Disabled - version incompatibility"] = "Отключено - несовместимость версий"; -App::$strings["Enter the public git repository URL of the addon repo."] = "Введите URL публичного репозитория расширений git"; -App::$strings["Addon repo git URL"] = "URL репозитория расширений git"; -App::$strings["Custom repo name"] = "Пользовательское имя репозитория"; -App::$strings["(optional)"] = "(необязательно)"; -App::$strings["Download Addon Repo"] = "Загрузить репозиторий расширений"; -App::$strings["Install new repo"] = "Установить новый репозиторий"; -App::$strings["Manage Repos"] = "Управление репозиториями"; -App::$strings["Installed Addon Repositories"] = "Установленные репозитории расширений"; -App::$strings["Install a New Addon Repository"] = "Установить новый репозиторий расширений"; -App::$strings["Switch branch"] = "Переключить ветку"; -App::$strings["Site settings updated."] = "Настройки сайта обновлены."; -App::$strings["%s - (Incompatible)"] = "%s - (несовместимо)"; -App::$strings["mobile"] = "мобильный"; -App::$strings["experimental"] = "экспериментальный"; -App::$strings["unsupported"] = "неподдерживаемый"; -App::$strings["Yes - with approval"] = "Да - требует подтверждения"; -App::$strings["My site is not a public server"] = "Мой сайт не является публичным сервером"; -App::$strings["My site has paid access only"] = "Мой сайт доступен только с оплатой "; -App::$strings["My site has free access only"] = "На моём сайте разрешён свободный доступ"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами"; -App::$strings["Beginner/Basic"] = "Начинающий/Базовый"; -App::$strings["Novice - not skilled but willing to learn"] = "Новичок - не опытный, но желающий учиться"; -App::$strings["Intermediate - somewhat comfortable"] = "Промежуточный - более удобный"; -App::$strings["Advanced - very comfortable"] = "Продвинутый - очень удобный"; -App::$strings["Expert - I can write computer code"] = "Эксперт - я умею программировать"; -App::$strings["Wizard - I probably know more than you do"] = "Волшебник - возможно я знаю больше чем ты"; -App::$strings["Default permission role for new accounts"] = "Разрешения по умолчанию для новых аккаунтов"; -App::$strings["This role will be used for the first channel created after registration."] = "Эта роль будет использоваться для первого канала, созданного после регистрации."; -App::$strings["Registration"] = "Регистрация"; -App::$strings["File upload"] = "Загрузка файла"; -App::$strings["Policies"] = "Правила"; -App::$strings["Site default technical skill level"] = "Уровень технических навыков на сайте по умолчанию"; -App::$strings["Used to provide a member experience matched to technical comfort level"] = "Используется чтобы обеспечить удобство на уровне технических навыков пользователя"; -App::$strings["Lock the technical skill level setting"] = "Заблокировать уровень технических навыков"; -App::$strings["Members can set their own technical comfort level by default"] = "Участники могут выбрать уровень своих технических навыков по умолчанию"; -App::$strings["Banner/Logo"] = "Баннер / логотип"; -App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Разрешён нефильтруемый HTML/CSS/JS"; -App::$strings["Administrator Information"] = "Информация об администраторе"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; -App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; -App::$strings["System language"] = "Язык системы"; -App::$strings["System theme"] = "Системная тема"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы."; -App::$strings["Allow Feeds as Connections"] = "Разрешить ленты новостей как контакты"; -App::$strings["(Heavy system resource usage)"] = "(Высокое использование системных ресурсов)"; -App::$strings["Maximum image size"] = "Максимальный размер изображения"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений."; -App::$strings["Does this site allow new member registration?"] = "Разрешается ли регистрация новых пользователей на этом сайте?"; -App::$strings["Invitation only"] = "Только по приглашениям"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"."; -App::$strings["Minimum age"] = "Минимальный возраст"; -App::$strings["Minimum age (in years) for who may register on this site."] = "Минимальный возраст (в годах) для регистрации на этом сайте."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Как лучше описать тип учётных записей предлагаемых на этом хабе?"; -App::$strings["This is displayed on the public server site list."] = "Это отображается в списке общедоступных серверов."; -App::$strings["Register text"] = "Текст регистрации"; -App::$strings["Will be displayed prominently on the registration page."] = "Будет отображаться на странице регистрации на видном месте."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)."; -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."] = "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла."; -App::$strings["Preserve site homepage URL"] = "Сохранить URL главной страницы сайта"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации"; -App::$strings["Accounts abandoned after x days"] = "Аккаунты считаются заброшенными после N дней"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений."; -App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены."; -App::$strings["Verify Email Addresses"] = "Проверка адреса электронной почты"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)."; -App::$strings["Force publish"] = "Принудительно публиковать"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Включите для принудительного включения всех учётных записей на данном сайте в каталог."; -App::$strings["Import Public Streams"] = "Импортированные публичные потоки"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться."; -App::$strings["Site only Public Streams"] = "Публичные потоки только с сайта"; -App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены."; -App::$strings["Allow anybody on the internet to access the Public streams"] = "Разрешить всем доступ к публичным потокам"; -App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться."; -App::$strings["Only import Public stream posts with this text"] = "Импортировать только публичные потоки с этим текстом"; -App::$strings["Do not import Public stream posts with this text"] = "Не импортировать публичные потоки с этим текстом"; -App::$strings["Login on Homepage"] = "Вход на домашней странице"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено."; -App::$strings["Enable context help"] = "Включить контекстную помощь"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"."; -App::$strings["Reply-to email address for system generated email."] = "Адрес email Reply-to для генерируемых системой сообщений."; -App::$strings["Sender (From) email address for system generated email."] = "Адрес email отправителя (From) для генерируемых системой сообщений."; -App::$strings["Name of email sender for system generated email."] = "Имя отправителя для генерируемых системой сообщений."; -App::$strings["Directory Server URL"] = "URL сервера каталогов"; -App::$strings["Default directory server"] = "Сервер каталогов по умолчанию"; -App::$strings["Proxy user"] = "Имя пользователя proxy-сервера"; -App::$strings["Proxy URL"] = "URL proxy-сервера"; -App::$strings["Network timeout"] = "Время ожидания сети"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)."; -App::$strings["Delivery interval"] = "Интервал доставки"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов."; -App::$strings["Deliveries per process"] = "Доставок на процесс"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5."; -App::$strings["Queue Threshold"] = "Порог очереди"; -App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это."; -App::$strings["Poll interval"] = "Интервал опроса"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки."; -App::$strings["Path to ImageMagick convert program"] = "Путь к ImageMagick"; -App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert"; -App::$strings["Allow SVG thumbnails in file browser"] = "Разрешить SVG миниатюры в просмотрщике файлов"; -App::$strings["WARNING: SVG images may contain malicious code."] = "Внимание: изображения SVG могут содержать вредоносный код."; -App::$strings["Maximum Load Average"] = "Максимальная средняя нагрузка"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Срок хранения в днях для импортированного содержимого (из матрицы / сети)."; -App::$strings["0 for no expiration of imported content"] = "0 для постоянного хранения импортированного содержимого"; -App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Продлевать строк хранения для любых публикаций, которые имеют комментарии возрастом менее этого значения"; -App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей"; -App::$strings["Create this page first. Default is %s/register"] = "Создать эту страницу первой. По умолчанию %s/register"; -App::$strings["Page to display after creating a new channel"] = "Страница для показа после создания нового канала"; -App::$strings["Default: profiles"] = "По умолчанию: profiles"; -App::$strings["Optional: site location"] = "Необязательно: место размещения сайта"; -App::$strings["Region or country"] = "Регион или страна"; -App::$strings["Log settings updated."] = "Настройки журнала обновлены."; -App::$strings["Clear"] = "Очистить"; -App::$strings["Debugging"] = "Отладка"; -App::$strings["Log file"] = "Файл журнала"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта."; -App::$strings["Log level"] = "Уровень журнала"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s аккаунт блокирован/разблокирован", - 1 => "%s аккаунта блокированы/разблокированы", - 2 => "%s аккаунтов блокированы/разблокированы", -); -App::$strings["%s account deleted"] = array( - 0 => "%s аккаунт удалён", - 1 => "%s аккаунта удалёны", - 2 => "%s аккаунтов удалёны", -); -App::$strings["Account not found"] = "Аккаунт не найден"; -App::$strings["Account '%s' blocked"] = "Аккаунт '%s' заблокирован"; -App::$strings["Account '%s' unblocked"] = "Аккаунт '%s' разблокирован"; -App::$strings["select all"] = "выбрать все"; -App::$strings["Registrations waiting for confirm"] = "Регистрации ждут подтверждения"; -App::$strings["Request date"] = "Дата запроса"; -App::$strings["No registrations."] = "Нет новых регистраций."; -App::$strings["ID"] = ""; -App::$strings["All Channels"] = "Все каналы"; -App::$strings["Register date"] = "Дата регистрации"; -App::$strings["Last login"] = "Последний вход"; -App::$strings["Expires"] = "Срок действия"; -App::$strings["Service Class"] = "Класс обслуживания"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:"; -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["Block public"] = "Блокировать публичный доступ"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы."; -App::$strings["Provide a cloud root directory"] = "Предоставить корневой каталог в облаке"; -App::$strings["The cloud root directory lists all channel names which provide public files"] = "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы"; -App::$strings["Show total disk space available to cloud uploads"] = "Показывать общее доступное для загрузок место в хранилище"; -App::$strings["Set \"Transport Security\" HTTP header"] = "Установить HTTP-заголовок \"Transport Security\""; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Установить HTTP-заголовок \"Content Security Policy\""; -App::$strings["Allowed email domains"] = "Разрешённые домены email"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены."; -App::$strings["Not allowed email domains"] = "Запрещённые домены email"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны."; -App::$strings["Allow communications only from these sites"] = "Разрешить связь только с этими сайтами"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)."; -App::$strings["Block communications from these sites"] = "Блокировать связь с этими сайтами"; -App::$strings["Allow communications only from these channels"] = "Разрешить связь только для этих каналов"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)."; -App::$strings["Block communications from these channels"] = "Блокировать связь с этими каналами"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов"; -App::$strings["One site per line. By default embedded content is filtered."] = "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется."; -App::$strings["Block embedded HTML from these domains"] = "Блокировать встраивание HTML-содержимого для этих доменов"; -App::$strings["Update has been marked successful"] = "Обновление было помечено как успешное"; -App::$strings["Executing %s failed. Check system logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; -App::$strings["Update %s was successfully applied."] = "Обновление %sбыло успешно применено."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Обновление %s не вернуло статус. Неизвестно было ли оно успешным."; -App::$strings["Update function %s could not be found."] = "Функция обновления %sне может быть найдена."; -App::$strings["Failed Updates"] = "Обновления с ошибками"; -App::$strings["Mark success (if update was manually applied)"] = "Пометить успешным (если обновление было применено вручную)"; -App::$strings["Attempt to execute this update step automatically"] = "Попытаться применить это обновление автоматически"; -App::$strings["No failed updates."] = "Ошибок обновлений нет."; -App::$strings["New Profile Field"] = "Поле нового профиля"; -App::$strings["Field nickname"] = "Псевдоним поля"; -App::$strings["System name of field"] = "Системное имя поля"; -App::$strings["Input type"] = "Тип ввода"; -App::$strings["Field Name"] = "Имя поля"; -App::$strings["Label on profile pages"] = "Метка на странице профиля"; -App::$strings["Help text"] = "Текст подсказки"; -App::$strings["Additional info (optional)"] = "Дополнительная информация (необязательно)"; -App::$strings["Field definition not found"] = "Определения поля не найдено"; -App::$strings["Edit Profile Field"] = "Редактировать поле профиля"; -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["Theme settings updated."] = "Настройки темы обновленны."; -App::$strings["No themes found."] = "Темы не найдены."; -App::$strings["Screenshot"] = "Снимок экрана"; -App::$strings["[Experimental]"] = "[экспериментальный]"; -App::$strings["[Unsupported]"] = "[неподдерживаемый]"; -App::$strings["Off"] = "Выкл."; -App::$strings["On"] = "Вкл."; -App::$strings["Lock feature %s"] = "Заблокировать функцию \"%s\""; -App::$strings["Manage Additional Features"] = "Управлять дополнительными функциями"; -App::$strings["Queue Statistics"] = "Статистика очереди"; -App::$strings["Total Entries"] = "Всего записей"; -App::$strings["Priority"] = "Приоритет"; -App::$strings["Destination URL"] = "Конечный URL-адрес"; -App::$strings["Mark hub permanently offline"] = "Пометить хаб как постоянно отключенный"; -App::$strings["Empty queue for this hub"] = "Освободить очередь для этого хаба"; -App::$strings["Last known contact"] = "Последний известный контакт"; -App::$strings["Password changed for account %d."] = "Пароль для аккаунта %d изменён."; -App::$strings["Account settings updated."] = "Настройки аккаунта обновлены."; -App::$strings["Account not found."] = "Учётная запись не найдена."; -App::$strings["Account Edit"] = "Редактировать аккаунт"; -App::$strings["New Password"] = "Новый пароль"; -App::$strings["New Password again"] = "Повторите новый пароль"; -App::$strings["Technical skill level"] = "Уровень технических навыков"; -App::$strings["Account language (for emails)"] = "Язык сообщения для email"; -App::$strings["Service class"] = "Класс обслуживания"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s канал цензурируется/нецензурируется", - 1 => "%s канала цензурируются/нецензурируются", - 2 => "%s каналов цензурируются/нецензурируются", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "в %s канале код разрешён/запрещён", - 1 => "в %s каналах код разрешён/запрещён", - 2 => "в %s каналах код разрешён/запрещён", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s канал удалён", - 1 => "%s канала удалены", - 2 => "%s каналов удалены", -); -App::$strings["Channel not found"] = "Канал не найден"; -App::$strings["Channel '%s' deleted"] = "Канал '%s' удалён"; -App::$strings["Channel '%s' censored"] = "Канал '%s' цензурируется"; -App::$strings["Channel '%s' uncensored"] = "Канал '%s' нецензурируется"; -App::$strings["Channel '%s' code allowed"] = "Код в канале '%s' разрешён"; -App::$strings["Channel '%s' code disallowed"] = "Код в канале '%s' запрещён"; -App::$strings["Censor"] = "Цензурировать"; -App::$strings["Uncensor"] = "Нецензурировать"; -App::$strings["Allow Code"] = "Разрешить код"; -App::$strings["Disallow Code"] = "Запретить код"; -App::$strings["UID"] = ""; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?"; -App::$strings["Token verification failed."] = "Не удалось выполнить проверку токена."; -App::$strings["Email Verification Required"] = "Требуется проверка адреса email"; -App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Проверочный токен был выслн на ваш адрес электронной почты {%s]. Введите этот токен здесь для завершения этапа проверки учётной записи. Пожалуйста, подождите несколько минут для завершения доставки и проверьте вашу папку \"Спам\" если вы не видите письма."; -App::$strings["Resend Email"] = "Выслать повторно"; -App::$strings["Validation token"] = "Проверочный токен"; -App::$strings["Total invitation limit exceeded."] = "Превышено общее количество приглашений."; -App::$strings["%s : Not a valid email address."] = "%s : Недействительный адрес электронной почты."; -App::$strings["Please join us on \$Projectname"] = "Присоединятесь к \$Projectname !"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта."; -App::$strings["%d message sent."] = array( - 0 => "%d сообщение отправлено.", - 1 => "%d сообщения отправлено.", - 2 => "%d сообщений отправлено.", -); -App::$strings["You have no more invitations available"] = "У вас больше нет приглашений"; -App::$strings["Send invitations"] = "Отправить приглашение"; -App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; -App::$strings["Please join my community on \$Projectname."] = "Присоединятесь к нашему сообществу \$Projectname !"; -App::$strings["You will need to supply this invitation code:"] = "Вам нужно предоставит этот код приглашения:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Зарегистрируйтесь на любом из серверов \$Projectname"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Введите сетевой адрес \$Projectname в поисковой строке сайта"; -App::$strings["or visit"] = "или посетите"; -App::$strings["3. Click [Connect]"] = "Нажать [Подключиться]"; -App::$strings["Block Title"] = "Заблокировать заголовок"; -App::$strings["Cover Photos"] = "Фотографии обложки"; -App::$strings["Your cover photo may be visible to anybody on the internet"] = "Фотография вашей обложки может быть видна всем в Интернете"; -App::$strings["Change Cover Photo"] = "Изменить фотографию обложки"; -App::$strings["Like/Dislike"] = "Нравится / не нравится"; -App::$strings["This action is restricted to members."] = "Это действие доступно только участникам."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Пожалуйста, для продолжения войдите с вашим \$Projectname ID или зарегистрируйтесь как новый участник \$Projectname."; -App::$strings["Invalid request."] = "Неверный запрос."; -App::$strings["thing"] = "предмет"; -App::$strings["Channel unavailable."] = "Канал недоступен."; -App::$strings["Previous action reversed."] = "Предыдущее действие отменено."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s согласен с %2\$s %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s не согласен с %2\$s %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s воздерживается от решения по %2\$s%3\$s"; -App::$strings["Action completed."] = "Действие завершено."; -App::$strings["Thank you."] = "Спасибо."; -App::$strings["If enabled, connection requests will be approved without your interaction"] = "Если включено, запросы контактов будут одобрены без вашего участия"; -App::$strings["Automatic approval settings"] = "Настройки автоматического одобрения"; -App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности."; -App::$strings["Unable to update menu."] = "Невозможно обновить меню."; -App::$strings["Unable to create menu."] = "Невозможно создать меню."; -App::$strings["Menu Name"] = "Название меню"; -App::$strings["Unique name (not visible on webpage) - required"] = "Уникальное название (не видимо на странице) - требуется"; -App::$strings["Menu Title"] = "Заголовок меню"; -App::$strings["Visible on webpage - leave empty for no title"] = "Видимость на странице - оставьте пустым если не хотите иметь заголовок"; -App::$strings["Allow Bookmarks"] = "Разрешить закладки"; -App::$strings["Menu may be used to store saved bookmarks"] = "Меню может использоваться, чтобы сохранить закладки"; -App::$strings["Submit and proceed"] = "Отправить и обработать"; -App::$strings["Drop"] = "Удалить"; -App::$strings["Bookmarks allowed"] = "Закладки разрешены"; -App::$strings["Delete this menu"] = "Удалить это меню"; -App::$strings["Edit menu contents"] = "Редактировать содержание меню"; -App::$strings["Edit this menu"] = "Редактировать это меню"; -App::$strings["Menu could not be deleted."] = "Меню не может быть удалено."; -App::$strings["Edit Menu"] = "Редактировать меню"; -App::$strings["Add or remove entries to this menu"] = "Добавить или удалить пункты этого меню"; -App::$strings["Menu name"] = "Название меню"; -App::$strings["Must be unique, only seen by you"] = "Должно быть уникальным (видно только вам)"; -App::$strings["Menu title"] = "Заголовок меню"; -App::$strings["Menu title as seen by others"] = "Видимый другими заголовок меню"; -App::$strings["Allow bookmarks"] = "Разрешить закладки"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Вы создали %1$.0f из %2$.0f возможных каналов."; -App::$strings["Create a new channel"] = "Создать новый канал"; -App::$strings["Create New"] = "Создать новый"; -App::$strings["Current Channel"] = "Текущий канал"; -App::$strings["Switch to one of your channels by selecting it."] = "Выбрать и переключиться на один из ваших каналов"; -App::$strings["Default Channel"] = "Основной канал"; -App::$strings["Make Default"] = "Сделать основным"; -App::$strings["%d new messages"] = "%d новых сообщений"; -App::$strings["%d new introductions"] = "%d новых представлений"; -App::$strings["Delegated Channel"] = "Делегированный канал"; -App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта."; -App::$strings["Change channel nickname/address"] = "Изменить псевдоним / адрес канала"; -App::$strings["Any/all connections on other networks will be lost!"] = "Любые / все контакты в других сетях будут утеряны!"; -App::$strings["New channel address"] = "Новый адрес канала"; -App::$strings["Rename Channel"] = "Переименовать канал"; -App::$strings["Additional Features"] = "Дополнительные функции"; -App::$strings["Your technical skill level"] = "Ваш уровень технических навыков"; -App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне"; -App::$strings["Nobody except yourself"] = "Никто кроме вас"; -App::$strings["Only those you specifically allow"] = "Только персонально разрешённые"; -App::$strings["Approved connections"] = "Одобренные контакты"; -App::$strings["Any connections"] = "Любые контакты"; -App::$strings["Anybody on this website"] = "Любой на этом сайте"; -App::$strings["Anybody in this network"] = "Любой в этой сети"; -App::$strings["Anybody authenticated"] = "Любой аутентифицированный"; -App::$strings["Anybody on the internet"] = "Любой в интернете"; -App::$strings["Publish your default profile in the network directory"] = "Публиковать ваш профиль по умолчанию в сетевом каталоге"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Разрешить предлагать вас как потенциального друга для новых пользователей?"; -App::$strings["or"] = "или"; -App::$strings["Your channel address is"] = "Адрес вашего канала"; -App::$strings["Your files/photos are accessible via WebDAV at"] = "Ваши файы / фотографии доступны через WebDAV по"; -App::$strings["Automatic membership approval"] = "Членство одобрено автоматически"; -App::$strings["Channel Settings"] = "Настройки канала"; -App::$strings["Basic Settings"] = "Основные настройки"; -App::$strings["Email Address:"] = "Адрес email:"; -App::$strings["Your Timezone:"] = "Часовой пояс:"; -App::$strings["Default Post Location:"] = "Расположение по умолчанию:"; -App::$strings["Geographical location to display on your posts"] = "Показывать географическое положение в ваших публикациях"; -App::$strings["Use Browser Location:"] = "Определять расположение из браузера"; -App::$strings["Adult Content"] = "Содержимое для взрослых"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Этот канал часто или регулярно публикует содержимое для взрослых. Пожалуйста, помечайте любой такой материал тегом #NSFW"; -App::$strings["Security and Privacy Settings"] = "Безопасность и настройки приватности"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить"; -App::$strings["Hide my online presence"] = "Скрывать моё присутствие онлайн"; -App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает отображения статуса \"в сети\" в вашем профиле"; -App::$strings["Simple Privacy Settings:"] = "Простые настройки безопасности:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)"; -App::$strings["Private - default private, never open or public"] = "Частный - частный по умочанию, не открытый и не публичный"; -App::$strings["Blocked - default blocked to/from everybody"] = "Закрытый - заблокированный по умолчанию от / для всех"; -App::$strings["Allow others to tag your posts"] = "Разрешить другим отмечать ваши публикации"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Часто используется сообществом для маркировки неподобающего содержания"; -App::$strings["Channel Permission Limits"] = "Ограничения разрешений канала"; -App::$strings["Expire other channel content after this many days"] = "Храненить содержимое других каналов, дней"; -App::$strings["0 or blank to use the website limit."] = "0 или пусто - использовать настройки сайта."; -App::$strings["This website expires after %d days."] = "Срок хранения содержимого этого сайта истекает через %d дней"; -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:"] = "Запросов в друзья в день:"; -App::$strings["May reduce spam activity"] = "Может ограничить спам активность"; -App::$strings["Default Privacy Group"] = "Группа конфиденциальности по умолчанию"; -App::$strings["Use my default audience setting for the type of object published"] = "Использовать настройки аудитории по умолчанию для типа опубликованного объекта"; -App::$strings["Profile to assign new connections"] = "Назначить профиль для новых контактов"; -App::$strings["Channel role and privacy"] = "Роль и конфиденциальность канала"; -App::$strings["Default Permissions Group"] = "Группа разрешений по умолчанию"; -App::$strings["Maximum private messages per day from unknown people:"] = "Максимально количество сообщений от незнакомых людей, в день:"; -App::$strings["Useful to reduce spamming"] = "Полезно для сокращения количества спама"; -App::$strings["By default post a status message when:"] = "По умолчанию публиковать новый статус при:"; -App::$strings["accepting a friend request"] = "одобрении запроса в друзья"; -App::$strings["joining a forum/community"] = "вступлении в сообщество / форум"; -App::$strings["making an interesting profile change"] = "интересном изменении профиля"; -App::$strings["Send a notification email when:"] = "Отправить уведомление по email когда:"; -App::$strings["You receive a connection request"] = "вы получили новый запрос контакта"; -App::$strings["Your connections are confirmed"] = "ваш запрос контакта был одобрен"; -App::$strings["Someone writes on your profile wall"] = "кто-то написал на стене вашего профиля"; -App::$strings["Someone writes a followup comment"] = "кто-то пишет комментарий"; -App::$strings["You receive a private message"] = "вы получили личное сообщение"; -App::$strings["You receive a friend suggestion"] = "вы получили предложение друзей"; -App::$strings["You are tagged in a post"] = "вы были отмечены в публикации"; -App::$strings["You are poked/prodded/etc. in a post"] = "вас толкнули, подтолкнули и т.п. в публикации"; -App::$strings["Someone likes your post/comment"] = "кому-то нравится ваша публикация / комментарий"; -App::$strings["Show visual notifications including:"] = "Показывать визуальные оповещения включая:"; -App::$strings["Unseen grid activity"] = "невидимую сетевую активность"; -App::$strings["Unseen channel activity"] = "невидимую активность в канале"; -App::$strings["Unseen private messages"] = "невидимое личное сообщение"; -App::$strings["Upcoming events"] = "грядущие события"; -App::$strings["Events today"] = "события сегодня"; -App::$strings["Upcoming birthdays"] = "грядущие дни рождения"; -App::$strings["Not available in all themes"] = "не доступно во всех темах"; -App::$strings["System (personal) notifications"] = "системные (личные) уведомления"; -App::$strings["System info messages"] = "сообщения с системной информацией"; -App::$strings["System critical alerts"] = "критические уведомления системы"; -App::$strings["New connections"] = "новые контакты"; -App::$strings["System Registrations"] = "системные регистрации"; -App::$strings["Unseen shared files"] = "невидимые общие файлы"; -App::$strings["Unseen public activity"] = "невидимая публичная активность"; -App::$strings["Unseen likes and dislikes"] = "невидимые лайки и дислайки"; -App::$strings["Unseen forum posts"] = "Невидимые публикации на форуме"; -App::$strings["Email notification hub (hostname)"] = "Центр уведомлений по email (имя хоста)"; -App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Если ваш канал зеркалируется в нескольких местах, это ваше предпочтительное местоположение. Это должно предотвратить дублировать уведомлений по email. Например: %s"; -App::$strings["Show new wall posts, private messages and connections under Notices"] = "Показать новые сообщения на стене, личные сообщения и контакты в \"Уведомлениях\""; -App::$strings["Notify me of events this many days in advance"] = "Уведомлять меня о событиях заранее, дней"; -App::$strings["Must be greater than 0"] = "Должно быть больше 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Дополнительные настройки учётной записи / страницы"; -App::$strings["Change the behaviour of this account for special situations"] = "Изменить поведение этого аккаунта в особых ситуациях"; -App::$strings["Miscellaneous Settings"] = "Дополнительные настройки"; -App::$strings["Default photo upload folder"] = "Каталог загрузки фотографий по умолчанию"; -App::$strings["%Y - current year, %m - current month"] = "%Y - текущий год, %y - текущий месяц"; -App::$strings["Default file upload folder"] = "Каталог загрузки файлов по умолчанию"; -App::$strings["Personal menu to display in your channel pages"] = "Персональное меню для отображения на странице вашего канала"; -App::$strings["Remove this channel."] = "Удалить этот канал."; -App::$strings["Firefox Share \$Projectname provider"] = ""; -App::$strings["Start calendar week on Monday"] = "Начинать календарную неделю с понедельника"; -App::$strings["Affinity Slider settings updated."] = "Обновлены настройки слайдера cходства."; -App::$strings["No feature settings configured"] = "Параметры функций не настроены"; -App::$strings["Default maximum affinity level"] = "Максимальный уровень сходства по умолчанию."; -App::$strings["0-99 default 99"] = "0-99 (по умолчанию 99)"; -App::$strings["Default minimum affinity level"] = "Минимальный уровень сходства по умолчанию."; -App::$strings["0-99 - default 0"] = "0-99 (по умолчанию 0)"; -App::$strings["Affinity Slider Settings"] = "Настройки слайдера сходства"; -App::$strings["Addon Settings"] = "Настройки расширений"; -App::$strings["Please save/submit changes to any panel before opening another."] = "Пожалуйста сохраните / отправьте изменения на панели прежде чем открывать другую."; -App::$strings["Not valid email."] = "Не действительный адрес email."; -App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; -App::$strings["System failure storing new email. Please try again."] = "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз."; -App::$strings["Technical skill level updated"] = "Уровень технических навыков обновлён"; -App::$strings["Password verification failed."] = "Не удалось выполнить проверку пароля."; -App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; -App::$strings["Password changed."] = "Пароль изменен."; -App::$strings["Password update failed. Please try again."] = "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз."; -App::$strings["Account Settings"] = "Настройки аккаунта"; -App::$strings["Current Password"] = "Текущий пароль"; -App::$strings["Enter New Password"] = "Введите новый пароль:"; -App::$strings["Confirm New Password"] = "Подтвердите новый пароль:"; -App::$strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми до измнения"; -App::$strings["Remove this account including all its channels"] = "Удалить этот аккаунт включая все каналы"; -App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; -App::$strings["Display Settings"] = "Настройки отображения"; -App::$strings["Theme Settings"] = "Настройки темы"; -App::$strings["Custom Theme Settings"] = "Дополнительные настройки темы"; -App::$strings["Content Settings"] = "Настройки содержимого"; -App::$strings["Display Theme:"] = "Тема отображения:"; -App::$strings["Select scheme"] = "Выбрать схему"; -App::$strings["Preload images before rendering the page"] = "Предзагрузка изображений перед обработкой страницы"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Субъективное время загрузки страницы будет длиннее, но страница будет готова при отображении"; -App::$strings["Enable user zoom on mobile devices"] = "Включить масштабирование на мобильных устройствах"; -App::$strings["Update browser every xx seconds"] = "Обновление браузера каждые N секунд"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума"; -App::$strings["Maximum number of conversations to load at any time:"] = "Максимальное количество бесед для загрузки одновременно:"; -App::$strings["Maximum of 100 items"] = "Максимум 100 элементов"; -App::$strings["Show emoticons (smilies) as images"] = "Показывать эмотиконы (смайлики) как изображения"; -App::$strings["Provide channel menu in navigation bar"] = "Показывать меню канала в панели навигации"; -App::$strings["Default: channel menu located in app menu"] = "По умолчанию каналы расположены в меню приложения"; -App::$strings["Manual conversation updates"] = "Обновление бесед вручную"; -App::$strings["Default is on, turning this off may increase screen jumping"] = "Включено по умолчанию, выключение может привести к рывкам в отображении"; -App::$strings["Link post titles to source"] = "Ссылки на источник заголовков публикаций"; -App::$strings["System Page Layout Editor - (advanced)"] = "Системный редактор макета страницы - (продвинутый)"; -App::$strings["Use blog/list mode on channel page"] = "Использовать режим блога / списка на странице канала"; -App::$strings["(comments displayed separately)"] = "(комментарии отображаются отдельно)"; -App::$strings["Use blog/list mode on grid page"] = "Использовать режим блога / списка на странице матрицы"; -App::$strings["Channel page max height of content (in pixels)"] = "Максимальная высота содержания канала (в пикселях)"; -App::$strings["click to expand content exceeding this height"] = "нажмите, чтобы увеличить содержимое, превышающее эту высоту"; -App::$strings["Grid page max height of content (in pixels)"] = "Максимальная высота содержания на страницах матрицы (в пикселях)"; -App::$strings["Permission Name is required."] = "Требуется имя разрешения"; -App::$strings["Permission category saved."] = "Категория разрешения сохранена."; -App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Используйте эту форму для создания правил разрешений для различных групп людей и контактов."; -App::$strings["Permission Name"] = "Имя разрешения"; -App::$strings["Name and Secret are required"] = "Требуются имя и код"; -App::$strings["Add OAuth2 application"] = "Добавить приложение OAuth2"; -App::$strings["Name of application"] = "Название приложения"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Сгенерирован автоматические - измените если требуется. Макс. длина 20"; -App::$strings["Redirect"] = "Перенаправление"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого"; -App::$strings["Grant Types"] = "Разрешить типы"; -App::$strings["leave blank unless your application sepcifically requires this"] = "оставьте пустыми до тех пока ваше приложение не требует этого"; -App::$strings["Authorization scope"] = "Область полномочий"; -App::$strings["OAuth2 Application not found."] = "Приложение OAuth2 не найдено."; -App::$strings["Add application"] = "Добавить приложение"; -App::$strings["Connected OAuth2 Apps"] = "Подключённые приложения OAuth2"; -App::$strings["Client key starts with"] = "Ключ клиента начинаетя с"; -App::$strings["No name"] = "Без названия"; -App::$strings["Remove authorization"] = "Удалить разрешение"; -App::$strings["Name is required"] = "Необходимо имя"; -App::$strings["Key and Secret are required"] = "Требуются ключ и код"; -App::$strings["Icon url"] = "URL значка"; -App::$strings["Application not found."] = "Приложение не найдено."; -App::$strings["Connected Apps"] = "Подключенные приложения"; -App::$strings["This channel is limited to %d tokens"] = "Этот канал ограничен %d токенами"; -App::$strings["Name and Password are required."] = "Требуются имя и пароль."; -App::$strings["Token saved."] = "Токен сохранён."; -App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access 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:"] = "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:"; -App::$strings["Login Name"] = "Имя"; -App::$strings["Login Password"] = "Пароль"; -App::$strings["Expires (yyyy-mm-dd)"] = "Срок действия (yyyy-mm-dd)"; -App::$strings["Room not found"] = "Комната не найдена"; -App::$strings["Leave Room"] = "Покинуть комнату"; -App::$strings["Delete Room"] = "Удалить комнату"; -App::$strings["I am away right now"] = "Я сейчас отошёл"; -App::$strings["I am online"] = "Я на связи"; -App::$strings["Bookmark this room"] = "Запомнить эту комнату"; -App::$strings["New Chatroom"] = "Новый чат"; -App::$strings["Chatroom name"] = "Название чата"; -App::$strings["Expiration of chats (minutes)"] = "Завершение чатов (минут)"; -App::$strings["%1\$s's Chatrooms"] = "Чаты пользователя %1\$s"; -App::$strings["No chatrooms available"] = "Нет доступных чатов"; -App::$strings["Expiration"] = "Срок действия"; -App::$strings["min"] = "мин."; -App::$strings["Website:"] = "Веб-сайт:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Удалённый канал [%s] (пока неизвестен на этом сайте)"; -App::$strings["Rating (this information is public)"] = "Оценка (эта информация общедоступна)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Объясните свою оценку (необязательно; эта информация общедоступна)"; -App::$strings["Fetching URL returns error: %1\$s"] = "Загрузка URL возвращает ошибку: %1\$s"; -App::$strings["Location not found."] = "Местоположение не найдено"; -App::$strings["Location lookup failed."] = "Поиск местоположения не удался"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее"; -App::$strings["Syncing locations"] = "Синхронизировать местоположение"; -App::$strings["No locations found."] = "Местоположений не найдено"; -App::$strings["Manage Channel Locations"] = "Управление местоположением канала"; -App::$strings["Sync Now"] = "Синхронизировать"; -App::$strings["Please wait several minutes between consecutive operations."] = "Пожалуйста, подождите несколько минут между последовательными операциями."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "По возможности, очистите местоположение, войдя на этот веб-сайт / хаб и удалив свой канал."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Используйте эту форму, чтобы удалить местоположение, если хаб больше не функционирует."; -App::$strings["Nothing to import."] = "Ничего импортировать."; -App::$strings["Unable to download data from old server"] = "Невозможно загрузить данные со старого сервера"; -App::$strings["Imported file is empty."] = "Импортированный файл пуст."; -App::$strings["Your service plan only allows %d channels."] = "Ваш класс обслуживания разрешает только %d каналов."; -App::$strings["No channel. Import failed."] = "Канала нет. Импорт невозможен."; -App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; -App::$strings["Import Channel"] = "Импортировать канал"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Используйте эту форм для импорта существующего канала с другого сервера / хаба. Вы можете получить идентификационные данные канала со старого сервера / хаба через сеть или предоставить файл экспорта."; -App::$strings["File to Upload"] = "Файл для загрузки"; -App::$strings["Or provide the old server/hub details"] = "или предоставьте данные старого сервера"; -App::$strings["Your old identity address (xyz@example.com)"] = "Ваш старый адрес идентичности (xyz@example.com)"; -App::$strings["Your old login email address"] = "Ваш старый адрес электронной почты"; -App::$strings["Your old login password"] = "Ваш старый пароль"; -App::$strings["Import a few months of posts if possible (limited by available memory"] = "Импортировать несколько месяцев публикаций если возможно (ограничено доступной памятью)"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Для любого варианта, пожалуйста, выберите, следует ли сделать этот хаб вашим новым основным адресом, или ваше прежнее местоположение должно продолжить выполнять эту роль. Вы сможете отправлять сообщения из любого местоположения, но только одно может быть помечено как основное место для файлов, фотографий и мультимедиа."; -App::$strings["Make this hub my primary location"] = "Сделать этот хаб главным"; -App::$strings["Move this channel (disable all previous locations)"] = "Переместить это канал (отключить все предыдущие месторасположения)"; -App::$strings["Use this channel nickname instead of the one provided"] = "Использовать псевдоним этого канала вместо предоставленного"; -App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Оставьте пустым для сохранения существующего псевдонима канала. Вам будет случайным образом назначен похожий псевдоним если такое имя уже выделено на этом сайте."; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Процесс может занять несколько минут. Пожалуйста, отправьте форму только один раз и оставьте эту страницу открытой до завершения."; -App::$strings["No connections."] = "Контактов нет."; -App::$strings["Visit %s's profile [%s]"] = "Посетить %s ​​профиль [%s]"; -App::$strings["View Connections"] = "Просмотр контактов"; -App::$strings["Authentication failed."] = "Ошибка аутентификации."; -App::$strings["Your real name is recommended."] = "Рекомендуется использовать ваше настоящее имя."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Примеры: \"Иван Иванов\", \"Оксана и кони\", \"Футбол\", \"Тимур и его команда\""; -App::$strings["This will be used to create a unique network address (like an email address)."] = "Это будет использовано для создания уникального сетевого адреса (наподобие email)."; -App::$strings["Allowed characters are a-z 0-9, - and _"] = "Разрешённые символы a-z 0-9, - и _"; -App::$strings["Channel name"] = "Название канала"; -App::$strings["Choose a short nickname"] = "Выберите короткий псевдоним"; -App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Выберите разрешения для канала в соответствии с вашими потребностями и требованиями безопасности."; -App::$strings["Read more about channel permission roles"] = "Прочитать больше о разрешениях для каналов"; -App::$strings["Create a Channel"] = "Создать канал"; -App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Канал это уникальная сетевая идентичность. Он может представлять человека (профиль в социальной сети), форум или группу, бизнес или страницу знаменитости, новостную ленту и многие другие вещи."; -App::$strings["or import an existing channel from another location."] = "или импортировать существующий канал из другого места."; -App::$strings["Validate"] = "Проверить"; -App::$strings["Manage apps"] = "Управление приложениями"; -App::$strings["Create new app"] = "Создать новое приложение"; -App::$strings["No default suggestions were found."] = "Предложений по умолчанию не найдено."; -App::$strings["%d rating"] = array( - 0 => "%d оценка", - 1 => "%d оценки", - 2 => "%d оценок", -); -App::$strings["Gender: "] = "Пол:"; -App::$strings["Status: "] = "Статус:"; -App::$strings["Homepage: "] = "Домашняя страница:"; -App::$strings["Description:"] = "Описание:"; -App::$strings["Public Forum:"] = "Публичный форум:"; -App::$strings["Keywords: "] = "Ключевые слова:"; -App::$strings["Don't suggest"] = "Не предлагать"; -App::$strings["Common connections (estimated):"] = "Общие контакты (оценочно):"; -App::$strings["Global Directory"] = "Глобальный каталог"; -App::$strings["Local Directory"] = "Локальный каталог"; -App::$strings["Finding:"] = "Поиск:"; -App::$strings["next page"] = "следующая страница"; -App::$strings["previous page"] = "предыдущая страница"; -App::$strings["Sort options"] = "Параметры сортировки"; -App::$strings["Alphabetic"] = "По алфавиту"; -App::$strings["Reverse Alphabetic"] = "Против алфавита"; -App::$strings["Newest to Oldest"] = "От новых к старым"; -App::$strings["Oldest to Newest"] = "От старых к новым"; -App::$strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; -App::$strings["Enter a folder name"] = "Введите название каталога"; -App::$strings["or select an existing folder (doubleclick)"] = "или выберите существующий каталог (двойной щелчок)"; -App::$strings["Invalid message"] = "Неверное сообщение"; -App::$strings["no results"] = "Ничего не найдено."; -App::$strings["channel sync processed"] = "синхронизация канала завершена"; -App::$strings["queued"] = "в очереди"; -App::$strings["posted"] = "опубликовано"; -App::$strings["accepted for delivery"] = "принято к доставке"; -App::$strings["updated"] = "обновлено"; -App::$strings["update ignored"] = "обновление игнорируется"; -App::$strings["permission denied"] = "доступ запрещен"; -App::$strings["recipient not found"] = "получатель не найден"; -App::$strings["mail recalled"] = "почта отозвана"; -App::$strings["duplicate mail received"] = "получено дублирующее сообщение"; -App::$strings["mail delivered"] = "почта доставлен"; -App::$strings["Delivery report for %1\$s"] = "Отчёт о доставке для %1\$s"; -App::$strings["Redeliver"] = "Доставить повторно"; -App::$strings["No such group"] = "Нет такой группы"; -App::$strings["No such channel"] = "Нет такого канала"; -App::$strings["Privacy group is empty"] = "Группа безопасности пуста"; -App::$strings["Privacy group: "] = "Группа безопасности: "; -App::$strings["Please login."] = "Пожалуйста, войдите."; -App::$strings["No service class restrictions found."] = "Ограничений класса обслуживание не найдено."; -App::$strings["Add Card"] = "Добавить карточку"; -App::$strings["Change Order of Pinned Navbar Apps"] = "Изменить порядок приложений на панели навигации"; -App::$strings["Change Order of App Tray Apps"] = "Изменить порядок приложений в лотке"; -App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации"; -App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Используйте стрелки для перемещения приложения вверх или вниз в лотке"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Пожалуйста, подтвердите согласие с \"Условиями обслуживания\". Регистрация не удалась."; -App::$strings["Passwords do not match."] = "Пароли не совпадают."; -App::$strings["Registration successful. Continue to create your first channel..."] = "Регистрация завершена успешно. Для продолжения создайте свой первый канал..."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Регистрация завершена успешно. Пожалуйста проверьте вашу электронную почту для подтверждения."; -App::$strings["Your registration is pending approval by the site owner."] = "Ваша регистрация ожидает одобрения администрации сайта."; -App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; -App::$strings["Registration on this hub is disabled."] = "Регистрация на этом хабе отключена."; -App::$strings["Registration on this hub is by approval only."] = "Регистрация на этом хабе только по утверждению."; -App::$strings["Register at another affiliated hub."] = "Зарегистрироваться на другом хабе."; -App::$strings["Registration on this hub is by invitation only."] = "Регистрация на этом хабе доступна только по приглашениям."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. "; -App::$strings["I accept the %s for this website"] = "Я принимаю %s для этого веб-сайта."; -App::$strings["I am over %s years of age and accept the %s for this website"] = "Мой возраст превышает %s лет и я принимаю %s для этого веб-сайта."; -App::$strings["Your email address"] = "Ваш адрес электронной почты"; -App::$strings["Choose a password"] = "Выберите пароль"; -App::$strings["Please re-enter your password"] = "Пожалуйста, введите пароль еще раз"; -App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; -App::$strings["Your Name"] = "Ваше имя"; -App::$strings["Real names are preferred."] = "Предпочтительны реальные имена."; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s"; -App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности."; -App::$strings["no"] = "нет"; -App::$strings["yes"] = "да"; -App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Этот сайт требует проверку адреса электронной почты. После заполнения этой формы, пожалуйста, проверьте ваш почтовый ящик для дальнейших инструкций."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Этот параметр требует специальной обработки и редактирования и был заблокирован."; -App::$strings["Configuration Editor"] = "Редактор конфигурации"; -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."] = "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию."; -App::$strings["Edit Article"] = "Редактировать статью"; -App::$strings["Not found"] = "Не найдено."; -App::$strings["Error retrieving wiki"] = "Ошибка при получении Wiki"; -App::$strings["Error creating zip file export folder"] = "Ошибка при создании zip-файла при экспорте каталога"; -App::$strings["Error downloading wiki: "] = "Ошибка загрузки Wiki:"; -App::$strings["Download"] = "Загрузить"; -App::$strings["Wiki name"] = "Название Wiki"; -App::$strings["Content type"] = "Тип содержимого"; -App::$strings["Type"] = "Тип"; -App::$strings["Any type"] = "Любой тип"; -App::$strings["Lock content type"] = "Зафиксировать тип содержимого"; -App::$strings["Create a status post for this wiki"] = "Создать публикацию о статусе этой Wiki"; -App::$strings["Edit Wiki Name"] = "Редактировать наименование Wiki"; -App::$strings["Wiki not found"] = "Wiki не найдена"; -App::$strings["Rename page"] = "Переименовать страницу"; -App::$strings["Error retrieving page content"] = "Ошибка при получении содержимого страницы"; -App::$strings["New page"] = "Новая страница"; -App::$strings["Revision Comparison"] = "Сравнение ревизий"; -App::$strings["Revert"] = "Вернуть"; -App::$strings["Short description of your changes (optional)"] = "Краткое описание ваших изменений (необязательно)"; -App::$strings["Source"] = "Источник"; -App::$strings["New page name"] = "Новое имя страницы"; -App::$strings["Embed image from photo albums"] = "Встроить изображение из фотоальбома"; -App::$strings["Error creating wiki. Invalid name."] = "Ошибка создания Wiki. Неверное имя."; -App::$strings["A wiki with this name already exists."] = "Wiki с таким именем уже существует."; -App::$strings["Wiki created, but error creating Home page."] = "Wiki создана, но возникла ошибка при создании домашней страницы"; -App::$strings["Error creating wiki"] = "Ошибка при создании Wiki"; -App::$strings["Error updating wiki. Invalid name."] = "Ошибка при обновлении Wiki. Неверное имя."; -App::$strings["Error updating wiki"] = "Ошибка при обновлении Wiki"; -App::$strings["Wiki delete permission denied."] = "Нет прав на удаление Wiki."; -App::$strings["Error deleting wiki"] = "Ошибка удаления Wiki"; -App::$strings["New page created"] = "Создана новая страница"; -App::$strings["Cannot delete Home"] = "Невозможно удалить домашнюю страницу"; -App::$strings["Current Revision"] = "Текущая ревизия"; -App::$strings["Selected Revision"] = "Выбранная ревизия"; -App::$strings["You must be authenticated."] = "Вы должны быть аутентифицированы."; -App::$strings["Hub not found."] = "Узел не найден."; -App::$strings["Item not available."] = "Элемент недоступен."; -App::$strings["Privacy group created."] = "Группа безопасности создана."; -App::$strings["Could not create privacy group."] = "Не удалось создать группу безопасности."; -App::$strings["Privacy group updated."] = "Группа безопасности обновлена."; -App::$strings["Add Group"] = "Добавить группу"; -App::$strings["Privacy group name"] = "Имя группы безопасности"; -App::$strings["Members are visible to other channels"] = "Участники канала видимые для остальных"; -App::$strings["Privacy group removed."] = "Группа безопасности удалена."; -App::$strings["Unable to remove privacy group."] = "Ну удалось удалить группу безопасности."; -App::$strings["Privacy Group: %s"] = "Группа безопасности: %s"; -App::$strings["Privacy group name: "] = "Название группы безопасности: "; -App::$strings["Delete Group"] = "Удалить группу"; -App::$strings["Group members"] = "Члены группы"; -App::$strings["Not in this group"] = "Не в этой группе"; -App::$strings["Click a channel to toggle membership"] = "Нажмите на канал для просмотра членства"; -App::$strings["Profile not found."] = "Профиль не найден."; -App::$strings["Profile deleted."] = "Профиль удален."; -App::$strings["Profile-"] = "Профиль -"; -App::$strings["New profile created."] = "Новый профиль создан."; -App::$strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования."; -App::$strings["Profile unavailable to export."] = "Профиль недоступен для экспорта."; -App::$strings["Profile Name is required."] = "Требуется имя профиля."; -App::$strings["Marital Status"] = "Семейное положение"; -App::$strings["Romantic Partner"] = "Романтический партнер"; -App::$strings["Likes"] = "Нравится"; -App::$strings["Dislikes"] = "Не нравится"; -App::$strings["Work/Employment"] = "Работа / Занятость"; -App::$strings["Religion"] = "Религия"; -App::$strings["Political Views"] = "Политические взгляды"; -App::$strings["Sexual Preference"] = "Сексуальная ориентация"; -App::$strings["Homepage"] = "Домашняя страница"; -App::$strings["Interests"] = "Интересы"; -App::$strings["Profile updated."] = "Профиль обновлен."; -App::$strings["Hide your connections list from viewers of this profile"] = "Скрывать от просмотра ваш список контактов в этом профиле"; -App::$strings["Edit Profile Details"] = "Редактирование профиля"; -App::$strings["View this profile"] = "Посмотреть этот профиль"; -App::$strings["Profile Tools"] = "Инструменты профиля"; -App::$strings["Change cover photo"] = "Изменить фотографию обложки"; -App::$strings["Create a new profile using these settings"] = "Создать новый профиль со следующими настройками"; -App::$strings["Clone this profile"] = "Клонировать этот профиль"; -App::$strings["Delete this profile"] = "Удалить этот профиль"; -App::$strings["Add profile things"] = "Добавить в профиль"; -App::$strings["Relationship"] = "Отношения"; -App::$strings["Import profile from file"] = "Импортировать профиль из файла"; -App::$strings["Export profile to file"] = "Экспортировать профиль в файл"; -App::$strings["Your gender"] = "Ваш пол"; -App::$strings["Marital status"] = "Семейное положение"; -App::$strings["Sexual preference"] = "Сексуальная ориентация"; -App::$strings["Profile name"] = "Имя профиля"; -App::$strings["This is your default profile."] = "Это ваш профиль по умолчанию."; -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["Who (if applicable)"] = "Кто (если применимо)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: ivan1990, Ivan Petrov, ivan@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"] = "Например: fishing photography software"; -App::$strings["Musical interests"] = "Музыкальные интересы"; -App::$strings["Books, literature"] = "Книги, литература"; -App::$strings["Television"] = "Телевидение"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Кино / танцы / культура / развлечения"; -App::$strings["Hobbies/Interests"] = "Хобби / интересы"; -App::$strings["Love/Romance"] = "Любовь / романтические отношения"; -App::$strings["School/Education"] = "Школа / образование"; -App::$strings["Contact information and social networks"] = "Информация и социальные сети для связи"; -App::$strings["My other channels"] = "Мои другие контакты"; -App::$strings["Communications"] = "Связи"; -App::$strings["Email verification resent"] = "Сообщение для проверки email отправлено повторно"; -App::$strings["Unable to resend email verification message."] = "Невозможно повторно отправить сообщение для проверки email"; -App::$strings["vcard"] = "vCard"; -App::$strings["Invalid profile identifier."] = "Неверный идентификатор профиля"; -App::$strings["Profile Visibility Editor"] = "Редактор видимости профиля"; -App::$strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; -App::$strings["Visible To"] = "Видно"; -App::$strings["Thing updated"] = "Обновлено"; -App::$strings["Object store: failed"] = "Хранлищие объектов: неудача"; -App::$strings["Thing added"] = "Добавлено"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = "Показать"; -App::$strings["item not found."] = "Элемент не найден."; -App::$strings["Edit Thing"] = "Редактировать"; -App::$strings["Select a profile"] = "Выбрать профиль"; -App::$strings["Post an activity"] = "Опубликовать мероприятие"; -App::$strings["Only sends to viewers of the applicable profile"] = "Отправлять только подходящий профиль"; -App::$strings["Name of thing e.g. something"] = "Наименование, например \"нечто\""; -App::$strings["URL of thing (optional)"] = "URL (необязательно)"; -App::$strings["URL for photo of thing (optional)"] = "URL для фотографии (необязательно)"; -App::$strings["Add Thing to your Profile"] = "Добавить к вашему профилю"; -App::$strings["Article"] = "Статья"; -App::$strings["Item has been removed."] = "Элемент был удалён."; -App::$strings["Welcome to %s"] = "Добро пожаловать в %s"; -App::$strings["Please refresh page"] = "Пожалуйста обновите страницу"; -App::$strings["Unknown error"] = "Неизвестная ошибка"; -App::$strings["No valid account found."] = "Действительный аккаунт не найден."; -App::$strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля отправлен. Проверьте вашу электронную почту."; -App::$strings["Site Member (%s)"] = "Участник сайта (%s)"; -App::$strings["Password reset requested at %s"] = "Запрошен сброс пароля на %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы могли отправить его раньше). Сброс пароля не возможен."; -App::$strings["Your password has been reset as requested."] = "Ваш пароль в соответствии с просьбой сброшен."; -App::$strings["Your new password is"] = "Ваш новый пароль"; -App::$strings["Save or copy your new password - and then"] = "Сохраните ваш новый пароль и затем"; -App::$strings["click here to login"] = "нажмите здесь чтобы войти"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменён на странице Настройки после успешного входа."; -App::$strings["Your password has changed at %s"] = "Пароль был изменен на %s"; -App::$strings["Forgot your Password?"] = "Забыли ваш пароль?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. "; -App::$strings["Email Address"] = "Адрес электронной почты"; -App::$strings["Set your current mood and tell your friends"] = "Установить текущее настроение и рассказать друзьям"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Предупреждение: Версия базы данных отличается от %1\$d обновления."; -App::$strings["Import completed"] = "Импорт завершён."; -App::$strings["Import Items"] = "Импортировать объекты"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Используйте эту форму для импорта существующих публикаций и содержимого из файла."; -App::$strings["toggle full screen mode"] = "переключение полноэкранного режима"; -App::$strings["parent"] = "источник"; -App::$strings["Principal"] = "Субъект"; -App::$strings["Addressbook"] = "Адресная книга"; -App::$strings["Schedule Inbox"] = "План занятий входящий"; -App::$strings["Schedule Outbox"] = "План занятий исходящий"; -App::$strings["Total"] = "Всего"; -App::$strings["Shared"] = "Общие"; -App::$strings["Add Files"] = "Добавить файлы"; -App::$strings["You are using %1\$s of your available file storage."] = "Вы используете %1\$s из доступного вам хранилища файлов."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Вы используете %1\$s из %2\$s доступного хранилища файлов (%3\$s%)."; -App::$strings["WARNING:"] = "Предупреждение:"; -App::$strings["Create new folder"] = "Создать новую папку"; -App::$strings["Upload file"] = "Загрузить файл"; -App::$strings["Drop files here to immediately upload"] = "Поместите файлы сюда для немедленной загрузки"; diff --git a/view/ru/messages.po b/view/ru/messages.po index 0ff952e8d..b04bf742f 100644 --- a/view/ru/messages.po +++ b/view/ru/messages.po @@ -1,2985 +1,6601 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. -# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# # Translators: -# Alex , 2013-2014 -# vislav , 2014 -# puser, 2014 +# Alex , 2016-2017 +# Max Kostikov , 2018 +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Hubzilla\n" +"Project-Id-Version: hubzilla\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-27 00:02-0700\n" -"PO-Revision-Date: 2014-06-30 12:10+0000\n" -"Last-Translator: Alex \n" -"Language-Team: Russian (http://www.transifex.com/projects/p/red-matrix/language/ru/)\n" +"POT-Creation-Date: 2018-08-21 11:34+0200\n" +"PO-Revision-Date: 2018-08-21 16:39+0200\n" +"Last-Translator: Max Kostikov \n" +"Language-Team: Russian (http://www.transifex.com/Friendica/hubzilla/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2))\n" -#: ../../include/dba/dba_driver.php:50 +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "Канал-источник не найден." + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "одинокий" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "пьяный" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:21 +msgid "horny" +msgstr "возбуждённый" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "под кайфом" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "облажался" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "в полной заднице" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "сумасшедший" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "обиженный" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "сонный" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "сердитый" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:29 +msgid "high" +msgstr "кайфует" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "в полубезсознании" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:31 +msgid "in love" +msgstr "влюблённый" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "похотливый" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:33 +msgid "naked" +msgstr "обнажённый" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "вонючий" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "потный" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "истекающий кровью" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "победивший" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "проигравший" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:39 +msgid "envious" +msgstr "завидует" + +#: ../../extend/addon/hzaddons/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "ревнует" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "Публиковать в Dreamwidth" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "Включить плагин публикаций Dreamwidth" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:73 +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:85 +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:53 +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:73 +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:85 +#: ../../extend/addon/hzaddons/planets/planets.php:149 +#: ../../extend/addon/hzaddons/libertree/libertree.php:69 +#: ../../extend/addon/hzaddons/libertree/libertree.php:81 +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:211 +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:215 +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:84 +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:120 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:219 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:223 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:227 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:231 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:309 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:313 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:351 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:355 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:359 +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:70 +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:82 +#: ../../extend/addon/hzaddons/twitter/twitter.php:243 +#: ../../extend/addon/hzaddons/twitter/twitter.php:252 +#: ../../extend/addon/hzaddons/twitter/twitter.php:261 +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:178 +#: ../../extend/addon/hzaddons/rtof/rtof.php:81 +#: ../../extend/addon/hzaddons/rtof/rtof.php:85 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:389 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:424 +#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:81 +#: ../../extend/addon/hzaddons/visage/visage.php:166 +#: ../../extend/addon/hzaddons/cart/cart.php:1206 +#: ../../extend/addon/hzaddons/cart/cart.php:1213 +#: ../../extend/addon/hzaddons/cart/cart.php:1221 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:73 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:653 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:657 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:99 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:104 +#: ../../extend/addon/hzaddons/nsabait/nsabait.php:157 +#: ../../extend/addon/hzaddons/nofed/nofed.php:72 +#: ../../extend/addon/hzaddons/nofed/nofed.php:76 +#: ../../extend/addon/hzaddons/redred/redred.php:95 +#: ../../extend/addon/hzaddons/redred/redred.php:99 +#: ../../extend/addon/hzaddons/wppost/wppost.php:82 +#: ../../extend/addon/hzaddons/wppost/wppost.php:105 +#: ../../extend/addon/hzaddons/wppost/wppost.php:109 ../../boot.php:1621 +#: ../../view/theme/redbasic/php/config.php:98 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Events.php:470 +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Sources.php:116 +#: ../../Zotlabs/Module/Sources.php:151 +#: ../../Zotlabs/Module/Filestorage.php:178 +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:177 +#: ../../Zotlabs/Module/Mitem.php:256 ../../Zotlabs/Module/Mitem.php:257 +#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Menu.php:162 +#: ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 +#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Storage/Browser.php:405 +msgid "No" +msgstr "Нет" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:73 +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:85 +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:53 +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:73 +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:85 +#: ../../extend/addon/hzaddons/planets/planets.php:149 +#: ../../extend/addon/hzaddons/libertree/libertree.php:69 +#: ../../extend/addon/hzaddons/libertree/libertree.php:81 +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:211 +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:215 +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:84 +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:120 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:219 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:223 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:227 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:231 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:309 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:313 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:351 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:355 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:359 +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:70 +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:82 +#: ../../extend/addon/hzaddons/twitter/twitter.php:243 +#: ../../extend/addon/hzaddons/twitter/twitter.php:252 +#: ../../extend/addon/hzaddons/twitter/twitter.php:261 +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:178 +#: ../../extend/addon/hzaddons/rtof/rtof.php:81 +#: ../../extend/addon/hzaddons/rtof/rtof.php:85 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:389 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:424 +#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:81 +#: ../../extend/addon/hzaddons/visage/visage.php:166 +#: ../../extend/addon/hzaddons/cart/cart.php:1206 +#: ../../extend/addon/hzaddons/cart/cart.php:1213 +#: ../../extend/addon/hzaddons/cart/cart.php:1221 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:73 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:653 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:657 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:99 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:104 +#: ../../extend/addon/hzaddons/nsabait/nsabait.php:157 +#: ../../extend/addon/hzaddons/nofed/nofed.php:72 +#: ../../extend/addon/hzaddons/nofed/nofed.php:76 +#: ../../extend/addon/hzaddons/redred/redred.php:95 +#: ../../extend/addon/hzaddons/redred/redred.php:99 +#: ../../extend/addon/hzaddons/wppost/wppost.php:82 +#: ../../extend/addon/hzaddons/wppost/wppost.php:105 +#: ../../extend/addon/hzaddons/wppost/wppost.php:109 ../../boot.php:1621 +#: ../../view/theme/redbasic/php/config.php:98 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Events.php:470 +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Sources.php:116 +#: ../../Zotlabs/Module/Sources.php:151 +#: ../../Zotlabs/Module/Filestorage.php:178 +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:256 +#: ../../Zotlabs/Module/Mitem.php:257 ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Menu.php:162 +#: ../../Zotlabs/Module/Menu.php:221 +#: ../../Zotlabs/Module/Settings/Channel.php:315 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 +#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Wiki.php:218 +#: ../../Zotlabs/Module/Wiki.php:219 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Storage/Browser.php:405 +msgid "Yes" +msgstr "Да" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "Имя пользователя Dreamwidth" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "Пароль Dreamwidth" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "Публиковать в Dreamwidth по умолчанию" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "Настройки публикаций в Dreamwidth" + +#: ../../extend/addon/hzaddons/dwpost/dwpost.php:89 +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:100 +#: ../../extend/addon/hzaddons/superblock/superblock.php:120 +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:69 +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:95 +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:89 +#: ../../extend/addon/hzaddons/planets/planets.php:153 +#: ../../extend/addon/hzaddons/libertree/libertree.php:85 +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:71 +#: ../../extend/addon/hzaddons/logrot/logrot.php:35 +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:124 +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:219 +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:92 +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:124 +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:237 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:371 +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:86 +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:168 +#: ../../extend/addon/hzaddons/likebanner/likebanner.php:57 +#: ../../extend/addon/hzaddons/twitter/twitter.php:218 +#: ../../extend/addon/hzaddons/twitter/twitter.php:265 +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1159 +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:831 +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:53 +#: ../../extend/addon/hzaddons/skeleton/skeleton.php:65 +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:284 +#: ../../extend/addon/hzaddons/startpage/startpage.php:113 +#: ../../extend/addon/hzaddons/pageheader/pageheader.php:48 +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:191 +#: ../../extend/addon/hzaddons/rtof/rtof.php:101 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:322 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:380 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:432 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:900 +#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:85 +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:97 +#: ../../extend/addon/hzaddons/piwik/piwik.php:95 +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:136 +#: ../../extend/addon/hzaddons/visage/visage.php:170 +#: ../../extend/addon/hzaddons/cart/cart.php:1251 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:78 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:647 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:144 +#: ../../extend/addon/hzaddons/nsabait/nsabait.php:161 +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:84 +#: ../../extend/addon/hzaddons/nofed/nofed.php:80 +#: ../../extend/addon/hzaddons/redred/redred.php:119 +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:60 +#: ../../extend/addon/hzaddons/irc/irc.php:53 +#: ../../extend/addon/hzaddons/wppost/wppost.php:113 +#: ../../view/theme/redbasic/php/config.php:93 ../../include/js_strings.php:22 +#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:99 +#: ../../Zotlabs/Widget/Eventstools.php:16 ../../Zotlabs/Module/Appman.php:153 +#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1127 +#: ../../Zotlabs/Module/Photos.php:1245 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Pdledit.php:98 ../../Zotlabs/Module/Mail.php:431 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Sources.php:117 +#: ../../Zotlabs/Module/Sources.php:154 +#: ../../Zotlabs/Module/Filestorage.php:183 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Setup.php:308 +#: ../../Zotlabs/Module/Setup.php:349 ../../Zotlabs/Module/Mitem.php:259 +#: ../../Zotlabs/Module/Admin/Addons.php:438 +#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Security.php:112 +#: ../../Zotlabs/Module/Admin/Profs.php:178 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Settings/Features.php:79 +#: ../../Zotlabs/Module/Settings/Channel.php:516 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Permcats.php:115 +#: ../../Zotlabs/Module/Settings/Oauth2.php:85 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Import.php:565 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Group.php:121 +#: ../../Zotlabs/Module/Group.php:137 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Thing.php:326 ../../Zotlabs/Module/Thing.php:379 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Import_items.php:129 +msgid "Submit" +msgstr "Отправить" + +#: ../../extend/addon/hzaddons/mdpost/mdpost.php:40 ../../include/text.php:1886 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:208 +#: ../../Zotlabs/Module/Wiki.php:350 +msgid "Markdown" +msgstr "Разметка" + +#: ../../extend/addon/hzaddons/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Использовать язык разметки для редактирования публикаций" + +#: ../../extend/addon/hzaddons/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "Пожалуйста." + +#: ../../extend/addon/hzaddons/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "О, чёрт..." + +#: ../../extend/addon/hzaddons/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "Не стоит благодарности." + +#: ../../extend/addon/hzaddons/randpost/randpost.php:100 +msgid "<blush>" +msgstr "<краснею>" + +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "Отправить тестовый email" + +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:50 +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "Получателей не найдено." + +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "Сообщение отправлено" + +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "Не удалось отправить сообщение." + +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "Тестовое сообщение" + +#: ../../extend/addon/hzaddons/mailtest/mailtest.php:96 +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "Тема сообщения" + +#: ../../extend/addon/hzaddons/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "Серверы и ресурсы проекта" + +#: ../../extend/addon/hzaddons/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "Создатель проекта и технический руководитель" + +#: ../../extend/addon/hzaddons/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "Администратор, разработчик, администратор каталога, поддержка" + +#: ../../extend/addon/hzaddons/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "И сотни других людей и организаций которые помогали в создании Hubzilla." + +#: ../../extend/addon/hzaddons/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "Проекты Redmatrix / Hubzilla предоставляются, в основном, добровольцами, которые предоставляют свое время и опыт и, часто, оплачивают из своего кармана услуги, которыми они делятся с другими." + +#: ../../extend/addon/hzaddons/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "Здесь нет корпоративного финансирования и рекламы, мы не собираем и не продаем вашу личную информацию. (Мы не контролируем вашу личную информацию - это делаете вы.)" + +#: ../../extend/addon/hzaddons/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." +msgstr "Помогите поддержать нашу новаторскую работу в областях децентрализации, веб-идентификации и конфиденциальности." + +#: ../../extend/addon/hzaddons/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "В ваших пожертвованиях поддерживают серверы и службы, а также помогают нам предоставлять новые возможности и продолжать развитие." + +#: ../../extend/addon/hzaddons/donate/donate.php:60 +msgid "Donate" +msgstr "Пожертвовать" + +#: ../../extend/addon/hzaddons/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "Выберите проект, разработчика или общедоступный узел для поддержки в форме единоразового пожертвования" + +#: ../../extend/addon/hzaddons/donate/donate.php:63 +msgid "Donate Now" +msgstr "Пожертвовать сейчас" + +#: ../../extend/addon/hzaddons/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project only)" +msgstr "или станьте спонсором проекта (только для Hubzilla)" + +#: ../../extend/addon/hzaddons/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "Пожалуйста, если желаете, укажите ваше имя для отображения в списке спонсоров." + +#: ../../extend/addon/hzaddons/donate/donate.php:66 +msgid "Sponsor" +msgstr "Спонсор" + +#: ../../extend/addon/hzaddons/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "Особые благодарности:" + +#: ../../extend/addon/hzaddons/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "В настоящее время заблокирован" + +#: ../../extend/addon/hzaddons/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "В настоящее время никакие каналы не блокируются" + +#: ../../extend/addon/hzaddons/superblock/superblock.php:116 +#: ../../Zotlabs/Module/Photos.php:1025 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../Zotlabs/Module/Admin/Addons.php:455 +msgid "Remove" +msgstr "Удалить" + +#: ../../extend/addon/hzaddons/superblock/superblock.php:120 +msgid "Superblock Settings" +msgstr "Настройки Superblock" + +#: ../../extend/addon/hzaddons/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "Заблокировать полностью" + +#: ../../extend/addon/hzaddons/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "Настройки Superblock обновлены." + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "Настройки XMPP обновлены." + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "Включить чат" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "Индивидуальные разрешения" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "Сервер Jabber BOSH" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "Настройки XMPP" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:91 +#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:46 +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:150 +msgid "Save Settings" +msgstr "Сохранить настройки" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "Узел Jabber BOSH" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "Использовать центральную базу данных" + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "Если включено, участники автоматически войдут на сервер ejabberd, который должен быть установлен на этом компьютере с синхронизированными учетными данными через скрипт \"auth_ejabberd.php\"." + +#: ../../extend/addon/hzaddons/xmpp/xmpp.php:102 +#: ../../extend/addon/hzaddons/logrot/logrot.php:54 +#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:54 +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:82 +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:184 +#: ../../extend/addon/hzaddons/twitter/twitter.php:772 +#: ../../extend/addon/hzaddons/piwik/piwik.php:116 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../Zotlabs/Module/Settings/Channel.php:272 +msgid "Settings updated." +msgstr "Настройки обновлены." + +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "Отправить email всем участникам" + +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:33 +#: ../../Zotlabs/Lib/Enotify.php:65 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +msgid "%s Administrator" +msgstr "администратор %s" + +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "%1$d из %2$d сообщений отправлено." + +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "Отправить email всем участникам узла." + +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "Адрес электронной почты отправителя" + +#: ../../extend/addon/hzaddons/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "Тестовый режим (отправка только администратору узла)" + +#: ../../extend/addon/hzaddons/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:299 +msgid "Report Bug" +msgstr "Сообщить об ошибке" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "Опубликовать в InsaneJournal" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Включить плагин публикаций InsaneJournal" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Имя пользователя InsaneJournal" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "Пароль InsaneJournal" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "Публиковать в InsaneJournal по умолчанию" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "Настройки публикаций в InsaneJournal" + +#: ../../extend/addon/hzaddons/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "Настройки InsaneJournal сохранены." + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "Каталог статистики Hubzilla" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "Всего хабов" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "Хабы Hubzilla" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "Хабы Friendica" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "Стручки Diaspora" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "Каналы Hubzilla" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "Каналы Friendica" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "Каналы Diaspora" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "Возраст 35 и выше" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "Возраст 34 и ниже" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "Средний возраст" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "Известные чаты" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "Известные теги" + +#: ../../extend/addon/hzaddons/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "Обратите внимание, что статистика Diaspora и Friendica это только те, о которых ** этот каталог ** знает, а не все известные в сети. Это также относится и к чатам." + +#: ../../extend/addon/hzaddons/chess/chess.php:353 +#: ../../extend/addon/hzaddons/chess/chess.php:542 +msgid "Invalid game." +msgstr "Недействительная игра" + +#: ../../extend/addon/hzaddons/chess/chess.php:359 +#: ../../extend/addon/hzaddons/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "Вы не играете в эту игру." + +#: ../../extend/addon/hzaddons/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "Ваш канал должен быть локальным чтобы создать игру." + +#: ../../extend/addon/hzaddons/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "Вы должны выбрать противника который не является вами." + +#: ../../extend/addon/hzaddons/chess/chess.php:444 +msgid "Random color chosen." +msgstr "Выбран случайный цвет." + +#: ../../extend/addon/hzaddons/chess/chess.php:452 +msgid "Error creating new game." +msgstr "Ошибка создания новой игры." + +#: ../../extend/addon/hzaddons/chess/chess.php:486 +#: ../../include/channel.php:1151 +msgid "Requested channel is not available." +msgstr "Запрошенный канал не доступен." + +#: ../../extend/addon/hzaddons/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "Вы должны выбрать локальный канал /chess/channelname" + +#: ../../extend/addon/hzaddons/chess/chess.php:508 +#: ../../Zotlabs/Module/Channel.php:35 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Вы должны авторизоваться, чтобы увидеть эту страницу." + +#: ../../extend/addon/hzaddons/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "Включить оповещения" + +#: ../../extend/addon/hzaddons/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "Настройки Planets обновлены." + +#: ../../extend/addon/hzaddons/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "Включить плагин Planets" + +#: ../../extend/addon/hzaddons/planets/planets.php:153 +msgid "Planets Settings" +msgstr "Настройки Planets" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "Опубликовать в Libertree" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Включить плагин публикаций Libertree" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "Токен Libertree API" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "URL сайта Libertree" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "Публиковать в Libertree по умолчанию" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "Настройки публикаций в Libertree" + +#: ../../extend/addon/hzaddons/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "Настройки Libertree сохранены." + +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "Автоматически аутентифицироватся только на сайтах ваших друзей" + +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "По умолчанию вы автоматически аутентифицируетесь во всей сети" + +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "Настройки выбора аутентификации" + +#: ../../extend/addon/hzaddons/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "Настройки выбора аутентификации обновлены." + +#: ../../extend/addon/hzaddons/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "Каталог архивирования журнала" + +#: ../../extend/addon/hzaddons/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "Каталог для хранения заархивированных журналов" + +#: ../../extend/addon/hzaddons/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "Размер файла журнала в байтах для архивирования" + +#: ../../extend/addon/hzaddons/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "Количество сохраняемых файлов журналов" + +#: ../../extend/addon/hzaddons/qrator/qrator.php:48 +msgid "QR code" +msgstr "QR-код" + +#: ../../extend/addon/hzaddons/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "Генератор QR-кодов" + +#: ../../extend/addon/hzaddons/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "Введите любой текст" + +#: ../../extend/addon/hzaddons/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "текст, который будет добавлен во все исходящие публикации с этого сайта" + +#: ../../extend/addon/hzaddons/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "файл" + +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:109 +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:82 +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:119 +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:73 +#: ../../include/items.php:364 ../../Zotlabs/Web/WebServer.php:122 +#: ../../Zotlabs/Module/Subthread.php:86 ../../Zotlabs/Module/Like.php:296 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Group.php:83 ../../Zotlabs/Module/Profperm.php:28 +#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Import_items.php:120 +msgid "Permission denied" +msgstr "Доступ запрещен" + +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "Импорт файлового хранилища Redmatrix" + +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "Это позволит импортировать все ваши файлы в Redmatrix в этот канал." + +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:121 +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:131 +msgid "Redmatrix Server base URL" +msgstr "Базовый URL сервера Redmatrix" + +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:122 +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:132 +msgid "Redmatrix Login Username" +msgstr "Имя пользователя Redmatrix" + +#: ../../extend/addon/hzaddons/redfiles/redfiles.php:123 +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:133 +msgid "Redmatrix Login Password" +msgstr "Пароль Redmatrix" + +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "Деактивировать функцию" + +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "Скрыть кнопку и сразу показывать смайлики." + +#: ../../extend/addon/hzaddons/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "Настройки кнопки смайликов" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." +msgstr "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения." + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "Включить фильтрацию содержимого" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "Список ключевых слов для скрытия, через запятую" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "слово, /регулярное_выражение/, lang=xx, lang!=xx" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "Настройка \"Not Safe For Work\"" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "Фильтр содержимого общего назначения" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "Настройки NSFW сохранены." + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "Возможно содержимое для взрослых" + +#: ../../extend/addon/hzaddons/nsfw/nsfw.php:222 +#, php-format +msgid "%s - view" +msgstr "%s - просмотр" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" msgstr "" -#: ../../include/photo/photo_driver.php:643 ../../include/photos.php:51 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:301 -#: ../../mod/profile_photo.php:421 ../../mod/photos.php:91 -#: ../../mod/photos.php:653 ../../mod/photos.php:675 -msgid "Profile Photos" -msgstr "Фотографии профиля" +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "Настройки виджета Flattr обновлены." -#: ../../include/bbcode.php:128 ../../include/bbcode.php:648 -#: ../../include/bbcode.php:651 ../../include/bbcode.php:656 -#: ../../include/bbcode.php:659 ../../include/bbcode.php:662 -#: ../../include/bbcode.php:665 ../../include/bbcode.php:670 -#: ../../include/bbcode.php:673 ../../include/bbcode.php:678 -#: ../../include/bbcode.php:681 ../../include/bbcode.php:684 -#: ../../include/bbcode.php:687 -msgid "Image/photo" -msgstr "Изображение / фото" +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "Пользователь Flattr" -#: ../../include/bbcode.php:163 ../../include/bbcode.php:698 -msgid "Encrypted content" -msgstr "Зашифрованное содержание" +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "URL ccылки на Flattr" -#: ../../include/bbcode.php:179 -msgid "QR code" -msgstr "QR код" +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "Если пусто, то используется URL канала" -#: ../../include/bbcode.php:228 +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "Заголовок вещи на Flattr" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "Если пусто, то будет использовано \"Название канала Hubzilla\"" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "Статическая или динамическая кнопка Flattr" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "статическая" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "динамическая" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "Выравнивание виджета" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "слева" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "справа" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "Включить виджет Flattr" + +#: ../../extend/addon/hzaddons/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "Настройки виджета Flattr" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:40 +#: ../../extend/addon/hzaddons/openid/Mod_Id.php:53 +#: ../../extend/addon/hzaddons/keepout/keepout.php:36 +#: ../../include/attach.php:150 ../../include/attach.php:197 +#: ../../include/attach.php:270 ../../include/attach.php:379 +#: ../../include/attach.php:393 ../../include/attach.php:400 +#: ../../include/attach.php:482 ../../include/attach.php:1042 +#: ../../include/attach.php:1116 ../../include/attach.php:1281 +#: ../../include/items.php:3653 ../../include/photos.php:27 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Photos.php:69 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Connections.php:29 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1108 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Card_edit.php:51 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Channel.php:115 ../../Zotlabs/Module/Channel.php:281 +#: ../../Zotlabs/Module/Channel.php:320 ../../Zotlabs/Module/Block.php:24 +#: ../../Zotlabs/Module/Block.php:74 ../../Zotlabs/Module/Api.php:24 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Sources.php:77 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Common.php:38 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:96 +#: ../../Zotlabs/Module/Filestorage.php:140 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Cover_photo.php:313 +#: ../../Zotlabs/Module/Cover_photo.php:326 ../../Zotlabs/Module/Like.php:185 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Menu.php:129 +#: ../../Zotlabs/Module/Menu.php:140 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Settings/Features.php:38 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/New_channel.php:105 +#: ../../Zotlabs/Module/New_channel.php:130 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Regmod.php:20 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Cards.php:72 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Article_edit.php:51 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:404 +#: ../../Zotlabs/Module/Group.php:12 ../../Zotlabs/Module/Group.php:24 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Thing.php:280 ../../Zotlabs/Module/Thing.php:300 +#: ../../Zotlabs/Module/Thing.php:341 ../../Zotlabs/Module/Display.php:449 +#: ../../Zotlabs/Module/Cloud.php:40 ../../Zotlabs/Module/Mood.php:116 +msgid "Permission denied." +msgstr "Доступ запрещен." + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "Вы аутентифицированы в Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "Вернутся к странице настроек" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "Опубликовать в Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "Имя сервера Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "Без \"http://\" или \"https://\"" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "Имя пользователя Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "без имени сервера" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "Вы не аутентифицированы на Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "Аутентифицировать (повторно) ваше соединение с Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "Включить плагин публикаций Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "Публиковать в Pump.io по умолчанию" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "Публикации должны быть общедоступными" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "Отображать все общедоступные публикации" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "Настройки публикаций в Pump.io" + +#: ../../extend/addon/hzaddons/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "Настройки публикаций в Pump.io сохранены." + +#: ../../extend/addon/hzaddons/bookmarker/bookmarker.php:38 +#: ../../Zotlabs/Lib/ThreadItem.php:403 +msgid "Save Bookmarks" +msgstr "Сохранить закладки" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:305 +#: ../../include/channel.php:1396 ../../include/channel.php:1567 +msgid "Status:" +msgstr "Статус:" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "Активировать расширение" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "Скрыть виджет чата Jappixmini из веб-интерфейса" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "Имя пользователя Jabber" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "Сервер Jabber" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "URL узла Jabber BOSH" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "Пароль Jabber" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "Зашифровать пароль Jabber с помощью пароля Hubzilla" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:343 +#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:597 +#: ../../Zotlabs/Module/Settings/Channel.php:598 +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "Recommended" +msgstr "рекомендовано" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:347 +#: ../../extend/addon/hzaddons/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "Пароль Hubzilla" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:351 +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "Утверждать запросы на подписку от контактов Hubzilla автоматически" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Очистить внутренний список адресов контактов Jabber" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "Помощь по конфигурации" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:368 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:796 +msgid "Add Contact" +msgstr "Добавить контакт" + +#: ../../extend/addon/hzaddons/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "Настройки Jappix Mini" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "Опубликовать в LiveJournal" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "Включить плагин публикаций LiveJournal" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "Имя пользователя LiveJournal" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "Пароль LiveJournal" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "Публиковать в LiveJournal по умолчанию" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "Настройки публикаций в LiveJournal" + +#: ../../extend/addon/hzaddons/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "Настройки LiveJournal сохранены." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "Возникшие при удалении таблицы базы данных ошибки" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:95 +#: ../../extend/addon/hzaddons/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "Отправить настройки" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "Удалить таблицы при деинсталляции?" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "Если включено, то таблицы базы данных Rendezvous будут удалены при удалении плагина." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "Токен доступа к Mapbox" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "Если вы введете токен доступа к Mapbox, он будет использоваться для извлечения фрагментов карты из Mapbox вместо стандартного сервера OpenStreetMap." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "Этот идентификатор был удалён другим участником из-за неактивности. Пожалуйста нажмите кнопку \"Новый идентификатор\" для обновления страницы и получения нового идентификатора. Вы можете использовать то же имя." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "Добро пожаловать в Rendezvous!" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." +msgstr "Введите ваше имя для вступления в это Rendezvous. Для того, чтобы делиться вашим положением с другими участниками, нажмите \"GPS control\". Когда ваше местоположение определно, красная точка появится и остальные смогут увидеть вас на карте." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "Давайте встретимся здесь" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:172 +#: ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../Zotlabs/Module/Cdav.php:1170 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Module/Wiki.php:209 +#: ../../Zotlabs/Module/Group.php:125 ../../Zotlabs/Storage/Browser.php:285 +msgid "Name" +msgstr "Имя" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:173 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:659 +#: ../../Zotlabs/Module/Appman.php:143 ../../Zotlabs/Module/Cdav.php:871 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Описание" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "Новый маркер" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "Редактировать маркер" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "Новый идентификатор" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "Удалить маркер" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "Удалить участника" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "Изменить оповещение о близости" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.

Enter a radius in meters (0 to disable):" +msgstr "Оповещение о близости будет произведено, если этот участник находится на определённом расстоянии от вас.

Введите радиус в метрах (0 для отключения):" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:180 +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "расстояние" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "Расстояние для уведомления о близости (метров)" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:182 +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.

Enter a radius in meters (0 to disable):" +msgstr "Оповещение о близости будет произведено, если вы находитесь на определённом расстоянии местоположения маркера.

Введите радиус в метрах (0 для отключения):" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "Маркер уведомления о близости" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "Напоминание" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "Введите сообщение для отображения когда вы находитесь рядом" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "Добавить новое Rendezvous." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." +msgstr "Создайте новое Rendezvous и поделитесь ссылкой доступа с теми, кого вы хотите пригласить в группу. Тот, кто откроет эту ссылку, станет её участником. Участники могут видеть местоположение, добавлять маркеры на карту или делится своим собственным местоположением с группой." + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:232 +msgid "You have no rendezvous. Press the button above to create a rendezvous!" +msgstr "У вас нет Rendezvous. Нажмите на кнопку ниже чтобы создать его!" + +#: ../../extend/addon/hzaddons/rendezvous/rendezvous.php:401 +#: ../../Zotlabs/Module/Setup.php:707 +msgid "Errors encountered creating database tables." +msgstr "При создании базы данных возникли ошибки." + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "Увеличить" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "URL сервера Tile" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "Список общедоступных серверов" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "URL сервера Nominatim (обратное геокодирование)" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "Список серверов Nominatim" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "Масштаб по умолчанию" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "Уровень размера по умолчанию (1 - весь мир, 18 - максимальный; зависит от сервера)." + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "Включите маркер на карте" + +#: ../../extend/addon/hzaddons/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "Включить маркер на карте" + +#: ../../extend/addon/hzaddons/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Мы столкнулись с проблемой входа с предоставленным вами OpenID. Пожалуйста, проверьте корректность его написания." + +#: ../../extend/addon/hzaddons/openid/openid.php:49 +msgid "The error message was:" +msgstr "Сообщение об ошибке было:" + +#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Ошибка протокола OpenID. Идентификатор не возвращён." + +#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:76 +#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:178 +#: ../../Zotlabs/Zot/Auth.php:264 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s написал следующее %2$s %3$s" +msgid "Welcome %s. Remote authentication successful." +msgstr "Добро пожаловать %s. Удаленная аутентификация успешно завершена." -#: ../../include/bbcode.php:230 -msgid "post" -msgstr "сообщение" +#: ../../extend/addon/hzaddons/openid/Mod_Openid.php:188 +#: ../../include/auth.php:317 +msgid "Login failed." +msgstr "Не удалось войти." -#: ../../include/bbcode.php:616 ../../include/bbcode.php:636 -msgid "$1 wrote:" -msgstr "$1 писал:" +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "Имя" -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Внедренное содержание" +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "Фамилия" -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Внедрение отключенно" +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:54 +#: ../../extend/addon/hzaddons/redred/redred.php:111 +msgid "Nickname" +msgstr "Псевдоним" -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "создал новое сообщение" +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "Полное имя" -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "прокомментировал %s's сообщение" +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:56 +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:57 +#: ../../extend/addon/hzaddons/rtof/rtof.php:93 +#: ../../extend/addon/hzaddons/redred/redred.php:107 +#: ../../include/network.php:1769 ../../Zotlabs/Module/Cdav.php:1174 +#: ../../Zotlabs/Module/Connedit.php:910 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Profiles.php:787 +msgid "Email" +msgstr "Электронная почта" -#: ../../include/conversation.php:120 ../../include/text.php:1705 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:45 ../../mod/like.php:254 +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:58 +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:59 +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:60 +#: ../../Zotlabs/Lib/Apps.php:330 +msgid "Profile Photo" +msgstr "Фотография профиля" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "Фотография профиля 16px" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "Фотография профиля 32px" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "Фотография профиля 48px" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "Фотография профиля 64px" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "Фотография профиля 80px" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "Фотография профиля 128px" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "Часовой пояс" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:68 +#: ../../Zotlabs/Module/Profiles.php:767 +msgid "Homepage URL" +msgstr "URL домашней страницы" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:328 +msgid "Language" +msgstr "Язык" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "Год рождения" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "Месяц рождения" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "День рождения" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "Дата рождения" + +#: ../../extend/addon/hzaddons/openid/MysqlProvider.php:74 +#: ../../Zotlabs/Module/Profiles.php:486 +msgid "Gender" +msgstr "Гендер" + +#: ../../extend/addon/hzaddons/openid/Mod_Id.php:85 +#: ../../include/channel.php:1480 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" +msgstr "Мужчина" + +#: ../../extend/addon/hzaddons/openid/Mod_Id.php:87 +#: ../../include/channel.php:1478 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" +msgstr "Женщина" + +#: ../../extend/addon/hzaddons/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "Ваш Webbie:" + +#: ../../extend/addon/hzaddons/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "Размер шрифта (px):" + +#: ../../extend/addon/hzaddons/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "Ссылка:" + +#: ../../extend/addon/hzaddons/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Нравится на Hubzilla" + +#: ../../extend/addon/hzaddons/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "Встроить:" + +#: ../../extend/addon/hzaddons/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "Расширенный обмен идентификацией" + +#: ../../extend/addon/hzaddons/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "Поделиться вашим идентификатором на всех веб-сайтах в Интернет. Если выключено, то идентификатор доступен только для сайтов $Projectname." + +#: ../../extend/addon/hzaddons/ldapauth/ldapauth.php:70 +msgid "An account has been created for you." +msgstr "Учётная запись, которая была для вас создана." + +#: ../../extend/addon/hzaddons/ldapauth/ldapauth.php:77 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "Аутентификация выполнена успешно, но отклонена: создание учетной записи отключено." + +#: ../../extend/addon/hzaddons/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "Опубликовать в Twitter" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "Настройки Twitter обновлены" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:184 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "Не найдено пары ключей для Twitter. Пожалуйста, свяжитесь с администратором сайта." + +#: ../../extend/addon/hzaddons/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your public posts will " +"be posted to Twitter." +msgstr "В этой установке Hubzilla плагин Twitter был включён, однако пока он не подключён к вашему аккаунту в Twitter. Для этого нажмите на кнопку ниже для получения PIN-кода от Twitter который нужно скопировать в поле ввода и отправить форму. Только ваши общедоступные публикации будут опубликованы в Twitter." + +#: ../../extend/addon/hzaddons/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "Войти в Twitter" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "Скопируйте PIN-код из Twitter здесь" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:233 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:401 +msgid "Currently connected to: " +msgstr "В настоящее время подключён к:" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в Twitter, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен." + +#: ../../extend/addon/hzaddons/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "Разрешить публиковать в Twitter" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Длина публикации Twitter" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Максимальная длина твита" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "Отправлять общедоступные публикации в Twitter по умолчанию" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter по умолчанию" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:261 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:424 +msgid "Clear OAuth configuration" +msgstr "Очистить конфигурацию OAuth" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "Настройки публикаций в Twitter" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:781 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:894 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Key" +msgstr "Ключ клиента" + +#: ../../extend/addon/hzaddons/twitter/twitter.php:782 +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:893 +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Consumer Secret" +msgstr "Код клиента" + +#: ../../extend/addon/hzaddons/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Пометка фотографий для взрослых" + +#: ../../extend/addon/hzaddons/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Предоставьте возможность редактирования фотографий, чтобы скрыть неприемлемые фотографии из альбома по умолчанию" + +#: ../../extend/addon/hzaddons/pubcrawl/as.php:961 +#: ../../include/conversation.php:1165 ../../Zotlabs/Lib/Apps.php:867 +#: ../../Zotlabs/Lib/Apps.php:949 ../../Zotlabs/Widget/Album.php:84 +#: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Module/Cdav.php:786 +#: ../../Zotlabs/Module/Cdav.php:787 ../../Zotlabs/Module/Cdav.php:794 +#: ../../Zotlabs/Module/Photos.php:822 ../../Zotlabs/Module/Photos.php:1278 +#: ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Storage/Browser.php:164 +msgid "Unknown" +msgstr "Неизвестный" + +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1219 +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1374 +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1553 +#: ../../include/network.php:1768 +msgid "ActivityPub" +msgstr "" + +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1509 +#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1530 +#: ../../extend/addon/hzaddons/redphotos/redphotohelper.php:71 +#: ../../include/conversation.php:116 ../../include/text.php:2022 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:384 msgid "photo" msgstr "фото" -#: ../../include/conversation.php:123 ../../include/text.php:1708 -#: ../../mod/tagger.php:49 -msgid "event" -msgstr "мероприятие" - -#: ../../include/conversation.php:126 ../../mod/like.php:72 -msgid "channel" -msgstr "канал" - -#: ../../include/conversation.php:148 ../../include/text.php:1711 -#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 -#: ../../mod/tagger.php:53 ../../mod/like.php:254 +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1509 +#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1530 +#: ../../include/conversation.php:144 ../../include/text.php:2028 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 msgid "status" msgstr "статус" -#: ../../include/conversation.php:150 ../../include/text.php:1713 -#: ../../mod/tagger.php:55 -msgid "comment" -msgstr "комментарий" - -#: ../../include/conversation.php:164 ../../mod/like.php:291 +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1544 +#: ../../extend/addon/hzaddons/diaspora/Receiver.php:1559 +#: ../../include/conversation.php:160 ../../Zotlabs/Module/Like.php:438 #, php-format msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s нравится %2$s's %3$s" +msgstr "%1$s нравится %3$s %2$s" -#: ../../include/conversation.php:167 ../../mod/like.php:293 +#: ../../extend/addon/hzaddons/pubcrawl/as.php:1546 +#: ../../include/conversation.php:163 ../../Zotlabs/Module/Like.php:440 #, php-format msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s не нравится %2$s's %3$s" +msgstr "%1$s не нравится %2$s %3$s" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s теперь соединен с %2$s" +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1136 +msgid "ActivityPub Protocol Settings updated." +msgstr "Настройки протокола ActivityPub обновлены." -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s подпихнул %2$s" - -#: ../../include/conversation.php:243 ../../include/text.php:895 -msgid "poked" -msgstr "подпихнул" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "" - -#: ../../include/conversation.php:634 ../../include/ItemObject.php:114 -msgid "Select" -msgstr "Выбрать" - -#: ../../include/conversation.php:635 ../../include/apps.php:232 -#: ../../include/ItemObject.php:108 ../../mod/settings.php:578 -#: ../../mod/connedit.php:398 ../../mod/photos.php:1046 -#: ../../mod/group.php:176 ../../mod/admin.php:758 ../../mod/admin.php:888 -#: ../../mod/thing.php:236 -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:84 -msgid "Delete" -msgstr "Удалить" - -#: ../../include/conversation.php:642 ../../include/ItemObject.php:89 -#: ../../mod/photos.php:844 -msgid "Private Message" -msgstr "Личное сообщение" - -#: ../../include/conversation.php:649 ../../include/ItemObject.php:182 -msgid "Message is verified" -msgstr "Сообщение проверено" - -#: ../../include/conversation.php:669 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Просмотр %s's профиля @ %s" - -#: ../../include/conversation.php:683 -msgid "Categories:" -msgstr "Категории:" - -#: ../../include/conversation.php:684 -msgid "Filed under:" -msgstr "Хранить под:" - -#: ../../include/conversation.php:693 ../../include/ItemObject.php:250 -#, php-format -msgid " from %s" -msgstr " от %s" - -#: ../../include/conversation.php:696 ../../include/ItemObject.php:253 -#, php-format -msgid "last edited: %s" -msgstr "" - -#: ../../include/conversation.php:697 ../../include/ItemObject.php:254 -#, php-format -msgid "Expires: %s" -msgstr "" - -#: ../../include/conversation.php:712 -msgid "View in context" -msgstr "Показать в контексте" - -#: ../../include/conversation.php:714 ../../include/conversation.php:1130 -#: ../../include/ItemObject.php:294 ../../mod/editblock.php:120 -#: ../../mod/editlayout.php:115 ../../mod/editpost.php:121 -#: ../../mod/editwebpage.php:152 ../../mod/photos.php:977 -#: ../../mod/mail.php:222 ../../mod/mail.php:336 -msgid "Please wait" -msgstr "Подождите пожалуйста" - -#: ../../include/conversation.php:841 -msgid "remove" -msgstr "удалить" - -#: ../../include/conversation.php:845 -msgid "Loading..." -msgstr "Загрузка..." - -#: ../../include/conversation.php:846 -msgid "Delete Selected Items" -msgstr "Удалить выбранные элементы" - -#: ../../include/conversation.php:937 -msgid "View Source" -msgstr "Просмотр источника" - -#: ../../include/conversation.php:938 -msgid "Follow Thread" -msgstr "Следовать теме" - -#: ../../include/conversation.php:939 -msgid "View Status" -msgstr "Просмотр состояния" - -#: ../../include/conversation.php:940 ../../include/nav.php:81 -#: ../../mod/connedit.php:351 ../../mod/connedit.php:465 -msgid "View Profile" -msgstr "Просмотр профиля" - -#: ../../include/conversation.php:941 -msgid "View Photos" -msgstr "Просмотр фотографий" - -#: ../../include/conversation.php:942 -msgid "Matrix Activity" -msgstr "Активность матрицы" - -#: ../../include/conversation.php:943 -msgid "Edit Contact" -msgstr "Редактировать контакт" - -#: ../../include/conversation.php:944 -msgid "Send PM" -msgstr "Отправить личное сообщение" - -#: ../../include/conversation.php:945 ../../include/apps.php:135 -msgid "Poke" -msgstr "Подпихнуть" - -#: ../../include/conversation.php:1001 -#, php-format -msgid "%s likes this." -msgstr "%s нравится это." - -#: ../../include/conversation.php:1001 -#, php-format -msgid "%s doesn't like this." -msgstr "%s не нравится это." - -#: ../../include/conversation.php:1005 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d чел. нравится это." -msgstr[1] "%2$d чел. нравится это." -msgstr[2] "%2$d чел. нравится это." - -#: ../../include/conversation.php:1007 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "%2$d чел. не нравится это." - -#: ../../include/conversation.php:1013 -msgid "and" -msgstr "и" - -#: ../../include/conversation.php:1016 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "" -msgstr[2] ", и %d другие люди" - -#: ../../include/conversation.php:1017 -#, php-format -msgid "%s like this." -msgstr "%s нравится это." - -#: ../../include/conversation.php:1017 -#, php-format -msgid "%s don't like this." -msgstr "%s не нравится это." - -#: ../../include/conversation.php:1074 -msgid "Visible to everybody" -msgstr "Видно для всех" - -#: ../../include/conversation.php:1075 ../../mod/mail.php:171 -#: ../../mod/mail.php:269 -msgid "Please enter a link URL:" -msgstr "Пожалуйста, введите URL ссылки:" - -#: ../../include/conversation.php:1076 -msgid "Please enter a video link/URL:" -msgstr "Пожалуйста, введите URL видео-ссылки:" - -#: ../../include/conversation.php:1077 -msgid "Please enter an audio link/URL:" -msgstr "Пожалуйста, введите URL аудио-ссылки:" - -#: ../../include/conversation.php:1078 -msgid "Tag term:" -msgstr "Теги:" - -#: ../../include/conversation.php:1079 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Сохранить в папку:" - -#: ../../include/conversation.php:1080 -msgid "Where are you right now?" -msgstr "Где вы сейчас?" - -#: ../../include/conversation.php:1081 ../../mod/editpost.php:52 -#: ../../mod/mail.php:172 ../../mod/mail.php:270 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "" - -#: ../../include/conversation.php:1091 ../../include/page_widgets.php:40 -#: ../../include/ItemObject.php:592 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:135 ../../mod/editpost.php:140 -#: ../../mod/editwebpage.php:174 ../../mod/photos.php:997 -#: ../../mod/webpages.php:124 -msgid "Preview" -msgstr "Предварительный просмотр" - -#: ../../include/conversation.php:1105 ../../mod/photos.php:976 -#: ../../mod/layouts.php:113 -msgid "Share" -msgstr "Поделиться" - -#: ../../include/conversation.php:1107 ../../mod/editwebpage.php:139 -msgid "Page link title" -msgstr "Ссылка заголовока страницы" - -#: ../../include/conversation.php:1110 -msgid "Post as" -msgstr "" - -#: ../../include/conversation.php:1111 ../../mod/editblock.php:112 -#: ../../mod/editlayout.php:107 ../../mod/editpost.php:113 -#: ../../mod/editwebpage.php:144 ../../mod/mail.php:219 ../../mod/mail.php:332 -msgid "Upload photo" -msgstr "Загрузить фотографию" - -#: ../../include/conversation.php:1112 -msgid "upload photo" -msgstr "загрузить фотографию" - -#: ../../include/conversation.php:1113 ../../mod/editblock.php:113 -#: ../../mod/editlayout.php:108 ../../mod/editpost.php:114 -#: ../../mod/editwebpage.php:145 ../../mod/mail.php:220 ../../mod/mail.php:333 -msgid "Attach file" -msgstr "Прикрепить файл" - -#: ../../include/conversation.php:1114 -msgid "attach file" -msgstr "прикрепить файл" - -#: ../../include/conversation.php:1115 ../../mod/editblock.php:114 -#: ../../mod/editlayout.php:109 ../../mod/editpost.php:115 -#: ../../mod/editwebpage.php:146 ../../mod/mail.php:221 ../../mod/mail.php:334 -msgid "Insert web link" -msgstr "Вставить веб-ссылку" - -#: ../../include/conversation.php:1116 -msgid "web link" -msgstr "веб-ссылка" - -#: ../../include/conversation.php:1117 -msgid "Insert video link" -msgstr "Вставить видео-ссылку" - -#: ../../include/conversation.php:1118 -msgid "video link" -msgstr "видео-ссылка" - -#: ../../include/conversation.php:1119 -msgid "Insert audio link" -msgstr "Вставить аудио-ссылку" - -#: ../../include/conversation.php:1120 -msgid "audio link" -msgstr "аудио-ссылка" - -#: ../../include/conversation.php:1121 ../../mod/editblock.php:118 -#: ../../mod/editlayout.php:113 ../../mod/editpost.php:119 -#: ../../mod/editwebpage.php:150 -msgid "Set your location" -msgstr "Указание своего расположения" - -#: ../../include/conversation.php:1122 -msgid "set location" -msgstr "указание расположения" - -#: ../../include/conversation.php:1123 ../../mod/editblock.php:119 -#: ../../mod/editlayout.php:114 ../../mod/editpost.php:120 -#: ../../mod/editwebpage.php:151 -msgid "Clear browser location" -msgstr "Стереть указание расположения" - -#: ../../include/conversation.php:1124 -msgid "clear location" -msgstr "стереть указание расположения" - -#: ../../include/conversation.php:1126 ../../mod/editblock.php:132 -#: ../../mod/editlayout.php:126 ../../mod/editpost.php:132 -#: ../../mod/editwebpage.php:167 -msgid "Set title" -msgstr "Заголовок" - -#: ../../include/conversation.php:1129 ../../mod/editblock.php:135 -#: ../../mod/editlayout.php:129 ../../mod/editpost.php:134 -#: ../../mod/editwebpage.php:169 -msgid "Categories (comma-separated list)" -msgstr "Категории (список через запятую)" - -#: ../../include/conversation.php:1131 ../../mod/editblock.php:121 -#: ../../mod/editlayout.php:116 ../../mod/editpost.php:122 -#: ../../mod/editwebpage.php:153 -msgid "Permission settings" -msgstr "Настройки разрешений" - -#: ../../include/conversation.php:1132 -msgid "permissions" -msgstr "разрешения" - -#: ../../include/conversation.php:1139 ../../mod/editblock.php:129 -#: ../../mod/editlayout.php:123 ../../mod/editpost.php:129 -#: ../../mod/editwebpage.php:162 -msgid "Public post" -msgstr "Публичное сообщение" - -#: ../../include/conversation.php:1141 ../../mod/editblock.php:136 -#: ../../mod/editlayout.php:130 ../../mod/editpost.php:135 -#: ../../mod/editwebpage.php:170 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Пример: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1154 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:140 ../../mod/editpost.php:146 -#: ../../mod/editwebpage.php:179 ../../mod/mail.php:226 ../../mod/mail.php:339 -msgid "Set expiration date" -msgstr "" - -#: ../../include/conversation.php:1156 ../../include/ItemObject.php:595 -#: ../../mod/editpost.php:148 ../../mod/mail.php:228 ../../mod/mail.php:341 -msgid "Encrypt text" -msgstr "" - -#: ../../include/conversation.php:1158 ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1159 ../../mod/settings.php:516 -#: ../../mod/settings.php:542 ../../mod/editpost.php:151 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 -msgid "Cancel" -msgstr "Отменить" - -#: ../../include/conversation.php:1401 -msgid "Discover" -msgstr "Обнаруженные" - -#: ../../include/conversation.php:1404 -msgid "Imported public streams" -msgstr "" - -#: ../../include/conversation.php:1409 -msgid "Commented Order" -msgstr "По комментариям" - -#: ../../include/conversation.php:1412 -msgid "Sort by Comment Date" -msgstr "Сортировка по дате создания комментариев" - -#: ../../include/conversation.php:1416 -msgid "Posted Order" -msgstr "По добавлениям" - -#: ../../include/conversation.php:1419 -msgid "Sort by Post Date" -msgstr "Сортировка по дате создания сообщения" - -#: ../../include/conversation.php:1424 ../../include/widgets.php:82 -msgid "Personal" -msgstr "Личные" - -#: ../../include/conversation.php:1427 -msgid "Posts that mention or involve you" -msgstr "Сообщения, в которых упоминули или вовлекли вас" - -#: ../../include/conversation.php:1433 ../../mod/connections.php:211 -#: ../../mod/connections.php:224 ../../mod/menu.php:61 -msgid "New" -msgstr "Новые" - -#: ../../include/conversation.php:1436 -msgid "Activity Stream - by date" -msgstr "Лента активности - по дате" - -#: ../../include/conversation.php:1442 -msgid "Starred" -msgstr "Помеченные" - -#: ../../include/conversation.php:1445 -msgid "Favourite Posts" -msgstr "Фаворит-сообщения" - -#: ../../include/conversation.php:1452 -msgid "Spam" -msgstr "Спам" - -#: ../../include/conversation.php:1455 -msgid "Posts flagged as SPAM" -msgstr "Как СПАМ помеченные сообщения" - -#: ../../include/conversation.php:1488 ../../mod/admin.php:892 -msgid "Channel" -msgstr "Канал" - -#: ../../include/conversation.php:1491 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../include/conversation.php:1500 -msgid "About" -msgstr "О себе" - -#: ../../include/conversation.php:1503 -msgid "Profile Details" -msgstr "Сведения о профиле" - -#: ../../include/conversation.php:1509 ../../include/nav.php:84 -#: ../../include/apps.php:129 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Фотографии" - -#: ../../include/conversation.php:1512 ../../include/photos.php:313 -msgid "Photo Albums" -msgstr "Фотоальбомы" - -#: ../../include/conversation.php:1518 ../../include/nav.php:85 -#: ../../include/reddav.php:1051 ../../include/apps.php:125 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Файлы" - -#: ../../include/conversation.php:1521 -msgid "Files and Storage" -msgstr "" - -#: ../../include/conversation.php:1530 ../../include/conversation.php:1533 -msgid "Chatrooms" -msgstr "Чаты" - -#: ../../include/conversation.php:1540 ../../include/nav.php:93 -#: ../../include/apps.php:119 -msgid "Bookmarks" -msgstr "Закладки" - -#: ../../include/conversation.php:1543 -msgid "Saved Bookmarks" -msgstr "Сохранённые закладки" - -#: ../../include/conversation.php:1551 ../../include/nav.php:95 -#: ../../include/apps.php:126 ../../mod/webpages.php:79 -msgid "Webpages" -msgstr "Веб-страницы" - -#: ../../include/conversation.php:1554 -msgid "Manage Webpages" -msgstr "Управление веб-страниц" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Новая страница" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/apps.php:231 ../../include/menu.php:42 -#: ../../include/ItemObject.php:96 ../../mod/settings.php:577 -#: ../../mod/blocks.php:94 ../../mod/connections.php:393 -#: ../../mod/editblock.php:111 ../../mod/editlayout.php:106 -#: ../../mod/editpost.php:112 ../../mod/editwebpage.php:143 -#: ../../mod/thing.php:235 ../../mod/layouts.php:112 ../../mod/menu.php:59 -#: ../../mod/webpages.php:120 -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:80 -msgid "Edit" -msgstr "Редактировать" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:97 -#: ../../mod/layouts.php:116 ../../mod/webpages.php:123 -msgid "View" -msgstr "Просмотр" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:125 -msgid "Actions" -msgstr "" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:126 -msgid "Page Link" -msgstr "Ссылка страницы" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:127 -msgid "Title" -msgstr "Заголовок" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:128 -msgid "Created" -msgstr "Создано" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:129 -msgid "Edited" -msgstr "Отредактирован" - -#: ../../include/security.php:301 +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1145 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." +"The ActivityPub protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Протокол ActivityPub не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала. " + +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1148 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "Включить протокол ActivityPub для этого канала" + +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1151 +msgid "Deliver to ActivityPub recipients in privacy groups" +msgstr "Доставить получателям ActivityPub в группах безопасности" + +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1151 +msgid "" +"May result in a large number of mentions and expose all the members of your " +"privacy group" +msgstr "Может привести к большому количеству упоминаний и раскрытию участников группы безопасности" + +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1155 +msgid "Send multi-media HTML articles" +msgstr "Отправить HTML статьи с мультимедиа" + +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1155 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "Не поддерживается некоторыми микроблогами, например Mastodon" + +#: ../../extend/addon/hzaddons/pubcrawl/pubcrawl.php:1159 +msgid "ActivityPub Protocol Settings" +msgstr "Настройки протокола ActivityPub" + +#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Имя пользователя не найдено в файле для импорта." + +#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:41 +#: ../../include/import.php:72 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Не удалось создать уникальный адрес канала. Импорт не завершен." + +#: ../../extend/addon/hzaddons/diaspora/import_diaspora.php:139 +#: ../../Zotlabs/Module/Import.php:513 +msgid "Import completed." +msgstr "Импорт завершен." + +#: ../../extend/addon/hzaddons/diaspora/util.php:308 +#: ../../extend/addon/hzaddons/diaspora/util.php:321 +#: ../../extend/addon/hzaddons/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 +msgid "$projectname" msgstr "" -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Не действительный адрес электронной почты" +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:787 +msgid "Diaspora Protocol Settings updated." +msgstr "Настройки протокола Diaspora обновлены." -#: ../../include/account.php:25 +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:806 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Прокол Diaspora не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала." + +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:809 +msgid "Enable the Diaspora protocol for this channel" +msgstr "Включить протокол Diaspora для этого канала" + +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:813 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "Разрешить любому участнику Diaspora комментировать ваши общедоступные публикации" + +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:817 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "Предотвратить перенаправление тегов на другие сайты" + +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:821 +msgid "Sign and forward posts and comments with no existing Diaspora signature" +msgstr "Подписывать и отправлять публикации и комментарии с несуществующей подписью Diaspora" + +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:826 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "Отслеживаемые теги (через запятую, исключая #)" + +#: ../../extend/addon/hzaddons/diaspora/diaspora.php:831 +msgid "Diaspora Protocol Settings" +msgstr "Настройки протокола Diaspora" + +#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2102 +#: ../../Zotlabs/Module/Like.php:448 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s посещает %2$s%3$s" + +#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2104 +#: ../../Zotlabs/Module/Like.php:450 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s не посещает %2$s%3$s" + +#: ../../extend/addon/hzaddons/diaspora/Receiver.php:2106 +#: ../../Zotlabs/Module/Like.php:452 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s может посетить %2$s%3$s" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:50 +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "Системные по умолчанию:" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "Предпочитаемый Clipart ID" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "Список предпочитаемых Clipart ID. Эти будут показаны первыми." + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "Условие поиска по умолчанию" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "Условие поиска по умолчанию. Показываются во вторую очередь." + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "Вернуться после" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "Страница для загрузки после выбора изображения." + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1037 ../../include/nav.php:108 +#: ../../Zotlabs/Lib/Apps.php:313 ../../Zotlabs/Module/Connedit.php:594 +msgid "View Profile" +msgstr "Просмотреть профиль" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:58 +#: ../../include/nav.php:113 ../../include/channel.php:1300 +msgid "Edit Profile" +msgstr "Редактировать профиль" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "Список профилей" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "Порядок предпочтения" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "Порядок сортировки предпочитаемых Clipart ID. " + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:62 +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "Новое первым" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "По мере ввода" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "Порядок других" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "Порядок сортировки остальных Clipart ID." + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "Самое загружаемое первым" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "Самое нравящееся первым" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "Сообщение от предпочитаемых ID" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "Отображаемое сообщение над предпочитаемыми результатами." + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "Загружено:" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "Нарисовано:" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:182 +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Использовать это изображение" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "Или выберите из бесплатных изображений на OpenClipart.org" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "Условие поиска" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "Неизвестная ошибка. Пожалуйста, повторите попытку позже." + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:298 +#: ../../Zotlabs/Module/Profile_photo.php:218 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Если новая фотография не отображается немедленно то нажмите Shift + \"Обновить\" для очистки кэша браузера" + +#: ../../extend/addon/hzaddons/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "Фотография профиля обновлена успешно." + +#: ../../extend/addon/hzaddons/tour/tour.php:76 +msgid "Edit your profile and change settings." +msgstr "Отредактировать ваш профиль и изменить настройки." + +#: ../../extend/addon/hzaddons/tour/tour.php:77 +msgid "Click here to see activity from your connections." +msgstr "Нажмите сюда для отображения активности ваши контактов." + +#: ../../extend/addon/hzaddons/tour/tour.php:78 +msgid "Click here to see your channel home." +msgstr "Нажмите сюда чтобы увидеть главную страницу вашего канала." + +#: ../../extend/addon/hzaddons/tour/tour.php:79 +msgid "You can access your private messages from here." +msgstr "Вы можете получить доступ с личной переписке здесь." + +#: ../../extend/addon/hzaddons/tour/tour.php:80 +msgid "Create new events here." +msgstr "Создать новое событие здесь." + +#: ../../extend/addon/hzaddons/tour/tour.php:81 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "Вы можете подключать новые контакты и менять разрешения для существующих здесь. Также вы можете создавать их группы." + +#: ../../extend/addon/hzaddons/tour/tour.php:82 +msgid "System notifications will arrive here" +msgstr "Системные оповещения будут показываться здесь" + +#: ../../extend/addon/hzaddons/tour/tour.php:83 +msgid "Search for content and users" +msgstr "Поиск пользователей и содержимого" + +#: ../../extend/addon/hzaddons/tour/tour.php:84 +msgid "Browse for new contacts" +msgstr "Поиск новых контактов" + +#: ../../extend/addon/hzaddons/tour/tour.php:85 +msgid "Launch installed apps" +msgstr "Запустить установленные приложения" + +#: ../../extend/addon/hzaddons/tour/tour.php:86 +msgid "Looking for help? Click here." +msgstr "Нужна помощь? Нажмите сюда." + +#: ../../extend/addon/hzaddons/tour/tour.php:87 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "Новые события произошли в вашей сети. Нажмите здесь для того, чтобы знать что случилось!" + +#: ../../extend/addon/hzaddons/tour/tour.php:88 +msgid "You have received a new private message. Click here to see from who!" +msgstr "Вы получили новое личное сообщение. Нажмите чтобы увидеть от кого!" + +#: ../../extend/addon/hzaddons/tour/tour.php:89 +msgid "There are events this week. Click here too see which!" +msgstr "На этой неделе есть события. Нажмите здесь чтобы увидеть какие!" + +#: ../../extend/addon/hzaddons/tour/tour.php:90 +msgid "You have received a new introduction. Click here to see who!" +msgstr "Вы были представлены. Нажмите чтобы увидеть кому!" + +#: ../../extend/addon/hzaddons/tour/tour.php:91 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "Это новое системное уведомление. Нажмите чтобы посмотреть что случилось!" + +#: ../../extend/addon/hzaddons/tour/tour.php:94 +msgid "Click here to share text, images, videos and sound." +msgstr "Нажмите сюда чтобы поделиться текстом, изображениями, видео или треком." + +#: ../../extend/addon/hzaddons/tour/tour.php:95 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "Вы можете написать необязательный заголовок для вашей публикации (желательно для больших постов)." + +#: ../../extend/addon/hzaddons/tour/tour.php:96 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "Введите категории здесь чтобы было проще найти вашу публикацию позднее." + +#: ../../extend/addon/hzaddons/tour/tour.php:97 +msgid "Share photos, links, location, etc." +msgstr "Поделиться фотографией, ссылками, местоположение и т.п." + +#: ../../extend/addon/hzaddons/tour/tour.php:98 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "Хотите только поделиться временным содержимым? Установите срок его действия." + +#: ../../extend/addon/hzaddons/tour/tour.php:99 +msgid "You can password protect content." +msgstr "Вы можете защитить содержимое паролем." + +#: ../../extend/addon/hzaddons/tour/tour.php:100 +msgid "Choose who you share with." +msgstr "Выбрать с кем поделиться." + +#: ../../extend/addon/hzaddons/tour/tour.php:102 +msgid "Click here when you are done." +msgstr "Нажмите здесь когда закончите." + +#: ../../extend/addon/hzaddons/tour/tour.php:105 +msgid "Adjust from which channels posts should be displayed." +msgstr "Настройте из каких каналов должны отображаться публикации." + +#: ../../extend/addon/hzaddons/tour/tour.php:106 +msgid "Only show posts from channels in the specified privacy group." +msgstr "Показывать только публикации из определённой группы безопасности." + +#: ../../extend/addon/hzaddons/tour/tour.php:110 +msgid "" +"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "Лёгкий поиск сообщения, содержащего теги (ключевые слова, которым предшествует символ #)." + +#: ../../extend/addon/hzaddons/tour/tour.php:111 +msgid "Easily find posts in given category." +msgstr "Лёгкий поиск публикаций в данной категории." + +#: ../../extend/addon/hzaddons/tour/tour.php:112 +msgid "Easily find posts by date." +msgstr "Лёгкий поиск публикаций по дате." + +#: ../../extend/addon/hzaddons/tour/tour.php:113 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we " +"think you might find interesting." +msgstr "Рекомендуемые пользователи, которые были представлены в качестве предложений, и которые, по нашему мнению, могут оказаться интересными." + +#: ../../extend/addon/hzaddons/tour/tour.php:114 +msgid "Here you see channels you have connected to." +msgstr "Здесь вы видите каналы, к которым вы подключились." + +#: ../../extend/addon/hzaddons/tour/tour.php:115 +msgid "Save your search so you can repeat it at a later date." +msgstr "Сохраните ваш поиск с тем, чтобы повторить его позже." + +#: ../../extend/addon/hzaddons/tour/tour.php:118 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It " +"is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "Если вы видите этот значок, вы можете быть уверены, что отправитель - это тот, кто это говорит. Это нормально, что не всегда можно проверить отправителя, поэтому значок иногда будет отсутствовать. Обычно об этом не нужно беспокоиться." + +#: ../../extend/addon/hzaddons/tour/tour.php:119 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "Опасность! Кажется, кто-то пытался подделать сообщение! Это сообщение не обязательно от того, от кого оно значится!" + +#: ../../extend/addon/hzaddons/tour/tour.php:126 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "Добро пожаловать в Hubzilla! Желаете получить обзор пользовательского интерфейса?

Вы можете его приостановаить и в любое время перезагрузив страницу или перейдя на другую.

Также вы можете нажать клавишу \"Назад\"" + +#: ../../extend/addon/hzaddons/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "Некоторые настройки" + +#: ../../extend/addon/hzaddons/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "Настройка" + +#: ../../extend/addon/hzaddons/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "Настройки скелета" + +#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "Показать ограничения на загрузку" + +#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "Максимальный размер настроенный в Hubzilla:" + +#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "" + +#: ../../extend/addon/hzaddons/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" + +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:258 +msgid "GNU-Social Protocol Settings updated." +msgstr "Настройки протокола GNU Social обновлены." + +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:277 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "Прокол GNU Social не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала." + +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:280 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "Включить протокол GNU Social для этого канала" + +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:284 +msgid "GNU-Social Protocol Settings" +msgstr "Настройки протокола GNU Social" + +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:480 +msgid "Follow" +msgstr "Отслеживать" + +#: ../../extend/addon/hzaddons/gnusoc/gnusoc.php:483 +#, php-format +msgid "%1$s is now following %2$s" +msgstr "%1$s сейчас отслеживает %2$s" + +#: ../../extend/addon/hzaddons/gallery/gallery.php:42 +#: ../../extend/addon/hzaddons/gallery/Mod_Gallery.php:111 +msgid "Gallery" +msgstr "Галерея" + +#: ../../extend/addon/hzaddons/gallery/gallery.php:45 +msgid "Photo Gallery" +msgstr "Фотогалерея" + +#: ../../extend/addon/hzaddons/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "Страница для загрузки после входа" + +#: ../../extend/addon/hzaddons/startpage/startpage.php:109 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "Примеры: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (оставьте пустым для для страницы сети по умолчанию)." + +#: ../../extend/addon/hzaddons/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "Настройки стартовой страницы" + +#: ../../extend/addon/hzaddons/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "Отображаемое сообщение на каждой странице на этом сервере." + +#: ../../extend/addon/hzaddons/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "Настройки шапки страницы" + +#: ../../extend/addon/hzaddons/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "Настройки шапки страницы сохранены." + +#: ../../extend/addon/hzaddons/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Tic-Tac-Toe в трёх измерениях" + +#: ../../extend/addon/hzaddons/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "" + +#: ../../extend/addon/hzaddons/tictac/tictac.php:59 +msgid "New game" +msgstr "Новая игра" + +#: ../../extend/addon/hzaddons/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "Новая игра с форой" + +#: ../../extend/addon/hzaddons/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "Трехмерный Tic-Tac-Toe похож на традиционную игру, за исключением того, что игра идёт на нескольких уровнях одновременно." + +#: ../../extend/addon/hzaddons/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "Имеется три уровня. Вы выигрываете, получая три подряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях." + +#: ../../extend/addon/hzaddons/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "Игра с форой отключает центральную позицию на среднем уровне, потому что игрок, претендующий на этот квадрат, часто имеет несправедливое преимущество." + +#: ../../extend/addon/hzaddons/tictac/tictac.php:183 +msgid "You go first..." +msgstr "Вы начинаете..." + +#: ../../extend/addon/hzaddons/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "На этот раз начинаю я..." + +#: ../../extend/addon/hzaddons/tictac/tictac.php:194 +msgid "You won!" +msgstr "Вы выиграли!" + +#: ../../extend/addon/hzaddons/tictac/tictac.php:200 +#: ../../extend/addon/hzaddons/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "Ничья!" + +#: ../../extend/addon/hzaddons/tictac/tictac.php:223 +msgid "I won!" +msgstr "Я выиграл!" + +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:148 +msgid "Fuzzloc Settings updated." +msgstr "Настройки Fuzzloc обновлены." + +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:175 +msgid "" +"Fuzzloc allows you to blur your precise location if your channel uses " +"browser location mapping." +msgstr "Fuzzloc позволяет размыть ваше точное местоположение, если ваш канал использует сопоставление местоположений браузера." + +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:178 +msgid "Enable Fuzzloc Plugin" +msgstr "Включить плагин Fuzzloc" + +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:182 +msgid "Minimum offset in meters" +msgstr "Минимальное смещение в метрах" + +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:186 +msgid "Maximum offset in meters" +msgstr "Максимальное смещение в метрах" + +#: ../../extend/addon/hzaddons/fuzzloc/fuzzloc.php:191 +msgid "Fuzzloc Settings" +msgstr "Настройки Fuzzloc" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "Опубликовать в Friendica" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "Настройки rtof сохранены." + +#: ../../extend/addon/hzaddons/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "Разрешить публиковать в Friendica" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "Отправлять общедоступные публикации во Friendica по умолчанию" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "Путь к Friendica API" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:89 +#: ../../extend/addon/hzaddons/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "Имя входа Friendica" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "Пароль Friendica" + +#: ../../extend/addon/hzaddons/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "Настройки публикаций Hubzilla для Friendica" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "Опубликовать в GNU Social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Пожалуйста свяжитесь с администратором сайта.
Предоставленный URL API недействителен." + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "Нам не удалось установить контакт с GNU Social API по введённому вами пути" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "Настройки GNU Social обновлены." + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "Глобально доступные ключи OAuthKeys GNU Social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)." + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "Предоставьте ваши собственные регистрационные данные OAuth" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as " +"an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API.
Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social." + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "Ключ клиента OAuth" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "Пароль клиента OAuth" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "Основной путь к API" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "Запомнить закрывающий /" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "Имя приложения GNU social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social." + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "Войти с GNU social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "Скопируйте код безопасности GNU social здесь" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "Отменить процесс подключения" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "Текущий GNU social API" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "Отменить подключение с GNU social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен." + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "Разрешить публиковать в GNU social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "Публиковать в GNU social по умолчанию" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "Настройки публикаций GNU social" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:891 +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Site name" +msgstr "Название сайта" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "" + +#: ../../extend/addon/hzaddons/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "Название приложения" + +#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "Включить Rainbowtag" + +#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "Настройки Rainbowtag" + +#: ../../extend/addon/hzaddons/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "Настройки Rainbowtag сохранены." + +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:92 +msgid "Friendica Photo Album Import" +msgstr "Импортировать альбом фотографий Friendica" + +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:93 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал." + +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:94 +msgid "Friendica Server base URL" +msgstr "Базовый URL сервера Friendica" + +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:95 +msgid "Friendica Login Username" +msgstr "Имя пользователя для входа Friendica" + +#: ../../extend/addon/hzaddons/frphotos/frphotos.php:96 +msgid "Friendica Login Password" +msgstr "Пароль для входа Firendica" + +#: ../../extend/addon/hzaddons/piwik/piwik.php:85 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Этот сайт отслеживается с помощью инструментов аналитики Piwik." + +#: ../../extend/addon/hzaddons/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can " +"set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта." + +#: ../../extend/addon/hzaddons/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "Базовый URL Piwik" + +#: ../../extend/addon/hzaddons/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)" + +#: ../../extend/addon/hzaddons/piwik/piwik.php:97 +msgid "Site ID" +msgstr "ID сайта" + +#: ../../extend/addon/hzaddons/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "Показывать ссылку на отказ от использования cookies?" + +#: ../../extend/addon/hzaddons/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "Асинхронное отслеживание" + +#: ../../extend/addon/hzaddons/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "Включить отслеживание ошибок JavaScript на фронтенде." + +#: ../../extend/addon/hzaddons/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "Эта функция требует версию Piwik >= 2.2.0" + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "Фотографии импортированы" + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "Импортировать альбом фотографий Redmatrix" + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал." + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "Импортировать только этот альбом" + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "Оставьте пустым для импорта всех альбомов" + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "Максимальное количество для импорта" + +#: ../../extend/addon/hzaddons/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "0 или пусто для импорта всех доступных" + +#: ../../extend/addon/hzaddons/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Искать %1$s (%2$s)" + +#: ../../extend/addon/hzaddons/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "" + +#: ../../extend/addon/hzaddons/opensearch/opensearch.php:42 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../Zotlabs/Module/Home.php:74 +#: ../../Zotlabs/Module/Home.php:82 +msgid "$Projectname" +msgstr "" + +#: ../../extend/addon/hzaddons/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "Поиск $Projectname" + +#: ../../extend/addon/hzaddons/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "Последние просмотры канала / профиля" + +#: ../../extend/addon/hzaddons/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "Это расширение не было настроено." + +#: ../../extend/addon/hzaddons/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" +msgstr "Пожалуйста, посетите настройки Visage на %s" + +#: ../../extend/addon/hzaddons/visage/visage.php:99 +msgid "your feature settings page" +msgstr "страница ваших установочных параметров" + +#: ../../extend/addon/hzaddons/visage/visage.php:112 +msgid "No entries." +msgstr "Нет записей." + +#: ../../extend/addon/hzaddons/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "Включить журналирование посетителей Visage" + +#: ../../extend/addon/hzaddons/visage/visage.php:170 +msgid "Visage Settings" +msgstr "Настройки Visage" + +#: ../../extend/addon/hzaddons/cart/manual_payments.php:7 +msgid "Error: order mismatch. Please try again." +msgstr "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз" + +#: ../../extend/addon/hzaddons/cart/manual_payments.php:30 +msgid "Manual payments are not enabled." +msgstr "Ручные платежи не подключены." + +#: ../../extend/addon/hzaddons/cart/manual_payments.php:37 +#: ../../extend/addon/hzaddons/cart/cart.php:1447 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:417 +msgid "Order not found." +msgstr "Заказ не найден." + +#: ../../extend/addon/hzaddons/cart/manual_payments.php:46 +msgid "Finished" +msgstr "Завершено" + +#: ../../extend/addon/hzaddons/cart/manual_payments.php:62 +#: ../../extend/addon/hzaddons/cart/cart.php:1425 +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:481 +#: ../../extend/addon/hzaddons/cart/myshop.php:51 +#: ../../Zotlabs/Module/Wiki.php:68 +msgid "Invalid channel" +msgstr "Недействительный канал" + +#: ../../extend/addon/hzaddons/cart/cart.php:467 +msgid "[cart] Item Added" +msgstr "[cart] Элемент добавлен" + +#: ../../extend/addon/hzaddons/cart/cart.php:851 +msgid "Order already checked out." +msgstr "Заказ уже проверен." + +#: ../../extend/addon/hzaddons/cart/cart.php:1204 +msgid "Enable Shopping Cart" +msgstr "Включить корзину" + +#: ../../extend/addon/hzaddons/cart/cart.php:1211 +msgid "Enable Test Catalog" +msgstr "Включить тестовый каталог" + +#: ../../extend/addon/hzaddons/cart/cart.php:1219 +msgid "Enable Manual Payments" +msgstr "Включить ручные платежи" + +#: ../../extend/addon/hzaddons/cart/cart.php:1238 +msgid "Base Merchant Currency" +msgstr "Основная торговая валюта" + +#: ../../extend/addon/hzaddons/cart/cart.php:1250 +msgid "Cart - Base Settings" +msgstr "Корзина - Основные настройки" + +#: ../../extend/addon/hzaddons/cart/cart.php:1275 +#: ../../extend/addon/hzaddons/cart/cart.php:1278 +msgid "Shop" +msgstr "Магазин" + +#: ../../extend/addon/hzaddons/cart/cart.php:1298 +#: ../../Zotlabs/Module/Wiki.php:30 +msgid "Profile Unavailable." +msgstr "Профиль недоступен." + +#: ../../extend/addon/hzaddons/cart/cart.php:1329 +#: ../../extend/addon/hzaddons/cart/myshop.php:125 +msgid "Order Not Found" +msgstr "Заказ не найден" + +#: ../../extend/addon/hzaddons/cart/cart.php:1406 +msgid "You must be logged into the Grid to shop." +msgstr "Вы должны быть в сети для доступа к магазину" + +#: ../../extend/addon/hzaddons/cart/cart.php:1416 +msgid "Cart Not Enabled (profile: " +msgstr "Корзина не подключена (профиль:" + +#: ../../extend/addon/hzaddons/cart/cart.php:1456 +msgid "Access denied." +msgstr "Доступ запрещён." + +#: ../../extend/addon/hzaddons/cart/cart.php:1508 +#: ../../extend/addon/hzaddons/cart/cart.php:1652 +msgid "No Order Found" +msgstr "Нет найденных заказов" + +#: ../../extend/addon/hzaddons/cart/cart.php:1517 +msgid "An unknown error has occurred Please start again." +msgstr "Произошла неизвестная ошибка. Пожалуйста, начните снова." + +#: ../../extend/addon/hzaddons/cart/cart.php:1685 +msgid "Invalid Payment Type. Please start again." +msgstr "Недействительный тип платежа. Пожалуйста, начните снова." + +#: ../../extend/addon/hzaddons/cart/cart.php:1692 +msgid "Order not found" +msgstr "Заказ не найден" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:71 +msgid "Enable Hubzilla Services Module" +msgstr "Включить модуль сервиса Hubzilla" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:77 +msgid "Cart - Hubzilla Services Addon" +msgstr "Корзина - плагин сервиса Hubzilla" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:169 +msgid "New Sku" +msgstr "Новый код" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:204 +msgid "Cannot save edits to locked item." +msgstr "Невозможно сохранить изменения заблокированной позиции." + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:252 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:339 +msgid "SKU not found." +msgstr "Код не найден." + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:305 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:309 +msgid "Invalid Activation Directive." +msgstr "Недействительная директива активации." + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:380 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:384 +msgid "Invalid Deactivation Directive." +msgstr "Недействительная директива деактивации" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:570 +msgid "Add to this privacy group" +msgstr "Добавить в эту группу безопасности" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:586 +msgid "Set user service class" +msgstr "Установить класс обслуживания пользователя" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:613 +msgid "You must be using a local account to purchase this service." +msgstr "Вы должны использовать локальную учётноую запись для покупки этого сервиса." + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:651 +msgid "Changes Locked" +msgstr "Изменения заблокированы" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:655 +msgid "Item available for purchase." +msgstr "Позиция доступна для приобретения." + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:662 +msgid "Price" +msgstr "Цена" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:665 +msgid "Add buyer to privacy group" +msgstr "Добавить покупателя в группу безопасности" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:670 +msgid "Add buyer as connection" +msgstr "Добавить покупателя как контакт" + +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:677 +#: ../../extend/addon/hzaddons/cart/submodules/hzservices.php:718 +msgid "Set Service Class" +msgstr "Установить класс обслуживания" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:97 +msgid "Enable Paypal Button Module" +msgstr "Включить модуль кнопки Paypal" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:102 +msgid "Use Production Key" +msgstr "Использовать ключ Production" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:109 +msgid "Paypal Sandbox Client Key" +msgstr "Ключ клиента Paypal Sandbox" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:116 +msgid "Paypal Sandbox Secret Key" +msgstr "Секретный ключ Paypal Sandbox" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:122 +msgid "Paypal Production Client Key" +msgstr "Ключ клиента Paypal Production" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:129 +msgid "Paypal Production Secret Key" +msgstr "Секретный ключ Paypal Production" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:143 +msgid "Cart - Paypal Addon" +msgstr "Корзина - Paypal плагин" + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:277 +msgid "Paypal button payments are not enabled." +msgstr "Кнопка Paypal для платежей не включена." + +#: ../../extend/addon/hzaddons/cart/submodules/paypalbutton.php:295 +msgid "" +"Paypal button payments are not properly configured. Please choose another " +"payment option." +msgstr "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты." + +#: ../../extend/addon/hzaddons/cart/myshop.php:44 +msgid "Access Denied." +msgstr "Доступ запрещён." + +#: ../../extend/addon/hzaddons/cart/myshop.php:155 +#: ../../extend/addon/hzaddons/cart/myshop.php:191 +#: ../../extend/addon/hzaddons/cart/myshop.php:225 +#: ../../extend/addon/hzaddons/cart/myshop.php:273 +#: ../../extend/addon/hzaddons/cart/myshop.php:308 +#: ../../extend/addon/hzaddons/cart/myshop.php:331 +msgid "Access Denied" +msgstr "Доступ запрещён" + +#: ../../extend/addon/hzaddons/cart/myshop.php:200 +#: ../../extend/addon/hzaddons/cart/myshop.php:234 +#: ../../extend/addon/hzaddons/cart/myshop.php:283 +#: ../../extend/addon/hzaddons/cart/myshop.php:341 +msgid "Invalid Item" +msgstr "Недействительный элемент" + +#: ../../extend/addon/hzaddons/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "Настройки Nsabait обновлены" + +#: ../../extend/addon/hzaddons/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "Включить плагин NSAbait" + +#: ../../extend/addon/hzaddons/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "Настройки Nsabait" + +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "Импорт файлового хранилища Hubzilla" + +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "Это позволит импортировать все ваши файлы с другого сервера." + +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "Базовый URL сервера Hubzilla" + +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "Начиная с даты изменений yyyy-mm-dd" + +#: ../../extend/addon/hzaddons/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "Заканчивая датой изменений yyyy-mm-dd" + +#: ../../extend/addon/hzaddons/nofed/nofed.php:42 +msgid "Federate" +msgstr "" + +#: ../../extend/addon/hzaddons/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "Настройки nofed сохранены." + +#: ../../extend/addon/hzaddons/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "Разрешить переключение федерации" + +#: ../../extend/addon/hzaddons/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "Разрешить федерацию публикаций по умолчанию" + +#: ../../extend/addon/hzaddons/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "Настройки NoFed" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "Стандартное изображение профиля" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "Случайный геометрический рисунок" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "Лицо чудовища" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "Сгенерированное компьютером лицо" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "Лицо в стиле старой аркадной игры" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "Фотография профиля по умолчанию" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:143 +msgid "Information" +msgstr "Информация" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar." + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "Изображение аватара по умолчанию" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)." + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "Оценки изображений" + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Выберите подходящую оценку аватара для вашего сайта (см. README)." + +#: ../../extend/addon/hzaddons/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "Настройки Gravatar обновлены." + +#: ../../extend/addon/hzaddons/redred/redred.php:45 +msgid "Post to Red" +msgstr "Опубликовать в Red" + +#: ../../extend/addon/hzaddons/redred/redred.php:60 +msgid "Channel is required." +msgstr "Необходим канал." + +#: ../../extend/addon/hzaddons/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:304 +msgid "Invalid channel." +msgstr "Недействительный канал." + +#: ../../extend/addon/hzaddons/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "Настройки RedRed сохранены." + +#: ../../extend/addon/hzaddons/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "Разрешить публиковать в другой канал Hubzilla" + +#: ../../extend/addon/hzaddons/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "Отправлять общедоступные публикации в канал Hubzilla по умолчанию" + +#: ../../extend/addon/hzaddons/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "Путь к Hubzilla API" + +#: ../../extend/addon/hzaddons/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "Имя входа Hubzilla" + +#: ../../extend/addon/hzaddons/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "Название канала Hubzilla" + +#: ../../extend/addon/hzaddons/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "Настройки перекрёстных публикаций Hubzilla" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:48 +msgid "" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Гитарные аккорды" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "Полный онлайн словарь аккордов" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Настройка" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Наименование аккорда - example: Em7" + +#: ../../extend/addon/hzaddons/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Показывать струны для левшей" + +#: ../../extend/addon/hzaddons/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Быстрая ссылка" + +#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "Новая регистрация" + +#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:40 +#: ../../Zotlabs/Module/Invite.php:82 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Доставка сообщения не удалась." + +#: ../../extend/addon/hzaddons/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "Сообщение отправлено в %s. Регистрация нового аккаунта: %s" + +#: ../../extend/addon/hzaddons/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "Каналы для автоматического подключения" + +#: ../../extend/addon/hzaddons/irc/irc.php:45 +#: ../../extend/addon/hzaddons/irc/irc.php:49 +msgid "Comma separated list" +msgstr "Список, разделённый запятыми" + +#: ../../extend/addon/hzaddons/irc/irc.php:49 +#: ../../extend/addon/hzaddons/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Популярные каналы" + +#: ../../extend/addon/hzaddons/irc/irc.php:53 +msgid "IRC Settings" +msgstr "Настройки IRC" + +#: ../../extend/addon/hzaddons/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Настройки IRC сохранены" + +#: ../../extend/addon/hzaddons/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "Чат IRC" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "дать леща" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "получил леща" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:20 +msgid "shag" +msgstr "вздрючить" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "вздрюченный" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:21 +msgid "patent" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:21 +msgid "patented" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:22 +msgid "hug" +msgstr "обнять" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "обнятый" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:23 +msgid "murder" +msgstr "убить" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "убитый" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:24 +msgid "worship" +msgstr "почитать" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "почитаемый" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "целовать" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "поцелованный" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "искушать" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "искушённый" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "поднять брови" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "поднял брови" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:28 +msgid "insult" +msgstr "оскорбить" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "оскорблённый" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:29 +msgid "praise" +msgstr "хвалить" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:29 +msgid "praised" +msgstr "похваленный" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "усомниться" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "усомнился" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:31 +msgid "eat" +msgstr "есть" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:31 +msgid "ate" +msgstr "съел" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "сомневаться" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "сомневался" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "трахнуть" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "трахнул" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "признаться в любви к" + +#: ../../extend/addon/hzaddons/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "признался в любви к" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "Опубликовать в WordPress" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "Включить плагин публикаций WordPress" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "Имя пользователя WordPress" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "Пароль WordPress" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "URL API WordPress" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "Обычно https://your-blog.tld/xmlrpc.php" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "Публиковать в WordPress по умолчанию" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "Пересылать комментарии (требуется плагин hubzilla_wp)" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "Настройки публикации в WordPress" + +#: ../../extend/addon/hzaddons/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "Настройки WordPress сохранены." + +#: ../../extend/addon/hzaddons/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "Кому я нравлюсь?" + +#: ../../extend/addon/hzaddons/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Ваш аккаунт на %s перестанет работать через несколько дней." + +#: ../../extend/addon/hzaddons/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "Ваш тестовый аккаунт в $Productname близок к окончанию срока действия." + +#: ../../boot.php:1595 +msgid "Create an account to access services and applications" +msgstr "Создайте аккаунт для доступа к службам и приложениям" + +#: ../../boot.php:1596 ../../include/nav.php:158 +#: ../../Zotlabs/Module/Register.php:294 +msgid "Register" +msgstr "Регистрация" + +#: ../../boot.php:1615 ../../include/nav.php:105 ../../include/nav.php:134 +#: ../../include/nav.php:153 +msgid "Logout" +msgstr "Выход" + +#: ../../boot.php:1616 ../../include/nav.php:120 ../../include/nav.php:124 +#: ../../Zotlabs/Lib/Apps.php:305 +msgid "Login" +msgstr "Войти" + +#: ../../boot.php:1617 ../../include/channel.php:2334 +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Удаленная аутентификация" + +#: ../../boot.php:1619 +msgid "Login/Email" +msgstr "Пользователь / email" + +#: ../../boot.php:1620 +msgid "Password" +msgstr "Пароль" + +#: ../../boot.php:1621 +msgid "Remember me" +msgstr "Запомнить меня" + +#: ../../boot.php:1624 +msgid "Forgot your password?" +msgstr "Забыли пароль или логин?" + +#: ../../boot.php:1625 ../../Zotlabs/Module/Lostpass.php:91 +msgid "Password Reset" +msgstr "Сбросить пароль" + +#: ../../boot.php:2408 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "[$Projectname] Ошибка SSL/TLS веб-сайта для %s" + +#: ../../boot.php:2413 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "SSL/TLS сертификат веб-сайт недействителен. Исправьте это." + +#: ../../boot.php:2529 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "[$Projectname] Задания Cron не запущены на %s" + +#: ../../boot.php:2534 +msgid "Cron/Scheduled tasks not running." +msgstr "Задания Cron / планировщика не запущены." + +#: ../../boot.php:2535 ../../include/datetime.php:238 +msgid "never" +msgstr "никогда" + +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3078 +#: ../../Zotlabs/Module/Admin/Site.php:198 +msgid "Default" +msgstr "По умолчанию" + +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Фокус (по умолчанию Hubzilla)" + +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Настройки темы" + +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Узкая панель навигации" + +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Панель навигации, цвет фона" + +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Панель навигации, цвет значков" + +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Панель навигации, цвет активного значка" + +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "цвет ссылок" + +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Цвет текста в шапке" + +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Цвет фона" + +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Фоновое изображение" + +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "Цвет фона элементов" + +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Цвет фона комментариев" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Установить системный размер шрифта" + +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "Например: 1rem, 100%, 16px" + +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Цвет шрифта для постов и комментариев" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Радиус скруглений" + +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "Например: 4px" + +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Глубина теней фотографий" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Максимальная ширина содержания региона (в пикселях)" + +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Оставьте пустым для ширины по умолчанию" + +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Размер фотографии автора беседы" + +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Размер фотографий подписчиков" + +#: ../../include/bbcode.php:200 ../../include/bbcode.php:1202 +#: ../../include/bbcode.php:1205 ../../include/bbcode.php:1210 +#: ../../include/bbcode.php:1213 ../../include/bbcode.php:1216 +#: ../../include/bbcode.php:1219 ../../include/bbcode.php:1224 +#: ../../include/bbcode.php:1227 ../../include/bbcode.php:1232 +#: ../../include/bbcode.php:1235 ../../include/bbcode.php:1238 +#: ../../include/bbcode.php:1241 +msgid "Image/photo" +msgstr "Изображение / фотография" + +#: ../../include/bbcode.php:239 ../../include/bbcode.php:1252 +msgid "Encrypted content" +msgstr "Зашифрованное содержание" + +#: ../../include/bbcode.php:255 +#, php-format +msgid "Install %1$s element %2$s" +msgstr "Установить %1$s элемент %2$s" + +#: ../../include/bbcode.php:259 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Эта публикация содержит устанавливаемый %s элемент, однако у вас нет разрешений для его установки на этом сайте." + +#: ../../include/bbcode.php:269 ../../Zotlabs/Module/Impel.php:43 +msgid "webpage" +msgstr "веб-страница" + +#: ../../include/bbcode.php:272 ../../Zotlabs/Module/Impel.php:53 +msgid "layout" +msgstr "шаблон" + +#: ../../include/bbcode.php:275 ../../Zotlabs/Module/Impel.php:48 +msgid "block" +msgstr "заблокировать" + +#: ../../include/bbcode.php:278 ../../Zotlabs/Module/Impel.php:60 +msgid "menu" +msgstr "меню" + +#: ../../include/bbcode.php:350 +msgid "card" +msgstr "карточка" + +#: ../../include/bbcode.php:352 +msgid "article" +msgstr "статья" + +#: ../../include/bbcode.php:354 ../../include/markdown.php:160 +#: ../../Zotlabs/Module/Tagger.php:77 +msgid "post" +msgstr "публикация" + +#: ../../include/bbcode.php:358 ../../include/markdown.php:158 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s была создана %2$s %3$s" + +#: ../../include/bbcode.php:435 ../../include/bbcode.php:443 +msgid "Click to open/close" +msgstr "Нажмите, чтобы открыть/закрыть" + +#: ../../include/bbcode.php:443 +msgid "spoiler" +msgstr "спойлер" + +#: ../../include/bbcode.php:456 +msgid "View article" +msgstr "Просмотр статьи" + +#: ../../include/bbcode.php:456 +msgid "View summary" +msgstr "Просмотр резюме" + +#: ../../include/bbcode.php:746 ../../include/bbcode.php:916 +#: ../../Zotlabs/Lib/NativeWikiPage.php:597 +msgid "Different viewers will see this text differently" +msgstr "Различные зрители увидят этот текст по-разному" + +#: ../../include/bbcode.php:1190 +msgid "$1 wrote:" +msgstr "$1 писал:" + +#: ../../include/account.php:36 +msgid "Not a valid email address" +msgstr "Недействительный адрес электронной почты" + +#: ../../include/account.php:38 msgid "Your email domain is not among those allowed on this site" msgstr "Домен электронной почты не входит в число тех, которые разрешены на этом сайте" -#: ../../include/account.php:31 +#: ../../include/account.php:44 msgid "Your email address is already registered at this site." msgstr "Ваш адрес электронной почты уже зарегистрирован на этом сайте." -#: ../../include/account.php:64 +#: ../../include/account.php:76 msgid "An invitation is required." msgstr "Требуется приглашение." -#: ../../include/account.php:68 +#: ../../include/account.php:80 msgid "Invitation could not be verified." msgstr "Не удалось проверить приглашение." -#: ../../include/account.php:119 +#: ../../include/account.php:158 msgid "Please enter the required information." msgstr "Пожалуйста, введите необходимую информацию." -#: ../../include/account.php:187 +#: ../../include/account.php:225 msgid "Failed to store account information." msgstr "Не удалось сохранить информацию аккаунта." -#: ../../include/account.php:273 +#: ../../include/account.php:314 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Подтверждение регистрации для %s" + +#: ../../include/account.php:385 #, php-format msgid "Registration request at %s" -msgstr "Требуется регистрация на %s" +msgstr "Запрос регистрации на %s" -#: ../../include/account.php:275 ../../include/account.php:302 -#: ../../include/account.php:359 -msgid "Administrator" -msgstr "Администратор" - -#: ../../include/account.php:297 +#: ../../include/account.php:407 msgid "your registration password" -msgstr "Ваш пароль регистрации" +msgstr "ваш пароль регистрации" -#: ../../include/account.php:300 ../../include/account.php:357 +#: ../../include/account.php:413 ../../include/account.php:475 #, php-format msgid "Registration details for %s" msgstr "Регистрационные данные для %s" -#: ../../include/account.php:366 +#: ../../include/account.php:486 msgid "Account approved." msgstr "Аккаунт утвержден." -#: ../../include/account.php:400 +#: ../../include/account.php:526 #, php-format msgid "Registration revoked for %s" msgstr "Регистрация отозвана для %s" -#: ../../include/photos.php:15 ../../include/attach.php:119 -#: ../../include/attach.php:166 ../../include/attach.php:229 -#: ../../include/attach.php:243 ../../include/attach.php:283 -#: ../../include/attach.php:297 ../../include/attach.php:322 -#: ../../include/attach.php:513 ../../include/attach.php:585 -#: ../../include/chat.php:116 ../../include/items.php:3680 -#: ../../mod/mood.php:112 ../../mod/mitem.php:73 ../../mod/achievements.php:27 -#: ../../mod/settings.php:492 ../../mod/poke.php:128 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/authtest.php:13 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/block.php:22 ../../mod/block.php:72 -#: ../../mod/profile_photo.php:263 ../../mod/profile_photo.php:276 -#: ../../mod/blocks.php:29 ../../mod/blocks.php:44 ../../mod/profiles.php:152 -#: ../../mod/profiles.php:462 ../../mod/bookmarks.php:46 -#: ../../mod/channel.php:89 ../../mod/channel.php:193 -#: ../../mod/channel.php:236 ../../mod/chat.php:90 ../../mod/chat.php:95 -#: ../../mod/register.php:68 ../../mod/regmod.php:18 ../../mod/common.php:35 -#: ../../mod/network.php:12 ../../mod/connections.php:169 -#: ../../mod/connedit.php:221 ../../mod/delegate.php:6 ../../mod/page.php:30 -#: ../../mod/page.php:80 ../../mod/setup.php:203 ../../mod/editblock.php:34 -#: ../../mod/pdledit.php:21 ../../mod/editlayout.php:48 -#: ../../mod/editpost.php:13 ../../mod/editwebpage.php:44 -#: ../../mod/editwebpage.php:83 ../../mod/photos.php:68 -#: ../../mod/photos.php:526 ../../mod/sources.php:66 ../../mod/events.php:141 -#: ../../mod/filestorage.php:10 ../../mod/filestorage.php:59 -#: ../../mod/filestorage.php:75 ../../mod/filestorage.php:98 -#: ../../mod/fsuggest.php:78 ../../mod/suggest.php:26 ../../mod/group.php:9 -#: ../../mod/thing.php:249 ../../mod/thing.php:266 ../../mod/thing.php:301 -#: ../../mod/invite.php:13 ../../mod/invite.php:104 ../../mod/item.php:179 -#: ../../mod/item.php:187 ../../mod/item.php:898 ../../mod/layouts.php:27 -#: ../../mod/layouts.php:39 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/viewsrc.php:12 -#: ../../mod/mail.php:108 ../../mod/manage.php:6 ../../mod/menu.php:44 -#: ../../mod/webpages.php:40 ../../mod/message.php:16 -#: ../../mod/new_channel.php:66 ../../mod/new_channel.php:97 -#: ../../mod/notifications.php:66 ../../mod/appman.php:66 ../../index.php:186 -#: ../../index.php:361 -msgid "Permission denied." -msgstr "Доступ запрещен." +#: ../../include/account.php:805 ../../include/account.php:807 +msgid "Click here to upgrade." +msgstr "Нажмите здесь для обновления." -#: ../../include/photos.php:89 +#: ../../include/account.php:813 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Это действие превышает ограничения, установленные в вашем плане." + +#: ../../include/account.php:818 +msgid "This action is not available under your subscription plan." +msgstr "Это действие невозможно из-за ограничений в вашем плане." + +#: ../../include/auth.php:192 +msgid "Delegation session ended." +msgstr "Делегированная сессия завершена." + +#: ../../include/auth.php:196 +msgid "Logged out." +msgstr "Вышел из системы." + +#: ../../include/auth.php:291 +msgid "Email validation is incomplete. Please check your email." +msgstr "Проверка email не завершена. Пожалуйста, проверьте вашу почту." + +#: ../../include/auth.php:307 +msgid "Failed authentication" +msgstr "Ошибка аутентификации" + +#: ../../include/conversation.php:119 ../../include/event.php:1153 +#: ../../include/text.php:2025 ../../Zotlabs/Module/Events.php:260 +#: ../../Zotlabs/Module/Tagger.php:73 ../../Zotlabs/Module/Like.php:386 +msgid "event" +msgstr "событие" + +#: ../../include/conversation.php:122 ../../Zotlabs/Module/Like.php:121 +msgid "channel" +msgstr "канал" + +#: ../../include/conversation.php:146 ../../include/text.php:2030 +#: ../../Zotlabs/Module/Tagger.php:79 +msgid "comment" +msgstr "комментарий" + +#: ../../include/conversation.php:169 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" +msgid "likes %1$s's %2$s" +msgstr "Нравится %1$s %2$s" -#: ../../include/photos.php:96 -msgid "Image file is empty." -msgstr "файл пуст." +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "Не нравится %1$s %2$s" -#: ../../include/photos.php:123 ../../mod/profile_photo.php:216 -msgid "Unable to process image" -msgstr "Не удается обработать изображение" +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s теперь в контакте с %2$s" -#: ../../include/photos.php:186 -msgid "Photo storage failed." -msgstr "Ошибка в банке фотографий" +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ткнул %2$s" -#: ../../include/photos.php:317 ../../mod/photos.php:691 -#: ../../mod/photos.php:1193 -msgid "Upload New Photos" -msgstr "Загрузить новые фотографии" +#: ../../include/conversation.php:251 ../../include/text.php:1140 +#: ../../include/text.php:1144 +msgid "poked" +msgstr "ткнут" -#: ../../include/acl_selectors.php:240 -msgid "Visible to everybody" -msgstr "Видно всем" +#: ../../include/conversation.php:268 ../../Zotlabs/Module/Mood.php:67 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s в %2$s" -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Показывать" +#: ../../include/conversation.php:483 ../../Zotlabs/Lib/ThreadItem.php:431 +msgid "This is an unsaved preview" +msgstr "Это несохранённый просмотр" -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Не показывать" +#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1142 +msgctxt "title" +msgid "Likes" +msgstr "Нравится" -#: ../../include/acl_selectors.php:248 ../../mod/chat.php:209 -#: ../../mod/photos.php:604 ../../mod/photos.php:952 -#: ../../mod/filestorage.php:128 -msgid "Permissions" -msgstr "Разрешения" +#: ../../include/conversation.php:619 ../../Zotlabs/Module/Photos.php:1142 +msgctxt "title" +msgid "Dislikes" +msgstr "Не нравится" -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:289 -msgid "Close" -msgstr "Закрыть" +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1143 +msgctxt "title" +msgid "Agree" +msgstr "Согласен" -#: ../../include/activities.php:39 -msgid " and " +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1143 +msgctxt "title" +msgid "Disagree" +msgstr "Не согласен" + +#: ../../include/conversation.php:620 ../../Zotlabs/Module/Photos.php:1143 +msgctxt "title" +msgid "Abstain" +msgstr "Воздержался" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1144 +msgctxt "title" +msgid "Attending" +msgstr "Посещаю" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1144 +msgctxt "title" +msgid "Not attending" +msgstr "Не посещаю" + +#: ../../include/conversation.php:621 ../../Zotlabs/Module/Photos.php:1144 +msgctxt "title" +msgid "Might attend" +msgstr "Возможно посещу" + +#: ../../include/conversation.php:690 ../../Zotlabs/Lib/ThreadItem.php:158 +msgid "Select" +msgstr "Выбрать" + +#: ../../include/conversation.php:691 ../../include/conversation.php:736 +#: ../../Zotlabs/Lib/ThreadItem.php:148 ../../Zotlabs/Lib/Apps.php:500 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Photos.php:1208 +#: ../../Zotlabs/Module/Connections.php:289 +#: ../../Zotlabs/Module/Card_edit.php:129 +#: ../../Zotlabs/Module/Editblock.php:139 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Profs.php:176 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Settings/Oauth2.php:151 +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +#: ../../Zotlabs/Module/Article_edit.php:129 +#: ../../Zotlabs/Module/Profiles.php:800 ../../Zotlabs/Module/Thing.php:267 +#: ../../Zotlabs/Storage/Browser.php:291 +msgid "Delete" +msgstr "Удалить" + +#: ../../include/conversation.php:695 ../../Zotlabs/Lib/ThreadItem.php:247 +msgid "Toggle Star Status" +msgstr "Переключить статус пометки" + +#: ../../include/conversation.php:700 ../../Zotlabs/Lib/ThreadItem.php:97 +msgid "Private Message" +msgstr "Личное сообщение" + +#: ../../include/conversation.php:707 ../../Zotlabs/Lib/ThreadItem.php:258 +msgid "Message signature validated" +msgstr "Подпись сообщения проверена" + +#: ../../include/conversation.php:708 ../../Zotlabs/Lib/ThreadItem.php:259 +msgid "Message signature incorrect" +msgstr "Подпись сообщения неверная" + +#: ../../include/conversation.php:735 ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Approve" +msgstr "Утвердить" + +#: ../../include/conversation.php:739 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Просмотреть профиль %s @ %s" + +#: ../../include/conversation.php:759 +msgid "Categories:" +msgstr "Категории:" + +#: ../../include/conversation.php:760 +msgid "Filed under:" +msgstr "Хранить под:" + +#: ../../include/conversation.php:766 ../../Zotlabs/Lib/ThreadItem.php:367 +#, php-format +msgid "from %s" +msgstr "от %s" + +#: ../../include/conversation.php:769 ../../Zotlabs/Lib/ThreadItem.php:370 +#, php-format +msgid "last edited: %s" +msgstr "последнее редактирование: %s" + +#: ../../include/conversation.php:770 ../../Zotlabs/Lib/ThreadItem.php:371 +#, php-format +msgid "Expires: %s" +msgstr "Срок действия: %s" + +#: ../../include/conversation.php:785 +msgid "View in context" +msgstr "Показать в контексте" + +#: ../../include/conversation.php:787 ../../Zotlabs/Lib/ThreadItem.php:432 +#: ../../Zotlabs/Module/Photos.php:1108 +msgid "Please wait" +msgstr "Подождите пожалуйста" + +#: ../../include/conversation.php:886 +msgid "remove" +msgstr "удалить" + +#: ../../include/conversation.php:890 +msgid "Loading..." +msgstr "Загрузка..." + +#: ../../include/conversation.php:891 +msgid "Delete Selected Items" +msgstr "Удалить выбранные элементы" + +#: ../../include/conversation.php:934 +msgid "View Source" +msgstr "Просмотреть источник" + +#: ../../include/conversation.php:944 +msgid "Follow Thread" +msgstr "Следить за темой" + +#: ../../include/conversation.php:953 +msgid "Unfollow Thread" +msgstr "Прекратить отслеживать тему" + +#: ../../include/conversation.php:1047 ../../Zotlabs/Module/Connedit.php:615 +msgid "Recent Activity" +msgstr "Последние действия" + +#: ../../include/conversation.php:1057 ../../include/channel.php:1376 +#: ../../include/connections.php:110 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Module/Directory.php:338 +msgid "Connect" +msgstr "Подключить" + +#: ../../include/conversation.php:1067 +msgid "Edit Connection" +msgstr "Редактировать контакт" + +#: ../../include/conversation.php:1077 +msgid "Message" +msgstr "Сообщение" + +#: ../../include/conversation.php:1087 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../Zotlabs/Module/Ratings.php:97 +msgid "Ratings" +msgstr "Оценки" + +#: ../../include/conversation.php:1097 ../../Zotlabs/Lib/Apps.php:320 +#: ../../Zotlabs/Module/Poke.php:182 +msgid "Poke" +msgstr "Ткнуть" + +#: ../../include/conversation.php:1211 +#, php-format +msgid "%s likes this." +msgstr "%s нравится это." + +#: ../../include/conversation.php:1211 +#, php-format +msgid "%s doesn't like this." +msgstr "%s не нравится это." + +#: ../../include/conversation.php:1215 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d человеку это нравится." +msgstr[1] "%2$d человекам это нравится." +msgstr[2] "%2$d человекам это нравится." + +#: ../../include/conversation.php:1217 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d человеку это не нравится." +msgstr[1] "%2$d человекам это не нравится." +msgstr[2] "%2$d человекам это не нравится." + +#: ../../include/conversation.php:1223 +msgid "and" msgstr "и" -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "Публичный профиль" - -#: ../../include/activities.php:52 +#: ../../include/conversation.php:1226 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s изменил %2$s на “%3$s”" +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", и ещё %d человеку" +msgstr[1] ", и ещё %d человекам" +msgstr[2] ", и ещё %d человекам" -#: ../../include/activities.php:53 +#: ../../include/conversation.php:1227 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Посетить %1$s's %2$s" +msgid "%s like this." +msgstr "%s нравится это." -#: ../../include/activities.php:56 +#: ../../include/conversation.php:1227 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +msgid "%s don't like this." +msgstr "%s не нравится это." + +#: ../../include/conversation.php:1270 +msgid "Set your location" +msgstr "Задать своё местоположение" + +#: ../../include/conversation.php:1271 +msgid "Clear browser location" +msgstr "Очистить местоположение из браузера" + +#: ../../include/conversation.php:1283 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Article_edit.php:101 +msgid "Insert web link" +msgstr "Вставить веб-ссылку" + +#: ../../include/conversation.php:1287 +msgid "Embed (existing) photo from your photo albums" +msgstr "Встроить (существующее) фото из вашего фотоальбома" + +#: ../../include/conversation.php:1322 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../Zotlabs/Module/Chat.php:205 +msgid "Please enter a link URL:" +msgstr "Пожалуйста введите URL ссылки:" + +#: ../../include/conversation.php:1323 +msgid "Tag term:" +msgstr "Теги:" + +#: ../../include/conversation.php:1324 +msgid "Where are you right now?" +msgstr "Где вы сейчас?" + +#: ../../include/conversation.php:1327 +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:401 ../../Zotlabs/Module/Wiki.php:381 +msgid "Choose images to embed" +msgstr "Выбрать изображения для встраивания" + +#: ../../include/conversation.php:1328 +#: ../../Zotlabs/Module/Profile_photo.php:468 +#: ../../Zotlabs/Module/Cover_photo.php:402 ../../Zotlabs/Module/Wiki.php:382 +msgid "Choose an album" +msgstr "Выбрать альбом" + +#: ../../include/conversation.php:1329 +msgid "Choose a different album..." +msgstr "Выбрать другой альбом..." + +#: ../../include/conversation.php:1330 +#: ../../Zotlabs/Module/Profile_photo.php:470 +#: ../../Zotlabs/Module/Cover_photo.php:404 ../../Zotlabs/Module/Wiki.php:384 +msgid "Error getting album list" +msgstr "Ошибка получения списка альбомов" + +#: ../../include/conversation.php:1331 +#: ../../Zotlabs/Module/Profile_photo.php:471 +#: ../../Zotlabs/Module/Cover_photo.php:405 ../../Zotlabs/Module/Wiki.php:385 +msgid "Error getting photo link" +msgstr "Ошибка получения ссылки на фотографию" + +#: ../../include/conversation.php:1332 +#: ../../Zotlabs/Module/Profile_photo.php:472 +#: ../../Zotlabs/Module/Cover_photo.php:406 ../../Zotlabs/Module/Wiki.php:386 +msgid "Error getting album" +msgstr "Ошибка получения альбома" + +#: ../../include/conversation.php:1333 +msgid "Comments enabled" +msgstr "Комментарии включены" + +#: ../../include/conversation.php:1334 +msgid "Comments disabled" +msgstr "Комментарии отключены" + +#: ../../include/conversation.php:1341 ../../Zotlabs/Lib/ThreadItem.php:767 +#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Module/Events.php:478 +#: ../../Zotlabs/Module/Webpages.php:247 +msgid "Preview" +msgstr "Предварительный просмотр" + +#: ../../include/conversation.php:1374 ../../Zotlabs/Widget/Cdav.php:124 +#: ../../Zotlabs/Module/Photos.php:1107 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Wiki.php:287 +msgid "Share" +msgstr "Поделиться" + +#: ../../include/conversation.php:1383 +msgid "Page link name" +msgstr "Название ссылки на страницу " + +#: ../../include/conversation.php:1386 +msgid "Post as" +msgstr "Опубликовать как" + +#: ../../include/conversation.php:1388 ../../Zotlabs/Lib/ThreadItem.php:758 +msgid "Bold" +msgstr "Жирный" + +#: ../../include/conversation.php:1389 ../../Zotlabs/Lib/ThreadItem.php:759 +msgid "Italic" +msgstr "Курсив" + +#: ../../include/conversation.php:1390 ../../Zotlabs/Lib/ThreadItem.php:760 +msgid "Underline" +msgstr "Подчеркнутый" + +#: ../../include/conversation.php:1391 ../../Zotlabs/Lib/ThreadItem.php:761 +msgid "Quote" +msgstr "Цитата" + +#: ../../include/conversation.php:1392 ../../Zotlabs/Lib/ThreadItem.php:762 +msgid "Code" +msgstr "Код" + +#: ../../include/conversation.php:1393 ../../Zotlabs/Lib/ThreadItem.php:764 +msgid "Attach/Upload file" +msgstr "Прикрепить/загрузить файл" + +#: ../../include/conversation.php:1396 ../../Zotlabs/Module/Wiki.php:378 +msgid "Embed an image from your albums" +msgstr "Встроить изображение из ваших альбомов" + +#: ../../include/conversation.php:1397 ../../include/conversation.php:1446 +#: ../../Zotlabs/Module/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Card_edit.php:131 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Editpost.php:109 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Editwebpage.php:169 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Admin/Addons.php:423 +#: ../../Zotlabs/Module/Cover_photo.php:399 +#: ../../Zotlabs/Module/Settings/Oauth2.php:86 +#: ../../Zotlabs/Module/Settings/Oauth2.php:114 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Article_edit.php:131 +#: ../../Zotlabs/Module/Wiki.php:347 ../../Zotlabs/Module/Wiki.php:379 +#: ../../Zotlabs/Module/Profiles.php:801 +msgid "Cancel" +msgstr "Отменить" + +#: ../../include/conversation.php:1398 ../../include/conversation.php:1445 +#: ../../Zotlabs/Module/Profile_photo.php:466 +#: ../../Zotlabs/Module/Cover_photo.php:400 ../../Zotlabs/Module/Wiki.php:380 +msgid "OK" msgstr "" -#: ../../include/api.php:1016 -msgid "Public Timeline" -msgstr "Публичная шкала времени" +#: ../../include/conversation.php:1400 +msgid "Toggle voting" +msgstr "Подключить голосование" -#: ../../include/attach.php:224 ../../include/attach.php:278 +#: ../../include/conversation.php:1403 +msgid "Disable comments" +msgstr "Отключить комментарии" + +#: ../../include/conversation.php:1404 +msgid "Toggle comments" +msgstr "Переключить комментарии" + +#: ../../include/conversation.php:1409 ../../Zotlabs/Module/Photos.php:703 +#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 +#: ../../Zotlabs/Module/Article_edit.php:117 +msgid "Title (optional)" +msgstr "Заголовок (необязательно)" + +#: ../../include/conversation.php:1412 +msgid "Categories (optional, comma-separated list)" +msgstr "Категории (необязательно, список через запятую)" + +#: ../../include/conversation.php:1413 ../../Zotlabs/Module/Events.php:479 +msgid "Permission settings" +msgstr "Настройки разрешений" + +#: ../../include/conversation.php:1435 +msgid "Other networks and post services" +msgstr "Другие сети и службы публикаций" + +#: ../../include/conversation.php:1438 ../../Zotlabs/Module/Mail.php:292 +#: ../../Zotlabs/Module/Mail.php:434 +msgid "Set expiration date" +msgstr "Установить срок действия" + +#: ../../include/conversation.php:1441 +msgid "Set publish date" +msgstr "Установить дату публикации" + +#: ../../include/conversation.php:1443 ../../Zotlabs/Lib/ThreadItem.php:771 +#: ../../Zotlabs/Module/Mail.php:294 ../../Zotlabs/Module/Mail.php:436 +#: ../../Zotlabs/Module/Chat.php:206 +msgid "Encrypt text" +msgstr "Зашифровать текст" + +#: ../../include/conversation.php:1702 +msgid "Commented Order" +msgstr "По комментариям" + +#: ../../include/conversation.php:1705 +msgid "Sort by Comment Date" +msgstr "Сортировать по дате комментария" + +#: ../../include/conversation.php:1709 +msgid "Posted Order" +msgstr "По публикациям" + +#: ../../include/conversation.php:1712 +msgid "Sort by Post Date" +msgstr "Сортировать по дате публикации" + +#: ../../include/conversation.php:1717 ../../Zotlabs/Module/Profiles.php:733 +msgid "Personal" +msgstr "Личное" + +#: ../../include/conversation.php:1720 +msgid "Posts that mention or involve you" +msgstr "Публикации, где вы были упомянуты или участвовали" + +#: ../../include/conversation.php:1726 ../../Zotlabs/Module/Connections.php:80 +#: ../../Zotlabs/Module/Connections.php:89 +#: ../../Zotlabs/Module/Notifications.php:50 ../../Zotlabs/Module/Menu.php:179 +msgid "New" +msgstr "Новые" + +#: ../../include/conversation.php:1729 +msgid "Activity Stream - by date" +msgstr "Поток активности - по дате" + +#: ../../include/conversation.php:1735 +msgid "Starred" +msgstr "Отмеченые" + +#: ../../include/conversation.php:1738 +msgid "Favourite Posts" +msgstr "Любимые публикации" + +#: ../../include/conversation.php:1745 +msgid "Spam" +msgstr "Спам" + +#: ../../include/conversation.php:1748 +msgid "Posts flagged as SPAM" +msgstr "Публикация помечена как спам" + +#: ../../include/conversation.php:1820 ../../include/nav.php:370 +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Channel" +msgstr "Канал" + +#: ../../include/conversation.php:1823 ../../include/nav.php:373 +msgid "Status Messages and Posts" +msgstr "Статусы и публикации" + +#: ../../include/conversation.php:1833 ../../include/nav.php:383 +#: ../../Zotlabs/Module/Help.php:80 +msgid "About" +msgstr "О себе" + +#: ../../include/conversation.php:1836 ../../include/nav.php:386 +msgid "Profile Details" +msgstr "Информация о профиле" + +#: ../../include/conversation.php:1843 ../../include/nav.php:393 +#: ../../Zotlabs/Lib/Apps.php:314 ../../Zotlabs/Module/Fbrowser.php:29 +msgid "Photos" +msgstr "Фотографии" + +#: ../../include/conversation.php:1846 ../../include/nav.php:396 +#: ../../include/photos.php:667 +msgid "Photo Albums" +msgstr "Фотоальбомы" + +#: ../../include/conversation.php:1851 ../../include/nav.php:401 +#: ../../Zotlabs/Lib/Apps.php:309 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Storage/Browser.php:272 +msgid "Files" +msgstr "Файлы" + +#: ../../include/conversation.php:1854 ../../include/nav.php:404 +msgid "Files and Storage" +msgstr "Файлы и хранилище" + +#: ../../include/conversation.php:1862 ../../include/conversation.php:1865 +#: ../../Zotlabs/Lib/Apps.php:315 +msgid "Events" +msgstr "События" + +#: ../../include/conversation.php:1876 ../../include/conversation.php:1879 +#: ../../include/nav.php:426 ../../include/nav.php:429 +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +msgid "Chatrooms" +msgstr "Чаты" + +#: ../../include/conversation.php:1891 ../../include/nav.php:439 +msgid "Bookmarks" +msgstr "Закладки" + +#: ../../include/conversation.php:1894 ../../include/nav.php:442 +msgid "Saved Bookmarks" +msgstr "Сохранённые закладки" + +#: ../../include/conversation.php:1902 ../../include/nav.php:450 +#: ../../include/features.php:123 ../../Zotlabs/Lib/Apps.php:297 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:194 +msgid "Cards" +msgstr "Карточки" + +#: ../../include/conversation.php:1905 ../../include/nav.php:453 +msgid "View Cards" +msgstr "Просмотреть карточки" + +#: ../../include/conversation.php:1913 +msgid "articles" +msgstr "статьи" + +#: ../../include/conversation.php:1916 ../../include/nav.php:464 +msgid "View Articles" +msgstr "Просмотр статей" + +#: ../../include/conversation.php:1924 ../../include/nav.php:473 +#: ../../Zotlabs/Lib/Apps.php:310 ../../Zotlabs/Module/Webpages.php:237 +msgid "Webpages" +msgstr "Веб-страницы" + +#: ../../include/conversation.php:1927 ../../include/nav.php:476 +msgid "View Webpages" +msgstr "Просмотр веб-страниц" + +#: ../../include/conversation.php:1937 ../../include/nav.php:486 +#: ../../Zotlabs/Module/Wiki.php:197 +msgid "Wikis" +msgstr "" + +#: ../../include/conversation.php:1940 ../../include/nav.php:489 +#: ../../include/features.php:96 ../../Zotlabs/Lib/Apps.php:311 +msgid "Wiki" +msgstr "" + +#: ../../include/conversation.php:1990 ../../include/taxonomy.php:661 +#: ../../include/channel.php:1539 ../../Zotlabs/Lib/ThreadItem.php:216 +#: ../../Zotlabs/Module/Photos.php:1165 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Нравится" +msgstr[1] "Нравится" +msgstr[2] "Нравится" + +#: ../../include/conversation.php:1993 ../../Zotlabs/Lib/ThreadItem.php:221 +#: ../../Zotlabs/Module/Photos.php:1170 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Не нравится" +msgstr[1] "Не нравится" +msgstr[2] "Не нравится" + +#: ../../include/conversation.php:1996 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Посетит" +msgstr[1] "Посетят" +msgstr[2] "Посетят" + +#: ../../include/conversation.php:1999 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Не посетит" +msgstr[1] "Не посетят" +msgstr[2] "Не посетят" + +#: ../../include/conversation.php:2002 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr "Не решил" + +#: ../../include/conversation.php:2005 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Согласен" +msgstr[1] "Согласны" +msgstr[2] "Согласны" + +#: ../../include/conversation.php:2008 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Не согласен" +msgstr[1] "Не согласны" +msgstr[2] "Не согласны" + +#: ../../include/conversation.php:2011 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Воздержался" +msgstr[1] "Воздержались" +msgstr[2] "Воздержались" + +#: ../../include/zot.php:772 +msgid "Invalid data packet" +msgstr "Неверный пакет данных" + +#: ../../include/zot.php:799 +msgid "Unable to verify channel signature" +msgstr "Невозможно проверить подпись канала" + +#: ../../include/zot.php:2557 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Невозможно проверить подпись сайта %s" + +#: ../../include/zot.php:4221 +msgid "invalid target signature" +msgstr "недопустимая целевая подпись" + +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Начало:" + +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Окончание:" + +#: ../../include/event.php:54 ../../include/event.php:86 +#: ../../include/channel.php:1391 ../../Zotlabs/Module/Directory.php:324 +msgid "Location:" +msgstr "Местоположение:" + +#: ../../include/event.php:1011 +msgid "This event has been added to your calendar." +msgstr "Это событие было добавлено в ваш календарь." + +#: ../../include/event.php:1227 +msgid "Not specified" +msgstr "Не указано" + +#: ../../include/event.php:1228 +msgid "Needs Action" +msgstr "Требует действия" + +#: ../../include/event.php:1229 +msgid "Completed" +msgstr "Завершено" + +#: ../../include/event.php:1230 +msgid "In Process" +msgstr "В процессе" + +#: ../../include/event.php:1231 +msgid "Cancelled" +msgstr "Отменено" + +#: ../../include/event.php:1308 ../../include/connections.php:698 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Mobile" +msgstr "Мобильный" + +#: ../../include/event.php:1309 ../../include/connections.php:699 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Home" +msgstr "Домашний" + +#: ../../include/event.php:1310 ../../include/connections.php:700 +msgid "Home, Voice" +msgstr "Дом, голос" + +#: ../../include/event.php:1311 ../../include/connections.php:701 +msgid "Home, Fax" +msgstr "Дом, факс" + +#: ../../include/event.php:1312 ../../include/connections.php:702 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Work" +msgstr "Рабочий" + +#: ../../include/event.php:1313 ../../include/connections.php:703 +msgid "Work, Voice" +msgstr "Работа, голос" + +#: ../../include/event.php:1314 ../../include/connections.php:704 +msgid "Work, Fax" +msgstr "Работа, факс" + +#: ../../include/event.php:1315 ../../include/event.php:1322 +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/connections.php:705 ../../include/connections.php:712 +#: ../../Zotlabs/Access/PermissionRoles.php:306 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/Connedit.php:918 +#: ../../Zotlabs/Module/Settings/Channel.php:496 +#: ../../Zotlabs/Module/New_channel.php:172 +#: ../../Zotlabs/Module/Register.php:233 ../../Zotlabs/Module/Profiles.php:795 +msgid "Other" +msgstr "Другой" + +#: ../../include/attach.php:265 ../../include/attach.php:374 msgid "Item was not found." msgstr "Элемент не найден." -#: ../../include/attach.php:335 +#: ../../include/attach.php:282 +msgid "Unknown error." +msgstr "Неизвестная ошибка." + +#: ../../include/attach.php:567 msgid "No source file." msgstr "Нет исходного файла." -#: ../../include/attach.php:352 +#: ../../include/attach.php:589 msgid "Cannot locate file to replace" -msgstr "Не удается найти файл, чтобы заменить" +msgstr "Не удается найти файл для замены" -#: ../../include/attach.php:370 +#: ../../include/attach.php:608 msgid "Cannot locate file to revise/update" msgstr "Не удается найти файл для пересмотра / обновления" -#: ../../include/attach.php:381 +#: ../../include/attach.php:750 #, php-format msgid "File exceeds size limit of %d" msgstr "Файл превышает предельный размер %d" -#: ../../include/attach.php:393 +#: ../../include/attach.php:771 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "" +msgstr "Вы достигли предела %1$.0f Мбайт для хранения вложений." -#: ../../include/attach.php:475 +#: ../../include/attach.php:953 msgid "File upload failed. Possible system limit or action terminated." msgstr "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена." -#: ../../include/attach.php:487 +#: ../../include/attach.php:982 msgid "Stored file could not be verified. Upload failed." -msgstr "Файл для сохранения не проверен. Загрузка не удалась." +msgstr "Файл для сохранения не может быть проверен. Загрузка не удалась." -#: ../../include/attach.php:528 ../../include/attach.php:545 +#: ../../include/attach.php:1056 ../../include/attach.php:1072 msgid "Path not available." msgstr "Путь недоступен." -#: ../../include/attach.php:590 +#: ../../include/attach.php:1121 ../../include/attach.php:1286 msgid "Empty pathname" -msgstr "" +msgstr "Пустое имя пути" -#: ../../include/attach.php:606 +#: ../../include/attach.php:1147 msgid "duplicate filename or path" -msgstr "" +msgstr "дублирующееся имя файла или пути" -#: ../../include/attach.php:630 +#: ../../include/attach.php:1172 msgid "Path not found." msgstr "Путь не найден." -#: ../../include/attach.php:674 +#: ../../include/attach.php:1240 msgid "mkdir failed." -msgstr "mkdir безуспешно." +msgstr "mkdir не удался" -#: ../../include/attach.php:678 +#: ../../include/attach.php:1244 msgid "database storage failed." -msgstr "" +msgstr "ошибка при записи базы данных." -#: ../../include/bb2diaspora.php:441 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" +#: ../../include/attach.php:1292 +msgid "Empty path" +msgstr "Пустое имя пути" -#: ../../include/bb2diaspora.php:447 ../../include/event.php:20 -msgid "Starts:" -msgstr "Начало:" +#: ../../include/feedutils.php:860 ../../include/text.php:1451 +msgid "unknown" +msgstr "неизвестный" -#: ../../include/bb2diaspora.php:455 ../../include/event.php:30 -msgid "Finishes:" -msgstr "\t\nКонец:" - -#: ../../include/bb2diaspora.php:463 ../../include/event.php:40 -#: ../../include/identity.php:726 ../../mod/directory.php:156 -#: ../../mod/dirprofile.php:105 ../../mod/events.php:485 -msgid "Location:" -msgstr "Откуда:" - -#: ../../include/nav.php:77 ../../include/nav.php:101 ../../boot.php:1464 -msgid "Logout" -msgstr "Выход" - -#: ../../include/nav.php:77 ../../include/nav.php:101 -msgid "End this session" -msgstr "Закончить эту сессию" - -#: ../../include/nav.php:80 ../../include/nav.php:135 -msgid "Home" -msgstr "Мой канал" - -#: ../../include/nav.php:80 -msgid "Your posts and conversations" -msgstr "Ваши сообщения и разговоры" - -#: ../../include/nav.php:81 -msgid "Your profile page" -msgstr "Страницa вашего профиля" - -#: ../../include/nav.php:83 -msgid "Edit Profiles" -msgstr "Редактирование профилей" - -#: ../../include/nav.php:83 -msgid "Manage/Edit profiles" -msgstr "Управление / Редактирование профилей" - -#: ../../include/nav.php:84 -msgid "Your photos" -msgstr "Ваши фотографии" - -#: ../../include/nav.php:85 -msgid "Your files" -msgstr "Ваши файлы" - -#: ../../include/nav.php:90 ../../include/apps.php:136 -msgid "Chat" -msgstr "Чат" - -#: ../../include/nav.php:90 -msgid "Your chatrooms" -msgstr "Ваши чаты" - -#: ../../include/nav.php:93 -msgid "Your bookmarks" -msgstr "Ваши закладки" - -#: ../../include/nav.php:95 -msgid "Your webpages" -msgstr "Ваши веб-страницы" - -#: ../../include/nav.php:99 ../../include/apps.php:121 ../../boot.php:1465 -msgid "Login" -msgstr "Войти" - -#: ../../include/nav.php:99 -msgid "Sign in" -msgstr "Войти" - -#: ../../include/nav.php:116 -#, php-format -msgid "%s - click to logout" -msgstr "%s - нажмите чтобы выйти" - -#: ../../include/nav.php:121 -msgid "Click to authenticate to your home hub" -msgstr "" - -#: ../../include/nav.php:135 -msgid "Home Page" -msgstr "Моя страница" - -#: ../../include/nav.php:139 ../../mod/register.php:206 ../../boot.php:1441 -msgid "Register" -msgstr "Регистрация" - -#: ../../include/nav.php:139 -msgid "Create an account" -msgstr "Создать аккаунт" - -#: ../../include/nav.php:144 ../../include/apps.php:132 ../../mod/help.php:60 -#: ../../mod/help.php:65 -msgid "Help" -msgstr "Помощь" - -#: ../../include/nav.php:144 -msgid "Help and documentation" -msgstr "Справочная информация и документация" - -#: ../../include/nav.php:147 ../../include/widgets.php:79 -#: ../../mod/apps.php:33 -msgid "Apps" -msgstr "Приложения" - -#: ../../include/nav.php:147 -msgid "Applications, utilities, links, games" -msgstr "" - -#: ../../include/nav.php:149 ../../include/text.php:813 -#: ../../include/text.php:827 ../../include/apps.php:137 -#: ../../mod/search.php:29 -msgid "Search" -msgstr "Поиск" - -#: ../../include/nav.php:149 -msgid "Search site content" -msgstr "Поиск по содержанию сайту" - -#: ../../include/nav.php:152 ../../include/apps.php:131 -#: ../../mod/directory.php:210 -msgid "Directory" -msgstr "Каталог" - -#: ../../include/nav.php:152 -msgid "Channel Locator" -msgstr "Локатор каналов" - -#: ../../include/nav.php:163 ../../include/apps.php:123 -msgid "Matrix" -msgstr "Матрица" - -#: ../../include/nav.php:163 -msgid "Your matrix" -msgstr "Собственная матрица" - -#: ../../include/nav.php:164 -msgid "Mark all matrix notifications seen" -msgstr "Пометить все оповещения матрицы как прочитанное" - -#: ../../include/nav.php:166 ../../include/apps.php:127 -msgid "Channel Home" -msgstr "Главная канала" - -#: ../../include/nav.php:166 -msgid "Channel home" -msgstr "Главная канала" - -#: ../../include/nav.php:167 -msgid "Mark all channel notifications seen" -msgstr "Пометить все оповещения канала как прочитанное" - -#: ../../include/nav.php:170 ../../mod/connections.php:386 -msgid "Connections" -msgstr "Контакты" - -#: ../../include/nav.php:173 -msgid "Notices" -msgstr "Оповещения" - -#: ../../include/nav.php:173 -msgid "Notifications" -msgstr "Оповещения" - -#: ../../include/nav.php:174 -msgid "See all notifications" -msgstr "Просмотреть все оповещения" - -#: ../../include/nav.php:175 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Пометить все оповещения как прочитанное" - -#: ../../include/nav.php:177 ../../include/apps.php:133 -msgid "Mail" -msgstr "Переписка" - -#: ../../include/nav.php:177 -msgid "Private mail" -msgstr "Ваша личная переписка" - -#: ../../include/nav.php:178 -msgid "See all private messages" -msgstr "Просмотреть все личные сообщения" - -#: ../../include/nav.php:179 -msgid "Mark all private messages seen" -msgstr "Пометить все личные сообщения как прочитанное" - -#: ../../include/nav.php:180 -msgid "Inbox" -msgstr "Входящие" - -#: ../../include/nav.php:181 -msgid "Outbox" -msgstr "Исходящие" - -#: ../../include/nav.php:182 ../../include/widgets.php:536 -msgid "New Message" -msgstr "Новое личное сообщение" - -#: ../../include/nav.php:185 ../../include/apps.php:130 -#: ../../mod/events.php:377 -msgid "Events" -msgstr "Мероприятия" - -#: ../../include/nav.php:185 -msgid "Event Calendar" -msgstr "Календарь мероприятий" - -#: ../../include/nav.php:186 -msgid "See all events" -msgstr "Показать все мероприятия" - -#: ../../include/nav.php:187 -msgid "Mark all events seen" -msgstr "Пометить все мероприятия как прочитанное" - -#: ../../include/nav.php:189 ../../include/apps.php:122 -msgid "Channel Select" -msgstr "Выбор каналов" - -#: ../../include/nav.php:189 -msgid "Manage Your Channels" -msgstr "Управление каналов" - -#: ../../include/nav.php:191 ../../include/apps.php:124 -#: ../../include/widgets.php:514 ../../mod/admin.php:978 -#: ../../mod/admin.php:1183 -msgid "Settings" -msgstr "Настройки" - -#: ../../include/nav.php:191 -msgid "Account/Channel Settings" -msgstr "Настройки аккаунта/канала" - -#: ../../include/nav.php:199 ../../mod/admin.php:117 -msgid "Admin" -msgstr "Администрация" - -#: ../../include/nav.php:199 -msgid "Site Setup and Configuration" -msgstr "Установка и конфигурация сайта" - -#: ../../include/nav.php:224 -msgid "Nothing new here" -msgstr "Ничего нового здесь" - -#: ../../include/nav.php:228 -msgid "Please wait..." -msgstr "Подождите пожалуйста ..." - -#: ../../include/bookmarks.php:42 +#: ../../include/bookmarks.php:34 #, php-format msgid "%1$s's bookmarks" msgstr "Закладки пользователя %1$s" -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Параметры каталога" -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "" - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "" - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "" - -#: ../../include/taxonomy.php:210 -msgid "Tags" -msgstr "Тэги" - -#: ../../include/taxonomy.php:227 -msgid "Keywords" -msgstr "Ключевые слова" - -#: ../../include/taxonomy.php:252 -msgid "have" -msgstr "иметь" - -#: ../../include/taxonomy.php:252 -msgid "has" -msgstr "есть" - -#: ../../include/taxonomy.php:253 -msgid "want" -msgstr "хотеть" - -#: ../../include/taxonomy.php:253 -msgid "wants" -msgstr "хочет" - -#: ../../include/taxonomy.php:254 ../../include/ItemObject.php:208 -msgid "like" -msgstr "нравится" - -#: ../../include/taxonomy.php:254 -msgid "likes" -msgstr "нравится" - -#: ../../include/taxonomy.php:255 ../../include/ItemObject.php:209 -msgid "dislike" -msgstr "не-нравится" - -#: ../../include/taxonomy.php:255 -msgid "dislikes" -msgstr "не-нравится" - -#: ../../include/taxonomy.php:338 ../../include/identity.php:968 -#: ../../include/ItemObject.php:134 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "нравится" -msgstr[1] "нравится" -msgstr[2] "нравится" - -#: ../../include/comanche.php:35 ../../view/theme/apw/php/config.php:185 -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Default" -msgstr "По умолчанию" - -#: ../../include/contact_selectors.php:30 -msgid "Unknown | Not categorised" -msgstr "Неизвестные | Без категории" - -#: ../../include/contact_selectors.php:31 -msgid "Block immediately" -msgstr "Немедленно заблокировать" - -#: ../../include/contact_selectors.php:32 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: ../../include/contact_selectors.php:33 -msgid "Known to me, but no opinion" -msgstr "Известныo мне, но нет своего мнения" - -#: ../../include/contact_selectors.php:34 -msgid "OK, probably harmless" -msgstr "OK, наверное безвредно" - -#: ../../include/contact_selectors.php:35 -msgid "Reputable, has my trust" -msgstr "Авторитетно, имеет мое доверие" - -#: ../../include/contact_selectors.php:54 -msgid "Frequently" -msgstr "Часто" - -#: ../../include/contact_selectors.php:55 -msgid "Hourly" -msgstr "Ежечасно" - -#: ../../include/contact_selectors.php:56 -msgid "Twice daily" -msgstr "Два раза в день" - -#: ../../include/contact_selectors.php:57 -msgid "Daily" -msgstr "Ежедневно" - -#: ../../include/contact_selectors.php:58 -msgid "Weekly" -msgstr "Еженедельно" - -#: ../../include/contact_selectors.php:59 -msgid "Monthly" -msgstr "Ежемесячно" - -#: ../../include/contact_selectors.php:74 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:75 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:76 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:77 ../../mod/admin.php:754 -#: ../../mod/admin.php:763 ../../boot.php:1467 -msgid "Email" -msgstr "E-mail" - -#: ../../include/contact_selectors.php:78 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:79 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:80 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:81 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:82 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:83 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "имеется %d приглашение" -msgstr[1] "имеются %d приглашения" -msgstr[2] "имеется %d приглашений" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:446 -msgid "Advanced" -msgstr "Дополнительно" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Поиск контактов" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Впишите имя или интерес" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Подключить/следовать" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Примеры: Владимир Ильич, Революционер" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:392 -#: ../../mod/directory.php:206 ../../mod/directory.php:211 -msgid "Find" -msgstr "Поиск" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -msgid "Channel Suggestions" -msgstr "Рекомендации каналов" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Случайные" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Пригласить друзей" - -#: ../../include/contact_widgets.php:32 -msgid "Exammple: name=fred and country=iceland" -msgstr "" - -#: ../../include/contact_widgets.php:33 -msgid "Advanced Find" -msgstr "Расширенный поиск" - -#: ../../include/contact_widgets.php:58 ../../include/features.php:66 -#: ../../include/widgets.php:296 -msgid "Saved Folders" -msgstr "Запомненные папки" - -#: ../../include/contact_widgets.php:61 ../../include/contact_widgets.php:95 -#: ../../include/widgets.php:299 -msgid "Everything" -msgstr "Все" - -#: ../../include/contact_widgets.php:92 ../../include/widgets.php:29 -msgid "Categories" -msgstr "Категории" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d совместный контакт" -msgstr[1] "%d совместных контакта" -msgstr[2] "%d совместных контактов" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "показать все" - -#: ../../include/event.php:326 -msgid "This event has been added to your calendar." -msgstr "Это событие было добавлено в календарь." - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Прочее" - -#: ../../include/datetime.php:152 ../../include/datetime.php:284 -msgid "year" -msgstr "год" - -#: ../../include/datetime.php:157 ../../include/datetime.php:285 -msgid "month" -msgstr "месяц" - -#: ../../include/datetime.php:162 ../../include/datetime.php:287 -msgid "day" -msgstr "день" - -#: ../../include/datetime.php:275 -msgid "never" -msgstr "никогда" - -#: ../../include/datetime.php:281 -msgid "less than a second ago" -msgstr "менее чем одну секунду назад" - -#: ../../include/datetime.php:284 -msgid "years" -msgstr "лет" - -#: ../../include/datetime.php:285 -msgid "months" -msgstr "мес." - -#: ../../include/datetime.php:286 -msgid "week" -msgstr "неделя" - -#: ../../include/datetime.php:286 -msgid "weeks" -msgstr "недель" - -#: ../../include/datetime.php:287 -msgid "days" -msgstr "дней" - -#: ../../include/datetime.php:288 -msgid "hour" -msgstr "час" - -#: ../../include/datetime.php:288 -msgid "hours" -msgstr "часов" - -#: ../../include/datetime.php:289 -msgid "minute" -msgstr "минута" - -#: ../../include/datetime.php:289 -msgid "minutes" -msgstr "мин." - -#: ../../include/datetime.php:290 -msgid "second" -msgstr "секунда" - -#: ../../include/datetime.php:290 -msgid "seconds" -msgstr "секунд" - -#: ../../include/datetime.php:299 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s назад" - -#: ../../include/datetime.php:504 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$s's День Рождения" - -#: ../../include/datetime.php:505 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "С Днем Рождения %1$s" - -#: ../../include/dir_fns.php:36 -msgid "Sort Options" -msgstr "Параметры сортировки" - -#: ../../include/dir_fns.php:37 -msgid "Alphabetic" -msgstr "По алфавиту" - -#: ../../include/dir_fns.php:38 -msgid "Reverse Alphabetic" -msgstr "По обратному алфавиту" - -#: ../../include/dir_fns.php:39 -msgid "Newest to Oldest" -msgstr "От новых к старым" - -#: ../../include/dir_fns.php:51 -msgid "Enable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:53 -msgid "Disable Safe Search" -msgstr "" - -#: ../../include/dir_fns.php:55 +#: ../../include/dir_fns.php:143 msgid "Safe Mode" msgstr "Безопасный режим" -#: ../../include/enotify.php:41 -msgid "Hubzilla Notification" -msgstr "Оповещения Red матрицы" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Только публичные форумы" -#: ../../include/enotify.php:42 -msgid "hubzilla" -msgstr "hubzilla" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Только этот веб-сайт" -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Спасибо," +#: ../../include/network.php:760 +msgid "view full size" +msgstr "посмотреть в полный размер" -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "%s администратор" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Уведомление] Получено новое сообщение в %s" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." +#: ../../include/network.php:1763 ../../include/network.php:1764 +msgid "Friendica" msgstr "" -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s послал вам %2$s." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "личное сообщение" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +#: ../../include/network.php:1765 +msgid "OStatus" msgstr "" -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +#: ../../include/network.php:1766 +msgid "GNU-Social" +msgstr "GNU social" + +#: ../../include/network.php:1767 +msgid "RSS/Atom" msgstr "" -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +#: ../../include/network.php:1770 +msgid "Diaspora" msgstr "" -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Уведомление] Комментарий к разговору #%1$d по %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." +#: ../../include/network.php:1771 +msgid "Facebook" msgstr "" -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Пожалуйста, посетите %s для просмотра и/или ответа разговора." - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" +#: ../../include/network.php:1772 +msgid "Zot" msgstr "" -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +#: ../../include/network.php:1773 +msgid "LinkedIn" msgstr "" -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Уведомление] %s добавил у вас тег" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" +#: ../../include/network.php:1774 +msgid "XMPP/IM" msgstr "" -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +#: ../../include/network.php:1775 +msgid "MySpace" msgstr "" -#: ../../include/enotify.php:225 +#: ../../include/activities.php:41 +msgid " and " +msgstr " и " + +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "общедоступный профиль" + +#: ../../include/activities.php:58 #, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Уведомление] %1$s подпихнул вас" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s изменил %2$s на “%3$s”" -#: ../../include/enotify.php:226 +#: ../../include/activities.php:59 #, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "" +msgid "Visit %1$s's %2$s" +msgstr "Посетить %1$s %2$s" -#: ../../include/enotify.php:227 +#: ../../include/activities.php:62 #, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s обновлено %2$s, изменено %3$s." -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Уведомление] %s добавил у вас в сообщении тег" +#: ../../include/nav.php:88 +msgid "Remote authentication" +msgstr "Удаленная аутентификация" -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "" +#: ../../include/nav.php:88 +msgid "Click to authenticate to your home hub" +msgstr "Нажмите, чтобы аутентифицировать себя на домашнем узле" -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "" +#: ../../include/nav.php:94 ../../Zotlabs/Lib/Apps.php:306 +#: ../../Zotlabs/Module/Manage.php:170 +msgid "Channel Manager" +msgstr "Менеджер каналов" -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Уведомление] введение получено" +#: ../../include/nav.php:94 +msgid "Manage your channels" +msgstr "Управление вашими каналами" -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "" +#: ../../include/nav.php:97 ../../include/group.php:320 +#: ../../include/features.php:221 ../../Zotlabs/Lib/Apps.php:333 +#: ../../Zotlabs/Widget/Activity_filter.php:68 +#: ../../Zotlabs/Module/Group.php:113 ../../Zotlabs/Module/Group.php:124 +msgid "Privacy Groups" +msgstr "Группы безопасности" -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "" +#: ../../include/nav.php:97 +msgid "Manage your privacy groups" +msgstr "Управление вашим группами безопасности" -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Вы можете посетить ​​профиль в %s" +#: ../../include/nav.php:99 ../../Zotlabs/Lib/Apps.php:308 +#: ../../Zotlabs/Widget/Settings_menu.php:141 +#: ../../Zotlabs/Widget/Newmember.php:46 +#: ../../Zotlabs/Module/Admin/Addons.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 +msgid "Settings" +msgstr "Настройки" -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "" +#: ../../include/nav.php:99 +msgid "Account/Channel Settings" +msgstr "Настройки аккаунта / канала" -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Уведомление] Получено предложение дружить" +#: ../../include/nav.php:105 ../../include/nav.php:134 +msgid "End this session" +msgstr "Закончить эту сессию" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "" +#: ../../include/nav.php:108 +msgid "Your profile page" +msgstr "Страницa вашего профиля" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "" +#: ../../include/nav.php:111 ../../include/channel.php:1296 +#: ../../Zotlabs/Module/Profiles.php:830 +msgid "Edit Profiles" +msgstr "Редактирование профилей" -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Имя:" +#: ../../include/nav.php:111 +msgid "Manage/Edit profiles" +msgstr "Управление / редактирование профилей" -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Фото:" +#: ../../include/nav.php:113 ../../Zotlabs/Widget/Newmember.php:28 +msgid "Edit your profile" +msgstr "Редактировать профиль" -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" +#: ../../include/nav.php:120 ../../include/nav.php:124 +msgid "Sign in" +msgstr "Войти" -#: ../../include/reddav.php:915 -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:52 -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:55 -msgid "parent" -msgstr "" +#: ../../include/nav.php:151 +msgid "Take me home" +msgstr "Домой" -#: ../../include/reddav.php:940 -msgid "Collection" -msgstr "Коллекция" +#: ../../include/nav.php:153 +msgid "Log me out of this site" +msgstr "Выйти с этого сайта" -#: ../../include/reddav.php:943 -msgid "Principal" -msgstr "" +#: ../../include/nav.php:158 +msgid "Create an account" +msgstr "Создать аккаунт" -#: ../../include/reddav.php:946 -msgid "Addressbook" -msgstr "Адресная книга" +#: ../../include/nav.php:170 ../../include/nav.php:272 +#: ../../include/help.php:68 ../../include/help.php:74 +#: ../../Zotlabs/Lib/Apps.php:317 ../../Zotlabs/Module/Layouts.php:186 +msgid "Help" +msgstr "Помощь" -#: ../../include/reddav.php:949 +#: ../../include/nav.php:170 +msgid "Help and documentation" +msgstr "Справочная информация и документация" + +#: ../../include/nav.php:185 ../../include/acl_selectors.php:118 +#: ../../include/text.php:1062 ../../include/text.php:1074 +#: ../../Zotlabs/Lib/Apps.php:322 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../Zotlabs/Widget/Activity_filter.php:148 +#: ../../Zotlabs/Module/Connections.php:335 ../../Zotlabs/Module/Search.php:44 +msgid "Search" +msgstr "Поиск" + +#: ../../include/nav.php:185 +msgid "Search site @name, !forum, #tag, ?docs, content" +msgstr "Искать на сайте @name, !forum, #tag, ?docs, содержимое" + +#: ../../include/nav.php:191 ../../Zotlabs/Widget/Admin.php:55 +msgid "Admin" +msgstr "Администрирование" + +#: ../../include/nav.php:191 +msgid "Site Setup and Configuration" +msgstr "Установка и конфигурация сайта" + +#: ../../include/nav.php:276 ../../Zotlabs/Widget/Notifications.php:162 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/New_channel.php:154 +#: ../../Zotlabs/Module/New_channel.php:161 +msgid "Loading" +msgstr "Загрузка" + +#: ../../include/nav.php:282 +msgid "@name, !forum, #tag, ?doc, content" +msgstr "@name, !forum, #tag, ?docs, содержимое" + +#: ../../include/nav.php:283 +msgid "Please wait..." +msgstr "Подождите пожалуйста ..." + +#: ../../include/nav.php:289 +msgid "Add Apps" +msgstr "Добавить приложения" + +#: ../../include/nav.php:290 +msgid "Arrange Apps" +msgstr "Упорядочить приложения" + +#: ../../include/nav.php:291 +msgid "Toggle System Apps" +msgstr "Переключить системные приложения" + +#: ../../include/nav.php:412 ../../include/nav.php:415 +#: ../../Zotlabs/Storage/Browser.php:140 msgid "Calendar" msgstr "Календарь" -#: ../../include/reddav.php:952 -msgid "Schedule Inbox" -msgstr "" - -#: ../../include/reddav.php:955 -msgid "Schedule Outbox" -msgstr "" - -#: ../../include/reddav.php:1033 -#, php-format -msgid "%1$s used" -msgstr "" - -#: ../../include/reddav.php:1038 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "" - -#: ../../include/reddav.php:1104 -msgid "Create new folder" -msgstr "Создать новую папку" - -#: ../../include/reddav.php:1107 ../../mod/mitem.php:142 ../../mod/menu.php:84 -#: ../../mod/new_channel.php:117 -msgid "Create" -msgstr "Создать" - -#: ../../include/reddav.php:1111 -msgid "Upload file" -msgstr "Загрузить файл" - -#: ../../include/reddav.php:1114 ../../mod/profile_photo.php:361 -msgid "Upload" -msgstr "Загрузка" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Главные функции" - -#: ../../include/features.php:25 -msgid "Content Expiration" -msgstr "" - -#: ../../include/features.php:25 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Удалять посты/комментарии и/или личные сообщения" - -#: ../../include/features.php:26 -msgid "Multiple Profiles" -msgstr "Несколько профилей" - -#: ../../include/features.php:26 -msgid "Ability to create multiple profiles" -msgstr "Возможность создания нескольких профилей" - -#: ../../include/features.php:27 -msgid "Web Pages" -msgstr "Веб-страницы" - -#: ../../include/features.php:27 -msgid "Provide managed web pages on your channel" -msgstr "" - -#: ../../include/features.php:28 -msgid "Private Notes" -msgstr "Личные заметки" - -#: ../../include/features.php:28 -msgid "Enables a tool to store notes and reminders" -msgstr "" - -#: ../../include/features.php:33 -msgid "Extended Identity Sharing" -msgstr "Расширенный обмен идентичности" - -#: ../../include/features.php:33 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "" - -#: ../../include/features.php:34 -msgid "Expert Mode" -msgstr "Экспертный режим" - -#: ../../include/features.php:34 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "" - -#: ../../include/features.php:35 -msgid "Premium Channel" -msgstr "Премиум канал" - -#: ../../include/features.php:35 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "" - -#: ../../include/features.php:40 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:41 -msgid "Richtext Editor" -msgstr "Редактор RichText" - -#: ../../include/features.php:41 -msgid "Enable richtext editor" -msgstr "Включить редактор RichText" - -#: ../../include/features.php:42 -msgid "Post Preview" -msgstr "Предварительный просмотр сообщения" - -#: ../../include/features.php:42 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией" - -#: ../../include/features.php:43 ../../include/widgets.php:503 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Источники канала" - -#: ../../include/features.php:43 -msgid "Automatically import channel content from other channels or feeds" -msgstr "" - -#: ../../include/features.php:44 -msgid "Even More Encryption" -msgstr "Еще больше шифрования" - -#: ../../include/features.php:44 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network and Stream Filtering" -msgstr "Фильтрация сети и потока" - -#: ../../include/features.php:50 -msgid "Search by Date" -msgstr "Поиск по дате" - -#: ../../include/features.php:50 -msgid "Ability to select posts by date ranges" -msgstr "Возможность выбора сообщений по датам" - -#: ../../include/features.php:51 -msgid "Collections Filter" -msgstr "Фильтр коллекций" - -#: ../../include/features.php:51 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "" - -#: ../../include/features.php:52 ../../include/widgets.php:265 -msgid "Saved Searches" -msgstr "Запомненные поиски" - -#: ../../include/features.php:52 -msgid "Save search terms for re-use" -msgstr "Сохранять результаты поиска для повторного использования" - -#: ../../include/features.php:53 -msgid "Network Personal Tab" -msgstr "Сеть - Личная вкладка" - -#: ../../include/features.php:53 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:54 -msgid "Network New Tab" -msgstr "Сеть - Новая вкладка" - -#: ../../include/features.php:54 -msgid "Enable tab to display all new Network activity" -msgstr "" - -#: ../../include/features.php:55 -msgid "Affinity Tool" -msgstr "Инструмент сходства или соответствия" - -#: ../../include/features.php:55 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:56 -msgid "Suggest Channels" -msgstr "" - -#: ../../include/features.php:56 -msgid "Show channel suggestions" -msgstr "" - -#: ../../include/features.php:61 -msgid "Post/Comment Tools" -msgstr "Инструменты сообщений/комментарий " - -#: ../../include/features.php:63 -msgid "Edit Sent Posts" -msgstr "Редактировать отправленные сообщения" - -#: ../../include/features.php:63 -msgid "Edit and correct posts and comments after sending" -msgstr "Редактировать и исправлять сообщения и комментарии после отправки" - -#: ../../include/features.php:64 -msgid "Tagging" -msgstr "Пометка" - -#: ../../include/features.php:64 -msgid "Ability to tag existing posts" -msgstr "Возможность использовать теги" - -#: ../../include/features.php:65 -msgid "Post Categories" -msgstr "Категории сообщения" - -#: ../../include/features.php:65 -msgid "Add categories to your posts" -msgstr "Добавить категории для ваших сообщений" - -#: ../../include/features.php:66 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:67 -msgid "Dislike Posts" -msgstr "Сообщение не нравится" - -#: ../../include/features.php:67 -msgid "Ability to dislike posts/comments" -msgstr "Возможность выбора нравится/не-нравится" - -#: ../../include/features.php:68 -msgid "Star Posts" -msgstr "Помечать сообщения" - -#: ../../include/features.php:68 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/features.php:69 -msgid "Tag Cloud" -msgstr "Облако тегов" - -#: ../../include/features.php:69 -msgid "Provide a personal tag cloud on your channel page" -msgstr "" - -#: ../../include/follow.php:23 -msgid "Channel is blocked on this site." -msgstr "Канал блокируется на этом сайте." - -#: ../../include/follow.php:28 -msgid "Channel location missing." -msgstr "Местоположение канала отсутствует." - -#: ../../include/follow.php:54 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:85 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:132 -msgid "Channel discovery failed." -msgstr "Не удалось обнаружить канал." - -#: ../../include/follow.php:149 -msgid "local account not found." -msgstr "локальный аккаунт не найден." - -#: ../../include/follow.php:158 -msgid "Cannot connect to yourself." -msgstr "Нельзя подключиться к самому себе." - -#: ../../include/group.php:25 +#: ../../include/nav.php:461 ../../include/features.php:133 +#: ../../Zotlabs/Lib/Apps.php:296 ../../Zotlabs/Module/Articles.php:38 +#: ../../Zotlabs/Module/Articles.php:191 +msgid "Articles" +msgstr "Статьи" + +#: ../../include/help.php:34 +msgid "Help:" +msgstr "Помощь:" + +#: ../../include/help.php:78 +msgid "Not Found" +msgstr "Не найдено" + +#: ../../include/help.php:81 ../../Zotlabs/Lib/NativeWikiPage.php:519 +#: ../../Zotlabs/Web/Router.php:167 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Display.php:141 +#: ../../Zotlabs/Module/Display.php:158 ../../Zotlabs/Module/Display.php:175 +msgid "Page not found." +msgstr "Страница не найдена." + +#: ../../include/group.php:22 msgid "" "A deleted group with this name was revived. Existing item permissions " "may apply to this group and any future members. If this is " "not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:223 -msgid "Default privacy group for new contacts" -msgstr "Группа конфиденциальности по умолчанию для новых контактов" - -#: ../../include/group.php:242 ../../mod/admin.php:763 -msgid "All Channels" -msgstr "Все каналы" +msgstr "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем." #: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Добавить новые контакты в группу безопасности" + +#: ../../include/group.php:298 msgid "edit" msgstr "редактировать" -#: ../../include/group.php:285 -msgid "Collections" -msgstr "Коллекции" +#: ../../include/group.php:321 +msgid "Edit group" +msgstr "Редактировать группу" -#: ../../include/group.php:286 -msgid "Edit collection" -msgstr "Редактировать коллекцию" +#: ../../include/group.php:322 +msgid "Add privacy group" +msgstr "Добавить группу безопасности" -#: ../../include/group.php:287 -msgid "Create a new collection" -msgstr "Создать новую коллекцию" +#: ../../include/group.php:323 +msgid "Channels not in any privacy group" +msgstr "Каналы не включены ни в одну группу безопасности" -#: ../../include/group.php:288 -msgid "Channels not in any collection" -msgstr "Контакты не в какой коллекции" - -#: ../../include/group.php:290 ../../include/widgets.php:266 +#: ../../include/group.php:325 ../../Zotlabs/Widget/Savedsearch.php:84 msgid "add" msgstr "добавить" -#: ../../include/identity.php:30 ../../mod/item.php:1270 +#: ../../include/import.php:25 +msgid "Unable to import a removed channel." +msgstr "Невозможно импортировать удалённый канал." + +#: ../../include/import.php:51 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Не удалось создать дублирующийся идентификатор канала. Импорт невозможен." + +#: ../../include/import.php:116 +msgid "Cloned channel not found. Import failed." +msgstr "Клон канала не найден. Импорт невозможен." + +#: ../../include/photo/photo_driver.php:741 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +msgid "Profile Photos" +msgstr "Фотографии профиля" + +#: ../../include/taxonomy.php:320 +msgid "Trending" +msgstr "В тренде" + +#: ../../include/taxonomy.php:320 ../../include/taxonomy.php:449 +#: ../../include/taxonomy.php:470 ../../Zotlabs/Widget/Tagcloud.php:22 +msgid "Tags" +msgstr "Теги" + +#: ../../include/taxonomy.php:409 ../../include/taxonomy.php:491 +#: ../../include/taxonomy.php:511 ../../include/taxonomy.php:532 +#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 +#: ../../include/contact_widgets.php:186 +#: ../../Zotlabs/Widget/Appcategories.php:43 +msgid "Categories" +msgstr "Категории" + +#: ../../include/taxonomy.php:552 +msgid "Keywords" +msgstr "Ключевые слова" + +#: ../../include/taxonomy.php:573 +msgid "have" +msgstr "иметь" + +#: ../../include/taxonomy.php:573 +msgid "has" +msgstr "есть" + +#: ../../include/taxonomy.php:574 +msgid "want" +msgstr "хотеть" + +#: ../../include/taxonomy.php:574 +msgid "wants" +msgstr "хотеть" + +#: ../../include/taxonomy.php:575 ../../Zotlabs/Lib/ThreadItem.php:285 +msgid "like" +msgstr "нравится" + +#: ../../include/taxonomy.php:575 +msgid "likes" +msgstr "нравится" + +#: ../../include/taxonomy.php:576 ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "dislike" +msgstr "не нравится" + +#: ../../include/taxonomy.php:576 +msgid "dislikes" +msgstr "не нравится" + +#: ../../include/zid.php:351 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s приветствует %2$s" + +#: ../../include/language.php:397 ../../include/text.php:1866 +msgid "default" +msgstr "по умолчанию" + +#: ../../include/language.php:410 +msgid "Select an alternate language" +msgstr "Выбор дополнительного языка" + +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "Канал блокируется на этом сайте." + +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "Местоположение канала отсутствует." + +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "Ответ удаленного канала неполный." + +#: ../../include/follow.php:96 +msgid "Premium channel - please visit:" +msgstr "Премимум-канал - пожалуйста посетите:" + +#: ../../include/follow.php:110 +msgid "Channel was deleted and no longer exists." +msgstr "Канал удален и больше не существует." + +#: ../../include/follow.php:165 +msgid "Remote channel or protocol unavailable." +msgstr "Удалённый канал или протокол недоступен." + +#: ../../include/follow.php:188 +msgid "Channel discovery failed." +msgstr "Не удалось обнаружить канал." + +#: ../../include/follow.php:200 +msgid "Protocol disabled." +msgstr "Протокол отключен." + +#: ../../include/follow.php:211 +msgid "Cannot connect to yourself." +msgstr "Нельзя подключиться к самому себе." + +#: ../../include/acl_selectors.php:33 +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +msgid "Visible to your default audience" +msgstr "Видно вашей аудитории по умолчанию." + +#: ../../include/acl_selectors.php:88 ../../Zotlabs/Module/Acl.php:120 +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +msgctxt "acl" +msgid "Profile" +msgstr "Профиль" + +#: ../../include/acl_selectors.php:106 +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Only me" +msgstr "Только мне" + +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "Кто может это видеть?" + +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Настраиваемый выбор" + +#: ../../include/acl_selectors.php:115 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." +msgstr "Нажмите \"Показать\" чтобы разрешить просмотр. \"Не показывать\" позволит вам переопределить и ограничить область показа." + +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "Показать" + +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "Не показывать" + +#: ../../include/acl_selectors.php:123 ../../Zotlabs/Module/Photos.php:707 +#: ../../Zotlabs/Module/Photos.php:1076 +#: ../../Zotlabs/Module/Filestorage.php:170 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 +msgid "Permissions" +msgstr "Разрешения" + +#: ../../include/acl_selectors.php:125 ../../Zotlabs/Lib/ThreadItem.php:426 +#: ../../Zotlabs/Module/Photos.php:1298 +msgid "Close" +msgstr "Закрыть" + +#: ../../include/acl_selectors.php:150 +#, 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 "Разрешения публикации %s не могут быть изменены %s после того, как ею поделились. Эти разрешения устанавливают кому разрешено просматривать эту публикацию." + +#: ../../include/datetime.php:58 ../../Zotlabs/Widget/Newmember.php:44 +#: ../../Zotlabs/Module/Profiles.php:736 +msgid "Miscellaneous" +msgstr "Прочее" + +#: ../../include/datetime.php:140 +msgid "Birthday" +msgstr "День рождения" + +#: ../../include/datetime.php:140 +msgid "Age: " +msgstr "Возраст:" + +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD или MM-DD" + +#: ../../include/datetime.php:211 ../../Zotlabs/Module/Appman.php:141 +#: ../../Zotlabs/Module/Appman.php:142 ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Events.php:465 ../../Zotlabs/Module/Profiles.php:745 +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Required" +msgstr "Требуется" + +#: ../../include/datetime.php:244 +msgid "less than a second ago" +msgstr "менее чем одну секунду" + +#: ../../include/datetime.php:262 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s назад" + +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "год" +msgstr[1] "года" +msgstr[2] "лет" + +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "месяц" +msgstr[1] "месяца" +msgstr[2] "месяцев" + +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "неделю" +msgstr[1] "недели" +msgstr[2] "недель" + +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "день" +msgstr[1] "дня" +msgstr[2] "дней" + +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "час" +msgstr[1] "часа" +msgstr[2] "часов" + +#: ../../include/datetime.php:288 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "минуту" +msgstr[1] "минуты" +msgstr[2] "минут" + +#: ../../include/datetime.php:291 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "секунду" +msgstr[1] "секунды" +msgstr[2] "секунд" + +#: ../../include/datetime.php:520 +#, php-format +msgid "%1$s's birthday" +msgstr "У %1$s День рождения" + +#: ../../include/datetime.php:521 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "С Днем рождения %1$s !" + +#: ../../include/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Не удается найти DNS информацию для сервера базы данных '%s'" + +#: ../../include/text.php:492 +msgid "prev" +msgstr "предыдущий" + +#: ../../include/text.php:494 +msgid "first" +msgstr "первый" + +#: ../../include/text.php:523 +msgid "last" +msgstr "последний" + +#: ../../include/text.php:526 +msgid "next" +msgstr "следующий" + +#: ../../include/text.php:537 +msgid "older" +msgstr "старше" + +#: ../../include/text.php:539 +msgid "newer" +msgstr "новее" + +#: ../../include/text.php:963 +msgid "No connections" +msgstr "Нет контактов" + +#: ../../include/text.php:975 ../../Zotlabs/Lib/Apps.php:302 +#: ../../Zotlabs/Module/Connections.php:331 +msgid "Connections" +msgstr "Контакты" + +#: ../../include/text.php:995 +#, php-format +msgid "View all %s connections" +msgstr "Просмотреть все %s контактов" + +#: ../../include/text.php:1051 +#, php-format +msgid "Network: %s" +msgstr "Сеть: %s" + +#: ../../include/text.php:1063 ../../include/text.php:1075 +#: ../../Zotlabs/Widget/Notes.php:18 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Admin/Profs.php:94 +#: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Filer.php:53 +msgid "Save" +msgstr "Запомнить" + +#: ../../include/text.php:1140 ../../include/text.php:1144 +msgid "poke" +msgstr "Ткнуть" + +#: ../../include/text.php:1145 +msgid "ping" +msgstr "Пингануть" + +#: ../../include/text.php:1145 +msgid "pinged" +msgstr "Отпингован" + +#: ../../include/text.php:1146 +msgid "prod" +msgstr "Подтолкнуть" + +#: ../../include/text.php:1146 +msgid "prodded" +msgstr "Подтолкнут" + +#: ../../include/text.php:1147 +msgid "slap" +msgstr "Шлёпнуть" + +#: ../../include/text.php:1147 +msgid "slapped" +msgstr "Шлёпнут" + +#: ../../include/text.php:1148 +msgid "finger" +msgstr "Указать" + +#: ../../include/text.php:1148 +msgid "fingered" +msgstr "Указан" + +#: ../../include/text.php:1149 +msgid "rebuff" +msgstr "Дать отпор" + +#: ../../include/text.php:1149 +msgid "rebuffed" +msgstr "Дан отпор" + +#: ../../include/text.php:1172 +msgid "happy" +msgstr "счастливый" + +#: ../../include/text.php:1173 +msgid "sad" +msgstr "грустный" + +#: ../../include/text.php:1174 +msgid "mellow" +msgstr "спокойный" + +#: ../../include/text.php:1175 +msgid "tired" +msgstr "усталый" + +#: ../../include/text.php:1176 +msgid "perky" +msgstr "весёлый" + +#: ../../include/text.php:1177 +msgid "angry" +msgstr "сердитый" + +#: ../../include/text.php:1178 +msgid "stupefied" +msgstr "отупевший" + +#: ../../include/text.php:1179 +msgid "puzzled" +msgstr "недоумевающий" + +#: ../../include/text.php:1180 +msgid "interested" +msgstr "заинтересованный" + +#: ../../include/text.php:1181 +msgid "bitter" +msgstr "едкий" + +#: ../../include/text.php:1182 +msgid "cheerful" +msgstr "бодрый" + +#: ../../include/text.php:1183 +msgid "alive" +msgstr "энергичный" + +#: ../../include/text.php:1184 +msgid "annoyed" +msgstr "раздражённый" + +#: ../../include/text.php:1185 +msgid "anxious" +msgstr "обеспокоенный" + +#: ../../include/text.php:1186 +msgid "cranky" +msgstr "капризный" + +#: ../../include/text.php:1187 +msgid "disturbed" +msgstr "встревоженный" + +#: ../../include/text.php:1188 +msgid "frustrated" +msgstr "разочарованный" + +#: ../../include/text.php:1189 +msgid "depressed" +msgstr "подавленный" + +#: ../../include/text.php:1190 +msgid "motivated" +msgstr "мотивированный" + +#: ../../include/text.php:1191 +msgid "relaxed" +msgstr "расслабленный" + +#: ../../include/text.php:1192 +msgid "surprised" +msgstr "удивленный" + +#: ../../include/text.php:1371 ../../include/js_strings.php:86 +msgid "Monday" +msgstr "Понедельник" + +#: ../../include/text.php:1371 ../../include/js_strings.php:87 +msgid "Tuesday" +msgstr "Вторник" + +#: ../../include/text.php:1371 ../../include/js_strings.php:88 +msgid "Wednesday" +msgstr "Среда" + +#: ../../include/text.php:1371 ../../include/js_strings.php:89 +msgid "Thursday" +msgstr "Четверг" + +#: ../../include/text.php:1371 ../../include/js_strings.php:90 +msgid "Friday" +msgstr "Пятница" + +#: ../../include/text.php:1371 ../../include/js_strings.php:91 +msgid "Saturday" +msgstr "Суббота" + +#: ../../include/text.php:1371 ../../include/js_strings.php:85 +msgid "Sunday" +msgstr "Воскресенье" + +#: ../../include/text.php:1375 ../../include/js_strings.php:61 +msgid "January" +msgstr "Январь" + +#: ../../include/text.php:1375 ../../include/js_strings.php:62 +msgid "February" +msgstr "Февраль" + +#: ../../include/text.php:1375 ../../include/js_strings.php:63 +msgid "March" +msgstr "Март" + +#: ../../include/text.php:1375 ../../include/js_strings.php:64 +msgid "April" +msgstr "Апрель" + +#: ../../include/text.php:1375 +msgid "May" +msgstr "Май" + +#: ../../include/text.php:1375 ../../include/js_strings.php:66 +msgid "June" +msgstr "Июнь" + +#: ../../include/text.php:1375 ../../include/js_strings.php:67 +msgid "July" +msgstr "Июль" + +#: ../../include/text.php:1375 ../../include/js_strings.php:68 +msgid "August" +msgstr "Август" + +#: ../../include/text.php:1375 ../../include/js_strings.php:69 +msgid "September" +msgstr "Сентябрь" + +#: ../../include/text.php:1375 ../../include/js_strings.php:70 +msgid "October" +msgstr "Октябрь" + +#: ../../include/text.php:1375 ../../include/js_strings.php:71 +msgid "November" +msgstr "Ноябрь" + +#: ../../include/text.php:1375 ../../include/js_strings.php:72 +msgid "December" +msgstr "Декабрь" + +#: ../../include/text.php:1449 +msgid "Unknown Attachment" +msgstr "Неизвестное вложение" + +#: ../../include/text.php:1451 ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:287 +msgid "Size" +msgstr "Размер" + +#: ../../include/text.php:1487 +msgid "remove category" +msgstr "удалить категорию" + +#: ../../include/text.php:1561 +msgid "remove from file" +msgstr "удалить из файла" + +#: ../../include/text.php:1703 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "Загрузить двоичное / зашифрованное содержимое" + +#: ../../include/text.php:1844 ../../Zotlabs/Module/Events.php:660 +#: ../../Zotlabs/Module/Cal.php:315 +msgid "Link to Source" +msgstr "Ссылка на источник" + +#: ../../include/text.php:1874 +msgid "Page layout" +msgstr "Шаблон страницы" + +#: ../../include/text.php:1874 +msgid "You can create your own with the layouts tool" +msgstr "Вы можете создать свой собственный с помощью инструмента шаблонов" + +#: ../../include/text.php:1884 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:208 +#: ../../Zotlabs/Module/Wiki.php:350 +msgid "BBcode" +msgstr "" + +#: ../../include/text.php:1885 +msgid "HTML" +msgstr "" + +#: ../../include/text.php:1887 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../Zotlabs/Module/Wiki.php:208 +msgid "Text" +msgstr "Текст" + +#: ../../include/text.php:1888 +msgid "Comanche Layout" +msgstr "Шаблон Comanche" + +#: ../../include/text.php:1893 +msgid "PHP" +msgstr "" + +#: ../../include/text.php:1902 +msgid "Page content type" +msgstr "Тип содержимого страницы" + +#: ../../include/text.php:2035 +msgid "activity" +msgstr "активность" + +#: ../../include/text.php:2135 +msgid "a-z, 0-9, -, and _ only" +msgstr "Только a-z, 0-9, -, и _" + +#: ../../include/text.php:2455 +msgid "Design Tools" +msgstr "Инструменты дизайна" + +#: ../../include/text.php:2458 ../../Zotlabs/Module/Blocks.php:154 +msgid "Blocks" +msgstr "Блокировки" + +#: ../../include/text.php:2459 ../../Zotlabs/Module/Menu.php:170 +msgid "Menus" +msgstr "Меню" + +#: ../../include/text.php:2460 ../../Zotlabs/Module/Layouts.php:184 +msgid "Layouts" +msgstr "Шаблоны" + +#: ../../include/text.php:2461 +msgid "Pages" +msgstr "Страницы" + +#: ../../include/text.php:2482 ../../Zotlabs/Module/Cal.php:344 +msgid "Import" +msgstr "Импортировать" + +#: ../../include/text.php:2483 +msgid "Import website..." +msgstr "Импорт веб-сайта..." + +#: ../../include/text.php:2484 +msgid "Select folder to import" +msgstr "Выбрать каталог для импорта" + +#: ../../include/text.php:2485 +msgid "Import from a zipped folder:" +msgstr "Импортировать из каталога в zip-архиве:" + +#: ../../include/text.php:2486 +msgid "Import from cloud files:" +msgstr "Импортировать из сетевых файлов:" + +#: ../../include/text.php:2487 +msgid "/cloud/channel/path/to/folder" +msgstr "" + +#: ../../include/text.php:2488 +msgid "Enter path to website files" +msgstr "Введите путь к файлам веб-сайта" + +#: ../../include/text.php:2489 +msgid "Select folder" +msgstr "Выбрать каталог" + +#: ../../include/text.php:2490 +msgid "Export website..." +msgstr "Экспорт веб-сайта..." + +#: ../../include/text.php:2491 +msgid "Export to a zip file" +msgstr "Экспортировать в ZIP файл." + +#: ../../include/text.php:2492 +msgid "website.zip" +msgstr "" + +#: ../../include/text.php:2493 +msgid "Enter a name for the zip file." +msgstr "Введите имя для ZIP файла." + +#: ../../include/text.php:2494 +msgid "Export to cloud files" +msgstr "Эскпортировать в сетевые файлы:" + +#: ../../include/text.php:2495 +msgid "/path/to/export/folder" +msgstr "" + +#: ../../include/text.php:2496 +msgid "Enter a path to a cloud files destination." +msgstr "Введите путь к расположению сетевых файлов." + +#: ../../include/text.php:2497 +msgid "Specify folder" +msgstr "Указать каталог" + +#: ../../include/text.php:2817 ../../Zotlabs/Storage/Browser.php:131 +msgid "Collection" +msgstr "Коллекция" + +#: ../../include/security.php:541 +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 "Не верный токен безопасности для формы. Вероятно, это произошло потому, что форма была открыта слишком долго (> 3-х часов) перед его отправкой." + +#: ../../include/menu.php:118 ../../include/channel.php:1296 +#: ../../include/channel.php:1300 ../../Zotlabs/Lib/ThreadItem.php:128 +#: ../../Zotlabs/Lib/Apps.php:499 ../../Zotlabs/Widget/Cdav.php:126 +#: ../../Zotlabs/Widget/Cdav.php:162 ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Module/Connections.php:339 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Card_edit.php:99 +#: ../../Zotlabs/Module/Editblock.php:114 ../../Zotlabs/Module/Webpages.php:240 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Admin/Profs.php:175 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Menu.php:175 +#: ../../Zotlabs/Module/Settings/Oauth2.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Article_edit.php:99 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:362 ../../Zotlabs/Module/Group.php:216 +#: ../../Zotlabs/Module/Thing.php:266 ../../Zotlabs/Storage/Browser.php:290 +msgid "Edit" +msgstr "Изменить" + +#: ../../include/items.php:891 ../../include/items.php:951 +msgid "(Unknown)" +msgstr "(Неизвестный)" + +#: ../../include/items.php:1137 +msgid "Visible to anybody on the internet." +msgstr "Виден всем в интернете." + +#: ../../include/items.php:1139 +msgid "Visible to you only." +msgstr "Видно только вам." + +#: ../../include/items.php:1141 +msgid "Visible to anybody in this network." +msgstr "Видно всем в этой сети." + +#: ../../include/items.php:1143 +msgid "Visible to anybody authenticated." +msgstr "Видно всем аутентифицированным." + +#: ../../include/items.php:1145 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Видно всем в %s." + +#: ../../include/items.php:1147 +msgid "Visible to all connections." +msgstr "Видно всем контактам." + +#: ../../include/items.php:1149 +msgid "Visible to approved connections." +msgstr "Видно только одобренным контактам." + +#: ../../include/items.php:1151 +msgid "Visible to specific connections." +msgstr "Видно указанным контактам." + +#: ../../include/items.php:3566 ../../Zotlabs/Module/Viewsrc.php:25 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../Zotlabs/Module/Admin/Addons.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:94 +#: ../../Zotlabs/Module/Display.php:46 ../../Zotlabs/Module/Display.php:453 +msgid "Item not found." +msgstr "Элемент не найден." + +#: ../../include/items.php:4125 ../../Zotlabs/Module/Group.php:51 +#: ../../Zotlabs/Module/Group.php:181 +msgid "Privacy group not found." +msgstr "Группа безопасности не найдена." + +#: ../../include/items.php:4141 +msgid "Privacy group is empty." +msgstr "Группа безопасности пуста" + +#: ../../include/items.php:4148 +#, php-format +msgid "Privacy group: %s" +msgstr "Группа безопасности: %s" + +#: ../../include/items.php:4158 ../../Zotlabs/Module/Connedit.php:850 +#, php-format +msgid "Connection: %s" +msgstr "Контакт: %s" + +#: ../../include/items.php:4160 +msgid "Connection not found." +msgstr "Контакт не найден." + +#: ../../include/items.php:4502 ../../Zotlabs/Module/Cover_photo.php:269 +msgid "female" +msgstr "женщина" + +#: ../../include/items.php:4503 ../../Zotlabs/Module/Cover_photo.php:270 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s обновила её %2$s" + +#: ../../include/items.php:4504 ../../Zotlabs/Module/Cover_photo.php:271 +msgid "male" +msgstr "мужчина" + +#: ../../include/items.php:4505 ../../Zotlabs/Module/Cover_photo.php:272 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s обновил его %2$s" + +#: ../../include/items.php:4507 ../../Zotlabs/Module/Cover_photo.php:274 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s обновили их %2$s" + +#: ../../include/items.php:4509 +msgid "profile photo" +msgstr "Фотография профиля" + +#: ../../include/items.php:4700 +#, php-format +msgid "[Edited %s]" +msgstr "[Отредактировано %s]" + +#: ../../include/items.php:4700 +msgctxt "edit_activity" +msgid "Post" +msgstr "Публикация" + +#: ../../include/items.php:4700 +msgctxt "edit_activity" +msgid "Comment" +msgstr "Комментарий" + +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "доступно %d приглашение" +msgstr[1] "доступны %d приглашения" +msgstr[2] "доступны %d приглашений" + +#: ../../include/contact_widgets.php:16 ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Advanced" +msgstr "Дополнительно" + +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Поиск каналов" + +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Впишите имя или интерес" + +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Подключить / отслеживать" + +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Примеры: Владимир Ильич, Революционер" + +#: ../../include/contact_widgets.php:23 +#: ../../Zotlabs/Module/Connections.php:338 +#: ../../Zotlabs/Module/Directory.php:401 +#: ../../Zotlabs/Module/Directory.php:406 +msgid "Find" +msgstr "Поиск" + +#: ../../include/contact_widgets.php:24 ../../Zotlabs/Module/Suggest.php:64 +#: ../../Zotlabs/Module/Directory.php:405 +msgid "Channel Suggestions" +msgstr "Рекомендации каналов" + +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Случайный профиль" + +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Пригласить друзей" + +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Расширенный пример: name=ivan and country=russia" + +#: ../../include/contact_widgets.php:53 ../../include/features.php:488 +#: ../../Zotlabs/Widget/Filer.php:28 +#: ../../Zotlabs/Widget/Activity_filter.php:134 +msgid "Saved Folders" +msgstr "Сохранённые каталоги" + +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +#: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 +msgid "Everything" +msgstr "Всё" + +#: ../../include/contact_widgets.php:223 +msgid "Common Connections" +msgstr "Общие контакты" + +#: ../../include/contact_widgets.php:228 +#, php-format +msgid "View all %d common connections" +msgstr "Просмотреть все %d общих контактов" + +#: ../../include/channel.php:35 msgid "Unable to obtain identity information from database" msgstr "Невозможно получить идентификационную информацию из базы данных" -#: ../../include/identity.php:63 +#: ../../include/channel.php:68 msgid "Empty name" msgstr "Пустое имя" -#: ../../include/identity.php:65 +#: ../../include/channel.php:71 msgid "Name too long" msgstr "Слишком длинное имя" -#: ../../include/identity.php:166 +#: ../../include/channel.php:188 msgid "No account identifier" -msgstr "идентификатор аккаунта отсутствует" +msgstr "Идентификатор аккаунта отсутствует" -#: ../../include/identity.php:176 +#: ../../include/channel.php:200 msgid "Nickname is required." msgstr "Требуется псевдоним." -#: ../../include/identity.php:190 +#: ../../include/channel.php:214 ../../include/channel.php:599 +#: ../../Zotlabs/Module/Changeaddr.php:46 msgid "Reserved nickname. Please choose another." -msgstr "" +msgstr "Зарезервированый псевдоним. Пожалуйста, выберите другой." -#: ../../include/identity.php:195 +#: ../../include/channel.php:219 ../../include/channel.php:604 +#: ../../Zotlabs/Module/Changeaddr.php:51 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "Псевдоним имеет недопустимые символы или уже используется на этом сайте." -#: ../../include/identity.php:258 +#: ../../include/channel.php:277 msgid "Unable to retrieve created identity" -msgstr "" +msgstr "Не удается получить созданный идентификатор" -#: ../../include/identity.php:317 +#: ../../include/channel.php:373 msgid "Default Profile" msgstr "Профиль по умолчанию" -#: ../../include/identity.php:342 ../../include/widgets.php:400 -#: ../../include/profile_selectors.php:42 ../../mod/connedit.php:431 +#: ../../include/channel.php:437 ../../include/channel.php:438 +#: ../../include/channel.php:445 ../../include/selectors.php:123 +#: ../../Zotlabs/Widget/Affinity.php:24 ../../Zotlabs/Module/Connedit.php:711 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:73 +#: ../../Zotlabs/Module/Settings/Channel.php:76 +#: ../../Zotlabs/Module/Settings/Channel.php:87 msgid "Friends" msgstr "Друзья" -#: ../../include/identity.php:509 -msgid "Requested channel is not available." -msgstr "Запрашиваемый канал не доступен." +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "Не удается найти изменённый идентификатор" -#: ../../include/identity.php:557 ../../mod/achievements.php:8 -#: ../../mod/profile.php:16 ../../mod/blocks.php:10 ../../mod/connect.php:13 -#: ../../mod/filestorage.php:40 ../../mod/layouts.php:8 -#: ../../mod/webpages.php:8 +#: ../../include/channel.php:1197 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Filestorage.php:51 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Menu.php:91 ../../Zotlabs/Module/Cards.php:33 +#: ../../Zotlabs/Module/Profile.php:20 msgid "Requested profile is not available." msgstr "Запрашиваемый профиль не доступен." -#: ../../include/identity.php:675 ../../include/widgets.php:128 -#: ../../include/widgets.php:168 ../../include/Contact.php:107 -#: ../../mod/directory.php:183 ../../mod/dirprofile.php:164 -#: ../../mod/suggest.php:51 ../../mod/match.php:62 -msgid "Connect" -msgstr "Подключить" - -#: ../../include/identity.php:689 ../../mod/profiles.php:612 +#: ../../include/channel.php:1289 ../../Zotlabs/Module/Profiles.php:728 msgid "Change profile photo" msgstr "Изменить фотографию профиля" -#: ../../include/identity.php:695 -msgid "Profiles" -msgstr "Профили" - -#: ../../include/identity.php:695 -msgid "Manage/edit profiles" -msgstr "Управление / Редактирование профилей" - -#: ../../include/identity.php:696 ../../mod/profiles.php:613 +#: ../../include/channel.php:1297 msgid "Create New Profile" msgstr "Создать новый профиль" -#: ../../include/identity.php:699 -msgid "Edit Profile" -msgstr "Редактировать профиль" - -#: ../../include/identity.php:710 ../../mod/profiles.php:624 +#: ../../include/channel.php:1315 ../../Zotlabs/Module/Profiles.php:820 msgid "Profile Image" msgstr "Изображение профиля" -#: ../../include/identity.php:713 ../../mod/profiles.php:627 -msgid "visible to everybody" -msgstr "видно всем" +#: ../../include/channel.php:1318 +msgid "Visible to everybody" +msgstr "Видно всем" -#: ../../include/identity.php:714 ../../mod/profiles.php:628 +#: ../../include/channel.php:1319 ../../Zotlabs/Module/Profiles.php:725 +#: ../../Zotlabs/Module/Profiles.php:824 msgid "Edit visibility" msgstr "Редактировать видимость" -#: ../../include/identity.php:728 ../../include/identity.php:952 -#: ../../mod/directory.php:158 +#: ../../include/channel.php:1395 ../../include/channel.php:1523 msgid "Gender:" msgstr "Пол:" -#: ../../include/identity.php:729 ../../include/identity.php:996 -#: ../../mod/directory.php:160 -msgid "Status:" -msgstr "Статус:" - -#: ../../include/identity.php:730 ../../include/identity.php:1007 -#: ../../mod/directory.php:162 +#: ../../include/channel.php:1397 ../../include/channel.php:1591 msgid "Homepage:" msgstr "Домашняя страница:" -#: ../../include/identity.php:731 ../../mod/dirprofile.php:151 +#: ../../include/channel.php:1398 msgid "Online Now" msgstr "Сейчас в сети" -#: ../../include/identity.php:796 ../../include/identity.php:876 -#: ../../mod/ping.php:262 -msgid "g A l F d" -msgstr "g A l F d" +#: ../../include/channel.php:1451 +msgid "Change your profile photo" +msgstr "Изменить фотографию вашего профиля" -#: ../../include/identity.php:797 ../../include/identity.php:877 -msgid "F d" -msgstr "F d" +#: ../../include/channel.php:1482 +msgid "Trans" +msgstr "Трансексуал" -#: ../../include/identity.php:842 ../../include/identity.php:917 -#: ../../mod/ping.php:284 -msgid "[today]" -msgstr "[сегодня]" +#: ../../include/channel.php:1484 ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Среднего рода" -#: ../../include/identity.php:854 -msgid "Birthday Reminders" -msgstr "Напоминания о Днях Рождения" +#: ../../include/channel.php:1486 ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Неспецифический" -#: ../../include/identity.php:855 -msgid "Birthdays this week:" -msgstr "Дни Рождения на этой неделе:" - -#: ../../include/identity.php:910 -msgid "[No description]" -msgstr "[без описания]" - -#: ../../include/identity.php:928 -msgid "Event Reminders" -msgstr "Напоминания мероприятий" - -#: ../../include/identity.php:929 -msgid "Events this week:" -msgstr "Мероприятия на этой неделе:" - -#: ../../include/identity.php:942 ../../include/identity.php:1050 -#: ../../include/apps.php:128 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Профиль" - -#: ../../include/identity.php:950 ../../mod/settings.php:935 +#: ../../include/channel.php:1521 ../../Zotlabs/Module/Settings/Channel.php:522 msgid "Full Name:" msgstr "Полное имя:" -#: ../../include/identity.php:957 +#: ../../include/channel.php:1528 msgid "Like this channel" -msgstr "нравиться этот канал" +msgstr "нравится этот канал" -#: ../../include/identity.php:981 +#: ../../include/channel.php:1552 msgid "j F, Y" -msgstr "j F, Y" +msgstr "" -#: ../../include/identity.php:982 +#: ../../include/channel.php:1553 msgid "j F" -msgstr "j F" +msgstr "" -#: ../../include/identity.php:989 +#: ../../include/channel.php:1560 msgid "Birthday:" -msgstr "День Рождения:" +msgstr "День рождения:" -#: ../../include/identity.php:993 +#: ../../include/channel.php:1564 ../../Zotlabs/Module/Directory.php:319 msgid "Age:" msgstr "Возраст:" -#: ../../include/identity.php:1002 +#: ../../include/channel.php:1573 #, php-format msgid "for %1$d %2$s" msgstr "для %1$d %2$s" -#: ../../include/identity.php:1005 ../../mod/profiles.php:535 -msgid "Sexual Preference:" -msgstr "Сексуальная ориентация:" +#: ../../include/channel.php:1585 +msgid "Tags:" +msgstr "Теги:" -#: ../../include/identity.php:1009 ../../mod/profiles.php:537 +#: ../../include/channel.php:1589 +msgid "Sexual Preference:" +msgstr "Сексуальные предпочтения:" + +#: ../../include/channel.php:1593 ../../Zotlabs/Module/Directory.php:335 msgid "Hometown:" msgstr "Родной город:" -#: ../../include/identity.php:1011 -msgid "Tags:" -msgstr "Тэги:" - -#: ../../include/identity.php:1013 ../../mod/profiles.php:538 +#: ../../include/channel.php:1595 msgid "Political Views:" msgstr "Политические взгляды:" -#: ../../include/identity.php:1015 +#: ../../include/channel.php:1597 msgid "Religion:" msgstr "Религия:" -#: ../../include/identity.php:1017 ../../mod/directory.php:164 +#: ../../include/channel.php:1599 ../../Zotlabs/Module/Directory.php:337 msgid "About:" msgstr "О себе:" -#: ../../include/identity.php:1019 +#: ../../include/channel.php:1601 msgid "Hobbies/Interests:" msgstr "Хобби / интересы:" -#: ../../include/identity.php:1021 ../../mod/profiles.php:541 +#: ../../include/channel.php:1603 msgid "Likes:" msgstr "Что вам нравится:" -#: ../../include/identity.php:1023 ../../mod/profiles.php:542 +#: ../../include/channel.php:1605 msgid "Dislikes:" msgstr "Что вам не нравится:" -#: ../../include/identity.php:1026 +#: ../../include/channel.php:1607 msgid "Contact information and Social Networks:" -msgstr "Информация и социальные сети контакта:" +msgstr "Контактная информация и социальные сети:" -#: ../../include/identity.php:1028 +#: ../../include/channel.php:1609 msgid "My other channels:" msgstr "Мои другие каналы:" -#: ../../include/identity.php:1030 +#: ../../include/channel.php:1611 msgid "Musical interests:" msgstr "Музыкальные интересы:" -#: ../../include/identity.php:1032 +#: ../../include/channel.php:1613 msgid "Books, literature:" msgstr "Книги, литература:" -#: ../../include/identity.php:1034 +#: ../../include/channel.php:1615 msgid "Television:" msgstr "Телевидение:" -#: ../../include/identity.php:1036 +#: ../../include/channel.php:1617 msgid "Film/dance/culture/entertainment:" msgstr "Кино / танцы / культура / развлечения:" -#: ../../include/identity.php:1038 +#: ../../include/channel.php:1619 msgid "Love/Romance:" -msgstr "Любовь / Романс:" +msgstr "Любовь / романтика:" -#: ../../include/identity.php:1040 +#: ../../include/channel.php:1621 msgid "Work/employment:" -msgstr "Работа / Занятость:" +msgstr "Работа / занятость:" -#: ../../include/identity.php:1042 +#: ../../include/channel.php:1623 msgid "School/education:" msgstr "Школа / образование:" -#: ../../include/identity.php:1052 +#: ../../include/channel.php:1644 ../../Zotlabs/Lib/Apps.php:331 +#: ../../Zotlabs/Module/Profperm.php:113 +msgid "Profile" +msgstr "Профиль" + +#: ../../include/channel.php:1646 msgid "Like this thing" msgstr "нравится этo" -#: ../../include/network.php:652 -msgid "view full size" -msgstr "посмотреть в полный размер" +#: ../../include/channel.php:1647 ../../Zotlabs/Module/Events.php:691 +#: ../../Zotlabs/Module/Cal.php:341 +msgid "Export" +msgstr "Экспорт" -#: ../../include/text.php:320 -msgid "prev" -msgstr "предыдущий" +#: ../../include/channel.php:2081 ../../Zotlabs/Module/Cover_photo.php:276 +msgid "cover photo" +msgstr "фотография обложки" -#: ../../include/text.php:322 -msgid "first" -msgstr "первый" +#: ../../include/channel.php:2335 ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Введите адрес вашего канала (например: channel@example.com)" -#: ../../include/text.php:351 -msgid "last" -msgstr "последний" +#: ../../include/channel.php:2336 ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Проверка подлинности" -#: ../../include/text.php:354 -msgid "next" -msgstr "следующий" - -#: ../../include/text.php:366 -msgid "older" -msgstr "старший" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "новее" - -#: ../../include/text.php:729 -msgid "No connections" -msgstr "Нет контактов" - -#: ../../include/text.php:742 +#: ../../include/channel.php:2490 ../../Zotlabs/Module/Admin/Accounts.php:91 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d контакт" -msgstr[1] "%d контакта" -msgstr[2] "%d контактов" - -#: ../../include/text.php:754 -msgid "View Connections" -msgstr "Просмотр контактов" - -#: ../../include/text.php:815 ../../include/text.php:829 -#: ../../include/widgets.php:186 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 ../../mod/filer.php:50 -msgid "Save" -msgstr "Запомнить" - -#: ../../include/text.php:895 -msgid "poke" -msgstr "подпихнуть" - -#: ../../include/text.php:896 -msgid "ping" -msgstr "пинг - проверка связи" - -#: ../../include/text.php:896 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:897 -msgid "prod" -msgstr "" - -#: ../../include/text.php:897 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:898 -msgid "slap" -msgstr "" - -#: ../../include/text.php:898 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:899 -msgid "finger" -msgstr "" - -#: ../../include/text.php:899 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:900 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:900 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:909 -msgid "happy" -msgstr "счастливый" - -#: ../../include/text.php:910 -msgid "sad" -msgstr "грустный" - -#: ../../include/text.php:911 -msgid "mellow" -msgstr "спокойный" - -#: ../../include/text.php:912 -msgid "tired" -msgstr "усталый" - -#: ../../include/text.php:913 -msgid "perky" -msgstr "весёлый" - -#: ../../include/text.php:914 -msgid "angry" -msgstr "сердитый" - -#: ../../include/text.php:915 -msgid "stupified" -msgstr "отупевший" - -#: ../../include/text.php:916 -msgid "puzzled" -msgstr "недоумённый" - -#: ../../include/text.php:917 -msgid "interested" -msgstr "заинтересованный" - -#: ../../include/text.php:918 -msgid "bitter" -msgstr "озлобленный" - -#: ../../include/text.php:919 -msgid "cheerful" -msgstr "бодрый" +msgid "Account '%s' deleted" +msgstr "Аккаунт '%s' удален" -#: ../../include/text.php:920 -msgid "alive" -msgstr "энергичный" +#: ../../include/features.php:56 +msgid "General Features" +msgstr "Главные функции" -#: ../../include/text.php:921 -msgid "annoyed" -msgstr "раздражённый" +#: ../../include/features.php:60 ../../Zotlabs/Widget/Newmember.php:62 +msgid "New Member Links" +msgstr "Ссылки для новичков" -#: ../../include/text.php:922 -msgid "anxious" -msgstr "обеспокоенный" +#: ../../include/features.php:61 +msgid "Display new member quick links menu" +msgstr "Показать меню быстрых ссылок для новых участников" -#: ../../include/text.php:923 -msgid "cranky" -msgstr "капризный" +#: ../../include/features.php:69 +msgid "Advanced Profiles" +msgstr "Расширенные профили" -#: ../../include/text.php:924 -msgid "disturbed" -msgstr "встревоженный" +#: ../../include/features.php:70 +msgid "Additional profile sections and selections" +msgstr "Дополнительные секции и выборы профиля" -#: ../../include/text.php:925 -msgid "frustrated" -msgstr "разочарованный" +#: ../../include/features.php:78 +msgid "Profile Import/Export" +msgstr "Импорт / экспорт профиля" -#: ../../include/text.php:926 -msgid "depressed" -msgstr "" +#: ../../include/features.php:79 +msgid "Save and load profile details across sites/channels" +msgstr "Сохранение и загрузка настроек профиля на всех сайтах / каналах" -#: ../../include/text.php:927 -msgid "motivated" -msgstr "мотивированный" +#: ../../include/features.php:87 +msgid "Web Pages" +msgstr "Веб-страницы" -#: ../../include/text.php:928 -msgid "relaxed" -msgstr "расслабленный" +#: ../../include/features.php:88 +msgid "Provide managed web pages on your channel" +msgstr "Предоставлять управляемые веб-страницы на Вашем канале" -#: ../../include/text.php:929 -msgid "surprised" -msgstr "удивленный" +#: ../../include/features.php:97 +msgid "Provide a wiki for your channel" +msgstr "Предоставьте Wiki для вашего канала" -#: ../../include/text.php:1090 -msgid "Monday" -msgstr "Понедельник" +#: ../../include/features.php:114 +msgid "Private Notes" +msgstr "Личные заметки" + +#: ../../include/features.php:115 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)" + +#: ../../include/features.php:124 +msgid "Create personal planning cards" +msgstr "Создать личные карточки планирования" + +#: ../../include/features.php:134 +msgid "Create interactive articles" +msgstr "Создать интерактивные статьи" + +#: ../../include/features.php:142 +msgid "Navigation Channel Select" +msgstr "Выбор канала навигации" + +#: ../../include/features.php:143 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Изменить канал напрямую из выпадающего меню" + +#: ../../include/features.php:151 +msgid "Photo Location" +msgstr "Местоположение фотографии" + +#: ../../include/features.php:152 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Если данные о местоположении доступны на загруженных фотографий, связать их с картой." + +#: ../../include/features.php:160 +msgid "Access Controlled Chatrooms" +msgstr "Получить доступ к контролируемым чатам" + +#: ../../include/features.php:161 +msgid "Provide chatrooms and chat services with access control." +msgstr "Предоставлять чаты и их службы с контролем доступа." + +#: ../../include/features.php:170 +msgid "Smart Birthdays" +msgstr "\"Умные\" Дни рождений" + +#: ../../include/features.php:171 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Сделать уведомления о днях рождения зависимыми от часового пояса в том случае, если ваши друзья разбросаны по планете." + +#: ../../include/features.php:179 +msgid "Event Timezone Selection" +msgstr "Выбор часового пояса события" + +#: ../../include/features.php:180 +msgid "Allow event creation in timezones other than your own." +msgstr "Разрешить создание события в часовой зоне отличной от вашей" + +#: ../../include/features.php:189 +msgid "Premium Channel" +msgstr "Премиум-канал" + +#: ../../include/features.php:190 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Позволяет установить ограничения и условия для подключающихся к вашему каналу" + +#: ../../include/features.php:198 +msgid "Advanced Directory Search" +msgstr "Расширенный поиск в каталоге" + +#: ../../include/features.php:199 +msgid "Allows creation of complex directory search queries" +msgstr "Позволяет создание сложных поисковых запросов в каталоге" + +#: ../../include/features.php:207 +msgid "Advanced Theme and Layout Settings" +msgstr "Расширенный настройки темы и отображения" + +#: ../../include/features.php:208 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Разрешает тонкую настройку тем и шаблонов страниц" + +#: ../../include/features.php:217 +msgid "Access Control and Permissions" +msgstr "Управление доступом и разрешениями" + +#: ../../include/features.php:222 +msgid "Enable management and selection of privacy groups" +msgstr "Включить управление и выбор групп безопасности" + +#: ../../include/features.php:230 +msgid "Multiple Profiles" +msgstr "Несколько профилей" + +#: ../../include/features.php:231 +msgid "Ability to create multiple profiles" +msgstr "Возможность создания нескольких профилей" + +#: ../../include/features.php:240 ../../Zotlabs/Widget/Settings_menu.php:108 +#: ../../Zotlabs/Module/Settings/Permcats.php:99 +msgid "Permission Categories" +msgstr "Категории разрешений" + +#: ../../include/features.php:241 +msgid "Create custom connection permission limits" +msgstr "Создать пользовательские ограничения на доступ к подключению" + +#: ../../include/features.php:249 +msgid "OAuth1 Clients" +msgstr "Клиенты OAuth1" + +#: ../../include/features.php:250 +msgid "Manage OAuth1 authenticatication tokens for mobile and remote apps." +msgstr "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений." + +#: ../../include/features.php:258 +msgid "OAuth2 Clients" +msgstr "Клиенты OAuth2" + +#: ../../include/features.php:259 +msgid "Manage OAuth2 authenticatication tokens for mobile and remote apps." +msgstr "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений." + +#: ../../include/features.php:267 +msgid "Access Tokens" +msgstr "Токены доступа" + +#: ../../include/features.php:268 +msgid "Create access tokens so that non-members can access private content." +msgstr "Создать токены доступа для доступа к приватному содержимому." + +#: ../../include/features.php:279 +msgid "Post Composition Features" +msgstr "Функции создания публикаций" + +#: ../../include/features.php:283 +msgid "Large Photos" +msgstr "Большие фотографии" + +#: ../../include/features.php:284 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Включить большие (1024px) миниатюры изображений в публикациях. Если не включено, использовать маленькие (640px) миниатюры." + +#: ../../include/features.php:292 ../../Zotlabs/Widget/Settings_menu.php:133 +#: ../../Zotlabs/Module/Sources.php:99 +msgid "Channel Sources" +msgstr "Источники канала" + +#: ../../include/features.php:293 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Автоматический импорт контента из других каналов или лент" + +#: ../../include/features.php:301 +msgid "Even More Encryption" +msgstr "Еще больше шифрования" + +#: ../../include/features.php:302 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Разрешить дополнительное end-to-end шифрование содержимого с общим секретным ключом" + +#: ../../include/features.php:310 +msgid "Enable Voting Tools" +msgstr "Включить инструменты голосования" + +#: ../../include/features.php:311 +msgid "Provide a class of post which others can vote on" +msgstr "Предоставь класс публикаций с возможностью голосования" + +#: ../../include/features.php:319 +msgid "Disable Comments" +msgstr "Отключить комментарии" + +#: ../../include/features.php:320 +msgid "Provide the option to disable comments for a post" +msgstr "Предоставить возможность отключать комментарии для публикаций" + +#: ../../include/features.php:328 +msgid "Delayed Posting" +msgstr "Задержанная публикация" + +#: ../../include/features.php:329 +msgid "Allow posts to be published at a later date" +msgstr "Разрешить размешать публикации следующими датами" + +#: ../../include/features.php:337 +msgid "Content Expiration" +msgstr "Истечение срока действия содержимого" + +#: ../../include/features.php:338 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Удалять публикации / комментарии и / или личные сообщения" + +#: ../../include/features.php:346 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Подавлять дублирующие публикации / комментарии" + +#: ../../include/features.php:347 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Предотвращает появление публикаций с одинаковым содержимым если интервал между ними менее 2 минут" + +#: ../../include/features.php:355 +msgid "Auto-save drafts of posts and comments" +msgstr "Автоматически сохранять черновики публикаций и комментариев" + +#: ../../include/features.php:356 +msgid "" +"Automatically saves post and comment drafts in local browser storage to help " +"prevent accidental loss of compositions" +msgstr "Автоматически сохраняет черновики публикаций и комментариев в локальном хранилище браузера для предотвращения их случайной утраты" + +#: ../../include/features.php:367 +msgid "Network and Stream Filtering" +msgstr "Фильтрация сети и потока" + +#: ../../include/features.php:371 +msgid "Search by Date" +msgstr "Поиск по дате" + +#: ../../include/features.php:372 +msgid "Ability to select posts by date ranges" +msgstr "Возможность выбора сообщений по диапазонам дат" + +#: ../../include/features.php:381 ../../Zotlabs/Widget/Savedsearch.php:83 +msgid "Saved Searches" +msgstr "Сохранённые поиски" + +#: ../../include/features.php:382 +msgid "Save search terms for re-use" +msgstr "Сохранять результаты поиска для повторного использования" + +#: ../../include/features.php:390 +msgid "Alternate Stream Order" +msgstr "Отображение потока" + +#: ../../include/features.php:391 +msgid "" +"Ability to order the stream by last post date, last comment date or " +"unthreaded activities" +msgstr "Возможность показывать поток по дате последнего сообщения, последнего комментария или в порядке поступления" + +#: ../../include/features.php:399 +msgid "Contact Filter" +msgstr "Фильтр контактов" + +#: ../../include/features.php:400 +msgid "Ability to display only posts of a selected contact" +msgstr "Возможность показа публикаций только от выбранных контактов" + +#: ../../include/features.php:408 +msgid "Forum Filter" +msgstr "Фильтр по форумам" + +#: ../../include/features.php:409 +msgid "Ability to display only posts of a specific forum" +msgstr "Возможность показа публикаций только определённого форума" + +#: ../../include/features.php:417 +msgid "Personal Posts Filter" +msgstr "Персональный фильтр публикаций" + +#: ../../include/features.php:418 +msgid "Ability to display only posts that you've interacted on" +msgstr "Возможность показа только тех публикаций с которыми вы взаимодействовали" + +#: ../../include/features.php:426 +msgid "Affinity Tool" +msgstr "Инструмент сходства / соответствия" + +#: ../../include/features.php:427 +msgid "Filter stream activity by depth of relationships" +msgstr "Фильтровать потоки активности по глубине отношений" + +#: ../../include/features.php:435 ../../Zotlabs/Lib/Apps.php:304 +msgid "Suggest Channels" +msgstr "Предлагаемые каналы" + +#: ../../include/features.php:436 +msgid "Show friend and connection suggestions" +msgstr "Показать предложения в друзья" + +#: ../../include/features.php:444 +msgid "Connection Filtering" +msgstr "Фильтрация контактов" + +#: ../../include/features.php:445 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Фильтр входящих сообщений от контактов на основе ключевых слов / контента" + +#: ../../include/features.php:457 +msgid "Post/Comment Tools" +msgstr "Инструменты публикаций / комментариев" + +#: ../../include/features.php:461 +msgid "Community Tagging" +msgstr "Отметки сообщества" + +#: ../../include/features.php:462 +msgid "Ability to tag existing posts" +msgstr "Возможность помечать тегами существующие публикации" -#: ../../include/text.php:1090 -msgid "Tuesday" -msgstr "Вторник" +#: ../../include/features.php:470 +msgid "Post Categories" +msgstr "Категории публикаций" -#: ../../include/text.php:1090 -msgid "Wednesday" -msgstr "Среда" +#: ../../include/features.php:471 +msgid "Add categories to your posts" +msgstr "Добавить категории для ваших публикаций" -#: ../../include/text.php:1090 -msgid "Thursday" -msgstr "Четверг" +#: ../../include/features.php:479 +msgid "Emoji Reactions" +msgstr "Реакции Emoji" -#: ../../include/text.php:1090 -msgid "Friday" -msgstr "Пятница" +#: ../../include/features.php:480 +msgid "Add emoji reaction ability to posts" +msgstr "Возможность добавлять реакции Emoji к публикациям" -#: ../../include/text.php:1090 -msgid "Saturday" -msgstr "Суббота" +#: ../../include/features.php:489 +msgid "Ability to file posts under folders" +msgstr "Возможность размещать публикации в каталогах" -#: ../../include/text.php:1090 -msgid "Sunday" -msgstr "Воскресенье" +#: ../../include/features.php:497 +msgid "Dislike Posts" +msgstr "Не нравящиеся публикации" -#: ../../include/text.php:1094 -msgid "January" -msgstr "Январь" +#: ../../include/features.php:498 +msgid "Ability to dislike posts/comments" +msgstr "Возможность отмечать не нравящиеся публикации / комментарии" -#: ../../include/text.php:1094 -msgid "February" -msgstr "Февраль" +#: ../../include/features.php:506 +msgid "Star Posts" +msgstr "Помечать сообщения" -#: ../../include/text.php:1094 -msgid "March" -msgstr "Март" +#: ../../include/features.php:507 +msgid "Ability to mark special posts with a star indicator" +msgstr "Возможность отметить специальные сообщения индикатором-звёздочкой" -#: ../../include/text.php:1094 -msgid "April" -msgstr "Апрель" +#: ../../include/features.php:515 +msgid "Tag Cloud" +msgstr "Облако тегов" -#: ../../include/text.php:1094 -msgid "May" -msgstr "Май" +#: ../../include/features.php:516 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Показывает личное облако тегов на странице канала" -#: ../../include/text.php:1094 -msgid "June" -msgstr "Июнь" - -#: ../../include/text.php:1094 -msgid "July" -msgstr "Июль" - -#: ../../include/text.php:1094 -msgid "August" -msgstr "Август" - -#: ../../include/text.php:1094 -msgid "September" -msgstr "Сентябрь" - -#: ../../include/text.php:1094 -msgid "October" -msgstr "Октябрь" - -#: ../../include/text.php:1094 -msgid "November" -msgstr "Ноябрь" - -#: ../../include/text.php:1094 -msgid "December" -msgstr "Декабрь" - -#: ../../include/text.php:1172 -msgid "unknown.???" -msgstr "неизвестный.???" - -#: ../../include/text.php:1173 -msgid "bytes" -msgstr "байт" - -#: ../../include/text.php:1208 -msgid "remove category" -msgstr "" - -#: ../../include/text.php:1257 -msgid "remove from file" -msgstr "" - -#: ../../include/text.php:1318 ../../include/text.php:1330 -msgid "Click to open/close" -msgstr "Нажмите, чтобы открыть/закрыть" - -#: ../../include/text.php:1485 ../../mod/events.php:355 -msgid "Link to Source" -msgstr "Ссылка на источник" - -#: ../../include/text.php:1504 -msgid "Select a page layout: " -msgstr "" - -#: ../../include/text.php:1507 ../../include/text.php:1572 -msgid "default" -msgstr "по умолчанию" - -#: ../../include/text.php:1543 -msgid "Page content type: " -msgstr "" - -#: ../../include/text.php:1584 -msgid "Select an alternate language" -msgstr "Выбор альтернативного языка" - -#: ../../include/text.php:1718 -msgid "activity" -msgstr "активность" - -#: ../../include/text.php:1977 -msgid "Design" -msgstr "Дизайн" - -#: ../../include/text.php:1979 -msgid "Blocks" -msgstr "Блоки" - -#: ../../include/text.php:1980 -msgid "Menus" -msgstr "Меню" - -#: ../../include/text.php:1981 -msgid "Layouts" -msgstr "Шаблоны" - -#: ../../include/text.php:1982 -msgid "Pages" -msgstr "Страницы" - -#: ../../include/apps.php:118 -msgid "Site Admin" -msgstr "Админ сайта" - -#: ../../include/apps.php:120 -msgid "Address Book" -msgstr "Адресная книга" - -#: ../../include/apps.php:134 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Настроение" - -#: ../../include/apps.php:138 -msgid "Probe" -msgstr "" - -#: ../../include/apps.php:139 -msgid "Suggest" -msgstr "" - -#: ../../include/apps.php:224 ../../mod/settings.php:79 -#: ../../mod/settings.php:541 -msgid "Update" -msgstr "Обновление" - -#: ../../include/apps.php:224 -msgid "Install" -msgstr "Установка" - -#: ../../include/apps.php:229 -msgid "Purchase" -msgstr "" - -#: ../../include/apps.php:313 ../../include/apps.php:364 -#: ../../mod/connedit.php:434 -msgid "Unknown" -msgstr "Неизвестный" - -#: ../../include/zot.php:607 -msgid "Invalid data packet" -msgstr "Неверный пакет данных" - -#: ../../include/zot.php:617 -msgid "Unable to verify channel signature" -msgstr "Невозможно проверить сигнатуру канала" - -#: ../../include/zot.php:814 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "" - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "" - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[без темы]" - -#: ../../include/message.php:42 +#: ../../include/message.php:40 msgid "Unable to determine sender." msgstr "Невозможно определить отправителя." -#: ../../include/message.php:143 +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "Получатель не предоставлен." + +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[без темы]" + +#: ../../include/message.php:214 msgid "Stored post could not be verified." -msgstr "" +msgstr "Сохранённая публикация не может быть проверена." -#: ../../include/plugin.php:486 ../../include/plugin.php:488 -msgid "Click here to upgrade." -msgstr "Нажмите здесь, чтобы обновить." +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Часто" -#: ../../include/plugin.php:494 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Ежечасно" -#: ../../include/plugin.php:499 -msgid "This action is not available under your subscription plan." -msgstr "" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Дважды в день" -#: ../../include/widgets.php:80 -msgid "System" -msgstr "Система" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Ежедневно" -#: ../../include/widgets.php:83 -msgid "Create Personal App" -msgstr "Создать собственное приложение" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Еженедельно" -#: ../../include/widgets.php:84 -msgid "Edit Personal App" -msgstr "Редактировать собственное приложение" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Ежемесячно" -#: ../../include/widgets.php:130 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Игнорировать / Скрыть" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "В настоящее время мужской" -#: ../../include/widgets.php:136 ../../mod/connections.php:267 -msgid "Suggestions" -msgstr "Рекомендации" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "В настоящее время женский" -#: ../../include/widgets.php:137 -msgid "See more..." -msgstr "Просмотреть больше..." +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "В основном мужской" -#: ../../include/widgets.php:159 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "В основном женский" -#: ../../include/widgets.php:165 -msgid "Add New Connection" -msgstr "Добавить новый контакт" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Трансгендер" -#: ../../include/widgets.php:166 -msgid "Enter the channel address" -msgstr "Введите адрес канала" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Интерсексуал" -#: ../../include/widgets.php:167 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Пример: bob@example.com, http://example.com/barbara" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Транссексуал" -#: ../../include/widgets.php:184 -msgid "Notes" -msgstr "Заметки" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Гермафродит" -#: ../../include/widgets.php:256 -msgid "Remove term" -msgstr "Удалить термин" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Не решил" -#: ../../include/widgets.php:335 -msgid "Archives" -msgstr "Архивы" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Мужчины" -#: ../../include/widgets.php:397 -msgid "Refresh" -msgstr "Обновить" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Женщины" -#: ../../include/widgets.php:398 ../../mod/connedit.php:428 -msgid "Me" -msgstr "Я" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Гей" -#: ../../include/widgets.php:399 ../../mod/connedit.php:430 -msgid "Best Friends" -msgstr "Лучшие друзья" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Лесбиянка" -#: ../../include/widgets.php:401 -msgid "Co-workers" -msgstr "Сотрудники" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Без предпочтений" -#: ../../include/widgets.php:402 ../../mod/connedit.php:432 -msgid "Former Friends" -msgstr "Приятели" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Бисексуал" -#: ../../include/widgets.php:403 ../../mod/connedit.php:433 -msgid "Acquaintances" -msgstr "Знакомые" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Автосексуал" -#: ../../include/widgets.php:404 -msgid "Everybody" -msgstr "Все" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Воздержание" -#: ../../include/widgets.php:436 -msgid "Account settings" -msgstr "Настройки аккаунта" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Девственник" -#: ../../include/widgets.php:442 -msgid "Channel settings" -msgstr "Настройки канала" - -#: ../../include/widgets.php:448 -msgid "Additional features" -msgstr "Дополнительные функции" - -#: ../../include/widgets.php:454 -msgid "Feature settings" -msgstr "Настройки компонентов" - -#: ../../include/widgets.php:460 -msgid "Display settings" -msgstr "Настройки отображения" - -#: ../../include/widgets.php:466 -msgid "Connected apps" -msgstr "Подключенные приложения" - -#: ../../include/widgets.php:472 -msgid "Export channel" -msgstr "Экспорт канала" - -#: ../../include/widgets.php:484 -msgid "Automatic Permissions (Advanced)" -msgstr "Автоматические разрешения (дополнительно)" - -#: ../../include/widgets.php:494 -msgid "Premium Channel Settings" -msgstr "Настройки премиум канала" - -#: ../../include/widgets.php:531 -msgid "Check Mail" -msgstr "Проверить снова" - -#: ../../include/widgets.php:612 -msgid "Chat Rooms" -msgstr "Чаты" - -#: ../../include/widgets.php:630 -msgid "Bookmarked Chatrooms" -msgstr "Закладки чатов" - -#: ../../include/widgets.php:648 -msgid "Suggested Chatrooms" -msgstr "Рекомендуемые чаты" - -#: ../../include/ItemObject.php:118 -msgid "Save to Folder" -msgstr "Сохранить в папку" - -#: ../../include/ItemObject.php:130 ../../include/ItemObject.php:142 -msgid "View all" -msgstr "Просмотреть все" - -#: ../../include/ItemObject.php:139 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "не-нравится" -msgstr[1] "не-нравится" -msgstr[2] "не-нравится" - -#: ../../include/ItemObject.php:167 -msgid "Add Star" -msgstr "Добавить маркировку" - -#: ../../include/ItemObject.php:168 -msgid "Remove Star" -msgstr "Удалить маркировку" - -#: ../../include/ItemObject.php:169 -msgid "Toggle Star Status" -msgstr "Переключить статус маркировки" - -#: ../../include/ItemObject.php:173 -msgid "starred" -msgstr "помеченные" - -#: ../../include/ItemObject.php:190 -msgid "Add Tag" -msgstr "Добавить тег" - -#: ../../include/ItemObject.php:208 ../../mod/photos.php:974 -msgid "I like this (toggle)" -msgstr "мне это нравится (переключение)" - -#: ../../include/ItemObject.php:209 ../../mod/photos.php:975 -msgid "I don't like this (toggle)" -msgstr "мне это не нравится (переключение)" - -#: ../../include/ItemObject.php:211 -msgid "Share This" -msgstr "Поделиться этим" - -#: ../../include/ItemObject.php:211 -msgid "share" -msgstr "поделиться" - -#: ../../include/ItemObject.php:235 ../../include/ItemObject.php:236 -#, php-format -msgid "View %s's profile - %s" -msgstr "Просмотр %s's профиля - %s" - -#: ../../include/ItemObject.php:237 -msgid "to" -msgstr "к" - -#: ../../include/ItemObject.php:238 -msgid "via" -msgstr "через" - -#: ../../include/ItemObject.php:239 -msgid "Wall-to-Wall" -msgstr "Стена-к-Стене" - -#: ../../include/ItemObject.php:240 -msgid "via Wall-To-Wall:" -msgstr "через Стена-к-Стене:" - -#: ../../include/ItemObject.php:274 -msgid "Save Bookmarks" -msgstr "Сохранить закладки" - -#: ../../include/ItemObject.php:275 -msgid "Add to Calendar" -msgstr "Добавить в календарь" - -#: ../../include/ItemObject.php:283 -msgctxt "noun" -msgid "Likes" -msgstr "нравится" - -#: ../../include/ItemObject.php:284 -msgctxt "noun" -msgid "Dislikes" -msgstr "не-нравится" - -#: ../../include/ItemObject.php:315 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d комментарий" -msgstr[1] "%d комментария" -msgstr[2] "%d комментариев" - -#: ../../include/ItemObject.php:316 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] показать все" - -#: ../../include/ItemObject.php:580 ../../mod/photos.php:993 -#: ../../mod/photos.php:1080 -msgid "This is you" -msgstr "Это вы" - -#: ../../include/ItemObject.php:582 ../../include/js_strings.php:6 -#: ../../mod/photos.php:995 ../../mod/photos.php:1082 -msgid "Comment" -msgstr "Комментарий" - -#: ../../include/ItemObject.php:583 ../../mod/mood.php:135 -#: ../../mod/settings.php:515 ../../mod/settings.php:627 -#: ../../mod/settings.php:655 ../../mod/settings.php:679 -#: ../../mod/settings.php:749 ../../mod/settings.php:927 -#: ../../mod/poke.php:166 ../../mod/profiles.php:515 ../../mod/chat.php:177 -#: ../../mod/chat.php:211 ../../mod/connect.php:92 ../../mod/connedit.php:476 -#: ../../mod/setup.php:307 ../../mod/setup.php:350 ../../mod/pdledit.php:58 -#: ../../mod/photos.php:563 ../../mod/photos.php:668 ../../mod/photos.php:956 -#: ../../mod/photos.php:996 ../../mod/photos.php:1083 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/events.php:492 ../../mod/filestorage.php:137 -#: ../../mod/fsuggest.php:108 ../../mod/group.php:81 ../../mod/admin.php:442 -#: ../../mod/admin.php:751 ../../mod/admin.php:886 ../../mod/admin.php:1019 -#: ../../mod/admin.php:1218 ../../mod/admin.php:1305 ../../mod/thing.php:286 -#: ../../mod/thing.php:329 ../../mod/import.php:393 ../../mod/invite.php:156 -#: ../../mod/mail.php:223 ../../mod/mail.php:335 ../../mod/appman.php:99 -#: ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/blogga/php/config.php:67 -#: ../../view/theme/blogga/view/theme/blog/config.php:67 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Отправить" - -#: ../../include/ItemObject.php:584 -msgid "Bold" -msgstr "Жирный" - -#: ../../include/ItemObject.php:585 -msgid "Italic" -msgstr "Курсив" - -#: ../../include/ItemObject.php:586 -msgid "Underline" -msgstr "Подчеркнутый" - -#: ../../include/ItemObject.php:587 -msgid "Quote" -msgstr "Цитата" - -#: ../../include/ItemObject.php:588 -msgid "Code" -msgstr "Код" - -#: ../../include/ItemObject.php:589 -msgid "Image" -msgstr "Изображение" - -#: ../../include/ItemObject.php:590 -msgid "Link" -msgstr "Ссылка" - -#: ../../include/ItemObject.php:591 -msgid "Video" -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/js_strings.php:5 msgid "Delete this item?" msgstr "Удалить этот элемент?" +#: ../../include/js_strings.php:6 ../../Zotlabs/Lib/ThreadItem.php:756 +#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1244 +msgid "Comment" +msgstr "Комментарий" + +#: ../../include/js_strings.php:7 ../../Zotlabs/Lib/ThreadItem.php:463 +#, php-format +msgid "%s show all" +msgstr "%s показать всё" + #: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] показать меньше" +#, php-format +msgid "%s show less" +msgstr "%s показать меньше" #: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] развернуть" +#, php-format +msgid "%s expand" +msgstr "%s развернуть" #: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] свернуть" +#, php-format +msgid "%s collapse" +msgstr "%s свернуть" #: ../../include/js_strings.php:11 msgid "Password too short" @@ -2989,7 +6605,7 @@ msgstr "Пароль слишком короткий" msgid "Passwords do not match" msgstr "Пароли не совпадают" -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 +#: ../../include/js_strings.php:13 msgid "everybody" msgstr "все" @@ -2999,4844 +6615,8241 @@ msgstr "Тайный пароль" #: ../../include/js_strings.php:15 msgid "Passphrase hint" -msgstr "" +msgstr "Подсказка для пароля" #: ../../include/js_strings.php:16 msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "" +msgstr "Уведомление: Права доступа изменились, но до сих пор не сохранены." #: ../../include/js_strings.php:17 msgid "close all" msgstr "закрыть все" -#: ../../include/js_strings.php:19 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Здесь нет ничего нового" -#: ../../include/js_strings.php:20 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Оценкa этoго канала (общедоступно)" + +#: ../../include/js_strings.php:20 ../../Zotlabs/Module/Connedit.php:870 +#: ../../Zotlabs/Module/Rate.php:155 +msgid "Rating" +msgstr "Оценка" #: ../../include/js_strings.php:21 -msgid "ago" -msgstr "тому назад" - -#: ../../include/js_strings.php:22 -msgid "from now" -msgstr "с этого времени" +msgid "Describe (optional)" +msgstr "Охарактеризовать (необязательно)" #: ../../include/js_strings.php:23 -msgid "less than a minute" -msgstr "менее чем одну минуту назад" +msgid "Please enter a link URL" +msgstr "Пожалуйста, введите URL ссылки" #: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?" + +#: ../../include/js_strings.php:25 ../../Zotlabs/Module/Cdav.php:872 +#: ../../Zotlabs/Module/Pubsites.php:52 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Location" +msgstr "Место" + +#: ../../include/js_strings.php:26 +msgid "lovely" +msgstr "прекрасно" + +#: ../../include/js_strings.php:27 +msgid "wonderful" +msgstr "замечательно" + +#: ../../include/js_strings.php:28 +msgid "fantastic" +msgstr "фантастично" + +#: ../../include/js_strings.php:29 +msgid "great" +msgstr "отлично" + +#: ../../include/js_strings.php:30 +msgid "" +"Your chosen nickname was either already taken or not valid. Please use our " +"suggestion (" +msgstr "Выбранный вами псевдоним уже используется или недействителен. Попробуйте использовать наше предложение (" + +#: ../../include/js_strings.php:31 +msgid ") or enter a new one." +msgstr ") или введите новый." + +#: ../../include/js_strings.php:32 +msgid "Thank you, this nickname is valid." +msgstr "Спасибо, этот псевдоним может быть использован." + +#: ../../include/js_strings.php:33 +msgid "A channel name is required." +msgstr "Требуется название канала." + +#: ../../include/js_strings.php:34 +msgid "This is a " +msgstr "Это " + +#: ../../include/js_strings.php:35 +msgid " channel name" +msgstr " название канала" + +#: ../../include/js_strings.php:41 +msgid "timeago.prefixAgo" +msgstr "" + +#: ../../include/js_strings.php:42 +msgid "timeago.prefixFromNow" +msgstr "" + +#: ../../include/js_strings.php:43 +msgid "timeago.suffixAgo" +msgstr "назад" + +#: ../../include/js_strings.php:44 +msgid "timeago.suffixFromNow" +msgstr "" + +#: ../../include/js_strings.php:47 +msgid "less than a minute" +msgstr "менее чем одну минуту" + +#: ../../include/js_strings.php:48 msgid "about a minute" msgstr "около минуты" -#: ../../include/js_strings.php:25 +#: ../../include/js_strings.php:49 #, php-format msgid "%d minutes" -msgstr "%d мин." +msgstr "%d минут" -#: ../../include/js_strings.php:26 +#: ../../include/js_strings.php:50 msgid "about an hour" msgstr "около часа" -#: ../../include/js_strings.php:27 +#: ../../include/js_strings.php:51 #, php-format msgid "about %d hours" -msgstr "около %d час." +msgstr "около %d часов" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:52 msgid "a day" msgstr "день" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:53 #, php-format msgid "%d days" -msgstr "%d дн." +msgstr "%d дней" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:54 msgid "about a month" msgstr "около месяца" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:55 #, php-format msgid "%d months" -msgstr "%d мес." +msgstr "%d месяцев" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:56 msgid "about a year" msgstr "около года" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:57 #, php-format msgid "%d years" msgstr "%d лет" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:58 msgid " " msgstr " " -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:59 msgid "timeago.numbers" -msgstr "timeago.numbers" +msgstr "" -#: ../../include/Contact.php:123 +#: ../../include/js_strings.php:65 +msgctxt "long" +msgid "May" +msgstr "Май" + +#: ../../include/js_strings.php:73 +msgid "Jan" +msgstr "Янв" + +#: ../../include/js_strings.php:74 +msgid "Feb" +msgstr "Фев" + +#: ../../include/js_strings.php:75 +msgid "Mar" +msgstr "Мар" + +#: ../../include/js_strings.php:76 +msgid "Apr" +msgstr "Апр" + +#: ../../include/js_strings.php:77 +msgctxt "short" +msgid "May" +msgstr "Май" + +#: ../../include/js_strings.php:78 +msgid "Jun" +msgstr "Июн" + +#: ../../include/js_strings.php:79 +msgid "Jul" +msgstr "Июл" + +#: ../../include/js_strings.php:80 +msgid "Aug" +msgstr "Авг" + +#: ../../include/js_strings.php:81 +msgid "Sep" +msgstr "Сен" + +#: ../../include/js_strings.php:82 +msgid "Oct" +msgstr "Окт" + +#: ../../include/js_strings.php:83 +msgid "Nov" +msgstr "Ноя" + +#: ../../include/js_strings.php:84 +msgid "Dec" +msgstr "Дек" + +#: ../../include/js_strings.php:92 +msgid "Sun" +msgstr "Вск" + +#: ../../include/js_strings.php:93 +msgid "Mon" +msgstr "Пон" + +#: ../../include/js_strings.php:94 +msgid "Tue" +msgstr "Вт" + +#: ../../include/js_strings.php:95 +msgid "Wed" +msgstr "Ср" + +#: ../../include/js_strings.php:96 +msgid "Thu" +msgstr "Чет" + +#: ../../include/js_strings.php:97 +msgid "Fri" +msgstr "Пят" + +#: ../../include/js_strings.php:98 +msgid "Sat" +msgstr "Суб" + +#: ../../include/js_strings.php:99 +msgctxt "calendar" +msgid "today" +msgstr "сегодня" + +#: ../../include/js_strings.php:100 +msgctxt "calendar" +msgid "month" +msgstr "месяц" + +#: ../../include/js_strings.php:101 +msgctxt "calendar" +msgid "week" +msgstr "неделя" + +#: ../../include/js_strings.php:102 +msgctxt "calendar" +msgid "day" +msgstr "день" + +#: ../../include/js_strings.php:103 +msgctxt "calendar" +msgid "All day" +msgstr "Весь день" + +#: ../../include/oembed.php:224 +msgid "View PDF" +msgstr "Просмотреть PDF" + +#: ../../include/oembed.php:347 +msgid " by " +msgstr " по " + +#: ../../include/oembed.php:348 +msgid " on " +msgstr " на " + +#: ../../include/oembed.php:377 +msgid "Embedded content" +msgstr "Встроенное содержимое" + +#: ../../include/oembed.php:386 +msgid "Embedding disabled" +msgstr "Встраивание отключено" + +#: ../../include/photos.php:151 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Файл превышает предельный размер для сайта в %lu байт" + +#: ../../include/photos.php:162 +msgid "Image file is empty." +msgstr "Файл изображения пуст." + +#: ../../include/photos.php:196 ../../Zotlabs/Module/Profile_photo.php:225 +#: ../../Zotlabs/Module/Cover_photo.php:205 +msgid "Unable to process image" +msgstr "Не удается обработать изображение" + +#: ../../include/photos.php:327 +msgid "Photo storage failed." +msgstr "Ошибка хранилища фотографий." + +#: ../../include/photos.php:376 +msgid "a new photo" +msgstr "новая фотография" + +#: ../../include/photos.php:380 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s опубликовал %2$s в %3$s" + +#: ../../include/photos.php:668 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Photos.php:1383 ../../Zotlabs/Module/Photos.php:1384 +msgid "Recent Photos" +msgstr "Последние фотографии" + +#: ../../include/photos.php:672 +msgid "Upload New Photos" +msgstr "Загрузить новые фотографии" + +#: ../../include/connections.php:133 msgid "New window" msgstr "Новое окно" -#: ../../include/Contact.php:124 +#: ../../include/connections.php:134 msgid "Open the selected location in a different window or browser tab" -msgstr "Откройте выбранное местоположение в другом окне или вкладке браузера" +msgstr "Открыть выбранное местоположение в другом окне или вкладке браузера" -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Мужской" +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "Wiki успешно обновлена" -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Женский" +#: ../../Zotlabs/Lib/NativeWiki.php:205 +msgid "Wiki files deleted successfully" +msgstr "Wiki успешно удалена" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "В настоящее время мужской" +#: ../../Zotlabs/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "Начинающий / Базовый" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "В настоящее время женский" +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "1. Новичок - не опытный, но желающий учиться" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "В основном мужской" +#: ../../Zotlabs/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "2. Промежуточный - более удобный" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "В основном женский" +#: ../../Zotlabs/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "3. Продвинутый - очень удобный" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Транссексуал" +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "4. Эксперт - я умею программировать" -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "5. Волшебник - возможно я знаю больше чем ты" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Транссексуал" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "Общедоступно" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Гермафродит" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "Любому в сети $Projectname" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Среднего рода" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Неспецифический" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Другой" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Нерешительный" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Самец" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Самка" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Гей" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Лесбиянка" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Без предпочтений" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Двуполый" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Воздержанный" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Девственница" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Отклоняющийся от нормы" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Фетиш" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Множественный" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Несексуальный" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Одинок" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Уединенный" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Доступный" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Недоступный" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "Столкновение" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "Влюбленный" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Датировка" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Неверный" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Секс наркоман" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Друзья / Преимущества" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Случайный" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Помолвленный" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Женат" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "Мысленно женат" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Партнеры" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Сожительствующие" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Счастливый" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Не нуждаюсь" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Колеблющийся" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Разведенный" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "Мысленно разведенный" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Овдовевший" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Неопределенный" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Это сложно" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Не заботьтесь" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Спроси меня" - -#: ../../include/auth.php:79 -msgid "Logged out." -msgstr "Вышел из системы." - -#: ../../include/auth.php:198 -msgid "Failed authentication" -msgstr "Ошибка аутентификации" - -#: ../../include/auth.php:213 ../../mod/openid.php:188 -msgid "Login failed." -msgstr "Не удалось войти." - -#: ../../include/items.php:306 ../../mod/profperm.php:23 -#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/like.php:202 -#: ../../index.php:360 -msgid "Permission denied" -msgstr "Доступ запрещен" - -#: ../../include/items.php:830 -msgid "(Unknown)" -msgstr "(Неизвестный)" - -#: ../../include/items.php:3618 ../../mod/home.php:67 ../../mod/display.php:32 -#: ../../mod/filestorage.php:18 ../../mod/admin.php:159 -#: ../../mod/admin.php:923 ../../mod/admin.php:1126 ../../mod/thing.php:78 -#: ../../mod/viewsrc.php:18 -msgid "Item not found." -msgstr "Элемент не найден." - -#: ../../include/items.php:4051 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Коллекция не найдена." - -#: ../../include/items.php:4066 -msgid "Collection is empty." -msgstr "Коллекция пуста." - -#: ../../include/items.php:4073 +#: ../../Zotlabs/Lib/PermissionDescription.php:110 #, php-format -msgid "Collection: %s" -msgstr "Коллекции: %s" +msgid "Any account on %s" +msgstr "Любой аккаунт в %s" -#: ../../include/items.php:4084 +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "Любой из моих контактов" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "Только те контакты, кому я дам разрешение" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Любой аутентифицированный (может включать посетителей их других сетей)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "Любые контакты включая те, которые вы ещё не одобрили" + +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Это настройка по умолчанию для аудитории ваших обычных потоков и публикаций" + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Это настройка по умолчанию для тех, кто может просматривать профиль вашего основного канала" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "Это настройка по умолчанию для тех, кто может просматривать ваши контакты" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Это настройка по умолчанию для тех, кто может просматривать ваше хранилище файлов и фотографий" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" +msgstr "Это настройка по умолчанию для аудитории ваших веб-страниц" + +#: ../../Zotlabs/Lib/ThreadItem.php:152 ../../Zotlabs/Storage/Browser.php:280 +msgid "Admin Delete" +msgstr "Удалено администратором" + +#: ../../Zotlabs/Lib/ThreadItem.php:162 ../../Zotlabs/Module/Filer.php:54 +msgid "Save to Folder" +msgstr "Сохранить в каталог" + +#: ../../Zotlabs/Lib/ThreadItem.php:183 +msgid "I will attend" +msgstr "Я буду присутствовать" + +#: ../../Zotlabs/Lib/ThreadItem.php:183 +msgid "I will not attend" +msgstr "Я не буду присутствовать" + +#: ../../Zotlabs/Lib/ThreadItem.php:183 +msgid "I might attend" +msgstr "Я возможно буду присутствовать" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 +msgid "I agree" +msgstr "Я согласен" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 +msgid "I disagree" +msgstr "Я не согласен" + +#: ../../Zotlabs/Lib/ThreadItem.php:193 +msgid "I abstain" +msgstr "Я воздержался" + +#: ../../Zotlabs/Lib/ThreadItem.php:212 ../../Zotlabs/Lib/ThreadItem.php:224 +#: ../../Zotlabs/Module/Photos.php:1161 ../../Zotlabs/Module/Photos.php:1173 +msgid "View all" +msgstr "Просмотреть все" + +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Add Tag" +msgstr "Добавить тег" + +#: ../../Zotlabs/Lib/ThreadItem.php:285 ../../Zotlabs/Module/Photos.php:1105 +msgid "I like this (toggle)" +msgstr "мне это нравится (переключение)" + +#: ../../Zotlabs/Lib/ThreadItem.php:286 ../../Zotlabs/Module/Photos.php:1106 +msgid "I don't like this (toggle)" +msgstr "мне это не нравится (переключение)" + +#: ../../Zotlabs/Lib/ThreadItem.php:290 +msgid "Share This" +msgstr "Поделиться этим" + +#: ../../Zotlabs/Lib/ThreadItem.php:290 +msgid "share" +msgstr "поделиться" + +#: ../../Zotlabs/Lib/ThreadItem.php:299 +msgid "Delivery Report" +msgstr "Отчёт о доставке" + +#: ../../Zotlabs/Lib/ThreadItem.php:317 #, php-format -msgid "Connection: %s" -msgstr "Контакты: %s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d комментарий" +msgstr[1] "%d комментария" +msgstr[2] "%d комментариев" -#: ../../include/items.php:4087 -msgid "Connection not found." -msgstr "Контакт не найден." - -#: ../../include/permissions.php:13 -msgid "Can view my \"public\" stream and posts" -msgstr "Может просматривать мои \"публичные\" поток и сообщения" - -#: ../../include/permissions.php:14 -msgid "Can view my \"public\" channel profile" -msgstr "Может просматривать мой \"публичный\" профиль канала" - -#: ../../include/permissions.php:15 -msgid "Can view my \"public\" photo albums" -msgstr "Может просматривать мои \"публичные\" фотоальбомы" - -#: ../../include/permissions.php:16 -msgid "Can view my \"public\" address book" -msgstr "Может просматривать мою \"публичную\" адресную книгу" - -#: ../../include/permissions.php:17 -msgid "Can view my \"public\" file storage" -msgstr "Может просматривать мои \"публичные\" файлы" - -#: ../../include/permissions.php:18 -msgid "Can view my \"public\" pages" -msgstr "Может просматривать мои \"публичные\" страницы" - -#: ../../include/permissions.php:21 -msgid "Can send me their channel stream and posts" -msgstr "Может прислать мне свои потоки и сообщения" - -#: ../../include/permissions.php:22 -msgid "Can post on my channel page (\"wall\")" -msgstr "Может публиковать на моей странице канала (\"стена\")" - -#: ../../include/permissions.php:23 -msgid "Can comment on my posts" -msgstr "Может комментировать мои сообщения" - -#: ../../include/permissions.php:24 -msgid "Can send me private mail messages" -msgstr "Может отправлять мне личные сообщения по эл. почте" - -#: ../../include/permissions.php:25 -msgid "Can post photos to my photo albums" -msgstr "Может публиковать фотографии в мои фотоальбомы" - -#: ../../include/permissions.php:26 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "" - -#: ../../include/permissions.php:26 -msgid "Advanced - useful for creating group forum channels" -msgstr "" - -#: ../../include/permissions.php:27 -msgid "Can chat with me (when available)" -msgstr "Можете общаться со мной в чате (при наличии)" - -#: ../../include/permissions.php:28 -msgid "Can write to my \"public\" file storage" -msgstr "Может писать в моё \"публичное\" хранилище файлов" - -#: ../../include/permissions.php:29 -msgid "Can edit my \"public\" pages" -msgstr "Может редактировать мои \"публичные\" страницы" - -#: ../../include/permissions.php:31 -msgid "Can source my \"public\" posts in derived channels" -msgstr "" - -#: ../../include/permissions.php:31 -msgid "Somewhat advanced - very useful in open communities" -msgstr "" - -#: ../../include/permissions.php:33 -msgid "Can administer my channel resources" -msgstr "Может администрировать мои ресурсы канала" - -#: ../../include/permissions.php:33 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "" - -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "" - -#: ../../mod/mitem.php:14 ../../mod/menu.php:92 -msgid "Menu not found." -msgstr "Меню не найдено." - -#: ../../mod/mitem.php:47 -msgid "Menu element updated." -msgstr "Меню обновлено." - -#: ../../mod/mitem.php:51 -msgid "Unable to update menu element." -msgstr "" - -#: ../../mod/mitem.php:57 -msgid "Menu element added." -msgstr "Элемент меню добавлен." - -#: ../../mod/mitem.php:61 -msgid "Unable to add menu element." -msgstr "Невозможно добавить элемент меню." - -#: ../../mod/mitem.php:78 ../../mod/dirprofile.php:175 ../../mod/menu.php:120 -#: ../../mod/xchan.php:27 -msgid "Not found." -msgstr "Не найдено." - -#: ../../mod/mitem.php:96 -msgid "Manage Menu Elements" -msgstr "Управление элементов меню" - -#: ../../mod/mitem.php:99 -msgid "Edit menu" -msgstr "Редактировать меню" - -#: ../../mod/mitem.php:102 -msgid "Edit element" -msgstr "Редактировать элемент" - -#: ../../mod/mitem.php:103 -msgid "Drop element" -msgstr "Удалить элемент" - -#: ../../mod/mitem.php:104 -msgid "New element" -msgstr "Новый элемент" - -#: ../../mod/mitem.php:105 -msgid "Edit this menu container" -msgstr "" - -#: ../../mod/mitem.php:106 -msgid "Add menu element" -msgstr "Добавить элемент меню" - -#: ../../mod/mitem.php:107 -msgid "Delete this menu item" -msgstr "Удалить элемент меню" - -#: ../../mod/mitem.php:108 -msgid "Edit this menu item" -msgstr "Редактировать элемент меню" - -#: ../../mod/mitem.php:131 -msgid "New Menu Element" -msgstr "Новый элемент меню" - -#: ../../mod/mitem.php:133 ../../mod/mitem.php:176 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../mod/mitem.php:134 ../../mod/mitem.php:177 ../../mod/settings.php:960 -msgid "(click to open/close)" -msgstr "(нажмите, чтобы открыть / закрыть)" - -#: ../../mod/mitem.php:136 ../../mod/mitem.php:180 -msgid "Link text" -msgstr "Текст ссылки" - -#: ../../mod/mitem.php:137 ../../mod/mitem.php:181 -msgid "URL of link" -msgstr "URL ссылки" - -#: ../../mod/mitem.php:138 ../../mod/mitem.php:182 -msgid "Use Red magic-auth if available" -msgstr "" - -#: ../../mod/mitem.php:139 ../../mod/mitem.php:183 -msgid "Open link in new window" -msgstr "Открыть ссылку в новом окне" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Order in list" -msgstr "" - -#: ../../mod/mitem.php:141 ../../mod/mitem.php:185 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../mod/mitem.php:154 -msgid "Menu item not found." -msgstr "Элемент меню не найден." - -#: ../../mod/mitem.php:163 -msgid "Menu item deleted." -msgstr "Элемент меню удален." - -#: ../../mod/mitem.php:165 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../mod/mitem.php:174 -msgid "Edit Menu Element" -msgstr "Редактировать элемент меню" - -#: ../../mod/mitem.php:186 ../../mod/menu.php:114 -msgid "Modify" -msgstr "Изменить" - -#: ../../mod/ping.php:192 -msgid "sent you a private message" -msgstr "отправил вам личное сообщение" - -#: ../../mod/ping.php:250 -msgid "added your channel" -msgstr "добавил ваш канал" - -#: ../../mod/ping.php:294 -msgid "posted an event" -msgstr "" - -#: ../../mod/acl.php:239 -msgid "network" -msgstr "сеть" - -#: ../../mod/settings.php:71 -msgid "Name is required" -msgstr "Необходимо имя" - -#: ../../mod/settings.php:75 -msgid "Key and Secret are required" -msgstr "" - -#: ../../mod/settings.php:195 -msgid "Passwords do not match. Password unchanged." -msgstr "Пароли не совпадают. Пароль не изменён." - -#: ../../mod/settings.php:199 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Пустые пароли не допускаются. Пароль не изменён." - -#: ../../mod/settings.php:212 -msgid "Password changed." -msgstr "Пароль изменен." - -#: ../../mod/settings.php:214 -msgid "Password update failed. Please try again." -msgstr "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз." - -#: ../../mod/settings.php:228 -msgid "Not valid email." -msgstr "Не действительный адрес электронной почты." - -#: ../../mod/settings.php:231 -msgid "Protected email address. Cannot change to that email." -msgstr "Защищенный адрес электронной почты. Нельзя изменить." - -#: ../../mod/settings.php:240 -msgid "System failure storing new email. Please try again." -msgstr "" - -#: ../../mod/settings.php:443 -msgid "Settings updated." -msgstr "Настройки обновленны." - -#: ../../mod/settings.php:514 ../../mod/settings.php:540 -#: ../../mod/settings.php:576 -msgid "Add application" -msgstr "Добавить приложения" - -#: ../../mod/settings.php:517 ../../mod/settings.php:543 -#: ../../mod/admin.php:893 -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:35 -msgid "Name" -msgstr "Имя" - -#: ../../mod/settings.php:517 -msgid "Name of application" -msgstr "Название приложения" - -#: ../../mod/settings.php:518 ../../mod/settings.php:544 -msgid "Consumer Key" -msgstr "Ключ клиента" - -#: ../../mod/settings.php:518 ../../mod/settings.php:519 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "" - -#: ../../mod/settings.php:519 ../../mod/settings.php:545 -msgid "Consumer Secret" -msgstr "Секрет клиента" - -#: ../../mod/settings.php:520 ../../mod/settings.php:546 -msgid "Redirect" -msgstr "Перенаправление" - -#: ../../mod/settings.php:520 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "" - -#: ../../mod/settings.php:521 ../../mod/settings.php:547 -msgid "Icon url" -msgstr "URL-адрес значка" - -#: ../../mod/settings.php:521 -msgid "Optional" -msgstr "Необязательно" - -#: ../../mod/settings.php:532 -msgid "You can't edit this application." -msgstr "Вы не можете редактировать это приложение." - -#: ../../mod/settings.php:575 -msgid "Connected Apps" -msgstr "Подключенные приложения" - -#: ../../mod/settings.php:579 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:580 -msgid "No name" -msgstr "Без названия" - -#: ../../mod/settings.php:581 -msgid "Remove authorization" -msgstr "Удалить разрешение" - -#: ../../mod/settings.php:592 -msgid "No feature settings configured" -msgstr "Параметры функций не настроены" - -#: ../../mod/settings.php:600 -msgid "Feature Settings" -msgstr "Настройки функции" - -#: ../../mod/settings.php:623 -msgid "Account Settings" -msgstr "Настройки аккаунта" - -#: ../../mod/settings.php:624 -msgid "Password Settings" -msgstr "Настройки пароля" - -#: ../../mod/settings.php:625 -msgid "New Password:" -msgstr "Новый пароль:" - -#: ../../mod/settings.php:626 -msgid "Confirm:" -msgstr "Подтверждение:" - -#: ../../mod/settings.php:626 -msgid "Leave password fields blank unless changing" -msgstr "Оставьте поля пустыми, если не меняется" - -#: ../../mod/settings.php:628 ../../mod/settings.php:936 -msgid "Email Address:" -msgstr "Адрес электронной почты:" - -#: ../../mod/settings.php:629 -msgid "Remove Account" -msgstr "Удалить аккаунт" - -#: ../../mod/settings.php:630 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "" - -#: ../../mod/settings.php:646 -msgid "Off" -msgstr "Выкл." - -#: ../../mod/settings.php:646 -msgid "On" -msgstr "Вкл." - -#: ../../mod/settings.php:653 -msgid "Additional Features" -msgstr "Дополнительные функции" - -#: ../../mod/settings.php:678 -msgid "Connector Settings" -msgstr "Настройки соединителя" - -#: ../../mod/settings.php:708 ../../mod/admin.php:390 -msgid "No special theme for mobile devices" -msgstr "Нет специальной темы для мобильных устройств" - -#: ../../mod/settings.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../Zotlabs/Lib/ThreadItem.php:348 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (экспериментальный)" +msgid "View %s's profile - %s" +msgstr "Просмотр %s профиля - %s" -#: ../../mod/settings.php:747 -msgid "Display Settings" -msgstr "Настройки отображения" +#: ../../Zotlabs/Lib/ThreadItem.php:351 +msgid "to" +msgstr "к" -#: ../../mod/settings.php:753 -msgid "Display Theme:" -msgstr "Тема отображения:" +#: ../../Zotlabs/Lib/ThreadItem.php:352 +msgid "via" +msgstr "через" -#: ../../mod/settings.php:754 -msgid "Mobile Theme:" -msgstr "Мобильная тема отображения:" +#: ../../Zotlabs/Lib/ThreadItem.php:353 +msgid "Wall-to-Wall" +msgstr "Стена-к-Стене" -#: ../../mod/settings.php:755 -msgid "Update browser every xx seconds" -msgstr "Обновление браузера каждые ХХ секунд" +#: ../../Zotlabs/Lib/ThreadItem.php:354 +msgid "via Wall-To-Wall:" +msgstr "через Стена-к-Стене:" -#: ../../mod/settings.php:755 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Минимум 10 секунд, без максимума" +#: ../../Zotlabs/Lib/ThreadItem.php:379 +msgid "Attend" +msgstr "Посетить" -#: ../../mod/settings.php:756 -msgid "Maximum number of conversations to load at any time:" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:380 +msgid "Attendance Options" +msgstr "Параметры посещаемости" -#: ../../mod/settings.php:756 -msgid "Maximum of 100 items" -msgstr "Максимум 100 элементов" +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Vote" +msgstr "Голосовать" -#: ../../mod/settings.php:757 -msgid "Don't show emoticons" -msgstr "Не показывать emoticons" +#: ../../Zotlabs/Lib/ThreadItem.php:382 +msgid "Voting Options" +msgstr "Параметры голосования" -#: ../../mod/settings.php:758 -msgid "System Page Layout Editor - (advanced)" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:404 +msgid "Add to Calendar" +msgstr "Добавить в календарь" -#: ../../mod/settings.php:793 -msgid "Nobody except yourself" -msgstr "Никто, кроме вас" +#: ../../Zotlabs/Lib/ThreadItem.php:413 +#: ../../Zotlabs/Module/Notifications.php:60 +msgid "Mark all seen" +msgstr "Отметить как просмотренное" -#: ../../mod/settings.php:794 -msgid "Only those you specifically allow" -msgstr "Только комы вы разрешили" +#: ../../Zotlabs/Lib/ThreadItem.php:420 ../../Zotlabs/Module/Photos.php:1292 +msgctxt "noun" +msgid "Likes" +msgstr "Нравится" -#: ../../mod/settings.php:795 -msgid "Approved connections" -msgstr "Утвержденные контакты" +#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../Zotlabs/Module/Photos.php:1293 +msgctxt "noun" +msgid "Dislikes" +msgstr "Не нравится" -#: ../../mod/settings.php:796 -msgid "Any connections" -msgstr "Все контакты" +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../Zotlabs/Module/Photos.php:1124 +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "This is you" +msgstr "Это вы" -#: ../../mod/settings.php:797 -msgid "Anybody on this website" -msgstr "Любой на этом веб-сайте" +#: ../../Zotlabs/Lib/ThreadItem.php:763 +msgid "Image" +msgstr "Изображение" -#: ../../mod/settings.php:798 -msgid "Anybody in this network" -msgstr "Любой в этой сети" +#: ../../Zotlabs/Lib/ThreadItem.php:765 +msgid "Insert Link" +msgstr "Вставить ссылку" -#: ../../mod/settings.php:799 -msgid "Anybody authenticated" -msgstr "" +#: ../../Zotlabs/Lib/ThreadItem.php:766 +msgid "Video" +msgstr "Видео" -#: ../../mod/settings.php:800 -msgid "Anybody on the internet" -msgstr "Любой в интернете" +#: ../../Zotlabs/Lib/ThreadItem.php:776 +msgid "Your full name (required)" +msgstr "Ваше полное имя (требуется)" -#: ../../mod/settings.php:877 -msgid "Publish your default profile in the network directory" -msgstr "Публикация вашего профиля по умолчанию в каталоге сети" +#: ../../Zotlabs/Lib/ThreadItem.php:777 +msgid "Your email address (required)" +msgstr "Ваш адрес электронной почты (требуется)" -#: ../../mod/settings.php:877 ../../mod/settings.php:882 -#: ../../mod/settings.php:953 ../../mod/api.php:106 ../../mod/profiles.php:493 -#: ../../mod/admin.php:420 -msgid "No" -msgstr "Нет" +#: ../../Zotlabs/Lib/ThreadItem.php:778 +msgid "Your website URL (optional)" +msgstr "URL вашего вебсайта (необязательно)" -#: ../../mod/settings.php:877 ../../mod/settings.php:882 -#: ../../mod/settings.php:953 ../../mod/api.php:105 ../../mod/profiles.php:492 -#: ../../mod/admin.php:422 -msgid "Yes" -msgstr "Да" +#: ../../Zotlabs/Lib/Apps.php:295 ../../Zotlabs/Module/Apps.php:50 +msgid "Apps" +msgstr "Приложения" -#: ../../mod/settings.php:882 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" +#: ../../Zotlabs/Lib/Apps.php:298 +msgid "Site Admin" +msgstr "Администратор сайта" -#: ../../mod/settings.php:886 ../../mod/profile_photo.php:365 -msgid "or" -msgstr "или" +#: ../../Zotlabs/Lib/Apps.php:300 +msgid "View Bookmarks" +msgstr "Просмотреть закадки" -#: ../../mod/settings.php:891 -msgid "Your channel address is" -msgstr "Адрес канала:" +#: ../../Zotlabs/Lib/Apps.php:301 +msgid "My Chatrooms" +msgstr "Мои чаты" -#: ../../mod/settings.php:925 -msgid "Channel Settings" -msgstr "Настройки канала" +#: ../../Zotlabs/Lib/Apps.php:303 +msgid "Remote Diagnostics" +msgstr "Удалённая диагностика" -#: ../../mod/settings.php:934 -msgid "Basic Settings" -msgstr "Основные настройки" +#: ../../Zotlabs/Lib/Apps.php:307 +msgid "Activity" +msgstr "Активность" -#: ../../mod/settings.php:937 -msgid "Your Timezone:" -msgstr "Часовой пояс:" +#: ../../Zotlabs/Lib/Apps.php:312 +msgid "Channel Home" +msgstr "Главная канала" -#: ../../mod/settings.php:938 -msgid "Default Post Location:" -msgstr "Откуда по умолчанию:" +#: ../../Zotlabs/Lib/Apps.php:316 +msgid "Directory" +msgstr "Каталог" -#: ../../mod/settings.php:938 -msgid "Geographical location to display on your posts" -msgstr "" +#: ../../Zotlabs/Lib/Apps.php:318 +msgid "Mail" +msgstr "Переписка" -#: ../../mod/settings.php:939 -msgid "Use Browser Location:" -msgstr "Использовать указание браузерa:" +#: ../../Zotlabs/Lib/Apps.php:319 ../../Zotlabs/Module/Mood.php:135 +msgid "Mood" +msgstr "Настроение" -#: ../../mod/settings.php:941 -msgid "Adult Content" -msgstr "Содержимое для взрослых" +#: ../../Zotlabs/Lib/Apps.php:321 +msgid "Chat" +msgstr "Чат" -#: ../../mod/settings.php:941 +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "Probe" +msgstr "Проба" + +#: ../../Zotlabs/Lib/Apps.php:324 +msgid "Suggest" +msgstr "Предложить" + +#: ../../Zotlabs/Lib/Apps.php:325 +msgid "Random Channel" +msgstr "Случайный канал" + +#: ../../Zotlabs/Lib/Apps.php:326 +msgid "Invite" +msgstr "Пригласить" + +#: ../../Zotlabs/Lib/Apps.php:327 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "Функции" + +#: ../../Zotlabs/Lib/Apps.php:329 +msgid "Post" +msgstr "Публикация" + +#: ../../Zotlabs/Lib/Apps.php:332 +msgid "Profiles" +msgstr "Редактировать профиль" + +#: ../../Zotlabs/Lib/Apps.php:334 +msgid "Notifications" +msgstr "Оповещения" + +#: ../../Zotlabs/Lib/Apps.php:335 +msgid "Order Apps" +msgstr "Порядок приложений" + +#: ../../Zotlabs/Lib/Apps.php:480 ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Settings/Oauth2.php:40 +#: ../../Zotlabs/Module/Settings/Oauth2.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:43 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Profiles.php:799 +msgid "Update" +msgstr "Обновить" + +#: ../../Zotlabs/Lib/Apps.php:480 ../../Zotlabs/Module/Admin/Addons.php:422 +msgid "Install" +msgstr "Установить" + +#: ../../Zotlabs/Lib/Apps.php:497 +msgid "Purchase" +msgstr "Купить" + +#: ../../Zotlabs/Lib/Apps.php:501 +msgid "Undelete" +msgstr "Восстановить" + +#: ../../Zotlabs/Lib/Apps.php:509 +msgid "Add to app-tray" +msgstr "Добавить в app-tray" + +#: ../../Zotlabs/Lib/Apps.php:510 +msgid "Remove from app-tray" +msgstr "Удалить из app-tray" + +#: ../../Zotlabs/Lib/Apps.php:511 +msgid "Pin to navbar" +msgstr "Добавить на панель навигации" + +#: ../../Zotlabs/Lib/Apps.php:512 +msgid "Unpin from navbar" +msgstr "Удалить с панели навигации" + +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "Оповещение $Projectname " + +#: ../../Zotlabs/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "Спасибо," + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Это письмо было отправлено %1$s на %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Чтобы прекратить получать эти сообщения, настройте параметры уведомлений в %s" -#: ../../mod/settings.php:943 -msgid "Security and Privacy Settings" -msgstr "Параметры безопасности и конфиденциальности" +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Чтобы прекратить получать эти сообщения, пожалуйста измените %s." -#: ../../mod/settings.php:945 -msgid "Hide my online presence" -msgstr "Скрыть мое присутствие" - -#: ../../mod/settings.php:945 -msgid "Prevents displaying in your profile that you are online" -msgstr "Предотвращает показ в вашем профиле, что вы онлайн" - -#: ../../mod/settings.php:947 -msgid "Simple Privacy Settings:" -msgstr "Быстрые настройки:" - -#: ../../mod/settings.php:948 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "" - -#: ../../mod/settings.php:949 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "" - -#: ../../mod/settings.php:950 -msgid "Private - default private, never open or public" -msgstr "" - -#: ../../mod/settings.php:951 -msgid "Blocked - default blocked to/from everybody" -msgstr "" - -#: ../../mod/settings.php:953 -msgid "Allow others to tag your posts" -msgstr "Разрешить другим помечать сообщения" - -#: ../../mod/settings.php:953 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "" - -#: ../../mod/settings.php:955 -msgid "Advanced Privacy Settings" -msgstr "Дополнительные настройки" - -#: ../../mod/settings.php:957 -msgid "Expire other channel content after this many days" -msgstr "" - -#: ../../mod/settings.php:957 -msgid "0 or blank prevents expiration" -msgstr "" - -#: ../../mod/settings.php:958 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:958 -msgid "May reduce spam activity" -msgstr "Может уменьшить активность спам" - -#: ../../mod/settings.php:959 -msgid "Default Post Permissions" -msgstr "Настройки по умолчанию" - -#: ../../mod/settings.php:971 -msgid "Maximum private messages per day from unknown people:" -msgstr "Максимальное количество личных сообщений от незнакомых людей:" - -#: ../../mod/settings.php:971 -msgid "Useful to reduce spamming" -msgstr "Полезно для уменьшения активности спам" - -#: ../../mod/settings.php:974 +#: ../../Zotlabs/Lib/Enotify.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "Notification Settings" msgstr "Настройки уведомлений" -#: ../../mod/settings.php:975 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:976 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:977 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:978 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:979 -msgid "Send a notification email when:" -msgstr "Отправить уведомление по электронной почте, если:" - -#: ../../mod/settings.php:980 -msgid "You receive a connection request" -msgstr "" - -#: ../../mod/settings.php:981 -msgid "Your connections are confirmed" -msgstr "" - -#: ../../mod/settings.php:982 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:983 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:984 -msgid "You receive a private message" -msgstr "Вы получили личное сообщение" - -#: ../../mod/settings.php:985 -msgid "You receive a friend suggestion" -msgstr "Вы получили предложение дружить" - -#: ../../mod/settings.php:986 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:987 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:990 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:991 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:994 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "" - -#: ../../mod/settings.php:995 -msgid "Miscellaneous Settings" -msgstr "Дополнительные настройки" - -#: ../../mod/settings.php:997 -msgid "Personal menu to display in your channel pages" -msgstr "" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Получатель" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Сделать это сообщение личным" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Пожалуйста, войдите, чтобы продолжить." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "" - -#: ../../mod/post.php:226 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "" - -#: ../../mod/post.php:257 ../../mod/openid.php:72 ../../mod/openid.php:178 +#: ../../Zotlabs/Lib/Enotify.php:123 #, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Добро пожаловать %s. Удаленная аутентификация успешно завершена." - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Элемент недоступен." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" +msgid "%s " msgstr "" -#: ../../mod/block.php:27 ../../mod/page.php:35 -msgid "Invalid item." -msgstr "Недействительный элемент." +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Notify] Получено новое сообщение в %s" -#: ../../mod/block.php:39 ../../mod/chanview.php:77 ../../mod/page.php:47 -#: ../../mod/home.php:54 ../../mod/wall_upload.php:28 -msgid "Channel not found." -msgstr "Канал не найден." +#: ../../Zotlabs/Lib/Enotify.php:129 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s отправил вам новое личное сообщение в %2$s." -#: ../../mod/block.php:75 ../../mod/page.php:83 ../../mod/display.php:100 -#: ../../mod/help.php:72 ../../index.php:236 -msgid "Page not found." +#: ../../Zotlabs/Lib/Enotify.php:130 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s отправил вам %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:130 +msgid "a private message" +msgstr "личное сообщение" + +#: ../../Zotlabs/Lib/Enotify.php:131 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения." + +#: ../../Zotlabs/Lib/Enotify.php:144 +msgid "commented on" +msgstr "прокомментировал" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "liked" +msgstr "понравилось" + +#: ../../Zotlabs/Lib/Enotify.php:158 +msgid "disliked" +msgstr "не понравилось" + +#: ../../Zotlabs/Lib/Enotify.php:201 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]%4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:209 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]%5$s %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:218 +#, php-format +msgid "%1$s %2$s [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s %2$s [zrl=%3$s]ваш %4$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Отмодерирован комментарий к беседе #%1$d по %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Комментарий к беседе #%1$d по %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:233 +#, php-format +msgid "%1$s commented on an item/conversation you have been following." +msgstr "%1$s прокомментировал тему / беседу за которым вы следите." + +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:317 +#: ../../Zotlabs/Lib/Enotify.php:333 ../../Zotlabs/Lib/Enotify.php:358 +#: ../../Zotlabs/Lib/Enotify.php:375 ../../Zotlabs/Lib/Enotify.php:388 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Пожалуйста, посетите %s для просмотра и / или ответа в беседе." + +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "Пожалуйста посетитет %s для одобрения и отклонения комментария." + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s liked [zrl=%2$s]your %3$s[/zrl]" +msgstr "%1$s понравился [zrl=%2$s]ваш %3$s[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:313 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Беседа получила отметку \"нравится\" #%1$d от %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "%1$s liked an item/conversation you created." +msgstr "%1$s нравится тема / беседа которую вы создали." + +#: ../../Zotlabs/Lib/Enotify.php:325 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Notify] %s сделал публикацию на стене вашего профиля" + +#: ../../Zotlabs/Lib/Enotify.php:327 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s сделал публикацию на стене вашего профиля в %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:329 +#, php-format +msgid "%1$s posted to [zrl=%2$s]your wall[/zrl]" +msgstr "%1$s опубликовал на [zrl=%2$s]вашей стене[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:352 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Notify] %s отметил вас" + +#: ../../Zotlabs/Lib/Enotify.php:353 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s отметил вас в %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:354 +#, php-format +msgid "%1$s [zrl=%2$s]tagged you[/zrl]." +msgstr "%1$s [zrl=%2$s]отметил вас[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:365 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Notify] %1$s ткнул вас" + +#: ../../Zotlabs/Lib/Enotify.php:366 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ткнул вас в %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:367 +#, php-format +msgid "%1$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s [zrl=%2$s]ткнул вас[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:382 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Notify] %s отметил вашу публикацию" + +#: ../../Zotlabs/Lib/Enotify.php:383 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s отметил вашу публикацию на %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:384 +#, php-format +msgid "%1$s tagged [zrl=%2$s]your post[/zrl]" +msgstr "%1$s отметил [zrl=%2$s]вашу публикацию[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:395 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Notify] Получено приглашение" + +#: ../../Zotlabs/Lib/Enotify.php:396 +#, php-format +msgid "You've received an new connection request from '%1$s' at %2$s" +msgstr "Вы получили новый запрос контакта от '%1$s' в %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:397 +#, php-format +msgid "You've received [zrl=%1$s]a new connection request[/zrl] from %2$s." +msgstr "Вы получили [zrl=%1$s]новый запрос контакта[/zrl] от %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:400 ../../Zotlabs/Lib/Enotify.php:418 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Вы можете увидеть его профиль по ссылке %s" + +#: ../../Zotlabs/Lib/Enotify.php:402 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта." + +#: ../../Zotlabs/Lib/Enotify.php:409 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Notify] Получено предложение дружить" + +#: ../../Zotlabs/Lib/Enotify.php:410 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Вы получили предложение дружить от '%1$s' в %2$s" + +#: ../../Zotlabs/Lib/Enotify.php:411 +#, php-format +msgid "You've received [zrl=%1$s]a friend suggestion[/zrl] for %2$s from %3$s." +msgstr "Вы получили [zrl=%1$s]предложение дружить[/zrl] для %2$s от %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:416 +msgid "Name:" +msgstr "Имя:" + +#: ../../Zotlabs/Lib/Enotify.php:417 +msgid "Photo:" +msgstr "Фото:" + +#: ../../Zotlabs/Lib/Enotify.php:420 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение." + +#: ../../Zotlabs/Lib/Enotify.php:640 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Уведомление]" + +#: ../../Zotlabs/Lib/Enotify.php:808 +msgid "created a new post" +msgstr "создал новую публикацию" + +#: ../../Zotlabs/Lib/Enotify.php:809 +#, php-format +msgid "commented on %s's post" +msgstr "прокомментировал публикацию %s" + +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "edited a post dated %s" +msgstr "отредактировал публикацию датированную %s" + +#: ../../Zotlabs/Lib/Enotify.php:820 +#, php-format +msgid "edited a comment dated %s" +msgstr "отредактировал комментарий датированный %s" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +msgid "(No Title)" +msgstr "(нет заголовка)" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +msgid "Wiki page create failed." +msgstr "Не удалось создать страницу Wiki." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +msgid "Wiki not found." +msgstr "Wiki не найдена." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:131 +msgid "Destination name already exists" +msgstr "Имя назначения уже существует" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:163 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +msgid "Page not found" msgstr "Страница не найдена." -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "" +#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +msgid "Error reading page content" +msgstr "Ошибка чтения содержимого страницы" -#: ../../mod/profile_photo.php:161 -msgid "Image resize failed." -msgstr "Изменение размера изображения не удалось." +#: ../../Zotlabs/Lib/NativeWikiPage.php:350 +#: ../../Zotlabs/Lib/NativeWikiPage.php:400 +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Error reading wiki" +msgstr "Ошибка чтения Wiki" -#: ../../mod/profile_photo.php:205 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" +#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +msgid "Page update failed." +msgstr "Не удалось обновить страницу." -#: ../../mod/profile_photo.php:232 +#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +msgid "Nothing deleted" +msgstr "Ничего не удалено" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +msgid "Compare: object not found." +msgstr "Сравнение: объект не найден." + +#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +msgid "Page updated" +msgstr "Страница обновлена" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +msgid "Untitled" +msgstr "Не озаглавлено" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +msgid "Wiki resource_id required for git commit" +msgstr "Требуется resource_id Wiki для отправки в Git" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "Сообщение" + +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "по умолчанию" + +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "поклонник" + +#: ../../Zotlabs/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "участник" + +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "издатель" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "" +msgid "Update Error at %s" +msgstr "Ошибка обновления на %s" -#: ../../mod/profile_photo.php:241 -msgid "Unable to process image." -msgstr "Невозможно обработать изображение." - -#: ../../mod/profile_photo.php:290 ../../mod/profile_photo.php:339 -msgid "Photo not available." -msgstr "Фотография не доступна." - -#: ../../mod/profile_photo.php:358 -msgid "Upload File:" -msgstr "Загрузить файл:" - -#: ../../mod/profile_photo.php:359 -msgid "Select a profile:" -msgstr "Выберите профиль:" - -#: ../../mod/profile_photo.php:360 -msgid "Upload Profile Photo" -msgstr "Загрузить фотографию профиля" - -#: ../../mod/profile_photo.php:365 -msgid "skip this step" -msgstr "пропустить этот шаг" - -#: ../../mod/profile_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../mod/profile_photo.php:379 -msgid "Crop Image" -msgstr "Обрезать изображение" - -#: ../../mod/profile_photo.php:380 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../mod/profile_photo.php:382 -msgid "Done Editing" -msgstr "Закончить редактирование" - -#: ../../mod/profile_photo.php:425 -msgid "Image uploaded successfully." -msgstr "Загрузка изображениея прошла успешно." - -#: ../../mod/profile_photo.php:427 -msgid "Image upload failed." -msgstr "Загрузка изображениея прошла безуспешно." - -#: ../../mod/profile_photo.php:436 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "" +msgid "Update %s failed. See error logs." +msgstr "Выполнение %s неудачно. Проверьте системный журнал." -#: ../../mod/blocks.php:66 -msgid "Block Name" -msgstr "Название блока" +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "Отсутствует название комнаты" -#: ../../mod/profiles.php:18 ../../mod/profiles.php:138 -#: ../../mod/profiles.php:168 ../../mod/profiles.php:472 -msgid "Profile not found." -msgstr "Профиль не найден." +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "Название комнаты дублируется" -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Профиль удален." +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "Неверный указатель комнаты." -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Профиль-" +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "Комната не найдена." -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Новый профиль создан." +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "Комната переполнена" -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Профиль недоступен для клонирования." +#: ../../Zotlabs/Widget/Activity_order.php:89 +msgid "Commented Date" +msgstr "По комментариям" -#: ../../mod/profiles.php:178 -msgid "Profile Name is required." -msgstr "Имя профиля требуется." +#: ../../Zotlabs/Widget/Activity_order.php:93 +msgid "Order by last commented date" +msgstr "Сортировка по дате последнего комментария" -#: ../../mod/profiles.php:294 -msgid "Marital Status" -msgstr "Семейное положение" +#: ../../Zotlabs/Widget/Activity_order.php:96 +msgid "Posted Date" +msgstr "По публикациям" -#: ../../mod/profiles.php:298 -msgid "Romantic Partner" -msgstr "Романтический партнер" +#: ../../Zotlabs/Widget/Activity_order.php:100 +msgid "Order by last posted date" +msgstr "Сортировка по дате последней публикации" -#: ../../mod/profiles.php:302 -msgid "Likes" -msgstr "нравится" +#: ../../Zotlabs/Widget/Activity_order.php:103 +msgid "Date Unthreaded" +msgstr "По порядку" -#: ../../mod/profiles.php:306 -msgid "Dislikes" -msgstr "не-нравится" +#: ../../Zotlabs/Widget/Activity_order.php:107 +msgid "Order unthreaded by date" +msgstr "Сортировка в порядке поступления" -#: ../../mod/profiles.php:310 -msgid "Work/Employment" -msgstr "Работа / Занятость" +#: ../../Zotlabs/Widget/Activity_order.php:122 +msgid "Activity Order" +msgstr "Сортировка активности" -#: ../../mod/profiles.php:313 -msgid "Religion" -msgstr "Религия" +#: ../../Zotlabs/Widget/Admin.php:22 ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Site" +msgstr "Сайт" -#: ../../mod/profiles.php:317 -msgid "Political Views" -msgstr "Политические взгляды" +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Module/Admin.php:96 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:180 +msgid "Accounts" +msgstr "Учётные записи" -#: ../../mod/profiles.php:321 -msgid "Gender" -msgstr "Пол" +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Регистрации участников, ожидающие подверждения" -#: ../../mod/profiles.php:325 -msgid "Sexual Preference" -msgstr "Сексуальная ориентация" +#: ../../Zotlabs/Widget/Admin.php:24 ../../Zotlabs/Module/Admin.php:114 +#: ../../Zotlabs/Module/Admin/Channels.php:146 +msgid "Channels" +msgstr "Каналы" -#: ../../mod/profiles.php:329 -msgid "Homepage" -msgstr "Домашняя страница" +#: ../../Zotlabs/Widget/Admin.php:25 ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Security" +msgstr "Безопасность" -#: ../../mod/profiles.php:333 -msgid "Interests" -msgstr "Интересы" +#: ../../Zotlabs/Widget/Admin.php:27 ../../Zotlabs/Module/Admin/Addons.php:342 +#: ../../Zotlabs/Module/Admin/Addons.php:437 +msgid "Addons" +msgstr "Расширения" -#: ../../mod/profiles.php:337 ../../mod/admin.php:893 -msgid "Address" -msgstr "Адрес" +#: ../../Zotlabs/Widget/Admin.php:28 ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 +msgid "Themes" +msgstr "Темы" -#: ../../mod/profiles.php:344 ../../mod/pubsites.php:25 -msgid "Location" -msgstr "Место" +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Просмотр очереди" -#: ../../mod/profiles.php:427 -msgid "Profile updated." -msgstr "Профиль обновлен." +#: ../../Zotlabs/Widget/Admin.php:30 ../../Zotlabs/Module/Admin/Profs.php:168 +msgid "Profile Fields" +msgstr "Поля профиля" -#: ../../mod/profiles.php:491 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Скрывать от просмотра ваш список контактов/друзей в этом профиле?" +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "Обновление базы данных" -#: ../../mod/profiles.php:514 -msgid "Edit Profile Details" -msgstr "Редактирование профиля" +#: ../../Zotlabs/Widget/Admin.php:48 ../../Zotlabs/Widget/Admin.php:58 +#: ../../Zotlabs/Module/Admin/Logs.php:83 +msgid "Logs" +msgstr "Журналы" -#: ../../mod/profiles.php:516 -msgid "View this profile" -msgstr "Посмотреть этот профиль" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Addon Features" +msgstr "Настройки расширений" -#: ../../mod/profiles.php:517 -msgid "Change Profile Photo" -msgstr "Изменить фотографию профиля" +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Задачи" -#: ../../mod/profiles.php:518 -msgid "Create a new profile using these settings" -msgstr "Создайте новый профиль со следующими настройками" +#: ../../Zotlabs/Widget/Suggestions.php:46 ../../Zotlabs/Module/Suggest.php:58 +msgid "Ignore/Hide" +msgstr "Игнорировать / cкрыть" -#: ../../mod/profiles.php:519 -msgid "Clone this profile" -msgstr "Клонировать этот профиль" +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Рекомендации" -#: ../../mod/profiles.php:520 -msgid "Delete this profile" -msgstr "Удалить этот профиль" +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Просмотреть больше..." -#: ../../mod/profiles.php:521 -msgid "Profile Name:" -msgstr "Имя профиля:" +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Полученные сообщения" -#: ../../mod/profiles.php:522 -msgid "Your Full Name:" -msgstr "Ваше полное имя:" +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Отправленные сообщения" -#: ../../mod/profiles.php:523 -msgid "Title/Description:" -msgstr "Название / Описание:" +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Беседы" -#: ../../mod/profiles.php:524 -msgid "Your Gender:" -msgstr "Ваш пол:" +#: ../../Zotlabs/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Сообщений нет." -#: ../../mod/profiles.php:525 +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Удалить беседу" + +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "Выбрать канал" + +#: ../../Zotlabs/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "Чтение-запись" + +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "Только чтение" + +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "Мои календари" + +#: ../../Zotlabs/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "Общие календари" + +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "Поделиться этим календарём" + +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "Имя и цвет календаря" + +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "Создать новый календарь" + +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Module/Articles.php:96 ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Menu.php:181 ../../Zotlabs/Module/New_channel.php:188 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 +msgid "Create" +msgstr "Создать" + +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "Имя календаря" + +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "Инструменты календаря" + +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "Импортировать календарь" + +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "Выбрать календарь для импорта в" + +#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 +#: ../../Zotlabs/Widget/Album.php:97 ../../Zotlabs/Widget/Portfolio.php:110 +#: ../../Zotlabs/Module/Photos.php:717 +#: ../../Zotlabs/Module/Profile_photo.php:459 +#: ../../Zotlabs/Module/Cover_photo.php:395 +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Storage/Browser.php:392 +msgid "Upload" +msgstr "Загрузка" + +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "Адресные книги" + +#: ../../Zotlabs/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "Имя адресной книги" + +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "Создать новую адресную книгу" + +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "Имя адресной книги" + +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "Инструменты адресной книги" + +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "Импортировать адресную книгу" + +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "Выбрать адресную книгу для импорта в" + +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Активность" + +#: ../../Zotlabs/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "Панель управления HQ" + +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "Создать новую публикацию" + +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:91 +msgid "Add new page" +msgstr "Добавить новую страницу" + +#: ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:98 ../../Zotlabs/Module/Dreport.php:151 +msgid "Options" +msgstr "Параметры" + +#: ../../Zotlabs/Widget/Wiki_pages.php:85 +msgid "Wiki Pages" +msgstr "Wiki страницы" + +#: ../../Zotlabs/Widget/Wiki_pages.php:96 +msgid "Page name" +msgstr "Название страницы" + +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Меню личной переписки" + +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Комбинированный вид" + +#: ../../Zotlabs/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "Входящие" + +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Исходящие" + +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Новое сообщение" + +#: ../../Zotlabs/Widget/Photo_rand.php:58 ../../Zotlabs/Widget/Photo.php:48 +msgid "photo/image" +msgstr "фотография / изображение" + +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Архивы" + +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Инструменты для событий" + +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Экспортировать календарь" + +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Импортировать календарь" + +#: ../../Zotlabs/Widget/Wiki_list.php:15 +msgid "Wiki List" +msgstr "Список Wiki" + +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Настройки аккаунта" + +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Настройки канала" + +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Дополнительные функции" + +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "Настройки расширений" + +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Настройки отображения" + +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Управление местоположением" + +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Экспортировать канал" + +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "OAuth1 apps" +msgstr "Приложения OAuth1" + +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "OAuth2 apps" +msgstr "Приложения OAuth2" + +#: ../../Zotlabs/Widget/Settings_menu.php:100 +#: ../../Zotlabs/Module/Settings/Tokens.php:150 +msgid "Guest Access Tokens" +msgstr "Токен гостевого доступа" + +#: ../../Zotlabs/Widget/Settings_menu.php:117 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +msgid "Connection Default Permissions" +msgstr "Разрешения по умолчанию для контакта" + +#: ../../Zotlabs/Widget/Settings_menu.php:125 +msgid "Premium Channel Settings" +msgstr "Настройки премиум-канала" + +#: ../../Zotlabs/Widget/Album.php:78 ../../Zotlabs/Widget/Portfolio.php:87 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1355 +#: ../../Zotlabs/Module/Embedphotos.php:140 +msgid "View Photo" +msgstr "Посмотреть фотографию" + +#: ../../Zotlabs/Widget/Album.php:95 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Module/Photos.php:847 ../../Zotlabs/Module/Embedphotos.php:156 +msgid "Edit Album" +msgstr "Редактировать Фотоальбом" + +#: ../../Zotlabs/Widget/Pubsites.php:12 ../../Zotlabs/Module/Pubsites.php:24 +msgid "Public Hubs" +msgstr "Публичные хабы" + +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Заметки" + +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Обзор" + +#: ../../Zotlabs/Widget/Appstore.php:11 +msgid "App Collections" +msgstr "Коллекции приложений" + +#: ../../Zotlabs/Widget/Appstore.php:13 +msgid "Available Apps" +msgstr "Доступные приложения" + +#: ../../Zotlabs/Widget/Appstore.php:14 +msgid "Installed apps" +msgstr "Установленные приложения" + +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Закладки чатов" + +#: ../../Zotlabs/Widget/Follow.php:22 #, php-format -msgid "Birthday (%s):" -msgstr "Ваш День Рождения (%s):" +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "У вас есть %1$.0f из %2$.0f разрешенных контактов." -#: ../../mod/profiles.php:526 -msgid "Street Address:" -msgstr "Улица:" +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Добавить новый контакт" -#: ../../mod/profiles.php:527 -msgid "Locality/City:" -msgstr "Населенный пункт / город:" +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Введите адрес канала" -#: ../../mod/profiles.php:528 -msgid "Postal/Zip Code:" -msgstr "Почтовый индекс:" +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Пример: ivan@example.com, http://example.com/ivan" -#: ../../mod/profiles.php:529 -msgid "Country:" -msgstr "Страна:" +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Участники чата" -#: ../../mod/profiles.php:530 -msgid "Region/State:" -msgstr "Регион / Область:" +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Рекомендуемые чаты" -#: ../../mod/profiles.php:531 -msgid " Marital Status:" -msgstr "" +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Инструменты оценки" -#: ../../mod/profiles.php:532 -msgid "Who: (if applicable)" -msgstr "Кто: (если это применимо)" +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "Оценить меня" -#: ../../mod/profiles.php:533 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Примеры: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Просмотр оценок" -#: ../../mod/profiles.php:534 -msgid "Since [date]:" -msgstr "С тех пор [date]:" +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Удалить термин" -#: ../../mod/profiles.php:536 -msgid "Homepage URL:" -msgstr "URL-адрес домашней страницы:" +#: ../../Zotlabs/Widget/Affinity.php:22 ../../Zotlabs/Module/Connedit.php:709 +msgid "Me" +msgstr "Я" -#: ../../mod/profiles.php:539 -msgid "Religious Views:" -msgstr "Религиозные взгляды:" +#: ../../Zotlabs/Widget/Affinity.php:23 ../../Zotlabs/Module/Connedit.php:710 +msgid "Family" +msgstr "Семья" -#: ../../mod/profiles.php:540 -msgid "Keywords:" -msgstr "Ключевые слова:" +#: ../../Zotlabs/Widget/Affinity.php:25 ../../Zotlabs/Module/Connedit.php:712 +msgid "Acquaintances" +msgstr "Знакомые" -#: ../../mod/profiles.php:543 -msgid "Example: fishing photography software" -msgstr "Пример: fishing photography software" - -#: ../../mod/profiles.php:544 -msgid "Used in directory listings" -msgstr "" - -#: ../../mod/profiles.php:545 -msgid "Tell us about yourself..." -msgstr "Расскажите нам о себе ..." - -#: ../../mod/profiles.php:546 -msgid "Hobbies/Interests" -msgstr "Хобби / интересы" - -#: ../../mod/profiles.php:547 -msgid "Contact information and Social Networks" -msgstr "Информация и социальные сети контакта" - -#: ../../mod/profiles.php:548 -msgid "My other channels" -msgstr "Мои другие контакты" - -#: ../../mod/profiles.php:549 -msgid "Musical interests" -msgstr "Музыкальные интересы" - -#: ../../mod/profiles.php:550 -msgid "Books, literature" -msgstr "Книги, литература" - -#: ../../mod/profiles.php:551 -msgid "Television" -msgstr "Телевидение" - -#: ../../mod/profiles.php:552 -msgid "Film/dance/culture/entertainment" -msgstr "Кино / танцы / культура / развлечения" - -#: ../../mod/profiles.php:553 -msgid "Love/romance" -msgstr "Любовь / Романс" - -#: ../../mod/profiles.php:554 -msgid "Work/employment" -msgstr "Работа / Занятость" - -#: ../../mod/profiles.php:555 -msgid "School/education" -msgstr "Школа / образование" - -#: ../../mod/profiles.php:560 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "" - -#: ../../mod/profiles.php:570 ../../mod/directory.php:143 -#: ../../mod/dirprofile.php:92 -msgid "Age: " -msgstr "Возраст:" - -#: ../../mod/profiles.php:609 -msgid "Edit/Manage Profiles" -msgstr "Редактирование / Управление профилей" - -#: ../../mod/profiles.php:610 -msgid "Add profile things" -msgstr "" - -#: ../../mod/profiles.php:611 -msgid "Include desirable objects in your profile" -msgstr "" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Закладка добавлена" - -#: ../../mod/bookmarks.php:58 -msgid "My Bookmarks" -msgstr "Мои закладки" - -#: ../../mod/bookmarks.php:69 -msgid "My Connections Bookmarks" -msgstr "Закладки моих контактов" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "" - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Редактор видимости профиля" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Нажмите на канал, чтобы добавить или удалить." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Видно" - -#: ../../mod/profperm.php:139 ../../mod/connections.php:279 -msgid "All Connections" -msgstr "Все контакты" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Публичные сайты" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Hubzilla. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "" - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "URL веб-сайта" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Тип доступа" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Правила регистрации" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Вы должны авторизоваться, чтобы увидеть эту страницу." - -#: ../../mod/channel.php:86 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "" - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Сохранить закладки" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Описание" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "" - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Я в сети" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Новый чат" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Название чата" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Чаты пользователя %1$s" - -#: ../../mod/register.php:43 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:49 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "" - -#: ../../mod/register.php:77 -msgid "Passwords do not match." -msgstr "Пароли не совпадают." - -#: ../../mod/register.php:105 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "" - -#: ../../mod/register.php:111 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: ../../mod/register.php:114 -msgid "Your registration can not be processed." -msgstr "Ваша регистрация не может быть обработана." - -#: ../../mod/register.php:147 -msgid "Registration on this site/hub is by approval only." -msgstr "" - -#: ../../mod/register.php:148 -msgid "Register at another affiliated site/hub" -msgstr "" - -#: ../../mod/register.php:156 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "" - -#: ../../mod/register.php:167 -msgid "Terms of Service" -msgstr "Условия предоставления услуг" - -#: ../../mod/register.php:173 -#, php-format -msgid "I accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:175 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "" - -#: ../../mod/register.php:189 ../../mod/admin.php:443 -msgid "Registration" -msgstr "Регистрация" - -#: ../../mod/register.php:194 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: ../../mod/register.php:195 -msgid "Please enter your invitation code" -msgstr "Пожалуйста, введите Ваш код приглашения" - -#: ../../mod/register.php:198 -msgid "Your email address" -msgstr "Ваш адрес электронной почты" - -#: ../../mod/register.php:199 -msgid "Choose a password" -msgstr "Выберите пароль" - -#: ../../mod/register.php:200 -msgid "Please re-enter your password" -msgstr "Пожалуйста, введите пароль еще раз" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Нет на месте" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Сейчас в сети" - -#: ../../mod/regmod.php:12 -msgid "Please login." -msgstr "Войдите пожалуйста." - -#: ../../mod/cloud.php:113 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "" - -#: ../../mod/removeme.php:49 -msgid "Remove This Channel" -msgstr "Удалить этот канал" - -#: ../../mod/removeme.php:50 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "" - -#: ../../mod/removeme.php:51 -msgid "Please enter your password for verification:" -msgstr "Пожалуйста, введите пароль для проверки:" - -#: ../../mod/removeme.php:52 -msgid "Remove this channel and all its clones from the network" -msgstr "Удалить этот канал и все его клоны из сети" - -#: ../../mod/removeme.php:52 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../mod/removeme.php:53 -msgid "Remove Channel" -msgstr "Удалить канал" - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Не канал." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Общие контакты" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Общих контактов нет." - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Сообщение об ошибке было:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Ошибка проверки подлинности." - -#: ../../mod/rmagic.php:78 -msgid "Remote Authentication" -msgstr "Удаленная аутентификация" - -#: ../../mod/rmagic.php:79 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Введите адрес вашего канала (например: channel@example.com)" - -#: ../../mod/rmagic.php:80 -msgid "Authenticate" -msgstr "Проверка подлинности" - -#: ../../mod/connect.php:55 ../../mod/connect.php:103 -msgid "Continue" -msgstr "Продолжить" - -#: ../../mod/connect.php:84 -msgid "Premium Channel Setup" -msgstr "Установка премиум канала" - -#: ../../mod/connect.php:86 -msgid "Enable premium channel connection restrictions" -msgstr "" - -#: ../../mod/connect.php:87 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "" - -#: ../../mod/connect.php:89 ../../mod/connect.php:109 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "" - -#: ../../mod/connect.php:90 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "" - -#: ../../mod/connect.php:91 ../../mod/connect.php:112 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "" - -#: ../../mod/connect.php:100 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "" - -#: ../../mod/connect.php:108 -msgid "Restricted or Premium Channel" -msgstr "Ограниченный или Премиум канал" - -#: ../../mod/network.php:79 -msgid "No such group" -msgstr "Нет такой группы" - -#: ../../mod/network.php:118 -msgid "Search Results For:" -msgstr "Результаты поиска для:" - -#: ../../mod/network.php:172 -msgid "Collection is empty" -msgstr "Коллекция пуста" - -#: ../../mod/network.php:180 -msgid "Collection: " -msgstr "Коллекции: " - -#: ../../mod/network.php:193 -msgid "Connection: " -msgstr "Контакты: " - -#: ../../mod/network.php:196 -msgid "Invalid connection." -msgstr "" - -#: ../../mod/connections.php:37 ../../mod/connedit.php:64 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/connections.php:51 ../../mod/connedit.php:78 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/connections.php:94 ../../mod/connedit.php:131 -msgid "Connection updated." -msgstr "Связи обновленны." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:133 -msgid "Failed to update connection record." -msgstr "" - -#: ../../mod/connections.php:191 ../../mod/connections.php:292 -msgid "Blocked" -msgstr "Заблокированные" - -#: ../../mod/connections.php:196 ../../mod/connections.php:299 -msgid "Ignored" -msgstr "Игнорируемые" - -#: ../../mod/connections.php:201 ../../mod/connections.php:313 -msgid "Hidden" -msgstr "Скрытые" - -#: ../../mod/connections.php:206 ../../mod/connections.php:306 -msgid "Archived" -msgstr "Зархивированные" - -#: ../../mod/connections.php:230 ../../mod/connections.php:245 +#: ../../Zotlabs/Widget/Affinity.php:26 ../../Zotlabs/Module/Connections.php:94 +#: ../../Zotlabs/Module/Connections.php:108 +#: ../../Zotlabs/Module/Connedit.php:713 msgid "All" msgstr "Все" -#: ../../mod/connections.php:240 ../../mod/connections.php:320 -msgid "Unconnected" -msgstr "Неприсоединенные" +#: ../../Zotlabs/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Обновить" -#: ../../mod/connections.php:270 -msgid "Suggest new connections" -msgstr "Предлагать новые контакты" +#: ../../Zotlabs/Widget/Activity_filter.php:24 +msgid "Personal Posts" +msgstr "Личные публикации" -#: ../../mod/connections.php:273 +#: ../../Zotlabs/Widget/Activity_filter.php:28 +msgid "Show posts that mention or involve me" +msgstr "Показывать публикации где вы были упомянуты или привлечены" + +#: ../../Zotlabs/Widget/Activity_filter.php:39 +msgid "Starred Posts" +msgstr "Отмеченные публикации" + +#: ../../Zotlabs/Widget/Activity_filter.php:43 +msgid "Show posts that I have starred" +msgstr "Показывать публикации которые я отметил" + +#: ../../Zotlabs/Widget/Activity_filter.php:63 +#, php-format +msgid "Show posts related to the %s privacy group" +msgstr "Показывать публикации относящиеся к группе безопасности %s" + +#: ../../Zotlabs/Widget/Activity_filter.php:72 +msgid "Show my privacy groups" +msgstr "Показывать мои группы безопасности" + +#: ../../Zotlabs/Widget/Activity_filter.php:93 +msgid "Show posts to this forum" +msgstr "Показывать публикации этого форума" + +#: ../../Zotlabs/Widget/Activity_filter.php:100 +#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Forums.php:100 +msgid "Forums" +msgstr "Форумы" + +#: ../../Zotlabs/Widget/Activity_filter.php:104 +msgid "Show forums" +msgstr "Показывать форумы" + +#: ../../Zotlabs/Widget/Activity_filter.php:128 +#, php-format +msgid "Show posts that I have filed to %s" +msgstr "Показывать публикации которые я добавил в %s" + +#: ../../Zotlabs/Widget/Activity_filter.php:138 +msgid "Show filed post categories" +msgstr "Показывать категории добавленных публикаций" + +#: ../../Zotlabs/Widget/Activity_filter.php:152 +msgid "Panel search" +msgstr "Панель поиска" + +#: ../../Zotlabs/Widget/Activity_filter.php:162 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:122 +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "Filter by name" +msgstr "Отфильтровать по имени" + +#: ../../Zotlabs/Widget/Activity_filter.php:177 +msgid "Remove active filter" +msgstr "Удалить активный фильтр" + +#: ../../Zotlabs/Widget/Activity_filter.php:193 +msgid "Activity Filters" +msgstr "Фильтры активности" + +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Нажмите чтобы показать больше" + +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Новая сетевая активность" + +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "Новые уведомления о сетевой активности" + +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "Просмотреть вашу сетевую активность" + +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "Пометить уведомления как прочитанные" + +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:152 +msgid "Show new posts only" +msgstr "Показывать только новые публикации" + +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "Новая локальная активность" + +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "Новые уведомления локальной активности" + +#: ../../Zotlabs/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "Просмотреть локальную активность" + +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:149 +msgid "Mark all notifications seen" +msgstr "Пометить уведомления как просмотренные" + +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "Новая переписка" + +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "Уведомления о новой переписке" + +#: ../../Zotlabs/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "Просмотреть вашу личную переписку" + +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "Пометить сообщения как просмотренные" + +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "Новые события" + +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "Уведомления о новых событиях" + +#: ../../Zotlabs/Widget/Notifications.php:73 +msgid "View events" +msgstr "Просмотреть события" + +#: ../../Zotlabs/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Пометить все события как просмотренные" + +#: ../../Zotlabs/Widget/Notifications.php:84 +#: ../../Zotlabs/Module/Connections.php:147 msgid "New Connections" msgstr "Новые контакты" -#: ../../mod/connections.php:276 -msgid "Show pending (new) connections" -msgstr "Просмотр (новых) ждущих контактов" +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "Уведомления о новых контактах" -#: ../../mod/connections.php:282 -msgid "Show all connections" +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" msgstr "Просмотр всех контактов" -#: ../../mod/connections.php:285 -msgid "Unblocked" -msgstr "Разрешенные" +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "Новые файлы" -#: ../../mod/connections.php:288 -msgid "Only show unblocked connections" -msgstr "Показать только разрешенные контакты" +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "Уведомления о новых файлах" -#: ../../mod/connections.php:295 +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Оповещения" + +#: ../../Zotlabs/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "Просмотреть все оповещения" + +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "Пометить все оповещения как просмотренные" + +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "New Registrations" +msgstr "Новые регистрации" + +#: ../../Zotlabs/Widget/Notifications.php:133 +msgid "New Registrations Notifications" +msgstr "Уведомления о новых регистрациях" + +#: ../../Zotlabs/Widget/Notifications.php:142 +#: ../../Zotlabs/Module/Pubstream.php:95 +msgid "Public Stream" +msgstr "Публичный поток" + +#: ../../Zotlabs/Widget/Notifications.php:143 +msgid "Public Stream Notifications" +msgstr "Уведомления публичного потока" + +#: ../../Zotlabs/Widget/Notifications.php:146 +msgid "View the public stream" +msgstr "Просмотреть публичный поток" + +#: ../../Zotlabs/Widget/Notifications.php:161 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Извините, но сейчас у вас нет уведомлений" + +#: ../../Zotlabs/Widget/Newmember.php:24 +msgid "Profile Creation" +msgstr "Создание профиля" + +#: ../../Zotlabs/Widget/Newmember.php:26 +msgid "Upload profile photo" +msgstr "Загрузить фотографию профиля" + +#: ../../Zotlabs/Widget/Newmember.php:27 +msgid "Upload cover photo" +msgstr "Загрузить фотографию обложки" + +#: ../../Zotlabs/Widget/Newmember.php:31 +msgid "Find and Connect with others" +msgstr "Найти и вступить в контакт" + +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "View the directory" +msgstr "Просмотреть каталог" + +#: ../../Zotlabs/Widget/Newmember.php:34 ../../Zotlabs/Module/Go.php:38 +msgid "View friend suggestions" +msgstr "Просмотр рекомендуемых друзей" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Manage your connections" +msgstr "Управлять вашими контактами" + +#: ../../Zotlabs/Widget/Newmember.php:38 +msgid "Communicate" +msgstr "Связаться" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "View your channel homepage" +msgstr "Домашняя страница канала" + +#: ../../Zotlabs/Widget/Newmember.php:41 +msgid "View your network stream" +msgstr "Просмотреть ваш сетевой поток" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Documentation" +msgstr "Документация" + +#: ../../Zotlabs/Widget/Newmember.php:58 +msgid "View public stream" +msgstr "Просмотреть публичный поток" + +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Social Networking" +msgstr "Социальная Сеть" + +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Social - Federation" +msgstr "Социальная - Федерация" + +#: ../../Zotlabs/Access/PermissionRoles.php:285 +msgid "Social - Mostly Public" +msgstr "Социальная - В основном общественный" + +#: ../../Zotlabs/Access/PermissionRoles.php:286 +msgid "Social - Restricted" +msgstr "Социальная - Ограниченный" + +#: ../../Zotlabs/Access/PermissionRoles.php:287 +msgid "Social - Private" +msgstr "Социальная - Частный" + +#: ../../Zotlabs/Access/PermissionRoles.php:290 +msgid "Community Forum" +msgstr "Форум сообщества" + +#: ../../Zotlabs/Access/PermissionRoles.php:291 +msgid "Forum - Mostly Public" +msgstr "Форум - В основном общественный" + +#: ../../Zotlabs/Access/PermissionRoles.php:292 +msgid "Forum - Restricted" +msgstr "Форум - Ограниченный" + +#: ../../Zotlabs/Access/PermissionRoles.php:293 +msgid "Forum - Private" +msgstr "Форум - Частный" + +#: ../../Zotlabs/Access/PermissionRoles.php:296 +msgid "Feed Republish" +msgstr "Публиковать ленты новостей" + +#: ../../Zotlabs/Access/PermissionRoles.php:297 +msgid "Feed - Mostly Public" +msgstr "Ленты новостей - В основном общественный" + +#: ../../Zotlabs/Access/PermissionRoles.php:298 +msgid "Feed - Restricted" +msgstr "Ленты новостей - Ограниченный" + +#: ../../Zotlabs/Access/PermissionRoles.php:301 +msgid "Special Purpose" +msgstr "Спец. назначение" + +#: ../../Zotlabs/Access/PermissionRoles.php:302 +msgid "Special - Celebrity/Soapbox" +msgstr "Спец. назначение - Знаменитость/Soapbox" + +#: ../../Zotlabs/Access/PermissionRoles.php:303 +msgid "Special - Group Repository" +msgstr "Спец. назначение - Групповой репозиторий" + +#: ../../Zotlabs/Access/PermissionRoles.php:307 +msgid "Custom/Expert Mode" +msgstr "Экспертный режим" + +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can view my channel stream and posts" +msgstr "Может просматривать мою ленту и сообщения" + +#: ../../Zotlabs/Access/Permissions.php:57 +msgid "Can send me their channel stream and posts" +msgstr "Может присылать мне свои потоки и сообщения" + +#: ../../Zotlabs/Access/Permissions.php:58 +msgid "Can view my default channel profile" +msgstr "Может просматривать мой стандартный профиль канала" + +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can view my connections" +msgstr "Может просматривать мои контакты" + +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can view my file storage and photos" +msgstr "Может просматривать мое хранилище файлов" + +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can upload/modify my file storage and photos" +msgstr "Может загружать/изменять мои файлы и фотографии в хранилище" + +#: ../../Zotlabs/Access/Permissions.php:62 +msgid "Can view my channel webpages" +msgstr "Может просматривать мои веб-страницы" + +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Может просматривать мои вики-страницы" + +#: ../../Zotlabs/Access/Permissions.php:64 +msgid "Can create/edit my channel webpages" +msgstr "Может редактировать мои веб-страницы" + +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Может редактировать мои вики-страницы" + +#: ../../Zotlabs/Access/Permissions.php:66 +msgid "Can post on my channel (wall) page" +msgstr "Может публиковать на моей странице канала" + +#: ../../Zotlabs/Access/Permissions.php:67 +msgid "Can comment on or like my posts" +msgstr "Может прокомментировать или отмечать как понравившиеся мои посты" + +#: ../../Zotlabs/Access/Permissions.php:68 +msgid "Can send me private mail messages" +msgstr "Может отправлять мне личные сообщения по эл. почте" + +#: ../../Zotlabs/Access/Permissions.php:69 +msgid "Can like/dislike profiles and profile things" +msgstr "Может комментировать или отмечать как нравится/ненравится мой профиль" + +#: ../../Zotlabs/Access/Permissions.php:70 +msgid "Can forward to all my channel connections via ! mentions in posts" +msgstr "Может пересылать всем подписчикам моего канала используя ! в публикациях" + +#: ../../Zotlabs/Access/Permissions.php:71 +msgid "Can chat with me" +msgstr "Может общаться со мной в чате" + +#: ../../Zotlabs/Access/Permissions.php:72 +msgid "Can source my public posts in derived channels" +msgstr "Может использовать мои публичные сообщения в клонированных лентах сообщений" + +#: ../../Zotlabs/Access/Permissions.php:73 +msgid "Can administer my channel" +msgstr "Может администрировать мой канал" + +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." +msgstr "Удалённая аутентификация заблокирована. Вы вошли на этот сайт локально. Пожалуйста, выйдите и попробуйте ещё раз." + +#: ../../Zotlabs/Module/Appman.php:39 ../../Zotlabs/Module/Appman.php:56 +msgid "App installed." +msgstr "Приложение установлено." + +#: ../../Zotlabs/Module/Appman.php:49 +msgid "Malformed app." +msgstr "Неработающее приложение." + +#: ../../Zotlabs/Module/Appman.php:130 +msgid "Embed code" +msgstr "Встроить код" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Edit App" +msgstr "Редактировать приложение" + +#: ../../Zotlabs/Module/Appman.php:136 +msgid "Create App" +msgstr "Создать приложение" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Name of app" +msgstr "Наименование приложения" + +#: ../../Zotlabs/Module/Appman.php:142 +msgid "Location (URL) of app" +msgstr "Местоположение (URL) приложения" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Photo icon URL" +msgstr "URL пиктограммы" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 пикселей - необязательно" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Categories (optional, comma separated list)" +msgstr "Категории (необязательно, список через запятую)" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Version ID" +msgstr "ID версии" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Price of app" +msgstr "Цена приложения" + +#: ../../Zotlabs/Module/Appman.php:148 +msgid "Location (URL) to purchase app" +msgstr "Ссылка (URL) для покупки приложения" + +#: ../../Zotlabs/Module/Acl.php:359 +msgid "network" +msgstr "сеть" + +#: ../../Zotlabs/Module/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "НЕДЕЙСТВИТЕЛЬНОЕ СОБЫТИЕ ОТКЛОНЕНО!" + +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Резюме:" + +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Дата:" + +#: ../../Zotlabs/Module/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Причина:" + +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "НЕДЕЙСТВИТЕЛЬНАЯ КАРТОЧКА ОТКЛОНЕНА!" + +#: ../../Zotlabs/Module/Cdav.php:794 +msgid "Name: " +msgstr "Имя:" + +#: ../../Zotlabs/Module/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Наименование события" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Дата и время начала" + +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Пример: YYYY-MM-DD HH:mm" + +#: ../../Zotlabs/Module/Cdav.php:870 +msgid "End date and time" +msgstr "Дата и время окончания" + +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Photos.php:976 +#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Events.php:698 +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 +msgid "Previous" +msgstr "Предыдущая" + +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Photos.php:985 +#: ../../Zotlabs/Module/Events.php:690 ../../Zotlabs/Module/Events.php:699 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Setup.php:263 +msgid "Next" +msgstr "Следующая" + +#: ../../Zotlabs/Module/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Сегодня" + +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "Месяц" + +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "Неделя" + +#: ../../Zotlabs/Module/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "День" + +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Просмотреть месяц" + +#: ../../Zotlabs/Module/Cdav.php:886 +msgid "List week" +msgstr "Просмотреть неделю" + +#: ../../Zotlabs/Module/Cdav.php:887 +msgid "List day" +msgstr "Просмотреть день" + +#: ../../Zotlabs/Module/Cdav.php:894 +msgid "More" +msgstr "Больше" + +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Меньше" + +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Выбрать календарь" + +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Удалить всё" + +#: ../../Zotlabs/Module/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "Простите, но редактирование повторяющихся событий пока не реализовано." + +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Организация" + +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Наименование" + +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "Phone" +msgstr "Телефон" + +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Instant messenger" +msgstr "Мессенджер" + +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Website" +msgstr "Веб-сайт" + +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:790 +msgid "Address" +msgstr "Адрес" + +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Note" +msgstr "Заметка" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:797 +msgid "Add Field" +msgstr "Добавить поле" + +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "абонентский ящик" + +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Дополнительно" + +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Улица" + +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Населённый пункт" + +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Регион" + +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "Индекс" + +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Country" +msgstr "Страна" + +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Календарь по умолчанию" + +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Адресная книга по умолчанию" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Эта страница доступна только для подписчиков сайта" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Добро пожаловать" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Что бы вы хотели сделать?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем" + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Загрузить фотографию профиля" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Загрузить фотографию обложки" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Редактировать ваш профиль по умолчанию" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the channel directory" +msgstr "Просмотр каталога каналов" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Просмотреть / редактировать настройки вашего канала" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Просмотр документации сайта / проекта" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Посетить страницу вашего канала" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Ваш персональный поток (может быть пуст пока вы не добавите контакты)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Просмотр публичного потока. Предупреждение: этот контент не модерируется" + +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Информация о владельце страницы не может быть получена." + +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:113 +msgid "Album not found." +msgstr "Альбом не найден." + +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" +msgstr "Удалить альбом" + +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1088 +msgid "Delete Photo" +msgstr "Удалить фотографию" + +#: ../../Zotlabs/Module/Photos.php:545 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Directory.php:68 +#: ../../Zotlabs/Module/Display.php:30 +msgid "Public access denied." +msgstr "Публичный доступ запрещен." + +#: ../../Zotlabs/Module/Photos.php:556 +msgid "No photos selected" +msgstr "Никакие фотографии не выбраны" + +#: ../../Zotlabs/Module/Photos.php:605 +msgid "Access to this item is restricted." +msgstr "Доступ к этому элементу ограничен." + +#: ../../Zotlabs/Module/Photos.php:651 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото." + +#: ../../Zotlabs/Module/Photos.php:654 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Вы использовали %1$.2f мегабайт для хранения фото." + +#: ../../Zotlabs/Module/Photos.php:696 +msgid "Upload Photos" +msgstr "Загрузить фотографии" + +#: ../../Zotlabs/Module/Photos.php:700 +msgid "Enter an album name" +msgstr "Введите название альбома" + +#: ../../Zotlabs/Module/Photos.php:701 +msgid "or select an existing album (doubleclick)" +msgstr "или выберите существующий альбом (двойной щелчок)" + +#: ../../Zotlabs/Module/Photos.php:702 +msgid "Create a status post for this upload" +msgstr "Сделать публикацию о статусе для этой загрузки" + +#: ../../Zotlabs/Module/Photos.php:704 +msgid "Description (optional)" +msgstr "Описание (необязательно)" + +#: ../../Zotlabs/Module/Photos.php:790 +msgid "Show Newest First" +msgstr "Показать новые первыми" + +#: ../../Zotlabs/Module/Photos.php:792 +msgid "Show Oldest First" +msgstr "Показать старые первыми" + +#: ../../Zotlabs/Module/Photos.php:849 ../../Zotlabs/Module/Photos.php:1386 +msgid "Add Photos" +msgstr "Добавить фотографии" + +#: ../../Zotlabs/Module/Photos.php:897 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Доступ запрещен. Доступ к этому элементу может быть ограничен." + +#: ../../Zotlabs/Module/Photos.php:899 +msgid "Photo not available" +msgstr "Фотография не доступна" + +#: ../../Zotlabs/Module/Photos.php:957 +msgid "Use as profile photo" +msgstr "Использовать в качестве фотографии профиля" + +#: ../../Zotlabs/Module/Photos.php:958 +msgid "Use as cover photo" +msgstr "Использовать в качестве фотографии обложки" + +#: ../../Zotlabs/Module/Photos.php:965 +msgid "Private Photo" +msgstr "Личная фотография" + +#: ../../Zotlabs/Module/Photos.php:980 +msgid "View Full Size" +msgstr "Посмотреть в полный размер" + +#: ../../Zotlabs/Module/Photos.php:1062 +msgid "Edit photo" +msgstr "Редактировать фотографию" + +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Rotate CW (right)" +msgstr "Повернуть CW (направо)" + +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "Rotate CCW (left)" +msgstr "Повернуть CCW (налево)" + +#: ../../Zotlabs/Module/Photos.php:1068 +msgid "Move photo to album" +msgstr "Переместить фотографию в альбом" + +#: ../../Zotlabs/Module/Photos.php:1069 +msgid "Enter a new album name" +msgstr "Введите новое название альбома" + +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "or select an existing one (doubleclick)" +msgstr "или выбрать существующую (двойной щелчок)" + +#: ../../Zotlabs/Module/Photos.php:1075 +msgid "Add a Tag" +msgstr "Добавить тег" + +#: ../../Zotlabs/Module/Photos.php:1083 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com" + +#: ../../Zotlabs/Module/Photos.php:1086 +msgid "Flag as adult in album view" +msgstr "Пометить как альбом \"для взрослых\"" + +#: ../../Zotlabs/Module/Photos.php:1270 +msgid "Photo Tools" +msgstr "Фото-Инструменты" + +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "In This Photo:" +msgstr "На этой фотографии:" + +#: ../../Zotlabs/Module/Photos.php:1284 +msgid "Map" +msgstr "Карта" + +#: ../../Zotlabs/Module/Pubsites.php:27 +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 "Указанные хабы разрешают публичную регистрацию для сети $Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения." + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL сервера" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Тип доступа" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Политика регистрации" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Статистика" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Программное обеспечение" + +#: ../../Zotlabs/Module/Pubsites.php:49 +msgid "Rate" +msgstr "Оценка" + +#: ../../Zotlabs/Module/Pubsites.php:60 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Webpages.php:246 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Wiki.php:204 +msgid "View" +msgstr "Просмотр" + +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Продолжить" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Установка премиум канала" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Включить ограничения для премиум канала" + +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п." + +#: ../../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 "Этот канал до подключения может требовать дополнительных шагов или подтверждений следующих условий:" + +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Потенциальные соединения будут видеть следующий предварительный текст:" + +#: ../../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 "Продолжая, я подтверждаю что я выполнил все условия представленные на данной странице." + +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Владельцем канала не было представлено никаких специальных инструкций.)" + +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Ограниченный или Премиум канал" + +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Ткнуть кого-нибудь" + +#: ../../Zotlabs/Module/Poke.php:186 +msgid "Poke/Prod" +msgstr "Толкнуть / подтолкнуть" + +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "Толкнуть, подтолкнуть или сделать что-то ещё с кем-то" + +#: ../../Zotlabs/Module/Poke.php:194 +msgid "Recipient" +msgstr "Получатель" + +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Выбрать что вы хотите сделать с получателем" + +#: ../../Zotlabs/Module/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Сделать эту публикацию приватной" + +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Невозможно найти ваш сервер" + +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Успешно опубликовано." + +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "%s элемент установлен" + +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "%sустановка элемента неудачна." + +#: ../../Zotlabs/Module/Ping.php:332 +msgid "sent you a private message" +msgstr "отправил вам личное сообщение" + +#: ../../Zotlabs/Module/Ping.php:385 +msgid "added your channel" +msgstr "добавил ваш канал" + +#: ../../Zotlabs/Module/Ping.php:409 +msgid "requires approval" +msgstr "Требуется подтверждение" + +#: ../../Zotlabs/Module/Ping.php:419 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../Zotlabs/Module/Ping.php:437 +msgid "[today]" +msgstr "[сегодня]" + +#: ../../Zotlabs/Module/Ping.php:446 +msgid "posted an event" +msgstr "событие опубликовано" + +#: ../../Zotlabs/Module/Ping.php:479 +msgid "shared a file with you" +msgstr "с вами поделились файлом" + +#: ../../Zotlabs/Module/Ping.php:654 +msgid "Private forum" +msgstr "Частный форум" + +#: ../../Zotlabs/Module/Ping.php:654 +msgid "Public forum" +msgstr "Публичный форум" + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "Некоторые предложения о том, что делать, если вы здесь новичок " + +#: ../../Zotlabs/Module/Connections.php:55 +#: ../../Zotlabs/Module/Connections.php:112 +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Active" +msgstr "Активен" + +#: ../../Zotlabs/Module/Connections.php:60 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:261 +msgid "Blocked" +msgstr "Заблокирован" + +#: ../../Zotlabs/Module/Connections.php:65 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Ignored" +msgstr "Игнорируется" + +#: ../../Zotlabs/Module/Connections.php:70 +#: ../../Zotlabs/Module/Connections.php:185 +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Hidden" +msgstr "Скрыт" + +#: ../../Zotlabs/Module/Connections.php:75 +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Archived/Unreachable" +msgstr "Заархивировано / недоступно" + +#: ../../Zotlabs/Module/Connections.php:140 +msgid "Active Connections" +msgstr "Активные контакты" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show active connections" +msgstr "Показать активные контакты" + +#: ../../Zotlabs/Module/Connections.php:150 +msgid "Show pending (new) connections" +msgstr "Просмотр (новых) ожидающих контактов" + +#: ../../Zotlabs/Module/Connections.php:167 msgid "Only show blocked connections" msgstr "Показать только заблокированные контакты" -#: ../../mod/connections.php:302 +#: ../../Zotlabs/Module/Connections.php:174 msgid "Only show ignored connections" msgstr "Показать только проигнорированные контакты" -#: ../../mod/connections.php:309 -msgid "Only show archived connections" -msgstr "Показать только архивированные контакты" +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show archived/unreachable connections" +msgstr "Показать только заархивированные / недоступные контакты" -#: ../../mod/connections.php:316 +#: ../../Zotlabs/Module/Connections.php:188 msgid "Only show hidden connections" msgstr "Показать только скрытые контакты" -#: ../../mod/connections.php:323 -msgid "Only show one-way connections" -msgstr "" +#: ../../Zotlabs/Module/Connections.php:200 +#: ../../Zotlabs/Module/Profperm.php:140 +msgid "All Connections" +msgstr "Все контакты" -#: ../../mod/connections.php:368 +#: ../../Zotlabs/Module/Connections.php:203 +msgid "Show all connections" +msgstr "Просмотр всех контактов" + +#: ../../Zotlabs/Module/Connections.php:257 +msgid "Pending approval" +msgstr "Ожидающие подтверждения" + +#: ../../Zotlabs/Module/Connections.php:258 +msgid "Archived" +msgstr "Зархивирован" + +#: ../../Zotlabs/Module/Connections.php:262 +msgid "Not connected at this location" +msgstr "Не подключено в этом месте" + +#: ../../Zotlabs/Module/Connections.php:279 #, php-format msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +msgstr "" -#: ../../mod/connections.php:369 -msgid "Edit contact" +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Edit connection" msgstr "Редактировать контакт" -#: ../../mod/connections.php:390 -msgid "Search your connections" -msgstr "Поиск ваших связей" +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Delete connection" +msgstr "Удалить контакт" -#: ../../mod/connections.php:391 -msgid "Finding: " -msgstr "Поиск:" +#: ../../Zotlabs/Module/Connections.php:291 +msgid "Channel address" +msgstr "Адрес канала" -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Редактировать сообщение" +#: ../../Zotlabs/Module/Connections.php:293 +msgid "Network" +msgstr "Сеть" -#: ../../mod/connedit.php:243 -msgid "Could not access address book record." -msgstr "" +#: ../../Zotlabs/Module/Connections.php:296 +msgid "Call" +msgstr "Вызов" -#: ../../mod/connedit.php:257 -msgid "Refresh failed - channel is currently unavailable." -msgstr "" +#: ../../Zotlabs/Module/Connections.php:298 +msgid "Status" +msgstr "Статус" -#: ../../mod/connedit.php:264 -msgid "Channel has been unblocked" -msgstr "Канал разблокирован" +#: ../../Zotlabs/Module/Connections.php:300 +msgid "Connected" +msgstr "Подключено" -#: ../../mod/connedit.php:265 -msgid "Channel has been blocked" -msgstr "Канал заблокирован" +#: ../../Zotlabs/Module/Connections.php:302 +msgid "Approve connection" +msgstr "Утвердить контакт" -#: ../../mod/connedit.php:269 ../../mod/connedit.php:281 -#: ../../mod/connedit.php:293 ../../mod/connedit.php:305 -#: ../../mod/connedit.php:320 -msgid "Unable to set address book parameters." -msgstr "" +#: ../../Zotlabs/Module/Connections.php:304 +msgid "Ignore connection" +msgstr "Игнорировать контакт" -#: ../../mod/connedit.php:276 -msgid "Channel has been unignored" -msgstr "Канал не проигнорирован" - -#: ../../mod/connedit.php:277 -msgid "Channel has been ignored" -msgstr "Канал проигнорирован" - -#: ../../mod/connedit.php:288 -msgid "Channel has been unarchived" -msgstr "Канал разархивирован" - -#: ../../mod/connedit.php:289 -msgid "Channel has been archived" -msgstr "Канал заархивирован" - -#: ../../mod/connedit.php:300 -msgid "Channel has been unhidden" -msgstr "Канал открыт" - -#: ../../mod/connedit.php:301 -msgid "Channel has been hidden" -msgstr "Канал скрыт" - -#: ../../mod/connedit.php:315 -msgid "Channel has been approved" -msgstr "Канал одобрен" - -#: ../../mod/connedit.php:316 -msgid "Channel has been unapproved" -msgstr "Канал не одобрен" - -#: ../../mod/connedit.php:334 -msgid "Connection has been removed." -msgstr "Соединение было удалено." - -#: ../../mod/connedit.php:354 -#, php-format -msgid "View %s's profile" -msgstr "Просмотр %s's профиля" - -#: ../../mod/connedit.php:358 -msgid "Refresh Permissions" -msgstr "Обновить разрешения" - -#: ../../mod/connedit.php:361 -msgid "Fetch updated permissions" -msgstr "" - -#: ../../mod/connedit.php:365 -msgid "Recent Activity" -msgstr "" - -#: ../../mod/connedit.php:368 -msgid "View recent posts and comments" -msgstr "" - -#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 -#: ../../mod/admin.php:760 -msgid "Unblock" -msgstr "Разрешить" - -#: ../../mod/connedit.php:372 ../../mod/connedit.php:515 -#: ../../mod/admin.php:759 -msgid "Block" -msgstr "Заблокировать" - -#: ../../mod/connedit.php:375 -msgid "Block or Unblock this connection" -msgstr "Запретить или разрешить этот канал" - -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -msgid "Unignore" -msgstr "Не игнорировать" - -#: ../../mod/connedit.php:379 ../../mod/connedit.php:516 -#: ../../mod/notifications.php:51 +#: ../../Zotlabs/Module/Connections.php:305 +#: ../../Zotlabs/Module/Connedit.php:630 msgid "Ignore" msgstr "Игнорировать" -#: ../../mod/connedit.php:382 -msgid "Ignore or Unignore this connection" -msgstr "Игнорировать или не игнорировать этот канал" +#: ../../Zotlabs/Module/Connections.php:306 +msgid "Recent activity" +msgstr "Последние действия" -#: ../../mod/connedit.php:385 +#: ../../Zotlabs/Module/Connections.php:336 +msgid "Search your connections" +msgstr "Поиск ваших контактов" + +#: ../../Zotlabs/Module/Connections.php:337 +msgid "Connections search" +msgstr "Поиск контаков" + +#: ../../Zotlabs/Module/Item.php:194 +msgid "Unable to locate original post." +msgstr "Не удалось найти оригинальную публикацию." + +#: ../../Zotlabs/Module/Item.php:477 +msgid "Empty post discarded." +msgstr "Пустая публикация отклонена." + +#: ../../Zotlabs/Module/Item.php:864 +msgid "Duplicate post suppressed." +msgstr "Подавлена дублирующаяся публикация." + +#: ../../Zotlabs/Module/Item.php:1009 +msgid "System error. Post not saved." +msgstr "Системная ошибка. Публикация не сохранена." + +#: ../../Zotlabs/Module/Item.php:1045 +msgid "Your comment is awaiting approval." +msgstr "Ваш комментарий ожидает одобрения." + +#: ../../Zotlabs/Module/Item.php:1162 +msgid "Unable to obtain post information from database." +msgstr "Невозможно получить информацию о публикации из базы данных" + +#: ../../Zotlabs/Module/Item.php:1191 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня." + +#: ../../Zotlabs/Module/Item.php:1198 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Вы достигли вашего ограничения в %1$.0f страниц." + +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "События календаря импортированы." + +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Не найдено событий в календаре." + +#: ../../Zotlabs/Module/Events.php:110 +msgid "Event can not end before it has started." +msgstr "Событие не может завершиться до его начала." + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "Невозможно создать предварительный просмотр." + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "Требуются наименование события и время начала." + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "Событие не найдено." + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Редактировать наименование события" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Категории (список через запятую)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Редактировать категорию" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Категория" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Редактировать дату и время начала" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +msgid "Finish date and time are not known or not relevant" +msgstr "Дата и время окончания неизвестны или неприменимы" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Edit finish date and time" +msgstr "Редактировать дату и время окончания" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Дата и время окончания" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "Настройте просмотр часовых поясов" + +#: ../../Zotlabs/Module/Events.php:471 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Важно для событий, которые происходят в определённом месте. Не подходит для всеобщих праздников." + +#: ../../Zotlabs/Module/Events.php:473 +msgid "Edit Description" +msgstr "Редактировать описание" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Редактировать местоположение" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Часовой пояс:" + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Дополнительные настройки" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Редактировать событие" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Удалить событие" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "календарь" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Редактировать событие" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Создать событие" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "Событие удалено" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "Не удалось удалить событие" + +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Editlayout.php:128 +msgid "Layout Name" +msgstr "Название шаблона" + +#: ../../Zotlabs/Module/Layouts.php:132 ../../Zotlabs/Module/Editlayout.php:129 +msgid "Layout Description (Optional)" +msgstr "Описание шаблона (необязательно)" + +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Помощь по языку описания страниц Comanche " + +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Описание шаблона" + +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:177 +msgid "Created" +msgstr "Создано" + +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:178 +msgid "Edited" +msgstr "Отредактировано" + +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Загрузить PDL файл" + +#: ../../Zotlabs/Module/Notifications.php:55 ../../Zotlabs/Module/Notify.php:61 +msgid "No more system notifications." +msgstr "Нет новых оповещений системы." + +#: ../../Zotlabs/Module/Notifications.php:59 ../../Zotlabs/Module/Notify.php:65 +msgid "System Notifications" +msgstr "Системные оповещения " + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Шаблон обновлен." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Функция отключена." + +#: ../../Zotlabs/Module/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Редактировать описание системной страницы" + +#: ../../Zotlabs/Module/Pdledit.php:68 +msgid "(modified)" +msgstr "(изменено)" + +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Сбросить" + +#: ../../Zotlabs/Module/Pdledit.php:85 +msgid "Layout not found." +msgstr "Шаблон не найден." + +#: ../../Zotlabs/Module/Pdledit.php:91 +msgid "Module Name:" +msgstr "Имя модуля:" + +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Помощь к шаблону" + +#: ../../Zotlabs/Module/Pdledit.php:93 +msgid "Edit another layout" +msgstr "Редактировать другой шаблон" + +#: ../../Zotlabs/Module/Pdledit.php:94 +msgid "System layout" +msgstr "Системный шаблон" + +#: ../../Zotlabs/Module/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "Не удалось найти получателя." + +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "Не удалось установить связь с запрашиваемым каналом." + +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "Не удалось установить подлинность требуемого канала." + +#: ../../Zotlabs/Module/Mail.php:105 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Выбранный канал ограничивает частные сообщения. Отправка не удалась." + +#: ../../Zotlabs/Module/Mail.php:160 +msgid "Messages" +msgstr "Сообщения" + +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "сообщение" + +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Сообщение отозванно." + +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Беседа удалена." + +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Истекает YYYY-MM-DD HH:MM" + +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "Запрашиваемый канал не доступен." + +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Отправить личное сообщение" + +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "Кому:" + +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Тема:" + +#: ../../Zotlabs/Module/Mail.php:285 ../../Zotlabs/Module/Invite.php:140 +msgid "Your message:" +msgstr "Сообщение:" + +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +msgid "Attach file" +msgstr "Прикрепить файл" + +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Отправить" + +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Удалить сообщение" + +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Отчёт о доставке" + +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Отозвать сообщение" + +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "Сообщение отозванно" + +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Удалить беседу" + +#: ../../Zotlabs/Module/Mail.php:416 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя." + +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "Отправить ответ" + +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Ваше сообщение для %s (%s):" + +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта." + +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Удалить этот канал" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "ПРЕДУПРЕЖДЕНИЕ:" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Этот канал будет полностью удалён из сети." + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Это действие необратимо и не может быть отменено!" + +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Пожалуйста, введите ваш пароль для проверки:" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Удалить этот канал и все его клоны из сети" + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети" + +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:622 +msgid "Remove Channel" +msgstr "Удаление канала" + +#: ../../Zotlabs/Module/Hq.php:134 ../../Zotlabs/Module/Channel.php:164 +#: ../../Zotlabs/Module/Pubstream.php:80 ../../Zotlabs/Module/Network.php:204 +#: ../../Zotlabs/Module/Display.php:81 +msgid "Reset form" +msgstr "Очистить форму" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "Добро пожаловать в Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "У вас нет видимых публикаций..." + +#: ../../Zotlabs/Module/Card_edit.php:17 ../../Zotlabs/Module/Card_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +msgid "Item not found" +msgstr "Элемент не найден" + +#: ../../Zotlabs/Module/Card_edit.php:44 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Page.php:75 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Wall_upload.php:31 +#: ../../Zotlabs/Module/Article_edit.php:44 +#: ../../Zotlabs/Module/Chanview.php:96 +msgid "Channel not found." +msgstr "Канал не найден." + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "Редактировать карточку" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Поиск Xchan" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Запрос Xchan начинается с (или webbie):" + +#: ../../Zotlabs/Module/Xchan.php:41 ../../Zotlabs/Module/Mitem.php:134 +#: ../../Zotlabs/Module/Menu.php:231 +msgid "Not found." +msgstr "Не найдено." + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Нет предложений. Если это новый сайт, повторите попытку через 24 часа." + +#: ../../Zotlabs/Module/Channel.php:50 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Публикации и комментарии" + +#: ../../Zotlabs/Module/Channel.php:57 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Только публикации" + +#: ../../Zotlabs/Module/Channel.php:112 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Недостаточно прав. Запрос перенаправлен на страницу профиля." + +#: ../../Zotlabs/Module/Channel.php:129 ../../Zotlabs/Module/Network.php:174 +msgid "Search Results For:" +msgstr "Результаты поиска для:" + +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" +msgstr "Поиск документации" + +#: ../../Zotlabs/Module/Help.php:81 ../../Zotlabs/Module/Group.php:126 +msgid "Members" +msgstr "Участники" + +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" +msgstr "Администраторы" + +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "Разработчики" + +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" +msgstr "Руководства" + +#: ../../Zotlabs/Module/Help.php:95 +msgid "$Projectname Documentation" +msgstr "$Projectname Документация" + +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "Содержимое" + +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Этот сайт не является сервером каталога" + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Экспорт канала" + +#: ../../Zotlabs/Module/Uexport.php:59 +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 "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Экспортировать содержимое" + +#: ../../Zotlabs/Module/Uexport.php:61 +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 "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка." + +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Экспортировать ваши публикации за данный год." + +#: ../../Zotlabs/Module/Uexport.php:65 +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 "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат." + +#: ../../Zotlabs/Module/Uexport.php:66 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Для выбора всех публикаций заданного года, например текущего, посетите %2$s" + +#: ../../Zotlabs/Module/Uexport.php:67 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %2$s" + +#: ../../Zotlabs/Module/Uexport.php:68 +#, 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 "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)." + +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" +msgstr "Нет на месте" + +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "В сети" + +#: ../../Zotlabs/Module/Block.php:29 ../../Zotlabs/Module/Page.php:39 +msgid "Invalid item." +msgstr "Недействительный элемент." + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Авторизовать подключение приложения" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Вернитесь к своему приложению и вставьте этот код безопасности:" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Пожалуйста, войдите, чтобы продолжить." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?" + +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "пункт" + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Оценок нет" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Оценкa:" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Веб-сайт:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Описание:" + +#: ../../Zotlabs/Module/Sources.php:38 +msgid "Failed to create source. No channel selected." +msgstr "Не удалось создать источник. Канал не выбран." + +#: ../../Zotlabs/Module/Sources.php:54 +msgid "Source created." +msgstr "Источник создан." + +#: ../../Zotlabs/Module/Sources.php:67 +msgid "Source updated." +msgstr "Источник обновлен." + +#: ../../Zotlabs/Module/Sources.php:93 +msgid "*" +msgstr "" + +#: ../../Zotlabs/Module/Sources.php:100 +msgid "Manage remote sources of content for your channel." +msgstr "Управлять удалённым источниками содержимого для вашего канала" + +#: ../../Zotlabs/Module/Sources.php:101 ../../Zotlabs/Module/Sources.php:111 +msgid "New Source" +msgstr "Новый источник" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:146 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками." + +#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 +msgid "Only import content with these words (one per line)" +msgstr "Импортировать содержимое только с этим текстом (построчно)" + +#: ../../Zotlabs/Module/Sources.php:113 ../../Zotlabs/Module/Sources.php:147 +msgid "Leave blank to import all public content" +msgstr "Оставьте пустым для импорта всего общедоступного содержимого" + +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:153 +msgid "Channel Name" +msgstr "Название канала" + +#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)" + +#: ../../Zotlabs/Module/Sources.php:115 ../../Zotlabs/Module/Sources.php:150 +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +msgid "Optional" +msgstr "Необязательно" + +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +msgid "Resend posts with this channel as author" +msgstr "Отправить публикации в этот канал повторно как автор" + +#: ../../Zotlabs/Module/Sources.php:116 ../../Zotlabs/Module/Sources.php:151 +msgid "Copyrights may apply" +msgstr "Могут применяться авторские права" + +#: ../../Zotlabs/Module/Sources.php:136 ../../Zotlabs/Module/Sources.php:166 +msgid "Source not found." +msgstr "Источник не найден." + +#: ../../Zotlabs/Module/Sources.php:143 +msgid "Edit Source" +msgstr "Редактировать источник" + +#: ../../Zotlabs/Module/Sources.php:144 +msgid "Delete Source" +msgstr "Удалить источник" + +#: ../../Zotlabs/Module/Sources.php:174 +msgid "Source removed" +msgstr "Источник удален" + +#: ../../Zotlabs/Module/Sources.php:176 +msgid "Unable to remove source." +msgstr "Невозможно удалить источник." + +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "About this site" +msgstr "Об этом сайте" + +#: ../../Zotlabs/Module/Siteinfo.php:22 +msgid "Site Name" +msgstr "Название сайта" + +#: ../../Zotlabs/Module/Siteinfo.php:24 ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Site Information" +msgstr "Информация о сайте" + +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Administrator" +msgstr "Администратор" + +#: ../../Zotlabs/Module/Siteinfo.php:28 ../../Zotlabs/Module/Register.php:241 +msgid "Terms of Service" +msgstr "Условия предоставления услуг" + +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "Software and Project information" +msgstr "Информация о программном обеспечении и проекте" + +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "This site is powered by $Projectname" +msgstr "Этот сайт работает на $Projectname" + +#: ../../Zotlabs/Module/Siteinfo.php:31 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" +msgstr "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Additional federated transport protocols:" +msgstr "Дополнительные федеративные транспортные протоколы:" + +#: ../../Zotlabs/Module/Siteinfo.php:36 +#, php-format +msgid "Version %s" +msgstr "Версия %s" + +#: ../../Zotlabs/Module/Siteinfo.php:37 +msgid "Project homepage" +msgstr "Домашняя страница проекта" + +#: ../../Zotlabs/Module/Siteinfo.php:38 +msgid "Developer homepage" +msgstr "Домашняя страница разработчика" + +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:57 +msgid "Image uploaded but image cropping failed." +msgstr "Изображение загружено но обрезка не удалась." + +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:191 +msgid "Image resize failed." +msgstr "Не удалось изменить размер изображения." + +#: ../../Zotlabs/Module/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:229 +msgid "Image upload failed." +msgstr "Загрузка изображения не удалась." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:246 +msgid "Unable to process image." +msgstr "Невозможно обработать изображение." + +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:339 +#: ../../Zotlabs/Module/Cover_photo.php:354 +msgid "Photo not available." +msgstr "Фотография недоступна." + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your default profile photo is visible to anybody on the internet. Profile " +"photos for alternate profiles will inherit the permissions of the profile" +msgstr "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля" + +#: ../../Zotlabs/Module/Profile_photo.php:454 +msgid "" +"Your profile photo is visible to anybody on the internet and may be " +"distributed to other websites." +msgstr "Фотография вашего профиля видна всем в Интернете и может быть отправлена на другие сайты." + +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:392 +msgid "Upload File:" +msgstr "Загрузить файл:" + +#: ../../Zotlabs/Module/Profile_photo.php:457 +#: ../../Zotlabs/Module/Cover_photo.php:393 +msgid "Select a profile:" +msgstr "Выбрать профиль:" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use Photo for Profile" +msgstr "Использовать фотографию для профиля" + +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Change Profile Photo" +msgstr "Изменить фотографию профиля" + +#: ../../Zotlabs/Module/Profile_photo.php:459 +msgid "Use" +msgstr "Использовать" + +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Cover_photo.php:397 +#: ../../Zotlabs/Module/Cover_photo.php:398 +msgid "Use a photo from your albums" +msgstr "Использовать фотографию из ваших альбомов" + +#: ../../Zotlabs/Module/Profile_photo.php:469 +#: ../../Zotlabs/Module/Cover_photo.php:403 ../../Zotlabs/Module/Wiki.php:383 +msgid "Choose a different album" +msgstr "Выбрать другой альбом" + +#: ../../Zotlabs/Module/Profile_photo.php:474 +#: ../../Zotlabs/Module/Cover_photo.php:409 +msgid "Select existing photo" +msgstr "Выбрать существующую фотографию" + +#: ../../Zotlabs/Module/Profile_photo.php:493 +#: ../../Zotlabs/Module/Cover_photo.php:426 +msgid "Crop Image" +msgstr "Обрезать изображение" + +#: ../../Zotlabs/Module/Profile_photo.php:494 +#: ../../Zotlabs/Module/Cover_photo.php:427 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Пожалуйста настройте обрезку изображения для оптимального просмотра." + +#: ../../Zotlabs/Module/Profile_photo.php:496 +#: ../../Zotlabs/Module/Cover_photo.php:429 +msgid "Done Editing" +msgstr "Закончить редактирование" + +#: ../../Zotlabs/Module/Subthread.php:142 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s отслеживает %2$s's %3$s" + +#: ../../Zotlabs/Module/Subthread.php:144 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s прекратил отслеживать %2$s's %3$s" + +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Канала нет." + +#: ../../Zotlabs/Module/Common.php:45 +msgid "No connections in common." +msgstr "Общих контактов нет." + +#: ../../Zotlabs/Module/Common.php:65 +msgid "View Common Connections" +msgstr "Просмотр общий контактов" + +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Доступ запрещен." + +#: ../../Zotlabs/Module/Filestorage.php:112 +msgid "File not found." +msgstr "Файл не найден." + +#: ../../Zotlabs/Module/Filestorage.php:165 +msgid "Edit file permissions" +msgstr "Редактировать разрешения файла" + +#: ../../Zotlabs/Module/Filestorage.php:177 +msgid "Set/edit permissions" +msgstr "Редактировать разрешения" + +#: ../../Zotlabs/Module/Filestorage.php:178 +msgid "Include all files and sub folders" +msgstr "Включить все файлы и подкаталоги" + +#: ../../Zotlabs/Module/Filestorage.php:179 +msgid "Return to file list" +msgstr "Вернутся к списку файлов" + +#: ../../Zotlabs/Module/Filestorage.php:181 +msgid "Copy/paste this code to attach file to a post" +msgstr "Копировать / вставить этот код для прикрепления файла к публикации" + +#: ../../Zotlabs/Module/Filestorage.php:182 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Копировать / вставить эту URL для ссылки на файл со страницы" + +#: ../../Zotlabs/Module/Filestorage.php:184 +msgid "Share this file" +msgstr "Поделиться этим файлом" + +#: ../../Zotlabs/Module/Filestorage.php:185 +msgid "Show URL to this file" +msgstr "Показать URL этого файла" + +#: ../../Zotlabs/Module/Filestorage.php:186 +#: ../../Zotlabs/Storage/Browser.php:405 +msgid "Show in your contacts shared folder" +msgstr "Показать общий каталог в ваших контактах" + +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "Публикация не найдена" + +#: ../../Zotlabs/Module/Tagger.php:119 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s отметил тегом %2$s %3$s с %4$s" + +#: ../../Zotlabs/Module/Page.php:173 +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 "" + +#: ../../Zotlabs/Module/Editblock.php:113 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Название блока" + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Редактировать блок" + +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "Элемент нельзя редактировать" + +#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:144 +msgid "Edit post" +msgstr "Редактировать сообщение" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Тег удалён" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Удалить тег элемента" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Выбрать тег для удаления:" + +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта." + +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Удалить этот аккаунт" + +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Этот аккаунт и все его каналы будут полностью удалены из сети." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Удалить этот аккаунт, все его каналы и их клоны из сети." + +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети" + +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Remove Account" +msgstr "Удалить аккаунт" + +#: ../../Zotlabs/Module/Admin.php:97 +msgid "Blocked accounts" +msgstr "Заблокированные аккаунты" + +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "Просроченные аккаунты" + +#: ../../Zotlabs/Module/Admin.php:99 +msgid "Expiring accounts" +msgstr "Близкие к просрочке аккаунты" + +#: ../../Zotlabs/Module/Admin.php:115 ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Основной" + +#: ../../Zotlabs/Module/Admin.php:116 +msgid "Clones" +msgstr "Клоны" + +#: ../../Zotlabs/Module/Admin.php:122 +msgid "Message queues" +msgstr "Очередь сообщений" + +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Ваше программное обеспечение должно быть обновлено" + +#: ../../Zotlabs/Module/Admin.php:140 ../../Zotlabs/Module/Admin/Addons.php:341 +#: ../../Zotlabs/Module/Admin/Addons.php:436 +#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Security.php:92 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +msgid "Administration" +msgstr "Администрирование" + +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Summary" +msgstr "Резюме" + +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Registered accounts" +msgstr "Зарегистрированные аккаунты" + +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Pending registrations" +msgstr "Ждут утверждения" + +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Registered channels" +msgstr "Зарегистрированные каналы" + +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Active addons" +msgstr "Активные расширения" + +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Version" +msgstr "Версия системы" + +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Repository version (master)" +msgstr "Версия репозитория (master)" + +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (dev)" +msgstr "Версия репозитория (dev)" + +#: ../../Zotlabs/Module/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "Не удалось получить доступ к записи контакта." + +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "Не удалось обнаружить выбранный профиль." + +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "Контакты обновлены." + +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "Не удалось обновить запись контакта." + +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "теперь подключён к" + +#: ../../Zotlabs/Module/Connedit.php:427 +msgid "Could not access address book record." +msgstr "Не удалось получить доступ к записи адресной книги." + +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Обновление невозможно - в настоящее время канал недоступен." + +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Unable to set address book parameters." +msgstr "Не удалось получить доступ к параметрам адресной книги." + +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Connection has been removed." +msgstr "Контакт был удалён." + +#: ../../Zotlabs/Module/Connedit.php:597 +#, php-format +msgid "View %s's profile" +msgstr "Просмотр %s профиля" + +#: ../../Zotlabs/Module/Connedit.php:601 +msgid "Refresh Permissions" +msgstr "Обновить разрешения" + +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Получить обновлённые разрешения" + +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "Обновить фотографию" + +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "Получить обновлённую фотографию" + +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Просмотреть последние публикации и комментарии" + +#: ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Admin/Accounts.php:177 +msgid "Unblock" +msgstr "Разблокировать" + +#: ../../Zotlabs/Module/Connedit.php:622 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +msgid "Block" +msgstr "Блокировать" + +#: ../../Zotlabs/Module/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Блокировать (или разблокировать) связи с этим контактом" + +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "Этот контакт заблокирован!" + +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Не игнорировать" + +#: ../../Zotlabs/Module/Connedit.php:633 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Игнорировать (или не игнорировать) все связи для этого контакта" + +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "This connection is ignored!" +msgstr "Этот контакт игнорируется!" + +#: ../../Zotlabs/Module/Connedit.php:638 msgid "Unarchive" msgstr "Разархивировать" -#: ../../mod/connedit.php:385 +#: ../../Zotlabs/Module/Connedit.php:638 msgid "Archive" msgstr "Заархивировать" -#: ../../mod/connedit.php:388 -msgid "Archive or Unarchive this connection" -msgstr " Заархивировать или разархивировать этот канал" +#: ../../Zotlabs/Module/Connedit.php:641 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Заархивировать (или разархивировать) этот контакт - пометить канал отключённым но сохранить содержимое" -#: ../../mod/connedit.php:391 +#: ../../Zotlabs/Module/Connedit.php:642 +msgid "This connection is archived!" +msgstr "Этот контакт заархивирован!" + +#: ../../Zotlabs/Module/Connedit.php:646 msgid "Unhide" msgstr "Показать" -#: ../../mod/connedit.php:391 +#: ../../Zotlabs/Module/Connedit.php:646 msgid "Hide" msgstr "Скрыть" -#: ../../mod/connedit.php:394 -msgid "Hide or Unhide this connection" -msgstr "Скрыть или показывать этот канал" +#: ../../Zotlabs/Module/Connedit.php:649 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Скрыть или показать этот контакт от / для остальных" -#: ../../mod/connedit.php:401 +#: ../../Zotlabs/Module/Connedit.php:650 +msgid "This connection is hidden!" +msgstr "Этот контакт скрыт!" + +#: ../../Zotlabs/Module/Connedit.php:657 msgid "Delete this connection" msgstr "Удалить этот контакт" -#: ../../mod/connedit.php:444 ../../mod/connedit.php:473 +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "Получить vCard" + +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "Получить электронную телефонную карточку для этого контакта" + +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "Открывать раздел \"Индивидуальные разрешения\" по умолчанию" + +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "Сходство" + +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "Открыть секцию установления сходства по умолчанию" + +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "Фильтр" + +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "Открывать секцию \"Настраиваемый фильтр\" по умолчанию" + +#: ../../Zotlabs/Module/Connedit.php:779 msgid "Approve this connection" msgstr "Утвердить этот контакт" -#: ../../mod/connedit.php:444 +#: ../../Zotlabs/Module/Connedit.php:779 msgid "Accept connection to allow communication" -msgstr "" +msgstr "Принять контакт чтобы разрешить связь" -#: ../../mod/connedit.php:460 -msgid "Automatic Permissions Settings" -msgstr "Настройки автоматических разрешений" +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Установить сходство" -#: ../../mod/connedit.php:460 -#, php-format -msgid "Connections: settings for %s" -msgstr "" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Установить профиль" -#: ../../mod/connedit.php:464 +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Установить сходство и профиль" + +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "Этот контакт недоступен для данного местоположения" + +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "Этот контакт может быть недоступен из других мест размещения канала" + +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "Независимое местоположение не поддерживается их сетью." + +#: ../../Zotlabs/Module/Connedit.php:847 msgid "" -"When receiving a channel introduction, any permissions provided here will be" -" applied to the new connection automatically and the introduction approved. " -"Leave this page if you do not wish to use this feature." -msgstr "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "Этот контакт недоступен из данного местоположения. Независимое местоположение не поддерживается их сетью." -#: ../../mod/connedit.php:466 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Применить эти разрешения автоматически" + +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "Connection requests will be approved without your interaction" +msgstr "Запросы контактов будут одобрены без вашего участия" + +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "Роль разрешения" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "Добавить роль разрешения" + +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "Главный адрес это контакта" + +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Доступные расположения:" + +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям." + +#: ../../Zotlabs/Module/Connedit.php:867 +msgid "Connection Tools" +msgstr "Инструменты контактов" + +#: ../../Zotlabs/Module/Connedit.php:869 msgid "Slide to adjust your degree of friendship" -msgstr "" +msgstr "Прокрутить для настройки степени дружбы" -#: ../../mod/connedit.php:472 -msgid "inherited" -msgstr "унаследованный" +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Прокрутить для настройки оценки" -#: ../../mod/connedit.php:474 -msgid "Connection has no individual permissions!" -msgstr "" +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Объясните свою оценку (не обязательно)" -#: ../../mod/connedit.php:475 +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Настраиваемый фильтр" + +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "Импортировать публикации только с этим текстом" + +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +#: ../../Zotlabs/Module/Admin/Site.php:347 +#: ../../Zotlabs/Module/Admin/Site.php:348 msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "слова по одному в строку, #тег, /шаблон/ или lang=xxl; оставьте пустым для импорта всех публикаций" -#: ../../mod/connedit.php:477 -msgid "Profile Visibility" -msgstr "Видимость профиля" +#: ../../Zotlabs/Module/Connedit.php:876 +msgid "Do not import posts with this text" +msgstr "Не импортировать публикации с этим текстом" -#: ../../mod/connedit.php:478 +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "Эта информация общедоступна!" + +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Ожидающие подтверждения контактов" + +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "наследуется" + +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." -msgstr "" +msgstr "Пожалуйста, выберите профиль который вы хотит показывать в %s при безопасном просмотре." -#: ../../mod/connedit.php:479 -msgid "Contact Information / Notes" -msgstr "Информация / Примечания о канале" - -#: ../../mod/connedit.php:480 -msgid "Edit contact notes" -msgstr "Редактировать примечания канала" - -#: ../../mod/connedit.php:482 +#: ../../Zotlabs/Module/Connedit.php:890 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 msgid "Their Settings" msgstr "Их настройки" -#: ../../mod/connedit.php:483 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 msgid "My Settings" msgstr "Мои настройки" -#: ../../mod/connedit.php:485 -msgid "Clear/Disable Automatic Permissions" -msgstr "" - -#: ../../mod/connedit.php:486 -msgid "Forum Members" -msgstr "Участники форума" - -#: ../../mod/connedit.php:487 -msgid "Soapbox" -msgstr "Soapbox" - -#: ../../mod/connedit.php:488 -msgid "Full Sharing (typical social network permissions)" -msgstr "" - -#: ../../mod/connedit.php:489 -msgid "Cautious Sharing " -msgstr "" - -#: ../../mod/connedit.php:490 -msgid "Follow Only" -msgstr "Только следовать" - -#: ../../mod/connedit.php:491 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Settings/Permcats.php:113 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 msgid "Individual Permissions" msgstr "Индивидуальные разрешения" -#: ../../mod/connedit.php:492 +#: ../../Zotlabs/Module/Connedit.php:894 +#: ../../Zotlabs/Module/Settings/Permcats.php:114 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "" +"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 "Некоторые разрешения могут наследовать из настроек приватности ваших каналов которые могут иметь более высокий приоритет чем индивидуальные. Вы не можете менять эти настройки здесь." -#: ../../mod/connedit.php:493 -msgid "Advanced Permissions" -msgstr "Дополнительные разрешения" +#: ../../Zotlabs/Module/Connedit.php:895 +msgid "" +"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." +msgstr "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек." -#: ../../mod/connedit.php:494 -msgid "Simple Permissions (select one and submit)" -msgstr "" - -#: ../../mod/connedit.php:498 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Посетить %s's ​​профиль - %s" - -#: ../../mod/connedit.php:499 -msgid "Block/Unblock contact" -msgstr "Запретить/разрешить контакт" - -#: ../../mod/connedit.php:500 -msgid "Ignore contact" -msgstr "Игнорировать контакт" - -#: ../../mod/connedit.php:501 -msgid "Repair URL settings" -msgstr "Ремонт настройки URL" - -#: ../../mod/connedit.php:502 -msgid "View conversations" -msgstr "Просмотр разговоров" - -#: ../../mod/connedit.php:504 -msgid "Delete contact" -msgstr "Удалить контакт" - -#: ../../mod/connedit.php:507 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "Last update:" msgstr "Последнее обновление:" -#: ../../mod/connedit.php:509 -msgid "Update public posts" -msgstr "Обновить публичные сообщения" +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "Сведения" -#: ../../mod/connedit.php:511 -msgid "Update now" -msgstr "Обновить сейчас" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Импортировать части веб-страницы" -#: ../../mod/connedit.php:517 -msgid "Currently blocked" -msgstr "В настоящее время заблокирован" +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Импортировать выбранное" -#: ../../mod/connedit.php:518 -msgid "Currently ignored" -msgstr "В настоящее время игнорируются" +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Экспортировать часть веб-страницы" -#: ../../mod/connedit.php:519 -msgid "Currently archived" -msgstr "В настоящее время зархивированны" +#: ../../Zotlabs/Module/Webpages.php:79 +msgid "Export selected" +msgstr "Экспортировать выбранное" -#: ../../mod/connedit.php:520 -msgid "Currently pending" -msgstr "В настоящее время в ожидании" +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Действия" -#: ../../mod/connedit.php:521 -msgid "Hide this contact from others" -msgstr "Скрыть этот канал от других" +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Ссылка страницы" -#: ../../mod/connedit.php:521 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Заголовок страницы" -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Неверный тип файла." -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Ошибка открытия ZIP файла" -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "Неверный путь к каталогу." -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "" +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Не обнаружено частей веб-страницы." -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "" +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Импорт завершен." -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "" +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Ссылка страницы" -#: ../../mod/delegate.php:130 ../../mod/photos.php:906 ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Удалить" +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Редактировать веб-страницу" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Добавить" +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Редактировать шаблон" -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Нет записей." +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Для доступа к этому серверу каталогов требуется токен" -#: ../../mod/search.php:13 ../../mod/directory.php:15 -#: ../../mod/dirprofile.php:9 ../../mod/display.php:9 ../../mod/photos.php:443 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Общественный доступ запрещен." +#: ../../Zotlabs/Module/Moderate.php:65 +msgid "Comment approved" +msgstr "Комментарий одобрен" -#: ../../mod/directory.php:146 ../../mod/dirprofile.php:95 -msgid "Gender: " -msgstr "Пол:" +#: ../../Zotlabs/Module/Moderate.php:69 +msgid "Comment deleted" +msgstr "Комментарий удалён" -#: ../../mod/directory.php:207 -msgid "Finding:" -msgstr "Поиск:" +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Добавить статью" -#: ../../mod/directory.php:215 -msgid "next page" -msgstr "следующая страница" +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "Закладка добавлена" -#: ../../mod/directory.php:215 -msgid "previous page" -msgstr "предыдущая страница" +#: ../../Zotlabs/Module/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "Мои закладки" -#: ../../mod/directory.php:222 -msgid "No entries (some entries may be hidden)." -msgstr "" +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "Закладки моих контактов" -#: ../../mod/dirprofile.php:108 -msgid "Status: " -msgstr "Статус:" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "Файлы: поделились со мной" -#: ../../mod/dirprofile.php:109 -msgid "Sexual Preference: " -msgstr "Сексуальная ориентация:" +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "НОВОЕ" -#: ../../mod/dirprofile.php:111 -msgid "Homepage: " -msgstr "Домашняя страница:" +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:288 +msgid "Last Modified" +msgstr "Последнее изменение" -#: ../../mod/dirprofile.php:112 -msgid "Hometown: " -msgstr "Город проживания:" +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Удалить все файлы" -#: ../../mod/dirprofile.php:114 -msgid "About: " -msgstr "О себе:" +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Удалить этот файл" -#: ../../mod/dirprofile.php:162 -msgid "Keywords: " -msgstr "Ключевые слова:" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Выбрать каталог для закладок" -#: ../../mod/dirsearch.php:21 -msgid "This site is not a directory server" -msgstr "Этот сайт не является сервером каталога" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Сохранить закладку" -#: ../../mod/home.php:81 -msgid "Hubzilla - "The Network"" -msgstr "" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL закладки" -#: ../../mod/home.php:94 +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "или введите новое имя каталога закладок" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Доступ запрещен." + +#: ../../Zotlabs/Module/Authorize.php:17 +msgid "Unknown App" +msgstr "Неизвестное приложение" + +#: ../../Zotlabs/Module/Authorize.php:22 +msgid "Authorize" +msgstr "Авторизовать" + +#: ../../Zotlabs/Module/Authorize.php:23 #, php-format -msgid "Welcome to %s" -msgstr "Добро пожаловать в %s" +msgid "Do you authorize the app %s to access your channel data?" +msgstr "Авторизуете ли вы приложение %s для доступа к данным вашего канала?" -#: ../../mod/setup.php:162 -msgid "Hubzilla Server - Setup" -msgstr "Hubzilla Сервер - Установка" +#: ../../Zotlabs/Module/Authorize.php:25 +msgid "Allow" +msgstr "Разрешить" -#: ../../mod/setup.php:168 +#: ../../Zotlabs/Module/Authorize.php:26 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +msgid "Deny" +msgstr "Запретить" + +#: ../../Zotlabs/Module/Search.php:230 +#, php-format +msgid "Items tagged with: %s" +msgstr "Объекты помечены как: %s" + +#: ../../Zotlabs/Module/Search.php:232 +#, php-format +msgid "Search results for: %s" +msgstr "Результаты поиска для: %s" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "$Projectname сервер - Установка" + +#: ../../Zotlabs/Module/Setup.php:174 msgid "Could not connect to database." msgstr "Не удалось подключиться к серверу баз данных." -#: ../../mod/setup.php:172 +#: ../../Zotlabs/Module/Setup.php:178 msgid "" "Could not connect to specified site URL. Possible SSL certificate or DNS " "issue." -msgstr "" +msgstr "Не удалось подключиться к указанному URL. Вероятно проблема с SSL сертификатом или DNS." -#: ../../mod/setup.php:179 +#: ../../Zotlabs/Module/Setup.php:185 msgid "Could not create table." msgstr "Не удалось создать таблицу." -#: ../../mod/setup.php:185 +#: ../../Zotlabs/Module/Setup.php:191 msgid "Your site database has been installed." msgstr "Ваша база данных установлена." -#: ../../mod/setup.php:190 +#: ../../Zotlabs/Module/Setup.php:197 msgid "" -"You may need to import the file \"install/database.sql\" manually using " -"phpmyadmin or mysql." -msgstr "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Вам может понадобится импортировать файл \"install/schema_xxx.sql\" вручную используя клиент базы данных." -#: ../../mod/setup.php:191 ../../mod/setup.php:260 ../../mod/setup.php:655 +#: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:749 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"." -#: ../../mod/setup.php:257 +#: ../../Zotlabs/Module/Setup.php:259 msgid "System check" msgstr "Проверка системы" -#: ../../mod/setup.php:261 ../../mod/events.php:380 -msgid "Next" -msgstr "Следующая" - -#: ../../mod/setup.php:262 +#: ../../Zotlabs/Module/Setup.php:264 msgid "Check again" -msgstr "Проверить снова" +msgstr "Перепроверить" -#: ../../mod/setup.php:284 +#: ../../Zotlabs/Module/Setup.php:286 msgid "Database connection" msgstr "Подключение к базе данных" -#: ../../mod/setup.php:285 +#: ../../Zotlabs/Module/Setup.php:287 msgid "" -"In order to install Hubzilla we need to know how to connect to your " +"In order to install $Projectname we need to know how to connect to your " "database." -msgstr "" +msgstr "Для установки $Projectname необходимо знать как подключиться к ваше базе данных." -#: ../../mod/setup.php:286 +#: ../../Zotlabs/Module/Setup.php:288 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." -msgstr "" +msgstr "Пожалуйста, свяжитесь с вашим хостинг провайдером или администрацией сайта если у вас есть вопросы об этих настройках." -#: ../../mod/setup.php:287 +#: ../../Zotlabs/Module/Setup.php:289 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." -msgstr "" +msgstr "Указанная ниже база данных должна существовать. Если это не так, пожалуйста, создайте её перед тем, как продолжить." -#: ../../mod/setup.php:291 +#: ../../Zotlabs/Module/Setup.php:293 msgid "Database Server Name" -msgstr "Имя сервера базы данных" +msgstr "Имя сервера баз данных" -#: ../../mod/setup.php:291 -msgid "Default is localhost" -msgstr "По умолчанию localhost" +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "По умолчанию 127.0.0.1" -#: ../../mod/setup.php:292 +#: ../../Zotlabs/Module/Setup.php:294 msgid "Database Port" -msgstr "Порт базы данных" +msgstr "Порт сервера баз данных" -#: ../../mod/setup.php:292 +#: ../../Zotlabs/Module/Setup.php:294 msgid "Communication port number - use 0 for default" msgstr "Порт коммуникации - используйте 0 по умолчанию" -#: ../../mod/setup.php:293 +#: ../../Zotlabs/Module/Setup.php:295 msgid "Database Login Name" msgstr "Имя для подключения к базе данных" -#: ../../mod/setup.php:294 +#: ../../Zotlabs/Module/Setup.php:296 msgid "Database Login Password" msgstr "Пароль для подключения к базе данных" -#: ../../mod/setup.php:295 +#: ../../Zotlabs/Module/Setup.php:297 msgid "Database Name" msgstr "Имя базы данных" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Тип базы данных" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 msgid "Site administrator email address" msgstr "Адрес электронной почты администратора сайта" -#: ../../mod/setup.php:297 ../../mod/setup.php:339 +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 msgid "" "Your account email address must match this in order to use the web admin " "panel." -msgstr "" +msgstr "Ваш адрес электронной почты должен соответствовать этому для использования веб-панели администратора." -#: ../../mod/setup.php:298 ../../mod/setup.php:341 +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 msgid "Website URL" msgstr "URL веб-сайта" -#: ../../mod/setup.php:298 ../../mod/setup.php:341 +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 msgid "Please use SSL (https) URL if available." msgstr "Пожалуйста, используйте SSL (https) URL если возможно." -#: ../../mod/setup.php:301 ../../mod/setup.php:344 +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 msgid "Please select a default timezone for your website" msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта" -#: ../../mod/setup.php:328 +#: ../../Zotlabs/Module/Setup.php:330 msgid "Site settings" msgstr "Настройки сайта" -#: ../../mod/setup.php:387 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "Требуется PHP версии 5.5 или выше" -#: ../../mod/setup.php:388 +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "Версия PHP" + +#: ../../Zotlabs/Module/Setup.php:401 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Не удалось найти консольную версию PHP в путях переменной PATH веб-сервера." + +#: ../../Zotlabs/Module/Setup.php:402 msgid "" "If you don't have a command line version of PHP installed on server, you " "will not be able to run background polling via cron." -msgstr "" +msgstr "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. " -#: ../../mod/setup.php:392 +#: ../../Zotlabs/Module/Setup.php:406 msgid "PHP executable path" -msgstr "PHP executable путь" +msgstr "Пусть к исполняемому модулю PHP" -#: ../../mod/setup.php:392 +#: ../../Zotlabs/Module/Setup.php:406 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." -msgstr "" +msgstr "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки." -#: ../../mod/setup.php:397 +#: ../../Zotlabs/Module/Setup.php:411 msgid "Command line PHP" -msgstr "Command line PHP" +msgstr "Командная строка PHP" -#: ../../mod/setup.php:406 +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена." + +#: ../../Zotlabs/Module/Setup.php:424 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." +msgstr "В консольной версии PHP в вашей системе отключена опция \"register_argc_argv\"." + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "Это необходимо для функционирования доставки сообщений." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" msgstr "" -#: ../../mod/setup.php:407 -msgid "This is required for message delivery to work." -msgstr "Это требуется для доставки сообщений." +#: ../../Zotlabs/Module/Setup.php:446 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Максимально разрешённый общий размер загрузок установлен в %s. Максимальный размер одной загрузки установлен в %s. Вам разрешено загружать до %d файлов за один приём." -#: ../../mod/setup.php:409 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Вы можете изменить эти настройки в файле php.ini на сервере." -#: ../../mod/setup.php:430 +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "Максимальный размер загрузки в PHP" + +#: ../../Zotlabs/Module/Setup.php:476 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" -msgstr "" +msgstr "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования" -#: ../../mod/setup.php:431 +#: ../../Zotlabs/Module/Setup.php:477 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/setup.php:433 +#: ../../Zotlabs/Module/Setup.php:480 msgid "Generate encryption keys" msgstr "Генерация ключей шифрования" -#: ../../mod/setup.php:440 +#: ../../Zotlabs/Module/Setup.php:497 msgid "libCurl PHP module" -msgstr "libCurl PHP модуль" +msgstr "" -#: ../../mod/setup.php:441 +#: ../../Zotlabs/Module/Setup.php:498 msgid "GD graphics PHP module" -msgstr "GD graphics PHP модуль" +msgstr "" -#: ../../mod/setup.php:442 +#: ../../Zotlabs/Module/Setup.php:499 msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP модуль" +msgstr "" -#: ../../mod/setup.php:443 -msgid "mysqli PHP module" -msgstr "mysqli PHP модуль" +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "" -#: ../../mod/setup.php:444 +#: ../../Zotlabs/Module/Setup.php:501 msgid "mb_string PHP module" -msgstr "mb_string PHP модуль" +msgstr "" -#: ../../mod/setup.php:445 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP модуль" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "" -#: ../../mod/setup.php:450 ../../mod/setup.php:452 +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite модуль" +msgstr "" -#: ../../mod/setup.php:450 +#: ../../Zotlabs/Module/Setup.php:507 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Ошибка: Apache веб-сервер модуль mod-rewrite требуется, но не установлен." +msgstr "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен." -#: ../../mod/setup.php:456 ../../mod/setup.php:459 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "" -#: ../../mod/setup.php:456 +#: ../../Zotlabs/Module/Setup.php:513 msgid "" -"Error: proc_open is required but is either not installed or has been " +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " "disabled in php.ini" -msgstr "Ошибка: proc_open требуется, но не установлен или отключен в php.ini" +msgstr "" -#: ../../mod/setup.php:464 +#: ../../Zotlabs/Module/Setup.php:527 msgid "Error: libCURL PHP module required but not installed." -msgstr "Ошибка: Модуль libCURL PHP требуется, но не установлен." +msgstr "" -#: ../../mod/setup.php:468 +#: ../../Zotlabs/Module/Setup.php:531 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Ошибка: GD graphics PHP модуль с поддержкой JPEG требуется, но не установлен." +msgstr "" -#: ../../mod/setup.php:472 +#: ../../Zotlabs/Module/Setup.php:535 msgid "Error: openssl PHP module required but not installed." -msgstr "Ошибка: openssl PHP модуль требуется, но не установлен." +msgstr "" -#: ../../mod/setup.php:476 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Ошибка: mysqli PHP модуль требуется, но не установлен." +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" -#: ../../mod/setup.php:480 +#: ../../Zotlabs/Module/Setup.php:543 msgid "Error: mb_string PHP module required but not installed." -msgstr "Ошибка: mb_string PHP модуль требуется, но не установлен." +msgstr "" -#: ../../mod/setup.php:484 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Ошибка: mcrypt PHP модуль требуется, но не установлен." +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" -#: ../../mod/setup.php:500 +#: ../../Zotlabs/Module/Setup.php:551 +msgid "Error: zip PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:570 ../../Zotlabs/Module/Setup.php:579 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:575 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 "Веб-установщик должен быть в состоянии создать файл с именем \".htconfig.php\" в верхней папке вашего веб-сервера, но он не в состоянии сделать это." +"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 "" -#: ../../mod/setup.php:501 +#: ../../Zotlabs/Module/Setup.php:576 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 "" -#: ../../mod/setup.php:502 -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." +#: ../../Zotlabs/Module/Setup.php:577 +msgid "Please see install/INSTALL.txt for additional information." msgstr "" -#: ../../mod/setup.php:503 +#: ../../Zotlabs/Module/Setup.php:593 msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Вы можете пропустить эту процедуру и выполнить установку вручную. Обратитесь к файлу \"install/INSTALL.txt\" для получения инструкций." - -#: ../../mod/setup.php:506 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php доступен для записи" - -#: ../../mod/setup.php:516 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." msgstr "" -#: ../../mod/setup.php:517 +#: ../../Zotlabs/Module/Setup.php:594 +#, php-format msgid "" "In order to store these compiled templates, the web server needs to have " -"write access to the directory view/tpl/smarty3/ under the Red top level " -"folder." +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../mod/setup.php:518 ../../mod/setup.php:536 +#: ../../Zotlabs/Module/Setup.php:595 ../../Zotlabs/Module/Setup.php:616 msgid "" -"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." msgstr "" -#: ../../mod/setup.php:519 +#: ../../Zotlabs/Module/Setup.php:596 +#, php-format msgid "" "Note: as a security measure, you should give the web server write access to " -"view/tpl/smarty3/ only--not the template files (.tpl) that it contains." +"%s only--not the template files (.tpl) that it contains." msgstr "" -#: ../../mod/setup.php:522 -msgid "view/tpl/smarty3 is writable" -msgstr "view/tpl/smarty3 доступен для записи" +#: ../../Zotlabs/Module/Setup.php:599 +#, php-format +msgid "%s is writable" +msgstr "%s доступен для записи" -#: ../../mod/setup.php:535 +#: ../../Zotlabs/Module/Setup.php:615 msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" +msgstr "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения." -#: ../../mod/setup.php:539 +#: ../../Zotlabs/Module/Setup.php:619 msgid "store is writable" -msgstr "" +msgstr "хранилище доступно для записи" -#: ../../mod/setup.php:569 +#: ../../Zotlabs/Module/Setup.php:651 msgid "" -"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 site." msgstr "" -#: ../../mod/setup.php:570 +#: ../../Zotlabs/Module/Setup.php:652 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 "" -#: ../../mod/setup.php:571 +#: ../../Zotlabs/Module/Setup.php:653 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." -msgstr "" +msgstr "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе." -#: ../../mod/setup.php:572 +#: ../../Zotlabs/Module/Setup.php:654 msgid "" -"If your certificate is not recognised, members of other sites (who may " +"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 "" -#: ../../mod/setup.php:573 +#: ../../Zotlabs/Module/Setup.php:655 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "" -#: ../../mod/setup.php:574 +#: ../../Zotlabs/Module/Setup.php:656 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../mod/setup.php:576 -msgid "SSL certificate validation" -msgstr "проверка сертификата SSL" +#: ../../Zotlabs/Module/Setup.php:658 +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 "" -#: ../../mod/setup.php:582 +#: ../../Zotlabs/Module/Setup.php:660 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:666 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../mod/setup.php:584 +#: ../../Zotlabs/Module/Setup.php:669 msgid "Url rewrite is working" -msgstr "Url rewrite работает" +msgstr "Перезапись URL работает" -#: ../../mod/setup.php:594 +#: ../../Zotlabs/Module/Setup.php:683 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 "" -#: ../../mod/setup.php:618 -msgid "Errors encountered creating database tables." -msgstr "" +#: ../../Zotlabs/Module/Setup.php:747 +msgid "

What next?

" +msgstr "

Что дальше?

" -#: ../../mod/setup.php:653 -msgid "

What next

" -msgstr "

Что дальше

" - -#: ../../mod/setup.php:654 +#: ../../Zotlabs/Module/Setup.php:748 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +msgstr "Вам понадобится [вручную] настроить запланированную задачу для опрашивателя." -#: ../../mod/editblock.php:8 ../../mod/editblock.php:27 -#: ../../mod/editblock.php:53 ../../mod/editlayout.php:36 -#: ../../mod/editpost.php:20 ../../mod/editwebpage.php:32 -msgid "Item not found" -msgstr "Элемент не найден" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Удаленная информация о конфиденциальности недоступна." -#: ../../mod/editblock.php:77 -msgid "Edit Block" -msgstr "Редактировать блок" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Видимо для:" -#: ../../mod/editblock.php:87 -msgid "Delete block?" -msgstr "Удалить блок?" - -#: ../../mod/editblock.php:115 ../../mod/editlayout.php:110 -#: ../../mod/editpost.php:116 ../../mod/editwebpage.php:147 -msgid "Insert YouTube video" -msgstr "Вставить YouTube видео" - -#: ../../mod/editblock.php:116 ../../mod/editlayout.php:111 -#: ../../mod/editpost.php:117 ../../mod/editwebpage.php:148 -msgid "Insert Vorbis [.ogg] video" -msgstr "Вставить Vorbis [.ogg] видео" - -#: ../../mod/editblock.php:117 ../../mod/editlayout.php:112 -#: ../../mod/editpost.php:118 ../../mod/editwebpage.php:149 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Вставить Vorbis [.ogg] музыку" - -#: ../../mod/editblock.php:153 -msgid "Delete Block" -msgstr "Удалить блок" - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Шаблон обновлен." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Шаблон не найден" - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Имя модуля:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:59 -msgid "Layout Help" -msgstr "Помощь к шаблону" - -#: ../../mod/editlayout.php:72 -msgid "Edit Layout" -msgstr "Редактировать шаблон" - -#: ../../mod/editlayout.php:82 -msgid "Delete layout?" -msgstr "Удалить шаблон?" - -#: ../../mod/editlayout.php:146 -msgid "Delete Layout" -msgstr "Удалить шаблон" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Элемент нельзя редактировать" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Удалить элемент?" - -#: ../../mod/editwebpage.php:106 -msgid "Edit Webpage" -msgstr "Редактировать веб-страницу" - -#: ../../mod/editwebpage.php:116 -msgid "Delete webpage?" -msgstr "Удалить веб-страницу?" - -#: ../../mod/editwebpage.php:186 -msgid "Delete Webpage" -msgstr "Удалить веб-страницу" - -#: ../../mod/siteinfo.php:57 -#, php-format -msgid "Version %s" -msgstr "Версия %s" - -#: ../../mod/siteinfo.php:76 -msgid "Installed plugins/addons/apps:" -msgstr "" - -#: ../../mod/siteinfo.php:89 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/siteinfo.php:97 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:98 -msgid "" -"This is a hub of the Hubzilla - a global cooperative network of " -"decentralised privacy enhanced websites." -msgstr "" - -#: ../../mod/siteinfo.php:101 -msgid "Running at web location" -msgstr "" - -#: ../../mod/siteinfo.php:102 -msgid "" -"Please visit GetZot.com to learn more " -"about the Hubzilla." -msgstr "Пожалуйста посетите GetZot.com чтобы узнать больше о Hubzilla." - -#: ../../mod/siteinfo.php:103 -msgid "Bug reports and issues: please visit" -msgstr "" - -#: ../../mod/siteinfo.php:106 -msgid "" -"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " -"com" -msgstr "" - -#: ../../mod/siteinfo.php:108 -msgid "Site Administrators" -msgstr "Администратор сайта" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Альбом не найден." - -#: ../../mod/photos.php:119 ../../mod/photos.php:669 -msgid "Delete Album" -msgstr "Удалить альбом" - -#: ../../mod/photos.php:159 ../../mod/photos.php:957 -msgid "Delete Photo" -msgstr "Удалить фотографию" - -#: ../../mod/photos.php:453 -msgid "No photos selected" -msgstr "Никакие фотографии не выбраны" - -#: ../../mod/photos.php:500 -msgid "Access to this item is restricted." -msgstr "Доступ к этому элементу ограничен." - -#: ../../mod/photos.php:574 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото." - -#: ../../mod/photos.php:577 -#, php-format -msgid "You have used %1$.2f Mbytes of photo storage." -msgstr "Вы использовали %1$.2f мегабайт для хранения фото." - -#: ../../mod/photos.php:596 -msgid "Upload Photos" -msgstr "Загрузить фотографии" - -#: ../../mod/photos.php:600 ../../mod/photos.php:664 -msgid "New album name: " -msgstr "Название нового альбома:" - -#: ../../mod/photos.php:601 -msgid "or existing album name: " -msgstr "или существующий альбом:" - -#: ../../mod/photos.php:602 -msgid "Do not show a status post for this upload" -msgstr "Не показывать пост о состоянии этой загрузки" - -#: ../../mod/photos.php:653 ../../mod/photos.php:675 ../../mod/photos.php:1129 -#: ../../mod/photos.php:1144 -msgid "Contact Photos" -msgstr "Фотографии контакта" - -#: ../../mod/photos.php:679 -msgid "Edit Album" -msgstr "Редактировать Фотоальбом" - -#: ../../mod/photos.php:685 -msgid "Show Newest First" -msgstr "Показать новые первыми" - -#: ../../mod/photos.php:687 -msgid "Show Oldest First" -msgstr "Показать старые первыми" - -#: ../../mod/photos.php:730 ../../mod/photos.php:1176 -msgid "View Photo" -msgstr "Посмотреть фотографию" - -#: ../../mod/photos.php:776 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:778 -msgid "Photo not available" -msgstr "Фотография не доступна" - -#: ../../mod/photos.php:838 -msgid "Use as profile photo" -msgstr "Использовать в качестве фотографии профиля" - -#: ../../mod/photos.php:862 -msgid "View Full Size" -msgstr "Посмотреть в полный размер" - -#: ../../mod/photos.php:940 -msgid "Edit photo" -msgstr "Редактировать фотографию" - -#: ../../mod/photos.php:942 -msgid "Rotate CW (right)" -msgstr "Повернуть CW (направо)" - -#: ../../mod/photos.php:943 -msgid "Rotate CCW (left)" -msgstr "Повернуть CCW (налево)" - -#: ../../mod/photos.php:946 -msgid "New album name" -msgstr "Новое название альбома:" - -#: ../../mod/photos.php:949 -msgid "Caption" -msgstr "Подпись" - -#: ../../mod/photos.php:951 -msgid "Add a Tag" -msgstr "Добавить тег" - -#: ../../mod/photos.php:954 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1107 -msgid "In This Photo:" -msgstr "" - -#: ../../mod/photos.php:1182 -msgid "View Album" -msgstr "Посмотреть фотоальбом" - -#: ../../mod/photos.php:1191 -msgid "Recent Photos" -msgstr "Последние фотографии" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "" - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Источник создан" - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Источник обновлен." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "" - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Новый источник" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:110 -msgid "Channel Name" -msgstr "Имя канала" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Источник не найден." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Редактировать источник" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Удалить источник" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Источник удален" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- выбрать -" - -#: ../../mod/events.php:72 -msgid "Event title and start time are required." -msgstr "Название события и время начала требуется." - -#: ../../mod/events.php:310 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:332 -msgid "Edit event" -msgstr "Редактировать мероприятие" - -#: ../../mod/events.php:378 -msgid "Create New Event" -msgstr "Создать новое мероприятие" - -#: ../../mod/events.php:379 -msgid "Previous" -msgstr "Предыдущая" - -#: ../../mod/events.php:450 -msgid "hour:minute" -msgstr "часы:минуты" - -#: ../../mod/events.php:470 -msgid "Event details" -msgstr "Детали мероприятия" - -#: ../../mod/events.php:471 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "Формат: %s %s. Дата начала и название необходимы." - -#: ../../mod/events.php:473 -msgid "Event Starts:" -msgstr "Начало мероприятия:" - -#: ../../mod/events.php:473 ../../mod/events.php:487 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 -msgid "Required" -msgstr "Необходимо" - -#: ../../mod/events.php:476 -msgid "Finish date/time is not known or not relevant" -msgstr "Дата окончания или время окончания не известно / не релевантно." - -#: ../../mod/events.php:478 -msgid "Event Finishes:" -msgstr "\t\nКонец мероприятий:" - -#: ../../mod/events.php:481 -msgid "Adjust for viewer timezone" -msgstr "Отрегулируйте для просмотра часовых поясов" - -#: ../../mod/events.php:483 -msgid "Description:" -msgstr "Описание:" - -#: ../../mod/events.php:487 -msgid "Title:" -msgstr "Заголовок:" - -#: ../../mod/events.php:489 -msgid "Share this event" -msgstr "Поделиться этим мероприятием" - -#: ../../mod/filestorage.php:68 -msgid "Permission Denied." -msgstr "Доступ запрещен." - -#: ../../mod/filestorage.php:85 -msgid "File not found." -msgstr "Файл не найден." - -#: ../../mod/filestorage.php:122 -msgid "Edit file permissions" -msgstr "Редактировать разрешения файла" - -#: ../../mod/filestorage.php:131 -msgid "Set/edit permissions" -msgstr "" - -#: ../../mod/filestorage.php:132 -msgid "Include all files and sub folders" -msgstr "" - -#: ../../mod/filestorage.php:133 -msgid "Return to file list" -msgstr "" - -#: ../../mod/filestorage.php:135 -msgid "Copy/paste this code to attach file to a post" -msgstr "" - -#: ../../mod/filestorage.php:136 -msgid "Copy/paste this URL to link file from a web page" -msgstr "" - -#: ../../mod/follow.php:25 -msgid "Channel added." +#: ../../Zotlabs/Module/Follow.php:36 +msgid "Connection added." msgstr "Контакт добавлен." -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s следит %2$s's %3$s" +#: ../../Zotlabs/Module/Mitem.php:31 ../../Zotlabs/Module/Menu.php:208 +msgid "Menu not found." +msgstr "Меню не найдено" + +#: ../../Zotlabs/Module/Mitem.php:63 +msgid "Unable to create element." +msgstr "Невозможно создать элемент." + +#: ../../Zotlabs/Module/Mitem.php:87 +msgid "Unable to update menu element." +msgstr "Невозможно обновить элемент меню." + +#: ../../Zotlabs/Module/Mitem.php:103 +msgid "Unable to add menu element." +msgstr "Невозможно добавить элемент меню." + +#: ../../Zotlabs/Module/Mitem.php:167 ../../Zotlabs/Module/Mitem.php:246 +msgid "Menu Item Permissions" +msgstr "Разрешения на пункт меню" + +#: ../../Zotlabs/Module/Mitem.php:168 ../../Zotlabs/Module/Mitem.php:247 +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "(click to open/close)" +msgstr "(нажмите чтобы открыть/закрыть)" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Контакт не найден." +#: ../../Zotlabs/Module/Mitem.php:174 ../../Zotlabs/Module/Mitem.php:191 +msgid "Link Name" +msgstr "Имя ссылки" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Предложение дружить отправлено." +#: ../../Zotlabs/Module/Mitem.php:175 ../../Zotlabs/Module/Mitem.php:255 +msgid "Link or Submenu Target" +msgstr "Ссылка или цель подменю" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Пригласить друзей" +#: ../../Zotlabs/Module/Mitem.php:175 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Введите URL ссылки или выберите имя меню для создания подменю" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" +#: ../../Zotlabs/Module/Mitem.php:176 ../../Zotlabs/Module/Mitem.php:256 +msgid "Use magic-auth if available" +msgstr "Использовать magic-auth если возможно" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "" +#: ../../Zotlabs/Module/Mitem.php:177 ../../Zotlabs/Module/Mitem.php:257 +msgid "Open link in new window" +msgstr "Открыть ссылку в новом окне" -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Коллекция создана." +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Order in list" +msgstr "Порядок в списке" -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Не удалось создать коллекцию." +#: ../../Zotlabs/Module/Mitem.php:178 ../../Zotlabs/Module/Mitem.php:258 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Большие значения в конце списка" -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "" +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Submit and finish" +msgstr "Отправить и завершить" -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Создать коллекцию контактов" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Submit and continue" +msgstr "Отправить и продолжить" -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Название коллекции:" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Menu:" +msgstr "Меню:" -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Пользователи могут видеть другие каналы" +#: ../../Zotlabs/Module/Mitem.php:192 +msgid "Link Target" +msgstr "Цель ссылки" -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Коллекция удалена." +#: ../../Zotlabs/Module/Mitem.php:195 +msgid "Edit menu" +msgstr "Редактировать меню" -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Невозможно удалить коллекцию." +#: ../../Zotlabs/Module/Mitem.php:198 +msgid "Edit element" +msgstr "Редактировать элемент" -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Редактор коллекций" +#: ../../Zotlabs/Module/Mitem.php:199 +msgid "Drop element" +msgstr "Удалить элемент" -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Участники" +#: ../../Zotlabs/Module/Mitem.php:200 +msgid "New element" +msgstr "Новый элемент" -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Все подключенные контакы" +#: ../../Zotlabs/Module/Mitem.php:201 +msgid "Edit this menu container" +msgstr "Редактировать контейнер меню" -#: ../../mod/group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Нажмите на канал, чтобы добавить или удалить." +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Add menu element" +msgstr "Добавить элемент меню" -#: ../../mod/tagger.php:98 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" +#: ../../Zotlabs/Module/Mitem.php:203 +msgid "Delete this menu item" +msgstr "Удалить этот элемент меню" -#: ../../mod/help.php:43 ../../mod/help.php:49 ../../mod/help.php:55 -msgid "Help:" -msgstr "Помощь:" +#: ../../Zotlabs/Module/Mitem.php:204 +msgid "Edit this menu item" +msgstr "Редактировать этот элемент меню" -#: ../../mod/help.php:69 ../../index.php:233 -msgid "Not Found" -msgstr "Не найдено" +#: ../../Zotlabs/Module/Mitem.php:222 +msgid "Menu item not found." +msgstr "Элемент меню не найден." -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Тег удален" +#: ../../Zotlabs/Module/Mitem.php:235 +msgid "Menu item deleted." +msgstr "Элемент меню удалён." -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Удалить Тег" +#: ../../Zotlabs/Module/Mitem.php:237 +msgid "Menu item could not be deleted." +msgstr "Невозможно удалить элемент меню." -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Выбрать тег для удаления: " +#: ../../Zotlabs/Module/Mitem.php:244 +msgid "Edit Menu Element" +msgstr "Редактировать элемент меню" -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Настройки темы обновленны." +#: ../../Zotlabs/Module/Mitem.php:254 +msgid "Link text" +msgstr "Текст ссылки" -#: ../../mod/admin.php:92 ../../mod/admin.php:441 -msgid "Site" -msgstr "Сайт" - -#: ../../mod/admin.php:93 -msgid "Accounts" -msgstr "Пользователи" - -#: ../../mod/admin.php:94 ../../mod/admin.php:885 -msgid "Channels" -msgstr "Каналы" - -#: ../../mod/admin.php:95 ../../mod/admin.php:976 ../../mod/admin.php:1018 -msgid "Plugins" -msgstr "Плагины" - -#: ../../mod/admin.php:96 ../../mod/admin.php:1181 ../../mod/admin.php:1217 -msgid "Themes" -msgstr "Темы" - -#: ../../mod/admin.php:97 ../../mod/admin.php:541 -msgid "Server" -msgstr "Серверы" - -#: ../../mod/admin.php:98 -msgid "DB updates" -msgstr "Обновление базы данных" - -#: ../../mod/admin.php:112 ../../mod/admin.php:119 ../../mod/admin.php:1304 -msgid "Logs" -msgstr "Журналы" - -#: ../../mod/admin.php:118 -msgid "Plugin Features" -msgstr "Функции плагинов" - -#: ../../mod/admin.php:120 -msgid "User registrations waiting for confirmation" -msgstr "Регистрации пользователей, которые ждут подтверждения" - -#: ../../mod/admin.php:197 -msgid "Message queues" -msgstr "Очередь недоставленных сообщений" - -#: ../../mod/admin.php:202 ../../mod/admin.php:440 ../../mod/admin.php:540 -#: ../../mod/admin.php:749 ../../mod/admin.php:884 ../../mod/admin.php:975 -#: ../../mod/admin.php:1017 ../../mod/admin.php:1180 ../../mod/admin.php:1216 -#: ../../mod/admin.php:1303 -msgid "Administration" -msgstr "Администрация" - -#: ../../mod/admin.php:203 -msgid "Summary" -msgstr "Резюме" - -#: ../../mod/admin.php:205 -msgid "Registered users" -msgstr "Всего пользователeй" - -#: ../../mod/admin.php:207 ../../mod/admin.php:544 -msgid "Pending registrations" -msgstr "Ждут утверждения" - -#: ../../mod/admin.php:208 -msgid "Version" -msgstr "Версия системы" - -#: ../../mod/admin.php:210 ../../mod/admin.php:545 -msgid "Active plugins" -msgstr "Активные плагины" - -#: ../../mod/admin.php:361 -msgid "Site settings updated." -msgstr "Настройки сайта обновлены." - -#: ../../mod/admin.php:392 -msgid "No special theme for accessibility" -msgstr "" - -#: ../../mod/admin.php:421 -msgid "Yes - with approval" -msgstr "" - -#: ../../mod/admin.php:427 -msgid "My site is not a public server" -msgstr "" - -#: ../../mod/admin.php:428 -msgid "My site has paid access only" -msgstr "" - -#: ../../mod/admin.php:429 -msgid "My site has free access only" -msgstr "" - -#: ../../mod/admin.php:430 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "" - -#: ../../mod/admin.php:444 -msgid "File upload" -msgstr "Загрузка файла" - -#: ../../mod/admin.php:445 -msgid "Policies" -msgstr "Правила" - -#: ../../mod/admin.php:450 -msgid "Site name" -msgstr "Название сайта" - -#: ../../mod/admin.php:451 -msgid "Banner/Logo" -msgstr "Баннер / логотип" - -#: ../../mod/admin.php:452 -msgid "Administrator Information" -msgstr "Информация об администраторе" - -#: ../../mod/admin.php:452 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "" - -#: ../../mod/admin.php:453 -msgid "System language" -msgstr "Язык системы" - -#: ../../mod/admin.php:454 -msgid "System theme" -msgstr "Тема системы" - -#: ../../mod/admin.php:454 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:455 -msgid "Mobile system theme" -msgstr "Мобильная тема системы" - -#: ../../mod/admin.php:455 -msgid "Theme for mobile devices" -msgstr "Тема для мобильных устройств" - -#: ../../mod/admin.php:456 -msgid "Accessibility system theme" -msgstr "" - -#: ../../mod/admin.php:456 -msgid "Accessibility theme" -msgstr "" - -#: ../../mod/admin.php:457 -msgid "Channel to use for this website's static pages" -msgstr "" - -#: ../../mod/admin.php:457 -msgid "Site Channel" -msgstr "Канал сайта" - -#: ../../mod/admin.php:459 -msgid "Maximum image size" -msgstr "Максимальный размер" - -#: ../../mod/admin.php:459 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:460 -msgid "Does this site allow new member registration?" -msgstr "" - -#: ../../mod/admin.php:461 -msgid "Which best describes the types of account offered by this hub?" -msgstr "" - -#: ../../mod/admin.php:462 -msgid "Register text" -msgstr "Текст регистрации" - -#: ../../mod/admin.php:462 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:463 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:464 -msgid "Allowed friend domains" -msgstr "Разрешенные домены друзей" - -#: ../../mod/admin.php:464 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:465 -msgid "Allowed email domains" -msgstr "Разрешенные домены электронной почты" - -#: ../../mod/admin.php:465 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:466 -msgid "Block public" -msgstr "Блокировать публичный доступ" - -#: ../../mod/admin.php:466 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:467 -msgid "Force publish" -msgstr "Заставить публиковать" - -#: ../../mod/admin.php:467 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:468 -msgid "Disable discovery tab" -msgstr "Отключить вкладку \"обнаруженные\"" - -#: ../../mod/admin.php:468 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "" - -#: ../../mod/admin.php:469 -msgid "No login on Homepage" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Proxy user" -msgstr "Proxy пользователь" - -#: ../../mod/admin.php:472 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../mod/admin.php:473 -msgid "Network timeout" -msgstr "Время ожидания сети" - -#: ../../mod/admin.php:473 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Delivery interval" -msgstr "Интервал доставки" - -#: ../../mod/admin.php:474 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Poll interval" -msgstr "Интервал опроса" - -#: ../../mod/admin.php:475 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:476 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:532 -msgid "No server found" -msgstr "Сервер не найден" - -#: ../../mod/admin.php:539 ../../mod/admin.php:763 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:539 -msgid "for channel" -msgstr "для канала" - -#: ../../mod/admin.php:539 -msgid "on server" -msgstr "на сервере" - -#: ../../mod/admin.php:539 -msgid "Status" -msgstr "Статус" - -#: ../../mod/admin.php:560 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:570 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:573 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:577 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:580 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:595 -msgid "No failed updates." -msgstr "Ошибок обновлений нет." - -#: ../../mod/admin.php:599 -msgid "Failed Updates" -msgstr "Обновления с ошибками" - -#: ../../mod/admin.php:601 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:602 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:628 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../../mod/admin.php:635 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s канал удален" -msgstr[1] "%s канала удалены" -msgstr[2] "%s каналов удалено" - -#: ../../mod/admin.php:666 -msgid "Account not found" -msgstr "Аккаунт не найден" - -#: ../../mod/admin.php:677 -#, php-format -msgid "User '%s' deleted" -msgstr "Пользователь '%s' удален" - -#: ../../mod/admin.php:686 -#, php-format -msgid "User '%s' unblocked" -msgstr "Пользователь '%s' разрешен" - -#: ../../mod/admin.php:686 -#, php-format -msgid "User '%s' blocked" -msgstr "Пользователь '%s' заблокирован" - -#: ../../mod/admin.php:750 ../../mod/admin.php:762 -msgid "Users" -msgstr "Пользователи" - -#: ../../mod/admin.php:752 ../../mod/admin.php:887 -msgid "select all" -msgstr "выбрать все" - -#: ../../mod/admin.php:753 -msgid "User registrations waiting for confirm" -msgstr "Регистрации пользователей ждут подтверждения" - -#: ../../mod/admin.php:754 -msgid "Request date" -msgstr "Дата запроса" - -#: ../../mod/admin.php:755 -msgid "No registrations." -msgstr "Новых регистраций пока нет." - -#: ../../mod/admin.php:756 -msgid "Approve" -msgstr "Утвердить" - -#: ../../mod/admin.php:757 -msgid "Deny" -msgstr "Запретить" - -#: ../../mod/admin.php:763 -msgid "Register date" -msgstr "Дата регистрации" - -#: ../../mod/admin.php:763 -msgid "Last login" -msgstr "Последний вход" - -#: ../../mod/admin.php:763 -msgid "Expires" -msgstr "" - -#: ../../mod/admin.php:763 -msgid "Service Class" -msgstr "Класс службы" - -#: ../../mod/admin.php:765 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:766 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:799 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channelss censored/uncensored" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s канал удален" -msgstr[1] "%s канала удалены" -msgstr[2] "%s каналы удалены" - -#: ../../mod/admin.php:825 -msgid "Channel not found" -msgstr "Канал не найден" - -#: ../../mod/admin.php:836 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Канал '%s' удален" - -#: ../../mod/admin.php:846 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "" - -#: ../../mod/admin.php:846 -#, php-format -msgid "Channel '%s' censored" -msgstr "" - -#: ../../mod/admin.php:889 -msgid "Censor" -msgstr "" - -#: ../../mod/admin.php:890 -msgid "Uncensor" -msgstr "" - -#: ../../mod/admin.php:893 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:895 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:896 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:935 +#: ../../Zotlabs/Module/Admin/Addons.php:289 #, php-format msgid "Plugin %s disabled." msgstr "Плагин %s отключен." -#: ../../mod/admin.php:939 +#: ../../Zotlabs/Module/Admin/Addons.php:294 #, php-format msgid "Plugin %s enabled." msgstr "Плагин %s включен." -#: ../../mod/admin.php:949 ../../mod/admin.php:1151 +#: ../../Zotlabs/Module/Admin/Addons.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 msgid "Disable" msgstr "Запретить" -#: ../../mod/admin.php:951 ../../mod/admin.php:1153 +#: ../../Zotlabs/Module/Admin/Addons.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 msgid "Enable" msgstr "Разрешить" -#: ../../mod/admin.php:977 ../../mod/admin.php:1182 +#: ../../Zotlabs/Module/Admin/Addons.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 msgid "Toggle" msgstr "Переключить" -#: ../../mod/admin.php:985 ../../mod/admin.php:1192 +#: ../../Zotlabs/Module/Admin/Addons.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 msgid "Author: " msgstr "Автор: " -#: ../../mod/admin.php:986 ../../mod/admin.php:1193 +#: ../../Zotlabs/Module/Admin/Addons.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 msgid "Maintainer: " -msgstr "Обслуживающий: " +msgstr "Сопровождающий:" -#: ../../mod/admin.php:1115 -msgid "No themes found." -msgstr "Темы не найдены." +#: ../../Zotlabs/Module/Admin/Addons.php:353 +msgid "Minimum project version: " +msgstr "Минимальная версия проекта:" -#: ../../mod/admin.php:1174 -msgid "Screenshot" -msgstr "Скриншот" +#: ../../Zotlabs/Module/Admin/Addons.php:354 +msgid "Maximum project version: " +msgstr "Максимальная версия проекта:" -#: ../../mod/admin.php:1222 -msgid "[Experimental]" -msgstr "[экспериментальный]" +#: ../../Zotlabs/Module/Admin/Addons.php:355 +msgid "Minimum PHP version: " +msgstr "Минимальная версия PHP:" -#: ../../mod/admin.php:1223 -msgid "[Unsupported]" -msgstr "[неподдерживаемый]" +#: ../../Zotlabs/Module/Admin/Addons.php:356 +msgid "Compatible Server Roles: " +msgstr "Совместимые роли сервера:" -#: ../../mod/admin.php:1250 +#: ../../Zotlabs/Module/Admin/Addons.php:357 +msgid "Requires: " +msgstr "Необходимо:" + +#: ../../Zotlabs/Module/Admin/Addons.php:358 +#: ../../Zotlabs/Module/Admin/Addons.php:442 +msgid "Disabled - version incompatibility" +msgstr "Отключено - несовместимость версий" + +#: ../../Zotlabs/Module/Admin/Addons.php:411 +msgid "Enter the public git repository URL of the addon repo." +msgstr "Введите URL публичного репозитория расширений git" + +#: ../../Zotlabs/Module/Admin/Addons.php:412 +msgid "Addon repo git URL" +msgstr "URL репозитория расширений git" + +#: ../../Zotlabs/Module/Admin/Addons.php:413 +msgid "Custom repo name" +msgstr "Пользовательское имя репозитория" + +#: ../../Zotlabs/Module/Admin/Addons.php:413 +msgid "(optional)" +msgstr "(необязательно)" + +#: ../../Zotlabs/Module/Admin/Addons.php:414 +msgid "Download Addon Repo" +msgstr "Загрузить репозиторий расширений" + +#: ../../Zotlabs/Module/Admin/Addons.php:421 +msgid "Install new repo" +msgstr "Установить новый репозиторий" + +#: ../../Zotlabs/Module/Admin/Addons.php:445 +msgid "Manage Repos" +msgstr "Управление репозиториями" + +#: ../../Zotlabs/Module/Admin/Addons.php:446 +msgid "Installed Addon Repositories" +msgstr "Установленные репозитории расширений" + +#: ../../Zotlabs/Module/Admin/Addons.php:447 +msgid "Install a New Addon Repository" +msgstr "Установить новый репозиторий расширений" + +#: ../../Zotlabs/Module/Admin/Addons.php:454 +msgid "Switch branch" +msgstr "Переключить ветку" + +#: ../../Zotlabs/Module/Admin/Site.php:172 +msgid "Site settings updated." +msgstr "Настройки сайта обновлены." + +#: ../../Zotlabs/Module/Admin/Site.php:209 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (несовместимо)" + +#: ../../Zotlabs/Module/Admin/Site.php:216 +msgid "mobile" +msgstr "мобильный" + +#: ../../Zotlabs/Module/Admin/Site.php:218 +msgid "experimental" +msgstr "экспериментальный" + +#: ../../Zotlabs/Module/Admin/Site.php:220 +msgid "unsupported" +msgstr "неподдерживаемый" + +#: ../../Zotlabs/Module/Admin/Site.php:267 +msgid "Yes - with approval" +msgstr "Да - требует подтверждения" + +#: ../../Zotlabs/Module/Admin/Site.php:273 +msgid "My site is not a public server" +msgstr "Мой сайт не является публичным сервером" + +#: ../../Zotlabs/Module/Admin/Site.php:274 +msgid "My site has paid access only" +msgstr "Мой сайт доступен только с оплатой " + +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "My site has free access only" +msgstr "На моём сайте разрешён свободный доступ" + +#: ../../Zotlabs/Module/Admin/Site.php:276 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами" + +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Beginner/Basic" +msgstr "Начинающий/Базовый" + +#: ../../Zotlabs/Module/Admin/Site.php:289 +msgid "Novice - not skilled but willing to learn" +msgstr "Новичок - не опытный, но желающий учиться" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Intermediate - somewhat comfortable" +msgstr "Промежуточный - более удобный" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Advanced - very comfortable" +msgstr "Продвинутый - очень удобный" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Expert - I can write computer code" +msgstr "Эксперт - я умею программировать" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Wizard - I probably know more than you do" +msgstr "Волшебник - возможно я знаю больше чем ты" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Default permission role for new accounts" +msgstr "Разрешения по умолчанию для новых аккаунтов" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"This role will be used for the first channel created after registration." +msgstr "Эта роль будет использоваться для первого канала, созданного после регистрации." + +#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Register.php:278 +msgid "Registration" +msgstr "Регистрация" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "File upload" +msgstr "Загрузка файла" + +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Policies" +msgstr "Правила" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Site default technical skill level" +msgstr "Уровень технических навыков на сайте по умолчанию" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Используется чтобы обеспечить удобство на уровне технических навыков пользователя" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Lock the technical skill level setting" +msgstr "Заблокировать уровень технических навыков" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +msgid "Members can set their own technical comfort level by default" +msgstr "Участники могут выбрать уровень своих технических навыков по умолчанию" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Banner/Logo" +msgstr "Баннер / логотип" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Разрешён нефильтруемый HTML/CSS/JS" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Administrator Information" +msgstr "Информация об администраторе" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode." + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "System language" +msgstr "Язык системы" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "System theme" +msgstr "Системная тема" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы." + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Allow Feeds as Connections" +msgstr "Разрешить ленты новостей как контакты" + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "(Heavy system resource usage)" +msgstr "(Высокое использование системных ресурсов)" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Maximum image size" +msgstr "Максимальный размер изображения" + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений." + +#: ../../Zotlabs/Module/Admin/Site.php:332 +msgid "Does this site allow new member registration?" +msgstr "Разрешается ли регистрация новых пользователей на этом сайте?" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Invitation only" +msgstr "Только по приглашениям" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"." + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Minimum age" +msgstr "Минимальный возраст" + +#: ../../Zotlabs/Module/Admin/Site.php:334 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Минимальный возраст (в годах) для регистрации на этом сайте." + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Как лучше описать тип учётных записей предлагаемых на этом хабе?" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "This is displayed on the public server site list." +msgstr "Это отображается в списке общедоступных серверов." + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Register text" +msgstr "Текст регистрации" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Will be displayed prominently on the registration page." +msgstr "Будет отображаться на странице регистрации на видном месте." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла." + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "Preserve site homepage URL" +msgstr "Сохранить URL главной страницы сайта" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "Accounts abandoned after x days" +msgstr "Аккаунты считаются заброшенными после N дней" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений." + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "Allowed friend domains" +msgstr "Разрешенные домены друзей" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены." + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "Verify Email Addresses" +msgstr "Проверка адреса электронной почты" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)." + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Force publish" +msgstr "Принудительно публиковать" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Включите для принудительного включения всех учётных записей на данном сайте в каталог." + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Import Public Streams" +msgstr "Импортированные публичные потоки" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться." + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "Site only Public Streams" +msgstr "Публичные потоки только с сайта" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены." + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Разрешить всем доступ к публичным потокам" + +#: ../../Zotlabs/Module/Admin/Site.php:346 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться." + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "Only import Public stream posts with this text" +msgstr "Импортировать только публичные потоки с этим текстом" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Do not import Public stream posts with this text" +msgstr "Не импортировать публичные потоки с этим текстом" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "Login on Homepage" +msgstr "Вход на домашней странице" + +#: ../../Zotlabs/Module/Admin/Site.php:351 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено." + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "Enable context help" +msgstr "Включить контекстную помощь" + +#: ../../Zotlabs/Module/Admin/Site.php:352 +msgid "" +"Display contextual help for the current page when the help button is pressed." +msgstr "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"." + +#: ../../Zotlabs/Module/Admin/Site.php:354 +msgid "Reply-to email address for system generated email." +msgstr "Адрес email Reply-to для генерируемых системой сообщений." + +#: ../../Zotlabs/Module/Admin/Site.php:355 +msgid "Sender (From) email address for system generated email." +msgstr "Адрес email отправителя (From) для генерируемых системой сообщений." + +#: ../../Zotlabs/Module/Admin/Site.php:356 +msgid "Name of email sender for system generated email." +msgstr "Имя отправителя для генерируемых системой сообщений." + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Directory Server URL" +msgstr "URL сервера каталогов" + +#: ../../Zotlabs/Module/Admin/Site.php:358 +msgid "Default directory server" +msgstr "Сервер каталогов по умолчанию" + +#: ../../Zotlabs/Module/Admin/Site.php:360 +msgid "Proxy user" +msgstr "Имя пользователя proxy-сервера" + +#: ../../Zotlabs/Module/Admin/Site.php:361 +msgid "Proxy URL" +msgstr "URL proxy-сервера" + +#: ../../Zotlabs/Module/Admin/Site.php:362 +msgid "Network timeout" +msgstr "Время ожидания сети" + +#: ../../Zotlabs/Module/Admin/Site.php:362 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)." + +#: ../../Zotlabs/Module/Admin/Site.php:363 +msgid "Delivery interval" +msgstr "Интервал доставки" + +#: ../../Zotlabs/Module/Admin/Site.php:363 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов." + +#: ../../Zotlabs/Module/Admin/Site.php:364 +msgid "Deliveries per process" +msgstr "Доставок на процесс" + +#: ../../Zotlabs/Module/Admin/Site.php:364 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust " +"if necessary to tune system performance. Recommend: 1-5." +msgstr "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5." + +#: ../../Zotlabs/Module/Admin/Site.php:365 +msgid "Queue Threshold" +msgstr "Порог очереди" + +#: ../../Zotlabs/Module/Admin/Site.php:365 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это." + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "Poll interval" +msgstr "Интервал опроса" + +#: ../../Zotlabs/Module/Admin/Site.php:366 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки." + +#: ../../Zotlabs/Module/Admin/Site.php:367 +msgid "Path to ImageMagick convert program" +msgstr "Путь к ImageMagick" + +#: ../../Zotlabs/Module/Admin/Site.php:367 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:368 +msgid "Allow SVG thumbnails in file browser" +msgstr "Разрешить SVG миниатюры в просмотрщике файлов" + +#: ../../Zotlabs/Module/Admin/Site.php:368 +msgid "WARNING: SVG images may contain malicious code." +msgstr "Внимание: изображения SVG могут содержать вредоносный код." + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "Maximum Load Average" +msgstr "Максимальная средняя нагрузка" + +#: ../../Zotlabs/Module/Admin/Site.php:369 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50." + +#: ../../Zotlabs/Module/Admin/Site.php:370 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Срок хранения в днях для импортированного содержимого (из матрицы / сети)." + +#: ../../Zotlabs/Module/Admin/Site.php:370 +msgid "0 for no expiration of imported content" +msgstr "0 для постоянного хранения импортированного содержимого" + +#: ../../Zotlabs/Module/Admin/Site.php:371 +msgid "" +"Do not expire any posts which have comments less than this many days ago" +msgstr "Продлевать строк хранения для любых публикаций, которые имеют комментарии возрастом менее этого значения" + +#: ../../Zotlabs/Module/Admin/Site.php:373 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей" + +#: ../../Zotlabs/Module/Admin/Site.php:373 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Создать эту страницу первой. По умолчанию %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:374 +msgid "Page to display after creating a new channel" +msgstr "Страница для показа после создания нового канала" + +#: ../../Zotlabs/Module/Admin/Site.php:374 +msgid "Default: profiles" +msgstr "По умолчанию: profiles" + +#: ../../Zotlabs/Module/Admin/Site.php:376 +msgid "Optional: site location" +msgstr "Необязательно: место размещения сайта" + +#: ../../Zotlabs/Module/Admin/Site.php:376 +msgid "Region or country" +msgstr "Регион или страна" + +#: ../../Zotlabs/Module/Admin/Logs.php:28 msgid "Log settings updated." -msgstr "Настройки журнала обновленны." +msgstr "Настройки журнала обновлены." -#: ../../mod/admin.php:1306 +#: ../../Zotlabs/Module/Admin/Logs.php:85 msgid "Clear" msgstr "Очистить" -#: ../../mod/admin.php:1312 +#: ../../Zotlabs/Module/Admin/Logs.php:91 msgid "Debugging" -msgstr "Включить/Выключить" +msgstr "Отладка" -#: ../../mod/admin.php:1313 +#: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "Log file" msgstr "Файл журнала" -#: ../../mod/admin.php:1313 +#: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта." +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта." -#: ../../mod/admin.php:1314 +#: ../../Zotlabs/Module/Admin/Logs.php:93 msgid "Log level" msgstr "Уровень журнала" -#: ../../mod/thing.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s аккаунт блокирован/разблокирован" +msgstr[1] "%s аккаунта блокированы/разблокированы" +msgstr[2] "%s аккаунтов блокированы/разблокированы" + +#: ../../Zotlabs/Module/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s аккаунт удалён" +msgstr[1] "%s аккаунта удалёны" +msgstr[2] "%s аккаунтов удалёны" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "Аккаунт не найден" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "Аккаунт '%s' заблокирован" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Аккаунт '%s' разблокирован" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "выбрать все" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Registrations waiting for confirm" +msgstr "Регистрации ждут подтверждения" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "Request date" +msgstr "Дата запроса" + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +msgid "No registrations." +msgstr "Нет новых регистраций." + +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +msgid "ID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "All Channels" +msgstr "Все каналы" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Register date" +msgstr "Дата регистрации" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Last login" +msgstr "Последний вход" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Expires" +msgstr "Срок действия" + +#: ../../Zotlabs/Module/Admin/Accounts.php:188 +msgid "Service Class" +msgstr "Класс обслуживания" + +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted " +"on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?" + +#: ../../Zotlabs/Module/Admin/Accounts.php:191 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?" + +#: ../../Zotlabs/Module/Admin/Security.php:83 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." +msgstr "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно." + +#: ../../Zotlabs/Module/Admin/Security.php:86 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:" + +#: ../../Zotlabs/Module/Admin/Security.php:87 +msgid "" +"https://youtube.com/
https://www.youtube.com/
https://youtu.be/" +"
https://vimeo.com/
https://soundcloud.com/
" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Security.php:88 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "се остальные встроенные материалы будут отфильтрованы, если встроенное содержимое с этого сайта явно заблокировано." + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block public" +msgstr "Блокировать публичный доступ" + +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы." + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Provide a cloud root directory" +msgstr "Предоставить корневой каталог в облаке" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"The cloud root directory lists all channel names which provide public files" +msgstr "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы" + +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Show total disk space available to cloud uploads" +msgstr "Показывать общее доступное для загрузок место в хранилище" + +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Установить HTTP-заголовок \"Transport Security\"" + +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Установить HTTP-заголовок \"Content Security Policy\"" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Allowed email domains" +msgstr "Разрешённые домены email" + +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены." + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "Not allowed email domains" +msgstr "Запрещённые домены email" + +#: ../../Zotlabs/Module/Admin/Security.php:101 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны." + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "Allow communications only from these sites" +msgstr "Разрешить связь только с этими сайтами" + +#: ../../Zotlabs/Module/Admin/Security.php:102 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)." + +#: ../../Zotlabs/Module/Admin/Security.php:103 +msgid "Block communications from these sites" +msgstr "Блокировать связь с этими сайтами" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "Allow communications only from these channels" +msgstr "Разрешить связь только для этих каналов" + +#: ../../Zotlabs/Module/Admin/Security.php:104 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" +msgstr "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)." + +#: ../../Zotlabs/Module/Admin/Security.php:105 +msgid "Block communications from these channels" +msgstr "Блокировать связь с этими каналами" + +#: ../../Zotlabs/Module/Admin/Security.php:106 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок." + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов" + +#: ../../Zotlabs/Module/Admin/Security.php:107 +msgid "One site per line. By default embedded content is filtered." +msgstr "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется." + +#: ../../Zotlabs/Module/Admin/Security.php:108 +msgid "Block embedded HTML from these domains" +msgstr "Блокировать встраивание HTML-содержимого для этих доменов" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "Обновление было помечено как успешное" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Выполнение %s неудачно. Проверьте системный журнал." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Обновление %sбыло успешно применено." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Обновление %s не вернуло статус. Неизвестно было ли оно успешным." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "Функция обновления %sне может быть найдена." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Обновления с ошибками" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Пометить успешным (если обновление было применено вручную)" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Попытаться применить это обновление автоматически" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Ошибок обновлений нет." + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "New Profile Field" +msgstr "Поле нового профиля" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "Field nickname" +msgstr "Псевдоним поля" + +#: ../../Zotlabs/Module/Admin/Profs.php:90 +#: ../../Zotlabs/Module/Admin/Profs.php:110 +msgid "System name of field" +msgstr "Системное имя поля" + +#: ../../Zotlabs/Module/Admin/Profs.php:91 +#: ../../Zotlabs/Module/Admin/Profs.php:111 +msgid "Input type" +msgstr "Тип ввода" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Field Name" +msgstr "Имя поля" + +#: ../../Zotlabs/Module/Admin/Profs.php:92 +#: ../../Zotlabs/Module/Admin/Profs.php:112 +msgid "Label on profile pages" +msgstr "Метка на странице профиля" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Help text" +msgstr "Текст подсказки" + +#: ../../Zotlabs/Module/Admin/Profs.php:93 +#: ../../Zotlabs/Module/Admin/Profs.php:113 +msgid "Additional info (optional)" +msgstr "Дополнительная информация (необязательно)" + +#: ../../Zotlabs/Module/Admin/Profs.php:103 +msgid "Field definition not found" +msgstr "Определения поля не найдено" + +#: ../../Zotlabs/Module/Admin/Profs.php:109 +msgid "Edit Profile Field" +msgstr "Редактировать поле профиля" + +#: ../../Zotlabs/Module/Admin/Profs.php:169 +msgid "Basic Profile Fields" +msgstr "Основные поля профиля" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "Advanced Profile Fields" +msgstr "Дополнительные поля профиля" + +#: ../../Zotlabs/Module/Admin/Profs.php:170 +msgid "(In addition to basic fields)" +msgstr "(к основым полям)" + +#: ../../Zotlabs/Module/Admin/Profs.php:172 +msgid "All available fields" +msgstr "Все доступные поля" + +#: ../../Zotlabs/Module/Admin/Profs.php:173 +msgid "Custom Fields" +msgstr "Настраиваемые поля" + +#: ../../Zotlabs/Module/Admin/Profs.php:177 +msgid "Create Custom Field" +msgstr "Создать настраиваемое поле" + +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." +msgstr "Настройки темы обновленны." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "Темы не найдены." + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Снимок экрана" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[экспериментальный]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[неподдерживаемый]" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "Off" +msgstr "Выкл." + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:65 +msgid "On" +msgstr "Вкл." + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Заблокировать функцию \"%s\"" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Управлять дополнительными функциями" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Статистика очереди" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Всего записей" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Приоритет" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "Конечный URL-адрес" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Пометить хаб как постоянно отключенный" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Освободить очередь для этого хаба" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Последний известный контакт" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "Пароль для аккаунта %d изменён." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "Настройки аккаунта обновлены." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "Учётная запись не найдена." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Редактировать аккаунт" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Новый пароль" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Повторите новый пароль" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Уровень технических навыков" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Язык сообщения для email" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Класс обслуживания" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s канал цензурируется/нецензурируется" +msgstr[1] "%s канала цензурируются/нецензурируются" +msgstr[2] "%s каналов цензурируются/нецензурируются" + +#: ../../Zotlabs/Module/Admin/Channels.php:40 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "в %s канале код разрешён/запрещён" +msgstr[1] "в %s каналах код разрешён/запрещён" +msgstr[2] "в %s каналах код разрешён/запрещён" + +#: ../../Zotlabs/Module/Admin/Channels.php:46 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s канал удалён" +msgstr[1] "%s канала удалены" +msgstr[2] "%s каналов удалены" + +#: ../../Zotlabs/Module/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Канал не найден" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Канал '%s' удалён" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Канал '%s' цензурируется" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Канал '%s' нецензурируется" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Код в канале '%s' разрешён" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Код в канале '%s' запрещён" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Цензурировать" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "Нецензурировать" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Разрешить код" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Запретить код" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?" + +#: ../../Zotlabs/Module/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?" + +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Не удалось выполнить проверку токена." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Требуется проверка адреса email" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Проверочный токен был выслн на ваш адрес электронной почты {%s]. Введите этот токен здесь для завершения этапа проверки учётной записи. Пожалуйста, подождите несколько минут для завершения доставки и проверьте вашу папку \"Спам\" если вы не видите письма." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Выслать повторно" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Проверочный токен" + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Превышено общее количество приглашений." + +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Недействительный адрес электронной почты." + +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Присоединятесь к $Projectname !" + +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта." + +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d сообщение отправлено." +msgstr[1] "%d сообщения отправлено." +msgstr[2] "%d сообщений отправлено." + +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "У вас больше нет приглашений" + +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Отправить приглашение" + +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Введите адреса электронной почты, по одному в строке:" + +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Присоединятесь к нашему сообществу $Projectname !" + +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Вам нужно предоставит этот код приглашения:" + +#: ../../Zotlabs/Module/Invite.php:144 +msgid "1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Зарегистрируйтесь на любом из серверов $Projectname" + +#: ../../Zotlabs/Module/Invite.php:146 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Введите сетевой адрес $Projectname в поисковой строке сайта" + +#: ../../Zotlabs/Module/Invite.php:147 +msgid "or visit" +msgstr "или посетите" + +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "Нажать [Подключиться]" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Заблокировать заголовок" + +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Cover_photo.php:218 +msgid "Cover Photos" +msgstr "Фотографии обложки" + +#: ../../Zotlabs/Module/Cover_photo.php:390 +msgid "Your cover photo may be visible to anybody on the internet" +msgstr "Фотография вашей обложки может быть видна всем в Интернете" + +#: ../../Zotlabs/Module/Cover_photo.php:394 +msgid "Change Cover Photo" +msgstr "Изменить фотографию обложки" + +#: ../../Zotlabs/Module/Like.php:54 +msgid "Like/Dislike" +msgstr "Нравится / не нравится" + +#: ../../Zotlabs/Module/Like.php:59 +msgid "This action is restricted to members." +msgstr "Это действие доступно только участникам." + +#: ../../Zotlabs/Module/Like.php:60 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Пожалуйста, для продолжения войдите с вашим $Projectname ID или зарегистрируйтесь как новый участник $Projectname." + +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 +msgid "Invalid request." +msgstr "Неверный запрос." + +#: ../../Zotlabs/Module/Like.php:150 +msgid "thing" +msgstr "предмет" + +#: ../../Zotlabs/Module/Like.php:196 +msgid "Channel unavailable." +msgstr "Канал недоступен." + +#: ../../Zotlabs/Module/Like.php:244 +msgid "Previous action reversed." +msgstr "Предыдущее действие отменено." + +#: ../../Zotlabs/Module/Like.php:442 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s согласен с %2$s %3$s" + +#: ../../Zotlabs/Module/Like.php:444 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s не согласен с %2$s %3$s" + +#: ../../Zotlabs/Module/Like.php:446 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s воздерживается от решения по %2$s%3$s" + +#: ../../Zotlabs/Module/Like.php:564 +msgid "Action completed." +msgstr "Действие завершено." + +#: ../../Zotlabs/Module/Like.php:565 +msgid "Thank you." +msgstr "Спасибо." + +#: ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "Если включено, запросы контактов будут одобрены без вашего участия" + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "Настройки автоматического одобрения" + +#: ../../Zotlabs/Module/Defperms.php:254 +msgid "" +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности." + +#: ../../Zotlabs/Module/Menu.php:67 +msgid "Unable to update menu." +msgstr "Невозможно обновить меню." + +#: ../../Zotlabs/Module/Menu.php:78 +msgid "Unable to create menu." +msgstr "Невозможно создать меню." + +#: ../../Zotlabs/Module/Menu.php:160 ../../Zotlabs/Module/Menu.php:173 +msgid "Menu Name" +msgstr "Название меню" + +#: ../../Zotlabs/Module/Menu.php:160 +msgid "Unique name (not visible on webpage) - required" +msgstr "Уникальное название (не видимо на странице) - требуется" + +#: ../../Zotlabs/Module/Menu.php:161 ../../Zotlabs/Module/Menu.php:174 +msgid "Menu Title" +msgstr "Заголовок меню" + +#: ../../Zotlabs/Module/Menu.php:161 +msgid "Visible on webpage - leave empty for no title" +msgstr "Видимость на странице - оставьте пустым если не хотите иметь заголовок" + +#: ../../Zotlabs/Module/Menu.php:162 +msgid "Allow Bookmarks" +msgstr "Разрешить закладки" + +#: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 +msgid "Menu may be used to store saved bookmarks" +msgstr "Меню может использоваться, чтобы сохранить закладки" + +#: ../../Zotlabs/Module/Menu.php:163 ../../Zotlabs/Module/Menu.php:224 +msgid "Submit and proceed" +msgstr "Отправить и обработать" + +#: ../../Zotlabs/Module/Menu.php:176 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Удалить" + +#: ../../Zotlabs/Module/Menu.php:180 +msgid "Bookmarks allowed" +msgstr "Закладки разрешены" + +#: ../../Zotlabs/Module/Menu.php:182 +msgid "Delete this menu" +msgstr "Удалить это меню" + +#: ../../Zotlabs/Module/Menu.php:183 ../../Zotlabs/Module/Menu.php:218 +msgid "Edit menu contents" +msgstr "Редактировать содержание меню" + +#: ../../Zotlabs/Module/Menu.php:184 +msgid "Edit this menu" +msgstr "Редактировать это меню" + +#: ../../Zotlabs/Module/Menu.php:200 +msgid "Menu could not be deleted." +msgstr "Меню не может быть удалено." + +#: ../../Zotlabs/Module/Menu.php:213 +msgid "Edit Menu" +msgstr "Редактировать меню" + +#: ../../Zotlabs/Module/Menu.php:217 +msgid "Add or remove entries to this menu" +msgstr "Добавить или удалить пункты этого меню" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Menu name" +msgstr "Название меню" + +#: ../../Zotlabs/Module/Menu.php:219 +msgid "Must be unique, only seen by you" +msgstr "Должно быть уникальным (видно только вам)" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title" +msgstr "Заголовок меню" + +#: ../../Zotlabs/Module/Menu.php:220 +msgid "Menu title as seen by others" +msgstr "Видимый другими заголовок меню" + +#: ../../Zotlabs/Module/Menu.php:221 +msgid "Allow bookmarks" +msgstr "Разрешить закладки" + +#: ../../Zotlabs/Module/Manage.php:138 ../../Zotlabs/Module/New_channel.php:147 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Вы создали %1$.0f из %2$.0f возможных каналов." + +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Создать новый канал" + +#: ../../Zotlabs/Module/Manage.php:145 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Wiki.php:205 ../../Zotlabs/Module/Profiles.php:831 +msgid "Create New" +msgstr "Создать новый" + +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Текущий канал" + +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "Выбрать и переключиться на один из ваших каналов" + +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "Основной канал" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Сделать основным" + +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "%d новых сообщений" + +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%d новых представлений" + +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Делегированный канал" + +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account " +"password." +msgstr "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта." + +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "Изменить псевдоним / адрес канала" + +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "Любые / все контакты в других сетях будут утеряны!" + +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "Новый адрес канала" + +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "Переименовать канал" + +#: ../../Zotlabs/Module/Settings/Features.php:73 +msgid "Additional Features" +msgstr "Дополнительные функции" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "Ваш уровень технических навыков" + +#: ../../Zotlabs/Module/Settings/Features.php:74 +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне" + +#: ../../Zotlabs/Module/Settings/Channel.php:333 +msgid "Nobody except yourself" +msgstr "Никто кроме вас" + +#: ../../Zotlabs/Module/Settings/Channel.php:334 +msgid "Only those you specifically allow" +msgstr "Только персонально разрешённые" + +#: ../../Zotlabs/Module/Settings/Channel.php:335 +msgid "Approved connections" +msgstr "Одобренные контакты" + +#: ../../Zotlabs/Module/Settings/Channel.php:336 +msgid "Any connections" +msgstr "Любые контакты" + +#: ../../Zotlabs/Module/Settings/Channel.php:337 +msgid "Anybody on this website" +msgstr "Любой на этом сайте" + +#: ../../Zotlabs/Module/Settings/Channel.php:338 +msgid "Anybody in this network" +msgstr "Любой в этой сети" + +#: ../../Zotlabs/Module/Settings/Channel.php:339 +msgid "Anybody authenticated" +msgstr "Любой аутентифицированный" + +#: ../../Zotlabs/Module/Settings/Channel.php:340 +msgid "Anybody on the internet" +msgstr "Любой в интернете" + +#: ../../Zotlabs/Module/Settings/Channel.php:415 +msgid "Publish your default profile in the network directory" +msgstr "Публиковать ваш профиль по умолчанию в сетевом каталоге" + +#: ../../Zotlabs/Module/Settings/Channel.php:420 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Разрешить предлагать вас как потенциального друга для новых пользователей?" + +#: ../../Zotlabs/Module/Settings/Channel.php:424 +msgid "or" +msgstr "или" + +#: ../../Zotlabs/Module/Settings/Channel.php:433 +msgid "Your channel address is" +msgstr "Адрес вашего канала" + +#: ../../Zotlabs/Module/Settings/Channel.php:436 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "Ваши файы / фотографии доступны через WebDAV по" + +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "Automatic membership approval" +msgstr "Членство одобрено автоматически" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "Channel Settings" +msgstr "Настройки канала" + +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Basic Settings" +msgstr "Основные настройки" + +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Адрес email:" + +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Your Timezone:" +msgstr "Часовой пояс:" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Default Post Location:" +msgstr "Расположение по умолчанию:" + +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Geographical location to display on your posts" +msgstr "Показывать географическое положение в ваших публикациях" + +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Use Browser Location:" +msgstr "Определять расположение из браузера" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "Adult Content" +msgstr "Содержимое для взрослых" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Этот канал часто или регулярно публикует содержимое для взрослых. Пожалуйста, помечайте любой такой материал тегом #NSFW" + +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Security and Privacy Settings" +msgstr "Безопасность и настройки приватности" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить" + +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Hide my online presence" +msgstr "Скрывать моё присутствие онлайн" + +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Prevents displaying in your profile that you are online" +msgstr "Предотвращает отображения статуса \"в сети\" в вашем профиле" + +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Simple Privacy Settings:" +msgstr "Простые настройки безопасности:" + +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)" + +#: ../../Zotlabs/Module/Settings/Channel.php:538 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)" + +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Private - default private, never open or public" +msgstr "Частный - частный по умочанию, не открытый и не публичный" + +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Blocked - default blocked to/from everybody" +msgstr "Закрытый - заблокированный по умолчанию от / для всех" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "Allow others to tag your posts" +msgstr "Разрешить другим отмечать ваши публикации" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Часто используется сообществом для маркировки неподобающего содержания" + +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Channel Permission Limits" +msgstr "Ограничения разрешений канала" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Expire other channel content after this many days" +msgstr "Храненить содержимое других каналов, дней" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "0 or blank to use the website limit." +msgstr "0 или пусто - использовать настройки сайта." + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +#, php-format +msgid "This website expires after %d days." +msgstr "Срок хранения содержимого этого сайта истекает через %d дней" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "This website does not expire imported content." +msgstr "Срок хранения импортированного содержимого этого сайта не ограничен." + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Ограничение сайта имеет приоритет если ниже вашего значения." + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Maximum Friend Requests/Day:" +msgstr "Запросов в друзья в день:" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "May reduce spam activity" +msgstr "Может ограничить спам активность" + +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "Default Privacy Group" +msgstr "Группа конфиденциальности по умолчанию" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Use my default audience setting for the type of object published" +msgstr "Использовать настройки аудитории по умолчанию для типа опубликованного объекта" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "Profile to assign new connections" +msgstr "Назначить профиль для новых контактов" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:266 +msgid "Channel role and privacy" +msgstr "Роль и конфиденциальность канала" + +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "Default Permissions Group" +msgstr "Группа разрешений по умолчанию" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Maximum private messages per day from unknown people:" +msgstr "Максимально количество сообщений от незнакомых людей, в день:" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Useful to reduce spamming" +msgstr "Полезно для сокращения количества спама" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "By default post a status message when:" +msgstr "По умолчанию публиковать новый статус при:" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "accepting a friend request" +msgstr "одобрении запроса в друзья" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "joining a forum/community" +msgstr "вступлении в сообщество / форум" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "making an interesting profile change" +msgstr "интересном изменении профиля" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Send a notification email when:" +msgstr "Отправить уведомление по email когда:" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "You receive a connection request" +msgstr "вы получили новый запрос контакта" + +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Your connections are confirmed" +msgstr "ваш запрос контакта был одобрен" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Someone writes on your profile wall" +msgstr "кто-то написал на стене вашего профиля" + +#: ../../Zotlabs/Module/Settings/Channel.php:579 +msgid "Someone writes a followup comment" +msgstr "кто-то пишет комментарий" + +#: ../../Zotlabs/Module/Settings/Channel.php:580 +msgid "You receive a private message" +msgstr "вы получили личное сообщение" + +#: ../../Zotlabs/Module/Settings/Channel.php:581 +msgid "You receive a friend suggestion" +msgstr "вы получили предложение друзей" + +#: ../../Zotlabs/Module/Settings/Channel.php:582 +msgid "You are tagged in a post" +msgstr "вы были отмечены в публикации" + +#: ../../Zotlabs/Module/Settings/Channel.php:583 +msgid "You are poked/prodded/etc. in a post" +msgstr "вас толкнули, подтолкнули и т.п. в публикации" + +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "Someone likes your post/comment" +msgstr "кому-то нравится ваша публикация / комментарий" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Show visual notifications including:" +msgstr "Показывать визуальные оповещения включая:" + +#: ../../Zotlabs/Module/Settings/Channel.php:590 +msgid "Unseen grid activity" +msgstr "невидимую сетевую активность" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Unseen channel activity" +msgstr "невидимую активность в канале" + +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Unseen private messages" +msgstr "невидимое личное сообщение" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Upcoming events" +msgstr "грядущие события" + +#: ../../Zotlabs/Module/Settings/Channel.php:594 +msgid "Events today" +msgstr "события сегодня" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Upcoming birthdays" +msgstr "грядущие дни рождения" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Not available in all themes" +msgstr "не доступно во всех темах" + +#: ../../Zotlabs/Module/Settings/Channel.php:596 +msgid "System (personal) notifications" +msgstr "системные (личные) уведомления" + +#: ../../Zotlabs/Module/Settings/Channel.php:597 +msgid "System info messages" +msgstr "сообщения с системной информацией" + +#: ../../Zotlabs/Module/Settings/Channel.php:598 +msgid "System critical alerts" +msgstr "критические уведомления системы" + +#: ../../Zotlabs/Module/Settings/Channel.php:599 +msgid "New connections" +msgstr "новые контакты" + +#: ../../Zotlabs/Module/Settings/Channel.php:600 +msgid "System Registrations" +msgstr "системные регистрации" + +#: ../../Zotlabs/Module/Settings/Channel.php:601 +msgid "Unseen shared files" +msgstr "невидимые общие файлы" + +#: ../../Zotlabs/Module/Settings/Channel.php:602 +msgid "Unseen public activity" +msgstr "невидимая публичная активность" + +#: ../../Zotlabs/Module/Settings/Channel.php:603 +msgid "Unseen likes and dislikes" +msgstr "невидимые лайки и дислайки" + +#: ../../Zotlabs/Module/Settings/Channel.php:604 +msgid "Unseen forum posts" +msgstr "Невидимые публикации на форуме" + +#: ../../Zotlabs/Module/Settings/Channel.php:605 +msgid "Email notification hub (hostname)" +msgstr "Центр уведомлений по email (имя хоста)" + +#: ../../Zotlabs/Module/Settings/Channel.php:605 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "Если ваш канал зеркалируется в нескольких местах, это ваше предпочтительное местоположение. Это должно предотвратить дублировать уведомлений по email. Например: %s" + +#: ../../Zotlabs/Module/Settings/Channel.php:606 +msgid "Show new wall posts, private messages and connections under Notices" +msgstr "Показать новые сообщения на стене, личные сообщения и контакты в \"Уведомлениях\"" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +msgid "Notify me of events this many days in advance" +msgstr "Уведомлять меня о событиях заранее, дней" + +#: ../../Zotlabs/Module/Settings/Channel.php:608 +msgid "Must be greater than 0" +msgstr "Должно быть больше 0" + +#: ../../Zotlabs/Module/Settings/Channel.php:614 +msgid "Advanced Account/Page Type Settings" +msgstr "Дополнительные настройки учётной записи / страницы" + +#: ../../Zotlabs/Module/Settings/Channel.php:615 +msgid "Change the behaviour of this account for special situations" +msgstr "Изменить поведение этого аккаунта в особых ситуациях" + +#: ../../Zotlabs/Module/Settings/Channel.php:617 +msgid "Miscellaneous Settings" +msgstr "Дополнительные настройки" + +#: ../../Zotlabs/Module/Settings/Channel.php:618 +msgid "Default photo upload folder" +msgstr "Каталог загрузки фотографий по умолчанию" + +#: ../../Zotlabs/Module/Settings/Channel.php:618 +#: ../../Zotlabs/Module/Settings/Channel.php:619 +msgid "%Y - current year, %m - current month" +msgstr "%Y - текущий год, %y - текущий месяц" + +#: ../../Zotlabs/Module/Settings/Channel.php:619 +msgid "Default file upload folder" +msgstr "Каталог загрузки файлов по умолчанию" + +#: ../../Zotlabs/Module/Settings/Channel.php:621 +msgid "Personal menu to display in your channel pages" +msgstr "Персональное меню для отображения на странице вашего канала" + +#: ../../Zotlabs/Module/Settings/Channel.php:623 +msgid "Remove this channel." +msgstr "Удалить этот канал." + +#: ../../Zotlabs/Module/Settings/Channel.php:624 +msgid "Firefox Share $Projectname provider" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:625 +msgid "Start calendar week on Monday" +msgstr "Начинать календарную неделю с понедельника" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "Обновлены настройки слайдера cходства." + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "Параметры функций не настроены" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "Максимальный уровень сходства по умолчанию." + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 (по умолчанию 99)" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "Минимальный уровень сходства по умолчанию." + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 (по умолчанию 0)" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "Настройки слайдера сходства" + +#: ../../Zotlabs/Module/Settings/Featured.php:67 +msgid "Addon Settings" +msgstr "Настройки расширений" + +#: ../../Zotlabs/Module/Settings/Featured.php:68 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Пожалуйста сохраните / отправьте изменения на панели прежде чем открывать другую." + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Не действительный адрес email." + +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "Защищенный адрес электронной почты. Нельзя изменить." + +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." +msgstr "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз." + +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Уровень технических навыков обновлён" + +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Не удалось выполнить проверку пароля." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Пароли не совпадают. Пароль не изменён." + +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Пустые пароли не допускаются. Пароль не изменён." + +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Пароль изменен." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз." + +#: ../../Zotlabs/Module/Settings/Account.php:112 +msgid "Account Settings" +msgstr "Настройки аккаунта" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Текущий пароль" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Введите новый пароль:" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Подтвердите новый пароль:" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Оставьте поля пустыми до измнения" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Удалить этот аккаунт включая все каналы" + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (экспериментальный)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Настройки отображения" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Настройки темы" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Дополнительные настройки темы" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Настройки содержимого" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Тема отображения:" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Выбрать схему" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Предзагрузка изображений перед обработкой страницы" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" +msgstr "Субъективное время загрузки страницы будет длиннее, но страница будет готова при отображении" + +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Включить масштабирование на мобильных устройствах" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Обновление браузера каждые N секунд" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Минимум 10 секунд, без максимума" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum number of conversations to load at any time:" +msgstr "Максимальное количество бесед для загрузки одновременно:" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum of 100 items" +msgstr "Максимум 100 элементов" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Показывать эмотиконы (смайлики) как изображения" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "Показывать меню канала в панели навигации" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "По умолчанию каналы расположены в меню приложения" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "Обновление бесед вручную" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "Включено по умолчанию, выключение может привести к рывкам в отображении" + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Ссылки на источник заголовков публикаций" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "Системный редактор макета страницы - (продвинутый)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Использовать режим блога / списка на странице канала" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(комментарии отображаются отдельно)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on grid page" +msgstr "Использовать режим блога / списка на странице матрицы" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Channel page max height of content (in pixels)" +msgstr "Максимальная высота содержания канала (в пикселях)" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "click to expand content exceeding this height" +msgstr "нажмите, чтобы увеличить содержимое, превышающее эту высоту" + +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Grid page max height of content (in pixels)" +msgstr "Максимальная высота содержания на страницах матрицы (в пикселях)" + +#: ../../Zotlabs/Module/Settings/Permcats.php:23 +msgid "Permission Name is required." +msgstr "Требуется имя разрешения" + +#: ../../Zotlabs/Module/Settings/Permcats.php:42 +msgid "Permission category saved." +msgstr "Категория разрешения сохранена." + +#: ../../Zotlabs/Module/Settings/Permcats.php:66 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "Используйте эту форму для создания правил разрешений для различных групп людей и контактов." + +#: ../../Zotlabs/Module/Settings/Permcats.php:107 +msgid "Permission Name" +msgstr "Имя разрешения" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:36 +msgid "Name and Secret are required" +msgstr "Требуются имя и код" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:84 +msgid "Add OAuth2 application" +msgstr "Добавить приложение OAuth2" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:87 +#: ../../Zotlabs/Module/Settings/Oauth2.php:115 +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +msgid "Name of application" +msgstr "Название приложения" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:88 +#: ../../Zotlabs/Module/Settings/Oauth2.php:116 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Сгенерирован автоматические - измените если требуется. Макс. длина 20" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Redirect" +msgstr "Перенаправление" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:89 +#: ../../Zotlabs/Module/Settings/Oauth2.php:117 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" +msgstr "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +msgid "Grant Types" +msgstr "Разрешить типы" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:90 +#: ../../Zotlabs/Module/Settings/Oauth2.php:91 +#: ../../Zotlabs/Module/Settings/Oauth2.php:118 +#: ../../Zotlabs/Module/Settings/Oauth2.php:119 +msgid "leave blank unless your application sepcifically requires this" +msgstr "оставьте пустыми до тех пока ваше приложение не требует этого" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:91 +#: ../../Zotlabs/Module/Settings/Oauth2.php:119 +msgid "Authorization scope" +msgstr "Область полномочий" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:103 +msgid "OAuth2 Application not found." +msgstr "Приложение OAuth2 не найдено." + +#: ../../Zotlabs/Module/Settings/Oauth2.php:112 +#: ../../Zotlabs/Module/Settings/Oauth2.php:149 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +msgid "Add application" +msgstr "Добавить приложение" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:148 +msgid "Connected OAuth2 Apps" +msgstr "Подключённые приложения OAuth2" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:152 +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "Client key starts with" +msgstr "Ключ клиента начинаетя с" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:153 +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "No name" +msgstr "Без названия" + +#: ../../Zotlabs/Module/Settings/Oauth2.php:154 +#: ../../Zotlabs/Module/Settings/Oauth.php:154 +msgid "Remove authorization" +msgstr "Удалить разрешение" + +#: ../../Zotlabs/Module/Settings/Oauth.php:35 +msgid "Name is required" +msgstr "Необходимо имя" + +#: ../../Zotlabs/Module/Settings/Oauth.php:39 +msgid "Key and Secret are required" +msgstr "Требуются ключ и код" + +#: ../../Zotlabs/Module/Settings/Oauth.php:94 +#: ../../Zotlabs/Module/Settings/Oauth.php:120 +msgid "Icon url" +msgstr "URL значка" + +#: ../../Zotlabs/Module/Settings/Oauth.php:105 +msgid "Application not found." +msgstr "Приложение не найдено." + +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Connected Apps" +msgstr "Подключенные приложения" + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Этот канал ограничен %d токенами" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Требуются имя и пароль." + +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Токен сохранён." + +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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 private content." +msgstr "Используйте эту форму для создания идентификаторов временного доступа для сторонних пользователей. Эти идентификаторы могут использоваться в списках контроля доступа, и посетители могут использовать эти учетные данные для доступа к частному контенту." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +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 "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Имя" + +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Пароль" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Срок действия (yyyy-mm-dd)" + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Комната не найдена" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Покинуть комнату" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Удалить комнату" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Я сейчас отошёл" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Я на связи" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Запомнить эту комнату" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Новый чат" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Chatroom name" +msgstr "Название чата" + +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Завершение чатов (минут)" + +#: ../../Zotlabs/Module/Chat.php:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Чаты пользователя %1$s" + +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "Нет доступных чатов" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Срок действия" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "мин." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Веб-сайт:" + +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Удалённый канал [%s] (пока неизвестен на этом сайте)" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Оценка (эта информация общедоступна)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Объясните свою оценку (необязательно; эта информация общедоступна)" + +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Загрузка URL возвращает ошибку: %1$s" + +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Местоположение не найдено" + +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Поиск местоположения не удался" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." +msgstr "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее" + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Синхронизировать местоположение" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Местоположений не найдено" + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Управление местоположением канала" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Синхронизировать" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Пожалуйста, подождите несколько минут между последовательными операциями." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." +msgstr "По возможности, очистите местоположение, войдя на этот веб-сайт / хаб и удалив свой канал." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Используйте эту форму, чтобы удалить местоположение, если хаб больше не функционирует." + +#: ../../Zotlabs/Module/Import.php:66 ../../Zotlabs/Module/Import_items.php:48 +msgid "Nothing to import." +msgstr "Ничего импортировать." + +#: ../../Zotlabs/Module/Import.php:81 ../../Zotlabs/Module/Import.php:97 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Unable to download data from old server" +msgstr "Невозможно загрузить данные со старого сервера" + +#: ../../Zotlabs/Module/Import.php:104 ../../Zotlabs/Module/Import_items.php:77 +msgid "Imported file is empty." +msgstr "Импортированный файл пуст." + +#: ../../Zotlabs/Module/Import.php:146 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Ваш класс обслуживания разрешает только %d каналов." + +#: ../../Zotlabs/Module/Import.php:173 +msgid "No channel. Import failed." +msgstr "Канала нет. Импорт невозможен." + +#: ../../Zotlabs/Module/Import.php:541 +msgid "You must be logged in to use this feature." +msgstr "Вы должны войти в систему, чтобы использовать эту функцию." + +#: ../../Zotlabs/Module/Import.php:546 +msgid "Import Channel" +msgstr "Импортировать канал" + +#: ../../Zotlabs/Module/Import.php:547 +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:548 +#: ../../Zotlabs/Module/Import_items.php:127 +msgid "File to Upload" +msgstr "Файл для загрузки" + +#: ../../Zotlabs/Module/Import.php:549 +msgid "Or provide the old server/hub details" +msgstr "или предоставьте данные старого сервера" + +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Ваш старый адрес идентичности (xyz@example.com)" + +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Ваш старый адрес электронной почты" + +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Ваш старый пароль" + +#: ../../Zotlabs/Module/Import.php:554 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "Импортировать несколько месяцев публикаций если возможно (ограничено доступной памятью)" + +#: ../../Zotlabs/Module/Import.php:556 +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 "Для любого варианта, пожалуйста, выберите, следует ли сделать этот хаб вашим новым основным адресом, или ваше прежнее местоположение должно продолжить выполнять эту роль. Вы сможете отправлять сообщения из любого местоположения, но только одно может быть помечено как основное место для файлов, фотографий и мультимедиа." + +#: ../../Zotlabs/Module/Import.php:558 +msgid "Make this hub my primary location" +msgstr "Сделать этот хаб главным" + +#: ../../Zotlabs/Module/Import.php:559 +msgid "Move this channel (disable all previous locations)" +msgstr "Переместить это канал (отключить все предыдущие месторасположения)" + +#: ../../Zotlabs/Module/Import.php:560 +msgid "Use this channel nickname instead of the one provided" +msgstr "Использовать псевдоним этого канала вместо предоставленного" + +#: ../../Zotlabs/Module/Import.php:560 +msgid "" +"Leave blank to keep your existing channel nickname. You will be randomly " +"assigned a similar nickname if either name is already allocated on this site." +msgstr "Оставьте пустым для сохранения существующего псевдонима канала. Вам будет случайным образом назначен похожий псевдоним если такое имя уже выделено на этом сайте." + +#: ../../Zotlabs/Module/Import.php:562 +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/Viewconnections.php:65 +msgid "No connections." +msgstr "Контактов нет." + +#: ../../Zotlabs/Module/Viewconnections.php:83 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Посетить %s ​​профиль [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:113 +msgid "View Connections" +msgstr "Просмотр контактов" + +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Ошибка аутентификации." + +#: ../../Zotlabs/Module/New_channel.php:156 +msgid "Your real name is recommended." +msgstr "Рекомендуется использовать ваше настоящее имя." + +#: ../../Zotlabs/Module/New_channel.php:157 +msgid "" +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" +msgstr "Примеры: \"Иван Иванов\", \"Оксана и кони\", \"Футбол\", \"Тимур и его команда\"" + +#: ../../Zotlabs/Module/New_channel.php:162 +msgid "" +"This will be used to create a unique network address (like an email address)." +msgstr "Это будет использовано для создания уникального сетевого адреса (наподобие email)." + +#: ../../Zotlabs/Module/New_channel.php:164 +msgid "Allowed characters are a-z 0-9, - and _" +msgstr "Разрешённые символы a-z 0-9, - и _" + +#: ../../Zotlabs/Module/New_channel.php:174 +msgid "Channel name" +msgstr "Название канала" + +#: ../../Zotlabs/Module/New_channel.php:176 +#: ../../Zotlabs/Module/Register.php:265 +msgid "Choose a short nickname" +msgstr "Выберите короткий псевдоним" + +#: ../../Zotlabs/Module/New_channel.php:177 +msgid "" +"Select a channel permission role compatible with your usage needs and " +"privacy requirements." +msgstr "Выберите разрешения для канала в соответствии с вашими потребностями и требованиями безопасности." + +#: ../../Zotlabs/Module/New_channel.php:177 +#: ../../Zotlabs/Module/Register.php:266 +msgid "Read more about channel permission roles" +msgstr "Прочитать больше о разрешениях для каналов" + +#: ../../Zotlabs/Module/New_channel.php:180 +msgid "Create a Channel" +msgstr "Создать канал" + +#: ../../Zotlabs/Module/New_channel.php:181 +msgid "" +"A channel is a unique network identity. It can represent a person (social " +"network profile), a forum (group), a business or celebrity page, a newsfeed, " +"and many other things." +msgstr "Канал это уникальная сетевая идентичность. Он может представлять человека (профиль в социальной сети), форум или группу, бизнес или страницу знаменитости, новостную ленту и многие другие вещи." + +#: ../../Zotlabs/Module/New_channel.php:182 +msgid "" +"or import an existing channel from another location." +msgstr "или импортировать существующий канал из другого места." + +#: ../../Zotlabs/Module/New_channel.php:187 +msgid "Validate" +msgstr "Проверить" + +#: ../../Zotlabs/Module/Apps.php:53 +msgid "Manage apps" +msgstr "Управление приложениями" + +#: ../../Zotlabs/Module/Apps.php:54 +msgid "Create new app" +msgstr "Создать новое приложение" + +#: ../../Zotlabs/Module/Directory.php:106 +msgid "No default suggestions were found." +msgstr "Предложений по умолчанию не найдено." + +#: ../../Zotlabs/Module/Directory.php:255 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d оценка" +msgstr[1] "%d оценки" +msgstr[2] "%d оценок" + +#: ../../Zotlabs/Module/Directory.php:266 +msgid "Gender: " +msgstr "Пол:" + +#: ../../Zotlabs/Module/Directory.php:268 +msgid "Status: " +msgstr "Статус:" + +#: ../../Zotlabs/Module/Directory.php:270 +msgid "Homepage: " +msgstr "Домашняя страница:" + +#: ../../Zotlabs/Module/Directory.php:330 +msgid "Description:" +msgstr "Описание:" + +#: ../../Zotlabs/Module/Directory.php:339 +msgid "Public Forum:" +msgstr "Публичный форум:" + +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Keywords: " +msgstr "Ключевые слова:" + +#: ../../Zotlabs/Module/Directory.php:345 +msgid "Don't suggest" +msgstr "Не предлагать" + +#: ../../Zotlabs/Module/Directory.php:347 +msgid "Common connections (estimated):" +msgstr "Общие контакты (оценочно):" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Global Directory" +msgstr "Глобальный каталог" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Local Directory" +msgstr "Локальный каталог" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Finding:" +msgstr "Поиск:" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "next page" +msgstr "следующая страница" + +#: ../../Zotlabs/Module/Directory.php:407 +msgid "previous page" +msgstr "предыдущая страница" + +#: ../../Zotlabs/Module/Directory.php:408 +msgid "Sort options" +msgstr "Параметры сортировки" + +#: ../../Zotlabs/Module/Directory.php:409 +msgid "Alphabetic" +msgstr "По алфавиту" + +#: ../../Zotlabs/Module/Directory.php:410 +msgid "Reverse Alphabetic" +msgstr "Против алфавита" + +#: ../../Zotlabs/Module/Directory.php:411 +msgid "Newest to Oldest" +msgstr "От новых к старым" + +#: ../../Zotlabs/Module/Directory.php:412 +msgid "Oldest to Newest" +msgstr "От старых к новым" + +#: ../../Zotlabs/Module/Directory.php:429 +msgid "No entries (some entries may be hidden)." +msgstr "Нет записей (некоторые записи могут быть скрыты)." + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "Введите название каталога" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "или выберите существующий каталог (двойной щелчок)" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "Неверное сообщение" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "Ничего не найдено." + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "синхронизация канала завершена" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "в очереди" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "опубликовано" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "принято к доставке" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "обновлено" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "обновление игнорируется" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "доступ запрещен" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "получатель не найден" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "почта отозвана" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "получено дублирующее сообщение" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "почта доставлен" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Отчёт о доставке для %1$s" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "Доставить повторно" + +#: ../../Zotlabs/Module/Network.php:116 +msgid "No such group" +msgstr "Нет такой группы" + +#: ../../Zotlabs/Module/Network.php:157 +msgid "No such channel" +msgstr "Нет такого канала" + +#: ../../Zotlabs/Module/Network.php:242 +msgid "Privacy group is empty" +msgstr "Группа безопасности пуста" + +#: ../../Zotlabs/Module/Network.php:253 +msgid "Privacy group: " +msgstr "Группа безопасности: " + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Пожалуйста, войдите." + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Ограничений класса обслуживание не найдено." + +#: ../../Zotlabs/Module/Cards.php:99 +msgid "Add Card" +msgstr "Добавить карточку" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Изменить порядок приложений на панели навигации" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Изменить порядок приложений в лотке" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "" +"Use arrows to move the corresponding app left (top) or right (bottom) in the " +"navbar" +msgstr "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации" + +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Используйте стрелки для перемещения приложения вверх или вниз в лотке" + +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра." + +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Пожалуйста, подтвердите согласие с \"Условиями обслуживания\". Регистрация не удалась." + +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Пароли не совпадают." + +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Регистрация завершена успешно. Для продолжения создайте свой первый канал..." + +#: ../../Zotlabs/Module/Register.php:135 +msgid "" +"Registration successful. Please check your email for validation instructions." +msgstr "Регистрация завершена успешно. Пожалуйста проверьте вашу электронную почту для подтверждения." + +#: ../../Zotlabs/Module/Register.php:142 +msgid "Your registration is pending approval by the site owner." +msgstr "Ваша регистрация ожидает одобрения администрации сайта." + +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "Ваша регистрация не может быть обработана." + +#: ../../Zotlabs/Module/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "Регистрация на этом хабе отключена." + +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "Регистрация на этом хабе только по утверждению." + +#: ../../Zotlabs/Module/Register.php:202 ../../Zotlabs/Module/Register.php:211 +msgid "Register at another affiliated hub." +msgstr "Зарегистрироваться на другом хабе." + +#: ../../Zotlabs/Module/Register.php:210 +msgid "Registration on this hub is by invitation only." +msgstr "Регистрация на этом хабе доступна только по приглашениям." + +#: ../../Zotlabs/Module/Register.php:221 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. " + +#: ../../Zotlabs/Module/Register.php:247 +#, php-format +msgid "I accept the %s for this website" +msgstr "Я принимаю %s для этого веб-сайта." + +#: ../../Zotlabs/Module/Register.php:254 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "Мой возраст превышает %s лет и я принимаю %s для этого веб-сайта." + +#: ../../Zotlabs/Module/Register.php:259 +msgid "Your email address" +msgstr "Ваш адрес электронной почты" + +#: ../../Zotlabs/Module/Register.php:260 +msgid "Choose a password" +msgstr "Выберите пароль" + +#: ../../Zotlabs/Module/Register.php:261 +msgid "Please re-enter your password" +msgstr "Пожалуйста, введите пароль еще раз" + +#: ../../Zotlabs/Module/Register.php:262 +msgid "Please enter your invitation code" +msgstr "Пожалуйста, введите Ваш код приглашения" + +#: ../../Zotlabs/Module/Register.php:263 +msgid "Your Name" +msgstr "Ваше имя" + +#: ../../Zotlabs/Module/Register.php:263 +msgid "Real names are preferred." +msgstr "Предпочтительны реальные имена." + +#: ../../Zotlabs/Module/Register.php:265 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" +msgstr "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s" + +#: ../../Zotlabs/Module/Register.php:266 +msgid "" +"Select a channel permission role for your usage needs and privacy " +"requirements." +msgstr "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности." + +#: ../../Zotlabs/Module/Register.php:267 +msgid "no" +msgstr "нет" + +#: ../../Zotlabs/Module/Register.php:267 +msgid "yes" +msgstr "да" + +#: ../../Zotlabs/Module/Register.php:295 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Этот сайт требует проверку адреса электронной почты. После заполнения этой формы, пожалуйста, проверьте ваш почтовый ящик для дальнейших инструкций." + +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Этот параметр требует специальной обработки и редактирования и был заблокирован." + +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Редактор конфигурации" + +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please " +"leave this page unless you are comfortable with and knowledgeable about how " +"to correctly use this feature." +msgstr "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию." + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Редактировать статью" + +#: ../../Zotlabs/Module/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:123 +msgid "Not found" +msgstr "Не найдено." + +#: ../../Zotlabs/Module/Wiki.php:124 +msgid "Error retrieving wiki" +msgstr "Ошибка при получении Wiki" + +#: ../../Zotlabs/Module/Wiki.php:131 +msgid "Error creating zip file export folder" +msgstr "Ошибка при создании zip-файла при экспорте каталога" + +#: ../../Zotlabs/Module/Wiki.php:182 +msgid "Error downloading wiki: " +msgstr "Ошибка загрузки Wiki:" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Download" +msgstr "Загрузить" + +#: ../../Zotlabs/Module/Wiki.php:207 +msgid "Wiki name" +msgstr "Название Wiki" + +#: ../../Zotlabs/Module/Wiki.php:208 +msgid "Content type" +msgstr "Тип содержимого" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:286 +msgid "Type" +msgstr "Тип" + +#: ../../Zotlabs/Module/Wiki.php:211 +msgid "Any type" +msgstr "Любой тип" + +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "Зафиксировать тип содержимого" + +#: ../../Zotlabs/Module/Wiki.php:219 +msgid "Create a status post for this wiki" +msgstr "Создать публикацию о статусе этой Wiki" + +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "Редактировать наименование Wiki" + +#: ../../Zotlabs/Module/Wiki.php:262 +msgid "Wiki not found" +msgstr "Wiki не найдена" + +#: ../../Zotlabs/Module/Wiki.php:286 +msgid "Rename page" +msgstr "Переименовать страницу" + +#: ../../Zotlabs/Module/Wiki.php:307 +msgid "Error retrieving page content" +msgstr "Ошибка при получении содержимого страницы" + +#: ../../Zotlabs/Module/Wiki.php:315 ../../Zotlabs/Module/Wiki.php:317 +msgid "New page" +msgstr "Новая страница" + +#: ../../Zotlabs/Module/Wiki.php:345 +msgid "Revision Comparison" +msgstr "Сравнение ревизий" + +#: ../../Zotlabs/Module/Wiki.php:346 +msgid "Revert" +msgstr "Вернуть" + +#: ../../Zotlabs/Module/Wiki.php:353 +msgid "Short description of your changes (optional)" +msgstr "Краткое описание ваших изменений (необязательно)" + +#: ../../Zotlabs/Module/Wiki.php:362 +msgid "Source" +msgstr "Источник" + +#: ../../Zotlabs/Module/Wiki.php:372 +msgid "New page name" +msgstr "Новое имя страницы" + +#: ../../Zotlabs/Module/Wiki.php:377 +msgid "Embed image from photo albums" +msgstr "Встроить изображение из фотоальбома" + +#: ../../Zotlabs/Module/Wiki.php:462 +msgid "Error creating wiki. Invalid name." +msgstr "Ошибка создания Wiki. Неверное имя." + +#: ../../Zotlabs/Module/Wiki.php:469 +msgid "A wiki with this name already exists." +msgstr "Wiki с таким именем уже существует." + +#: ../../Zotlabs/Module/Wiki.php:482 +msgid "Wiki created, but error creating Home page." +msgstr "Wiki создана, но возникла ошибка при создании домашней страницы" + +#: ../../Zotlabs/Module/Wiki.php:489 +msgid "Error creating wiki" +msgstr "Ошибка при создании Wiki" + +#: ../../Zotlabs/Module/Wiki.php:512 +msgid "Error updating wiki. Invalid name." +msgstr "Ошибка при обновлении Wiki. Неверное имя." + +#: ../../Zotlabs/Module/Wiki.php:532 +msgid "Error updating wiki" +msgstr "Ошибка при обновлении Wiki" + +#: ../../Zotlabs/Module/Wiki.php:547 +msgid "Wiki delete permission denied." +msgstr "Нет прав на удаление Wiki." + +#: ../../Zotlabs/Module/Wiki.php:557 +msgid "Error deleting wiki" +msgstr "Ошибка удаления Wiki" + +#: ../../Zotlabs/Module/Wiki.php:590 +msgid "New page created" +msgstr "Создана новая страница" + +#: ../../Zotlabs/Module/Wiki.php:711 +msgid "Cannot delete Home" +msgstr "Невозможно удалить домашнюю страницу" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Current Revision" +msgstr "Текущая ревизия" + +#: ../../Zotlabs/Module/Wiki.php:775 +msgid "Selected Revision" +msgstr "Выбранная ревизия" + +#: ../../Zotlabs/Module/Wiki.php:825 +msgid "You must be authenticated." +msgstr "Вы должны быть аутентифицированы." + +#: ../../Zotlabs/Module/Magic.php:76 +msgid "Hub not found." +msgstr "Узел не найден." + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Элемент недоступен." + +#: ../../Zotlabs/Module/Group.php:35 +msgid "Privacy group created." +msgstr "Группа безопасности создана." + +#: ../../Zotlabs/Module/Group.php:38 +msgid "Could not create privacy group." +msgstr "Не удалось создать группу безопасности." + +#: ../../Zotlabs/Module/Group.php:67 +msgid "Privacy group updated." +msgstr "Группа безопасности обновлена." + +#: ../../Zotlabs/Module/Group.php:114 +msgid "Add Group" +msgstr "Добавить группу" + +#: ../../Zotlabs/Module/Group.php:118 +msgid "Privacy group name" +msgstr "Имя группы безопасности" + +#: ../../Zotlabs/Module/Group.php:119 ../../Zotlabs/Module/Group.php:220 +msgid "Members are visible to other channels" +msgstr "Участники канала видимые для остальных" + +#: ../../Zotlabs/Module/Group.php:151 +msgid "Privacy group removed." +msgstr "Группа безопасности удалена." + +#: ../../Zotlabs/Module/Group.php:153 +msgid "Unable to remove privacy group." +msgstr "Ну удалось удалить группу безопасности." + +#: ../../Zotlabs/Module/Group.php:215 +#, php-format +msgid "Privacy Group: %s" +msgstr "Группа безопасности: %s" + +#: ../../Zotlabs/Module/Group.php:217 +msgid "Privacy group name: " +msgstr "Название группы безопасности: " + +#: ../../Zotlabs/Module/Group.php:222 +msgid "Delete Group" +msgstr "Удалить группу" + +#: ../../Zotlabs/Module/Group.php:232 +msgid "Group members" +msgstr "Члены группы" + +#: ../../Zotlabs/Module/Group.php:234 +msgid "Not in this group" +msgstr "Не в этой группе" + +#: ../../Zotlabs/Module/Group.php:266 +msgid "Click a channel to toggle membership" +msgstr "Нажмите на канал для просмотра членства" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Профиль не найден." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Профиль удален." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Профиль -" + +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "Новый профиль создан." + +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Профиль недоступен для клонирования." + +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Профиль недоступен для экспорта." + +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Требуется имя профиля." + +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" +msgstr "Семейное положение" + +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Романтический партнер" + +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:772 +msgid "Likes" +msgstr "Нравится" + +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:773 +msgid "Dislikes" +msgstr "Не нравится" + +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:780 +msgid "Work/Employment" +msgstr "Работа / Занятость" + +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Религия" + +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Политические взгляды" + +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Сексуальная ориентация" + +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Домашняя страница" + +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Интересы" + +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Профиль обновлен." + +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" +msgstr "Скрывать от просмотра ваш список контактов в этом профиле" + +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Edit Profile Details" +msgstr "Редактирование профиля" + +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "View this profile" +msgstr "Посмотреть этот профиль" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Profile Tools" +msgstr "Инструменты профиля" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Change cover photo" +msgstr "Изменить фотографию обложки" + +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Create a new profile using these settings" +msgstr "Создать новый профиль со следующими настройками" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Clone this profile" +msgstr "Клонировать этот профиль" + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Delete this profile" +msgstr "Удалить этот профиль" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Add profile things" +msgstr "Добавить в профиль" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Relationship" +msgstr "Отношения" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Import profile from file" +msgstr "Импортировать профиль из файла" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Export profile to file" +msgstr "Экспортировать профиль в файл" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Your gender" +msgstr "Ваш пол" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Marital status" +msgstr "Семейное положение" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Sexual preference" +msgstr "Сексуальная ориентация" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Profile name" +msgstr "Имя профиля" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "This is your default profile." +msgstr "Это ваш профиль по умолчанию." + +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Your full name" +msgstr "Ваше полное имя" + +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "Title/Description" +msgstr "Заголовок / описание" + +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Street address" +msgstr "Улица, дом, квартира" + +#: ../../Zotlabs/Module/Profiles.php:754 +msgid "Locality/City" +msgstr "Населенный пункт / город" + +#: ../../Zotlabs/Module/Profiles.php:755 +msgid "Region/State" +msgstr "Регион / Область" + +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Postal/Zip code" +msgstr "Почтовый индекс" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Who (if applicable)" +msgstr "Кто (если применимо)" + +#: ../../Zotlabs/Module/Profiles.php:762 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Примеры: ivan1990, Ivan Petrov, ivan@example.com" + +#: ../../Zotlabs/Module/Profiles.php:763 +msgid "Since (date)" +msgstr "С (дата)" + +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Tell us about yourself" +msgstr "Расскажите нам о себе" + +#: ../../Zotlabs/Module/Profiles.php:768 +msgid "Hometown" +msgstr "Родной город" + +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Political views" +msgstr "Политические взгляды" + +#: ../../Zotlabs/Module/Profiles.php:770 +msgid "Religious views" +msgstr "Религиозные взгляды" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Keywords used in directory listings" +msgstr "Ключевые слова для участия в каталоге" + +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Example: fishing photography software" +msgstr "Например: fishing photography software" + +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Musical interests" +msgstr "Музыкальные интересы" + +#: ../../Zotlabs/Module/Profiles.php:775 +msgid "Books, literature" +msgstr "Книги, литература" + +#: ../../Zotlabs/Module/Profiles.php:776 +msgid "Television" +msgstr "Телевидение" + +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Кино / танцы / культура / развлечения" + +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Hobbies/Interests" +msgstr "Хобби / интересы" + +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Love/Romance" +msgstr "Любовь / романтические отношения" + +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "School/Education" +msgstr "Школа / образование" + +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Contact information and social networks" +msgstr "Информация и социальные сети для связи" + +#: ../../Zotlabs/Module/Profiles.php:783 +msgid "My other channels" +msgstr "Мои другие контакты" + +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Communications" +msgstr "Связи" + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Сообщение для проверки email отправлено повторно" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "Невозможно повторно отправить сообщение для проверки email" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "vCard" + +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Неверный идентификатор профиля" + +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Редактор видимости профиля" + +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Нажмите на контакт, чтобы добавить или удалить." + +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Видно" + +#: ../../Zotlabs/Module/Thing.php:120 msgid "Thing updated" -msgstr "" +msgstr "Обновлено" -#: ../../mod/thing.php:158 +#: ../../Zotlabs/Module/Thing.php:172 msgid "Object store: failed" -msgstr "" +msgstr "Хранлищие объектов: неудача" -#: ../../mod/thing.php:162 +#: ../../Zotlabs/Module/Thing.php:176 msgid "Thing added" -msgstr "" +msgstr "Добавлено" -#: ../../mod/thing.php:182 +#: ../../Zotlabs/Module/Thing.php:202 #, php-format msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../mod/thing.php:234 +#: ../../Zotlabs/Module/Thing.php:265 msgid "Show Thing" -msgstr "" +msgstr "Показать" -#: ../../mod/thing.php:241 +#: ../../Zotlabs/Module/Thing.php:272 msgid "item not found." msgstr "Элемент не найден." -#: ../../mod/thing.php:272 +#: ../../Zotlabs/Module/Thing.php:305 msgid "Edit Thing" -msgstr "" +msgstr "Редактировать" -#: ../../mod/thing.php:274 ../../mod/thing.php:321 +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:364 msgid "Select a profile" -msgstr "Выберите профиль" +msgstr "Выбрать профиль" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 msgid "Post an activity" -msgstr "" +msgstr "Опубликовать мероприятие" -#: ../../mod/thing.php:278 ../../mod/thing.php:324 +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:367 msgid "Only sends to viewers of the applicable profile" -msgstr "" +msgstr "Отправлять только подходящий профиль" -#: ../../mod/thing.php:280 ../../mod/thing.php:326 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:369 msgid "Name of thing e.g. something" -msgstr "" +msgstr "Наименование, например \"нечто\"" -#: ../../mod/thing.php:282 ../../mod/thing.php:327 +#: ../../Zotlabs/Module/Thing.php:315 ../../Zotlabs/Module/Thing.php:370 msgid "URL of thing (optional)" -msgstr "" +msgstr "URL (необязательно)" -#: ../../mod/thing.php:284 ../../mod/thing.php:328 +#: ../../Zotlabs/Module/Thing.php:317 ../../Zotlabs/Module/Thing.php:371 msgid "URL for photo of thing (optional)" -msgstr "" +msgstr "URL для фотографии (необязательно)" -#: ../../mod/thing.php:319 +#: ../../Zotlabs/Module/Thing.php:362 msgid "Add Thing to your Profile" -msgstr "" +msgstr "Добавить к вашему профилю" -#: ../../mod/import.php:36 -msgid "Nothing to import." -msgstr "Ничего импортировать." +#: ../../Zotlabs/Module/Display.php:394 +msgid "Article" +msgstr "Статья" -#: ../../mod/import.php:58 -msgid "Unable to download data from old server" -msgstr "Невозможно загрузить данные из старого сервера" +#: ../../Zotlabs/Module/Display.php:446 +msgid "Item has been removed." +msgstr "Элемент был удалён." -#: ../../mod/import.php:64 -msgid "Imported file is empty." -msgstr "Импортированный файл пуст." - -#: ../../mod/import.php:88 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../mod/import.php:106 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../mod/import.php:116 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../mod/import.php:364 -msgid "Import completed." -msgstr "Импорт завершен." - -#: ../../mod/import.php:377 -msgid "You must be logged in to use this feature." -msgstr "Вы должны войти в систему, чтобы использовать эту функцию." - -#: ../../mod/import.php:382 -msgid "Import Channel" -msgstr "Импорт канала" - -#: ../../mod/import.php:383 -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. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "" - -#: ../../mod/import.php:384 -msgid "File to Upload" -msgstr "Файл для загрузки" - -#: ../../mod/import.php:385 -msgid "Or provide the old server/hub details" -msgstr "" - -#: ../../mod/import.php:386 -msgid "Your old identity address (xyz@example.com)" -msgstr "Ваш старый адрес идентичности (xyz@example.com)" - -#: ../../mod/import.php:387 -msgid "Your old login email address" -msgstr "Ваш старый адрес электронной почты" - -#: ../../mod/import.php:388 -msgid "Your old login password" -msgstr "Ваш старый пароль" - -#: ../../mod/import.php:389 -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 "" - -#: ../../mod/import.php:390 -msgid "Make this hub my primary location" -msgstr "" - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../mod/invite.php:49 +#: ../../Zotlabs/Module/Home.php:92 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Не действительный адрес электронной почты." +msgid "Welcome to %s" +msgstr "Добро пожаловать в %s" -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Пожалуйста, присоединяйтесь к нам в Red" +#: ../../Zotlabs/Module/Cloud.php:129 +msgid "Please refresh page" +msgstr "Пожалуйста обновите страницу" -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" +#: ../../Zotlabs/Module/Cloud.php:132 +msgid "Unknown error" +msgstr "Неизвестная ошибка" -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Доставка сообщения не удалась." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d сообщение отправленно." -msgstr[1] "%d сообщения отправленно." -msgstr[2] "%d сообщений отправленно." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "У вас больше нет приглашений" - -#: ../../mod/invite.php:141 -msgid "Send invitations" -msgstr "Послать приглашения" - -#: ../../mod/invite.php:142 -msgid "Enter email addresses, one per line:" -msgstr "Введите адреса электронной почты, по одному на строку:" - -#: ../../mod/invite.php:143 ../../mod/mail.php:216 ../../mod/mail.php:328 -msgid "Your message:" -msgstr "Сообщение:" - -#: ../../mod/invite.php:144 -msgid "" -"You are cordially invited to join me and some other close friends on the Red" -" Matrix - a revolutionary new decentralised communication and information " -"tool." -msgstr "" - -#: ../../mod/invite.php:146 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: ../../mod/invite.php:147 -msgid "Please visit my channel at" -msgstr "Пожалуйста, посетите мой канал на" - -#: ../../mod/invite.php:151 -msgid "" -"Once you have registered (on ANY Hubzilla site - they are all inter-" -"connected), please connect with my Hubzilla channel address:" -msgstr "" - -#: ../../mod/invite.php:153 -msgid "Click the [Register] link on the following page to join." -msgstr "" - -#: ../../mod/invite.php:155 -msgid "" -"For more information about the Hubzilla Project and why it has the " -"potential to change the internet as we know it, please visit " -"http://getzot.com" -msgstr "Чтобы узнать больше о проекте Hubzilla, и чтобы узнать почему он имеет потенциал для изменения привычного нам Интернета, пожалуйста, посетите http://getzot.com" - -#: ../../mod/item.php:147 -msgid "Unable to locate original post." -msgstr "Не удалось найти оригинал." - -#: ../../mod/item.php:372 -msgid "Empty post discarded." -msgstr "Отказаться от пустой почты." - -#: ../../mod/item.php:414 -msgid "Executable content type not permitted to this channel." -msgstr "" - -#: ../../mod/item.php:832 -msgid "System error. Post not saved." -msgstr "Системная ошибка. Сообщение не сохранено." - -#: ../../mod/item.php:1275 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "" - -#: ../../mod/item.php:1281 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/layouts.php:62 -msgid "Help with this feature" -msgstr "" - -#: ../../mod/layouts.php:84 -msgid "Layout Name" -msgstr "Название шаблона" - -#: ../../mod/like.php:97 -msgid "thing" -msgstr "" - -#: ../../mod/lockview.php:30 ../../mod/lockview.php:36 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:45 -msgid "Visible to:" -msgstr "Кому видно:" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Никаких связей." - -#: ../../mod/viewconnections.php:70 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Посетить %s's ​​профиль [%s]" - -#: ../../mod/viewconnections.php:85 -msgid "View Connnections" -msgstr "Просмотр контактов" - -#: ../../mod/lostpass.php:15 +#: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." msgstr "Действительный аккаунт не найден." -#: ../../mod/lostpass.php:29 +#: ../../Zotlabs/Module/Lostpass.php:33 msgid "Password reset request issued. Check your email." -msgstr "" +msgstr "Запрос на сброс пароля отправлен. Проверьте вашу электронную почту." -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 #, php-format msgid "Site Member (%s)" msgstr "Участник сайта (%s)" -#: ../../mod/lostpass.php:40 +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 #, php-format msgid "Password reset requested at %s" -msgstr "Требуется сброс пароля на %s" +msgstr "Запрошен сброс пароля на %s" -#: ../../mod/lostpass.php:63 +#: ../../Zotlabs/Module/Lostpass.php:68 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." -msgstr "" +msgstr "Запрос не может быть проверен. (Вы могли отправить его раньше). Сброс пароля не возможен." -#: ../../mod/lostpass.php:85 ../../boot.php:1475 -msgid "Password Reset" -msgstr "Сбросить пароль" - -#: ../../mod/lostpass.php:86 +#: ../../Zotlabs/Module/Lostpass.php:92 msgid "Your password has been reset as requested." msgstr "Ваш пароль в соответствии с просьбой сброшен." -#: ../../mod/lostpass.php:87 +#: ../../Zotlabs/Module/Lostpass.php:93 msgid "Your new password is" msgstr "Ваш новый пароль" -#: ../../mod/lostpass.php:88 +#: ../../Zotlabs/Module/Lostpass.php:94 msgid "Save or copy your new password - and then" -msgstr "" +msgstr "Сохраните ваш новый пароль и затем" -#: ../../mod/lostpass.php:89 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "click here to login" -msgstr "нажмите здесь чтобы выйти" +msgstr "нажмите здесь чтобы войти" -#: ../../mod/lostpass.php:90 +#: ../../Zotlabs/Module/Lostpass.php:96 msgid "" "Your password may be changed from the Settings page after " "successful login." -msgstr "" +msgstr "Ваш пароль может быть изменён на странице Настройки после успешного входа." -#: ../../mod/lostpass.php:107 +#: ../../Zotlabs/Module/Lostpass.php:117 #, php-format msgid "Your password has changed at %s" -msgstr "Пароль изменен на %s" +msgstr "Пароль был изменен на %s" -#: ../../mod/lostpass.php:122 +#: ../../Zotlabs/Module/Lostpass.php:130 msgid "Forgot your Password?" -msgstr "Забыли пароль или логин?" +msgstr "Забыли ваш пароль?" -#: ../../mod/lostpass.php:123 +#: ../../Zotlabs/Module/Lostpass.php:131 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." -msgstr "" +msgstr "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. " -#: ../../mod/lostpass.php:124 +#: ../../Zotlabs/Module/Lostpass.php:132 msgid "Email Address" msgstr "Адрес электронной почты" -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Сброс" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Установить текущее настроение и рассказать друзьям" -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hub не найден." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "" - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "" - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "" - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "" - -#: ../../mod/mail.php:121 ../../mod/message.php:31 -msgid "Messages" -msgstr "Переписка" - -#: ../../mod/mail.php:132 -msgid "Message deleted." -msgstr "Сообщение удалено." - -#: ../../mod/mail.php:149 -msgid "Message recalled." -msgstr "" - -#: ../../mod/mail.php:206 -msgid "Send Private Message" -msgstr "Отправить личное сообщение" - -#: ../../mod/mail.php:207 ../../mod/mail.php:323 -msgid "To:" -msgstr "Кому:" - -#: ../../mod/mail.php:212 ../../mod/mail.php:325 -msgid "Subject:" -msgstr "Тема:" - -#: ../../mod/mail.php:249 -msgid "Message not found." -msgstr "Сообщение не найдено." - -#: ../../mod/mail.php:292 ../../mod/message.php:72 -msgid "Delete message" -msgstr "Удалить сообщение" - -#: ../../mod/mail.php:293 -msgid "Recall message" -msgstr "" - -#: ../../mod/mail.php:295 -msgid "Message has been recalled." -msgstr "" - -#: ../../mod/mail.php:312 -msgid "Private Conversation" -msgstr "Личный разговор" - -#: ../../mod/mail.php:316 -msgid "Delete conversation" -msgstr "Удалить разговор" - -#: ../../mod/mail.php:318 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/mail.php:322 -msgid "Send Reply" -msgstr "Отправить снова" - -#: ../../mod/manage.php:64 +#: ../../Zotlabs/Module/Import_items.php:93 #, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "" +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Предупреждение: Версия базы данных отличается от %1$d обновления." -#: ../../mod/manage.php:72 -msgid "Create a new channel" -msgstr "Создать новый канал" +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "Импорт завершён." -#: ../../mod/manage.php:77 -msgid "Channel Manager" -msgstr "Настройки канала" +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Импортировать объекты" -#: ../../mod/manage.php:78 -msgid "Current Channel" -msgstr "Текущий канал" +#: ../../Zotlabs/Module/Import_items.php:126 +msgid "Use this form to import existing posts and content from an export file." +msgstr "Используйте эту форму для импорта существующих публикаций и содержимого из файла." -#: ../../mod/manage.php:80 -msgid "Attach to one of your channels by selecting it." -msgstr "" +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "переключение полноэкранного режима" -#: ../../mod/manage.php:81 -msgid "Default Channel" -msgstr "Канал по умолчанию" +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:289 +msgid "parent" +msgstr "источник" -#: ../../mod/manage.php:82 -msgid "Make Default" -msgstr "Сделать стандартным" +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Субъект" -#: ../../mod/wall_upload.php:34 -msgid "Wall Photos" -msgstr "Стена фотографий" +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Адресная книга" -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Профиль Совпадение" +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "План занятий входящий" -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "План занятий исходящий" -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "заинтересован в:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Нет соответствий" - -#: ../../mod/menu.php:21 -msgid "Menu updated." -msgstr "Меню обновлено." - -#: ../../mod/menu.php:25 -msgid "Unable to update menu." -msgstr "Невозможно обновление меню." - -#: ../../mod/menu.php:30 -msgid "Menu created." -msgstr "Меню создано." - -#: ../../mod/menu.php:34 -msgid "Unable to create menu." -msgstr "Невозможно создать меню." - -#: ../../mod/menu.php:57 -msgid "Manage Menus" -msgstr "Управление меню" - -#: ../../mod/menu.php:60 -msgid "Drop" -msgstr "Удалить" - -#: ../../mod/menu.php:62 -msgid "Create a new menu" -msgstr "Создать новое меню" - -#: ../../mod/menu.php:63 -msgid "Delete this menu" -msgstr "Удалить это меню" - -#: ../../mod/menu.php:64 ../../mod/menu.php:109 -msgid "Edit menu contents" -msgstr "Редактировать содержание меню" - -#: ../../mod/menu.php:65 -msgid "Edit this menu" -msgstr "Редактировать это меню" - -#: ../../mod/menu.php:80 -msgid "New Menu" -msgstr "Новое меню" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Menu name" -msgstr "Название меню" - -#: ../../mod/menu.php:81 ../../mod/menu.php:110 -msgid "Must be unique, only seen by you" -msgstr "" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title" -msgstr "Название меню" - -#: ../../mod/menu.php:82 ../../mod/menu.php:111 -msgid "Menu title as seen by others" -msgstr "" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Allow bookmarks" -msgstr "Разрешить закладки" - -#: ../../mod/menu.php:83 ../../mod/menu.php:112 -msgid "Menu may be used to store saved bookmarks" -msgstr "Меню может использоваться, чтобы сохранить закладки" - -#: ../../mod/menu.php:98 -msgid "Menu deleted." -msgstr "Меню удалено." - -#: ../../mod/menu.php:100 -msgid "Menu could not be deleted." -msgstr "Меню не может быть удален." - -#: ../../mod/menu.php:106 -msgid "Edit Menu" -msgstr "Редактировать меню" - -#: ../../mod/menu.php:108 -msgid "Add or remove entries to this menu" -msgstr "" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Разговор удален." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Нет сообщений." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/new_channel.php:107 -msgid "Add a Channel" -msgstr "Добавить контакт" - -#: ../../mod/new_channel.php:108 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "" - -#: ../../mod/new_channel.php:111 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "" - -#: ../../mod/new_channel.php:112 -msgid "Choose a short nickname" -msgstr "Выберите короткий псевдоним" - -#: ../../mod/new_channel.php:113 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "" - -#: ../../mod/new_channel.php:114 -msgid "Or import an existing channel from another location" -msgstr "" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Отменить" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Новых оповещений системы пока нет." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Системные оповещения " - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "" - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Публикация прошла успешно." - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Приложение установлено ." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "" - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Код для вставки" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Редактировать приложение" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Создать приложение" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Название приложения" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - необязательно" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Версия ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/blogga/php/config.php:69 -#: ../../view/theme/blogga/view/theme/blog/config.php:69 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Настройки темы" - -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Установить схему" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Установить размер шрифта для сообщений и комментариев" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow colour, default #000" -msgstr "" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background colour" -msgstr "" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background colour" -msgstr "" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set colour of items - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set colour of links - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set colour of fonts - use hex" -msgstr "" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:47 -#: ../../view/theme/blogga/view/theme/blog/config.php:47 -msgid "None" -msgstr "" - -#: ../../view/theme/blogga/php/config.php:70 -#: ../../view/theme/blogga/view/theme/blog/config.php:70 -msgid "Header image" -msgstr "Графика заголовока" - -#: ../../view/theme/blogga/php/config.php:71 -#: ../../view/theme/blogga/view/theme/blog/config.php:71 -msgid "Header image only on profile pages" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Узкая панель навигации" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background colour" -msgstr "Панель навигации, цвет фона" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top colour" -msgstr "Панель навигации, цвет градиента вверху" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom colour" -msgstr "Панель навигации, цвет градиента внизу" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top colour" -msgstr "Панель навигации, цвет градиента вверху активной кнопки" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom colour" -msgstr "Панель навигации, цвет градиента внизу активной кнопки" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border colour " -msgstr "Панель навигации, цвет границы" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon colour " -msgstr "Панель навигации, цвет значков" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon colour " -msgstr "Панель навигации, цвет активного значка" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link colour" -msgstr "Цвет ссылок" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-colour for banner" -msgstr "Цвет текста в шапке" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background colour" -msgstr "Цвет фона на странице канала" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Фоновое изображение" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background colour of items" -msgstr "Цвет фона для постов и других элементов" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background colour of comments" -msgstr "Цвет фона для комментариев" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border colour of comments" -msgstr "Цвет границы для области комментариев" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic colour for item icons" -msgstr "Основной цвет в иконках редактирования" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover colour for item icons" -msgstr "Цвет в иконках редактирования при наведении мыши" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Установить размер шрифта для системы в целом" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-colour for posts and comments" -msgstr "Цвет шрифта для постов и комментариев" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Радиус скруглений" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Панель навигации, прозрачность" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" -msgstr "" - -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:38 -msgid "Type" -msgstr "Тип" - -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:40 -msgid "Size" -msgstr "Размер" - -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:42 -msgid "Last modified" -msgstr "Последнее изменение" - -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:85 -msgid "Are you sure you want to delete this item?" -msgstr "Вы уверены, что хотите удалить этот элемент?" - -#: ../../view/tpl/smarty3/compiled/de0b699d2fc212753c3f166003476a343ca00174.file.cloud_directory.tpl.php:103 +#: ../../Zotlabs/Storage/Browser.php:273 msgid "Total" msgstr "Всего" -#: ../../boot.php:1273 +#: ../../Zotlabs/Storage/Browser.php:275 +msgid "Shared" +msgstr "Общие" + +#: ../../Zotlabs/Storage/Browser.php:277 +msgid "Add Files" +msgstr "Добавить файлы" + +#: ../../Zotlabs/Storage/Browser.php:361 #, php-format -msgid "Update %s failed. See error logs." -msgstr "" +msgid "You are using %1$s of your available file storage." +msgstr "Вы используете %1$s из доступного вам хранилища файлов." -#: ../../boot.php:1276 +#: ../../Zotlabs/Storage/Browser.php:366 #, php-format -msgid "Update Error at %s" -msgstr "Ошибка обновления на %s" +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +msgstr "Вы используете %1$s из %2$s доступного хранилища файлов (%3$s%)." -#: ../../boot.php:1440 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "" +#: ../../Zotlabs/Storage/Browser.php:377 +msgid "WARNING:" +msgstr "Предупреждение:" -#: ../../boot.php:1468 -msgid "Password" -msgstr "Пароль" +#: ../../Zotlabs/Storage/Browser.php:389 +msgid "Create new folder" +msgstr "Создать новую папку" -#: ../../boot.php:1469 -msgid "Remember me" -msgstr "Запомнить" +#: ../../Zotlabs/Storage/Browser.php:391 +msgid "Upload file" +msgstr "Загрузить файл" -#: ../../boot.php:1474 -msgid "Forgot your password?" -msgstr "Забыли пароль или логин?" - -#: ../../boot.php:1539 -msgid "permission denied" -msgstr "доступ запрещен" - -#: ../../boot.php:1540 -msgid "Got Zot?" -msgstr "Got Zot?" - -#: ../../boot.php:1970 -msgid "toggle mobile" -msgstr "мобильное подключение" +#: ../../Zotlabs/Storage/Browser.php:404 +msgid "Drop files here to immediately upload" +msgstr "Поместите файлы сюда для немедленной загрузки" diff --git a/view/ru/strings.php b/view/ru/strings.php index 4e42df2fc..b37c85888 100644 --- a/view/ru/strings.php +++ b/view/ru/strings.php @@ -2,568 +2,1136 @@ if(! function_exists("string_plural_select_ru")) { function string_plural_select_ru($n){ - return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; + return ($n%10==1 && $n%100!=11 ? 0 : ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : 2)); }} -; -App::$strings["Cannot locate DNS info for database server '%s'"] = ""; -App::$strings["Profile Photos"] = "Фотографии профиля"; -App::$strings["Image/photo"] = "Изображение / фото"; -App::$strings["Encrypted content"] = "Зашифрованное содержание"; -App::$strings["QR code"] = "QR код"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s написал следующее %2\$s %3\$s"; -App::$strings["post"] = "сообщение"; -App::$strings["$1 wrote:"] = "$1 писал:"; -App::$strings["Embedded content"] = "Внедренное содержание"; -App::$strings["Embedding disabled"] = "Внедрение отключенно"; -App::$strings["created a new post"] = "создал новое сообщение"; -App::$strings["commented on %s's post"] = "прокомментировал %s's сообщение"; +App::$rtl = 0; +App::$strings["Source channel not found."] = "Канал-источник не найден."; +App::$strings["lonely"] = "одинокий"; +App::$strings["drunk"] = "пьяный"; +App::$strings["horny"] = "возбуждённый"; +App::$strings["stoned"] = "под кайфом"; +App::$strings["fucked up"] = "облажался"; +App::$strings["clusterfucked"] = "в полной заднице"; +App::$strings["crazy"] = "сумасшедший"; +App::$strings["hurt"] = "обиженный"; +App::$strings["sleepy"] = "сонный"; +App::$strings["grumpy"] = "сердитый"; +App::$strings["high"] = "кайфует"; +App::$strings["semi-conscious"] = "в полубезсознании"; +App::$strings["in love"] = "влюблённый"; +App::$strings["in lust"] = "похотливый"; +App::$strings["naked"] = "обнажённый"; +App::$strings["stinky"] = "вонючий"; +App::$strings["sweaty"] = "потный"; +App::$strings["bleeding out"] = "истекающий кровью"; +App::$strings["victorious"] = "победивший"; +App::$strings["defeated"] = "проигравший"; +App::$strings["envious"] = "завидует"; +App::$strings["jealous"] = "ревнует"; +App::$strings["Post to Dreamwidth"] = "Публиковать в Dreamwidth"; +App::$strings["Enable Dreamwidth Post Plugin"] = "Включить плагин публикаций Dreamwidth"; +App::$strings["No"] = "Нет"; +App::$strings["Yes"] = "Да"; +App::$strings["Dreamwidth username"] = "Имя пользователя Dreamwidth"; +App::$strings["Dreamwidth password"] = "Пароль Dreamwidth"; +App::$strings["Post to Dreamwidth by default"] = "Публиковать в Dreamwidth по умолчанию"; +App::$strings["Dreamwidth Post Settings"] = "Настройки публикаций в Dreamwidth"; +App::$strings["Submit"] = "Отправить"; +App::$strings["Markdown"] = "Разметка"; +App::$strings["Use markdown for editing posts"] = "Использовать язык разметки для редактирования публикаций"; +App::$strings["You're welcome."] = "Пожалуйста."; +App::$strings["Ah shucks..."] = "О, чёрт..."; +App::$strings["Don't mention it."] = "Не стоит благодарности."; +App::$strings["<blush>"] = "<краснею>"; +App::$strings["Send test email"] = "Отправить тестовый email"; +App::$strings["No recipients found."] = "Получателей не найдено."; +App::$strings["Mail sent."] = "Сообщение отправлено"; +App::$strings["Sending of mail failed."] = "Не удалось отправить сообщение."; +App::$strings["Mail Test"] = "Тестовое сообщение"; +App::$strings["Message subject"] = "Тема сообщения"; +App::$strings["Project Servers and Resources"] = "Серверы и ресурсы проекта"; +App::$strings["Project Creator and Tech Lead"] = "Создатель проекта и технический руководитель"; +App::$strings["Admin, developer, directorymin, support bloke"] = "Администратор, разработчик, администратор каталога, поддержка"; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = "И сотни других людей и организаций которые помогали в создании Hubzilla."; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = "Проекты Redmatrix / Hubzilla предоставляются, в основном, добровольцами, которые предоставляют свое время и опыт и, часто, оплачивают из своего кармана услуги, которыми они делятся с другими."; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = "Здесь нет корпоративного финансирования и рекламы, мы не собираем и не продаем вашу личную информацию. (Мы не контролируем вашу личную информацию - это делаете вы.)"; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = "Помогите поддержать нашу новаторскую работу в областях децентрализации, веб-идентификации и конфиденциальности."; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = "В ваших пожертвованиях поддерживают серверы и службы, а также помогают нам предоставлять новые возможности и продолжать развитие."; +App::$strings["Donate"] = "Пожертвовать"; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = "Выберите проект, разработчика или общедоступный узел для поддержки в форме единоразового пожертвования"; +App::$strings["Donate Now"] = "Пожертвовать сейчас"; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = "или станьте спонсором проекта (только для Hubzilla)"; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = "Пожалуйста, если желаете, укажите ваше имя для отображения в списке спонсоров."; +App::$strings["Sponsor"] = "Спонсор"; +App::$strings["Special thanks to: "] = "Особые благодарности:"; +App::$strings["Currently blocked"] = "В настоящее время заблокирован"; +App::$strings["No channels currently blocked"] = "В настоящее время никакие каналы не блокируются"; +App::$strings["Remove"] = "Удалить"; +App::$strings["Superblock Settings"] = "Настройки Superblock"; +App::$strings["Block Completely"] = "Заблокировать полностью"; +App::$strings["superblock settings updated"] = "Настройки Superblock обновлены."; +App::$strings["XMPP settings updated."] = "Настройки XMPP обновлены."; +App::$strings["Enable Chat"] = "Включить чат"; +App::$strings["Individual credentials"] = "Индивидуальные разрешения"; +App::$strings["Jabber BOSH server"] = "Сервер Jabber BOSH"; +App::$strings["XMPP Settings"] = "Настройки XMPP"; +App::$strings["Save Settings"] = "Сохранить настройки"; +App::$strings["Jabber BOSH host"] = "Узел Jabber BOSH"; +App::$strings["Use central userbase"] = "Использовать центральную базу данных"; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Если включено, участники автоматически войдут на сервер ejabberd, который должен быть установлен на этом компьютере с синхронизированными учетными данными через скрипт \"auth_ejabberd.php\"."; +App::$strings["Settings updated."] = "Настройки обновлены."; +App::$strings["Send email to all members"] = "Отправить email всем участникам"; +App::$strings["%s Administrator"] = "администратор %s"; +App::$strings["%1\$d of %2\$d messages sent."] = "%1\$d из %2\$d сообщений отправлено."; +App::$strings["Send email to all hub members."] = "Отправить email всем участникам узла."; +App::$strings["Sender Email address"] = "Адрес электронной почты отправителя"; +App::$strings["Test mode (only send to hub administrator)"] = "Тестовый режим (отправка только администратору узла)"; +App::$strings["Report Bug"] = "Сообщить об ошибке"; +App::$strings["Post to Insanejournal"] = "Опубликовать в InsaneJournal"; +App::$strings["Enable InsaneJournal Post Plugin"] = "Включить плагин публикаций InsaneJournal"; +App::$strings["InsaneJournal username"] = "Имя пользователя InsaneJournal"; +App::$strings["InsaneJournal password"] = "Пароль InsaneJournal"; +App::$strings["Post to InsaneJournal by default"] = "Публиковать в InsaneJournal по умолчанию"; +App::$strings["InsaneJournal Post Settings"] = "Настройки публикаций в InsaneJournal"; +App::$strings["Insane Journal Settings saved."] = "Настройки InsaneJournal сохранены."; +App::$strings["Hubzilla Directory Stats"] = "Каталог статистики Hubzilla"; +App::$strings["Total Hubs"] = "Всего хабов"; +App::$strings["Hubzilla Hubs"] = "Хабы Hubzilla"; +App::$strings["Friendica Hubs"] = "Хабы Friendica"; +App::$strings["Diaspora Pods"] = "Стручки Diaspora"; +App::$strings["Hubzilla Channels"] = "Каналы Hubzilla"; +App::$strings["Friendica Channels"] = "Каналы Friendica"; +App::$strings["Diaspora Channels"] = "Каналы Diaspora"; +App::$strings["Aged 35 and above"] = "Возраст 35 и выше"; +App::$strings["Aged 34 and under"] = "Возраст 34 и ниже"; +App::$strings["Average Age"] = "Средний возраст"; +App::$strings["Known Chatrooms"] = "Известные чаты"; +App::$strings["Known Tags"] = "Известные теги"; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = "Обратите внимание, что статистика Diaspora и Friendica это только те, о которых ** этот каталог ** знает, а не все известные в сети. Это также относится и к чатам."; +App::$strings["Invalid game."] = "Недействительная игра"; +App::$strings["You are not a player in this game."] = "Вы не играете в эту игру."; +App::$strings["You must be a local channel to create a game."] = "Ваш канал должен быть локальным чтобы создать игру."; +App::$strings["You must select one opponent that is not yourself."] = "Вы должны выбрать противника который не является вами."; +App::$strings["Random color chosen."] = "Выбран случайный цвет."; +App::$strings["Error creating new game."] = "Ошибка создания новой игры."; +App::$strings["Requested channel is not available."] = "Запрошенный канал не доступен."; +App::$strings["You must select a local channel /chess/channelname"] = "Вы должны выбрать локальный канал /chess/channelname"; +App::$strings["You must be logged in to see this page."] = "Вы должны авторизоваться, чтобы увидеть эту страницу."; +App::$strings["Enable notifications"] = "Включить оповещения"; +App::$strings["Planets Settings updated."] = "Настройки Planets обновлены."; +App::$strings["Enable Planets Plugin"] = "Включить плагин Planets"; +App::$strings["Planets Settings"] = "Настройки Planets"; +App::$strings["Post to Libertree"] = "Опубликовать в Libertree"; +App::$strings["Enable Libertree Post Plugin"] = "Включить плагин публикаций Libertree"; +App::$strings["Libertree API token"] = "Токен Libertree API"; +App::$strings["Libertree site URL"] = "URL сайта Libertree"; +App::$strings["Post to Libertree by default"] = "Публиковать в Libertree по умолчанию"; +App::$strings["Libertree Post Settings"] = "Настройки публикаций в Libertree"; +App::$strings["Libertree Settings saved."] = "Настройки Libertree сохранены."; +App::$strings["Only authenticate automatically to sites of your friends"] = "Автоматически аутентифицироватся только на сайтах ваших друзей"; +App::$strings["By default you are automatically authenticated anywhere in the network"] = "По умолчанию вы автоматически аутентифицируетесь во всей сети"; +App::$strings["Authchoose Settings"] = "Настройки выбора аутентификации"; +App::$strings["Atuhchoose Settings updated."] = "Настройки выбора аутентификации обновлены."; +App::$strings["Logfile archive directory"] = "Каталог архивирования журнала"; +App::$strings["Directory to store rotated logs"] = "Каталог для хранения заархивированных журналов"; +App::$strings["Logfile size in bytes before rotating"] = "Размер файла журнала в байтах для архивирования"; +App::$strings["Number of logfiles to retain"] = "Количество сохраняемых файлов журналов"; +App::$strings["QR code"] = "QR-код"; +App::$strings["QR Generator"] = "Генератор QR-кодов"; +App::$strings["Enter some text"] = "Введите любой текст"; +App::$strings["text to include in all outgoing posts from this site"] = "текст, который будет добавлен во все исходящие публикации с этого сайта"; +App::$strings["file"] = "файл"; +App::$strings["Permission denied"] = "Доступ запрещен"; +App::$strings["Redmatrix File Storage Import"] = "Импорт файлового хранилища Redmatrix"; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = "Это позволит импортировать все ваши файлы в Redmatrix в этот канал."; +App::$strings["Redmatrix Server base URL"] = "Базовый URL сервера Redmatrix"; +App::$strings["Redmatrix Login Username"] = "Имя пользователя Redmatrix"; +App::$strings["Redmatrix Login Password"] = "Пароль Redmatrix"; +App::$strings["Deactivate the feature"] = "Деактивировать функцию"; +App::$strings["Hide the button and show the smilies directly."] = "Скрыть кнопку и сразу показывать смайлики."; +App::$strings["Smileybutton Settings"] = "Настройки кнопки смайликов"; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Этот плагин просматривает публикации для слов / текста, которые вы указываете ниже, и сворачивает любой контент, содержащий эти ключевые слова, поэтому он не отображается в неподходящее время, например, сексуальные инсинуации, которые могут быть неправильными в настройке работы. Например, мы рекомендуем отмечать любой контент, содержащий наготу, тегом #NSFW. Этот фильтр также способен реагировать на любое другое указанное вами слово / текст и может использоваться в качестве фильтра содержимого общего назначения."; +App::$strings["Enable Content filter"] = "Включить фильтрацию содержимого"; +App::$strings["Comma separated list of keywords to hide"] = "Список ключевых слов для скрытия, через запятую"; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = "слово, /регулярное_выражение/, lang=xx, lang!=xx"; +App::$strings["Not Safe For Work Settings"] = "Настройка \"Not Safe For Work\""; +App::$strings["General Purpose Content Filter"] = "Фильтр содержимого общего назначения"; +App::$strings["NSFW Settings saved."] = "Настройки NSFW сохранены."; +App::$strings["Possible adult content"] = "Возможно содержимое для взрослых"; +App::$strings["%s - view"] = "%s - просмотр"; +App::$strings["Flattr this!"] = ""; +App::$strings["Flattr widget settings updated."] = "Настройки виджета Flattr обновлены."; +App::$strings["Flattr user"] = "Пользователь Flattr"; +App::$strings["URL of the Thing to flattr"] = "URL ccылки на Flattr"; +App::$strings["If empty channel URL is used"] = "Если пусто, то используется URL канала"; +App::$strings["Title of the Thing to flattr"] = "Заголовок вещи на Flattr"; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = "Если пусто, то будет использовано \"Название канала Hubzilla\""; +App::$strings["Static or dynamic flattr button"] = "Статическая или динамическая кнопка Flattr"; +App::$strings["static"] = "статическая"; +App::$strings["dynamic"] = "динамическая"; +App::$strings["Alignment of the widget"] = "Выравнивание виджета"; +App::$strings["left"] = "слева"; +App::$strings["right"] = "справа"; +App::$strings["Enable Flattr widget"] = "Включить виджет Flattr"; +App::$strings["Flattr Widget Settings"] = "Настройки виджета Flattr"; +App::$strings["Permission denied."] = "Доступ запрещен."; +App::$strings["You are now authenticated to pumpio."] = "Вы аутентифицированы в Pump.io"; +App::$strings["return to the featured settings page"] = "Вернутся к странице настроек"; +App::$strings["Post to Pump.io"] = "Опубликовать в Pump.io"; +App::$strings["Pump.io servername"] = "Имя сервера Pump.io"; +App::$strings["Without \"http://\" or \"https://\""] = "Без \"http://\" или \"https://\""; +App::$strings["Pump.io username"] = "Имя пользователя Pump.io"; +App::$strings["Without the servername"] = "без имени сервера"; +App::$strings["You are not authenticated to pumpio"] = "Вы не аутентифицированы на Pump.io"; +App::$strings["(Re-)Authenticate your pump.io connection"] = "Аутентифицировать (повторно) ваше соединение с Pump.io"; +App::$strings["Enable pump.io Post Plugin"] = "Включить плагин публикаций Pump.io"; +App::$strings["Post to pump.io by default"] = "Публиковать в Pump.io по умолчанию"; +App::$strings["Should posts be public"] = "Публикации должны быть общедоступными"; +App::$strings["Mirror all public posts"] = "Отображать все общедоступные публикации"; +App::$strings["Pump.io Post Settings"] = "Настройки публикаций в Pump.io"; +App::$strings["PumpIO Settings saved."] = "Настройки публикаций в Pump.io сохранены."; +App::$strings["Save Bookmarks"] = "Сохранить закладки"; +App::$strings["Status:"] = "Статус:"; +App::$strings["Activate addon"] = "Активировать расширение"; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = "Скрыть виджет чата Jappixmini из веб-интерфейса"; +App::$strings["Jabber username"] = "Имя пользователя Jabber"; +App::$strings["Jabber server"] = "Сервер Jabber"; +App::$strings["Jabber BOSH host URL"] = "URL узла Jabber BOSH"; +App::$strings["Jabber password"] = "Пароль Jabber"; +App::$strings["Encrypt Jabber password with Hubzilla password"] = "Зашифровать пароль Jabber с помощью пароля Hubzilla"; +App::$strings["Recommended"] = "рекомендовано"; +App::$strings["Hubzilla password"] = "Пароль Hubzilla"; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = "Утверждать запросы на подписку от контактов Hubzilla автоматически"; +App::$strings["Purge internal list of jabber addresses of contacts"] = "Очистить внутренний список адресов контактов Jabber"; +App::$strings["Configuration Help"] = "Помощь по конфигурации"; +App::$strings["Add Contact"] = "Добавить контакт"; +App::$strings["Jappix Mini Settings"] = "Настройки Jappix Mini"; +App::$strings["Post to LiveJournal"] = "Опубликовать в LiveJournal"; +App::$strings["Enable LiveJournal Post Plugin"] = "Включить плагин публикаций LiveJournal"; +App::$strings["LiveJournal username"] = "Имя пользователя LiveJournal"; +App::$strings["LiveJournal password"] = "Пароль LiveJournal"; +App::$strings["Post to LiveJournal by default"] = "Публиковать в LiveJournal по умолчанию"; +App::$strings["LiveJournal Post Settings"] = "Настройки публикаций в LiveJournal"; +App::$strings["LiveJournal Settings saved."] = "Настройки LiveJournal сохранены."; +App::$strings["Errors encountered deleting database table "] = "Возникшие при удалении таблицы базы данных ошибки"; +App::$strings["Submit Settings"] = "Отправить настройки"; +App::$strings["Drop tables when uninstalling?"] = "Удалить таблицы при деинсталляции?"; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = "Если включено, то таблицы базы данных Rendezvous будут удалены при удалении плагина."; +App::$strings["Mapbox Access Token"] = "Токен доступа к Mapbox"; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = "Если вы введете токен доступа к Mapbox, он будет использоваться для извлечения фрагментов карты из Mapbox вместо стандартного сервера OpenStreetMap."; +App::$strings["Rendezvous"] = ""; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = "Этот идентификатор был удалён другим участником из-за неактивности. Пожалуйста нажмите кнопку \"Новый идентификатор\" для обновления страницы и получения нового идентификатора. Вы можете использовать то же имя."; +App::$strings["Welcome to Rendezvous!"] = "Добро пожаловать в Rendezvous!"; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = "Введите ваше имя для вступления в это Rendezvous. Для того, чтобы делиться вашим положением с другими участниками, нажмите \"GPS control\". Когда ваше местоположение определно, красная точка появится и остальные смогут увидеть вас на карте."; +App::$strings["Let's meet here"] = "Давайте встретимся здесь"; +App::$strings["Name"] = "Имя"; +App::$strings["Description"] = "Описание"; +App::$strings["New marker"] = "Новый маркер"; +App::$strings["Edit marker"] = "Редактировать маркер"; +App::$strings["New identity"] = "Новый идентификатор"; +App::$strings["Delete marker"] = "Удалить маркер"; +App::$strings["Delete member"] = "Удалить участника"; +App::$strings["Edit proximity alert"] = "Изменить оповещение о близости"; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = "Оповещение о близости будет произведено, если этот участник находится на определённом расстоянии от вас.

Введите радиус в метрах (0 для отключения):"; +App::$strings["distance"] = "расстояние"; +App::$strings["Proximity alert distance (meters)"] = "Расстояние для уведомления о близости (метров)"; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = "Оповещение о близости будет произведено, если вы находитесь на определённом расстоянии местоположения маркера.

Введите радиус в метрах (0 для отключения):"; +App::$strings["Marker proximity alert"] = "Маркер уведомления о близости"; +App::$strings["Reminder note"] = "Напоминание"; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = "Введите сообщение для отображения когда вы находитесь рядом"; +App::$strings["Add new rendezvous"] = "Добавить новое Rendezvous."; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = "Создайте новое Rendezvous и поделитесь ссылкой доступа с теми, кого вы хотите пригласить в группу. Тот, кто откроет эту ссылку, станет её участником. Участники могут видеть местоположение, добавлять маркеры на карту или делится своим собственным местоположением с группой."; +App::$strings["You have no rendezvous. Press the button above to create a rendezvous!"] = "У вас нет Rendezvous. Нажмите на кнопку ниже чтобы создать его!"; +App::$strings["Errors encountered creating database tables."] = "При создании базы данных возникли ошибки."; +App::$strings["View Larger"] = "Увеличить"; +App::$strings["Tile Server URL"] = "URL сервера Tile"; +App::$strings["A list of public tile servers"] = "Список общедоступных серверов"; +App::$strings["Nominatim (reverse geocoding) Server URL"] = "URL сервера Nominatim (обратное геокодирование)"; +App::$strings["A list of Nominatim servers"] = "Список серверов Nominatim"; +App::$strings["Default zoom"] = "Масштаб по умолчанию"; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = "Уровень размера по умолчанию (1 - весь мир, 18 - максимальный; зависит от сервера)."; +App::$strings["Include marker on map"] = "Включите маркер на карте"; +App::$strings["Include a marker on the map."] = "Включить маркер на карте"; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Мы столкнулись с проблемой входа с предоставленным вами OpenID. Пожалуйста, проверьте корректность его написания."; +App::$strings["The error message was:"] = "Сообщение об ошибке было:"; +App::$strings["OpenID protocol error. No ID returned."] = "Ошибка протокола OpenID. Идентификатор не возвращён."; +App::$strings["Welcome %s. Remote authentication successful."] = "Добро пожаловать %s. Удаленная аутентификация успешно завершена."; +App::$strings["Login failed."] = "Не удалось войти."; +App::$strings["First Name"] = "Имя"; +App::$strings["Last Name"] = "Фамилия"; +App::$strings["Nickname"] = "Псевдоним"; +App::$strings["Full Name"] = "Полное имя"; +App::$strings["Email"] = "Электронная почта"; +App::$strings["Profile Photo"] = "Фотография профиля"; +App::$strings["Profile Photo 16px"] = "Фотография профиля 16px"; +App::$strings["Profile Photo 32px"] = "Фотография профиля 32px"; +App::$strings["Profile Photo 48px"] = "Фотография профиля 48px"; +App::$strings["Profile Photo 64px"] = "Фотография профиля 64px"; +App::$strings["Profile Photo 80px"] = "Фотография профиля 80px"; +App::$strings["Profile Photo 128px"] = "Фотография профиля 128px"; +App::$strings["Timezone"] = "Часовой пояс"; +App::$strings["Homepage URL"] = "URL домашней страницы"; +App::$strings["Language"] = "Язык"; +App::$strings["Birth Year"] = "Год рождения"; +App::$strings["Birth Month"] = "Месяц рождения"; +App::$strings["Birth Day"] = "День рождения"; +App::$strings["Birthdate"] = "Дата рождения"; +App::$strings["Gender"] = "Гендер"; +App::$strings["Male"] = "Мужчина"; +App::$strings["Female"] = "Женщина"; +App::$strings["Your Webbie:"] = "Ваш Webbie:"; +App::$strings["Fontsize (px):"] = "Размер шрифта (px):"; +App::$strings["Link:"] = "Ссылка:"; +App::$strings["Like us on Hubzilla"] = "Нравится на Hubzilla"; +App::$strings["Embed:"] = "Встроить:"; +App::$strings["Extended Identity Sharing"] = "Расширенный обмен идентификацией"; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Поделиться вашим идентификатором на всех веб-сайтах в Интернет. Если выключено, то идентификатор доступен только для сайтов \$Projectname."; +App::$strings["An account has been created for you."] = "Учётная запись, которая была для вас создана."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Аутентификация выполнена успешно, но отклонена: создание учетной записи отключено."; +App::$strings["Post to Twitter"] = "Опубликовать в Twitter"; +App::$strings["Twitter settings updated."] = "Настройки Twitter обновлены"; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Не найдено пары ключей для Twitter. Пожалуйста, свяжитесь с администратором сайта."; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "В этой установке Hubzilla плагин Twitter был включён, однако пока он не подключён к вашему аккаунту в Twitter. Для этого нажмите на кнопку ниже для получения PIN-кода от Twitter который нужно скопировать в поле ввода и отправить форму. Только ваши общедоступные публикации будут опубликованы в Twitter."; +App::$strings["Log in with Twitter"] = "Войти в Twitter"; +App::$strings["Copy the PIN from Twitter here"] = "Скопируйте PIN-код из Twitter здесь"; +App::$strings["Currently connected to: "] = "В настоящее время подключён к:"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в Twitter, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; +App::$strings["Allow posting to Twitter"] = "Разрешить публиковать в Twitter"; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter"; +App::$strings["Twitter post length"] = "Длина публикации Twitter"; +App::$strings["Maximum tweet length"] = "Максимальная длина твита"; +App::$strings["Send public postings to Twitter by default"] = "Отправлять общедоступные публикации в Twitter по умолчанию"; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи Twitter по умолчанию"; +App::$strings["Clear OAuth configuration"] = "Очистить конфигурацию OAuth"; +App::$strings["Twitter Post Settings"] = "Настройки публикаций в Twitter"; +App::$strings["Consumer Key"] = "Ключ клиента"; +App::$strings["Consumer Secret"] = "Код клиента"; +App::$strings["Flag Adult Photos"] = "Пометка фотографий для взрослых"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Предоставьте возможность редактирования фотографий, чтобы скрыть неприемлемые фотографии из альбома по умолчанию"; +App::$strings["Unknown"] = "Неизвестный"; +App::$strings["ActivityPub"] = ""; App::$strings["photo"] = "фото"; -App::$strings["event"] = "мероприятие"; -App::$strings["channel"] = "канал"; App::$strings["status"] = "статус"; -App::$strings["comment"] = "комментарий"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %2\$s's %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s's %3\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь соединен с %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s подпихнул %2\$s"; -App::$strings["poked"] = "подпихнул"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = ""; -App::$strings["Select"] = "Выбрать"; -App::$strings["Delete"] = "Удалить"; -App::$strings["Private Message"] = "Личное сообщение"; -App::$strings["Message is verified"] = "Сообщение проверено"; -App::$strings["View %s's profile @ %s"] = "Просмотр %s's профиля @ %s"; -App::$strings["Categories:"] = "Категории:"; -App::$strings["Filed under:"] = "Хранить под:"; -App::$strings[" from %s"] = " от %s"; -App::$strings["last edited: %s"] = ""; -App::$strings["Expires: %s"] = ""; -App::$strings["View in context"] = "Показать в контексте"; -App::$strings["Please wait"] = "Подождите пожалуйста"; -App::$strings["remove"] = "удалить"; -App::$strings["Loading..."] = "Загрузка..."; -App::$strings["Delete Selected Items"] = "Удалить выбранные элементы"; -App::$strings["View Source"] = "Просмотр источника"; -App::$strings["Follow Thread"] = "Следовать теме"; -App::$strings["View Status"] = "Просмотр состояния"; -App::$strings["View Profile"] = "Просмотр профиля"; -App::$strings["View Photos"] = "Просмотр фотографий"; -App::$strings["Matrix Activity"] = "Активность матрицы"; -App::$strings["Edit Contact"] = "Редактировать контакт"; -App::$strings["Send PM"] = "Отправить личное сообщение"; -App::$strings["Poke"] = "Подпихнуть"; -App::$strings["%s likes this."] = "%s нравится это."; -App::$strings["%s doesn't like this."] = "%s не нравится это."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d чел. нравится это.", - 1 => "%2\$d чел. нравится это.", - 2 => "%2\$d чел. нравится это.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "", - 2 => "%2\$d чел. не нравится это.", -); -App::$strings["and"] = "и"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "", - 2 => ", и %d другие люди", -); -App::$strings["%s like this."] = "%s нравится это."; -App::$strings["%s don't like this."] = "%s не нравится это."; -App::$strings["Visible to everybody"] = "Видно для всех"; -App::$strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:"; -App::$strings["Please enter a video link/URL:"] = "Пожалуйста, введите URL видео-ссылки:"; -App::$strings["Please enter an audio link/URL:"] = "Пожалуйста, введите URL аудио-ссылки:"; -App::$strings["Tag term:"] = "Теги:"; -App::$strings["Save to Folder:"] = "Сохранить в папку:"; -App::$strings["Where are you right now?"] = "Где вы сейчас?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = ""; -App::$strings["Preview"] = "Предварительный просмотр"; -App::$strings["Share"] = "Поделиться"; -App::$strings["Page link title"] = "Ссылка заголовока страницы"; -App::$strings["Post as"] = ""; -App::$strings["Upload photo"] = "Загрузить фотографию"; -App::$strings["upload photo"] = "загрузить фотографию"; -App::$strings["Attach file"] = "Прикрепить файл"; -App::$strings["attach file"] = "прикрепить файл"; -App::$strings["Insert web link"] = "Вставить веб-ссылку"; -App::$strings["web link"] = "веб-ссылка"; -App::$strings["Insert video link"] = "Вставить видео-ссылку"; -App::$strings["video link"] = "видео-ссылка"; -App::$strings["Insert audio link"] = "Вставить аудио-ссылку"; -App::$strings["audio link"] = "аудио-ссылка"; -App::$strings["Set your location"] = "Указание своего расположения"; -App::$strings["set location"] = "указание расположения"; -App::$strings["Clear browser location"] = "Стереть указание расположения"; -App::$strings["clear location"] = "стереть указание расположения"; -App::$strings["Set title"] = "Заголовок"; -App::$strings["Categories (comma-separated list)"] = "Категории (список через запятую)"; -App::$strings["Permission settings"] = "Настройки разрешений"; -App::$strings["permissions"] = "разрешения"; -App::$strings["Public post"] = "Публичное сообщение"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com"; -App::$strings["Set expiration date"] = ""; -App::$strings["Encrypt text"] = ""; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Отменить"; -App::$strings["Discover"] = "Обнаруженные"; -App::$strings["Imported public streams"] = ""; -App::$strings["Commented Order"] = "По комментариям"; -App::$strings["Sort by Comment Date"] = "Сортировка по дате создания комментариев"; -App::$strings["Posted Order"] = "По добавлениям"; -App::$strings["Sort by Post Date"] = "Сортировка по дате создания сообщения"; -App::$strings["Personal"] = "Личные"; -App::$strings["Posts that mention or involve you"] = "Сообщения, в которых упоминули или вовлекли вас"; -App::$strings["New"] = "Новые"; -App::$strings["Activity Stream - by date"] = "Лента активности - по дате"; -App::$strings["Starred"] = "Помеченные"; -App::$strings["Favourite Posts"] = "Фаворит-сообщения"; -App::$strings["Spam"] = "Спам"; -App::$strings["Posts flagged as SPAM"] = "Как СПАМ помеченные сообщения"; -App::$strings["Channel"] = "Канал"; -App::$strings["Status Messages and Posts"] = ""; -App::$strings["About"] = "О себе"; -App::$strings["Profile Details"] = "Сведения о профиле"; -App::$strings["Photos"] = "Фотографии"; -App::$strings["Photo Albums"] = "Фотоальбомы"; -App::$strings["Files"] = "Файлы"; -App::$strings["Files and Storage"] = ""; -App::$strings["Chatrooms"] = "Чаты"; -App::$strings["Bookmarks"] = "Закладки"; -App::$strings["Saved Bookmarks"] = "Сохранённые закладки"; -App::$strings["Webpages"] = "Веб-страницы"; -App::$strings["Manage Webpages"] = "Управление веб-страниц"; -App::$strings["New Page"] = "Новая страница"; -App::$strings["Edit"] = "Редактировать"; -App::$strings["View"] = "Просмотр"; -App::$strings["Actions"] = ""; -App::$strings["Page Link"] = "Ссылка страницы"; -App::$strings["Title"] = "Заголовок"; -App::$strings["Created"] = "Создано"; -App::$strings["Edited"] = "Отредактирован"; -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."] = ""; -App::$strings["Not a valid email address"] = "Не действительный адрес электронной почты"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %2\$s %3\$s"; +App::$strings["ActivityPub Protocol Settings updated."] = "Настройки протокола ActivityPub обновлены."; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Протокол ActivityPub не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала. "; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Включить протокол ActivityPub для этого канала"; +App::$strings["Deliver to ActivityPub recipients in privacy groups"] = "Доставить получателям ActivityPub в группах безопасности"; +App::$strings["May result in a large number of mentions and expose all the members of your privacy group"] = "Может привести к большому количеству упоминаний и раскрытию участников группы безопасности"; +App::$strings["Send multi-media HTML articles"] = "Отправить HTML статьи с мультимедиа"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Не поддерживается некоторыми микроблогами, например Mastodon"; +App::$strings["ActivityPub Protocol Settings"] = "Настройки протокола ActivityPub"; +App::$strings["No username found in import file."] = "Имя пользователя не найдено в файле для импорта."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Не удалось создать уникальный адрес канала. Импорт не завершен."; +App::$strings["Import completed."] = "Импорт завершен."; +App::$strings["\$projectname"] = ""; +App::$strings["Diaspora Protocol Settings updated."] = "Настройки протокола Diaspora обновлены."; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Прокол Diaspora не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала."; +App::$strings["Enable the Diaspora protocol for this channel"] = "Включить протокол Diaspora для этого канала"; +App::$strings["Allow any Diaspora member to comment on your public posts"] = "Разрешить любому участнику Diaspora комментировать ваши общедоступные публикации"; +App::$strings["Prevent your hashtags from being redirected to other sites"] = "Предотвратить перенаправление тегов на другие сайты"; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = "Подписывать и отправлять публикации и комментарии с несуществующей подписью Diaspora"; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Отслеживаемые теги (через запятую, исключая #)"; +App::$strings["Diaspora Protocol Settings"] = "Настройки протокола Diaspora"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s посещает %2\$s%3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s не посещает %2\$s%3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s может посетить %2\$s%3\$s"; +App::$strings["System defaults:"] = "Системные по умолчанию:"; +App::$strings["Preferred Clipart IDs"] = "Предпочитаемый Clipart ID"; +App::$strings["List of preferred clipart ids. These will be shown first."] = "Список предпочитаемых Clipart ID. Эти будут показаны первыми."; +App::$strings["Default Search Term"] = "Условие поиска по умолчанию"; +App::$strings["The default search term. These will be shown second."] = "Условие поиска по умолчанию. Показываются во вторую очередь."; +App::$strings["Return After"] = "Вернуться после"; +App::$strings["Page to load after image selection."] = "Страница для загрузки после выбора изображения."; +App::$strings["View Profile"] = "Просмотреть профиль"; +App::$strings["Edit Profile"] = "Редактировать профиль"; +App::$strings["Profile List"] = "Список профилей"; +App::$strings["Order of Preferred"] = "Порядок предпочтения"; +App::$strings["Sort order of preferred clipart ids."] = "Порядок сортировки предпочитаемых Clipart ID. "; +App::$strings["Newest first"] = "Новое первым"; +App::$strings["As entered"] = "По мере ввода"; +App::$strings["Order of other"] = "Порядок других"; +App::$strings["Sort order of other clipart ids."] = "Порядок сортировки остальных Clipart ID."; +App::$strings["Most downloaded first"] = "Самое загружаемое первым"; +App::$strings["Most liked first"] = "Самое нравящееся первым"; +App::$strings["Preferred IDs Message"] = "Сообщение от предпочитаемых ID"; +App::$strings["Message to display above preferred results."] = "Отображаемое сообщение над предпочитаемыми результатами."; +App::$strings["Uploaded by: "] = "Загружено:"; +App::$strings["Drawn by: "] = "Нарисовано:"; +App::$strings["Use this image"] = "Использовать это изображение"; +App::$strings["Or select from a free OpenClipart.org image:"] = "Или выберите из бесплатных изображений на OpenClipart.org"; +App::$strings["Search Term"] = "Условие поиска"; +App::$strings["Unknown error. Please try again later."] = "Неизвестная ошибка. Пожалуйста, повторите попытку позже."; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Если новая фотография не отображается немедленно то нажмите Shift + \"Обновить\" для очистки кэша браузера"; +App::$strings["Profile photo updated successfully."] = "Фотография профиля обновлена успешно."; +App::$strings["Edit your profile and change settings."] = "Отредактировать ваш профиль и изменить настройки."; +App::$strings["Click here to see activity from your connections."] = "Нажмите сюда для отображения активности ваши контактов."; +App::$strings["Click here to see your channel home."] = "Нажмите сюда чтобы увидеть главную страницу вашего канала."; +App::$strings["You can access your private messages from here."] = "Вы можете получить доступ с личной переписке здесь."; +App::$strings["Create new events here."] = "Создать новое событие здесь."; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Вы можете подключать новые контакты и менять разрешения для существующих здесь. Также вы можете создавать их группы."; +App::$strings["System notifications will arrive here"] = "Системные оповещения будут показываться здесь"; +App::$strings["Search for content and users"] = "Поиск пользователей и содержимого"; +App::$strings["Browse for new contacts"] = "Поиск новых контактов"; +App::$strings["Launch installed apps"] = "Запустить установленные приложения"; +App::$strings["Looking for help? Click here."] = "Нужна помощь? Нажмите сюда."; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = "Новые события произошли в вашей сети. Нажмите здесь для того, чтобы знать что случилось!"; +App::$strings["You have received a new private message. Click here to see from who!"] = "Вы получили новое личное сообщение. Нажмите чтобы увидеть от кого!"; +App::$strings["There are events this week. Click here too see which!"] = "На этой неделе есть события. Нажмите здесь чтобы увидеть какие!"; +App::$strings["You have received a new introduction. Click here to see who!"] = "Вы были представлены. Нажмите чтобы увидеть кому!"; +App::$strings["There is a new system notification. Click here to see what has happened!"] = "Это новое системное уведомление. Нажмите чтобы посмотреть что случилось!"; +App::$strings["Click here to share text, images, videos and sound."] = "Нажмите сюда чтобы поделиться текстом, изображениями, видео или треком."; +App::$strings["You can write an optional title for your update (good for long posts)."] = "Вы можете написать необязательный заголовок для вашей публикации (желательно для больших постов)."; +App::$strings["Entering some categories here makes it easier to find your post later."] = "Введите категории здесь чтобы было проще найти вашу публикацию позднее."; +App::$strings["Share photos, links, location, etc."] = "Поделиться фотографией, ссылками, местоположение и т.п."; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = "Хотите только поделиться временным содержимым? Установите срок его действия."; +App::$strings["You can password protect content."] = "Вы можете защитить содержимое паролем."; +App::$strings["Choose who you share with."] = "Выбрать с кем поделиться."; +App::$strings["Click here when you are done."] = "Нажмите здесь когда закончите."; +App::$strings["Adjust from which channels posts should be displayed."] = "Настройте из каких каналов должны отображаться публикации."; +App::$strings["Only show posts from channels in the specified privacy group."] = "Показывать только публикации из определённой группы безопасности."; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = "Лёгкий поиск сообщения, содержащего теги (ключевые слова, которым предшествует символ #)."; +App::$strings["Easily find posts in given category."] = "Лёгкий поиск публикаций в данной категории."; +App::$strings["Easily find posts by date."] = "Лёгкий поиск публикаций по дате."; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = "Рекомендуемые пользователи, которые были представлены в качестве предложений, и которые, по нашему мнению, могут оказаться интересными."; +App::$strings["Here you see channels you have connected to."] = "Здесь вы видите каналы, к которым вы подключились."; +App::$strings["Save your search so you can repeat it at a later date."] = "Сохраните ваш поиск с тем, чтобы повторить его позже."; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = "Если вы видите этот значок, вы можете быть уверены, что отправитель - это тот, кто это говорит. Это нормально, что не всегда можно проверить отправителя, поэтому значок иногда будет отсутствовать. Обычно об этом не нужно беспокоиться."; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Опасность! Кажется, кто-то пытался подделать сообщение! Это сообщение не обязательно от того, от кого оно значится!"; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Добро пожаловать в Hubzilla! Желаете получить обзор пользовательского интерфейса?

Вы можете его приостановаить и в любое время перезагрузив страницу или перейдя на другую.

Также вы можете нажать клавишу \"Назад\""; +App::$strings["Some setting"] = "Некоторые настройки"; +App::$strings["A setting"] = "Настройка"; +App::$strings["Skeleton Settings"] = "Настройки скелета"; +App::$strings["Show Upload Limits"] = "Показать ограничения на загрузку"; +App::$strings["Hubzilla configured maximum size: "] = "Максимальный размер настроенный в Hubzilla:"; +App::$strings["PHP upload_max_filesize: "] = ""; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; +App::$strings["GNU-Social Protocol Settings updated."] = "Настройки протокола GNU Social обновлены."; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Прокол GNU Social не поддерживает независимость от расположения. Ваши контакты установленные в этой сети могут быть недоступны из альтернативных мест размещения канала."; +App::$strings["Enable the GNU-Social protocol for this channel"] = "Включить протокол GNU Social для этого канала"; +App::$strings["GNU-Social Protocol Settings"] = "Настройки протокола GNU Social"; +App::$strings["Follow"] = "Отслеживать"; +App::$strings["%1\$s is now following %2\$s"] = "%1\$s сейчас отслеживает %2\$s"; +App::$strings["Gallery"] = "Галерея"; +App::$strings["Photo Gallery"] = "Фотогалерея"; +App::$strings["Page to load after login"] = "Страница для загрузки после входа"; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = "Примеры: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (оставьте пустым для для страницы сети по умолчанию)."; +App::$strings["Startpage Settings"] = "Настройки стартовой страницы"; +App::$strings["Message to display on every page on this server"] = "Отображаемое сообщение на каждой странице на этом сервере."; +App::$strings["Pageheader Settings"] = "Настройки шапки страницы"; +App::$strings["pageheader Settings saved."] = "Настройки шапки страницы сохранены."; +App::$strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe в трёх измерениях"; +App::$strings["3D Tic-Tac-Toe"] = ""; +App::$strings["New game"] = "Новая игра"; +App::$strings["New game with handicap"] = "Новая игра с форой"; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Трехмерный Tic-Tac-Toe похож на традиционную игру, за исключением того, что игра идёт на нескольких уровнях одновременно."; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "Имеется три уровня. Вы выигрываете, получая три подряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях."; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Игра с форой отключает центральную позицию на среднем уровне, потому что игрок, претендующий на этот квадрат, часто имеет несправедливое преимущество."; +App::$strings["You go first..."] = "Вы начинаете..."; +App::$strings["I'm going first this time..."] = "На этот раз начинаю я..."; +App::$strings["You won!"] = "Вы выиграли!"; +App::$strings["\"Cat\" game!"] = "Ничья!"; +App::$strings["I won!"] = "Я выиграл!"; +App::$strings["Fuzzloc Settings updated."] = "Настройки Fuzzloc обновлены."; +App::$strings["Fuzzloc allows you to blur your precise location if your channel uses browser location mapping."] = "Fuzzloc позволяет размыть ваше точное местоположение, если ваш канал использует сопоставление местоположений браузера."; +App::$strings["Enable Fuzzloc Plugin"] = "Включить плагин Fuzzloc"; +App::$strings["Minimum offset in meters"] = "Минимальное смещение в метрах"; +App::$strings["Maximum offset in meters"] = "Максимальное смещение в метрах"; +App::$strings["Fuzzloc Settings"] = "Настройки Fuzzloc"; +App::$strings["Post to Friendica"] = "Опубликовать в Friendica"; +App::$strings["rtof Settings saved."] = "Настройки rtof сохранены."; +App::$strings["Allow posting to Friendica"] = "Разрешить публиковать в Friendica"; +App::$strings["Send public postings to Friendica by default"] = "Отправлять общедоступные публикации во Friendica по умолчанию"; +App::$strings["Friendica API Path"] = "Путь к Friendica API"; +App::$strings["https://{sitename}/api"] = ""; +App::$strings["Friendica login name"] = "Имя входа Friendica"; +App::$strings["Friendica password"] = "Пароль Friendica"; +App::$strings["Hubzilla to Friendica Post Settings"] = "Настройки публикаций Hubzilla для Friendica"; +App::$strings["Post to GNU social"] = "Опубликовать в GNU Social"; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = "Пожалуйста свяжитесь с администратором сайта.
Предоставленный URL API недействителен."; +App::$strings["We could not contact the GNU social API with the Path you entered."] = "Нам не удалось установить контакт с GNU Social API по введённому вами пути"; +App::$strings["GNU social settings updated."] = "Настройки GNU Social обновлены."; +App::$strings["Globally Available GNU social OAuthKeys"] = "Глобально доступные ключи OAuthKeys GNU Social"; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные.
Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."; +App::$strings["Provide your own OAuth Credentials"] = "Предоставьте ваши собственные регистрационные данные OAuth"; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API.
Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social."; +App::$strings["OAuth Consumer Key"] = "Ключ клиента OAuth"; +App::$strings["OAuth Consumer Secret"] = "Пароль клиента OAuth"; +App::$strings["Base API Path"] = "Основной путь к API"; +App::$strings["Remember the trailing /"] = "Запомнить закрывающий /"; +App::$strings["GNU social application name"] = "Имя приложения GNU social"; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = "Чтобы подключиться к вашей учетной записи GNU social нажмите кнопку ниже для получения кода безопасности из GNU social, который вы должны скопировать в поле ввода ниже и отправить форму. Только ваши общедоступные сообщения будут опубликованы в GNU social."; +App::$strings["Log in with GNU social"] = "Войти с GNU social"; +App::$strings["Copy the security code from GNU social here"] = "Скопируйте код безопасности GNU social здесь"; +App::$strings["Cancel Connection Process"] = "Отменить процесс подключения"; +App::$strings["Current GNU social API is"] = "Текущий GNU social API"; +App::$strings["Cancel GNU social Connection"] = "Отменить подключение с GNU social"; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Замечание: Из-за настроек конфиденциальности (скрыть данные своего профиля от неизвестных зрителей?) cсылка, потенциально включенная в общедоступные публикации, переданные в GNU social, приведет посетителя к пустой странице, информирующей его о том, что доступ к вашему профилю был ограничен."; +App::$strings["Allow posting to GNU social"] = "Разрешить публиковать в GNU social"; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social"; +App::$strings["Post to GNU social by default"] = "Публиковать в GNU social по умолчанию"; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Если включено, ваши общедоступные публикации будут опубликованы в связанной учётной записи GNU social по умолчанию"; +App::$strings["GNU social Post Settings"] = "Настройки публикаций GNU social"; +App::$strings["Site name"] = "Название сайта"; +App::$strings["API URL"] = ""; +App::$strings["Application name"] = "Название приложения"; +App::$strings["Enable Rainbowtag"] = "Включить Rainbowtag"; +App::$strings["Rainbowtag Settings"] = "Настройки Rainbowtag"; +App::$strings["Rainbowtag Settings saved."] = "Настройки Rainbowtag сохранены."; +App::$strings["Friendica Photo Album Import"] = "Импортировать альбом фотографий Friendica"; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = "Это позволит импортировать все ваши альбомы фотографий Friendica в этот канал."; +App::$strings["Friendica Server base URL"] = "Базовый URL сервера Friendica"; +App::$strings["Friendica Login Username"] = "Имя пользователя для входа Friendica"; +App::$strings["Friendica Login Password"] = "Пароль для входа Firendica"; +App::$strings["This website is tracked using the Piwik analytics tool."] = "Этот сайт отслеживается с помощью инструментов аналитики Piwik."; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Если вы не хотите, чтобы ваши визиты регистрировались таким образом, вы можете отключить cookie с тем, чтобы Piwik не отслеживал дальнейшие посещения сайта."; +App::$strings["Piwik Base URL"] = "Базовый URL Piwik"; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Абсолютный путь к вашей установке Piwik (без типа протокола, с начальным слэшем)"; +App::$strings["Site ID"] = "ID сайта"; +App::$strings["Show opt-out cookie link?"] = "Показывать ссылку на отказ от использования cookies?"; +App::$strings["Asynchronous tracking"] = "Асинхронное отслеживание"; +App::$strings["Enable frontend JavaScript error tracking"] = "Включить отслеживание ошибок JavaScript на фронтенде."; +App::$strings["This feature requires Piwik >= 2.2.0"] = "Эта функция требует версию Piwik >= 2.2.0"; +App::$strings["Photos imported"] = "Фотографии импортированы"; +App::$strings["Redmatrix Photo Album Import"] = "Импортировать альбом фотографий Redmatrix"; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = "Это позволит импортировать все ваши альбомы фотографий Redmatrix в этот канал."; +App::$strings["Import just this album"] = "Импортировать только этот альбом"; +App::$strings["Leave blank to import all albums"] = "Оставьте пустым для импорта всех альбомов"; +App::$strings["Maximum count to import"] = "Максимальное количество для импорта"; +App::$strings["0 or blank to import all available"] = "0 или пусто для импорта всех доступных"; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Искать %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = ""; +App::$strings["\$Projectname"] = ""; +App::$strings["Search \$Projectname"] = "Поиск \$Projectname"; +App::$strings["Recent Channel/Profile Viewers"] = "Последние просмотры канала / профиля"; +App::$strings["This plugin/addon has not been configured."] = "Это расширение не было настроено."; +App::$strings["Please visit the Visage settings on %s"] = "Пожалуйста, посетите настройки Visage на %s"; +App::$strings["your feature settings page"] = "страница ваших установочных параметров"; +App::$strings["No entries."] = "Нет записей."; +App::$strings["Enable Visage Visitor Logging"] = "Включить журналирование посетителей Visage"; +App::$strings["Visage Settings"] = "Настройки Visage"; +App::$strings["Error: order mismatch. Please try again."] = "Ошибка: несоответствие заказа. Пожалуйста, попробуйте ещё раз"; +App::$strings["Manual payments are not enabled."] = "Ручные платежи не подключены."; +App::$strings["Order not found."] = "Заказ не найден."; +App::$strings["Finished"] = "Завершено"; +App::$strings["Invalid channel"] = "Недействительный канал"; +App::$strings["[cart] Item Added"] = "[cart] Элемент добавлен"; +App::$strings["Order already checked out."] = "Заказ уже проверен."; +App::$strings["Enable Shopping Cart"] = "Включить корзину"; +App::$strings["Enable Test Catalog"] = "Включить тестовый каталог"; +App::$strings["Enable Manual Payments"] = "Включить ручные платежи"; +App::$strings["Base Merchant Currency"] = "Основная торговая валюта"; +App::$strings["Cart - Base Settings"] = "Корзина - Основные настройки"; +App::$strings["Shop"] = "Магазин"; +App::$strings["Profile Unavailable."] = "Профиль недоступен."; +App::$strings["Order Not Found"] = "Заказ не найден"; +App::$strings["You must be logged into the Grid to shop."] = "Вы должны быть в сети для доступа к магазину"; +App::$strings["Cart Not Enabled (profile: "] = "Корзина не подключена (профиль:"; +App::$strings["Access denied."] = "Доступ запрещён."; +App::$strings["No Order Found"] = "Нет найденных заказов"; +App::$strings["An unknown error has occurred Please start again."] = "Произошла неизвестная ошибка. Пожалуйста, начните снова."; +App::$strings["Invalid Payment Type. Please start again."] = "Недействительный тип платежа. Пожалуйста, начните снова."; +App::$strings["Order not found"] = "Заказ не найден"; +App::$strings["Enable Hubzilla Services Module"] = "Включить модуль сервиса Hubzilla"; +App::$strings["Cart - Hubzilla Services Addon"] = "Корзина - плагин сервиса Hubzilla"; +App::$strings["New Sku"] = "Новый код"; +App::$strings["Cannot save edits to locked item."] = "Невозможно сохранить изменения заблокированной позиции."; +App::$strings["SKU not found."] = "Код не найден."; +App::$strings["Invalid Activation Directive."] = "Недействительная директива активации."; +App::$strings["Invalid Deactivation Directive."] = "Недействительная директива деактивации"; +App::$strings["Add to this privacy group"] = "Добавить в эту группу безопасности"; +App::$strings["Set user service class"] = "Установить класс обслуживания пользователя"; +App::$strings["You must be using a local account to purchase this service."] = "Вы должны использовать локальную учётноую запись для покупки этого сервиса."; +App::$strings["Changes Locked"] = "Изменения заблокированы"; +App::$strings["Item available for purchase."] = "Позиция доступна для приобретения."; +App::$strings["Price"] = "Цена"; +App::$strings["Add buyer to privacy group"] = "Добавить покупателя в группу безопасности"; +App::$strings["Add buyer as connection"] = "Добавить покупателя как контакт"; +App::$strings["Set Service Class"] = "Установить класс обслуживания"; +App::$strings["Enable Paypal Button Module"] = "Включить модуль кнопки Paypal"; +App::$strings["Use Production Key"] = "Использовать ключ Production"; +App::$strings["Paypal Sandbox Client Key"] = "Ключ клиента Paypal Sandbox"; +App::$strings["Paypal Sandbox Secret Key"] = "Секретный ключ Paypal Sandbox"; +App::$strings["Paypal Production Client Key"] = "Ключ клиента Paypal Production"; +App::$strings["Paypal Production Secret Key"] = "Секретный ключ Paypal Production"; +App::$strings["Cart - Paypal Addon"] = "Корзина - Paypal плагин"; +App::$strings["Paypal button payments are not enabled."] = "Кнопка Paypal для платежей не включена."; +App::$strings["Paypal button payments are not properly configured. Please choose another payment option."] = "Кнопка Paypal для платежей настроена неправильно. Пожалуйста, используйте другой вариант оплаты."; +App::$strings["Access Denied."] = "Доступ запрещён."; +App::$strings["Access Denied"] = "Доступ запрещён"; +App::$strings["Invalid Item"] = "Недействительный элемент"; +App::$strings["Nsabait Settings updated."] = "Настройки Nsabait обновлены"; +App::$strings["Enable NSAbait Plugin"] = "Включить плагин NSAbait"; +App::$strings["NSAbait Settings"] = "Настройки Nsabait"; +App::$strings["Hubzilla File Storage Import"] = "Импорт файлового хранилища Hubzilla"; +App::$strings["This will import all your cloud files from another server."] = "Это позволит импортировать все ваши файлы с другого сервера."; +App::$strings["Hubzilla Server base URL"] = "Базовый URL сервера Hubzilla"; +App::$strings["Since modified date yyyy-mm-dd"] = "Начиная с даты изменений yyyy-mm-dd"; +App::$strings["Until modified date yyyy-mm-dd"] = "Заканчивая датой изменений yyyy-mm-dd"; +App::$strings["Federate"] = ""; +App::$strings["nofed Settings saved."] = "Настройки nofed сохранены."; +App::$strings["Allow Federation Toggle"] = "Разрешить переключение федерации"; +App::$strings["Federate posts by default"] = "Разрешить федерацию публикаций по умолчанию"; +App::$strings["NoFed Settings"] = "Настройки NoFed"; +App::$strings["generic profile image"] = "Стандартное изображение профиля"; +App::$strings["random geometric pattern"] = "Случайный геометрический рисунок"; +App::$strings["monster face"] = "Лицо чудовища"; +App::$strings["computer generated face"] = "Сгенерированное компьютером лицо"; +App::$strings["retro arcade style face"] = "Лицо в стиле старой аркадной игры"; +App::$strings["Hub default profile photo"] = "Фотография профиля по умолчанию"; +App::$strings["Information"] = "Информация"; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Плагин Libravatar также установлен. Пожалуйста, отключите плагин Libravatar или этот плагин Gravatar. Если Плагин Libravatar ничего не найдёт, он вернётся в Gravatar."; +App::$strings["Default avatar image"] = "Изображение аватара по умолчанию"; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = "Выберите изображения аватар по умолчанию если ничего не было найдено в Gravatar (см. README)."; +App::$strings["Rating of images"] = "Оценки изображений"; +App::$strings["Select the appropriate avatar rating for your site. See README"] = "Выберите подходящую оценку аватара для вашего сайта (см. README)."; +App::$strings["Gravatar settings updated."] = "Настройки Gravatar обновлены."; +App::$strings["Post to Red"] = "Опубликовать в Red"; +App::$strings["Channel is required."] = "Необходим канал."; +App::$strings["Invalid channel."] = "Недействительный канал."; +App::$strings["redred Settings saved."] = "Настройки RedRed сохранены."; +App::$strings["Allow posting to another Hubzilla Channel"] = "Разрешить публиковать в другой канал Hubzilla"; +App::$strings["Send public postings to Hubzilla channel by default"] = "Отправлять общедоступные публикации в канал Hubzilla по умолчанию"; +App::$strings["Hubzilla API Path"] = "Путь к Hubzilla API"; +App::$strings["Hubzilla login name"] = "Имя входа Hubzilla"; +App::$strings["Hubzilla channel name"] = "Название канала Hubzilla"; +App::$strings["Hubzilla Crosspost Settings"] = "Настройки перекрёстных публикаций Hubzilla"; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = ""; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = ""; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Примеры действительных включают A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "Гитарные аккорды"; +App::$strings["The complete online chord dictionary"] = "Полный онлайн словарь аккордов"; +App::$strings["Tuning"] = "Настройка"; +App::$strings["Chord name: example: Em7"] = "Наименование аккорда - example: Em7"; +App::$strings["Show for left handed stringing"] = "Показывать струны для левшей"; +App::$strings["Quick Reference"] = "Быстрая ссылка"; +App::$strings["New registration"] = "Новая регистрация"; +App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; +App::$strings["Message sent to %s. New account registration: %s"] = "Сообщение отправлено в %s. Регистрация нового аккаунта: %s"; +App::$strings["Channels to auto connect"] = "Каналы для автоматического подключения"; +App::$strings["Comma separated list"] = "Список, разделённый запятыми"; +App::$strings["Popular Channels"] = "Популярные каналы"; +App::$strings["IRC Settings"] = "Настройки IRC"; +App::$strings["IRC settings saved."] = "Настройки IRC сохранены"; +App::$strings["IRC Chatroom"] = "Чат IRC"; +App::$strings["bitchslap"] = "дать леща"; +App::$strings["bitchslapped"] = "получил леща"; +App::$strings["shag"] = "вздрючить"; +App::$strings["shagged"] = "вздрюченный"; +App::$strings["patent"] = ""; +App::$strings["patented"] = ""; +App::$strings["hug"] = "обнять"; +App::$strings["hugged"] = "обнятый"; +App::$strings["murder"] = "убить"; +App::$strings["murdered"] = "убитый"; +App::$strings["worship"] = "почитать"; +App::$strings["worshipped"] = "почитаемый"; +App::$strings["kiss"] = "целовать"; +App::$strings["kissed"] = "поцелованный"; +App::$strings["tempt"] = "искушать"; +App::$strings["tempted"] = "искушённый"; +App::$strings["raise eyebrows at"] = "поднять брови"; +App::$strings["raised their eyebrows at"] = "поднял брови"; +App::$strings["insult"] = "оскорбить"; +App::$strings["insulted"] = "оскорблённый"; +App::$strings["praise"] = "хвалить"; +App::$strings["praised"] = "похваленный"; +App::$strings["be dubious of"] = "усомниться"; +App::$strings["was dubious of"] = "усомнился"; +App::$strings["eat"] = "есть"; +App::$strings["ate"] = "съел"; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = "сомневаться"; +App::$strings["doubted"] = "сомневался"; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = "трахнуть"; +App::$strings["fucked"] = "трахнул"; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = "признаться в любви к"; +App::$strings["declared undying love for"] = "признался в любви к"; +App::$strings["Post to WordPress"] = "Опубликовать в WordPress"; +App::$strings["Enable WordPress Post Plugin"] = "Включить плагин публикаций WordPress"; +App::$strings["WordPress username"] = "Имя пользователя WordPress"; +App::$strings["WordPress password"] = "Пароль WordPress"; +App::$strings["WordPress API URL"] = "URL API WordPress"; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = "Обычно https://your-blog.tld/xmlrpc.php"; +App::$strings["WordPress blogid"] = ""; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = "Для многопользовательских сайтов, таких, как wordpress.com. В противном случае оставьте пустым"; +App::$strings["Post to WordPress by default"] = "Публиковать в WordPress по умолчанию"; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = "Пересылать комментарии (требуется плагин hubzilla_wp)"; +App::$strings["WordPress Post Settings"] = "Настройки публикации в WordPress"; +App::$strings["Wordpress Settings saved."] = "Настройки WordPress сохранены."; +App::$strings["Who likes me?"] = "Кому я нравлюсь?"; +App::$strings["Your account on %s will expire in a few days."] = "Ваш аккаунт на %s перестанет работать через несколько дней."; +App::$strings["Your $Productname test account is about to expire."] = "Ваш тестовый аккаунт в $Productname близок к окончанию срока действия."; +App::$strings["Create an account to access services and applications"] = "Создайте аккаунт для доступа к службам и приложениям"; +App::$strings["Register"] = "Регистрация"; +App::$strings["Logout"] = "Выход"; +App::$strings["Login"] = "Войти"; +App::$strings["Remote Authentication"] = "Удаленная аутентификация"; +App::$strings["Login/Email"] = "Пользователь / email"; +App::$strings["Password"] = "Пароль"; +App::$strings["Remember me"] = "Запомнить меня"; +App::$strings["Forgot your password?"] = "Забыли пароль или логин?"; +App::$strings["Password Reset"] = "Сбросить пароль"; +App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Ошибка SSL/TLS веб-сайта для %s"; +App::$strings["Website SSL certificate is not valid. Please correct."] = "SSL/TLS сертификат веб-сайт недействителен. Исправьте это."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Задания Cron не запущены на %s"; +App::$strings["Cron/Scheduled tasks not running."] = "Задания Cron / планировщика не запущены."; +App::$strings["never"] = "никогда"; +App::$strings["Default"] = "По умолчанию"; +App::$strings["Focus (Hubzilla default)"] = "Фокус (по умолчанию Hubzilla)"; +App::$strings["Theme settings"] = "Настройки темы"; +App::$strings["Narrow navbar"] = "Узкая панель навигации"; +App::$strings["Navigation bar background color"] = "Панель навигации, цвет фона"; +App::$strings["Navigation bar icon color "] = "Панель навигации, цвет значков"; +App::$strings["Navigation bar active icon color "] = "Панель навигации, цвет активного значка"; +App::$strings["Link color"] = "цвет ссылок"; +App::$strings["Set font-color for banner"] = "Цвет текста в шапке"; +App::$strings["Set the background color"] = "Цвет фона"; +App::$strings["Set the background image"] = "Фоновое изображение"; +App::$strings["Set the background color of items"] = "Цвет фона элементов"; +App::$strings["Set the background color of comments"] = "Цвет фона комментариев"; +App::$strings["Set font-size for the entire application"] = "Установить системный размер шрифта"; +App::$strings["Examples: 1rem, 100%, 16px"] = "Например: 1rem, 100%, 16px"; +App::$strings["Set font-color for posts and comments"] = "Цвет шрифта для постов и комментариев"; +App::$strings["Set radius of corners"] = "Радиус скруглений"; +App::$strings["Example: 4px"] = "Например: 4px"; +App::$strings["Set shadow depth of photos"] = "Глубина теней фотографий"; +App::$strings["Set maximum width of content region in pixel"] = "Максимальная ширина содержания региона (в пикселях)"; +App::$strings["Leave empty for default width"] = "Оставьте пустым для ширины по умолчанию"; +App::$strings["Set size of conversation author photo"] = "Размер фотографии автора беседы"; +App::$strings["Set size of followup author photos"] = "Размер фотографий подписчиков"; +App::$strings["Image/photo"] = "Изображение / фотография"; +App::$strings["Encrypted content"] = "Зашифрованное содержание"; +App::$strings["Install %1\$s element %2\$s"] = "Установить %1\$s элемент %2\$s"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Эта публикация содержит устанавливаемый %s элемент, однако у вас нет разрешений для его установки на этом сайте."; +App::$strings["webpage"] = "веб-страница"; +App::$strings["layout"] = "шаблон"; +App::$strings["block"] = "заблокировать"; +App::$strings["menu"] = "меню"; +App::$strings["card"] = "карточка"; +App::$strings["article"] = "статья"; +App::$strings["post"] = "публикация"; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s была создана %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть"; +App::$strings["spoiler"] = "спойлер"; +App::$strings["View article"] = "Просмотр статьи"; +App::$strings["View summary"] = "Просмотр резюме"; +App::$strings["Different viewers will see this text differently"] = "Различные зрители увидят этот текст по-разному"; +App::$strings["$1 wrote:"] = "$1 писал:"; +App::$strings["Not a valid email address"] = "Недействительный адрес электронной почты"; App::$strings["Your email domain is not among those allowed on this site"] = "Домен электронной почты не входит в число тех, которые разрешены на этом сайте"; App::$strings["Your email address is already registered at this site."] = "Ваш адрес электронной почты уже зарегистрирован на этом сайте."; App::$strings["An invitation is required."] = "Требуется приглашение."; App::$strings["Invitation could not be verified."] = "Не удалось проверить приглашение."; App::$strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию."; App::$strings["Failed to store account information."] = "Не удалось сохранить информацию аккаунта."; -App::$strings["Registration request at %s"] = "Требуется регистрация на %s"; -App::$strings["Administrator"] = "Администратор"; -App::$strings["your registration password"] = "Ваш пароль регистрации"; +App::$strings["Registration confirmation for %s"] = "Подтверждение регистрации для %s"; +App::$strings["Registration request at %s"] = "Запрос регистрации на %s"; +App::$strings["your registration password"] = "ваш пароль регистрации"; App::$strings["Registration details for %s"] = "Регистрационные данные для %s"; App::$strings["Account approved."] = "Аккаунт утвержден."; App::$strings["Registration revoked for %s"] = "Регистрация отозвана для %s"; -App::$strings["Permission denied."] = "Доступ запрещен."; -App::$strings["Image exceeds website size limit of %lu bytes"] = ""; -App::$strings["Image file is empty."] = "файл пуст."; -App::$strings["Unable to process image"] = "Не удается обработать изображение"; -App::$strings["Photo storage failed."] = "Ошибка в банке фотографий"; -App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; -App::$strings["Visible to everybody"] = "Видно всем"; -App::$strings["Show"] = "Показывать"; -App::$strings["Don't show"] = "Не показывать"; -App::$strings["Permissions"] = "Разрешения"; -App::$strings["Close"] = "Закрыть"; -App::$strings[" and "] = "и"; -App::$strings["public profile"] = "Публичный профиль"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; -App::$strings["Public Timeline"] = "Публичная шкала времени"; +App::$strings["Click here to upgrade."] = "Нажмите здесь для обновления."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Это действие превышает ограничения, установленные в вашем плане."; +App::$strings["This action is not available under your subscription plan."] = "Это действие невозможно из-за ограничений в вашем плане."; +App::$strings["Delegation session ended."] = "Делегированная сессия завершена."; +App::$strings["Logged out."] = "Вышел из системы."; +App::$strings["Email validation is incomplete. Please check your email."] = "Проверка email не завершена. Пожалуйста, проверьте вашу почту."; +App::$strings["Failed authentication"] = "Ошибка аутентификации"; +App::$strings["event"] = "событие"; +App::$strings["channel"] = "канал"; +App::$strings["comment"] = "комментарий"; +App::$strings["likes %1\$s's %2\$s"] = "Нравится %1\$s %2\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "Не нравится %1\$s %2\$s"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s теперь в контакте с %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ткнул %2\$s"; +App::$strings["poked"] = "ткнут"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s в %2\$s"; +App::$strings["This is an unsaved preview"] = "Это несохранённый просмотр"; +App::$strings["__ctx:title__ Likes"] = "Нравится"; +App::$strings["__ctx:title__ Dislikes"] = "Не нравится"; +App::$strings["__ctx:title__ Agree"] = "Согласен"; +App::$strings["__ctx:title__ Disagree"] = "Не согласен"; +App::$strings["__ctx:title__ Abstain"] = "Воздержался"; +App::$strings["__ctx:title__ Attending"] = "Посещаю"; +App::$strings["__ctx:title__ Not attending"] = "Не посещаю"; +App::$strings["__ctx:title__ Might attend"] = "Возможно посещу"; +App::$strings["Select"] = "Выбрать"; +App::$strings["Delete"] = "Удалить"; +App::$strings["Toggle Star Status"] = "Переключить статус пометки"; +App::$strings["Private Message"] = "Личное сообщение"; +App::$strings["Message signature validated"] = "Подпись сообщения проверена"; +App::$strings["Message signature incorrect"] = "Подпись сообщения неверная"; +App::$strings["Approve"] = "Утвердить"; +App::$strings["View %s's profile @ %s"] = "Просмотреть профиль %s @ %s"; +App::$strings["Categories:"] = "Категории:"; +App::$strings["Filed under:"] = "Хранить под:"; +App::$strings["from %s"] = "от %s"; +App::$strings["last edited: %s"] = "последнее редактирование: %s"; +App::$strings["Expires: %s"] = "Срок действия: %s"; +App::$strings["View in context"] = "Показать в контексте"; +App::$strings["Please wait"] = "Подождите пожалуйста"; +App::$strings["remove"] = "удалить"; +App::$strings["Loading..."] = "Загрузка..."; +App::$strings["Delete Selected Items"] = "Удалить выбранные элементы"; +App::$strings["View Source"] = "Просмотреть источник"; +App::$strings["Follow Thread"] = "Следить за темой"; +App::$strings["Unfollow Thread"] = "Прекратить отслеживать тему"; +App::$strings["Recent Activity"] = "Последние действия"; +App::$strings["Connect"] = "Подключить"; +App::$strings["Edit Connection"] = "Редактировать контакт"; +App::$strings["Message"] = "Сообщение"; +App::$strings["Ratings"] = "Оценки"; +App::$strings["Poke"] = "Ткнуть"; +App::$strings["%s likes this."] = "%s нравится это."; +App::$strings["%s doesn't like this."] = "%s не нравится это."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d человеку это нравится.", + 1 => "%2\$d человекам это нравится.", + 2 => "%2\$d человекам это нравится.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d человеку это не нравится.", + 1 => "%2\$d человекам это не нравится.", + 2 => "%2\$d человекам это не нравится.", +); +App::$strings["and"] = "и"; +App::$strings[", and %d other people"] = array( + 0 => ", и ещё %d человеку", + 1 => ", и ещё %d человекам", + 2 => ", и ещё %d человекам", +); +App::$strings["%s like this."] = "%s нравится это."; +App::$strings["%s don't like this."] = "%s не нравится это."; +App::$strings["Set your location"] = "Задать своё местоположение"; +App::$strings["Clear browser location"] = "Очистить местоположение из браузера"; +App::$strings["Insert web link"] = "Вставить веб-ссылку"; +App::$strings["Embed (existing) photo from your photo albums"] = "Встроить (существующее) фото из вашего фотоальбома"; +App::$strings["Please enter a link URL:"] = "Пожалуйста введите URL ссылки:"; +App::$strings["Tag term:"] = "Теги:"; +App::$strings["Where are you right now?"] = "Где вы сейчас?"; +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["Comments enabled"] = "Комментарии включены"; +App::$strings["Comments disabled"] = "Комментарии отключены"; +App::$strings["Preview"] = "Предварительный просмотр"; +App::$strings["Share"] = "Поделиться"; +App::$strings["Page link name"] = "Название ссылки на страницу "; +App::$strings["Post as"] = "Опубликовать как"; +App::$strings["Bold"] = "Жирный"; +App::$strings["Italic"] = "Курсив"; +App::$strings["Underline"] = "Подчеркнутый"; +App::$strings["Quote"] = "Цитата"; +App::$strings["Code"] = "Код"; +App::$strings["Attach/Upload file"] = "Прикрепить/загрузить файл"; +App::$strings["Embed an image from your albums"] = "Встроить изображение из ваших альбомов"; +App::$strings["Cancel"] = "Отменить"; +App::$strings["OK"] = ""; +App::$strings["Toggle voting"] = "Подключить голосование"; +App::$strings["Disable comments"] = "Отключить комментарии"; +App::$strings["Toggle comments"] = "Переключить комментарии"; +App::$strings["Title (optional)"] = "Заголовок (необязательно)"; +App::$strings["Categories (optional, comma-separated list)"] = "Категории (необязательно, список через запятую)"; +App::$strings["Permission settings"] = "Настройки разрешений"; +App::$strings["Other networks and post services"] = "Другие сети и службы публикаций"; +App::$strings["Set expiration date"] = "Установить срок действия"; +App::$strings["Set publish date"] = "Установить дату публикации"; +App::$strings["Encrypt text"] = "Зашифровать текст"; +App::$strings["Commented Order"] = "По комментариям"; +App::$strings["Sort by Comment Date"] = "Сортировать по дате комментария"; +App::$strings["Posted Order"] = "По публикациям"; +App::$strings["Sort by Post Date"] = "Сортировать по дате публикации"; +App::$strings["Personal"] = "Личное"; +App::$strings["Posts that mention or involve you"] = "Публикации, где вы были упомянуты или участвовали"; +App::$strings["New"] = "Новые"; +App::$strings["Activity Stream - by date"] = "Поток активности - по дате"; +App::$strings["Starred"] = "Отмеченые"; +App::$strings["Favourite Posts"] = "Любимые публикации"; +App::$strings["Spam"] = "Спам"; +App::$strings["Posts flagged as SPAM"] = "Публикация помечена как спам"; +App::$strings["Channel"] = "Канал"; +App::$strings["Status Messages and Posts"] = "Статусы и публикации"; +App::$strings["About"] = "О себе"; +App::$strings["Profile Details"] = "Информация о профиле"; +App::$strings["Photos"] = "Фотографии"; +App::$strings["Photo Albums"] = "Фотоальбомы"; +App::$strings["Files"] = "Файлы"; +App::$strings["Files and Storage"] = "Файлы и хранилище"; +App::$strings["Events"] = "События"; +App::$strings["Chatrooms"] = "Чаты"; +App::$strings["Bookmarks"] = "Закладки"; +App::$strings["Saved Bookmarks"] = "Сохранённые закладки"; +App::$strings["Cards"] = "Карточки"; +App::$strings["View Cards"] = "Просмотреть карточки"; +App::$strings["articles"] = "статьи"; +App::$strings["View Articles"] = "Просмотр статей"; +App::$strings["Webpages"] = "Веб-страницы"; +App::$strings["View Webpages"] = "Просмотр веб-страниц"; +App::$strings["Wikis"] = ""; +App::$strings["Wiki"] = ""; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Нравится", + 1 => "Нравится", + 2 => "Нравится", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Не нравится", + 1 => "Не нравится", + 2 => "Не нравится", +); +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Посетит", + 1 => "Посетят", + 2 => "Посетят", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Не посетит", + 1 => "Не посетят", + 2 => "Не посетят", +); +App::$strings["__ctx:noun__ Undecided"] = "Не решил"; +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "Согласен", + 1 => "Согласны", + 2 => "Согласны", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Не согласен", + 1 => "Не согласны", + 2 => "Не согласны", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Воздержался", + 1 => "Воздержались", + 2 => "Воздержались", +); +App::$strings["Invalid data packet"] = "Неверный пакет данных"; +App::$strings["Unable to verify channel signature"] = "Невозможно проверить подпись канала"; +App::$strings["Unable to verify site signature for %s"] = "Невозможно проверить подпись сайта %s"; +App::$strings["invalid target signature"] = "недопустимая целевая подпись"; +App::$strings["l F d, Y \\@ g:i A"] = ""; +App::$strings["Starts:"] = "Начало:"; +App::$strings["Finishes:"] = "Окончание:"; +App::$strings["Location:"] = "Местоположение:"; +App::$strings["This event has been added to your calendar."] = "Это событие было добавлено в ваш календарь."; +App::$strings["Not specified"] = "Не указано"; +App::$strings["Needs Action"] = "Требует действия"; +App::$strings["Completed"] = "Завершено"; +App::$strings["In Process"] = "В процессе"; +App::$strings["Cancelled"] = "Отменено"; +App::$strings["Mobile"] = "Мобильный"; +App::$strings["Home"] = "Домашний"; +App::$strings["Home, Voice"] = "Дом, голос"; +App::$strings["Home, Fax"] = "Дом, факс"; +App::$strings["Work"] = "Рабочий"; +App::$strings["Work, Voice"] = "Работа, голос"; +App::$strings["Work, Fax"] = "Работа, факс"; +App::$strings["Other"] = "Другой"; App::$strings["Item was not found."] = "Элемент не найден."; +App::$strings["Unknown error."] = "Неизвестная ошибка."; App::$strings["No source file."] = "Нет исходного файла."; -App::$strings["Cannot locate file to replace"] = "Не удается найти файл, чтобы заменить"; +App::$strings["Cannot locate file to replace"] = "Не удается найти файл для замены"; App::$strings["Cannot locate file to revise/update"] = "Не удается найти файл для пересмотра / обновления"; App::$strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = ""; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Вы достигли предела %1$.0f Мбайт для хранения вложений."; App::$strings["File upload failed. Possible system limit or action terminated."] = "Загрузка файла не удалась. Возможно система перегружена или попытка прекращена."; -App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не проверен. Загрузка не удалась."; +App::$strings["Stored file could not be verified. Upload failed."] = "Файл для сохранения не может быть проверен. Загрузка не удалась."; App::$strings["Path not available."] = "Путь недоступен."; -App::$strings["Empty pathname"] = ""; -App::$strings["duplicate filename or path"] = ""; +App::$strings["Empty pathname"] = "Пустое имя пути"; +App::$strings["duplicate filename or path"] = "дублирующееся имя файла или пути"; App::$strings["Path not found."] = "Путь не найден."; -App::$strings["mkdir failed."] = "mkdir безуспешно."; -App::$strings["database storage failed."] = ""; -App::$strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -App::$strings["Starts:"] = "Начало:"; -App::$strings["Finishes:"] = "\t\nКонец:"; -App::$strings["Location:"] = "Откуда:"; -App::$strings["Logout"] = "Выход"; +App::$strings["mkdir failed."] = "mkdir не удался"; +App::$strings["database storage failed."] = "ошибка при записи базы данных."; +App::$strings["Empty path"] = "Пустое имя пути"; +App::$strings["unknown"] = "неизвестный"; +App::$strings["%1\$s's bookmarks"] = "Закладки пользователя %1\$s"; +App::$strings["Directory Options"] = "Параметры каталога"; +App::$strings["Safe Mode"] = "Безопасный режим"; +App::$strings["Public Forums Only"] = "Только публичные форумы"; +App::$strings["This Website Only"] = "Только этот веб-сайт"; +App::$strings["view full size"] = "посмотреть в полный размер"; +App::$strings["Friendica"] = ""; +App::$strings["OStatus"] = ""; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = ""; +App::$strings["Diaspora"] = ""; +App::$strings["Facebook"] = ""; +App::$strings["Zot"] = ""; +App::$strings["LinkedIn"] = ""; +App::$strings["XMPP/IM"] = ""; +App::$strings["MySpace"] = ""; +App::$strings[" and "] = " и "; +App::$strings["public profile"] = "общедоступный профиль"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s изменил %2\$s на “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Посетить %1\$s %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s обновлено %2\$s, изменено %3\$s."; +App::$strings["Remote authentication"] = "Удаленная аутентификация"; +App::$strings["Click to authenticate to your home hub"] = "Нажмите, чтобы аутентифицировать себя на домашнем узле"; +App::$strings["Channel Manager"] = "Менеджер каналов"; +App::$strings["Manage your channels"] = "Управление вашими каналами"; +App::$strings["Privacy Groups"] = "Группы безопасности"; +App::$strings["Manage your privacy groups"] = "Управление вашим группами безопасности"; +App::$strings["Settings"] = "Настройки"; +App::$strings["Account/Channel Settings"] = "Настройки аккаунта / канала"; App::$strings["End this session"] = "Закончить эту сессию"; -App::$strings["Home"] = "Мой канал"; -App::$strings["Your posts and conversations"] = "Ваши сообщения и разговоры"; App::$strings["Your profile page"] = "Страницa вашего профиля"; App::$strings["Edit Profiles"] = "Редактирование профилей"; -App::$strings["Manage/Edit profiles"] = "Управление / Редактирование профилей"; -App::$strings["Your photos"] = "Ваши фотографии"; -App::$strings["Your files"] = "Ваши файлы"; -App::$strings["Chat"] = "Чат"; -App::$strings["Your chatrooms"] = "Ваши чаты"; -App::$strings["Your bookmarks"] = "Ваши закладки"; -App::$strings["Your webpages"] = "Ваши веб-страницы"; -App::$strings["Login"] = "Войти"; +App::$strings["Manage/Edit profiles"] = "Управление / редактирование профилей"; +App::$strings["Edit your profile"] = "Редактировать профиль"; App::$strings["Sign in"] = "Войти"; -App::$strings["%s - click to logout"] = "%s - нажмите чтобы выйти"; -App::$strings["Click to authenticate to your home hub"] = ""; -App::$strings["Home Page"] = "Моя страница"; -App::$strings["Register"] = "Регистрация"; +App::$strings["Take me home"] = "Домой"; +App::$strings["Log me out of this site"] = "Выйти с этого сайта"; App::$strings["Create an account"] = "Создать аккаунт"; App::$strings["Help"] = "Помощь"; App::$strings["Help and documentation"] = "Справочная информация и документация"; -App::$strings["Apps"] = "Приложения"; -App::$strings["Applications, utilities, links, games"] = ""; App::$strings["Search"] = "Поиск"; -App::$strings["Search site content"] = "Поиск по содержанию сайту"; -App::$strings["Directory"] = "Каталог"; -App::$strings["Channel Locator"] = "Локатор каналов"; -App::$strings["Matrix"] = "Матрица"; -App::$strings["Your matrix"] = "Собственная матрица"; -App::$strings["Mark all matrix notifications seen"] = "Пометить все оповещения матрицы как прочитанное"; -App::$strings["Channel Home"] = "Главная канала"; -App::$strings["Channel home"] = "Главная канала"; -App::$strings["Mark all channel notifications seen"] = "Пометить все оповещения канала как прочитанное"; -App::$strings["Connections"] = "Контакты"; -App::$strings["Notices"] = "Оповещения"; -App::$strings["Notifications"] = "Оповещения"; -App::$strings["See all notifications"] = "Просмотреть все оповещения"; -App::$strings["Mark all system notifications seen"] = "Пометить все оповещения как прочитанное"; -App::$strings["Mail"] = "Переписка"; -App::$strings["Private mail"] = "Ваша личная переписка"; -App::$strings["See all private messages"] = "Просмотреть все личные сообщения"; -App::$strings["Mark all private messages seen"] = "Пометить все личные сообщения как прочитанное"; -App::$strings["Inbox"] = "Входящие"; -App::$strings["Outbox"] = "Исходящие"; -App::$strings["New Message"] = "Новое личное сообщение"; -App::$strings["Events"] = "Мероприятия"; -App::$strings["Event Calendar"] = "Календарь мероприятий"; -App::$strings["See all events"] = "Показать все мероприятия"; -App::$strings["Mark all events seen"] = "Пометить все мероприятия как прочитанное"; -App::$strings["Channel Select"] = "Выбор каналов"; -App::$strings["Manage Your Channels"] = "Управление каналов"; -App::$strings["Settings"] = "Настройки"; -App::$strings["Account/Channel Settings"] = "Настройки аккаунта/канала"; -App::$strings["Admin"] = "Администрация"; +App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Искать на сайте @name, !forum, #tag, ?docs, содержимое"; +App::$strings["Admin"] = "Администрирование"; App::$strings["Site Setup and Configuration"] = "Установка и конфигурация сайта"; -App::$strings["Nothing new here"] = "Ничего нового здесь"; +App::$strings["Loading"] = "Загрузка"; +App::$strings["@name, !forum, #tag, ?doc, content"] = "@name, !forum, #tag, ?docs, содержимое"; App::$strings["Please wait..."] = "Подождите пожалуйста ..."; -App::$strings["%1\$s's bookmarks"] = "Закладки пользователя %1\$s"; -App::$strings["Missing room name"] = ""; -App::$strings["Duplicate room name"] = ""; -App::$strings["Invalid room specifier."] = ""; -App::$strings["Room not found."] = ""; -App::$strings["Room is full"] = ""; -App::$strings["Tags"] = "Тэги"; +App::$strings["Add Apps"] = "Добавить приложения"; +App::$strings["Arrange Apps"] = "Упорядочить приложения"; +App::$strings["Toggle System Apps"] = "Переключить системные приложения"; +App::$strings["Calendar"] = "Календарь"; +App::$strings["Articles"] = "Статьи"; +App::$strings["Help:"] = "Помощь:"; +App::$strings["Not Found"] = "Не найдено"; +App::$strings["Page not found."] = "Страница не найдена."; +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."] = "Удаленная группа с этим названием была восстановлена. Существующие разрешения пункт могут применяться к этой группе и к её будущих участников. Если это не то, чего вы хотели, пожалуйста, создайте другую группу с другим именем."; +App::$strings["Add new connections to this privacy group"] = "Добавить новые контакты в группу безопасности"; +App::$strings["edit"] = "редактировать"; +App::$strings["Edit group"] = "Редактировать группу"; +App::$strings["Add privacy group"] = "Добавить группу безопасности"; +App::$strings["Channels not in any privacy group"] = "Каналы не включены ни в одну группу безопасности"; +App::$strings["add"] = "добавить"; +App::$strings["Unable to import a removed channel."] = "Невозможно импортировать удалённый канал."; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Не удалось создать дублирующийся идентификатор канала. Импорт невозможен."; +App::$strings["Cloned channel not found. Import failed."] = "Клон канала не найден. Импорт невозможен."; +App::$strings["Profile Photos"] = "Фотографии профиля"; +App::$strings["Trending"] = "В тренде"; +App::$strings["Tags"] = "Теги"; +App::$strings["Categories"] = "Категории"; App::$strings["Keywords"] = "Ключевые слова"; App::$strings["have"] = "иметь"; App::$strings["has"] = "есть"; App::$strings["want"] = "хотеть"; -App::$strings["wants"] = "хочет"; +App::$strings["wants"] = "хотеть"; App::$strings["like"] = "нравится"; App::$strings["likes"] = "нравится"; -App::$strings["dislike"] = "не-нравится"; -App::$strings["dislikes"] = "не-нравится"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "нравится", - 1 => "нравится", - 2 => "нравится", -); -App::$strings["Default"] = "По умолчанию"; -App::$strings["Unknown | Not categorised"] = "Неизвестные | Без категории"; -App::$strings["Block immediately"] = "Немедленно заблокировать"; -App::$strings["Shady, spammer, self-marketer"] = ""; -App::$strings["Known to me, but no opinion"] = "Известныo мне, но нет своего мнения"; -App::$strings["OK, probably harmless"] = "OK, наверное безвредно"; -App::$strings["Reputable, has my trust"] = "Авторитетно, имеет мое доверие"; -App::$strings["Frequently"] = "Часто"; -App::$strings["Hourly"] = "Ежечасно"; -App::$strings["Twice daily"] = "Два раза в день"; -App::$strings["Daily"] = "Ежедневно"; -App::$strings["Weekly"] = "Еженедельно"; -App::$strings["Monthly"] = "Ежемесячно"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "E-mail"; -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["%d invitation available"] = array( - 0 => "имеется %d приглашение", - 1 => "имеются %d приглашения", - 2 => "имеется %d приглашений", -); -App::$strings["Advanced"] = "Дополнительно"; -App::$strings["Find Channels"] = "Поиск контактов"; -App::$strings["Enter name or interest"] = "Впишите имя или интерес"; -App::$strings["Connect/Follow"] = "Подключить/следовать"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; -App::$strings["Find"] = "Поиск"; -App::$strings["Channel Suggestions"] = "Рекомендации каналов"; -App::$strings["Random Profile"] = "Случайные"; -App::$strings["Invite Friends"] = "Пригласить друзей"; -App::$strings["Exammple: name=fred and country=iceland"] = ""; -App::$strings["Advanced Find"] = "Расширенный поиск"; -App::$strings["Saved Folders"] = "Запомненные папки"; -App::$strings["Everything"] = "Все"; -App::$strings["Categories"] = "Категории"; -App::$strings["%d connection in common"] = array( - 0 => "%d совместный контакт", - 1 => "%d совместных контакта", - 2 => "%d совместных контактов", -); -App::$strings["show more"] = "показать все"; -App::$strings["This event has been added to your calendar."] = "Это событие было добавлено в календарь."; -App::$strings["Miscellaneous"] = "Прочее"; -App::$strings["year"] = "год"; -App::$strings["month"] = "месяц"; -App::$strings["day"] = "день"; -App::$strings["never"] = "никогда"; -App::$strings["less than a second ago"] = "менее чем одну секунду назад"; -App::$strings["years"] = "лет"; -App::$strings["months"] = "мес."; -App::$strings["week"] = "неделя"; -App::$strings["weeks"] = "недель"; -App::$strings["days"] = "дней"; -App::$strings["hour"] = "час"; -App::$strings["hours"] = "часов"; -App::$strings["minute"] = "минута"; -App::$strings["minutes"] = "мин."; -App::$strings["second"] = "секунда"; -App::$strings["seconds"] = "секунд"; -App::$strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад"; -App::$strings["%1\$s's birthday"] = "%1\$s's День Рождения"; -App::$strings["Happy Birthday %1\$s"] = "С Днем Рождения %1\$s"; -App::$strings["Sort Options"] = "Параметры сортировки"; -App::$strings["Alphabetic"] = "По алфавиту"; -App::$strings["Reverse Alphabetic"] = "По обратному алфавиту"; -App::$strings["Newest to Oldest"] = "От новых к старым"; -App::$strings["Enable Safe Search"] = ""; -App::$strings["Disable Safe Search"] = ""; -App::$strings["Safe Mode"] = "Безопасный режим"; -App::$strings["Hubzilla Notification"] = "Оповещения Red матрицы"; -App::$strings["hubzilla"] = "hubzilla"; -App::$strings["Thank You,"] = "Спасибо,"; -App::$strings["%s Administrator"] = "%s администратор"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Уведомление] Получено новое сообщение в %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = ""; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s послал вам %2\$s."; -App::$strings["a private message"] = "личное сообщение"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = ""; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = ""; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Уведомление] Комментарий к разговору #%1\$d по %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = ""; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и/или ответа разговора."; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Уведомление] %s добавил сообщениe на стену вашего профиля"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = ""; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Уведомление] %s добавил у вас тег"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = ""; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Уведомление] %1\$s подпихнул вас"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = ""; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Уведомление] %s добавил у вас в сообщении тег"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = ""; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = ""; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Уведомление] введение получено"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = ""; -App::$strings["You may visit their profile at %s"] = "Вы можете посетить ​​профиль в %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = ""; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Уведомление] Получено предложение дружить"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = ""; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = ""; -App::$strings["Name:"] = "Имя:"; -App::$strings["Photo:"] = "Фото:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = ""; -App::$strings["parent"] = ""; -App::$strings["Collection"] = "Коллекция"; -App::$strings["Principal"] = ""; -App::$strings["Addressbook"] = "Адресная книга"; -App::$strings["Calendar"] = "Календарь"; -App::$strings["Schedule Inbox"] = ""; -App::$strings["Schedule Outbox"] = ""; -App::$strings["%1\$s used"] = ""; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = ""; -App::$strings["Create new folder"] = "Создать новую папку"; -App::$strings["Create"] = "Создать"; -App::$strings["Upload file"] = "Загрузить файл"; -App::$strings["Upload"] = "Загрузка"; -App::$strings["General Features"] = "Главные функции"; -App::$strings["Content Expiration"] = ""; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Удалять посты/комментарии и/или личные сообщения"; -App::$strings["Multiple Profiles"] = "Несколько профилей"; -App::$strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; -App::$strings["Web Pages"] = "Веб-страницы"; -App::$strings["Provide managed web pages on your channel"] = ""; -App::$strings["Private Notes"] = "Личные заметки"; -App::$strings["Enables a tool to store notes and reminders"] = ""; -App::$strings["Extended Identity Sharing"] = "Расширенный обмен идентичности"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = ""; -App::$strings["Expert Mode"] = "Экспертный режим"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = ""; -App::$strings["Premium Channel"] = "Премиум канал"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = ""; -App::$strings["Post Composition Features"] = ""; -App::$strings["Richtext Editor"] = "Редактор RichText"; -App::$strings["Enable richtext editor"] = "Включить редактор RichText"; -App::$strings["Post Preview"] = "Предварительный просмотр сообщения"; -App::$strings["Allow previewing posts and comments before publishing them"] = "Разрешить предварительный просмотр сообщений и комментариев перед их публикацией"; -App::$strings["Channel Sources"] = "Источники канала"; -App::$strings["Automatically import channel content from other channels or feeds"] = ""; -App::$strings["Even More Encryption"] = "Еще больше шифрования"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = ""; -App::$strings["Network and Stream Filtering"] = "Фильтрация сети и потока"; -App::$strings["Search by Date"] = "Поиск по дате"; -App::$strings["Ability to select posts by date ranges"] = "Возможность выбора сообщений по датам"; -App::$strings["Collections Filter"] = "Фильтр коллекций"; -App::$strings["Enable widget to display Network posts only from selected collections"] = ""; -App::$strings["Saved Searches"] = "Запомненные поиски"; -App::$strings["Save search terms for re-use"] = "Сохранять результаты поиска для повторного использования"; -App::$strings["Network Personal Tab"] = "Сеть - Личная вкладка"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = ""; -App::$strings["Network New Tab"] = "Сеть - Новая вкладка"; -App::$strings["Enable tab to display all new Network activity"] = ""; -App::$strings["Affinity Tool"] = "Инструмент сходства или соответствия"; -App::$strings["Filter stream activity by depth of relationships"] = ""; -App::$strings["Suggest Channels"] = ""; -App::$strings["Show channel suggestions"] = ""; -App::$strings["Post/Comment Tools"] = "Инструменты сообщений/комментарий "; -App::$strings["Edit Sent Posts"] = "Редактировать отправленные сообщения"; -App::$strings["Edit and correct posts and comments after sending"] = "Редактировать и исправлять сообщения и комментарии после отправки"; -App::$strings["Tagging"] = "Пометка"; -App::$strings["Ability to tag existing posts"] = "Возможность использовать теги"; -App::$strings["Post Categories"] = "Категории сообщения"; -App::$strings["Add categories to your posts"] = "Добавить категории для ваших сообщений"; -App::$strings["Ability to file posts under folders"] = ""; -App::$strings["Dislike Posts"] = "Сообщение не нравится"; -App::$strings["Ability to dislike posts/comments"] = "Возможность выбора нравится/не-нравится"; -App::$strings["Star Posts"] = "Помечать сообщения"; -App::$strings["Ability to mark special posts with a star indicator"] = ""; -App::$strings["Tag Cloud"] = "Облако тегов"; -App::$strings["Provide a personal tag cloud on your channel page"] = ""; +App::$strings["dislike"] = "не нравится"; +App::$strings["dislikes"] = "не нравится"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s приветствует %2\$s"; +App::$strings["default"] = "по умолчанию"; +App::$strings["Select an alternate language"] = "Выбор дополнительного языка"; App::$strings["Channel is blocked on this site."] = "Канал блокируется на этом сайте."; App::$strings["Channel location missing."] = "Местоположение канала отсутствует."; -App::$strings["Response from remote channel was incomplete."] = ""; -App::$strings["Channel was deleted and no longer exists."] = ""; +App::$strings["Response from remote channel was incomplete."] = "Ответ удаленного канала неполный."; +App::$strings["Premium channel - please visit:"] = "Премимум-канал - пожалуйста посетите:"; +App::$strings["Channel was deleted and no longer exists."] = "Канал удален и больше не существует."; +App::$strings["Remote channel or protocol unavailable."] = "Удалённый канал или протокол недоступен."; App::$strings["Channel discovery failed."] = "Не удалось обнаружить канал."; -App::$strings["local account not found."] = "локальный аккаунт не найден."; +App::$strings["Protocol disabled."] = "Протокол отключен."; App::$strings["Cannot connect to yourself."] = "Нельзя подключиться к самому себе."; -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."] = ""; -App::$strings["Default privacy group for new contacts"] = "Группа конфиденциальности по умолчанию для новых контактов"; -App::$strings["All Channels"] = "Все каналы"; -App::$strings["edit"] = "редактировать"; -App::$strings["Collections"] = "Коллекции"; -App::$strings["Edit collection"] = "Редактировать коллекцию"; -App::$strings["Create a new collection"] = "Создать новую коллекцию"; -App::$strings["Channels not in any collection"] = "Контакты не в какой коллекции"; -App::$strings["add"] = "добавить"; -App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; -App::$strings["Empty name"] = "Пустое имя"; -App::$strings["Name too long"] = "Слишком длинное имя"; -App::$strings["No account identifier"] = "идентификатор аккаунта отсутствует"; -App::$strings["Nickname is required."] = "Требуется псевдоним."; -App::$strings["Reserved nickname. Please choose another."] = ""; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте."; -App::$strings["Unable to retrieve created identity"] = ""; -App::$strings["Default Profile"] = "Профиль по умолчанию"; -App::$strings["Friends"] = "Друзья"; -App::$strings["Requested channel is not available."] = "Запрашиваемый канал не доступен."; -App::$strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен."; -App::$strings["Connect"] = "Подключить"; -App::$strings["Change profile photo"] = "Изменить фотографию профиля"; -App::$strings["Profiles"] = "Профили"; -App::$strings["Manage/edit profiles"] = "Управление / Редактирование профилей"; -App::$strings["Create New Profile"] = "Создать новый профиль"; -App::$strings["Edit Profile"] = "Редактировать профиль"; -App::$strings["Profile Image"] = "Изображение профиля"; -App::$strings["visible to everybody"] = "видно всем"; -App::$strings["Edit visibility"] = "Редактировать видимость"; -App::$strings["Gender:"] = "Пол:"; -App::$strings["Status:"] = "Статус:"; -App::$strings["Homepage:"] = "Домашняя страница:"; -App::$strings["Online Now"] = "Сейчас в сети"; -App::$strings["g A l F d"] = "g A l F d"; -App::$strings["F d"] = "F d"; -App::$strings["[today]"] = "[сегодня]"; -App::$strings["Birthday Reminders"] = "Напоминания о Днях Рождения"; -App::$strings["Birthdays this week:"] = "Дни Рождения на этой неделе:"; -App::$strings["[No description]"] = "[без описания]"; -App::$strings["Event Reminders"] = "Напоминания мероприятий"; -App::$strings["Events this week:"] = "Мероприятия на этой неделе:"; -App::$strings["Profile"] = "Профиль"; -App::$strings["Full Name:"] = "Полное имя:"; -App::$strings["Like this channel"] = "нравиться этот канал"; -App::$strings["j F, Y"] = "j F, Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "День Рождения:"; -App::$strings["Age:"] = "Возраст:"; -App::$strings["for %1\$d %2\$s"] = "для %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Сексуальная ориентация:"; -App::$strings["Hometown:"] = "Родной город:"; -App::$strings["Tags:"] = "Тэги:"; -App::$strings["Political Views:"] = "Политические взгляды:"; -App::$strings["Religion:"] = "Религия:"; -App::$strings["About:"] = "О себе:"; -App::$strings["Hobbies/Interests:"] = "Хобби / интересы:"; -App::$strings["Likes:"] = "Что вам нравится:"; -App::$strings["Dislikes:"] = "Что вам не нравится:"; -App::$strings["Contact information and Social Networks:"] = "Информация и социальные сети контакта:"; -App::$strings["My other channels:"] = "Мои другие каналы:"; -App::$strings["Musical interests:"] = "Музыкальные интересы:"; -App::$strings["Books, literature:"] = "Книги, литература:"; -App::$strings["Television:"] = "Телевидение:"; -App::$strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:"; -App::$strings["Love/Romance:"] = "Любовь / Романс:"; -App::$strings["Work/employment:"] = "Работа / Занятость:"; -App::$strings["School/education:"] = "Школа / образование:"; -App::$strings["Like this thing"] = "нравится этo"; -App::$strings["view full size"] = "посмотреть в полный размер"; +App::$strings["Visible to your default audience"] = "Видно вашей аудитории по умолчанию."; +App::$strings["__ctx:acl__ Profile"] = "Профиль"; +App::$strings["Only me"] = "Только мне"; +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"] = "Показать"; +App::$strings["Don't show"] = "Не показывать"; +App::$strings["Permissions"] = "Разрешения"; +App::$strings["Close"] = "Закрыть"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
These permissions set who is allowed to view the post."] = "Разрешения публикации %s не могут быть изменены %s после того, как ею поделились. Эти разрешения устанавливают кому разрешено просматривать эту публикацию."; +App::$strings["Miscellaneous"] = "Прочее"; +App::$strings["Birthday"] = "День рождения"; +App::$strings["Age: "] = "Возраст:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD или MM-DD"; +App::$strings["Required"] = "Требуется"; +App::$strings["less than a second ago"] = "менее чем одну секунду"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s назад"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "год", + 1 => "года", + 2 => "лет", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "месяц", + 1 => "месяца", + 2 => "месяцев", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "неделю", + 1 => "недели", + 2 => "недель", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "день", + 1 => "дня", + 2 => "дней", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "час", + 1 => "часа", + 2 => "часов", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "минуту", + 1 => "минуты", + 2 => "минут", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "секунду", + 1 => "секунды", + 2 => "секунд", +); +App::$strings["%1\$s's birthday"] = "У %1\$s День рождения"; +App::$strings["Happy Birthday %1\$s"] = "С Днем рождения %1\$s !"; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Не удается найти DNS информацию для сервера базы данных '%s'"; App::$strings["prev"] = "предыдущий"; App::$strings["first"] = "первый"; App::$strings["last"] = "последний"; App::$strings["next"] = "следующий"; -App::$strings["older"] = "старший"; +App::$strings["older"] = "старше"; App::$strings["newer"] = "новее"; App::$strings["No connections"] = "Нет контактов"; -App::$strings["%d Connection"] = array( - 0 => "%d контакт", - 1 => "%d контакта", - 2 => "%d контактов", -); -App::$strings["View Connections"] = "Просмотр контактов"; +App::$strings["Connections"] = "Контакты"; +App::$strings["View all %s connections"] = "Просмотреть все %s контактов"; +App::$strings["Network: %s"] = "Сеть: %s"; App::$strings["Save"] = "Запомнить"; -App::$strings["poke"] = "подпихнуть"; -App::$strings["ping"] = "пинг - проверка связи"; -App::$strings["pinged"] = ""; -App::$strings["prod"] = ""; -App::$strings["prodded"] = ""; -App::$strings["slap"] = ""; -App::$strings["slapped"] = ""; -App::$strings["finger"] = ""; -App::$strings["fingered"] = ""; -App::$strings["rebuff"] = ""; -App::$strings["rebuffed"] = ""; +App::$strings["poke"] = "Ткнуть"; +App::$strings["ping"] = "Пингануть"; +App::$strings["pinged"] = "Отпингован"; +App::$strings["prod"] = "Подтолкнуть"; +App::$strings["prodded"] = "Подтолкнут"; +App::$strings["slap"] = "Шлёпнуть"; +App::$strings["slapped"] = "Шлёпнут"; +App::$strings["finger"] = "Указать"; +App::$strings["fingered"] = "Указан"; +App::$strings["rebuff"] = "Дать отпор"; +App::$strings["rebuffed"] = "Дан отпор"; App::$strings["happy"] = "счастливый"; App::$strings["sad"] = "грустный"; App::$strings["mellow"] = "спокойный"; App::$strings["tired"] = "усталый"; App::$strings["perky"] = "весёлый"; App::$strings["angry"] = "сердитый"; -App::$strings["stupified"] = "отупевший"; -App::$strings["puzzled"] = "недоумённый"; +App::$strings["stupefied"] = "отупевший"; +App::$strings["puzzled"] = "недоумевающий"; App::$strings["interested"] = "заинтересованный"; -App::$strings["bitter"] = "озлобленный"; +App::$strings["bitter"] = "едкий"; App::$strings["cheerful"] = "бодрый"; App::$strings["alive"] = "энергичный"; App::$strings["annoyed"] = "раздражённый"; @@ -571,7 +1139,7 @@ App::$strings["anxious"] = "обеспокоенный"; App::$strings["cranky"] = "капризный"; App::$strings["disturbed"] = "встревоженный"; App::$strings["frustrated"] = "разочарованный"; -App::$strings["depressed"] = ""; +App::$strings["depressed"] = "подавленный"; App::$strings["motivated"] = "мотивированный"; App::$strings["relaxed"] = "расслабленный"; App::$strings["surprised"] = "удивленный"; @@ -594,1272 +1162,2220 @@ App::$strings["September"] = "Сентябрь"; App::$strings["October"] = "Октябрь"; App::$strings["November"] = "Ноябрь"; App::$strings["December"] = "Декабрь"; -App::$strings["unknown.???"] = "неизвестный.???"; -App::$strings["bytes"] = "байт"; -App::$strings["remove category"] = ""; -App::$strings["remove from file"] = ""; -App::$strings["Click to open/close"] = "Нажмите, чтобы открыть/закрыть"; +App::$strings["Unknown Attachment"] = "Неизвестное вложение"; +App::$strings["Size"] = "Размер"; +App::$strings["remove category"] = "удалить категорию"; +App::$strings["remove from file"] = "удалить из файла"; +App::$strings["Download binary/encrypted content"] = "Загрузить двоичное / зашифрованное содержимое"; App::$strings["Link to Source"] = "Ссылка на источник"; -App::$strings["Select a page layout: "] = ""; -App::$strings["default"] = "по умолчанию"; -App::$strings["Page content type: "] = ""; -App::$strings["Select an alternate language"] = "Выбор альтернативного языка"; +App::$strings["Page layout"] = "Шаблон страницы"; +App::$strings["You can create your own with the layouts tool"] = "Вы можете создать свой собственный с помощью инструмента шаблонов"; +App::$strings["BBcode"] = ""; +App::$strings["HTML"] = ""; +App::$strings["Text"] = "Текст"; +App::$strings["Comanche Layout"] = "Шаблон Comanche"; +App::$strings["PHP"] = ""; +App::$strings["Page content type"] = "Тип содержимого страницы"; App::$strings["activity"] = "активность"; -App::$strings["Design"] = "Дизайн"; -App::$strings["Blocks"] = "Блоки"; +App::$strings["a-z, 0-9, -, and _ only"] = "Только a-z, 0-9, -, и _"; +App::$strings["Design Tools"] = "Инструменты дизайна"; +App::$strings["Blocks"] = "Блокировки"; App::$strings["Menus"] = "Меню"; App::$strings["Layouts"] = "Шаблоны"; App::$strings["Pages"] = "Страницы"; -App::$strings["Site Admin"] = "Админ сайта"; -App::$strings["Address Book"] = "Адресная книга"; -App::$strings["Mood"] = "Настроение"; -App::$strings["Probe"] = ""; -App::$strings["Suggest"] = ""; -App::$strings["Update"] = "Обновление"; -App::$strings["Install"] = "Установка"; -App::$strings["Purchase"] = ""; -App::$strings["Unknown"] = "Неизвестный"; -App::$strings["Invalid data packet"] = "Неверный пакет данных"; -App::$strings["Unable to verify channel signature"] = "Невозможно проверить сигнатуру канала"; -App::$strings["Unable to verify site signature for %s"] = ""; -App::$strings["No recipient provided."] = ""; -App::$strings["[no subject]"] = "[без темы]"; -App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; -App::$strings["Stored post could not be verified."] = ""; -App::$strings["Click here to upgrade."] = "Нажмите здесь, чтобы обновить."; -App::$strings["This action exceeds the limits set by your subscription plan."] = ""; -App::$strings["This action is not available under your subscription plan."] = ""; -App::$strings["System"] = "Система"; -App::$strings["Create Personal App"] = "Создать собственное приложение"; -App::$strings["Edit Personal App"] = "Редактировать собственное приложение"; -App::$strings["Ignore/Hide"] = "Игнорировать / Скрыть"; -App::$strings["Suggestions"] = "Рекомендации"; -App::$strings["See more..."] = "Просмотреть больше..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = ""; -App::$strings["Add New Connection"] = "Добавить новый контакт"; -App::$strings["Enter the channel address"] = "Введите адрес канала"; -App::$strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Заметки"; -App::$strings["Remove term"] = "Удалить термин"; -App::$strings["Archives"] = "Архивы"; -App::$strings["Refresh"] = "Обновить"; -App::$strings["Me"] = "Я"; -App::$strings["Best Friends"] = "Лучшие друзья"; -App::$strings["Co-workers"] = "Сотрудники"; -App::$strings["Former Friends"] = "Приятели"; -App::$strings["Acquaintances"] = "Знакомые"; -App::$strings["Everybody"] = "Все"; -App::$strings["Account settings"] = "Настройки аккаунта"; -App::$strings["Channel settings"] = "Настройки канала"; -App::$strings["Additional features"] = "Дополнительные функции"; -App::$strings["Feature settings"] = "Настройки компонентов"; -App::$strings["Display settings"] = "Настройки отображения"; -App::$strings["Connected apps"] = "Подключенные приложения"; -App::$strings["Export channel"] = "Экспорт канала"; -App::$strings["Automatic Permissions (Advanced)"] = "Автоматические разрешения (дополнительно)"; -App::$strings["Premium Channel Settings"] = "Настройки премиум канала"; -App::$strings["Check Mail"] = "Проверить снова"; -App::$strings["Chat Rooms"] = "Чаты"; -App::$strings["Bookmarked Chatrooms"] = "Закладки чатов"; -App::$strings["Suggested Chatrooms"] = "Рекомендуемые чаты"; -App::$strings["Save to Folder"] = "Сохранить в папку"; -App::$strings["View all"] = "Просмотреть все"; -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "не-нравится", - 1 => "не-нравится", - 2 => "не-нравится", +App::$strings["Import"] = "Импортировать"; +App::$strings["Import website..."] = "Импорт веб-сайта..."; +App::$strings["Select folder to import"] = "Выбрать каталог для импорта"; +App::$strings["Import from a zipped folder:"] = "Импортировать из каталога в zip-архиве:"; +App::$strings["Import from cloud files:"] = "Импортировать из сетевых файлов:"; +App::$strings["/cloud/channel/path/to/folder"] = ""; +App::$strings["Enter path to website files"] = "Введите путь к файлам веб-сайта"; +App::$strings["Select folder"] = "Выбрать каталог"; +App::$strings["Export website..."] = "Экспорт веб-сайта..."; +App::$strings["Export to a zip file"] = "Экспортировать в ZIP файл."; +App::$strings["website.zip"] = ""; +App::$strings["Enter a name for the zip file."] = "Введите имя для ZIP файла."; +App::$strings["Export to cloud files"] = "Эскпортировать в сетевые файлы:"; +App::$strings["/path/to/export/folder"] = ""; +App::$strings["Enter a path to a cloud files destination."] = "Введите путь к расположению сетевых файлов."; +App::$strings["Specify folder"] = "Указать каталог"; +App::$strings["Collection"] = "Коллекция"; +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."] = "Не верный токен безопасности для формы. Вероятно, это произошло потому, что форма была открыта слишком долго (> 3-х часов) перед его отправкой."; +App::$strings["Edit"] = "Изменить"; +App::$strings["(Unknown)"] = "(Неизвестный)"; +App::$strings["Visible to anybody on the internet."] = "Виден всем в интернете."; +App::$strings["Visible to you only."] = "Видно только вам."; +App::$strings["Visible to anybody in this network."] = "Видно всем в этой сети."; +App::$strings["Visible to anybody authenticated."] = "Видно всем аутентифицированным."; +App::$strings["Visible to anybody on %s."] = "Видно всем в %s."; +App::$strings["Visible to all connections."] = "Видно всем контактам."; +App::$strings["Visible to approved connections."] = "Видно только одобренным контактам."; +App::$strings["Visible to specific connections."] = "Видно указанным контактам."; +App::$strings["Item not found."] = "Элемент не найден."; +App::$strings["Privacy group not found."] = "Группа безопасности не найдена."; +App::$strings["Privacy group is empty."] = "Группа безопасности пуста"; +App::$strings["Privacy group: %s"] = "Группа безопасности: %s"; +App::$strings["Connection: %s"] = "Контакт: %s"; +App::$strings["Connection not found."] = "Контакт не найден."; +App::$strings["female"] = "женщина"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s обновила её %2\$s"; +App::$strings["male"] = "мужчина"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s обновил его %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s обновили их %2\$s"; +App::$strings["profile photo"] = "Фотография профиля"; +App::$strings["[Edited %s]"] = "[Отредактировано %s]"; +App::$strings["__ctx:edit_activity__ Post"] = "Публикация"; +App::$strings["__ctx:edit_activity__ Comment"] = "Комментарий"; +App::$strings["%d invitation available"] = array( + 0 => "доступно %d приглашение", + 1 => "доступны %d приглашения", + 2 => "доступны %d приглашений", ); -App::$strings["Add Star"] = "Добавить маркировку"; -App::$strings["Remove Star"] = "Удалить маркировку"; -App::$strings["Toggle Star Status"] = "Переключить статус маркировки"; -App::$strings["starred"] = "помеченные"; +App::$strings["Advanced"] = "Дополнительно"; +App::$strings["Find Channels"] = "Поиск каналов"; +App::$strings["Enter name or interest"] = "Впишите имя или интерес"; +App::$strings["Connect/Follow"] = "Подключить / отслеживать"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Владимир Ильич, Революционер"; +App::$strings["Find"] = "Поиск"; +App::$strings["Channel Suggestions"] = "Рекомендации каналов"; +App::$strings["Random Profile"] = "Случайный профиль"; +App::$strings["Invite Friends"] = "Пригласить друзей"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Расширенный пример: name=ivan and country=russia"; +App::$strings["Saved Folders"] = "Сохранённые каталоги"; +App::$strings["Everything"] = "Всё"; +App::$strings["Common Connections"] = "Общие контакты"; +App::$strings["View all %d common connections"] = "Просмотреть все %d общих контактов"; +App::$strings["Unable to obtain identity information from database"] = "Невозможно получить идентификационную информацию из базы данных"; +App::$strings["Empty name"] = "Пустое имя"; +App::$strings["Name too long"] = "Слишком длинное имя"; +App::$strings["No account identifier"] = "Идентификатор аккаунта отсутствует"; +App::$strings["Nickname is required."] = "Требуется псевдоним."; +App::$strings["Reserved nickname. Please choose another."] = "Зарезервированый псевдоним. Пожалуйста, выберите другой."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Псевдоним имеет недопустимые символы или уже используется на этом сайте."; +App::$strings["Unable to retrieve created identity"] = "Не удается получить созданный идентификатор"; +App::$strings["Default Profile"] = "Профиль по умолчанию"; +App::$strings["Friends"] = "Друзья"; +App::$strings["Unable to retrieve modified identity"] = "Не удается найти изменённый идентификатор"; +App::$strings["Requested profile is not available."] = "Запрашиваемый профиль не доступен."; +App::$strings["Change profile photo"] = "Изменить фотографию профиля"; +App::$strings["Create New Profile"] = "Создать новый профиль"; +App::$strings["Profile Image"] = "Изображение профиля"; +App::$strings["Visible to everybody"] = "Видно всем"; +App::$strings["Edit visibility"] = "Редактировать видимость"; +App::$strings["Gender:"] = "Пол:"; +App::$strings["Homepage:"] = "Домашняя страница:"; +App::$strings["Online Now"] = "Сейчас в сети"; +App::$strings["Change your profile photo"] = "Изменить фотографию вашего профиля"; +App::$strings["Trans"] = "Трансексуал"; +App::$strings["Neuter"] = "Среднего рода"; +App::$strings["Non-specific"] = "Неспецифический"; +App::$strings["Full Name:"] = "Полное имя:"; +App::$strings["Like this channel"] = "нравится этот канал"; +App::$strings["j F, Y"] = ""; +App::$strings["j F"] = ""; +App::$strings["Birthday:"] = "День рождения:"; +App::$strings["Age:"] = "Возраст:"; +App::$strings["for %1\$d %2\$s"] = "для %1\$d %2\$s"; +App::$strings["Tags:"] = "Теги:"; +App::$strings["Sexual Preference:"] = "Сексуальные предпочтения:"; +App::$strings["Hometown:"] = "Родной город:"; +App::$strings["Political Views:"] = "Политические взгляды:"; +App::$strings["Religion:"] = "Религия:"; +App::$strings["About:"] = "О себе:"; +App::$strings["Hobbies/Interests:"] = "Хобби / интересы:"; +App::$strings["Likes:"] = "Что вам нравится:"; +App::$strings["Dislikes:"] = "Что вам не нравится:"; +App::$strings["Contact information and Social Networks:"] = "Контактная информация и социальные сети:"; +App::$strings["My other channels:"] = "Мои другие каналы:"; +App::$strings["Musical interests:"] = "Музыкальные интересы:"; +App::$strings["Books, literature:"] = "Книги, литература:"; +App::$strings["Television:"] = "Телевидение:"; +App::$strings["Film/dance/culture/entertainment:"] = "Кино / танцы / культура / развлечения:"; +App::$strings["Love/Romance:"] = "Любовь / романтика:"; +App::$strings["Work/employment:"] = "Работа / занятость:"; +App::$strings["School/education:"] = "Школа / образование:"; +App::$strings["Profile"] = "Профиль"; +App::$strings["Like this thing"] = "нравится этo"; +App::$strings["Export"] = "Экспорт"; +App::$strings["cover photo"] = "фотография обложки"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)"; +App::$strings["Authenticate"] = "Проверка подлинности"; +App::$strings["Account '%s' deleted"] = "Аккаунт '%s' удален"; +App::$strings["General Features"] = "Главные функции"; +App::$strings["New Member Links"] = "Ссылки для новичков"; +App::$strings["Display new member quick links menu"] = "Показать меню быстрых ссылок для новых участников"; +App::$strings["Advanced Profiles"] = "Расширенные профили"; +App::$strings["Additional profile sections and selections"] = "Дополнительные секции и выборы профиля"; +App::$strings["Profile Import/Export"] = "Импорт / экспорт профиля"; +App::$strings["Save and load profile details across sites/channels"] = "Сохранение и загрузка настроек профиля на всех сайтах / каналах"; +App::$strings["Web Pages"] = "Веб-страницы"; +App::$strings["Provide managed web pages on your channel"] = "Предоставлять управляемые веб-страницы на Вашем канале"; +App::$strings["Provide a wiki for your channel"] = "Предоставьте Wiki для вашего канала"; +App::$strings["Private Notes"] = "Личные заметки"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Включает инструмент для хранения заметок и напоминаний (прим.: не зашифровано)"; +App::$strings["Create personal planning cards"] = "Создать личные карточки планирования"; +App::$strings["Create interactive articles"] = "Создать интерактивные статьи"; +App::$strings["Navigation Channel Select"] = "Выбор канала навигации"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Изменить канал напрямую из выпадающего меню"; +App::$strings["Photo Location"] = "Местоположение фотографии"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Если данные о местоположении доступны на загруженных фотографий, связать их с картой."; +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["Event Timezone Selection"] = "Выбор часового пояса события"; +App::$strings["Allow event creation in timezones other than your own."] = "Разрешить создание события в часовой зоне отличной от вашей"; +App::$strings["Premium Channel"] = "Премиум-канал"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Позволяет установить ограничения и условия для подключающихся к вашему каналу"; +App::$strings["Advanced Directory Search"] = "Расширенный поиск в каталоге"; +App::$strings["Allows creation of complex directory search queries"] = "Позволяет создание сложных поисковых запросов в каталоге"; +App::$strings["Advanced Theme and Layout Settings"] = "Расширенный настройки темы и отображения"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Разрешает тонкую настройку тем и шаблонов страниц"; +App::$strings["Access Control and Permissions"] = "Управление доступом и разрешениями"; +App::$strings["Enable management and selection of privacy groups"] = "Включить управление и выбор групп безопасности"; +App::$strings["Multiple Profiles"] = "Несколько профилей"; +App::$strings["Ability to create multiple profiles"] = "Возможность создания нескольких профилей"; +App::$strings["Permission Categories"] = "Категории разрешений"; +App::$strings["Create custom connection permission limits"] = "Создать пользовательские ограничения на доступ к подключению"; +App::$strings["OAuth1 Clients"] = "Клиенты OAuth1"; +App::$strings["Manage OAuth1 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth1 для мобильных и удалённых приложений."; +App::$strings["OAuth2 Clients"] = "Клиенты OAuth2"; +App::$strings["Manage OAuth2 authenticatication tokens for mobile and remote apps."] = "Управлять токенами аутентификации OAuth2 для мобильных и удалённых приложений."; +App::$strings["Access Tokens"] = "Токены доступа"; +App::$strings["Create access tokens so that non-members can access private content."] = "Создать токены доступа для доступа к приватному содержимому."; +App::$strings["Post Composition Features"] = "Функции создания публикаций"; +App::$strings["Large Photos"] = "Большие фотографии"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Включить большие (1024px) миниатюры изображений в публикациях. Если не включено, использовать маленькие (640px) миниатюры."; +App::$strings["Channel Sources"] = "Источники канала"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Автоматический импорт контента из других каналов или лент"; +App::$strings["Even More Encryption"] = "Еще больше шифрования"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Разрешить дополнительное end-to-end шифрование содержимого с общим секретным ключом"; +App::$strings["Enable Voting Tools"] = "Включить инструменты голосования"; +App::$strings["Provide a class of post which others can vote on"] = "Предоставь класс публикаций с возможностью голосования"; +App::$strings["Disable Comments"] = "Отключить комментарии"; +App::$strings["Provide the option to disable comments for a post"] = "Предоставить возможность отключать комментарии для публикаций"; +App::$strings["Delayed Posting"] = "Задержанная публикация"; +App::$strings["Allow posts to be published at a later date"] = "Разрешить размешать публикации следующими датами"; +App::$strings["Content Expiration"] = "Истечение срока действия содержимого"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Удалять публикации / комментарии и / или личные сообщения"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Подавлять дублирующие публикации / комментарии"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Предотвращает появление публикаций с одинаковым содержимым если интервал между ними менее 2 минут"; +App::$strings["Auto-save drafts of posts and comments"] = "Автоматически сохранять черновики публикаций и комментариев"; +App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "Автоматически сохраняет черновики публикаций и комментариев в локальном хранилище браузера для предотвращения их случайной утраты"; +App::$strings["Network and Stream Filtering"] = "Фильтрация сети и потока"; +App::$strings["Search by Date"] = "Поиск по дате"; +App::$strings["Ability to select posts by date ranges"] = "Возможность выбора сообщений по диапазонам дат"; +App::$strings["Saved Searches"] = "Сохранённые поиски"; +App::$strings["Save search terms for re-use"] = "Сохранять результаты поиска для повторного использования"; +App::$strings["Alternate Stream Order"] = "Отображение потока"; +App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "Возможность показывать поток по дате последнего сообщения, последнего комментария или в порядке поступления"; +App::$strings["Contact Filter"] = "Фильтр контактов"; +App::$strings["Ability to display only posts of a selected contact"] = "Возможность показа публикаций только от выбранных контактов"; +App::$strings["Forum Filter"] = "Фильтр по форумам"; +App::$strings["Ability to display only posts of a specific forum"] = "Возможность показа публикаций только определённого форума"; +App::$strings["Personal Posts Filter"] = "Персональный фильтр публикаций"; +App::$strings["Ability to display only posts that you've interacted on"] = "Возможность показа только тех публикаций с которыми вы взаимодействовали"; +App::$strings["Affinity Tool"] = "Инструмент сходства / соответствия"; +App::$strings["Filter stream activity by depth of relationships"] = "Фильтровать потоки активности по глубине отношений"; +App::$strings["Suggest Channels"] = "Предлагаемые каналы"; +App::$strings["Show friend and connection suggestions"] = "Показать предложения в друзья"; +App::$strings["Connection Filtering"] = "Фильтрация контактов"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Фильтр входящих сообщений от контактов на основе ключевых слов / контента"; +App::$strings["Post/Comment Tools"] = "Инструменты публикаций / комментариев"; +App::$strings["Community Tagging"] = "Отметки сообщества"; +App::$strings["Ability to tag existing posts"] = "Возможность помечать тегами существующие публикации"; +App::$strings["Post Categories"] = "Категории публикаций"; +App::$strings["Add categories to your posts"] = "Добавить категории для ваших публикаций"; +App::$strings["Emoji Reactions"] = "Реакции Emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Возможность добавлять реакции Emoji к публикациям"; +App::$strings["Ability to file posts under folders"] = "Возможность размещать публикации в каталогах"; +App::$strings["Dislike Posts"] = "Не нравящиеся публикации"; +App::$strings["Ability to dislike posts/comments"] = "Возможность отмечать не нравящиеся публикации / комментарии"; +App::$strings["Star Posts"] = "Помечать сообщения"; +App::$strings["Ability to mark special posts with a star indicator"] = "Возможность отметить специальные сообщения индикатором-звёздочкой"; +App::$strings["Tag Cloud"] = "Облако тегов"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Показывает личное облако тегов на странице канала"; +App::$strings["Unable to determine sender."] = "Невозможно определить отправителя."; +App::$strings["No recipient provided."] = "Получатель не предоставлен."; +App::$strings["[no subject]"] = "[без темы]"; +App::$strings["Stored post could not be verified."] = "Сохранённая публикация не может быть проверена."; +App::$strings["Frequently"] = "Часто"; +App::$strings["Hourly"] = "Ежечасно"; +App::$strings["Twice daily"] = "Дважды в день"; +App::$strings["Daily"] = "Ежедневно"; +App::$strings["Weekly"] = "Еженедельно"; +App::$strings["Monthly"] = "Ежемесячно"; +App::$strings["Currently Male"] = "В настоящее время мужской"; +App::$strings["Currently Female"] = "В настоящее время женский"; +App::$strings["Mostly Male"] = "В основном мужской"; +App::$strings["Mostly Female"] = "В основном женский"; +App::$strings["Transgender"] = "Трансгендер"; +App::$strings["Intersex"] = "Интерсексуал"; +App::$strings["Transsexual"] = "Транссексуал"; +App::$strings["Hermaphrodite"] = "Гермафродит"; +App::$strings["Undecided"] = "Не решил"; +App::$strings["Males"] = "Мужчины"; +App::$strings["Females"] = "Женщины"; +App::$strings["Gay"] = "Гей"; +App::$strings["Lesbian"] = "Лесбиянка"; +App::$strings["No Preference"] = "Без предпочтений"; +App::$strings["Bisexual"] = "Бисексуал"; +App::$strings["Autosexual"] = "Автосексуал"; +App::$strings["Abstinent"] = "Воздержание"; +App::$strings["Virgin"] = "Девственник"; +App::$strings["Deviant"] = "Отклоняющийся от нормы"; +App::$strings["Fetish"] = "Фетишист"; +App::$strings["Oodles"] = "Множественный"; +App::$strings["Nonsexual"] = "Асексуал"; +App::$strings["Single"] = "Одиночка"; +App::$strings["Lonely"] = "Одинокий"; +App::$strings["Available"] = "Свободен"; +App::$strings["Unavailable"] = "Занят"; +App::$strings["Has crush"] = "Влюблён"; +App::$strings["Infatuated"] = "без ума"; +App::$strings["Dating"] = "Встречаюсь"; +App::$strings["Unfaithful"] = "Неверный"; +App::$strings["Sex Addict"] = "Эротоман"; +App::$strings["Friends/Benefits"] = "Друзья / Выгоды"; +App::$strings["Casual"] = "Легкомысленный"; +App::$strings["Engaged"] = "Помолвлен"; +App::$strings["Married"] = "В браке"; +App::$strings["Imaginarily married"] = "В воображаемом браке"; +App::$strings["Partners"] = "Партнёрство"; +App::$strings["Cohabiting"] = "Сожительствующие"; +App::$strings["Common law"] = "Гражданский брак"; +App::$strings["Happy"] = "Счастлив"; +App::$strings["Not looking"] = "Не нуждаюсь"; +App::$strings["Swinger"] = "Свингер"; +App::$strings["Betrayed"] = "Предан"; +App::$strings["Separated"] = "Разделён"; +App::$strings["Unstable"] = "Нестабильно"; +App::$strings["Divorced"] = "В разводе"; +App::$strings["Imaginarily divorced"] = "В воображаемом разводе"; +App::$strings["Widowed"] = "Вдовец / вдова"; +App::$strings["Uncertain"] = "Неопределенный"; +App::$strings["It's complicated"] = "Это сложно"; +App::$strings["Don't care"] = "Всё равно"; +App::$strings["Ask me"] = "Спроси меня"; +App::$strings["Delete this item?"] = "Удалить этот элемент?"; +App::$strings["Comment"] = "Комментарий"; +App::$strings["%s show all"] = "%s показать всё"; +App::$strings["%s show less"] = "%s показать меньше"; +App::$strings["%s expand"] = "%s развернуть"; +App::$strings["%s collapse"] = "%s свернуть"; +App::$strings["Password too short"] = "Пароль слишком короткий"; +App::$strings["Passwords do not match"] = "Пароли не совпадают"; +App::$strings["everybody"] = "все"; +App::$strings["Secret Passphrase"] = "Тайный пароль"; +App::$strings["Passphrase hint"] = "Подсказка для пароля"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Уведомление: Права доступа изменились, но до сих пор не сохранены."; +App::$strings["close all"] = "закрыть все"; +App::$strings["Nothing new here"] = "Здесь нет ничего нового"; +App::$strings["Rate This Channel (this is public)"] = "Оценкa этoго канала (общедоступно)"; +App::$strings["Rating"] = "Оценка"; +App::$strings["Describe (optional)"] = "Охарактеризовать (необязательно)"; +App::$strings["Please enter a link URL"] = "Пожалуйста, введите URL ссылки"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Есть несохраненные изменения. Вы уверены, что хотите покинуть эту страницу?"; +App::$strings["Location"] = "Место"; +App::$strings["lovely"] = "прекрасно"; +App::$strings["wonderful"] = "замечательно"; +App::$strings["fantastic"] = "фантастично"; +App::$strings["great"] = "отлично"; +App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "Выбранный вами псевдоним уже используется или недействителен. Попробуйте использовать наше предложение ("; +App::$strings[") or enter a new one."] = ") или введите новый."; +App::$strings["Thank you, this nickname is valid."] = "Спасибо, этот псевдоним может быть использован."; +App::$strings["A channel name is required."] = "Требуется название канала."; +App::$strings["This is a "] = "Это "; +App::$strings[" channel name"] = " название канала"; +App::$strings["timeago.prefixAgo"] = ""; +App::$strings["timeago.prefixFromNow"] = ""; +App::$strings["timeago.suffixAgo"] = "назад"; +App::$strings["timeago.suffixFromNow"] = ""; +App::$strings["less than a minute"] = "менее чем одну минуту"; +App::$strings["about a minute"] = "около минуты"; +App::$strings["%d minutes"] = "%d минут"; +App::$strings["about an hour"] = "около часа"; +App::$strings["about %d hours"] = "около %d часов"; +App::$strings["a day"] = "день"; +App::$strings["%d days"] = "%d дней"; +App::$strings["about a month"] = "около месяца"; +App::$strings["%d months"] = "%d месяцев"; +App::$strings["about a year"] = "около года"; +App::$strings["%d years"] = "%d лет"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = ""; +App::$strings["__ctx:long__ May"] = "Май"; +App::$strings["Jan"] = "Янв"; +App::$strings["Feb"] = "Фев"; +App::$strings["Mar"] = "Мар"; +App::$strings["Apr"] = "Апр"; +App::$strings["__ctx:short__ May"] = "Май"; +App::$strings["Jun"] = "Июн"; +App::$strings["Jul"] = "Июл"; +App::$strings["Aug"] = "Авг"; +App::$strings["Sep"] = "Сен"; +App::$strings["Oct"] = "Окт"; +App::$strings["Nov"] = "Ноя"; +App::$strings["Dec"] = "Дек"; +App::$strings["Sun"] = "Вск"; +App::$strings["Mon"] = "Пон"; +App::$strings["Tue"] = "Вт"; +App::$strings["Wed"] = "Ср"; +App::$strings["Thu"] = "Чет"; +App::$strings["Fri"] = "Пят"; +App::$strings["Sat"] = "Суб"; +App::$strings["__ctx:calendar__ today"] = "сегодня"; +App::$strings["__ctx:calendar__ month"] = "месяц"; +App::$strings["__ctx:calendar__ week"] = "неделя"; +App::$strings["__ctx:calendar__ day"] = "день"; +App::$strings["__ctx:calendar__ All day"] = "Весь день"; +App::$strings["View PDF"] = "Просмотреть PDF"; +App::$strings[" by "] = " по "; +App::$strings[" on "] = " на "; +App::$strings["Embedded content"] = "Встроенное содержимое"; +App::$strings["Embedding disabled"] = "Встраивание отключено"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Файл превышает предельный размер для сайта в %lu байт"; +App::$strings["Image file is empty."] = "Файл изображения пуст."; +App::$strings["Unable to process image"] = "Не удается обработать изображение"; +App::$strings["Photo storage failed."] = "Ошибка хранилища фотографий."; +App::$strings["a new photo"] = "новая фотография"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s опубликовал %2\$s в %3\$s"; +App::$strings["Recent Photos"] = "Последние фотографии"; +App::$strings["Upload New Photos"] = "Загрузить новые фотографии"; +App::$strings["New window"] = "Новое окно"; +App::$strings["Open the selected location in a different window or browser tab"] = "Открыть выбранное местоположение в другом окне или вкладке браузера"; +App::$strings["Wiki updated successfully"] = "Wiki успешно обновлена"; +App::$strings["Wiki files deleted successfully"] = "Wiki успешно удалена"; +App::$strings["0. Beginner/Basic"] = "Начинающий / Базовый"; +App::$strings["1. Novice - not skilled but willing to learn"] = "1. Новичок - не опытный, но желающий учиться"; +App::$strings["2. Intermediate - somewhat comfortable"] = "2. Промежуточный - более удобный"; +App::$strings["3. Advanced - very comfortable"] = "3. Продвинутый - очень удобный"; +App::$strings["4. Expert - I can write computer code"] = "4. Эксперт - я умею программировать"; +App::$strings["5. Wizard - I probably know more than you do"] = "5. Волшебник - возможно я знаю больше чем ты"; +App::$strings["Public"] = "Общедоступно"; +App::$strings["Anybody in the \$Projectname network"] = "Любому в сети \$Projectname"; +App::$strings["Any account on %s"] = "Любой аккаунт в %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["Admin Delete"] = "Удалено администратором"; +App::$strings["Save to Folder"] = "Сохранить в каталог"; +App::$strings["I will attend"] = "Я буду присутствовать"; +App::$strings["I will not attend"] = "Я не буду присутствовать"; +App::$strings["I might attend"] = "Я возможно буду присутствовать"; +App::$strings["I agree"] = "Я согласен"; +App::$strings["I disagree"] = "Я не согласен"; +App::$strings["I abstain"] = "Я воздержался"; +App::$strings["View all"] = "Просмотреть все"; App::$strings["Add Tag"] = "Добавить тег"; App::$strings["I like this (toggle)"] = "мне это нравится (переключение)"; App::$strings["I don't like this (toggle)"] = "мне это не нравится (переключение)"; App::$strings["Share This"] = "Поделиться этим"; App::$strings["share"] = "поделиться"; -App::$strings["View %s's profile - %s"] = "Просмотр %s's профиля - %s"; -App::$strings["to"] = "к"; -App::$strings["via"] = "через"; -App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; -App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; -App::$strings["Save Bookmarks"] = "Сохранить закладки"; -App::$strings["Add to Calendar"] = "Добавить в календарь"; -App::$strings["__ctx:noun__ Likes"] = "нравится"; -App::$strings["__ctx:noun__ Dislikes"] = "не-нравится"; +App::$strings["Delivery Report"] = "Отчёт о доставке"; App::$strings["%d comment"] = array( 0 => "%d комментарий", 1 => "%d комментария", 2 => "%d комментариев", ); -App::$strings["[+] show all"] = "[+] показать все"; +App::$strings["View %s's profile - %s"] = "Просмотр %s профиля - %s"; +App::$strings["to"] = "к"; +App::$strings["via"] = "через"; +App::$strings["Wall-to-Wall"] = "Стена-к-Стене"; +App::$strings["via Wall-To-Wall:"] = "через Стена-к-Стене:"; +App::$strings["Attend"] = "Посетить"; +App::$strings["Attendance Options"] = "Параметры посещаемости"; +App::$strings["Vote"] = "Голосовать"; +App::$strings["Voting Options"] = "Параметры голосования"; +App::$strings["Add to Calendar"] = "Добавить в календарь"; +App::$strings["Mark all seen"] = "Отметить как просмотренное"; +App::$strings["__ctx:noun__ Likes"] = "Нравится"; +App::$strings["__ctx:noun__ Dislikes"] = "Не нравится"; App::$strings["This is you"] = "Это вы"; -App::$strings["Comment"] = "Комментарий"; -App::$strings["Submit"] = "Отправить"; -App::$strings["Bold"] = "Жирный"; -App::$strings["Italic"] = "Курсив"; -App::$strings["Underline"] = "Подчеркнутый"; -App::$strings["Quote"] = "Цитата"; -App::$strings["Code"] = "Код"; App::$strings["Image"] = "Изображение"; -App::$strings["Link"] = "Ссылка"; +App::$strings["Insert Link"] = "Вставить ссылку"; App::$strings["Video"] = "Видео"; -App::$strings["Delete this item?"] = "Удалить этот элемент?"; -App::$strings["[-] show less"] = "[-] показать меньше"; -App::$strings["[+] expand"] = "[+] развернуть"; -App::$strings["[-] collapse"] = "[-] свернуть"; -App::$strings["Password too short"] = "Пароль слишком короткий"; -App::$strings["Passwords do not match"] = "Пароли не совпадают"; -App::$strings["everybody"] = "все"; -App::$strings["Secret Passphrase"] = "Тайный пароль"; -App::$strings["Passphrase hint"] = ""; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = ""; -App::$strings["close all"] = "закрыть все"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "тому назад"; -App::$strings["from now"] = "с этого времени"; -App::$strings["less than a minute"] = "менее чем одну минуту назад"; -App::$strings["about a minute"] = "около минуты"; -App::$strings["%d minutes"] = "%d мин."; -App::$strings["about an hour"] = "около часа"; -App::$strings["about %d hours"] = "около %d час."; -App::$strings["a day"] = "день"; -App::$strings["%d days"] = "%d дн."; -App::$strings["about a month"] = "около месяца"; -App::$strings["%d months"] = "%d мес."; -App::$strings["about a year"] = "около года"; -App::$strings["%d years"] = "%d лет"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["New window"] = "Новое окно"; -App::$strings["Open the selected location in a different window or browser tab"] = "Откройте выбранное местоположение в другом окне или вкладке браузера"; -App::$strings["Male"] = "Мужской"; -App::$strings["Female"] = "Женский"; -App::$strings["Currently Male"] = "В настоящее время мужской"; -App::$strings["Currently Female"] = "В настоящее время женский"; -App::$strings["Mostly Male"] = "В основном мужской"; -App::$strings["Mostly Female"] = "В основном женский"; -App::$strings["Transgender"] = "Транссексуал"; -App::$strings["Intersex"] = "Intersex"; -App::$strings["Transsexual"] = "Транссексуал"; -App::$strings["Hermaphrodite"] = "Гермафродит"; -App::$strings["Neuter"] = "Среднего рода"; -App::$strings["Non-specific"] = "Неспецифический"; -App::$strings["Other"] = "Другой"; -App::$strings["Undecided"] = "Нерешительный"; -App::$strings["Males"] = "Самец"; -App::$strings["Females"] = "Самка"; -App::$strings["Gay"] = "Гей"; -App::$strings["Lesbian"] = "Лесбиянка"; -App::$strings["No Preference"] = "Без предпочтений"; -App::$strings["Bisexual"] = "Двуполый"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Воздержанный"; -App::$strings["Virgin"] = "Девственница"; -App::$strings["Deviant"] = "Отклоняющийся от нормы"; -App::$strings["Fetish"] = "Фетиш"; -App::$strings["Oodles"] = "Множественный"; -App::$strings["Nonsexual"] = "Несексуальный"; -App::$strings["Single"] = "Одинок"; -App::$strings["Lonely"] = "Уединенный"; -App::$strings["Available"] = "Доступный"; -App::$strings["Unavailable"] = "Недоступный"; -App::$strings["Has crush"] = "Столкновение"; -App::$strings["Infatuated"] = "Влюбленный"; -App::$strings["Dating"] = "Датировка"; -App::$strings["Unfaithful"] = "Неверный"; -App::$strings["Sex Addict"] = "Секс наркоман"; -App::$strings["Friends/Benefits"] = "Друзья / Преимущества"; -App::$strings["Casual"] = "Случайный"; -App::$strings["Engaged"] = "Помолвленный"; -App::$strings["Married"] = "Женат"; -App::$strings["Imaginarily married"] = "Мысленно женат"; -App::$strings["Partners"] = "Партнеры"; -App::$strings["Cohabiting"] = "Сожительствующие"; -App::$strings["Common law"] = ""; -App::$strings["Happy"] = "Счастливый"; -App::$strings["Not looking"] = "Не нуждаюсь"; -App::$strings["Swinger"] = ""; -App::$strings["Betrayed"] = ""; -App::$strings["Separated"] = ""; -App::$strings["Unstable"] = "Колеблющийся"; -App::$strings["Divorced"] = "Разведенный"; -App::$strings["Imaginarily divorced"] = "Мысленно разведенный"; -App::$strings["Widowed"] = "Овдовевший"; -App::$strings["Uncertain"] = "Неопределенный"; -App::$strings["It's complicated"] = "Это сложно"; -App::$strings["Don't care"] = "Не заботьтесь"; -App::$strings["Ask me"] = "Спроси меня"; -App::$strings["Logged out."] = "Вышел из системы."; -App::$strings["Failed authentication"] = "Ошибка аутентификации"; -App::$strings["Login failed."] = "Не удалось войти."; -App::$strings["Permission denied"] = "Доступ запрещен"; -App::$strings["(Unknown)"] = "(Неизвестный)"; -App::$strings["Item not found."] = "Элемент не найден."; -App::$strings["Collection not found."] = "Коллекция не найдена."; -App::$strings["Collection is empty."] = "Коллекция пуста."; -App::$strings["Collection: %s"] = "Коллекции: %s"; -App::$strings["Connection: %s"] = "Контакты: %s"; -App::$strings["Connection not found."] = "Контакт не найден."; -App::$strings["Can view my \"public\" stream and posts"] = "Может просматривать мои \"публичные\" поток и сообщения"; -App::$strings["Can view my \"public\" channel profile"] = "Может просматривать мой \"публичный\" профиль канала"; -App::$strings["Can view my \"public\" photo albums"] = "Может просматривать мои \"публичные\" фотоальбомы"; -App::$strings["Can view my \"public\" address book"] = "Может просматривать мою \"публичную\" адресную книгу"; -App::$strings["Can view my \"public\" file storage"] = "Может просматривать мои \"публичные\" файлы"; -App::$strings["Can view my \"public\" pages"] = "Может просматривать мои \"публичные\" страницы"; -App::$strings["Can send me their channel stream and posts"] = "Может прислать мне свои потоки и сообщения"; -App::$strings["Can post on my channel page (\"wall\")"] = "Может публиковать на моей странице канала (\"стена\")"; -App::$strings["Can comment on my posts"] = "Может комментировать мои сообщения"; -App::$strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте"; -App::$strings["Can post photos to my photo albums"] = "Может публиковать фотографии в мои фотоальбомы"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = ""; -App::$strings["Advanced - useful for creating group forum channels"] = ""; -App::$strings["Can chat with me (when available)"] = "Можете общаться со мной в чате (при наличии)"; -App::$strings["Can write to my \"public\" file storage"] = "Может писать в моё \"публичное\" хранилище файлов"; -App::$strings["Can edit my \"public\" pages"] = "Может редактировать мои \"публичные\" страницы"; -App::$strings["Can source my \"public\" posts in derived channels"] = ""; -App::$strings["Somewhat advanced - very useful in open communities"] = ""; -App::$strings["Can administer my channel resources"] = "Может администрировать мои ресурсы канала"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = ""; -App::$strings["Set your current mood and tell your friends"] = ""; -App::$strings["Menu not found."] = "Меню не найдено."; -App::$strings["Menu element updated."] = "Меню обновлено."; -App::$strings["Unable to update menu element."] = ""; -App::$strings["Menu element added."] = "Элемент меню добавлен."; -App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; -App::$strings["Not found."] = "Не найдено."; -App::$strings["Manage Menu Elements"] = "Управление элементов меню"; -App::$strings["Edit menu"] = "Редактировать меню"; -App::$strings["Edit element"] = "Редактировать элемент"; -App::$strings["Drop element"] = "Удалить элемент"; -App::$strings["New element"] = "Новый элемент"; -App::$strings["Edit this menu container"] = ""; -App::$strings["Add menu element"] = "Добавить элемент меню"; -App::$strings["Delete this menu item"] = "Удалить элемент меню"; -App::$strings["Edit this menu item"] = "Редактировать элемент меню"; -App::$strings["New Menu Element"] = "Новый элемент меню"; -App::$strings["Menu Item Permissions"] = ""; -App::$strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)"; -App::$strings["Link text"] = "Текст ссылки"; -App::$strings["URL of link"] = "URL ссылки"; -App::$strings["Use Red magic-auth if available"] = ""; -App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; -App::$strings["Order in list"] = ""; -App::$strings["Higher numbers will sink to bottom of listing"] = ""; -App::$strings["Menu item not found."] = "Элемент меню не найден."; -App::$strings["Menu item deleted."] = "Элемент меню удален."; -App::$strings["Menu item could not be deleted."] = ""; -App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; -App::$strings["Modify"] = "Изменить"; -App::$strings["sent you a private message"] = "отправил вам личное сообщение"; -App::$strings["added your channel"] = "добавил ваш канал"; -App::$strings["posted an event"] = ""; -App::$strings["network"] = "сеть"; -App::$strings["Name is required"] = "Необходимо имя"; -App::$strings["Key and Secret are required"] = ""; -App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; -App::$strings["Password changed."] = "Пароль изменен."; -App::$strings["Password update failed. Please try again."] = "Изменение пароля закончилось неуспешно. Пожалуйста, попробуйте еще раз."; -App::$strings["Not valid email."] = "Не действительный адрес электронной почты."; -App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; -App::$strings["System failure storing new email. Please try again."] = ""; -App::$strings["Settings updated."] = "Настройки обновленны."; -App::$strings["Add application"] = "Добавить приложения"; -App::$strings["Name"] = "Имя"; -App::$strings["Name of application"] = "Название приложения"; -App::$strings["Consumer Key"] = "Ключ клиента"; -App::$strings["Automatically generated - change if desired. Max length 20"] = ""; -App::$strings["Consumer Secret"] = "Секрет клиента"; -App::$strings["Redirect"] = "Перенаправление"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = ""; -App::$strings["Icon url"] = "URL-адрес значка"; -App::$strings["Optional"] = "Необязательно"; -App::$strings["You can't edit this application."] = "Вы не можете редактировать это приложение."; -App::$strings["Connected Apps"] = "Подключенные приложения"; -App::$strings["Client key starts with"] = ""; -App::$strings["No name"] = "Без названия"; -App::$strings["Remove authorization"] = "Удалить разрешение"; -App::$strings["No feature settings configured"] = "Параметры функций не настроены"; -App::$strings["Feature Settings"] = "Настройки функции"; -App::$strings["Account Settings"] = "Настройки аккаунта"; -App::$strings["Password Settings"] = "Настройки пароля"; -App::$strings["New Password:"] = "Новый пароль:"; -App::$strings["Confirm:"] = "Подтверждение:"; -App::$strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми, если не меняется"; -App::$strings["Email Address:"] = "Адрес электронной почты:"; -App::$strings["Remove Account"] = "Удалить аккаунт"; -App::$strings["Warning: This action is permanent and cannot be reversed."] = ""; -App::$strings["Off"] = "Выкл."; -App::$strings["On"] = "Вкл."; -App::$strings["Additional Features"] = "Дополнительные функции"; -App::$strings["Connector Settings"] = "Настройки соединителя"; -App::$strings["No special theme for mobile devices"] = "Нет специальной темы для мобильных устройств"; -App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; -App::$strings["Display Settings"] = "Настройки отображения"; -App::$strings["Display Theme:"] = "Тема отображения:"; -App::$strings["Mobile Theme:"] = "Мобильная тема отображения:"; -App::$strings["Update browser every xx seconds"] = "Обновление браузера каждые ХХ секунд"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума"; -App::$strings["Maximum number of conversations to load at any time:"] = ""; -App::$strings["Maximum of 100 items"] = "Максимум 100 элементов"; -App::$strings["Don't show emoticons"] = "Не показывать emoticons"; -App::$strings["System Page Layout Editor - (advanced)"] = ""; -App::$strings["Nobody except yourself"] = "Никто, кроме вас"; -App::$strings["Only those you specifically allow"] = "Только комы вы разрешили"; -App::$strings["Approved connections"] = "Утвержденные контакты"; -App::$strings["Any connections"] = "Все контакты"; -App::$strings["Anybody on this website"] = "Любой на этом веб-сайте"; -App::$strings["Anybody in this network"] = "Любой в этой сети"; -App::$strings["Anybody authenticated"] = ""; -App::$strings["Anybody on the internet"] = "Любой в интернете"; -App::$strings["Publish your default profile in the network directory"] = "Публикация вашего профиля по умолчанию в каталоге сети"; -App::$strings["No"] = "Нет"; -App::$strings["Yes"] = "Да"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = ""; -App::$strings["or"] = "или"; -App::$strings["Your channel address is"] = "Адрес канала:"; -App::$strings["Channel Settings"] = "Настройки канала"; -App::$strings["Basic Settings"] = "Основные настройки"; -App::$strings["Your Timezone:"] = "Часовой пояс:"; -App::$strings["Default Post Location:"] = "Откуда по умолчанию:"; -App::$strings["Geographical location to display on your posts"] = ""; -App::$strings["Use Browser Location:"] = "Использовать указание браузерa:"; -App::$strings["Adult Content"] = "Содержимое для взрослых"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = ""; -App::$strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности"; -App::$strings["Hide my online presence"] = "Скрыть мое присутствие"; -App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает показ в вашем профиле, что вы онлайн"; -App::$strings["Simple Privacy Settings:"] = "Быстрые настройки:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = ""; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = ""; -App::$strings["Private - default private, never open or public"] = ""; -App::$strings["Blocked - default blocked to/from everybody"] = ""; -App::$strings["Allow others to tag your posts"] = "Разрешить другим помечать сообщения"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = ""; -App::$strings["Advanced Privacy Settings"] = "Дополнительные настройки"; -App::$strings["Expire other channel content after this many days"] = ""; -App::$strings["0 or blank prevents expiration"] = ""; -App::$strings["Maximum Friend Requests/Day:"] = ""; -App::$strings["May reduce spam activity"] = "Может уменьшить активность спам"; -App::$strings["Default Post Permissions"] = "Настройки по умолчанию"; -App::$strings["Maximum private messages per day from unknown people:"] = "Максимальное количество личных сообщений от незнакомых людей:"; -App::$strings["Useful to reduce spamming"] = "Полезно для уменьшения активности спам"; +App::$strings["Your full name (required)"] = "Ваше полное имя (требуется)"; +App::$strings["Your email address (required)"] = "Ваш адрес электронной почты (требуется)"; +App::$strings["Your website URL (optional)"] = "URL вашего вебсайта (необязательно)"; +App::$strings["Apps"] = "Приложения"; +App::$strings["Site Admin"] = "Администратор сайта"; +App::$strings["View Bookmarks"] = "Просмотреть закадки"; +App::$strings["My Chatrooms"] = "Мои чаты"; +App::$strings["Remote Diagnostics"] = "Удалённая диагностика"; +App::$strings["Activity"] = "Активность"; +App::$strings["Channel Home"] = "Главная канала"; +App::$strings["Directory"] = "Каталог"; +App::$strings["Mail"] = "Переписка"; +App::$strings["Mood"] = "Настроение"; +App::$strings["Chat"] = "Чат"; +App::$strings["Probe"] = "Проба"; +App::$strings["Suggest"] = "Предложить"; +App::$strings["Random Channel"] = "Случайный канал"; +App::$strings["Invite"] = "Пригласить"; +App::$strings["Features"] = "Функции"; +App::$strings["Post"] = "Публикация"; +App::$strings["Profiles"] = "Редактировать профиль"; +App::$strings["Notifications"] = "Оповещения"; +App::$strings["Order Apps"] = "Порядок приложений"; +App::$strings["Update"] = "Обновить"; +App::$strings["Install"] = "Установить"; +App::$strings["Purchase"] = "Купить"; +App::$strings["Undelete"] = "Восстановить"; +App::$strings["Add to app-tray"] = "Добавить в app-tray"; +App::$strings["Remove from app-tray"] = "Удалить из app-tray"; +App::$strings["Pin to navbar"] = "Добавить на панель навигации"; +App::$strings["Unpin from navbar"] = "Удалить с панели навигации"; +App::$strings["\$Projectname Notification"] = "Оповещение \$Projectname "; +App::$strings["Thank You,"] = "Спасибо,"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Это письмо было отправлено %1\$s на %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Чтобы прекратить получать эти сообщения, настройте параметры уведомлений в %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Чтобы прекратить получать эти сообщения, пожалуйста измените %s."; App::$strings["Notification Settings"] = "Настройки уведомлений"; -App::$strings["By default post a status message when:"] = ""; -App::$strings["accepting a friend request"] = ""; -App::$strings["joining a forum/community"] = ""; -App::$strings["making an interesting profile change"] = ""; -App::$strings["Send a notification email when:"] = "Отправить уведомление по электронной почте, если:"; -App::$strings["You receive a connection request"] = ""; -App::$strings["Your connections are confirmed"] = ""; -App::$strings["Someone writes on your profile wall"] = ""; -App::$strings["Someone writes a followup comment"] = ""; -App::$strings["You receive a private message"] = "Вы получили личное сообщение"; -App::$strings["You receive a friend suggestion"] = "Вы получили предложение дружить"; -App::$strings["You are tagged in a post"] = ""; -App::$strings["You are poked/prodded/etc. in a post"] = ""; -App::$strings["Advanced Account/Page Type Settings"] = ""; -App::$strings["Change the behaviour of this account for special situations"] = ""; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = ""; -App::$strings["Miscellaneous Settings"] = "Дополнительные настройки"; -App::$strings["Personal menu to display in your channel pages"] = ""; -App::$strings["Poke/Prod"] = ""; -App::$strings["poke, prod or do other things to somebody"] = ""; -App::$strings["Recipient"] = "Получатель"; -App::$strings["Choose what you wish to do to recipient"] = ""; -App::$strings["Make this post private"] = "Сделать это сообщение личным"; -App::$strings["Authorize application connection"] = ""; -App::$strings["Return to your app and insert this Securty Code:"] = ""; -App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = ""; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = ""; -App::$strings["Welcome %s. Remote authentication successful."] = "Добро пожаловать %s. Удаленная аутентификация успешно завершена."; -App::$strings["Item not available."] = "Элемент недоступен."; -App::$strings["Fetching URL returns error: %1\$s"] = ""; -App::$strings["Invalid item."] = "Недействительный элемент."; -App::$strings["Channel not found."] = "Канал не найден."; -App::$strings["Page not found."] = "Страница не найдена."; -App::$strings["Image uploaded but image cropping failed."] = ""; -App::$strings["Image resize failed."] = "Изменение размера изображения не удалось."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = ""; -App::$strings["Image exceeds size limit of %d"] = ""; -App::$strings["Unable to process image."] = "Невозможно обработать изображение."; -App::$strings["Photo not available."] = "Фотография не доступна."; -App::$strings["Upload File:"] = "Загрузить файл:"; -App::$strings["Select a profile:"] = "Выберите профиль:"; -App::$strings["Upload Profile Photo"] = "Загрузить фотографию профиля"; -App::$strings["skip this step"] = "пропустить этот шаг"; -App::$strings["select a photo from your photo albums"] = ""; -App::$strings["Crop Image"] = "Обрезать изображение"; -App::$strings["Please adjust the image cropping for optimum viewing."] = ""; -App::$strings["Done Editing"] = "Закончить редактирование"; -App::$strings["Image uploaded successfully."] = "Загрузка изображениея прошла успешно."; -App::$strings["Image upload failed."] = "Загрузка изображениея прошла безуспешно."; -App::$strings["Image size reduction [%s] failed."] = ""; -App::$strings["Block Name"] = "Название блока"; -App::$strings["Profile not found."] = "Профиль не найден."; -App::$strings["Profile deleted."] = "Профиль удален."; -App::$strings["Profile-"] = "Профиль-"; -App::$strings["New profile created."] = "Новый профиль создан."; -App::$strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования."; -App::$strings["Profile Name is required."] = "Имя профиля требуется."; -App::$strings["Marital Status"] = "Семейное положение"; -App::$strings["Romantic Partner"] = "Романтический партнер"; -App::$strings["Likes"] = "нравится"; -App::$strings["Dislikes"] = "не-нравится"; -App::$strings["Work/Employment"] = "Работа / Занятость"; -App::$strings["Religion"] = "Религия"; -App::$strings["Political Views"] = "Политические взгляды"; -App::$strings["Gender"] = "Пол"; -App::$strings["Sexual Preference"] = "Сексуальная ориентация"; -App::$strings["Homepage"] = "Домашняя страница"; -App::$strings["Interests"] = "Интересы"; -App::$strings["Address"] = "Адрес"; -App::$strings["Location"] = "Место"; -App::$strings["Profile updated."] = "Профиль обновлен."; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать от просмотра ваш список контактов/друзей в этом профиле?"; -App::$strings["Edit Profile Details"] = "Редактирование профиля"; -App::$strings["View this profile"] = "Посмотреть этот профиль"; -App::$strings["Change Profile Photo"] = "Изменить фотографию профиля"; -App::$strings["Create a new profile using these settings"] = "Создайте новый профиль со следующими настройками"; -App::$strings["Clone this profile"] = "Клонировать этот профиль"; -App::$strings["Delete this profile"] = "Удалить этот профиль"; -App::$strings["Profile Name:"] = "Имя профиля:"; -App::$strings["Your Full Name:"] = "Ваше полное имя:"; -App::$strings["Title/Description:"] = "Название / Описание:"; -App::$strings["Your Gender:"] = "Ваш пол:"; -App::$strings["Birthday (%s):"] = "Ваш День Рождения (%s):"; -App::$strings["Street Address:"] = "Улица:"; -App::$strings["Locality/City:"] = "Населенный пункт / город:"; -App::$strings["Postal/Zip Code:"] = "Почтовый индекс:"; -App::$strings["Country:"] = "Страна:"; -App::$strings["Region/State:"] = "Регион / Область:"; -App::$strings[" Marital Status:"] = ""; -App::$strings["Who: (if applicable)"] = "Кто: (если это применимо)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since [date]:"] = "С тех пор [date]:"; -App::$strings["Homepage URL:"] = "URL-адрес домашней страницы:"; -App::$strings["Religious Views:"] = "Религиозные взгляды:"; -App::$strings["Keywords:"] = "Ключевые слова:"; -App::$strings["Example: fishing photography software"] = "Пример: fishing photography software"; -App::$strings["Used in directory listings"] = ""; -App::$strings["Tell us about yourself..."] = "Расскажите нам о себе ..."; -App::$strings["Hobbies/Interests"] = "Хобби / интересы"; -App::$strings["Contact information and Social Networks"] = "Информация и социальные сети контакта"; -App::$strings["My other channels"] = "Мои другие контакты"; -App::$strings["Musical interests"] = "Музыкальные интересы"; -App::$strings["Books, literature"] = "Книги, литература"; -App::$strings["Television"] = "Телевидение"; -App::$strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения"; -App::$strings["Love/romance"] = "Любовь / Романс"; -App::$strings["Work/employment"] = "Работа / Занятость"; -App::$strings["School/education"] = "Школа / образование"; -App::$strings["This is your public profile.
It may be visible to anybody using the internet."] = ""; -App::$strings["Age: "] = "Возраст:"; -App::$strings["Edit/Manage Profiles"] = "Редактирование / Управление профилей"; -App::$strings["Add profile things"] = ""; -App::$strings["Include desirable objects in your profile"] = ""; -App::$strings["Bookmark added"] = "Закладка добавлена"; -App::$strings["My Bookmarks"] = "Мои закладки"; -App::$strings["My Connections Bookmarks"] = "Закладки моих контактов"; -App::$strings["Invalid profile identifier."] = ""; -App::$strings["Profile Visibility Editor"] = "Редактор видимости профиля"; -App::$strings["Click on a contact to add or remove."] = "Нажмите на канал, чтобы добавить или удалить."; -App::$strings["Visible To"] = "Видно"; -App::$strings["All Connections"] = "Все контакты"; -App::$strings["Public Sites"] = "Публичные сайты"; -App::$strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = ""; -App::$strings["Site URL"] = "URL веб-сайта"; -App::$strings["Access Type"] = "Тип доступа"; -App::$strings["Registration Policy"] = "Правила регистрации"; -App::$strings["You must be logged in to see this page."] = "Вы должны авторизоваться, чтобы увидеть эту страницу."; -App::$strings["Insufficient permissions. Request redirected to profile page."] = ""; -App::$strings["Select a bookmark folder"] = ""; -App::$strings["Save Bookmark"] = "Сохранить закладки"; -App::$strings["URL of bookmark"] = ""; -App::$strings["Description"] = "Описание"; -App::$strings["Or enter new bookmark folder name"] = ""; -App::$strings["Room not found"] = ""; -App::$strings["Leave Room"] = ""; -App::$strings["Delete This Room"] = ""; -App::$strings["I am away right now"] = ""; -App::$strings["I am online"] = "Я в сети"; -App::$strings["Bookmark this room"] = ""; -App::$strings["New Chatroom"] = "Новый чат"; -App::$strings["Chatroom Name"] = "Название чата"; -App::$strings["%1\$s's Chatrooms"] = "Чаты пользователя %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = ""; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = ""; -App::$strings["Passwords do not match."] = "Пароли не совпадают."; -App::$strings["Registration successful. Please check your email for validation instructions."] = ""; -App::$strings["Your registration is pending approval by the site owner."] = ""; -App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; -App::$strings["Registration on this site/hub is by approval only."] = ""; -App::$strings["Register at another affiliated site/hub"] = ""; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = ""; -App::$strings["Terms of Service"] = "Условия предоставления услуг"; -App::$strings["I accept the %s for this website"] = ""; -App::$strings["I am over 13 years of age and accept the %s for this website"] = ""; -App::$strings["Registration"] = "Регистрация"; -App::$strings["Membership on this site is by invitation only."] = ""; -App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; -App::$strings["Your email address"] = "Ваш адрес электронной почты"; -App::$strings["Choose a password"] = "Выберите пароль"; -App::$strings["Please re-enter your password"] = "Пожалуйста, введите пароль еще раз"; -App::$strings["Away"] = "Нет на месте"; -App::$strings["Online"] = "Сейчас в сети"; -App::$strings["Please login."] = "Войдите пожалуйста."; -App::$strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = ""; -App::$strings["Remove This Channel"] = "Удалить этот канал"; -App::$strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = ""; -App::$strings["Please enter your password for verification:"] = "Пожалуйста, введите пароль для проверки:"; -App::$strings["Remove this channel and all its clones from the network"] = "Удалить этот канал и все его клоны из сети"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = ""; -App::$strings["Remove Channel"] = "Удалить канал"; -App::$strings["No channel."] = "Не канал."; -App::$strings["Common connections"] = "Общие контакты"; -App::$strings["No connections in common."] = "Общих контактов нет."; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; -App::$strings["The error message was:"] = "Сообщение об ошибке было:"; -App::$strings["Authentication failed."] = "Ошибка проверки подлинности."; -App::$strings["Remote Authentication"] = "Удаленная аутентификация"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Введите адрес вашего канала (например: channel@example.com)"; -App::$strings["Authenticate"] = "Проверка подлинности"; -App::$strings["Continue"] = "Продолжить"; -App::$strings["Premium Channel Setup"] = "Установка премиум канала"; -App::$strings["Enable premium channel connection restrictions"] = ""; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = ""; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = ""; -App::$strings["Potential connections will then see the following text before proceeding:"] = ""; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = ""; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = ""; -App::$strings["Restricted or Premium Channel"] = "Ограниченный или Премиум канал"; -App::$strings["No such group"] = "Нет такой группы"; -App::$strings["Search Results For:"] = "Результаты поиска для:"; -App::$strings["Collection is empty"] = "Коллекция пуста"; -App::$strings["Collection: "] = "Коллекции: "; -App::$strings["Connection: "] = "Контакты: "; -App::$strings["Invalid connection."] = ""; -App::$strings["Could not access contact record."] = ""; -App::$strings["Could not locate selected profile."] = ""; -App::$strings["Connection updated."] = "Связи обновленны."; -App::$strings["Failed to update connection record."] = ""; -App::$strings["Blocked"] = "Заблокированные"; -App::$strings["Ignored"] = "Игнорируемые"; -App::$strings["Hidden"] = "Скрытые"; -App::$strings["Archived"] = "Зархивированные"; +App::$strings["%s "] = ""; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] Получено новое сообщение в %s"; +App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s отправил вам новое личное сообщение в %2\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s отправил вам %2\$s."; +App::$strings["a private message"] = "личное сообщение"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Пожалуйста, посетите %s для просмотра и/или ответа на ваши личные сообщения."; +App::$strings["commented on"] = "прокомментировал"; +App::$strings["liked"] = "понравилось"; +App::$strings["disliked"] = "не понравилось"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]%5\$s %4\$s[/zrl]"; +App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl=%3\$s]ваш %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Отмодерирован комментарий к беседе #%1\$d по %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Комментарий к беседе #%1\$d по %2\$s"; +App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$s прокомментировал тему / беседу за которым вы следите."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Пожалуйста, посетите %s для просмотра и / или ответа в беседе."; +App::$strings["Please visit %s to approve or reject this comment."] = "Пожалуйста посетитет %s для одобрения и отклонения комментария."; +App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$s понравился [zrl=%2\$s]ваш %3\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Беседа получила отметку \"нравится\" #%1\$d от %2\$s"; +App::$strings["%1\$s liked an item/conversation you created."] = "%1\$s нравится тема / беседа которую вы создали."; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notify] %s сделал публикацию на стене вашего профиля"; +App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s сделал публикацию на стене вашего профиля в %2\$s"; +App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$s опубликовал на [zrl=%2\$s]вашей стене[/zrl]"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notify] %s отметил вас"; +App::$strings["%1\$s tagged you at %2\$s"] = "%1\$s отметил вас в %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl=%2\$s]отметил вас[/zrl]."; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notify] %1\$s ткнул вас"; +App::$strings["%1\$s poked you at %2\$s"] = "%1\$s ткнул вас в %2\$s"; +App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl=%2\$s]ткнул вас[/zrl]."; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notify] %s отметил вашу публикацию"; +App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$s отметил вашу публикацию на %2\$s"; +App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$s отметил [zrl=%2\$s]вашу публикацию[/zrl]"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notify] Получено приглашение"; +App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "Вы получили новый запрос контакта от '%1\$s' в %2\$s"; +App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "Вы получили [zrl=%1\$s]новый запрос контакта[/zrl] от %2\$s."; +App::$strings["You may visit their profile at %s"] = "Вы можете увидеть его профиль по ссылке %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить запрос контакта."; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notify] Получено предложение дружить"; +App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Вы получили предложение дружить от '%1\$s' в %2\$s"; +App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "Вы получили [zrl=%1\$s]предложение дружить[/zrl] для %2\$s от %3\$s."; +App::$strings["Name:"] = "Имя:"; +App::$strings["Photo:"] = "Фото:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Пожалуйста, посетите %s, чтобы одобрить или отклонить предложение."; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Уведомление]"; +App::$strings["created a new post"] = "создал новую публикацию"; +App::$strings["commented on %s's post"] = "прокомментировал публикацию %s"; +App::$strings["edited a post dated %s"] = "отредактировал публикацию датированную %s"; +App::$strings["edited a comment dated %s"] = "отредактировал комментарий датированный %s"; +App::$strings["(No Title)"] = "(нет заголовка)"; +App::$strings["Wiki page create failed."] = "Не удалось создать страницу Wiki."; +App::$strings["Wiki not found."] = "Wiki не найдена."; +App::$strings["Destination name already exists"] = "Имя назначения уже существует"; +App::$strings["Page not found"] = "Страница не найдена."; +App::$strings["Error reading page content"] = "Ошибка чтения содержимого страницы"; +App::$strings["Error reading wiki"] = "Ошибка чтения Wiki"; +App::$strings["Page update failed."] = "Не удалось обновить страницу."; +App::$strings["Nothing deleted"] = "Ничего не удалено"; +App::$strings["Compare: object not found."] = "Сравнение: объект не найден."; +App::$strings["Page updated"] = "Страница обновлена"; +App::$strings["Untitled"] = "Не озаглавлено"; +App::$strings["Wiki resource_id required for git commit"] = "Требуется resource_id Wiki для отправки в Git"; +App::$strings["__ctx:wiki_history__ Message"] = "Сообщение"; +App::$strings["__ctx:permcat__ default"] = "по умолчанию"; +App::$strings["__ctx:permcat__ follower"] = "поклонник"; +App::$strings["__ctx:permcat__ contributor"] = "участник"; +App::$strings["__ctx:permcat__ publisher"] = "издатель"; +App::$strings["Update Error at %s"] = "Ошибка обновления на %s"; +App::$strings["Update %s failed. See error logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; +App::$strings["Missing room name"] = "Отсутствует название комнаты"; +App::$strings["Duplicate room name"] = "Название комнаты дублируется"; +App::$strings["Invalid room specifier."] = "Неверный указатель комнаты."; +App::$strings["Room not found."] = "Комната не найдена."; +App::$strings["Room is full"] = "Комната переполнена"; +App::$strings["Commented Date"] = "По комментариям"; +App::$strings["Order by last commented date"] = "Сортировка по дате последнего комментария"; +App::$strings["Posted Date"] = "По публикациям"; +App::$strings["Order by last posted date"] = "Сортировка по дате последней публикации"; +App::$strings["Date Unthreaded"] = "По порядку"; +App::$strings["Order unthreaded by date"] = "Сортировка в порядке поступления"; +App::$strings["Activity Order"] = "Сортировка активности"; +App::$strings["Site"] = "Сайт"; +App::$strings["Accounts"] = "Учётные записи"; +App::$strings["Member registrations waiting for confirmation"] = "Регистрации участников, ожидающие подверждения"; +App::$strings["Channels"] = "Каналы"; +App::$strings["Security"] = "Безопасность"; +App::$strings["Addons"] = "Расширения"; +App::$strings["Themes"] = "Темы"; +App::$strings["Inspect queue"] = "Просмотр очереди"; +App::$strings["Profile Fields"] = "Поля профиля"; +App::$strings["DB updates"] = "Обновление базы данных"; +App::$strings["Logs"] = "Журналы"; +App::$strings["Addon Features"] = "Настройки расширений"; +App::$strings["Tasks"] = "Задачи"; +App::$strings["Ignore/Hide"] = "Игнорировать / cкрыть"; +App::$strings["Suggestions"] = "Рекомендации"; +App::$strings["See more..."] = "Просмотреть больше..."; +App::$strings["Received Messages"] = "Полученные сообщения"; +App::$strings["Sent Messages"] = "Отправленные сообщения"; +App::$strings["Conversations"] = "Беседы"; +App::$strings["No messages."] = "Сообщений нет."; +App::$strings["Delete conversation"] = "Удалить беседу"; +App::$strings["Select Channel"] = "Выбрать канал"; +App::$strings["Read-write"] = "Чтение-запись"; +App::$strings["Read-only"] = "Только чтение"; +App::$strings["My Calendars"] = "Мои календари"; +App::$strings["Shared Calendars"] = "Общие календари"; +App::$strings["Share this calendar"] = "Поделиться этим календарём"; +App::$strings["Calendar name and color"] = "Имя и цвет календаря"; +App::$strings["Create new calendar"] = "Создать новый календарь"; +App::$strings["Create"] = "Создать"; +App::$strings["Calendar Name"] = "Имя календаря"; +App::$strings["Calendar Tools"] = "Инструменты календаря"; +App::$strings["Import calendar"] = "Импортировать календарь"; +App::$strings["Select a calendar to import to"] = "Выбрать календарь для импорта в"; +App::$strings["Upload"] = "Загрузка"; +App::$strings["Addressbooks"] = "Адресные книги"; +App::$strings["Addressbook name"] = "Имя адресной книги"; +App::$strings["Create new addressbook"] = "Создать новую адресную книгу"; +App::$strings["Addressbook Name"] = "Имя адресной книги"; +App::$strings["Addressbook Tools"] = "Инструменты адресной книги"; +App::$strings["Import addressbook"] = "Импортировать адресную книгу"; +App::$strings["Select an addressbook to import to"] = "Выбрать адресную книгу для импорта в"; +App::$strings["__ctx:widget__ Activity"] = "Активность"; +App::$strings["HQ Control Panel"] = "Панель управления HQ"; +App::$strings["Create a new post"] = "Создать новую публикацию"; +App::$strings["Add new page"] = "Добавить новую страницу"; +App::$strings["Options"] = "Параметры"; +App::$strings["Wiki Pages"] = "Wiki страницы"; +App::$strings["Page name"] = "Название страницы"; +App::$strings["Private Mail Menu"] = "Меню личной переписки"; +App::$strings["Combined View"] = "Комбинированный вид"; +App::$strings["Inbox"] = "Входящие"; +App::$strings["Outbox"] = "Исходящие"; +App::$strings["New Message"] = "Новое сообщение"; +App::$strings["photo/image"] = "фотография / изображение"; +App::$strings["Archives"] = "Архивы"; +App::$strings["Events Tools"] = "Инструменты для событий"; +App::$strings["Export Calendar"] = "Экспортировать календарь"; +App::$strings["Import Calendar"] = "Импортировать календарь"; +App::$strings["Wiki List"] = "Список Wiki"; +App::$strings["Account settings"] = "Настройки аккаунта"; +App::$strings["Channel settings"] = "Настройки канала"; +App::$strings["Additional features"] = "Дополнительные функции"; +App::$strings["Addon settings"] = "Настройки расширений"; +App::$strings["Display settings"] = "Настройки отображения"; +App::$strings["Manage locations"] = "Управление местоположением"; +App::$strings["Export channel"] = "Экспортировать канал"; +App::$strings["OAuth1 apps"] = "Приложения OAuth1"; +App::$strings["OAuth2 apps"] = "Приложения OAuth2"; +App::$strings["Guest Access Tokens"] = "Токен гостевого доступа"; +App::$strings["Connection Default Permissions"] = "Разрешения по умолчанию для контакта"; +App::$strings["Premium Channel Settings"] = "Настройки премиум-канала"; +App::$strings["View Photo"] = "Посмотреть фотографию"; +App::$strings["Edit Album"] = "Редактировать Фотоальбом"; +App::$strings["Public Hubs"] = "Публичные хабы"; +App::$strings["Notes"] = "Заметки"; +App::$strings["Overview"] = "Обзор"; +App::$strings["App Collections"] = "Коллекции приложений"; +App::$strings["Available Apps"] = "Доступные приложения"; +App::$strings["Installed apps"] = "Установленные приложения"; +App::$strings["Bookmarked Chatrooms"] = "Закладки чатов"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "У вас есть %1$.0f из %2$.0f разрешенных контактов."; +App::$strings["Add New Connection"] = "Добавить новый контакт"; +App::$strings["Enter channel address"] = "Введите адрес канала"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Пример: ivan@example.com, http://example.com/ivan"; +App::$strings["Chat Members"] = "Участники чата"; +App::$strings["Suggested Chatrooms"] = "Рекомендуемые чаты"; +App::$strings["Rating Tools"] = "Инструменты оценки"; +App::$strings["Rate Me"] = "Оценить меня"; +App::$strings["View Ratings"] = "Просмотр оценок"; +App::$strings["Remove term"] = "Удалить термин"; +App::$strings["Me"] = "Я"; +App::$strings["Family"] = "Семья"; +App::$strings["Acquaintances"] = "Знакомые"; App::$strings["All"] = "Все"; -App::$strings["Unconnected"] = "Неприсоединенные"; -App::$strings["Suggest new connections"] = "Предлагать новые контакты"; +App::$strings["Refresh"] = "Обновить"; +App::$strings["Personal Posts"] = "Личные публикации"; +App::$strings["Show posts that mention or involve me"] = "Показывать публикации где вы были упомянуты или привлечены"; +App::$strings["Starred Posts"] = "Отмеченные публикации"; +App::$strings["Show posts that I have starred"] = "Показывать публикации которые я отметил"; +App::$strings["Show posts related to the %s privacy group"] = "Показывать публикации относящиеся к группе безопасности %s"; +App::$strings["Show my privacy groups"] = "Показывать мои группы безопасности"; +App::$strings["Show posts to this forum"] = "Показывать публикации этого форума"; +App::$strings["Forums"] = "Форумы"; +App::$strings["Show forums"] = "Показывать форумы"; +App::$strings["Show posts that I have filed to %s"] = "Показывать публикации которые я добавил в %s"; +App::$strings["Show filed post categories"] = "Показывать категории добавленных публикаций"; +App::$strings["Panel search"] = "Панель поиска"; +App::$strings["Filter by name"] = "Отфильтровать по имени"; +App::$strings["Remove active filter"] = "Удалить активный фильтр"; +App::$strings["Activity Filters"] = "Фильтры активности"; +App::$strings["Click to show more"] = "Нажмите чтобы показать больше"; +App::$strings["New Network Activity"] = "Новая сетевая активность"; +App::$strings["New Network Activity Notifications"] = "Новые уведомления о сетевой активности"; +App::$strings["View your network activity"] = "Просмотреть вашу сетевую активность"; +App::$strings["Mark all notifications read"] = "Пометить уведомления как прочитанные"; +App::$strings["Show new posts only"] = "Показывать только новые публикации"; +App::$strings["New Home Activity"] = "Новая локальная активность"; +App::$strings["New Home Activity Notifications"] = "Новые уведомления локальной активности"; +App::$strings["View your home activity"] = "Просмотреть локальную активность"; +App::$strings["Mark all notifications seen"] = "Пометить уведомления как просмотренные"; +App::$strings["New Mails"] = "Новая переписка"; +App::$strings["New Mails Notifications"] = "Уведомления о новой переписке"; +App::$strings["View your private mails"] = "Просмотреть вашу личную переписку"; +App::$strings["Mark all messages seen"] = "Пометить сообщения как просмотренные"; +App::$strings["New Events"] = "Новые события"; +App::$strings["New Events Notifications"] = "Уведомления о новых событиях"; +App::$strings["View events"] = "Просмотреть события"; +App::$strings["Mark all events seen"] = "Пометить все события как просмотренные"; App::$strings["New Connections"] = "Новые контакты"; -App::$strings["Show pending (new) connections"] = "Просмотр (новых) ждущих контактов"; -App::$strings["Show all connections"] = "Просмотр всех контактов"; -App::$strings["Unblocked"] = "Разрешенные"; -App::$strings["Only show unblocked connections"] = "Показать только разрешенные контакты"; -App::$strings["Only show blocked connections"] = "Показать только заблокированные контакты"; -App::$strings["Only show ignored connections"] = "Показать только проигнорированные контакты"; -App::$strings["Only show archived connections"] = "Показать только архивированные контакты"; -App::$strings["Only show hidden connections"] = "Показать только скрытые контакты"; -App::$strings["Only show one-way connections"] = ""; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit contact"] = "Редактировать контакт"; -App::$strings["Search your connections"] = "Поиск ваших связей"; -App::$strings["Finding: "] = "Поиск:"; -App::$strings["Edit post"] = "Редактировать сообщение"; -App::$strings["Could not access address book record."] = ""; -App::$strings["Refresh failed - channel is currently unavailable."] = ""; -App::$strings["Channel has been unblocked"] = "Канал разблокирован"; -App::$strings["Channel has been blocked"] = "Канал заблокирован"; -App::$strings["Unable to set address book parameters."] = ""; -App::$strings["Channel has been unignored"] = "Канал не проигнорирован"; -App::$strings["Channel has been ignored"] = "Канал проигнорирован"; -App::$strings["Channel has been unarchived"] = "Канал разархивирован"; -App::$strings["Channel has been archived"] = "Канал заархивирован"; -App::$strings["Channel has been unhidden"] = "Канал открыт"; -App::$strings["Channel has been hidden"] = "Канал скрыт"; -App::$strings["Channel has been approved"] = "Канал одобрен"; -App::$strings["Channel has been unapproved"] = "Канал не одобрен"; -App::$strings["Connection has been removed."] = "Соединение было удалено."; -App::$strings["View %s's profile"] = "Просмотр %s's профиля"; -App::$strings["Refresh Permissions"] = "Обновить разрешения"; -App::$strings["Fetch updated permissions"] = ""; -App::$strings["Recent Activity"] = ""; -App::$strings["View recent posts and comments"] = ""; -App::$strings["Unblock"] = "Разрешить"; -App::$strings["Block"] = "Заблокировать"; -App::$strings["Block or Unblock this connection"] = "Запретить или разрешить этот канал"; -App::$strings["Unignore"] = "Не игнорировать"; -App::$strings["Ignore"] = "Игнорировать"; -App::$strings["Ignore or Unignore this connection"] = "Игнорировать или не игнорировать этот канал"; -App::$strings["Unarchive"] = "Разархивировать"; -App::$strings["Archive"] = "Заархивировать"; -App::$strings["Archive or Unarchive this connection"] = " Заархивировать или разархивировать этот канал"; -App::$strings["Unhide"] = "Показать"; -App::$strings["Hide"] = "Скрыть"; -App::$strings["Hide or Unhide this connection"] = "Скрыть или показывать этот канал"; -App::$strings["Delete this connection"] = "Удалить этот контакт"; -App::$strings["Approve this connection"] = "Утвердить этот контакт"; -App::$strings["Accept connection to allow communication"] = ""; -App::$strings["Automatic Permissions Settings"] = "Настройки автоматических разрешений"; -App::$strings["Connections: settings for %s"] = ""; -App::$strings["When receiving a channel introduction, any permissions provided here will be applied to the new connection automatically and the introduction approved. Leave this page if you do not wish to use this feature."] = ""; -App::$strings["Slide to adjust your degree of friendship"] = ""; -App::$strings["inherited"] = "унаследованный"; -App::$strings["Connection has no individual permissions!"] = ""; -App::$strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = ""; -App::$strings["Profile Visibility"] = "Видимость профиля"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = ""; -App::$strings["Contact Information / Notes"] = "Информация / Примечания о канале"; -App::$strings["Edit contact notes"] = "Редактировать примечания канала"; -App::$strings["Their Settings"] = "Их настройки"; -App::$strings["My Settings"] = "Мои настройки"; -App::$strings["Clear/Disable Automatic Permissions"] = ""; -App::$strings["Forum Members"] = "Участники форума"; -App::$strings["Soapbox"] = "Soapbox"; -App::$strings["Full Sharing (typical social network permissions)"] = ""; -App::$strings["Cautious Sharing "] = ""; -App::$strings["Follow Only"] = "Только следовать"; -App::$strings["Individual Permissions"] = "Индивидуальные разрешения"; -App::$strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = ""; -App::$strings["Advanced Permissions"] = "Дополнительные разрешения"; -App::$strings["Simple Permissions (select one and submit)"] = ""; -App::$strings["Visit %s's profile - %s"] = "Посетить %s's ​​профиль - %s"; -App::$strings["Block/Unblock contact"] = "Запретить/разрешить контакт"; -App::$strings["Ignore contact"] = "Игнорировать контакт"; -App::$strings["Repair URL settings"] = "Ремонт настройки URL"; -App::$strings["View conversations"] = "Просмотр разговоров"; -App::$strings["Delete contact"] = "Удалить контакт"; -App::$strings["Last update:"] = "Последнее обновление:"; -App::$strings["Update public posts"] = "Обновить публичные сообщения"; -App::$strings["Update now"] = "Обновить сейчас"; -App::$strings["Currently blocked"] = "В настоящее время заблокирован"; -App::$strings["Currently ignored"] = "В настоящее время игнорируются"; -App::$strings["Currently archived"] = "В настоящее время зархивированны"; -App::$strings["Currently pending"] = "В настоящее время в ожидании"; -App::$strings["Hide this contact from others"] = "Скрыть этот канал от других"; -App::$strings["Replies/likes to your public posts may still be visible"] = ""; -App::$strings["No potential page delegates located."] = ""; -App::$strings["Delegate Page Management"] = ""; -App::$strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; -App::$strings["Existing Page Managers"] = ""; -App::$strings["Existing Page Delegates"] = ""; -App::$strings["Potential Delegates"] = ""; -App::$strings["Remove"] = "Удалить"; -App::$strings["Add"] = "Добавить"; -App::$strings["No entries."] = "Нет записей."; -App::$strings["Public access denied."] = "Общественный доступ запрещен."; -App::$strings["Gender: "] = "Пол:"; -App::$strings["Finding:"] = "Поиск:"; -App::$strings["next page"] = "следующая страница"; -App::$strings["previous page"] = "предыдущая страница"; -App::$strings["No entries (some entries may be hidden)."] = ""; -App::$strings["Status: "] = "Статус:"; -App::$strings["Sexual Preference: "] = "Сексуальная ориентация:"; -App::$strings["Homepage: "] = "Домашняя страница:"; -App::$strings["Hometown: "] = "Город проживания:"; -App::$strings["About: "] = "О себе:"; -App::$strings["Keywords: "] = "Ключевые слова:"; -App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; -App::$strings["Hubzilla - "The Network""] = ""; -App::$strings["Welcome to %s"] = "Добро пожаловать в %s"; -App::$strings["Hubzilla Server - Setup"] = "Hubzilla Сервер - Установка"; -App::$strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = ""; -App::$strings["Could not create table."] = "Не удалось создать таблицу."; -App::$strings["Your site database has been installed."] = "Ваша база данных установлена."; -App::$strings["You may need to import the file \"install/database.sql\" manually using phpmyadmin or mysql."] = ""; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Проверка системы"; +App::$strings["New Connections Notifications"] = "Уведомления о новых контактах"; +App::$strings["View all connections"] = "Просмотр всех контактов"; +App::$strings["New Files"] = "Новые файлы"; +App::$strings["New Files Notifications"] = "Уведомления о новых файлах"; +App::$strings["Notices"] = "Оповещения"; +App::$strings["View all notices"] = "Просмотреть все оповещения"; +App::$strings["Mark all notices seen"] = "Пометить все оповещения как просмотренные"; +App::$strings["New Registrations"] = "Новые регистрации"; +App::$strings["New Registrations Notifications"] = "Уведомления о новых регистрациях"; +App::$strings["Public Stream"] = "Публичный поток"; +App::$strings["Public Stream Notifications"] = "Уведомления публичного потока"; +App::$strings["View the public stream"] = "Просмотреть публичный поток"; +App::$strings["Sorry, you have got no notifications at the moment"] = "Извините, но сейчас у вас нет уведомлений"; +App::$strings["Profile Creation"] = "Создание профиля"; +App::$strings["Upload profile photo"] = "Загрузить фотографию профиля"; +App::$strings["Upload cover photo"] = "Загрузить фотографию обложки"; +App::$strings["Find and Connect with others"] = "Найти и вступить в контакт"; +App::$strings["View the directory"] = "Просмотреть каталог"; +App::$strings["View friend suggestions"] = "Просмотр рекомендуемых друзей"; +App::$strings["Manage your connections"] = "Управлять вашими контактами"; +App::$strings["Communicate"] = "Связаться"; +App::$strings["View your channel homepage"] = "Домашняя страница канала"; +App::$strings["View your network stream"] = "Просмотреть ваш сетевой поток"; +App::$strings["Documentation"] = "Документация"; +App::$strings["View public stream"] = "Просмотреть публичный поток"; +App::$strings["Social Networking"] = "Социальная Сеть"; +App::$strings["Social - Federation"] = "Социальная - Федерация"; +App::$strings["Social - Mostly Public"] = "Социальная - В основном общественный"; +App::$strings["Social - Restricted"] = "Социальная - Ограниченный"; +App::$strings["Social - Private"] = "Социальная - Частный"; +App::$strings["Community Forum"] = "Форум сообщества"; +App::$strings["Forum - Mostly Public"] = "Форум - В основном общественный"; +App::$strings["Forum - Restricted"] = "Форум - Ограниченный"; +App::$strings["Forum - Private"] = "Форум - Частный"; +App::$strings["Feed Republish"] = "Публиковать ленты новостей"; +App::$strings["Feed - Mostly Public"] = "Ленты новостей - В основном общественный"; +App::$strings["Feed - Restricted"] = "Ленты новостей - Ограниченный"; +App::$strings["Special Purpose"] = "Спец. назначение"; +App::$strings["Special - Celebrity/Soapbox"] = "Спец. назначение - Знаменитость/Soapbox"; +App::$strings["Special - Group Repository"] = "Спец. назначение - Групповой репозиторий"; +App::$strings["Custom/Expert Mode"] = "Экспертный режим"; +App::$strings["Can view my channel stream and posts"] = "Может просматривать мою ленту и сообщения"; +App::$strings["Can send me their channel stream and posts"] = "Может присылать мне свои потоки и сообщения"; +App::$strings["Can view my default channel profile"] = "Может просматривать мой стандартный профиль канала"; +App::$strings["Can view my connections"] = "Может просматривать мои контакты"; +App::$strings["Can view my file storage and photos"] = "Может просматривать мое хранилище файлов"; +App::$strings["Can upload/modify my file storage and photos"] = "Может загружать/изменять мои файлы и фотографии в хранилище"; +App::$strings["Can view my channel webpages"] = "Может просматривать мои веб-страницы"; +App::$strings["Can view my wiki pages"] = "Может просматривать мои вики-страницы"; +App::$strings["Can create/edit my channel webpages"] = "Может редактировать мои веб-страницы"; +App::$strings["Can write to my wiki pages"] = "Может редактировать мои вики-страницы"; +App::$strings["Can post on my channel (wall) page"] = "Может публиковать на моей странице канала"; +App::$strings["Can comment on or like my posts"] = "Может прокомментировать или отмечать как понравившиеся мои посты"; +App::$strings["Can send me private mail messages"] = "Может отправлять мне личные сообщения по эл. почте"; +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"] = "Может использовать мои публичные сообщения в клонированных лентах сообщений"; +App::$strings["Can administer my channel"] = "Может администрировать мой канал"; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Удалённая аутентификация заблокирована. Вы вошли на этот сайт локально. Пожалуйста, выйдите и попробуйте ещё раз."; +App::$strings["App installed."] = "Приложение установлено."; +App::$strings["Malformed app."] = "Неработающее приложение."; +App::$strings["Embed code"] = "Встроить код"; +App::$strings["Edit App"] = "Редактировать приложение"; +App::$strings["Create App"] = "Создать приложение"; +App::$strings["Name of app"] = "Наименование приложения"; +App::$strings["Location (URL) of app"] = "Местоположение (URL) приложения"; +App::$strings["Photo icon URL"] = "URL пиктограммы"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 пикселей - необязательно"; +App::$strings["Categories (optional, comma separated list)"] = "Категории (необязательно, список через запятую)"; +App::$strings["Version ID"] = "ID версии"; +App::$strings["Price of app"] = "Цена приложения"; +App::$strings["Location (URL) to purchase app"] = "Ссылка (URL) для покупки приложения"; +App::$strings["network"] = "сеть"; +App::$strings["INVALID EVENT DISMISSED!"] = "НЕДЕЙСТВИТЕЛЬНОЕ СОБЫТИЕ ОТКЛОНЕНО!"; +App::$strings["Summary: "] = "Резюме:"; +App::$strings["Date: "] = "Дата:"; +App::$strings["Reason: "] = "Причина:"; +App::$strings["INVALID CARD DISMISSED!"] = "НЕДЕЙСТВИТЕЛЬНАЯ КАРТОЧКА ОТКЛОНЕНА!"; +App::$strings["Name: "] = "Имя:"; +App::$strings["Event title"] = "Наименование события"; +App::$strings["Start date and time"] = "Дата и время начала"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Пример: YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "Дата и время окончания"; +App::$strings["Previous"] = "Предыдущая"; App::$strings["Next"] = "Следующая"; -App::$strings["Check again"] = "Проверить снова"; -App::$strings["Database connection"] = "Подключение к базе данных"; -App::$strings["In order to install Hubzilla we need to know how to connect to your database."] = ""; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = ""; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = ""; -App::$strings["Database Server Name"] = "Имя сервера базы данных"; -App::$strings["Default is localhost"] = "По умолчанию localhost"; -App::$strings["Database Port"] = "Порт базы данных"; -App::$strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию"; -App::$strings["Database Login Name"] = "Имя для подключения к базе данных"; -App::$strings["Database Login Password"] = "Пароль для подключения к базе данных"; -App::$strings["Database Name"] = "Имя базы данных"; -App::$strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = ""; -App::$strings["Website URL"] = "URL веб-сайта"; -App::$strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно."; -App::$strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; -App::$strings["Site settings"] = "Настройки сайта"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = ""; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = ""; -App::$strings["PHP executable path"] = "PHP executable путь"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; -App::$strings["Command line PHP"] = "Command line PHP"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = ""; -App::$strings["This is required for message delivery to work."] = "Это требуется для доставки сообщений."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = ""; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Генерация ключей шифрования"; -App::$strings["libCurl PHP module"] = "libCurl PHP модуль"; -App::$strings["GD graphics PHP module"] = "GD graphics PHP модуль"; -App::$strings["OpenSSL PHP module"] = "OpenSSL PHP модуль"; -App::$strings["mysqli PHP module"] = "mysqli PHP модуль"; -App::$strings["mb_string PHP module"] = "mb_string PHP модуль"; -App::$strings["mcrypt PHP module"] = "mcrypt PHP модуль"; -App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite модуль"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: Apache веб-сервер модуль mod-rewrite требуется, но не установлен."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Ошибка: proc_open требуется, но не установлен или отключен в php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Ошибка: Модуль libCURL PHP требуется, но не установлен."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: GD graphics PHP модуль с поддержкой JPEG требуется, но не установлен."; -App::$strings["Error: openssl PHP module required but not installed."] = "Ошибка: openssl PHP модуль требуется, но не установлен."; -App::$strings["Error: mysqli PHP module required but not installed."] = "Ошибка: mysqli PHP модуль требуется, но не установлен."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Ошибка: mb_string PHP модуль требуется, но не установлен."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Ошибка: mcrypt PHP модуль требуется, но не установлен."; -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."] = "Веб-установщик должен быть в состоянии создать файл с именем \".htconfig.php\" в верхней папке вашего веб-сервера, но он не в состоянии сделать это."; -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."] = ""; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = ""; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Вы можете пропустить эту процедуру и выполнить установку вручную. Обратитесь к файлу \"install/INSTALL.txt\" для получения инструкций."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php доступен для записи"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory view/tpl/smarty3/ under the Red top level folder."] = ""; -App::$strings["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 view/tpl/smarty3/ only--not the template files (.tpl) that it contains."] = ""; -App::$strings["view/tpl/smarty3 is writable"] = "view/tpl/smarty3 доступен для записи"; -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"] = ""; -App::$strings["store is writable"] = ""; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; -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!"] = ""; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = ""; -App::$strings["If your certificate is not recognised, members of other sites (who may themselves have valid certificates) will get a warning message on their own site 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."] = ""; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = ""; -App::$strings["SSL certificate validation"] = "проверка сертификата SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; -App::$strings["Url rewrite is working"] = "Url rewrite работает"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; -App::$strings["Errors encountered creating database tables."] = ""; -App::$strings["

What next

"] = "

Что дальше

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = ""; -App::$strings["Item not found"] = "Элемент не найден"; -App::$strings["Edit Block"] = "Редактировать блок"; -App::$strings["Delete block?"] = "Удалить блок?"; -App::$strings["Insert YouTube video"] = "Вставить YouTube видео"; -App::$strings["Insert Vorbis [.ogg] video"] = "Вставить Vorbis [.ogg] видео"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Вставить Vorbis [.ogg] музыку"; -App::$strings["Delete Block"] = "Удалить блок"; -App::$strings["Layout updated."] = "Шаблон обновлен."; -App::$strings["Edit System Page Description"] = ""; -App::$strings["Layout not found."] = "Шаблон не найден"; -App::$strings["Module Name:"] = "Имя модуля:"; -App::$strings["Layout Help"] = "Помощь к шаблону"; -App::$strings["Edit Layout"] = "Редактировать шаблон"; -App::$strings["Delete layout?"] = "Удалить шаблон?"; -App::$strings["Delete Layout"] = "Удалить шаблон"; -App::$strings["Item is not editable"] = "Элемент нельзя редактировать"; -App::$strings["Delete item?"] = "Удалить элемент?"; -App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; -App::$strings["Delete webpage?"] = "Удалить веб-страницу?"; -App::$strings["Delete Webpage"] = "Удалить веб-страницу"; -App::$strings["Version %s"] = "Версия %s"; -App::$strings["Installed plugins/addons/apps:"] = ""; -App::$strings["No installed plugins/addons/apps"] = ""; -App::$strings["Red"] = "Red"; -App::$strings["This is a hub of the Hubzilla - a global cooperative network of decentralised privacy enhanced websites."] = ""; -App::$strings["Running at web location"] = ""; -App::$strings["Please visit GetZot.com to learn more about the Hubzilla."] = "Пожалуйста посетите GetZot.com чтобы узнать больше о Hubzilla."; -App::$strings["Bug reports and issues: please visit"] = ""; -App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = ""; -App::$strings["Site Administrators"] = "Администратор сайта"; -App::$strings["Page owner information could not be retrieved."] = ""; +App::$strings["Today"] = "Сегодня"; +App::$strings["Month"] = "Месяц"; +App::$strings["Week"] = "Неделя"; +App::$strings["Day"] = "День"; +App::$strings["List month"] = "Просмотреть месяц"; +App::$strings["List week"] = "Просмотреть неделю"; +App::$strings["List day"] = "Просмотреть день"; +App::$strings["More"] = "Больше"; +App::$strings["Less"] = "Меньше"; +App::$strings["Select calendar"] = "Выбрать календарь"; +App::$strings["Delete all"] = "Удалить всё"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Простите, но редактирование повторяющихся событий пока не реализовано."; +App::$strings["Organisation"] = "Организация"; +App::$strings["Title"] = "Наименование"; +App::$strings["Phone"] = "Телефон"; +App::$strings["Instant messenger"] = "Мессенджер"; +App::$strings["Website"] = "Веб-сайт"; +App::$strings["Address"] = "Адрес"; +App::$strings["Note"] = "Заметка"; +App::$strings["Add Field"] = "Добавить поле"; +App::$strings["P.O. Box"] = "абонентский ящик"; +App::$strings["Additional"] = "Дополнительно"; +App::$strings["Street"] = "Улица"; +App::$strings["Locality"] = "Населённый пункт"; +App::$strings["Region"] = "Регион"; +App::$strings["ZIP Code"] = "Индекс"; +App::$strings["Country"] = "Страна"; +App::$strings["Default Calendar"] = "Календарь по умолчанию"; +App::$strings["Default Addressbook"] = "Адресная книга по умолчанию"; +App::$strings["This page is available only to site members"] = "Эта страница доступна только для подписчиков сайта"; +App::$strings["Welcome"] = "Добро пожаловать"; +App::$strings["What would you like to do?"] = "Что бы вы хотели сделать?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Пожалуйста, запомните эту страницу если вы хотите вернуться на неё в будущем"; +App::$strings["Upload a profile photo"] = "Загрузить фотографию профиля"; +App::$strings["Upload a cover photo"] = "Загрузить фотографию обложки"; +App::$strings["Edit your default profile"] = "Редактировать ваш профиль по умолчанию"; +App::$strings["View the channel directory"] = "Просмотр каталога каналов"; +App::$strings["View/edit your channel settings"] = "Просмотреть / редактировать настройки вашего канала"; +App::$strings["View the site or project documentation"] = "Просмотр документации сайта / проекта"; +App::$strings["Visit your channel homepage"] = "Посетить страницу вашего канала"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Просмотреть ваши контакты и / или добавить кого-то чей адрес в уже знаете"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ваш персональный поток (может быть пуст пока вы не добавите контакты)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Просмотр публичного потока. Предупреждение: этот контент не модерируется"; +App::$strings["Page owner information could not be retrieved."] = "Информация о владельце страницы не может быть получена."; App::$strings["Album not found."] = "Альбом не найден."; App::$strings["Delete Album"] = "Удалить альбом"; App::$strings["Delete Photo"] = "Удалить фотографию"; +App::$strings["Public access denied."] = "Публичный доступ запрещен."; App::$strings["No photos selected"] = "Никакие фотографии не выбраны"; App::$strings["Access to this item is restricted."] = "Доступ к этому элементу ограничен."; -App::$strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото."; -App::$strings["You have used %1$.2f Mbytes of photo storage."] = "Вы использовали %1$.2f мегабайт для хранения фото."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Вы использовали %1$.2f мегабайт из %2$.2f для хранения фото."; +App::$strings["%1$.2f MB photo storage used."] = "Вы использовали %1$.2f мегабайт для хранения фото."; App::$strings["Upload Photos"] = "Загрузить фотографии"; -App::$strings["New album name: "] = "Название нового альбома:"; -App::$strings["or existing album name: "] = "или существующий альбом:"; -App::$strings["Do not show a status post for this upload"] = "Не показывать пост о состоянии этой загрузки"; -App::$strings["Contact Photos"] = "Фотографии контакта"; -App::$strings["Edit Album"] = "Редактировать Фотоальбом"; +App::$strings["Enter an album name"] = "Введите название альбома"; +App::$strings["or select an existing album (doubleclick)"] = "или выберите существующий альбом (двойной щелчок)"; +App::$strings["Create a status post for this upload"] = "Сделать публикацию о статусе для этой загрузки"; +App::$strings["Description (optional)"] = "Описание (необязательно)"; App::$strings["Show Newest First"] = "Показать новые первыми"; App::$strings["Show Oldest First"] = "Показать старые первыми"; -App::$strings["View Photo"] = "Посмотреть фотографию"; -App::$strings["Permission denied. Access to this item may be restricted."] = ""; +App::$strings["Add Photos"] = "Добавить фотографии"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Доступ запрещен. Доступ к этому элементу может быть ограничен."; App::$strings["Photo not available"] = "Фотография не доступна"; App::$strings["Use as profile photo"] = "Использовать в качестве фотографии профиля"; +App::$strings["Use as cover photo"] = "Использовать в качестве фотографии обложки"; +App::$strings["Private Photo"] = "Личная фотография"; App::$strings["View Full Size"] = "Посмотреть в полный размер"; App::$strings["Edit photo"] = "Редактировать фотографию"; App::$strings["Rotate CW (right)"] = "Повернуть CW (направо)"; App::$strings["Rotate CCW (left)"] = "Повернуть CCW (налево)"; -App::$strings["New album name"] = "Новое название альбома:"; -App::$strings["Caption"] = "Подпись"; +App::$strings["Move photo to album"] = "Переместить фотографию в альбом"; +App::$strings["Enter a new album name"] = "Введите новое название альбома"; +App::$strings["or select an existing one (doubleclick)"] = "или выбрать существующую (двойной щелчок)"; App::$strings["Add a Tag"] = "Добавить тег"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Например: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -App::$strings["In This Photo:"] = ""; -App::$strings["View Album"] = "Посмотреть фотоальбом"; -App::$strings["Recent Photos"] = "Последние фотографии"; -App::$strings["Failed to create source. No channel selected."] = ""; -App::$strings["Source created."] = "Источник создан"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Пометить как альбом \"для взрослых\""; +App::$strings["Photo Tools"] = "Фото-Инструменты"; +App::$strings["In This Photo:"] = "На этой фотографии:"; +App::$strings["Map"] = "Карта"; +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."] = "Указанные хабы разрешают публичную регистрацию для сети \$Projectname. Все хабы в сети взаимосвязаны, поэтому членство в любом из них передает членство во всю сеть. Некоторым хабам может потребоваться подписка или предоставление многоуровневых планов обслуживания. Сам хаб может предоставить дополнительные сведения."; +App::$strings["Hub URL"] = "URL сервера"; +App::$strings["Access Type"] = "Тип доступа"; +App::$strings["Registration Policy"] = "Политика регистрации"; +App::$strings["Stats"] = "Статистика"; +App::$strings["Software"] = "Программное обеспечение"; +App::$strings["Rate"] = "Оценка"; +App::$strings["View"] = "Просмотр"; +App::$strings["Continue"] = "Продолжить"; +App::$strings["Premium Channel Setup"] = "Установка премиум канала"; +App::$strings["Enable premium channel connection restrictions"] = "Включить ограничения для премиум канала"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Пожалуйста введите ваши ограничения или условия, такие, как оплата PayPal, правила использования и т.п."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Этот канал до подключения может требовать дополнительных шагов или подтверждений следующих условий:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Потенциальные соединения будут видеть следующий предварительный текст:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Продолжая, я подтверждаю что я выполнил все условия представленные на данной странице."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Владельцем канала не было представлено никаких специальных инструкций.)"; +App::$strings["Restricted or Premium Channel"] = "Ограниченный или Премиум канал"; +App::$strings["Poke somebody"] = "Ткнуть кого-нибудь"; +App::$strings["Poke/Prod"] = "Толкнуть / подтолкнуть"; +App::$strings["Poke, prod or do other things to somebody"] = "Толкнуть, подтолкнуть или сделать что-то ещё с кем-то"; +App::$strings["Recipient"] = "Получатель"; +App::$strings["Choose what you wish to do to recipient"] = "Выбрать что вы хотите сделать с получателем"; +App::$strings["Make this post private"] = "Сделать эту публикацию приватной"; +App::$strings["Unable to find your hub."] = "Невозможно найти ваш сервер"; +App::$strings["Post successful."] = "Успешно опубликовано."; +App::$strings["%s element installed"] = "%s элемент установлен"; +App::$strings["%s element installation failed"] = "%sустановка элемента неудачна."; +App::$strings["sent you a private message"] = "отправил вам личное сообщение"; +App::$strings["added your channel"] = "добавил ваш канал"; +App::$strings["requires approval"] = "Требуется подтверждение"; +App::$strings["g A l F d"] = "g A l F d"; +App::$strings["[today]"] = "[сегодня]"; +App::$strings["posted an event"] = "событие опубликовано"; +App::$strings["shared a file with you"] = "с вами поделились файлом"; +App::$strings["Private forum"] = "Частный форум"; +App::$strings["Public forum"] = "Публичный форум"; +App::$strings["Some blurb about what to do when you're new here"] = "Некоторые предложения о том, что делать, если вы здесь новичок "; +App::$strings["Active"] = "Активен"; +App::$strings["Blocked"] = "Заблокирован"; +App::$strings["Ignored"] = "Игнорируется"; +App::$strings["Hidden"] = "Скрыт"; +App::$strings["Archived/Unreachable"] = "Заархивировано / недоступно"; +App::$strings["Active Connections"] = "Активные контакты"; +App::$strings["Show active connections"] = "Показать активные контакты"; +App::$strings["Show pending (new) connections"] = "Просмотр (новых) ожидающих контактов"; +App::$strings["Only show blocked connections"] = "Показать только заблокированные контакты"; +App::$strings["Only show ignored connections"] = "Показать только проигнорированные контакты"; +App::$strings["Only show archived/unreachable connections"] = "Показать только заархивированные / недоступные контакты"; +App::$strings["Only show hidden connections"] = "Показать только скрытые контакты"; +App::$strings["All Connections"] = "Все контакты"; +App::$strings["Show all connections"] = "Просмотр всех контактов"; +App::$strings["Pending approval"] = "Ожидающие подтверждения"; +App::$strings["Archived"] = "Зархивирован"; +App::$strings["Not connected at this location"] = "Не подключено в этом месте"; +App::$strings["%1\$s [%2\$s]"] = ""; +App::$strings["Edit connection"] = "Редактировать контакт"; +App::$strings["Delete connection"] = "Удалить контакт"; +App::$strings["Channel address"] = "Адрес канала"; +App::$strings["Network"] = "Сеть"; +App::$strings["Call"] = "Вызов"; +App::$strings["Status"] = "Статус"; +App::$strings["Connected"] = "Подключено"; +App::$strings["Approve connection"] = "Утвердить контакт"; +App::$strings["Ignore connection"] = "Игнорировать контакт"; +App::$strings["Ignore"] = "Игнорировать"; +App::$strings["Recent activity"] = "Последние действия"; +App::$strings["Search your connections"] = "Поиск ваших контактов"; +App::$strings["Connections search"] = "Поиск контаков"; +App::$strings["Unable to locate original post."] = "Не удалось найти оригинальную публикацию."; +App::$strings["Empty post discarded."] = "Пустая публикация отклонена."; +App::$strings["Duplicate post suppressed."] = "Подавлена дублирующаяся публикация."; +App::$strings["System error. Post not saved."] = "Системная ошибка. Публикация не сохранена."; +App::$strings["Your comment is awaiting approval."] = "Ваш комментарий ожидает одобрения."; +App::$strings["Unable to obtain post information from database."] = "Невозможно получить информацию о публикации из базы данных"; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Вы достигли вашего ограничения в %1$.0f публикаций высокого уровня."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Вы достигли вашего ограничения в %1$.0f страниц."; +App::$strings["Calendar entries imported."] = "События календаря импортированы."; +App::$strings["No calendar entries found."] = "Не найдено событий в календаре."; +App::$strings["Event can not end before it has started."] = "Событие не может завершиться до его начала."; +App::$strings["Unable to generate preview."] = "Невозможно создать предварительный просмотр."; +App::$strings["Event title and start time are required."] = "Требуются наименование события и время начала."; +App::$strings["Event not found."] = "Событие не найдено."; +App::$strings["Edit event title"] = "Редактировать наименование события"; +App::$strings["Categories (comma-separated list)"] = "Категории (список через запятую)"; +App::$strings["Edit Category"] = "Редактировать категорию"; +App::$strings["Category"] = "Категория"; +App::$strings["Edit start date and time"] = "Редактировать дату и время начала"; +App::$strings["Finish date and time are not known or not relevant"] = "Дата и время окончания неизвестны или неприменимы"; +App::$strings["Edit finish date and time"] = "Редактировать дату и время окончания"; +App::$strings["Finish date and time"] = "Дата и время окончания"; +App::$strings["Adjust for viewer timezone"] = "Настройте просмотр часовых поясов"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Важно для событий, которые происходят в определённом месте. Не подходит для всеобщих праздников."; +App::$strings["Edit Description"] = "Редактировать описание"; +App::$strings["Edit Location"] = "Редактировать местоположение"; +App::$strings["Timezone:"] = "Часовой пояс:"; +App::$strings["Advanced Options"] = "Дополнительные настройки"; +App::$strings["l, F j"] = ""; +App::$strings["Edit event"] = "Редактировать событие"; +App::$strings["Delete event"] = "Удалить событие"; +App::$strings["calendar"] = "календарь"; +App::$strings["Edit Event"] = "Редактировать событие"; +App::$strings["Create Event"] = "Создать событие"; +App::$strings["Event removed"] = "Событие удалено"; +App::$strings["Failed to remove event"] = "Не удалось удалить событие"; +App::$strings["Layout Name"] = "Название шаблона"; +App::$strings["Layout Description (Optional)"] = "Описание шаблона (необязательно)"; +App::$strings["Comanche page description language help"] = "Помощь по языку описания страниц Comanche "; +App::$strings["Layout Description"] = "Описание шаблона"; +App::$strings["Created"] = "Создано"; +App::$strings["Edited"] = "Отредактировано"; +App::$strings["Download PDL file"] = "Загрузить PDL файл"; +App::$strings["No more system notifications."] = "Нет новых оповещений системы."; +App::$strings["System Notifications"] = "Системные оповещения "; +App::$strings["Layout updated."] = "Шаблон обновлен."; +App::$strings["Feature disabled."] = "Функция отключена."; +App::$strings["Edit System Page Description"] = "Редактировать описание системной страницы"; +App::$strings["(modified)"] = "(изменено)"; +App::$strings["Reset"] = "Сбросить"; +App::$strings["Layout not found."] = "Шаблон не найден."; +App::$strings["Module Name:"] = "Имя модуля:"; +App::$strings["Layout Help"] = "Помощь к шаблону"; +App::$strings["Edit another layout"] = "Редактировать другой шаблон"; +App::$strings["System layout"] = "Системный шаблон"; +App::$strings["Unable to lookup recipient."] = "Не удалось найти получателя."; +App::$strings["Unable to communicate with requested channel."] = "Не удалось установить связь с запрашиваемым каналом."; +App::$strings["Cannot verify requested channel."] = "Не удалось установить подлинность требуемого канала."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Выбранный канал ограничивает частные сообщения. Отправка не удалась."; +App::$strings["Messages"] = "Сообщения"; +App::$strings["message"] = "сообщение"; +App::$strings["Message recalled."] = "Сообщение отозванно."; +App::$strings["Conversation removed."] = "Беседа удалена."; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Истекает YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Запрашиваемый канал не доступен."; +App::$strings["Send Private Message"] = "Отправить личное сообщение"; +App::$strings["To:"] = "Кому:"; +App::$strings["Subject:"] = "Тема:"; +App::$strings["Your message:"] = "Сообщение:"; +App::$strings["Attach file"] = "Прикрепить файл"; +App::$strings["Send"] = "Отправить"; +App::$strings["Delete message"] = "Удалить сообщение"; +App::$strings["Delivery report"] = "Отчёт о доставке"; +App::$strings["Recall message"] = "Отозвать сообщение"; +App::$strings["Message has been recalled."] = "Сообщение отозванно"; +App::$strings["Delete Conversation"] = "Удалить беседу"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Безопасная связь недоступна. Вы можете попытаться ответить со страницы профиля отправителя."; +App::$strings["Send Reply"] = "Отправить ответ"; +App::$strings["Your message for %s (%s):"] = "Ваше сообщение для %s (%s):"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Remove This Channel"] = "Удалить этот канал"; +App::$strings["WARNING: "] = "ПРЕДУПРЕЖДЕНИЕ:"; +App::$strings["This channel will be completely removed from the network. "] = "Этот канал будет полностью удалён из сети."; +App::$strings["This action is permanent and can not be undone!"] = "Это действие необратимо и не может быть отменено!"; +App::$strings["Please enter your password for verification:"] = "Пожалуйста, введите ваш пароль для проверки:"; +App::$strings["Remove this channel and all its clones from the network"] = "Удалить этот канал и все его клоны из сети"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети"; +App::$strings["Remove Channel"] = "Удаление канала"; +App::$strings["Reset form"] = "Очистить форму"; +App::$strings["Welcome to Hubzilla!"] = "Добро пожаловать в Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "У вас нет видимых публикаций..."; +App::$strings["Item not found"] = "Элемент не найден"; +App::$strings["Channel not found."] = "Канал не найден."; +App::$strings["Edit Card"] = "Редактировать карточку"; +App::$strings["Xchan Lookup"] = "Поиск Xchan"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Запрос Xchan начинается с (или webbie):"; +App::$strings["Not found."] = "Не найдено."; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Нет предложений. Если это новый сайт, повторите попытку через 24 часа."; +App::$strings["Posts and comments"] = "Публикации и комментарии"; +App::$strings["Only posts"] = "Только публикации"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Недостаточно прав. Запрос перенаправлен на страницу профиля."; +App::$strings["Search Results For:"] = "Результаты поиска для:"; +App::$strings["Documentation Search"] = "Поиск документации"; +App::$strings["Members"] = "Участники"; +App::$strings["Administrators"] = "Администраторы"; +App::$strings["Developers"] = "Разработчики"; +App::$strings["Tutorials"] = "Руководства"; +App::$strings["\$Projectname Documentation"] = "\$Projectname Документация"; +App::$strings["Contents"] = "Содержимое"; +App::$strings["This site is not a directory server"] = "Этот сайт не является сервером каталога"; +App::$strings["Export Channel"] = "Экспорт канала"; +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."] = "Экспортировать основную информацию из канала в файл. Служит в качестве резервной копии ваших контактов, основных данных и профиля, однако не включает содержимое. Может быть использовано для импорта ваши данных на новый сервер."; +App::$strings["Export Content"] = "Экспортировать содержимое"; +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."] = "Экспортировать информацию из вашего канала и его содержимое в резервную копию в формате JSON которая может быть использована для восстановления или импорта на другом сервере. Сохраняет все ваши контакты, разрешения, данные профиля и публикации за несколько месяцев. Файл может иметь очень большой размер. Пожалуйста, будьте терпеливы и подождите несколько минут пока не начнётся загрузка."; +App::$strings["Export your posts from a given year."] = "Экспортировать ваши публикации за данный год."; +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."] = "Вы также можете экспортировать ваши публикации и беседы за определённый месяц или год. Выберите дату в панели местоположения в браузере. Если экспорт будет неудачным (это возможно, например, из-за исчерпания памяти на сервере), повторите попытку, выбрав меньший диапазон дат."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Для выбора всех публикаций заданного года, например текущего, посетите %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Для выбора всех публикаций заданного месяца, например за январь сего года, посетите %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)."] = "Данные файлы с содержимым могут быть импортированы и восстановлены на любом содержащем ваш канал сайте. Посетите %2\$s. Для лучших результатов пожалуйста производите импорт и восстановление в порядке датировки (старые сначала)."; +App::$strings["Away"] = "Нет на месте"; +App::$strings["Online"] = "В сети"; +App::$strings["Invalid item."] = "Недействительный элемент."; +App::$strings["Authorize application connection"] = "Авторизовать подключение приложения"; +App::$strings["Return to your app and insert this Security Code:"] = "Вернитесь к своему приложению и вставьте этот код безопасности:"; +App::$strings["Please login to continue."] = "Пожалуйста, войдите, чтобы продолжить."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы хотите авторизовать это приложение для доступа к вашим публикациям и контактам и / или созданию новых публикаций?"; +App::$strings["item"] = "пункт"; +App::$strings["No ratings"] = "Оценок нет"; +App::$strings["Rating: "] = "Оценкa:"; +App::$strings["Website: "] = "Веб-сайт:"; +App::$strings["Description: "] = "Описание:"; +App::$strings["Failed to create source. No channel selected."] = "Не удалось создать источник. Канал не выбран."; +App::$strings["Source created."] = "Источник создан."; App::$strings["Source updated."] = "Источник обновлен."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = ""; +App::$strings["*"] = ""; +App::$strings["Manage remote sources of content for your channel."] = "Управлять удалённым источниками содержимого для вашего канала"; App::$strings["New Source"] = "Новый источник"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = ""; -App::$strings["Only import content with these words (one per line)"] = ""; -App::$strings["Leave blank to import all public content"] = ""; -App::$strings["Channel Name"] = "Имя канала"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Импортировать всё или выбранное содержимое из следующего канала в этот канал и распределить его в соответствии с вашими настройками."; +App::$strings["Only import content with these words (one per line)"] = "Импортировать содержимое только с этим текстом (построчно)"; +App::$strings["Leave blank to import all public content"] = "Оставьте пустым для импорта всего общедоступного содержимого"; +App::$strings["Channel Name"] = "Название канала"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Добавить следующие категории к импортированным публикациям из этого источника (через запятые)"; +App::$strings["Optional"] = "Необязательно"; +App::$strings["Resend posts with this channel as author"] = "Отправить публикации в этот канал повторно как автор"; +App::$strings["Copyrights may apply"] = "Могут применяться авторские права"; App::$strings["Source not found."] = "Источник не найден."; App::$strings["Edit Source"] = "Редактировать источник"; App::$strings["Delete Source"] = "Удалить источник"; App::$strings["Source removed"] = "Источник удален"; -App::$strings["Unable to remove source."] = ""; -App::$strings["- select -"] = "- выбрать -"; -App::$strings["Event title and start time are required."] = "Название события и время начала требуется."; -App::$strings["l, F j"] = "l, F j"; -App::$strings["Edit event"] = "Редактировать мероприятие"; -App::$strings["Create New Event"] = "Создать новое мероприятие"; -App::$strings["Previous"] = "Предыдущая"; -App::$strings["hour:minute"] = "часы:минуты"; -App::$strings["Event details"] = "Детали мероприятия"; -App::$strings["Format is %s %s. Starting date and Title are required."] = "Формат: %s %s. Дата начала и название необходимы."; -App::$strings["Event Starts:"] = "Начало мероприятия:"; -App::$strings["Required"] = "Необходимо"; -App::$strings["Finish date/time is not known or not relevant"] = "Дата окончания или время окончания не известно / не релевантно."; -App::$strings["Event Finishes:"] = "\t\nКонец мероприятий:"; -App::$strings["Adjust for viewer timezone"] = "Отрегулируйте для просмотра часовых поясов"; -App::$strings["Description:"] = "Описание:"; -App::$strings["Title:"] = "Заголовок:"; -App::$strings["Share this event"] = "Поделиться этим мероприятием"; +App::$strings["Unable to remove source."] = "Невозможно удалить источник."; +App::$strings["About this site"] = "Об этом сайте"; +App::$strings["Site Name"] = "Название сайта"; +App::$strings["Site Information"] = "Информация о сайте"; +App::$strings["Administrator"] = "Администратор"; +App::$strings["Terms of Service"] = "Условия предоставления услуг"; +App::$strings["Software and Project information"] = "Информация о программном обеспечении и проекте"; +App::$strings["This site is powered by \$Projectname"] = "Этот сайт работает на \$Projectname"; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Объединенные и децентрализованные сети и службы идентификациии обеспечиваются Zot"; +App::$strings["Additional federated transport protocols:"] = "Дополнительные федеративные транспортные протоколы:"; +App::$strings["Version %s"] = "Версия %s"; +App::$strings["Project homepage"] = "Домашняя страница проекта"; +App::$strings["Developer homepage"] = "Домашняя страница разработчика"; +App::$strings["Image uploaded but image cropping failed."] = "Изображение загружено но обрезка не удалась."; +App::$strings["Image resize failed."] = "Не удалось изменить размер изображения."; +App::$strings["Image upload failed."] = "Загрузка изображения не удалась."; +App::$strings["Unable to process image."] = "Невозможно обработать изображение."; +App::$strings["Photo not available."] = "Фотография недоступна."; +App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "Фотография вашего профиля по умолчанию видна всем в Интернете. Фотографияпрофиля для альтернативных профилей наследуют разрешения текущего профиля"; +App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "Фотография вашего профиля видна всем в Интернете и может быть отправлена на другие сайты."; +App::$strings["Upload File:"] = "Загрузить файл:"; +App::$strings["Select a profile:"] = "Выбрать профиль:"; +App::$strings["Use Photo for Profile"] = "Использовать фотографию для профиля"; +App::$strings["Change Profile Photo"] = "Изменить фотографию профиля"; +App::$strings["Use"] = "Использовать"; +App::$strings["Use a photo from your albums"] = "Использовать фотографию из ваших альбомов"; +App::$strings["Choose a different album"] = "Выбрать другой альбом"; +App::$strings["Select existing photo"] = "Выбрать существующую фотографию"; +App::$strings["Crop Image"] = "Обрезать изображение"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста настройте обрезку изображения для оптимального просмотра."; +App::$strings["Done Editing"] = "Закончить редактирование"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s отслеживает %2\$s's %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s прекратил отслеживать %2\$s's %3\$s"; +App::$strings["No channel."] = "Канала нет."; +App::$strings["No connections in common."] = "Общих контактов нет."; +App::$strings["View Common Connections"] = "Просмотр общий контактов"; App::$strings["Permission Denied."] = "Доступ запрещен."; App::$strings["File not found."] = "Файл не найден."; App::$strings["Edit file permissions"] = "Редактировать разрешения файла"; -App::$strings["Set/edit permissions"] = ""; -App::$strings["Include all files and sub folders"] = ""; -App::$strings["Return to file list"] = ""; -App::$strings["Copy/paste this code to attach file to a post"] = ""; -App::$strings["Copy/paste this URL to link file from a web page"] = ""; -App::$strings["Channel added."] = "Контакт добавлен."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s следит %2\$s's %3\$s"; -App::$strings["Contact not found."] = "Контакт не найден."; -App::$strings["Friend suggestion sent."] = "Предложение дружить отправлено."; -App::$strings["Suggest Friends"] = "Пригласить друзей"; -App::$strings["Suggest a friend for %s"] = ""; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = ""; -App::$strings["Collection created."] = "Коллекция создана."; -App::$strings["Could not create collection."] = "Не удалось создать коллекцию."; -App::$strings["Collection updated."] = ""; -App::$strings["Create a collection of channels."] = "Создать коллекцию контактов"; -App::$strings["Collection Name: "] = "Название коллекции:"; -App::$strings["Members are visible to other channels"] = "Пользователи могут видеть другие каналы"; -App::$strings["Collection removed."] = "Коллекция удалена."; -App::$strings["Unable to remove collection."] = "Невозможно удалить коллекцию."; -App::$strings["Collection Editor"] = "Редактор коллекций"; -App::$strings["Members"] = "Участники"; -App::$strings["All Connected Channels"] = "Все подключенные контакы"; -App::$strings["Click on a channel to add or remove."] = "Нажмите на канал, чтобы добавить или удалить."; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = ""; -App::$strings["Help:"] = "Помощь:"; -App::$strings["Not Found"] = "Не найдено"; -App::$strings["Tag removed"] = "Тег удален"; -App::$strings["Remove Item Tag"] = "Удалить Тег"; -App::$strings["Select a tag to remove: "] = "Выбрать тег для удаления: "; -App::$strings["Theme settings updated."] = "Настройки темы обновленны."; -App::$strings["Site"] = "Сайт"; -App::$strings["Accounts"] = "Пользователи"; -App::$strings["Channels"] = "Каналы"; -App::$strings["Plugins"] = "Плагины"; -App::$strings["Themes"] = "Темы"; -App::$strings["Server"] = "Серверы"; -App::$strings["DB updates"] = "Обновление базы данных"; -App::$strings["Logs"] = "Журналы"; -App::$strings["Plugin Features"] = "Функции плагинов"; -App::$strings["User registrations waiting for confirmation"] = "Регистрации пользователей, которые ждут подтверждения"; -App::$strings["Message queues"] = "Очередь недоставленных сообщений"; -App::$strings["Administration"] = "Администрация"; +App::$strings["Set/edit permissions"] = "Редактировать разрешения"; +App::$strings["Include all files and sub folders"] = "Включить все файлы и подкаталоги"; +App::$strings["Return to file list"] = "Вернутся к списку файлов"; +App::$strings["Copy/paste this code to attach file to a post"] = "Копировать / вставить этот код для прикрепления файла к публикации"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Копировать / вставить эту URL для ссылки на файл со страницы"; +App::$strings["Share this file"] = "Поделиться этим файлом"; +App::$strings["Show URL to this file"] = "Показать URL этого файла"; +App::$strings["Show in your contacts shared folder"] = "Показать общий каталог в ваших контактах"; +App::$strings["Post not found."] = "Публикация не найдена"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s отметил тегом %2\$s %3\$s с %4\$s"; +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."] = ""; +App::$strings["Block Name"] = "Название блока"; +App::$strings["Edit Block"] = "Редактировать блок"; +App::$strings["Item is not editable"] = "Элемент нельзя редактировать"; +App::$strings["Edit post"] = "Редактировать сообщение"; +App::$strings["Tag removed"] = "Тег удалён"; +App::$strings["Remove Item Tag"] = "Удалить тег элемента"; +App::$strings["Select a tag to remove: "] = "Выбрать тег для удаления:"; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Удаление канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Remove This Account"] = "Удалить этот аккаунт"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Этот аккаунт и все его каналы будут полностью удалены из сети."; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Удалить этот аккаунт, все его каналы и их клоны из сети."; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "По умолчанию только представление канала расположенное на данном хабе будет удалено из сети"; +App::$strings["Remove Account"] = "Удалить аккаунт"; +App::$strings["Blocked accounts"] = "Заблокированные аккаунты"; +App::$strings["Expired accounts"] = "Просроченные аккаунты"; +App::$strings["Expiring accounts"] = "Близкие к просрочке аккаунты"; +App::$strings["Primary"] = "Основной"; +App::$strings["Clones"] = "Клоны"; +App::$strings["Message queues"] = "Очередь сообщений"; +App::$strings["Your software should be updated"] = "Ваше программное обеспечение должно быть обновлено"; +App::$strings["Administration"] = "Администрирование"; App::$strings["Summary"] = "Резюме"; -App::$strings["Registered users"] = "Всего пользователeй"; +App::$strings["Registered accounts"] = "Зарегистрированные аккаунты"; App::$strings["Pending registrations"] = "Ждут утверждения"; +App::$strings["Registered channels"] = "Зарегистрированные каналы"; +App::$strings["Active addons"] = "Активные расширения"; App::$strings["Version"] = "Версия системы"; -App::$strings["Active plugins"] = "Активные плагины"; -App::$strings["Site settings updated."] = "Настройки сайта обновлены."; -App::$strings["No special theme for accessibility"] = ""; -App::$strings["Yes - with approval"] = ""; -App::$strings["My site is not a public server"] = ""; -App::$strings["My site has paid access only"] = ""; -App::$strings["My site has free access only"] = ""; -App::$strings["My site offers free accounts with optional paid upgrades"] = ""; -App::$strings["File upload"] = "Загрузка файла"; -App::$strings["Policies"] = "Правила"; -App::$strings["Site name"] = "Название сайта"; -App::$strings["Banner/Logo"] = "Баннер / логотип"; -App::$strings["Administrator Information"] = "Информация об администраторе"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = ""; -App::$strings["System language"] = "Язык системы"; -App::$strings["System theme"] = "Тема системы"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; -App::$strings["Mobile system theme"] = "Мобильная тема системы"; -App::$strings["Theme for mobile devices"] = "Тема для мобильных устройств"; -App::$strings["Accessibility system theme"] = ""; -App::$strings["Accessibility theme"] = ""; -App::$strings["Channel to use for this website's static pages"] = ""; -App::$strings["Site Channel"] = "Канал сайта"; -App::$strings["Maximum image size"] = "Максимальный размер"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; -App::$strings["Does this site allow new member registration?"] = ""; -App::$strings["Which best describes the types of account offered by this hub?"] = ""; -App::$strings["Register text"] = "Текст регистрации"; -App::$strings["Will be displayed prominently on the registration page."] = ""; -App::$strings["Accounts abandoned after x days"] = ""; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = ""; -App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Allowed email domains"] = "Разрешенные домены электронной почты"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; -App::$strings["Block public"] = "Блокировать публичный доступ"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; -App::$strings["Force publish"] = "Заставить публиковать"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = ""; -App::$strings["Disable discovery tab"] = "Отключить вкладку \"обнаруженные\""; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = ""; -App::$strings["No login on Homepage"] = ""; -App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = ""; -App::$strings["Proxy user"] = "Proxy пользователь"; -App::$strings["Proxy URL"] = "Proxy URL"; -App::$strings["Network timeout"] = "Время ожидания сети"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; -App::$strings["Delivery interval"] = "Интервал доставки"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; -App::$strings["Poll interval"] = "Интервал опроса"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; -App::$strings["Maximum Load Average"] = ""; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; -App::$strings["No server found"] = "Сервер не найден"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "для канала"; -App::$strings["on server"] = "на сервере"; -App::$strings["Status"] = "Статус"; -App::$strings["Update has been marked successful"] = ""; -App::$strings["Executing %s failed. Check system logs."] = ""; -App::$strings["Update %s was successfully applied."] = ""; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = ""; -App::$strings["Update function %s could not be found."] = ""; -App::$strings["No failed updates."] = "Ошибок обновлений нет."; -App::$strings["Failed Updates"] = "Обновления с ошибками"; -App::$strings["Mark success (if update was manually applied)"] = ""; -App::$strings["Attempt to execute this update step automatically"] = ""; -App::$strings["%s user blocked/unblocked"] = array( - 0 => "", - 1 => "", - 2 => "", -); -App::$strings["%s user deleted"] = array( - 0 => "%s канал удален", - 1 => "%s канала удалены", - 2 => "%s каналов удалено", -); -App::$strings["Account not found"] = "Аккаунт не найден"; -App::$strings["User '%s' deleted"] = "Пользователь '%s' удален"; -App::$strings["User '%s' unblocked"] = "Пользователь '%s' разрешен"; -App::$strings["User '%s' blocked"] = "Пользователь '%s' заблокирован"; -App::$strings["Users"] = "Пользователи"; -App::$strings["select all"] = "выбрать все"; -App::$strings["User registrations waiting for confirm"] = "Регистрации пользователей ждут подтверждения"; -App::$strings["Request date"] = "Дата запроса"; -App::$strings["No registrations."] = "Новых регистраций пока нет."; -App::$strings["Approve"] = "Утвердить"; +App::$strings["Repository version (master)"] = "Версия репозитория (master)"; +App::$strings["Repository version (dev)"] = "Версия репозитория (dev)"; +App::$strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта."; +App::$strings["Could not locate selected profile."] = "Не удалось обнаружить выбранный профиль."; +App::$strings["Connection updated."] = "Контакты обновлены."; +App::$strings["Failed to update connection record."] = "Не удалось обновить запись контакта."; +App::$strings["is now connected to"] = "теперь подключён к"; +App::$strings["Could not access address book record."] = "Не удалось получить доступ к записи адресной книги."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Обновление невозможно - в настоящее время канал недоступен."; +App::$strings["Unable to set address book parameters."] = "Не удалось получить доступ к параметрам адресной книги."; +App::$strings["Connection has been removed."] = "Контакт был удалён."; +App::$strings["View %s's profile"] = "Просмотр %s профиля"; +App::$strings["Refresh Permissions"] = "Обновить разрешения"; +App::$strings["Fetch updated permissions"] = "Получить обновлённые разрешения"; +App::$strings["Refresh Photo"] = "Обновить фотографию"; +App::$strings["Fetch updated photo"] = "Получить обновлённую фотографию"; +App::$strings["View recent posts and comments"] = "Просмотреть последние публикации и комментарии"; +App::$strings["Unblock"] = "Разблокировать"; +App::$strings["Block"] = "Блокировать"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Блокировать (или разблокировать) связи с этим контактом"; +App::$strings["This connection is blocked!"] = "Этот контакт заблокирован!"; +App::$strings["Unignore"] = "Не игнорировать"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Игнорировать (или не игнорировать) все связи для этого контакта"; +App::$strings["This connection is ignored!"] = "Этот контакт игнорируется!"; +App::$strings["Unarchive"] = "Разархивировать"; +App::$strings["Archive"] = "Заархивировать"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Заархивировать (или разархивировать) этот контакт - пометить канал отключённым но сохранить содержимое"; +App::$strings["This connection is archived!"] = "Этот контакт заархивирован!"; +App::$strings["Unhide"] = "Показать"; +App::$strings["Hide"] = "Скрыть"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Скрыть или показать этот контакт от / для остальных"; +App::$strings["This connection is hidden!"] = "Этот контакт скрыт!"; +App::$strings["Delete this connection"] = "Удалить этот контакт"; +App::$strings["Fetch Vcard"] = "Получить vCard"; +App::$strings["Fetch electronic calling card for this connection"] = "Получить электронную телефонную карточку для этого контакта"; +App::$strings["Open Individual Permissions section by default"] = "Открывать раздел \"Индивидуальные разрешения\" по умолчанию"; +App::$strings["Affinity"] = "Сходство"; +App::$strings["Open Set Affinity section by default"] = "Открыть секцию установления сходства по умолчанию"; +App::$strings["Filter"] = "Фильтр"; +App::$strings["Open Custom Filter section by default"] = "Открывать секцию \"Настраиваемый фильтр\" по умолчанию"; +App::$strings["Approve this connection"] = "Утвердить этот контакт"; +App::$strings["Accept connection to allow communication"] = "Принять контакт чтобы разрешить связь"; +App::$strings["Set Affinity"] = "Установить сходство"; +App::$strings["Set Profile"] = "Установить профиль"; +App::$strings["Set Affinity & Profile"] = "Установить сходство и профиль"; +App::$strings["This connection is unreachable from this location."] = "Этот контакт недоступен для данного местоположения"; +App::$strings["This connection may be unreachable from other channel locations."] = "Этот контакт может быть недоступен из других мест размещения канала"; +App::$strings["Location independence is not supported by their network."] = "Независимое местоположение не поддерживается их сетью."; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "Этот контакт недоступен из данного местоположения. Независимое местоположение не поддерживается их сетью."; +App::$strings["Apply these permissions automatically"] = "Применить эти разрешения автоматически"; +App::$strings["Connection requests will be approved without your interaction"] = "Запросы контактов будут одобрены без вашего участия"; +App::$strings["Permission role"] = "Роль разрешения"; +App::$strings["Add permission role"] = "Добавить роль разрешения"; +App::$strings["This connection's primary address is"] = "Главный адрес это контакта"; +App::$strings["Available locations:"] = "Доступные расположения:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Разрешения, указанные на этой странице, будут применяться ко всем новым соединениям."; +App::$strings["Connection Tools"] = "Инструменты контактов"; +App::$strings["Slide to adjust your degree of friendship"] = "Прокрутить для настройки степени дружбы"; +App::$strings["Slide to adjust your rating"] = "Прокрутить для настройки оценки"; +App::$strings["Optionally explain your rating"] = "Объясните свою оценку (не обязательно)"; +App::$strings["Custom Filter"] = "Настраиваемый фильтр"; +App::$strings["Only import posts with this text"] = "Импортировать публикации только с этим текстом"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "слова по одному в строку, #тег, /шаблон/ или lang=xxl; оставьте пустым для импорта всех публикаций"; +App::$strings["Do not import posts with this text"] = "Не импортировать публикации с этим текстом"; +App::$strings["This information is public!"] = "Эта информация общедоступна!"; +App::$strings["Connection Pending Approval"] = "Ожидающие подтверждения контактов"; +App::$strings["inherited"] = "наследуется"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль который вы хотит показывать в %s при безопасном просмотре."; +App::$strings["Their Settings"] = "Их настройки"; +App::$strings["My Settings"] = "Мои настройки"; +App::$strings["Individual Permissions"] = "Индивидуальные разрешения"; +App::$strings["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."] = "Некоторые разрешения могут наследовать из настроек приватности ваших каналов которые могут иметь более высокий приоритет чем индивидуальные. Вы не можете менять эти настройки здесь."; +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."] = "Некоторые разрешения могут быть унаследованы из настроек приватности вашего канала, которые могут иметь более высокий приоритет чем индивидуальные. Вы можете изменить эти настройки, однако они не будут применены до изменения переданных по наследству настроек."; +App::$strings["Last update:"] = "Последнее обновление:"; +App::$strings["Details"] = "Сведения"; +App::$strings["Import Webpage Elements"] = "Импортировать части веб-страницы"; +App::$strings["Import selected"] = "Импортировать выбранное"; +App::$strings["Export Webpage Elements"] = "Экспортировать часть веб-страницы"; +App::$strings["Export selected"] = "Экспортировать выбранное"; +App::$strings["Actions"] = "Действия"; +App::$strings["Page Link"] = "Ссылка страницы"; +App::$strings["Page Title"] = "Заголовок страницы"; +App::$strings["Invalid file type."] = "Неверный тип файла."; +App::$strings["Error opening zip file"] = "Ошибка открытия ZIP файла"; +App::$strings["Invalid folder path."] = "Неверный путь к каталогу."; +App::$strings["No webpage elements detected."] = "Не обнаружено частей веб-страницы."; +App::$strings["Import complete."] = "Импорт завершен."; +App::$strings["Page link"] = "Ссылка страницы"; +App::$strings["Edit Webpage"] = "Редактировать веб-страницу"; +App::$strings["Edit Layout"] = "Редактировать шаблон"; +App::$strings["This directory server requires an access token"] = "Для доступа к этому серверу каталогов требуется токен"; +App::$strings["Comment approved"] = "Комментарий одобрен"; +App::$strings["Comment deleted"] = "Комментарий удалён"; +App::$strings["Add Article"] = "Добавить статью"; +App::$strings["Bookmark added"] = "Закладка добавлена"; +App::$strings["My Bookmarks"] = "Мои закладки"; +App::$strings["My Connections Bookmarks"] = "Закладки моих контактов"; +App::$strings["Files: shared with me"] = "Файлы: поделились со мной"; +App::$strings["NEW"] = "НОВОЕ"; +App::$strings["Last Modified"] = "Последнее изменение"; +App::$strings["Remove all files"] = "Удалить все файлы"; +App::$strings["Remove this file"] = "Удалить этот файл"; +App::$strings["Select a bookmark folder"] = "Выбрать каталог для закладок"; +App::$strings["Save Bookmark"] = "Сохранить закладку"; +App::$strings["URL of bookmark"] = "URL закладки"; +App::$strings["Or enter new bookmark folder name"] = "или введите новое имя каталога закладок"; +App::$strings["Permissions denied."] = "Доступ запрещен."; +App::$strings["Unknown App"] = "Неизвестное приложение"; +App::$strings["Authorize"] = "Авторизовать"; +App::$strings["Do you authorize the app %s to access your channel data?"] = "Авторизуете ли вы приложение %s для доступа к данным вашего канала?"; +App::$strings["Allow"] = "Разрешить"; App::$strings["Deny"] = "Запретить"; -App::$strings["Register date"] = "Дата регистрации"; -App::$strings["Last login"] = "Последний вход"; -App::$strings["Expires"] = ""; -App::$strings["Service Class"] = "Класс службы"; -App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "", - 1 => "", - 2 => "", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s канал удален", - 1 => "%s канала удалены", - 2 => "%s каналы удалены", -); -App::$strings["Channel not found"] = "Канал не найден"; -App::$strings["Channel '%s' deleted"] = "Канал '%s' удален"; -App::$strings["Channel '%s' uncensored"] = ""; -App::$strings["Channel '%s' censored"] = ""; -App::$strings["Censor"] = ""; -App::$strings["Uncensor"] = ""; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = ""; +App::$strings["Items tagged with: %s"] = "Объекты помечены как: %s"; +App::$strings["Search results for: %s"] = "Результаты поиска для: %s"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname сервер - Установка"; +App::$strings["Could not connect to database."] = "Не удалось подключиться к серверу баз данных."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Не удалось подключиться к указанному URL. Вероятно проблема с SSL сертификатом или DNS."; +App::$strings["Could not create table."] = "Не удалось создать таблицу."; +App::$strings["Your site database has been installed."] = "Ваша база данных установлена."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Вам может понадобится импортировать файл \"install/schema_xxx.sql\" вручную используя клиент базы данных."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Пожалуйста, обратитесь к файлу \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Проверка системы"; +App::$strings["Check again"] = "Перепроверить"; +App::$strings["Database connection"] = "Подключение к базе данных"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Для установки \$Projectname необходимо знать как подключиться к ваше базе данных."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг провайдером или администрацией сайта если у вас есть вопросы об этих настройках."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Указанная ниже база данных должна существовать. Если это не так, пожалуйста, создайте её перед тем, как продолжить."; +App::$strings["Database Server Name"] = "Имя сервера баз данных"; +App::$strings["Default is 127.0.0.1"] = "По умолчанию 127.0.0.1"; +App::$strings["Database Port"] = "Порт сервера баз данных"; +App::$strings["Communication port number - use 0 for default"] = "Порт коммуникации - используйте 0 по умолчанию"; +App::$strings["Database Login Name"] = "Имя для подключения к базе данных"; +App::$strings["Database Login Password"] = "Пароль для подключения к базе данных"; +App::$strings["Database Name"] = "Имя базы данных"; +App::$strings["Database Type"] = "Тип базы данных"; +App::$strings["Site administrator email address"] = "Адрес электронной почты администратора сайта"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Ваш адрес электронной почты должен соответствовать этому для использования веб-панели администратора."; +App::$strings["Website URL"] = "URL веб-сайта"; +App::$strings["Please use SSL (https) URL if available."] = "Пожалуйста, используйте SSL (https) URL если возможно."; +App::$strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"; +App::$strings["Site settings"] = "Настройки сайта"; +App::$strings["PHP version 5.5 or greater is required."] = "Требуется PHP версии 5.5 или выше"; +App::$strings["PHP version"] = "Версия PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти консольную версию PHP в путях переменной PATH веб-сервера."; +App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Если у вас на сервере не установлена консольная версия PHP вы не сможете запустить фоновый опрос через cron. "; +App::$strings["PHP executable path"] = "Пусть к исполняемому модулю PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Введите полный путь к исполняемому модулю PHP. Вы можете оставить его пустым для продолжения установки."; +App::$strings["Command line PHP"] = "Командная строка PHP"; +App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Невозможно проверить командную строку PHP поскольку требуемая функция shell_exec() отключена."; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "В консольной версии PHP в вашей системе отключена опция \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "Это необходимо для функционирования доставки сообщений."; +App::$strings["PHP register_argc_argv"] = ""; +App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Максимально разрешённый общий размер загрузок установлен в %s. Максимальный размер одной загрузки установлен в %s. Вам разрешено загружать до %d файлов за один приём."; +App::$strings["You can adjust these settings in the server php.ini file."] = "Вы можете изменить эти настройки в файле php.ini на сервере."; +App::$strings["PHP upload limits"] = "Максимальный размер загрузки в PHP"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" не может сгенерировать ключи шифрования"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Генерация ключей шифрования"; +App::$strings["libCurl PHP module"] = ""; +App::$strings["GD graphics PHP module"] = ""; +App::$strings["OpenSSL PHP module"] = ""; +App::$strings["PDO database PHP module"] = ""; +App::$strings["mb_string PHP module"] = ""; +App::$strings["xml PHP module"] = ""; +App::$strings["zip PHP module"] = ""; +App::$strings["Apache mod_rewrite module"] = ""; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: требуемый модуль mod_rewrite веб-сервера Apache не установлен."; +App::$strings["exec"] = ""; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["shell_exec"] = ""; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = ""; +App::$strings["Error: libCURL PHP module required but not installed."] = ""; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = ""; +App::$strings["Error: openssl PHP module required but not installed."] = ""; +App::$strings["Error: PDO database PHP module required but not installed."] = ""; +App::$strings["Error: mb_string PHP module required but not installed."] = ""; +App::$strings["Error: xml PHP module required for DAV but not installed."] = ""; +App::$strings["Error: zip PHP module required but not installed."] = ""; +App::$strings[".htconfig.php is writable"] = ""; +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."] = ""; +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."] = ""; +App::$strings["Please see install/INSTALL.txt for additional information."] = ""; +App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = ""; +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."] = ""; +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."] = ""; +App::$strings["%s is writable"] = "%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 top level web folder"] = "Эта программа использует каталог хранения для загруженных файлов. Для веб-сервера требуется доступ на запись начиная с верхнего уровня каталога хранения."; +App::$strings["store is writable"] = "хранилище доступно для записи"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = ""; +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!"] = ""; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Эти ограничения приняты поскольку ваши общедоступные публикации могут, например, содержать ссылки на изображения на вашем собственном хабе."; +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."] = ""; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = ""; +App::$strings["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."] = ""; +App::$strings["SSL certificate validation"] = ""; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ""; +App::$strings["Url rewrite is working"] = "Перезапись URL работает"; +App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = ""; +App::$strings["

What next?

"] = "

Что дальше?

"; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Вам понадобится [вручную] настроить запланированную задачу для опрашивателя."; +App::$strings["Remote privacy information not available."] = "Удаленная информация о конфиденциальности недоступна."; +App::$strings["Visible to:"] = "Видимо для:"; +App::$strings["Connection added."] = "Контакт добавлен."; +App::$strings["Menu not found."] = "Меню не найдено"; +App::$strings["Unable to create element."] = "Невозможно создать элемент."; +App::$strings["Unable to update menu element."] = "Невозможно обновить элемент меню."; +App::$strings["Unable to add menu element."] = "Невозможно добавить элемент меню."; +App::$strings["Menu Item Permissions"] = "Разрешения на пункт меню"; +App::$strings["(click to open/close)"] = "(нажмите чтобы открыть/закрыть)"; +App::$strings["Link Name"] = "Имя ссылки"; +App::$strings["Link or Submenu Target"] = "Ссылка или цель подменю"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Введите URL ссылки или выберите имя меню для создания подменю"; +App::$strings["Use magic-auth if available"] = "Использовать magic-auth если возможно"; +App::$strings["Open link in new window"] = "Открыть ссылку в новом окне"; +App::$strings["Order in list"] = "Порядок в списке"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Большие значения в конце списка"; +App::$strings["Submit and finish"] = "Отправить и завершить"; +App::$strings["Submit and continue"] = "Отправить и продолжить"; +App::$strings["Menu:"] = "Меню:"; +App::$strings["Link Target"] = "Цель ссылки"; +App::$strings["Edit menu"] = "Редактировать меню"; +App::$strings["Edit element"] = "Редактировать элемент"; +App::$strings["Drop element"] = "Удалить элемент"; +App::$strings["New element"] = "Новый элемент"; +App::$strings["Edit this menu container"] = "Редактировать контейнер меню"; +App::$strings["Add menu element"] = "Добавить элемент меню"; +App::$strings["Delete this menu item"] = "Удалить этот элемент меню"; +App::$strings["Edit this menu item"] = "Редактировать этот элемент меню"; +App::$strings["Menu item not found."] = "Элемент меню не найден."; +App::$strings["Menu item deleted."] = "Элемент меню удалён."; +App::$strings["Menu item could not be deleted."] = "Невозможно удалить элемент меню."; +App::$strings["Edit Menu Element"] = "Редактировать элемент меню"; +App::$strings["Link text"] = "Текст ссылки"; App::$strings["Plugin %s disabled."] = "Плагин %s отключен."; App::$strings["Plugin %s enabled."] = "Плагин %s включен."; App::$strings["Disable"] = "Запретить"; App::$strings["Enable"] = "Разрешить"; App::$strings["Toggle"] = "Переключить"; App::$strings["Author: "] = "Автор: "; -App::$strings["Maintainer: "] = "Обслуживающий: "; +App::$strings["Maintainer: "] = "Сопровождающий:"; +App::$strings["Minimum project version: "] = "Минимальная версия проекта:"; +App::$strings["Maximum project version: "] = "Максимальная версия проекта:"; +App::$strings["Minimum PHP version: "] = "Минимальная версия PHP:"; +App::$strings["Compatible Server Roles: "] = "Совместимые роли сервера:"; +App::$strings["Requires: "] = "Необходимо:"; +App::$strings["Disabled - version incompatibility"] = "Отключено - несовместимость версий"; +App::$strings["Enter the public git repository URL of the addon repo."] = "Введите URL публичного репозитория расширений git"; +App::$strings["Addon repo git URL"] = "URL репозитория расширений git"; +App::$strings["Custom repo name"] = "Пользовательское имя репозитория"; +App::$strings["(optional)"] = "(необязательно)"; +App::$strings["Download Addon Repo"] = "Загрузить репозиторий расширений"; +App::$strings["Install new repo"] = "Установить новый репозиторий"; +App::$strings["Manage Repos"] = "Управление репозиториями"; +App::$strings["Installed Addon Repositories"] = "Установленные репозитории расширений"; +App::$strings["Install a New Addon Repository"] = "Установить новый репозиторий расширений"; +App::$strings["Switch branch"] = "Переключить ветку"; +App::$strings["Site settings updated."] = "Настройки сайта обновлены."; +App::$strings["%s - (Incompatible)"] = "%s - (несовместимо)"; +App::$strings["mobile"] = "мобильный"; +App::$strings["experimental"] = "экспериментальный"; +App::$strings["unsupported"] = "неподдерживаемый"; +App::$strings["Yes - with approval"] = "Да - требует подтверждения"; +App::$strings["My site is not a public server"] = "Мой сайт не является публичным сервером"; +App::$strings["My site has paid access only"] = "Мой сайт доступен только с оплатой "; +App::$strings["My site has free access only"] = "На моём сайте разрешён свободный доступ"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "На моём сайте разрешены бесплатные аккаунты с дополнительными платными услугами"; +App::$strings["Beginner/Basic"] = "Начинающий/Базовый"; +App::$strings["Novice - not skilled but willing to learn"] = "Новичок - не опытный, но желающий учиться"; +App::$strings["Intermediate - somewhat comfortable"] = "Промежуточный - более удобный"; +App::$strings["Advanced - very comfortable"] = "Продвинутый - очень удобный"; +App::$strings["Expert - I can write computer code"] = "Эксперт - я умею программировать"; +App::$strings["Wizard - I probably know more than you do"] = "Волшебник - возможно я знаю больше чем ты"; +App::$strings["Default permission role for new accounts"] = "Разрешения по умолчанию для новых аккаунтов"; +App::$strings["This role will be used for the first channel created after registration."] = "Эта роль будет использоваться для первого канала, созданного после регистрации."; +App::$strings["Registration"] = "Регистрация"; +App::$strings["File upload"] = "Загрузка файла"; +App::$strings["Policies"] = "Правила"; +App::$strings["Site default technical skill level"] = "Уровень технических навыков на сайте по умолчанию"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Используется чтобы обеспечить удобство на уровне технических навыков пользователя"; +App::$strings["Lock the technical skill level setting"] = "Заблокировать уровень технических навыков"; +App::$strings["Members can set their own technical comfort level by default"] = "Участники могут выбрать уровень своих технических навыков по умолчанию"; +App::$strings["Banner/Logo"] = "Баннер / логотип"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Разрешён нефильтруемый HTML/CSS/JS"; +App::$strings["Administrator Information"] = "Информация об администраторе"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Контактная информация для администраторов сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Публичное видимое описание сайта. Показывается на информационной странице сайта. Можно использовать BBCode."; +App::$strings["System language"] = "Язык системы"; +App::$strings["System theme"] = "Системная тема"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Системная тема по умолчанию - может быть изменена в профиле пользователя - изменить параметры темы."; +App::$strings["Allow Feeds as Connections"] = "Разрешить ленты новостей как контакты"; +App::$strings["(Heavy system resource usage)"] = "(Высокое использование системных ресурсов)"; +App::$strings["Maximum image size"] = "Максимальный размер изображения"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Максимальный размер загруженных изображений в байтах. По умолчанию 0 или без ограничений."; +App::$strings["Does this site allow new member registration?"] = "Разрешается ли регистрация новых пользователей на этом сайте?"; +App::$strings["Invitation only"] = "Только по приглашениям"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Регистрация пользователей разрешается только по приглашениям. Вышеуказанная политика регистрация должны быть установлена в \"Да\"."; +App::$strings["Minimum age"] = "Минимальный возраст"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Минимальный возраст (в годах) для регистрации на этом сайте."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Как лучше описать тип учётных записей предлагаемых на этом хабе?"; +App::$strings["This is displayed on the public server site list."] = "Это отображается в списке общедоступных серверов."; +App::$strings["Register text"] = "Текст регистрации"; +App::$strings["Will be displayed prominently on the registration page."] = "Будет отображаться на странице регистрации на видном месте."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Домашняя страница, которая будет показываться посетителям сайт (по умочанию - форма входа)."; +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."] = "например: 'public' для показа публичного потока, 'page/sys/home' показывает системную страницу home или 'include:home.html' для подключения файла."; +App::$strings["Preserve site homepage URL"] = "Сохранить URL главной страницы сайта"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Показывать домашнюю страницу сайта во фрейме вместо стандартной переадресации"; +App::$strings["Accounts abandoned after x days"] = "Аккаунты считаются заброшенными после N дней"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Системные ресурсы не будут расходоваться для опроса внешних сайтов для заброшенных аккаунтов. Введите 0 для отсутствия ограничений."; +App::$strings["Allowed friend domains"] = "Разрешенные домены друзей"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов с которыми разрешено устанавливать дружеские отношения на этом сайте. Wildcards разрешены. Пусто означает разрешены любые домены."; +App::$strings["Verify Email Addresses"] = "Проверка адреса электронной почты"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Включите для проверки адреса электронной почты использованного при регистрации (рекомендуется)."; +App::$strings["Force publish"] = "Принудительно публиковать"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Включите для принудительного включения всех учётных записей на данном сайте в каталог."; +App::$strings["Import Public Streams"] = "Импортированные публичные потоки"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Импортировать и разрешить публичный доступ к загружаемым с других сайтов потоков. Внимание - этот контент не может модерироваться."; +App::$strings["Site only Public Streams"] = "Публичные потоки только с сайта"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Разрешить доступ к общедоступному контенту, исходящему только с этого сайта, если импортированные публичные потоки отключены."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Разрешить всем доступ к публичным потокам"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Отключите если для просмотра требуется аутентификация. Внимание - этот контент не может модерироваться."; +App::$strings["Only import Public stream posts with this text"] = "Импортировать только публичные потоки с этим текстом"; +App::$strings["Do not import Public stream posts with this text"] = "Не импортировать публичные потоки с этим текстом"; +App::$strings["Login on Homepage"] = "Вход на домашней странице"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Предоставлять форму входа для посетителей на домашней странице если другого содержимого не настроено."; +App::$strings["Enable context help"] = "Включить контекстную помощь"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Показывать контекстную помощь для текущей странице при нажатии на кнопку \"Помощь\"."; +App::$strings["Reply-to email address for system generated email."] = "Адрес email Reply-to для генерируемых системой сообщений."; +App::$strings["Sender (From) email address for system generated email."] = "Адрес email отправителя (From) для генерируемых системой сообщений."; +App::$strings["Name of email sender for system generated email."] = "Имя отправителя для генерируемых системой сообщений."; +App::$strings["Directory Server URL"] = "URL сервера каталогов"; +App::$strings["Default directory server"] = "Сервер каталогов по умолчанию"; +App::$strings["Proxy user"] = "Имя пользователя proxy-сервера"; +App::$strings["Proxy URL"] = "URL proxy-сервера"; +App::$strings["Network timeout"] = "Время ожидания сети"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Значение в секундах. Если установлен в 0 - без ограничений (не рекомендуется)."; +App::$strings["Delivery interval"] = "Интервал доставки"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Значение задержки фоновых процессов доставки в секундах для снижения нагрузки на систему. Рекомендуется 4-5 для серверов совместного использования, 2-3 для частных виртуальных и 0-1 для выделенных серверов."; +App::$strings["Deliveries per process"] = "Доставок на процесс"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Количество доставок для одного процесса. Настройте в соответствии с производительностью системы. Рекомендуется 1-5."; +App::$strings["Queue Threshold"] = "Порог очереди"; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Всегда откладывать немедленную доставку, если в очереди содержится большее количество записей, чем это."; +App::$strings["Poll interval"] = "Интервал опроса"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Задержка фоновых процессов опроса на указанное количество секунд для снижения нагрузки на систему. Если 0 - использовать интервал доставки."; +App::$strings["Path to ImageMagick convert program"] = "Путь к ImageMagick"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "При установке эта программа генерирует миниатюры изображений для больших файлов (свыше 4000 в любом измерении) для предотвращения утечки памяти. Пример: /usr/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Разрешить SVG миниатюры в просмотрщике файлов"; +App::$strings["WARNING: SVG images may contain malicious code."] = "Внимание: изображения SVG могут содержать вредоносный код."; +App::$strings["Maximum Load Average"] = "Максимальная средняя нагрузка"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Максимальная нагрузка системы для откладывания процессов опроса и доставки - по умолчанию 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Срок хранения в днях для импортированного содержимого (из матрицы / сети)."; +App::$strings["0 for no expiration of imported content"] = "0 для постоянного хранения импортированного содержимого"; +App::$strings["Do not expire any posts which have comments less than this many days ago"] = "Продлевать строк хранения для любых публикаций, которые имеют комментарии возрастом менее этого значения"; +App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "Публичные серверы: необязательная маркетинговая лэндинг-страница для новых пользователей"; +App::$strings["Create this page first. Default is %s/register"] = "Создать эту страницу первой. По умолчанию %s/register"; +App::$strings["Page to display after creating a new channel"] = "Страница для показа после создания нового канала"; +App::$strings["Default: profiles"] = "По умолчанию: profiles"; +App::$strings["Optional: site location"] = "Необязательно: место размещения сайта"; +App::$strings["Region or country"] = "Регион или страна"; +App::$strings["Log settings updated."] = "Настройки журнала обновлены."; +App::$strings["Clear"] = "Очистить"; +App::$strings["Debugging"] = "Отладка"; +App::$strings["Log file"] = "Файл журнала"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Должен быть доступен для записи веб-сервером. Пусть относителен основного каталога веб-сайта."; +App::$strings["Log level"] = "Уровень журнала"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s аккаунт блокирован/разблокирован", + 1 => "%s аккаунта блокированы/разблокированы", + 2 => "%s аккаунтов блокированы/разблокированы", +); +App::$strings["%s account deleted"] = array( + 0 => "%s аккаунт удалён", + 1 => "%s аккаунта удалёны", + 2 => "%s аккаунтов удалёны", +); +App::$strings["Account not found"] = "Аккаунт не найден"; +App::$strings["Account '%s' blocked"] = "Аккаунт '%s' заблокирован"; +App::$strings["Account '%s' unblocked"] = "Аккаунт '%s' разблокирован"; +App::$strings["select all"] = "выбрать все"; +App::$strings["Registrations waiting for confirm"] = "Регистрации ждут подтверждения"; +App::$strings["Request date"] = "Дата запроса"; +App::$strings["No registrations."] = "Нет новых регистраций."; +App::$strings["ID"] = ""; +App::$strings["All Channels"] = "Все каналы"; +App::$strings["Register date"] = "Дата регистрации"; +App::$strings["Last login"] = "Последний вход"; +App::$strings["Expires"] = "Срок действия"; +App::$strings["Service Class"] = "Класс обслуживания"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные учётные записи будут удалены!\n\nВсё что было ими опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:"; +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["Block public"] = "Блокировать публичный доступ"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы."; +App::$strings["Provide a cloud root directory"] = "Предоставить корневой каталог в облаке"; +App::$strings["The cloud root directory lists all channel names which provide public files"] = "В корневом каталоге облака показываются все имена каналов, которые предоставляют общедоступные файлы"; +App::$strings["Show total disk space available to cloud uploads"] = "Показывать общее доступное для загрузок место в хранилище"; +App::$strings["Set \"Transport Security\" HTTP header"] = "Установить HTTP-заголовок \"Transport Security\""; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Установить HTTP-заголовок \"Content Security Policy\""; +App::$strings["Allowed email domains"] = "Разрешённые домены email"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Список разделённых запятыми доменов для которых разрешена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены."; +App::$strings["Not allowed email domains"] = "Запрещённые домены email"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Список разделённых запятыми доменов для которых запрещена регистрация на этом сайте. Wildcards разрешены. Если пусто то разрешены любые домены до тех пор, пока разрешённые домены не будут указаны."; +App::$strings["Allow communications only from these sites"] = "Разрешить связь только с этими сайтами"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Один сайт на строку. Оставьте пустым для разрешения взаимодействия без ограничений (по умочанию)."; +App::$strings["Block communications from these sites"] = "Блокировать связь с этими сайтами"; +App::$strings["Allow communications only from these channels"] = "Разрешить связь только для этих каналов"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Один канал (или его хэш) на строку. Оставьте пустым для разрешения взаимодействия с любым каналом (по умолчанию)."; +App::$strings["Block communications from these channels"] = "Блокировать связь с этими каналами"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Разрешать встраивание только для безопасных (SSL/TLS) сайтов и ссылок."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Разрешить встраивать нефильтруемое HTML-содержимое только для этих доменов"; +App::$strings["One site per line. By default embedded content is filtered."] = "Один сайт на строку. По умолчанию встраиваемое содержимое фильтруется."; +App::$strings["Block embedded HTML from these domains"] = "Блокировать встраивание HTML-содержимого для этих доменов"; +App::$strings["Update has been marked successful"] = "Обновление было помечено как успешное"; +App::$strings["Executing %s failed. Check system logs."] = "Выполнение %s неудачно. Проверьте системный журнал."; +App::$strings["Update %s was successfully applied."] = "Обновление %sбыло успешно применено."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Обновление %s не вернуло статус. Неизвестно было ли оно успешным."; +App::$strings["Update function %s could not be found."] = "Функция обновления %sне может быть найдена."; +App::$strings["Failed Updates"] = "Обновления с ошибками"; +App::$strings["Mark success (if update was manually applied)"] = "Пометить успешным (если обновление было применено вручную)"; +App::$strings["Attempt to execute this update step automatically"] = "Попытаться применить это обновление автоматически"; +App::$strings["No failed updates."] = "Ошибок обновлений нет."; +App::$strings["New Profile Field"] = "Поле нового профиля"; +App::$strings["Field nickname"] = "Псевдоним поля"; +App::$strings["System name of field"] = "Системное имя поля"; +App::$strings["Input type"] = "Тип ввода"; +App::$strings["Field Name"] = "Имя поля"; +App::$strings["Label on profile pages"] = "Метка на странице профиля"; +App::$strings["Help text"] = "Текст подсказки"; +App::$strings["Additional info (optional)"] = "Дополнительная информация (необязательно)"; +App::$strings["Field definition not found"] = "Определения поля не найдено"; +App::$strings["Edit Profile Field"] = "Редактировать поле профиля"; +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["Theme settings updated."] = "Настройки темы обновленны."; App::$strings["No themes found."] = "Темы не найдены."; -App::$strings["Screenshot"] = "Скриншот"; +App::$strings["Screenshot"] = "Снимок экрана"; App::$strings["[Experimental]"] = "[экспериментальный]"; App::$strings["[Unsupported]"] = "[неподдерживаемый]"; -App::$strings["Log settings updated."] = "Настройки журнала обновленны."; -App::$strings["Clear"] = "Очистить"; -App::$strings["Debugging"] = "Включить/Выключить"; -App::$strings["Log file"] = "Файл журнала"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Должна быть доступна для записи веб-сервером. Относительно верхнего уровня веб-сайта."; -App::$strings["Log level"] = "Уровень журнала"; -App::$strings["Thing updated"] = ""; -App::$strings["Object store: failed"] = ""; -App::$strings["Thing added"] = ""; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; -App::$strings["Show Thing"] = ""; -App::$strings["item not found."] = "Элемент не найден."; -App::$strings["Edit Thing"] = ""; -App::$strings["Select a profile"] = "Выберите профиль"; -App::$strings["Post an activity"] = ""; -App::$strings["Only sends to viewers of the applicable profile"] = ""; -App::$strings["Name of thing e.g. something"] = ""; -App::$strings["URL of thing (optional)"] = ""; -App::$strings["URL for photo of thing (optional)"] = ""; -App::$strings["Add Thing to your Profile"] = ""; -App::$strings["Nothing to import."] = "Ничего импортировать."; -App::$strings["Unable to download data from old server"] = "Невозможно загрузить данные из старого сервера"; -App::$strings["Imported file is empty."] = "Импортированный файл пуст."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = ""; -App::$strings["Channel clone failed. Import failed."] = ""; -App::$strings["Cloned channel not found. Import failed."] = ""; -App::$strings["Import completed."] = "Импорт завершен."; -App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; -App::$strings["Import Channel"] = "Импорт канала"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = ""; -App::$strings["File to Upload"] = "Файл для загрузки"; -App::$strings["Or provide the old server/hub details"] = ""; -App::$strings["Your old identity address (xyz@example.com)"] = "Ваш старый адрес идентичности (xyz@example.com)"; -App::$strings["Your old login email address"] = "Ваш старый адрес электронной почты"; -App::$strings["Your old login password"] = "Ваш старый пароль"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = ""; -App::$strings["Make this hub my primary location"] = ""; -App::$strings["Total invitation limit exceeded."] = ""; -App::$strings["%s : Not a valid email address."] = "%s : Не действительный адрес электронной почты."; -App::$strings["Please join us on Red"] = "Пожалуйста, присоединяйтесь к нам в Red"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = ""; -App::$strings["%s : Message delivery failed."] = "%s : Доставка сообщения не удалась."; +App::$strings["Off"] = "Выкл."; +App::$strings["On"] = "Вкл."; +App::$strings["Lock feature %s"] = "Заблокировать функцию \"%s\""; +App::$strings["Manage Additional Features"] = "Управлять дополнительными функциями"; +App::$strings["Queue Statistics"] = "Статистика очереди"; +App::$strings["Total Entries"] = "Всего записей"; +App::$strings["Priority"] = "Приоритет"; +App::$strings["Destination URL"] = "Конечный URL-адрес"; +App::$strings["Mark hub permanently offline"] = "Пометить хаб как постоянно отключенный"; +App::$strings["Empty queue for this hub"] = "Освободить очередь для этого хаба"; +App::$strings["Last known contact"] = "Последний известный контакт"; +App::$strings["Password changed for account %d."] = "Пароль для аккаунта %d изменён."; +App::$strings["Account settings updated."] = "Настройки аккаунта обновлены."; +App::$strings["Account not found."] = "Учётная запись не найдена."; +App::$strings["Account Edit"] = "Редактировать аккаунт"; +App::$strings["New Password"] = "Новый пароль"; +App::$strings["New Password again"] = "Повторите новый пароль"; +App::$strings["Technical skill level"] = "Уровень технических навыков"; +App::$strings["Account language (for emails)"] = "Язык сообщения для email"; +App::$strings["Service class"] = "Класс обслуживания"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s канал цензурируется/нецензурируется", + 1 => "%s канала цензурируются/нецензурируются", + 2 => "%s каналов цензурируются/нецензурируются", +); +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "в %s канале код разрешён/запрещён", + 1 => "в %s каналах код разрешён/запрещён", + 2 => "в %s каналах код разрешён/запрещён", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s канал удалён", + 1 => "%s канала удалены", + 2 => "%s каналов удалены", +); +App::$strings["Channel not found"] = "Канал не найден"; +App::$strings["Channel '%s' deleted"] = "Канал '%s' удалён"; +App::$strings["Channel '%s' censored"] = "Канал '%s' цензурируется"; +App::$strings["Channel '%s' uncensored"] = "Канал '%s' нецензурируется"; +App::$strings["Channel '%s' code allowed"] = "Код в канале '%s' разрешён"; +App::$strings["Channel '%s' code disallowed"] = "Код в канале '%s' запрещён"; +App::$strings["Censor"] = "Цензурировать"; +App::$strings["Uncensor"] = "Нецензурировать"; +App::$strings["Allow Code"] = "Разрешить код"; +App::$strings["Disallow Code"] = "Запретить код"; +App::$strings["UID"] = ""; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Канал {0} будет удалён!\n\nВсё что было опубликовано в этом канале на этом сайте будет удалено навсегда!\n\nВы уверены?"; +App::$strings["Token verification failed."] = "Не удалось выполнить проверку токена."; +App::$strings["Email Verification Required"] = "Требуется проверка адреса email"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Проверочный токен был выслн на ваш адрес электронной почты {%s]. Введите этот токен здесь для завершения этапа проверки учётной записи. Пожалуйста, подождите несколько минут для завершения доставки и проверьте вашу папку \"Спам\" если вы не видите письма."; +App::$strings["Resend Email"] = "Выслать повторно"; +App::$strings["Validation token"] = "Проверочный токен"; +App::$strings["Total invitation limit exceeded."] = "Превышено общее количество приглашений."; +App::$strings["%s : Not a valid email address."] = "%s : Недействительный адрес электронной почты."; +App::$strings["Please join us on \$Projectname"] = "Присоединятесь к \$Projectname !"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Превышен лимит приглашений. Пожалуйста, свяжитесь с администрацией сайта."; App::$strings["%d message sent."] = array( - 0 => "%d сообщение отправленно.", - 1 => "%d сообщения отправленно.", - 2 => "%d сообщений отправленно.", + 0 => "%d сообщение отправлено.", + 1 => "%d сообщения отправлено.", + 2 => "%d сообщений отправлено.", ); App::$strings["You have no more invitations available"] = "У вас больше нет приглашений"; -App::$strings["Send invitations"] = "Послать приглашения"; -App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному на строку:"; -App::$strings["Your message:"] = "Сообщение:"; -App::$strings["You are cordially invited to join me and some other close friends on the Hubzilla - a revolutionary new decentralised communication and information tool."] = ""; -App::$strings["You will need to supply this invitation code: \$invite_code"] = ""; -App::$strings["Please visit my channel at"] = "Пожалуйста, посетите мой канал на"; -App::$strings["Once you have registered (on ANY Hubzilla site - they are all inter-connected), please connect with my Hubzilla channel address:"] = ""; -App::$strings["Click the [Register] link on the following page to join."] = ""; -App::$strings["For more information about the Hubzilla Project and why it has the potential to change the internet as we know it, please visit http://getzot.com"] = "Чтобы узнать больше о проекте Hubzilla, и чтобы узнать почему он имеет потенциал для изменения привычного нам Интернета, пожалуйста, посетите http://getzot.com"; -App::$strings["Unable to locate original post."] = "Не удалось найти оригинал."; -App::$strings["Empty post discarded."] = "Отказаться от пустой почты."; -App::$strings["Executable content type not permitted to this channel."] = ""; -App::$strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = ""; -App::$strings["You have reached your limit of %1$.0f webpages."] = ""; -App::$strings["[Embedded content - reload page to view]"] = ""; -App::$strings["Help with this feature"] = ""; -App::$strings["Layout Name"] = "Название шаблона"; -App::$strings["thing"] = ""; -App::$strings["Remote privacy information not available."] = ""; -App::$strings["Visible to:"] = "Кому видно:"; -App::$strings["No connections."] = "Никаких связей."; -App::$strings["Visit %s's profile [%s]"] = "Посетить %s's ​​профиль [%s]"; -App::$strings["View Connnections"] = "Просмотр контактов"; -App::$strings["No valid account found."] = "Действительный аккаунт не найден."; -App::$strings["Password reset request issued. Check your email."] = ""; -App::$strings["Site Member (%s)"] = "Участник сайта (%s)"; -App::$strings["Password reset requested at %s"] = "Требуется сброс пароля на %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = ""; -App::$strings["Password Reset"] = "Сбросить пароль"; -App::$strings["Your password has been reset as requested."] = "Ваш пароль в соответствии с просьбой сброшен."; -App::$strings["Your new password is"] = "Ваш новый пароль"; -App::$strings["Save or copy your new password - and then"] = ""; -App::$strings["click here to login"] = "нажмите здесь чтобы выйти"; -App::$strings["Your password may be changed from the Settings page after successful login."] = ""; -App::$strings["Your password has changed at %s"] = "Пароль изменен на %s"; -App::$strings["Forgot your Password?"] = "Забыли пароль или логин?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = ""; -App::$strings["Email Address"] = "Адрес электронной почты"; -App::$strings["Reset"] = "Сброс"; -App::$strings["Hub not found."] = "Hub не найден."; -App::$strings["Total votes"] = ""; -App::$strings["Average Rating"] = ""; -App::$strings["Unable to lookup recipient."] = ""; -App::$strings["Unable to communicate with requested channel."] = ""; -App::$strings["Cannot verify requested channel."] = ""; -App::$strings["Selected channel has private message restrictions. Send failed."] = ""; -App::$strings["Messages"] = "Переписка"; -App::$strings["Message deleted."] = "Сообщение удалено."; -App::$strings["Message recalled."] = ""; -App::$strings["Send Private Message"] = "Отправить личное сообщение"; -App::$strings["To:"] = "Кому:"; -App::$strings["Subject:"] = "Тема:"; -App::$strings["Message not found."] = "Сообщение не найдено."; -App::$strings["Delete message"] = "Удалить сообщение"; -App::$strings["Recall message"] = ""; -App::$strings["Message has been recalled."] = ""; -App::$strings["Private Conversation"] = "Личный разговор"; -App::$strings["Delete conversation"] = "Удалить разговор"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; -App::$strings["Send Reply"] = "Отправить снова"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = ""; -App::$strings["Create a new channel"] = "Создать новый канал"; -App::$strings["Channel Manager"] = "Настройки канала"; -App::$strings["Current Channel"] = "Текущий канал"; -App::$strings["Attach to one of your channels by selecting it."] = ""; -App::$strings["Default Channel"] = "Канал по умолчанию"; -App::$strings["Make Default"] = "Сделать стандартным"; -App::$strings["Wall Photos"] = "Стена фотографий"; -App::$strings["Profile Match"] = "Профиль Совпадение"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = ""; -App::$strings["is interested in:"] = "заинтересован в:"; -App::$strings["No matches"] = "Нет соответствий"; -App::$strings["Menu updated."] = "Меню обновлено."; -App::$strings["Unable to update menu."] = "Невозможно обновление меню."; -App::$strings["Menu created."] = "Меню создано."; +App::$strings["Send invitations"] = "Отправить приглашение"; +App::$strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:"; +App::$strings["Please join my community on \$Projectname."] = "Присоединятесь к нашему сообществу \$Projectname !"; +App::$strings["You will need to supply this invitation code:"] = "Вам нужно предоставит этот код приглашения:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Зарегистрируйтесь на любом из серверов \$Projectname"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Введите сетевой адрес \$Projectname в поисковой строке сайта"; +App::$strings["or visit"] = "или посетите"; +App::$strings["3. Click [Connect]"] = "Нажать [Подключиться]"; +App::$strings["Block Title"] = "Заблокировать заголовок"; +App::$strings["Cover Photos"] = "Фотографии обложки"; +App::$strings["Your cover photo may be visible to anybody on the internet"] = "Фотография вашей обложки может быть видна всем в Интернете"; +App::$strings["Change Cover Photo"] = "Изменить фотографию обложки"; +App::$strings["Like/Dislike"] = "Нравится / не нравится"; +App::$strings["This action is restricted to members."] = "Это действие доступно только участникам."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Пожалуйста, для продолжения войдите с вашим \$Projectname ID или зарегистрируйтесь как новый участник \$Projectname."; +App::$strings["Invalid request."] = "Неверный запрос."; +App::$strings["thing"] = "предмет"; +App::$strings["Channel unavailable."] = "Канал недоступен."; +App::$strings["Previous action reversed."] = "Предыдущее действие отменено."; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s согласен с %2\$s %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s не согласен с %2\$s %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s воздерживается от решения по %2\$s%3\$s"; +App::$strings["Action completed."] = "Действие завершено."; +App::$strings["Thank you."] = "Спасибо."; +App::$strings["If enabled, connection requests will be approved without your interaction"] = "Если включено, запросы контактов будут одобрены без вашего участия"; +App::$strings["Automatic approval settings"] = "Настройки автоматического одобрения"; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "Некоторые индивидуальные разрешения могут быть предустановлены или заблокированы на основании типа вашего канала и настроек приватности."; +App::$strings["Unable to update menu."] = "Невозможно обновить меню."; App::$strings["Unable to create menu."] = "Невозможно создать меню."; -App::$strings["Manage Menus"] = "Управление меню"; +App::$strings["Menu Name"] = "Название меню"; +App::$strings["Unique name (not visible on webpage) - required"] = "Уникальное название (не видимо на странице) - требуется"; +App::$strings["Menu Title"] = "Заголовок меню"; +App::$strings["Visible on webpage - leave empty for no title"] = "Видимость на странице - оставьте пустым если не хотите иметь заголовок"; +App::$strings["Allow Bookmarks"] = "Разрешить закладки"; +App::$strings["Menu may be used to store saved bookmarks"] = "Меню может использоваться, чтобы сохранить закладки"; +App::$strings["Submit and proceed"] = "Отправить и обработать"; App::$strings["Drop"] = "Удалить"; -App::$strings["Create a new menu"] = "Создать новое меню"; +App::$strings["Bookmarks allowed"] = "Закладки разрешены"; App::$strings["Delete this menu"] = "Удалить это меню"; App::$strings["Edit menu contents"] = "Редактировать содержание меню"; App::$strings["Edit this menu"] = "Редактировать это меню"; -App::$strings["New Menu"] = "Новое меню"; -App::$strings["Menu name"] = "Название меню"; -App::$strings["Must be unique, only seen by you"] = ""; -App::$strings["Menu title"] = "Название меню"; -App::$strings["Menu title as seen by others"] = ""; -App::$strings["Allow bookmarks"] = "Разрешить закладки"; -App::$strings["Menu may be used to store saved bookmarks"] = "Меню может использоваться, чтобы сохранить закладки"; -App::$strings["Menu deleted."] = "Меню удалено."; -App::$strings["Menu could not be deleted."] = "Меню не может быть удален."; +App::$strings["Menu could not be deleted."] = "Меню не может быть удалено."; App::$strings["Edit Menu"] = "Редактировать меню"; -App::$strings["Add or remove entries to this menu"] = ""; -App::$strings["Conversation removed."] = "Разговор удален."; -App::$strings["No messages."] = "Нет сообщений."; -App::$strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -App::$strings["Add a Channel"] = "Добавить контакт"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = ""; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = ""; +App::$strings["Add or remove entries to this menu"] = "Добавить или удалить пункты этого меню"; +App::$strings["Menu name"] = "Название меню"; +App::$strings["Must be unique, only seen by you"] = "Должно быть уникальным (видно только вам)"; +App::$strings["Menu title"] = "Заголовок меню"; +App::$strings["Menu title as seen by others"] = "Видимый другими заголовок меню"; +App::$strings["Allow bookmarks"] = "Разрешить закладки"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Вы создали %1$.0f из %2$.0f возможных каналов."; +App::$strings["Create a new channel"] = "Создать новый канал"; +App::$strings["Create New"] = "Создать новый"; +App::$strings["Current Channel"] = "Текущий канал"; +App::$strings["Switch to one of your channels by selecting it."] = "Выбрать и переключиться на один из ваших каналов"; +App::$strings["Default Channel"] = "Основной канал"; +App::$strings["Make Default"] = "Сделать основным"; +App::$strings["%d new messages"] = "%d новых сообщений"; +App::$strings["%d new introductions"] = "%d новых представлений"; +App::$strings["Delegated Channel"] = "Делегированный канал"; +App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "Изменение названия канала не разрешается в течении 48 часов после смены пароля у аккаунта."; +App::$strings["Change channel nickname/address"] = "Изменить псевдоним / адрес канала"; +App::$strings["Any/all connections on other networks will be lost!"] = "Любые / все контакты в других сетях будут утеряны!"; +App::$strings["New channel address"] = "Новый адрес канала"; +App::$strings["Rename Channel"] = "Переименовать канал"; +App::$strings["Additional Features"] = "Дополнительные функции"; +App::$strings["Your technical skill level"] = "Ваш уровень технических навыков"; +App::$strings["Used to provide a member experience and additional features consistent with your comfort level"] = "Используется чтобы обеспечить соответствие опыта пользователя и функций на комфортном для вас уровне"; +App::$strings["Nobody except yourself"] = "Никто кроме вас"; +App::$strings["Only those you specifically allow"] = "Только персонально разрешённые"; +App::$strings["Approved connections"] = "Одобренные контакты"; +App::$strings["Any connections"] = "Любые контакты"; +App::$strings["Anybody on this website"] = "Любой на этом сайте"; +App::$strings["Anybody in this network"] = "Любой в этой сети"; +App::$strings["Anybody authenticated"] = "Любой аутентифицированный"; +App::$strings["Anybody on the internet"] = "Любой в интернете"; +App::$strings["Publish your default profile in the network directory"] = "Публиковать ваш профиль по умолчанию в сетевом каталоге"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Разрешить предлагать вас как потенциального друга для новых пользователей?"; +App::$strings["or"] = "или"; +App::$strings["Your channel address is"] = "Адрес вашего канала"; +App::$strings["Your files/photos are accessible via WebDAV at"] = "Ваши файы / фотографии доступны через WebDAV по"; +App::$strings["Automatic membership approval"] = "Членство одобрено автоматически"; +App::$strings["Channel Settings"] = "Настройки канала"; +App::$strings["Basic Settings"] = "Основные настройки"; +App::$strings["Email Address:"] = "Адрес email:"; +App::$strings["Your Timezone:"] = "Часовой пояс:"; +App::$strings["Default Post Location:"] = "Расположение по умолчанию:"; +App::$strings["Geographical location to display on your posts"] = "Показывать географическое положение в ваших публикациях"; +App::$strings["Use Browser Location:"] = "Определять расположение из браузера"; +App::$strings["Adult Content"] = "Содержимое для взрослых"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Этот канал часто или регулярно публикует содержимое для взрослых. Пожалуйста, помечайте любой такой материал тегом #NSFW"; +App::$strings["Security and Privacy Settings"] = "Безопасность и настройки приватности"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Ваши разрешения уже настроены. Нажмите чтобы просмотреть или изменить"; +App::$strings["Hide my online presence"] = "Скрывать моё присутствие онлайн"; +App::$strings["Prevents displaying in your profile that you are online"] = "Предотвращает отображения статуса \"в сети\" в вашем профиле"; +App::$strings["Simple Privacy Settings:"] = "Простые настройки безопасности:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Полностью открытый - сверхлиберальный (должен использоваться с осторожностью)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Обычный - открытый по умолчанию, приватность по желанию (как в социальных сетях, но с улучшенными настройками)"; +App::$strings["Private - default private, never open or public"] = "Частный - частный по умочанию, не открытый и не публичный"; +App::$strings["Blocked - default blocked to/from everybody"] = "Закрытый - заблокированный по умолчанию от / для всех"; +App::$strings["Allow others to tag your posts"] = "Разрешить другим отмечать ваши публикации"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Часто используется сообществом для маркировки неподобающего содержания"; +App::$strings["Channel Permission Limits"] = "Ограничения разрешений канала"; +App::$strings["Expire other channel content after this many days"] = "Храненить содержимое других каналов, дней"; +App::$strings["0 or blank to use the website limit."] = "0 или пусто - использовать настройки сайта."; +App::$strings["This website expires after %d days."] = "Срок хранения содержимого этого сайта истекает через %d дней"; +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:"] = "Запросов в друзья в день:"; +App::$strings["May reduce spam activity"] = "Может ограничить спам активность"; +App::$strings["Default Privacy Group"] = "Группа конфиденциальности по умолчанию"; +App::$strings["Use my default audience setting for the type of object published"] = "Использовать настройки аудитории по умолчанию для типа опубликованного объекта"; +App::$strings["Profile to assign new connections"] = "Назначить профиль для новых контактов"; +App::$strings["Channel role and privacy"] = "Роль и конфиденциальность канала"; +App::$strings["Default Permissions Group"] = "Группа разрешений по умолчанию"; +App::$strings["Maximum private messages per day from unknown people:"] = "Максимально количество сообщений от незнакомых людей, в день:"; +App::$strings["Useful to reduce spamming"] = "Полезно для сокращения количества спама"; +App::$strings["By default post a status message when:"] = "По умолчанию публиковать новый статус при:"; +App::$strings["accepting a friend request"] = "одобрении запроса в друзья"; +App::$strings["joining a forum/community"] = "вступлении в сообщество / форум"; +App::$strings["making an interesting profile change"] = "интересном изменении профиля"; +App::$strings["Send a notification email when:"] = "Отправить уведомление по email когда:"; +App::$strings["You receive a connection request"] = "вы получили новый запрос контакта"; +App::$strings["Your connections are confirmed"] = "ваш запрос контакта был одобрен"; +App::$strings["Someone writes on your profile wall"] = "кто-то написал на стене вашего профиля"; +App::$strings["Someone writes a followup comment"] = "кто-то пишет комментарий"; +App::$strings["You receive a private message"] = "вы получили личное сообщение"; +App::$strings["You receive a friend suggestion"] = "вы получили предложение друзей"; +App::$strings["You are tagged in a post"] = "вы были отмечены в публикации"; +App::$strings["You are poked/prodded/etc. in a post"] = "вас толкнули, подтолкнули и т.п. в публикации"; +App::$strings["Someone likes your post/comment"] = "кому-то нравится ваша публикация / комментарий"; +App::$strings["Show visual notifications including:"] = "Показывать визуальные оповещения включая:"; +App::$strings["Unseen grid activity"] = "невидимую сетевую активность"; +App::$strings["Unseen channel activity"] = "невидимую активность в канале"; +App::$strings["Unseen private messages"] = "невидимое личное сообщение"; +App::$strings["Upcoming events"] = "грядущие события"; +App::$strings["Events today"] = "события сегодня"; +App::$strings["Upcoming birthdays"] = "грядущие дни рождения"; +App::$strings["Not available in all themes"] = "не доступно во всех темах"; +App::$strings["System (personal) notifications"] = "системные (личные) уведомления"; +App::$strings["System info messages"] = "сообщения с системной информацией"; +App::$strings["System critical alerts"] = "критические уведомления системы"; +App::$strings["New connections"] = "новые контакты"; +App::$strings["System Registrations"] = "системные регистрации"; +App::$strings["Unseen shared files"] = "невидимые общие файлы"; +App::$strings["Unseen public activity"] = "невидимая публичная активность"; +App::$strings["Unseen likes and dislikes"] = "невидимые лайки и дислайки"; +App::$strings["Unseen forum posts"] = "Невидимые публикации на форуме"; +App::$strings["Email notification hub (hostname)"] = "Центр уведомлений по email (имя хоста)"; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "Если ваш канал зеркалируется в нескольких местах, это ваше предпочтительное местоположение. Это должно предотвратить дублировать уведомлений по email. Например: %s"; +App::$strings["Show new wall posts, private messages and connections under Notices"] = "Показать новые сообщения на стене, личные сообщения и контакты в \"Уведомлениях\""; +App::$strings["Notify me of events this many days in advance"] = "Уведомлять меня о событиях заранее, дней"; +App::$strings["Must be greater than 0"] = "Должно быть больше 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Дополнительные настройки учётной записи / страницы"; +App::$strings["Change the behaviour of this account for special situations"] = "Изменить поведение этого аккаунта в особых ситуациях"; +App::$strings["Miscellaneous Settings"] = "Дополнительные настройки"; +App::$strings["Default photo upload folder"] = "Каталог загрузки фотографий по умолчанию"; +App::$strings["%Y - current year, %m - current month"] = "%Y - текущий год, %y - текущий месяц"; +App::$strings["Default file upload folder"] = "Каталог загрузки файлов по умолчанию"; +App::$strings["Personal menu to display in your channel pages"] = "Персональное меню для отображения на странице вашего канала"; +App::$strings["Remove this channel."] = "Удалить этот канал."; +App::$strings["Firefox Share \$Projectname provider"] = ""; +App::$strings["Start calendar week on Monday"] = "Начинать календарную неделю с понедельника"; +App::$strings["Affinity Slider settings updated."] = "Обновлены настройки слайдера cходства."; +App::$strings["No feature settings configured"] = "Параметры функций не настроены"; +App::$strings["Default maximum affinity level"] = "Максимальный уровень сходства по умолчанию."; +App::$strings["0-99 default 99"] = "0-99 (по умолчанию 99)"; +App::$strings["Default minimum affinity level"] = "Минимальный уровень сходства по умолчанию."; +App::$strings["0-99 - default 0"] = "0-99 (по умолчанию 0)"; +App::$strings["Affinity Slider Settings"] = "Настройки слайдера сходства"; +App::$strings["Addon Settings"] = "Настройки расширений"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Пожалуйста сохраните / отправьте изменения на панели прежде чем открывать другую."; +App::$strings["Not valid email."] = "Не действительный адрес email."; +App::$strings["Protected email address. Cannot change to that email."] = "Защищенный адрес электронной почты. Нельзя изменить."; +App::$strings["System failure storing new email. Please try again."] = "Системная ошибка сохранения email. Пожалуйста попробуйте ещё раз."; +App::$strings["Technical skill level updated"] = "Уровень технических навыков обновлён"; +App::$strings["Password verification failed."] = "Не удалось выполнить проверку пароля."; +App::$strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменён."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменён."; +App::$strings["Password changed."] = "Пароль изменен."; +App::$strings["Password update failed. Please try again."] = "Изменение пароля не удалось. Пожалуйста, попробуйте ещё раз."; +App::$strings["Account Settings"] = "Настройки аккаунта"; +App::$strings["Current Password"] = "Текущий пароль"; +App::$strings["Enter New Password"] = "Введите новый пароль:"; +App::$strings["Confirm New Password"] = "Подтвердите новый пароль:"; +App::$strings["Leave password fields blank unless changing"] = "Оставьте поля пустыми до измнения"; +App::$strings["Remove this account including all its channels"] = "Удалить этот аккаунт включая все каналы"; +App::$strings["%s - (Experimental)"] = "%s - (экспериментальный)"; +App::$strings["Display Settings"] = "Настройки отображения"; +App::$strings["Theme Settings"] = "Настройки темы"; +App::$strings["Custom Theme Settings"] = "Дополнительные настройки темы"; +App::$strings["Content Settings"] = "Настройки содержимого"; +App::$strings["Display Theme:"] = "Тема отображения:"; +App::$strings["Select scheme"] = "Выбрать схему"; +App::$strings["Preload images before rendering the page"] = "Предзагрузка изображений перед обработкой страницы"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Субъективное время загрузки страницы будет длиннее, но страница будет готова при отображении"; +App::$strings["Enable user zoom on mobile devices"] = "Включить масштабирование на мобильных устройствах"; +App::$strings["Update browser every xx seconds"] = "Обновление браузера каждые N секунд"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, без максимума"; +App::$strings["Maximum number of conversations to load at any time:"] = "Максимальное количество бесед для загрузки одновременно:"; +App::$strings["Maximum of 100 items"] = "Максимум 100 элементов"; +App::$strings["Show emoticons (smilies) as images"] = "Показывать эмотиконы (смайлики) как изображения"; +App::$strings["Provide channel menu in navigation bar"] = "Показывать меню канала в панели навигации"; +App::$strings["Default: channel menu located in app menu"] = "По умолчанию каналы расположены в меню приложения"; +App::$strings["Manual conversation updates"] = "Обновление бесед вручную"; +App::$strings["Default is on, turning this off may increase screen jumping"] = "Включено по умолчанию, выключение может привести к рывкам в отображении"; +App::$strings["Link post titles to source"] = "Ссылки на источник заголовков публикаций"; +App::$strings["System Page Layout Editor - (advanced)"] = "Системный редактор макета страницы - (продвинутый)"; +App::$strings["Use blog/list mode on channel page"] = "Использовать режим блога / списка на странице канала"; +App::$strings["(comments displayed separately)"] = "(комментарии отображаются отдельно)"; +App::$strings["Use blog/list mode on grid page"] = "Использовать режим блога / списка на странице матрицы"; +App::$strings["Channel page max height of content (in pixels)"] = "Максимальная высота содержания канала (в пикселях)"; +App::$strings["click to expand content exceeding this height"] = "нажмите, чтобы увеличить содержимое, превышающее эту высоту"; +App::$strings["Grid page max height of content (in pixels)"] = "Максимальная высота содержания на страницах матрицы (в пикселях)"; +App::$strings["Permission Name is required."] = "Требуется имя разрешения"; +App::$strings["Permission category saved."] = "Категория разрешения сохранена."; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = "Используйте эту форму для создания правил разрешений для различных групп людей и контактов."; +App::$strings["Permission Name"] = "Имя разрешения"; +App::$strings["Name and Secret are required"] = "Требуются имя и код"; +App::$strings["Add OAuth2 application"] = "Добавить приложение OAuth2"; +App::$strings["Name of application"] = "Название приложения"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Сгенерирован автоматические - измените если требуется. Макс. длина 20"; +App::$strings["Redirect"] = "Перенаправление"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI перенаправления - оставьте пустыми до тех пока ваше приложение не требует этого"; +App::$strings["Grant Types"] = "Разрешить типы"; +App::$strings["leave blank unless your application sepcifically requires this"] = "оставьте пустыми до тех пока ваше приложение не требует этого"; +App::$strings["Authorization scope"] = "Область полномочий"; +App::$strings["OAuth2 Application not found."] = "Приложение OAuth2 не найдено."; +App::$strings["Add application"] = "Добавить приложение"; +App::$strings["Connected OAuth2 Apps"] = "Подключённые приложения OAuth2"; +App::$strings["Client key starts with"] = "Ключ клиента начинаетя с"; +App::$strings["No name"] = "Без названия"; +App::$strings["Remove authorization"] = "Удалить разрешение"; +App::$strings["Name is required"] = "Необходимо имя"; +App::$strings["Key and Secret are required"] = "Требуются ключ и код"; +App::$strings["Icon url"] = "URL значка"; +App::$strings["Application not found."] = "Приложение не найдено."; +App::$strings["Connected Apps"] = "Подключенные приложения"; +App::$strings["This channel is limited to %d tokens"] = "Этот канал ограничен %d токенами"; +App::$strings["Name and Password are required."] = "Требуются имя и пароль."; +App::$strings["Token saved."] = "Токен сохранён."; +App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access 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:"] = "Вы также можете предоставить доступ в стиле dropbox для друзей и коллег, добавив имя и пароль для входа на любой URL-адрес сайта. Например:"; +App::$strings["Login Name"] = "Имя"; +App::$strings["Login Password"] = "Пароль"; +App::$strings["Expires (yyyy-mm-dd)"] = "Срок действия (yyyy-mm-dd)"; +App::$strings["Room not found"] = "Комната не найдена"; +App::$strings["Leave Room"] = "Покинуть комнату"; +App::$strings["Delete Room"] = "Удалить комнату"; +App::$strings["I am away right now"] = "Я сейчас отошёл"; +App::$strings["I am online"] = "Я на связи"; +App::$strings["Bookmark this room"] = "Запомнить эту комнату"; +App::$strings["New Chatroom"] = "Новый чат"; +App::$strings["Chatroom name"] = "Название чата"; +App::$strings["Expiration of chats (minutes)"] = "Завершение чатов (минут)"; +App::$strings["%1\$s's Chatrooms"] = "Чаты пользователя %1\$s"; +App::$strings["No chatrooms available"] = "Нет доступных чатов"; +App::$strings["Expiration"] = "Срок действия"; +App::$strings["min"] = "мин."; +App::$strings["Website:"] = "Веб-сайт:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Удалённый канал [%s] (пока неизвестен на этом сайте)"; +App::$strings["Rating (this information is public)"] = "Оценка (эта информация общедоступна)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Объясните свою оценку (необязательно; эта информация общедоступна)"; +App::$strings["Fetching URL returns error: %1\$s"] = "Загрузка URL возвращает ошибку: %1\$s"; +App::$strings["Location not found."] = "Местоположение не найдено"; +App::$strings["Location lookup failed."] = "Поиск местоположения не удался"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Пожалуйста, выберите другое местоположение в качестве основного прежде чем удалить предыдущее"; +App::$strings["Syncing locations"] = "Синхронизировать местоположение"; +App::$strings["No locations found."] = "Местоположений не найдено"; +App::$strings["Manage Channel Locations"] = "Управление местоположением канала"; +App::$strings["Sync Now"] = "Синхронизировать"; +App::$strings["Please wait several minutes between consecutive operations."] = "Пожалуйста, подождите несколько минут между последовательными операциями."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "По возможности, очистите местоположение, войдя на этот веб-сайт / хаб и удалив свой канал."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Используйте эту форму, чтобы удалить местоположение, если хаб больше не функционирует."; +App::$strings["Nothing to import."] = "Ничего импортировать."; +App::$strings["Unable to download data from old server"] = "Невозможно загрузить данные со старого сервера"; +App::$strings["Imported file is empty."] = "Импортированный файл пуст."; +App::$strings["Your service plan only allows %d channels."] = "Ваш класс обслуживания разрешает только %d каналов."; +App::$strings["No channel. Import failed."] = "Канала нет. Импорт невозможен."; +App::$strings["You must be logged in to use this feature."] = "Вы должны войти в систему, чтобы использовать эту функцию."; +App::$strings["Import Channel"] = "Импортировать канал"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Используйте эту форм для импорта существующего канала с другого сервера / хаба. Вы можете получить идентификационные данные канала со старого сервера / хаба через сеть или предоставить файл экспорта."; +App::$strings["File to Upload"] = "Файл для загрузки"; +App::$strings["Or provide the old server/hub details"] = "или предоставьте данные старого сервера"; +App::$strings["Your old identity address (xyz@example.com)"] = "Ваш старый адрес идентичности (xyz@example.com)"; +App::$strings["Your old login email address"] = "Ваш старый адрес электронной почты"; +App::$strings["Your old login password"] = "Ваш старый пароль"; +App::$strings["Import a few months of posts if possible (limited by available memory"] = "Импортировать несколько месяцев публикаций если возможно (ограничено доступной памятью)"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Для любого варианта, пожалуйста, выберите, следует ли сделать этот хаб вашим новым основным адресом, или ваше прежнее местоположение должно продолжить выполнять эту роль. Вы сможете отправлять сообщения из любого местоположения, но только одно может быть помечено как основное место для файлов, фотографий и мультимедиа."; +App::$strings["Make this hub my primary location"] = "Сделать этот хаб главным"; +App::$strings["Move this channel (disable all previous locations)"] = "Переместить это канал (отключить все предыдущие месторасположения)"; +App::$strings["Use this channel nickname instead of the one provided"] = "Использовать псевдоним этого канала вместо предоставленного"; +App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Оставьте пустым для сохранения существующего псевдонима канала. Вам будет случайным образом назначен похожий псевдоним если такое имя уже выделено на этом сайте."; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Процесс может занять несколько минут. Пожалуйста, отправьте форму только один раз и оставьте эту страницу открытой до завершения."; +App::$strings["No connections."] = "Контактов нет."; +App::$strings["Visit %s's profile [%s]"] = "Посетить %s ​​профиль [%s]"; +App::$strings["View Connections"] = "Просмотр контактов"; +App::$strings["Authentication failed."] = "Ошибка аутентификации."; +App::$strings["Your real name is recommended."] = "Рекомендуется использовать ваше настоящее имя."; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Примеры: \"Иван Иванов\", \"Оксана и кони\", \"Футбол\", \"Тимур и его команда\""; +App::$strings["This will be used to create a unique network address (like an email address)."] = "Это будет использовано для создания уникального сетевого адреса (наподобие email)."; +App::$strings["Allowed characters are a-z 0-9, - and _"] = "Разрешённые символы a-z 0-9, - и _"; +App::$strings["Channel name"] = "Название канала"; App::$strings["Choose a short nickname"] = "Выберите короткий псевдоним"; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = ""; -App::$strings["Or import an existing channel from another location"] = ""; -App::$strings["Invalid request identifier."] = ""; -App::$strings["Discard"] = "Отменить"; -App::$strings["No more system notifications."] = "Новых оповещений системы пока нет."; -App::$strings["System Notifications"] = "Системные оповещения "; -App::$strings["Unable to find your hub."] = ""; -App::$strings["Post successful."] = "Публикация прошла успешно."; -App::$strings["invalid target signature"] = ""; -App::$strings["OpenID protocol error. No ID returned."] = ""; -App::$strings["App installed."] = "Приложение установлено ."; -App::$strings["Malformed app."] = ""; -App::$strings["Embed code"] = "Код для вставки"; -App::$strings["Edit App"] = "Редактировать приложение"; -App::$strings["Create App"] = "Создать приложение"; -App::$strings["Name of app"] = "Название приложения"; -App::$strings["Location (URL) of app"] = ""; -App::$strings["Photo icon URL"] = ""; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - необязательно"; -App::$strings["Version ID"] = "Версия ID"; -App::$strings["Price of app"] = ""; -App::$strings["Location (URL) to purchase app"] = ""; -App::$strings["Schema Default"] = ""; -App::$strings["Sans-Serif"] = ""; -App::$strings["Monospace"] = ""; -App::$strings["Theme settings"] = "Настройки темы"; -App::$strings["Set scheme"] = "Установить схему"; -App::$strings["Set font-size for posts and comments"] = "Установить размер шрифта для сообщений и комментариев"; -App::$strings["Set font face"] = ""; -App::$strings["Set iconset"] = ""; -App::$strings["Set big shadow size, default 15px 15px 15px"] = ""; -App::$strings["Set small shadow size, default 5px 5px 5px"] = ""; -App::$strings["Set shadow colour, default #000"] = ""; -App::$strings["Set radius size, default 5px"] = ""; -App::$strings["Set line-height for posts and comments"] = ""; -App::$strings["Set background image"] = ""; -App::$strings["Set background attachment"] = ""; -App::$strings["Set background colour"] = ""; -App::$strings["Set section background image"] = ""; -App::$strings["Set section background colour"] = ""; -App::$strings["Set colour of items - use hex"] = ""; -App::$strings["Set colour of links - use hex"] = ""; -App::$strings["Set max-width for items. Default 400px"] = ""; -App::$strings["Set min-width for items. Default 240px"] = ""; -App::$strings["Set the generic content wrapper width. Default 48%"] = ""; -App::$strings["Set colour of fonts - use hex"] = ""; -App::$strings["Set background-size element"] = ""; -App::$strings["Item opacity"] = ""; -App::$strings["Display post previews only"] = ""; -App::$strings["Display side bar on channel page"] = ""; -App::$strings["Colour of the navigation bar"] = ""; -App::$strings["Item float"] = ""; -App::$strings["Left offset of the section element"] = ""; -App::$strings["Right offset of the section element"] = ""; -App::$strings["Section width"] = ""; -App::$strings["Left offset of the aside"] = ""; -App::$strings["Right offset of the aside element"] = ""; -App::$strings["None"] = ""; -App::$strings["Header image"] = "Графика заголовока"; -App::$strings["Header image only on profile pages"] = ""; -App::$strings["Narrow navbar"] = "Узкая панель навигации"; -App::$strings["Navigation bar background colour"] = "Панель навигации, цвет фона"; -App::$strings["Navigation bar gradient top colour"] = "Панель навигации, цвет градиента вверху"; -App::$strings["Navigation bar gradient bottom colour"] = "Панель навигации, цвет градиента внизу"; -App::$strings["Navigation active button gradient top colour"] = "Панель навигации, цвет градиента вверху активной кнопки"; -App::$strings["Navigation active button gradient bottom colour"] = "Панель навигации, цвет градиента внизу активной кнопки"; -App::$strings["Navigation bar border colour "] = "Панель навигации, цвет границы"; -App::$strings["Navigation bar icon colour "] = "Панель навигации, цвет значков"; -App::$strings["Navigation bar active icon colour "] = "Панель навигации, цвет активного значка"; -App::$strings["link colour"] = "Цвет ссылок"; -App::$strings["Set font-colour for banner"] = "Цвет текста в шапке"; -App::$strings["Set the background colour"] = "Цвет фона на странице канала"; -App::$strings["Set the background image"] = "Фоновое изображение"; -App::$strings["Set the background colour of items"] = "Цвет фона для постов и других элементов"; -App::$strings["Set the background colour of comments"] = "Цвет фона для комментариев"; -App::$strings["Set the border colour of comments"] = "Цвет границы для области комментариев"; -App::$strings["Set the indent for comments"] = ""; -App::$strings["Set the basic colour for item icons"] = "Основной цвет в иконках редактирования"; -App::$strings["Set the hover colour for item icons"] = "Цвет в иконках редактирования при наведении мыши"; -App::$strings["Set font-size for the entire application"] = "Установить размер шрифта для системы в целом"; -App::$strings["Set font-colour for posts and comments"] = "Цвет шрифта для постов и комментариев"; -App::$strings["Set radius of corners"] = "Радиус скруглений"; -App::$strings["Set shadow depth of photos"] = ""; -App::$strings["Set maximum width of conversation regions"] = ""; -App::$strings["Center conversation regions"] = ""; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Панель навигации, прозрачность"; -App::$strings["Set size of conversation author photo"] = ""; -App::$strings["Set size of followup author photos"] = ""; -App::$strings["Sloppy photo albums"] = ""; -App::$strings["Are you a clean desk or a messy desk person?"] = ""; -App::$strings["Type"] = "Тип"; -App::$strings["Size"] = "Размер"; -App::$strings["Last modified"] = "Последнее изменение"; -App::$strings["Are you sure you want to delete this item?"] = "Вы уверены, что хотите удалить этот элемент?"; -App::$strings["Total"] = "Всего"; -App::$strings["Update %s failed. See error logs."] = ""; -App::$strings["Update Error at %s"] = "Ошибка обновления на %s"; -App::$strings["Create an account to access services and applications within the Hubzilla"] = ""; -App::$strings["Password"] = "Пароль"; -App::$strings["Remember me"] = "Запомнить"; -App::$strings["Forgot your password?"] = "Забыли пароль или логин?"; +App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "Выберите разрешения для канала в соответствии с вашими потребностями и требованиями безопасности."; +App::$strings["Read more about channel permission roles"] = "Прочитать больше о разрешениях для каналов"; +App::$strings["Create a Channel"] = "Создать канал"; +App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Канал это уникальная сетевая идентичность. Он может представлять человека (профиль в социальной сети), форум или группу, бизнес или страницу знаменитости, новостную ленту и многие другие вещи."; +App::$strings["or import an existing channel from another location."] = "или импортировать существующий канал из другого места."; +App::$strings["Validate"] = "Проверить"; +App::$strings["Manage apps"] = "Управление приложениями"; +App::$strings["Create new app"] = "Создать новое приложение"; +App::$strings["No default suggestions were found."] = "Предложений по умолчанию не найдено."; +App::$strings["%d rating"] = array( + 0 => "%d оценка", + 1 => "%d оценки", + 2 => "%d оценок", +); +App::$strings["Gender: "] = "Пол:"; +App::$strings["Status: "] = "Статус:"; +App::$strings["Homepage: "] = "Домашняя страница:"; +App::$strings["Description:"] = "Описание:"; +App::$strings["Public Forum:"] = "Публичный форум:"; +App::$strings["Keywords: "] = "Ключевые слова:"; +App::$strings["Don't suggest"] = "Не предлагать"; +App::$strings["Common connections (estimated):"] = "Общие контакты (оценочно):"; +App::$strings["Global Directory"] = "Глобальный каталог"; +App::$strings["Local Directory"] = "Локальный каталог"; +App::$strings["Finding:"] = "Поиск:"; +App::$strings["next page"] = "следующая страница"; +App::$strings["previous page"] = "предыдущая страница"; +App::$strings["Sort options"] = "Параметры сортировки"; +App::$strings["Alphabetic"] = "По алфавиту"; +App::$strings["Reverse Alphabetic"] = "Против алфавита"; +App::$strings["Newest to Oldest"] = "От новых к старым"; +App::$strings["Oldest to Newest"] = "От старых к новым"; +App::$strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты)."; +App::$strings["Enter a folder name"] = "Введите название каталога"; +App::$strings["or select an existing folder (doubleclick)"] = "или выберите существующий каталог (двойной щелчок)"; +App::$strings["Invalid message"] = "Неверное сообщение"; +App::$strings["no results"] = "Ничего не найдено."; +App::$strings["channel sync processed"] = "синхронизация канала завершена"; +App::$strings["queued"] = "в очереди"; +App::$strings["posted"] = "опубликовано"; +App::$strings["accepted for delivery"] = "принято к доставке"; +App::$strings["updated"] = "обновлено"; +App::$strings["update ignored"] = "обновление игнорируется"; App::$strings["permission denied"] = "доступ запрещен"; -App::$strings["Got Zot?"] = "Got Zot?"; -App::$strings["toggle mobile"] = "мобильное подключение"; +App::$strings["recipient not found"] = "получатель не найден"; +App::$strings["mail recalled"] = "почта отозвана"; +App::$strings["duplicate mail received"] = "получено дублирующее сообщение"; +App::$strings["mail delivered"] = "почта доставлен"; +App::$strings["Delivery report for %1\$s"] = "Отчёт о доставке для %1\$s"; +App::$strings["Redeliver"] = "Доставить повторно"; +App::$strings["No such group"] = "Нет такой группы"; +App::$strings["No such channel"] = "Нет такого канала"; +App::$strings["Privacy group is empty"] = "Группа безопасности пуста"; +App::$strings["Privacy group: "] = "Группа безопасности: "; +App::$strings["Please login."] = "Пожалуйста, войдите."; +App::$strings["No service class restrictions found."] = "Ограничений класса обслуживание не найдено."; +App::$strings["Add Card"] = "Добавить карточку"; +App::$strings["Change Order of Pinned Navbar Apps"] = "Изменить порядок приложений на панели навигации"; +App::$strings["Change Order of App Tray Apps"] = "Изменить порядок приложений в лотке"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Используйте стрелки для перемещения приложения влево (вверх) или вправо (вниз) в панели навигации"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Используйте стрелки для перемещения приложения вверх или вниз в лотке"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Превышено максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Пожалуйста, подтвердите согласие с \"Условиями обслуживания\". Регистрация не удалась."; +App::$strings["Passwords do not match."] = "Пароли не совпадают."; +App::$strings["Registration successful. Continue to create your first channel..."] = "Регистрация завершена успешно. Для продолжения создайте свой первый канал..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Регистрация завершена успешно. Пожалуйста проверьте вашу электронную почту для подтверждения."; +App::$strings["Your registration is pending approval by the site owner."] = "Ваша регистрация ожидает одобрения администрации сайта."; +App::$strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана."; +App::$strings["Registration on this hub is disabled."] = "Регистрация на этом хабе отключена."; +App::$strings["Registration on this hub is by approval only."] = "Регистрация на этом хабе только по утверждению."; +App::$strings["Register at another affiliated hub."] = "Зарегистрироваться на другом хабе."; +App::$strings["Registration on this hub is by invitation only."] = "Регистрация на этом хабе доступна только по приглашениям."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил максимальное количество регистраций на сегодня. Пожалуйста, попробуйте снова завтра. "; +App::$strings["I accept the %s for this website"] = "Я принимаю %s для этого веб-сайта."; +App::$strings["I am over %s years of age and accept the %s for this website"] = "Мой возраст превышает %s лет и я принимаю %s для этого веб-сайта."; +App::$strings["Your email address"] = "Ваш адрес электронной почты"; +App::$strings["Choose a password"] = "Выберите пароль"; +App::$strings["Please re-enter your password"] = "Пожалуйста, введите пароль еще раз"; +App::$strings["Please enter your invitation code"] = "Пожалуйста, введите Ваш код приглашения"; +App::$strings["Your Name"] = "Ваше имя"; +App::$strings["Real names are preferred."] = "Предпочтительны реальные имена."; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Ваш псевдоним будет использован для создания легко запоминаемого адреса канала, напр. nickname %s"; +App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "Выберите разрешения для канала в зависимости от ваших потребностей и требований приватности."; +App::$strings["no"] = "нет"; +App::$strings["yes"] = "да"; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Этот сайт требует проверку адреса электронной почты. После заполнения этой формы, пожалуйста, проверьте ваш почтовый ящик для дальнейших инструкций."; +App::$strings["This setting requires special processing and editing has been blocked."] = "Этот параметр требует специальной обработки и редактирования и был заблокирован."; +App::$strings["Configuration Editor"] = "Редактор конфигурации"; +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."] = "Предупреждение. Изменение некоторых настроек может привести к неработоспособности вашего канала. Пожалуйста, покиньте эту страницу, если вы точно не значете, как правильно использовать эту функцию."; +App::$strings["Edit Article"] = "Редактировать статью"; +App::$strings["Not found"] = "Не найдено."; +App::$strings["Error retrieving wiki"] = "Ошибка при получении Wiki"; +App::$strings["Error creating zip file export folder"] = "Ошибка при создании zip-файла при экспорте каталога"; +App::$strings["Error downloading wiki: "] = "Ошибка загрузки Wiki:"; +App::$strings["Download"] = "Загрузить"; +App::$strings["Wiki name"] = "Название Wiki"; +App::$strings["Content type"] = "Тип содержимого"; +App::$strings["Type"] = "Тип"; +App::$strings["Any type"] = "Любой тип"; +App::$strings["Lock content type"] = "Зафиксировать тип содержимого"; +App::$strings["Create a status post for this wiki"] = "Создать публикацию о статусе этой Wiki"; +App::$strings["Edit Wiki Name"] = "Редактировать наименование Wiki"; +App::$strings["Wiki not found"] = "Wiki не найдена"; +App::$strings["Rename page"] = "Переименовать страницу"; +App::$strings["Error retrieving page content"] = "Ошибка при получении содержимого страницы"; +App::$strings["New page"] = "Новая страница"; +App::$strings["Revision Comparison"] = "Сравнение ревизий"; +App::$strings["Revert"] = "Вернуть"; +App::$strings["Short description of your changes (optional)"] = "Краткое описание ваших изменений (необязательно)"; +App::$strings["Source"] = "Источник"; +App::$strings["New page name"] = "Новое имя страницы"; +App::$strings["Embed image from photo albums"] = "Встроить изображение из фотоальбома"; +App::$strings["Error creating wiki. Invalid name."] = "Ошибка создания Wiki. Неверное имя."; +App::$strings["A wiki with this name already exists."] = "Wiki с таким именем уже существует."; +App::$strings["Wiki created, but error creating Home page."] = "Wiki создана, но возникла ошибка при создании домашней страницы"; +App::$strings["Error creating wiki"] = "Ошибка при создании Wiki"; +App::$strings["Error updating wiki. Invalid name."] = "Ошибка при обновлении Wiki. Неверное имя."; +App::$strings["Error updating wiki"] = "Ошибка при обновлении Wiki"; +App::$strings["Wiki delete permission denied."] = "Нет прав на удаление Wiki."; +App::$strings["Error deleting wiki"] = "Ошибка удаления Wiki"; +App::$strings["New page created"] = "Создана новая страница"; +App::$strings["Cannot delete Home"] = "Невозможно удалить домашнюю страницу"; +App::$strings["Current Revision"] = "Текущая ревизия"; +App::$strings["Selected Revision"] = "Выбранная ревизия"; +App::$strings["You must be authenticated."] = "Вы должны быть аутентифицированы."; +App::$strings["Hub not found."] = "Узел не найден."; +App::$strings["Item not available."] = "Элемент недоступен."; +App::$strings["Privacy group created."] = "Группа безопасности создана."; +App::$strings["Could not create privacy group."] = "Не удалось создать группу безопасности."; +App::$strings["Privacy group updated."] = "Группа безопасности обновлена."; +App::$strings["Add Group"] = "Добавить группу"; +App::$strings["Privacy group name"] = "Имя группы безопасности"; +App::$strings["Members are visible to other channels"] = "Участники канала видимые для остальных"; +App::$strings["Privacy group removed."] = "Группа безопасности удалена."; +App::$strings["Unable to remove privacy group."] = "Ну удалось удалить группу безопасности."; +App::$strings["Privacy Group: %s"] = "Группа безопасности: %s"; +App::$strings["Privacy group name: "] = "Название группы безопасности: "; +App::$strings["Delete Group"] = "Удалить группу"; +App::$strings["Group members"] = "Члены группы"; +App::$strings["Not in this group"] = "Не в этой группе"; +App::$strings["Click a channel to toggle membership"] = "Нажмите на канал для просмотра членства"; +App::$strings["Profile not found."] = "Профиль не найден."; +App::$strings["Profile deleted."] = "Профиль удален."; +App::$strings["Profile-"] = "Профиль -"; +App::$strings["New profile created."] = "Новый профиль создан."; +App::$strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования."; +App::$strings["Profile unavailable to export."] = "Профиль недоступен для экспорта."; +App::$strings["Profile Name is required."] = "Требуется имя профиля."; +App::$strings["Marital Status"] = "Семейное положение"; +App::$strings["Romantic Partner"] = "Романтический партнер"; +App::$strings["Likes"] = "Нравится"; +App::$strings["Dislikes"] = "Не нравится"; +App::$strings["Work/Employment"] = "Работа / Занятость"; +App::$strings["Religion"] = "Религия"; +App::$strings["Political Views"] = "Политические взгляды"; +App::$strings["Sexual Preference"] = "Сексуальная ориентация"; +App::$strings["Homepage"] = "Домашняя страница"; +App::$strings["Interests"] = "Интересы"; +App::$strings["Profile updated."] = "Профиль обновлен."; +App::$strings["Hide your connections list from viewers of this profile"] = "Скрывать от просмотра ваш список контактов в этом профиле"; +App::$strings["Edit Profile Details"] = "Редактирование профиля"; +App::$strings["View this profile"] = "Посмотреть этот профиль"; +App::$strings["Profile Tools"] = "Инструменты профиля"; +App::$strings["Change cover photo"] = "Изменить фотографию обложки"; +App::$strings["Create a new profile using these settings"] = "Создать новый профиль со следующими настройками"; +App::$strings["Clone this profile"] = "Клонировать этот профиль"; +App::$strings["Delete this profile"] = "Удалить этот профиль"; +App::$strings["Add profile things"] = "Добавить в профиль"; +App::$strings["Relationship"] = "Отношения"; +App::$strings["Import profile from file"] = "Импортировать профиль из файла"; +App::$strings["Export profile to file"] = "Экспортировать профиль в файл"; +App::$strings["Your gender"] = "Ваш пол"; +App::$strings["Marital status"] = "Семейное положение"; +App::$strings["Sexual preference"] = "Сексуальная ориентация"; +App::$strings["Profile name"] = "Имя профиля"; +App::$strings["This is your default profile."] = "Это ваш профиль по умолчанию."; +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["Who (if applicable)"] = "Кто (если применимо)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: ivan1990, Ivan Petrov, ivan@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"] = "Например: fishing photography software"; +App::$strings["Musical interests"] = "Музыкальные интересы"; +App::$strings["Books, literature"] = "Книги, литература"; +App::$strings["Television"] = "Телевидение"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Кино / танцы / культура / развлечения"; +App::$strings["Hobbies/Interests"] = "Хобби / интересы"; +App::$strings["Love/Romance"] = "Любовь / романтические отношения"; +App::$strings["School/Education"] = "Школа / образование"; +App::$strings["Contact information and social networks"] = "Информация и социальные сети для связи"; +App::$strings["My other channels"] = "Мои другие контакты"; +App::$strings["Communications"] = "Связи"; +App::$strings["Email verification resent"] = "Сообщение для проверки email отправлено повторно"; +App::$strings["Unable to resend email verification message."] = "Невозможно повторно отправить сообщение для проверки email"; +App::$strings["vcard"] = "vCard"; +App::$strings["Invalid profile identifier."] = "Неверный идентификатор профиля"; +App::$strings["Profile Visibility Editor"] = "Редактор видимости профиля"; +App::$strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить."; +App::$strings["Visible To"] = "Видно"; +App::$strings["Thing updated"] = "Обновлено"; +App::$strings["Object store: failed"] = "Хранлищие объектов: неудача"; +App::$strings["Thing added"] = "Добавлено"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = ""; +App::$strings["Show Thing"] = "Показать"; +App::$strings["item not found."] = "Элемент не найден."; +App::$strings["Edit Thing"] = "Редактировать"; +App::$strings["Select a profile"] = "Выбрать профиль"; +App::$strings["Post an activity"] = "Опубликовать мероприятие"; +App::$strings["Only sends to viewers of the applicable profile"] = "Отправлять только подходящий профиль"; +App::$strings["Name of thing e.g. something"] = "Наименование, например \"нечто\""; +App::$strings["URL of thing (optional)"] = "URL (необязательно)"; +App::$strings["URL for photo of thing (optional)"] = "URL для фотографии (необязательно)"; +App::$strings["Add Thing to your Profile"] = "Добавить к вашему профилю"; +App::$strings["Article"] = "Статья"; +App::$strings["Item has been removed."] = "Элемент был удалён."; +App::$strings["Welcome to %s"] = "Добро пожаловать в %s"; +App::$strings["Please refresh page"] = "Пожалуйста обновите страницу"; +App::$strings["Unknown error"] = "Неизвестная ошибка"; +App::$strings["No valid account found."] = "Действительный аккаунт не найден."; +App::$strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля отправлен. Проверьте вашу электронную почту."; +App::$strings["Site Member (%s)"] = "Участник сайта (%s)"; +App::$strings["Password reset requested at %s"] = "Запрошен сброс пароля на %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы могли отправить его раньше). Сброс пароля не возможен."; +App::$strings["Your password has been reset as requested."] = "Ваш пароль в соответствии с просьбой сброшен."; +App::$strings["Your new password is"] = "Ваш новый пароль"; +App::$strings["Save or copy your new password - and then"] = "Сохраните ваш новый пароль и затем"; +App::$strings["click here to login"] = "нажмите здесь чтобы войти"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Ваш пароль может быть изменён на странице Настройки после успешного входа."; +App::$strings["Your password has changed at %s"] = "Пароль был изменен на %s"; +App::$strings["Forgot your Password?"] = "Забыли ваш пароль?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите ваш адрес электронной почты и нажмите отправить чтобы сбросить пароль. Затем проверьте ваш почтовый ящик для дальнейших инструкций. "; +App::$strings["Email Address"] = "Адрес электронной почты"; +App::$strings["Set your current mood and tell your friends"] = "Установить текущее настроение и рассказать друзьям"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Предупреждение: Версия базы данных отличается от %1\$d обновления."; +App::$strings["Import completed"] = "Импорт завершён."; +App::$strings["Import Items"] = "Импортировать объекты"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Используйте эту форму для импорта существующих публикаций и содержимого из файла."; +App::$strings["toggle full screen mode"] = "переключение полноэкранного режима"; +App::$strings["parent"] = "источник"; +App::$strings["Principal"] = "Субъект"; +App::$strings["Addressbook"] = "Адресная книга"; +App::$strings["Schedule Inbox"] = "План занятий входящий"; +App::$strings["Schedule Outbox"] = "План занятий исходящий"; +App::$strings["Total"] = "Всего"; +App::$strings["Shared"] = "Общие"; +App::$strings["Add Files"] = "Добавить файлы"; +App::$strings["You are using %1\$s of your available file storage."] = "Вы используете %1\$s из доступного вам хранилища файлов."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Вы используете %1\$s из %2\$s доступного хранилища файлов (%3\$s%)."; +App::$strings["WARNING:"] = "Предупреждение:"; +App::$strings["Create new folder"] = "Создать новую папку"; +App::$strings["Upload file"] = "Загрузить файл"; +App::$strings["Drop files here to immediately upload"] = "Поместите файлы сюда для немедленной загрузки"; diff --git a/view/sv/hmessages.po b/view/sv/hmessages.po deleted file mode 100644 index 4486a8630..000000000 --- a/view/sv/hmessages.po +++ /dev/null @@ -1,8550 +0,0 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. -# -# Translators: -# pafcu , 2014 -# pafcu , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Hubzilla\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-02-06 00:04-0800\n" -"PO-Revision-Date: 2015-02-07 12:46+0000\n" -"Last-Translator: Erik Lundin \n" -"Language-Team: Swedish (http://www.transifex.com/projects/p/red-matrix/language/sv/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: ../../include/dba/dba_driver.php:142 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan inte hitta DNS-information för databasserver '%s'" - -#: ../../include/photo/photo_driver.php:680 ../../include/photos.php:52 -#: ../../mod/photos.php:91 ../../mod/photos.php:625 -#: ../../mod/profile_photo.php:143 ../../mod/profile_photo.php:302 -#: ../../mod/profile_photo.php:424 -msgid "Profile Photos" -msgstr "Profilfoton" - -#: ../../include/widgets.php:35 ../../include/taxonomy.php:250 -#: ../../include/contact_widgets.php:92 -msgid "Categories" -msgstr "Kategorier" - -#: ../../include/widgets.php:91 ../../include/nav.php:163 -#: ../../mod/apps.php:34 -msgid "Apps" -msgstr "Appar" - -#: ../../include/widgets.php:92 -msgid "System" -msgstr "System" - -#: ../../include/widgets.php:94 ../../include/conversation.php:1471 -msgid "Personal" -msgstr "Personligt" - -#: ../../include/widgets.php:95 -msgid "Create Personal App" -msgstr "Skapa personlig app" - -#: ../../include/widgets.php:96 -msgid "Edit Personal App" -msgstr "Redigera personlig app" - -#: ../../include/widgets.php:136 ../../include/widgets.php:175 -#: ../../include/conversation.php:942 ../../include/identity.php:840 -#: ../../include/Contact.php:107 ../../mod/suggest.php:51 -#: ../../mod/match.php:62 ../../mod/directory.php:272 -msgid "Connect" -msgstr "Ta kontakt" - -#: ../../include/widgets.php:138 ../../mod/suggest.php:53 -msgid "Ignore/Hide" -msgstr "Ignorera/göm" - -#: ../../include/widgets.php:143 ../../mod/connections.php:268 -msgid "Suggestions" -msgstr "Förslag" - -#: ../../include/widgets.php:144 -msgid "See more..." -msgstr "Se fler..." - -#: ../../include/widgets.php:166 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du har %1$.0f av %2$.0f tillåtna kontakter." - -#: ../../include/widgets.php:172 -msgid "Add New Connection" -msgstr "Lägg till ny kontakt" - -#: ../../include/widgets.php:173 -msgid "Enter the channel address" -msgstr "Ange kanaladressen" - -#: ../../include/widgets.php:174 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Exempel: bob@example.com, http://example.com/barbara" - -#: ../../include/widgets.php:190 -msgid "Notes" -msgstr "Anteckningar" - -#: ../../include/widgets.php:192 ../../include/text.php:837 -#: ../../include/text.php:849 ../../mod/rbmark.php:28 ../../mod/rbmark.php:98 -#: ../../mod/filer.php:50 ../../mod/admin.php:1344 ../../mod/admin.php:1365 -msgid "Save" -msgstr "Spara" - -#: ../../include/widgets.php:264 -msgid "Remove term" -msgstr "Ta bort uttryck" - -#: ../../include/widgets.php:272 ../../include/features.php:71 -msgid "Saved Searches" -msgstr "Sparade sökningar" - -#: ../../include/widgets.php:273 ../../include/group.php:303 -msgid "add" -msgstr "lägg till" - -#: ../../include/widgets.php:302 ../../include/features.php:83 -#: ../../include/contact_widgets.php:57 -msgid "Saved Folders" -msgstr "Sparade mappar" - -#: ../../include/widgets.php:305 ../../include/contact_widgets.php:60 -#: ../../include/contact_widgets.php:95 -msgid "Everything" -msgstr "Allt" - -#: ../../include/widgets.php:347 -msgid "Archives" -msgstr "Arkiv" - -#: ../../include/widgets.php:425 -msgid "Refresh" -msgstr "Ladda om" - -#: ../../include/widgets.php:426 ../../mod/connedit.php:563 -msgid "Me" -msgstr "Mig själv" - -#: ../../include/widgets.php:427 ../../mod/connedit.php:566 -msgid "Best Friends" -msgstr "Bästa vänner" - -#: ../../include/widgets.php:428 ../../include/identity.php:387 -#: ../../include/identity.php:388 ../../include/identity.php:395 -#: ../../include/profile_selectors.php:80 ../../mod/settings.php:329 -#: ../../mod/settings.php:333 ../../mod/settings.php:334 -#: ../../mod/settings.php:337 ../../mod/settings.php:348 -#: ../../mod/connedit.php:567 -msgid "Friends" -msgstr "Vänner" - -#: ../../include/widgets.php:429 -msgid "Co-workers" -msgstr "Kollegor" - -#: ../../include/widgets.php:430 ../../mod/connedit.php:568 -msgid "Former Friends" -msgstr "Tidigare vänner" - -#: ../../include/widgets.php:431 ../../mod/connedit.php:569 -msgid "Acquaintances" -msgstr "Bekanta" - -#: ../../include/widgets.php:432 -msgid "Everybody" -msgstr "Alla" - -#: ../../include/widgets.php:466 -msgid "Account settings" -msgstr "Kontoinställningar" - -#: ../../include/widgets.php:472 -msgid "Channel settings" -msgstr "Kanalinställningar" - -#: ../../include/widgets.php:478 -msgid "Additional features" -msgstr "Tilläggsfunktioner" - -#: ../../include/widgets.php:484 -msgid "Feature/Addon settings" -msgstr "Tilläggsinställningar" - -#: ../../include/widgets.php:490 -msgid "Display settings" -msgstr "Utseende" - -#: ../../include/widgets.php:496 -msgid "Connected apps" -msgstr "Anslutna appar" - -#: ../../include/widgets.php:502 -msgid "Export channel" -msgstr "Exportera kanal" - -#: ../../include/widgets.php:511 ../../mod/connedit.php:627 -msgid "Connection Default Permissions" -msgstr "Standardbehörighet för kontakt" - -#: ../../include/widgets.php:519 -msgid "Premium Channel Settings" -msgstr "Inställningar för premiumkanal" - -#: ../../include/widgets.php:527 ../../include/features.php:61 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanalkällor" - -#: ../../include/widgets.php:535 ../../include/apps.php:134 -#: ../../include/nav.php:210 ../../mod/admin.php:956 ../../mod/admin.php:1161 -msgid "Settings" -msgstr "Inställningar" - -#: ../../include/widgets.php:548 ../../mod/mail.php:128 -#: ../../mod/message.php:31 -msgid "Messages" -msgstr "Meddelanden" - -#: ../../include/widgets.php:551 -msgid "Check Mail" -msgstr "Hämta meddelanden" - -#: ../../include/widgets.php:556 ../../include/nav.php:201 -msgid "New Message" -msgstr "Nytt meddelande" - -#: ../../include/widgets.php:634 -msgid "Chat Rooms" -msgstr "Chattrum" - -#: ../../include/widgets.php:654 -msgid "Bookmarked Chatrooms" -msgstr "Bokmärkta chattrum" - -#: ../../include/widgets.php:674 -msgid "Suggested Chatrooms" -msgstr "Föreslagna chattrum" - -#: ../../include/widgets.php:801 ../../include/widgets.php:859 -msgid "photo/image" -msgstr "foto/bild" - -#: ../../include/widgets.php:954 ../../include/widgets.php:956 -msgid "Rate Me" -msgstr "Betygsätt mig" - -#: ../../include/widgets.php:960 -msgid "View Ratings" -msgstr "Visa betyg" - -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan se mina normala strömmar och inlägg" - -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan se min standardkanalprofil" - -#: ../../include/permissions.php:28 -msgid "Can view my photo albums" -msgstr "Kan se mina fotoalbum" - -#: ../../include/permissions.php:29 -msgid "Can view my connections" -msgstr "Kan se mina kontakter" - -#: ../../include/permissions.php:30 -msgid "Can view my file storage" -msgstr "Kan se mitt filutrymme" - -#: ../../include/permissions.php:31 -msgid "Can view my webpages" -msgstr "Kan se mina webbsidor" - -#: ../../include/permissions.php:34 -msgid "Can send me their channel stream and posts" -msgstr "Kan skicka sina kanalströmmar och inlägg till mig" - -#: ../../include/permissions.php:35 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan posta inlägg på min kanalsida (\"vägg\")" - -#: ../../include/permissions.php:36 -msgid "Can comment on or like my posts" -msgstr "Kan kommentera eller gilla mina inlägg" - -#: ../../include/permissions.php:37 -msgid "Can send me private mail messages" -msgstr "Kan skicka privata meddelanden till mig" - -#: ../../include/permissions.php:38 -msgid "Can post photos to my photo albums" -msgstr "Kan lägga till foton i mitt fotoalbum" - -#: ../../include/permissions.php:39 -msgid "Can like/dislike stuff" -msgstr "Kan gilla/ogilla saker" - -#: ../../include/permissions.php:39 -msgid "Profiles and things other than posts/comments" -msgstr "Profiler och annat än inlägg/kommentarer" - -#: ../../include/permissions.php:41 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan vidarebefordra till alla mina kanalkontakter genom @omnämnanden" - -#: ../../include/permissions.php:41 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avancerat - användbart för att skapa kanaler för gruppforum" - -#: ../../include/permissions.php:42 -msgid "Can chat with me (when available)" -msgstr "Kan chatta med mig (när tillgänglig)" - -#: ../../include/permissions.php:43 -msgid "Can write to my file storage" -msgstr "Har skrivrättigheter i mitt filutrymme" - -#: ../../include/permissions.php:44 -msgid "Can edit my webpages" -msgstr "Kan redigera mina webbsidor" - -#: ../../include/permissions.php:46 -msgid "Can source my public posts in derived channels" -msgstr "Kan använda mina offentliga inlägg i kanaler nedströms" - -#: ../../include/permissions.php:46 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Ganska avancerat - väldigt användbart i öppna gemenskaper" - -#: ../../include/permissions.php:48 -msgid "Can administer my channel resources" -msgstr "Kan administrera mina kanalresurser" - -#: ../../include/permissions.php:48 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Extremt avancerat. Låt detta vara om du inte vet vad du gör" - -#: ../../include/permissions.php:810 -msgid "Social Networking" -msgstr "Socialt nätverkande" - -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Mostly Public" -msgstr "Mestadels offentligt" - -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -#: ../../include/permissions.php:812 -msgid "Restricted" -msgstr "Begränsat" - -#: ../../include/permissions.php:810 ../../include/permissions.php:811 -msgid "Private" -msgstr "Privat" - -#: ../../include/permissions.php:811 -msgid "Community Forum" -msgstr "Gemenskapsforum" - -#: ../../include/permissions.php:812 -msgid "Feed Republish" -msgstr "Vidarepublicering av flöde" - -#: ../../include/permissions.php:813 -msgid "Special Purpose" -msgstr "Särskilt syfte" - -#: ../../include/permissions.php:813 -msgid "Celebrity/Soapbox" -msgstr "Kändis/talarstol" - -#: ../../include/permissions.php:813 -msgid "Group Repository" -msgstr "Gruppförråd" - -#: ../../include/permissions.php:814 ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 -msgid "Other" -msgstr "Annat" - -#: ../../include/permissions.php:814 -msgid "Custom/Expert Mode" -msgstr "Anpassat/expertläge" - -#: ../../include/notify.php:23 -msgid "created a new post" -msgstr "skapade ett nytt inlägg" - -#: ../../include/notify.php:24 -#, php-format -msgid "commented on %s's post" -msgstr "kommenterade %ss inlägg" - -#: ../../include/taxonomy.php:210 ../../include/taxonomy.php:229 -msgid "Tags" -msgstr "Taggar" - -#: ../../include/taxonomy.php:269 -msgid "Keywords" -msgstr "Nyckelord" - -#: ../../include/taxonomy.php:294 -msgid "have" -msgstr "har" - -#: ../../include/taxonomy.php:294 -msgid "has" -msgstr "har" - -#: ../../include/taxonomy.php:295 -msgid "want" -msgstr "vill ha" - -#: ../../include/taxonomy.php:295 -msgid "wants" -msgstr "vill ha" - -#: ../../include/taxonomy.php:296 ../../include/ItemObject.php:221 -msgid "like" -msgstr "gilla" - -#: ../../include/taxonomy.php:296 -msgid "likes" -msgstr "gillar" - -#: ../../include/taxonomy.php:297 ../../include/ItemObject.php:222 -msgid "dislike" -msgstr "ogilla" - -#: ../../include/taxonomy.php:297 -msgid "dislikes" -msgstr "ogillar" - -#: ../../include/taxonomy.php:380 ../../include/ItemObject.php:146 -#: ../../include/identity.php:1155 ../../mod/photos.php:995 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "gillar detta" -msgstr[1] "gillar detta" - -#: ../../include/bbcode.php:115 ../../include/bbcode.php:688 -#: ../../include/bbcode.php:691 ../../include/bbcode.php:696 -#: ../../include/bbcode.php:699 ../../include/bbcode.php:702 -#: ../../include/bbcode.php:705 ../../include/bbcode.php:710 -#: ../../include/bbcode.php:713 ../../include/bbcode.php:718 -#: ../../include/bbcode.php:721 ../../include/bbcode.php:724 -#: ../../include/bbcode.php:727 -msgid "Image/photo" -msgstr "Bild/foto" - -#: ../../include/bbcode.php:150 ../../include/bbcode.php:738 -msgid "Encrypted content" -msgstr "Krypterat innehåll" - -#: ../../include/bbcode.php:168 -msgid "Install design element: " -msgstr "Installera designelement: " - -#: ../../include/bbcode.php:174 -msgid "QR code" -msgstr "QR-kod" - -#: ../../include/bbcode.php:223 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s skrev följande %2$s %3$s" - -#: ../../include/bbcode.php:225 -msgid "post" -msgstr "post" - -#: ../../include/bbcode.php:447 -msgid "Different viewers will see this text differently" -msgstr "Olika betraktare kan se den här texten ollika" - -#: ../../include/bbcode.php:656 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:676 -msgid "$1 wrote:" -msgstr "$1 skrev:" - -#: ../../include/text.php:320 -msgid "prev" -msgstr "föregående" - -#: ../../include/text.php:322 -msgid "first" -msgstr "första" - -#: ../../include/text.php:351 -msgid "last" -msgstr "sista" - -#: ../../include/text.php:354 -msgid "next" -msgstr "nästa" - -#: ../../include/text.php:366 -msgid "older" -msgstr "äldre" - -#: ../../include/text.php:368 -msgid "newer" -msgstr "nyare" - -#: ../../include/text.php:750 -msgid "No connections" -msgstr "Inga kontakter" - -#: ../../include/text.php:766 -#, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d kontakt" -msgstr[1] "%d kontakter" - -#: ../../include/text.php:779 ../../mod/viewconnections.php:86 -msgid "View Connections" -msgstr "Visa kontakter" - -#: ../../include/text.php:836 ../../include/text.php:848 -#: ../../include/apps.php:147 ../../include/nav.php:165 -#: ../../mod/search.php:34 -msgid "Search" -msgstr "Sök" - -#: ../../include/text.php:915 -msgid "poke" -msgstr "puffa" - -#: ../../include/text.php:915 ../../include/conversation.php:243 -msgid "poked" -msgstr "puffade" - -#: ../../include/text.php:916 -msgid "ping" -msgstr "pinga" - -#: ../../include/text.php:916 -msgid "pinged" -msgstr "pingade" - -#: ../../include/text.php:917 -msgid "prod" -msgstr "stöt till" - -#: ../../include/text.php:917 -msgid "prodded" -msgstr "stötte till" - -#: ../../include/text.php:918 -msgid "slap" -msgstr "daska till" - -#: ../../include/text.php:918 -msgid "slapped" -msgstr "daskade till" - -#: ../../include/text.php:919 -msgid "finger" -msgstr "fingra på" - -#: ../../include/text.php:919 -msgid "fingered" -msgstr "fingrade på" - -#: ../../include/text.php:920 -msgid "rebuff" -msgstr "stöt tillbaka" - -#: ../../include/text.php:920 -msgid "rebuffed" -msgstr "stötte tillbaks" - -#: ../../include/text.php:930 -msgid "happy" -msgstr "glad" - -#: ../../include/text.php:931 -msgid "sad" -msgstr "ledsen" - -#: ../../include/text.php:932 -msgid "mellow" -msgstr "lugn" - -#: ../../include/text.php:933 -msgid "tired" -msgstr "trött" - -#: ../../include/text.php:934 -msgid "perky" -msgstr "uppåt" - -#: ../../include/text.php:935 -msgid "angry" -msgstr "arg" - -#: ../../include/text.php:936 -msgid "stupified" -msgstr "virrig" - -#: ../../include/text.php:937 -msgid "puzzled" -msgstr "förbryllad" - -#: ../../include/text.php:938 -msgid "interested" -msgstr "intresserad" - -#: ../../include/text.php:939 -msgid "bitter" -msgstr "bitter" - -#: ../../include/text.php:940 -msgid "cheerful" -msgstr "munter" - -#: ../../include/text.php:941 -msgid "alive" -msgstr "pigg" - -#: ../../include/text.php:942 -msgid "annoyed" -msgstr "irriterad" - -#: ../../include/text.php:943 -msgid "anxious" -msgstr "bekymrad" - -#: ../../include/text.php:944 -msgid "cranky" -msgstr "grinig" - -#: ../../include/text.php:945 -msgid "disturbed" -msgstr "besvärad" - -#: ../../include/text.php:946 -msgid "frustrated" -msgstr "frustrerad" - -#: ../../include/text.php:947 -msgid "depressed" -msgstr "deprimerad" - -#: ../../include/text.php:948 -msgid "motivated" -msgstr "motiverad" - -#: ../../include/text.php:949 -msgid "relaxed" -msgstr "avslappnad" - -#: ../../include/text.php:950 -msgid "surprised" -msgstr "förvånad" - -#: ../../include/text.php:1116 -msgid "Monday" -msgstr "måndag" - -#: ../../include/text.php:1116 -msgid "Tuesday" -msgstr "tisdag" - -#: ../../include/text.php:1116 -msgid "Wednesday" -msgstr "onsdag" - -#: ../../include/text.php:1116 -msgid "Thursday" -msgstr "torsdag" - -#: ../../include/text.php:1116 -msgid "Friday" -msgstr "fredag" - -#: ../../include/text.php:1116 -msgid "Saturday" -msgstr "lördag" - -#: ../../include/text.php:1116 -msgid "Sunday" -msgstr "söndag" - -#: ../../include/text.php:1120 -msgid "January" -msgstr "januari" - -#: ../../include/text.php:1120 -msgid "February" -msgstr "februari" - -#: ../../include/text.php:1120 -msgid "March" -msgstr "mars" - -#: ../../include/text.php:1120 -msgid "April" -msgstr "april" - -#: ../../include/text.php:1120 -msgid "May" -msgstr "maj" - -#: ../../include/text.php:1120 -msgid "June" -msgstr "juni" - -#: ../../include/text.php:1120 -msgid "July" -msgstr "juli" - -#: ../../include/text.php:1120 -msgid "August" -msgstr "augusti" - -#: ../../include/text.php:1120 -msgid "September" -msgstr "september" - -#: ../../include/text.php:1120 -msgid "October" -msgstr "oktober" - -#: ../../include/text.php:1120 -msgid "November" -msgstr "november" - -#: ../../include/text.php:1120 -msgid "December" -msgstr "december" - -#: ../../include/text.php:1198 -msgid "unknown.???" -msgstr "okänt.???" - -#: ../../include/text.php:1199 -msgid "bytes" -msgstr "byte" - -#: ../../include/text.php:1235 -msgid "remove category" -msgstr "ta bort kategori" - -#: ../../include/text.php:1304 -msgid "remove from file" -msgstr "ta bort från fil" - -#: ../../include/text.php:1380 ../../include/text.php:1391 -#: ../../mod/connedit.php:635 -msgid "Click to open/close" -msgstr "Klicka för att öppna/stänga" - -#: ../../include/text.php:1539 ../../mod/events.php:418 -msgid "Link to Source" -msgstr "Länk till källa" - -#: ../../include/text.php:1558 -msgid "Select a page layout: " -msgstr "Välj en sidlayout: " - -#: ../../include/text.php:1561 ../../include/text.php:1621 -msgid "default" -msgstr "standard" - -#: ../../include/text.php:1594 -msgid "Page content type: " -msgstr "Typ av sidinnehåll: " - -#: ../../include/text.php:1633 -msgid "Select an alternate language" -msgstr "Välj ett alternativt språk" - -#: ../../include/text.php:1752 ../../include/diaspora.php:1953 -#: ../../include/conversation.php:120 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" - -#: ../../include/text.php:1755 ../../include/conversation.php:123 -#: ../../mod/tagger.php:47 -msgid "event" -msgstr "händelse" - -#: ../../include/text.php:1758 ../../include/diaspora.php:1953 -#: ../../include/conversation.php:148 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:174 ../../mod/like.php:302 ../../mod/tagger.php:51 -msgid "status" -msgstr "status" - -#: ../../include/text.php:1760 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "kommentar" - -#: ../../include/text.php:1765 -msgid "activity" -msgstr "aktivitet" - -#: ../../include/text.php:2052 -msgid "Design" -msgstr "Design" - -#: ../../include/text.php:2055 -msgid "Blocks" -msgstr "Block" - -#: ../../include/text.php:2056 -msgid "Menus" -msgstr "Menyer" - -#: ../../include/text.php:2057 -msgid "Layouts" -msgstr "Layouter" - -#: ../../include/text.php:2058 -msgid "Pages" -msgstr "Sidor" - -#: ../../include/text.php:2393 ../../include/RedDAV/RedBrowser.php:130 -msgid "Collection" -msgstr "Samling" - -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Ny sida" - -#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../include/RedDAV/RedBrowser.php:267 ../../include/apps.php:254 -#: ../../include/menu.php:42 ../../include/ItemObject.php:100 -#: ../../mod/blocks.php:132 ../../mod/webpages.php:162 -#: ../../mod/connections.php:382 ../../mod/connections.php:395 -#: ../../mod/connections.php:414 ../../mod/editblock.php:143 -#: ../../mod/settings.php:639 ../../mod/editpost.php:112 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:174 -#: ../../mod/thing.php:233 ../../mod/layouts.php:167 ../../mod/menu.php:78 -msgid "Edit" -msgstr "Redigera" - -#: ../../include/page_widgets.php:39 ../../mod/blocks.php:135 -#: ../../mod/webpages.php:165 ../../mod/layouts.php:171 -msgid "View" -msgstr "Visa" - -#: ../../include/page_widgets.php:40 ../../include/conversation.php:1132 -#: ../../include/ItemObject.php:638 ../../mod/webpages.php:166 -#: ../../mod/photos.php:966 -msgid "Preview" -msgstr "Förhandsgranska" - -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:167 -msgid "Actions" -msgstr "Åtgärder" - -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:168 -msgid "Page Link" -msgstr "Länk" - -#: ../../include/page_widgets.php:43 ../../mod/webpages.php:169 -msgid "Title" -msgstr "Titel" - -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:170 -msgid "Created" -msgstr "Skapad" - -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:171 -msgid "Edited" -msgstr "Ändrad" - -#: ../../include/oembed.php:171 -msgid "Embedded content" -msgstr "Inbäddat innehåll" - -#: ../../include/oembed.php:180 -msgid "Embedding disabled" -msgstr "Inbäddning inaktiverat" - -#: ../../include/photos.php:15 ../../include/attach.php:137 -#: ../../include/attach.php:184 ../../include/attach.php:247 -#: ../../include/attach.php:261 ../../include/attach.php:301 -#: ../../include/attach.php:315 ../../include/attach.php:339 -#: ../../include/attach.php:532 ../../include/attach.php:606 -#: ../../include/items.php:4063 ../../include/chat.php:116 -#: ../../mod/setup.php:207 ../../mod/register.php:72 ../../mod/network.php:12 -#: ../../mod/achievements.php:30 ../../mod/authtest.php:13 -#: ../../mod/suggest.php:26 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/events.php:199 ../../mod/blocks.php:67 ../../mod/blocks.php:75 -#: ../../mod/profile.php:64 ../../mod/profile.php:72 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/webpages.php:67 ../../mod/mitem.php:106 -#: ../../mod/delegate.php:6 ../../mod/channel.php:90 ../../mod/channel.php:201 -#: ../../mod/channel.php:244 ../../mod/regmod.php:17 ../../mod/chat.php:90 -#: ../../mod/chat.php:95 ../../mod/common.php:35 ../../mod/item.php:195 -#: ../../mod/item.php:203 ../../mod/item.php:931 ../../mod/connections.php:169 -#: ../../mod/editblock.php:65 ../../mod/settings.php:554 -#: ../../mod/photos.php:68 ../../mod/poke.php:128 ../../mod/manage.php:6 -#: ../../mod/bookmarks.php:46 ../../mod/editpost.php:13 ../../mod/group.php:9 -#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 -#: ../../mod/sources.php:66 ../../mod/pdledit.php:21 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:118 ../../mod/profile_photo.php:264 -#: ../../mod/profile_photo.php:277 ../../mod/fsuggest.php:78 -#: ../../mod/like.php:166 ../../mod/viewsrc.php:14 ../../mod/invite.php:13 -#: ../../mod/invite.php:104 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:72 ../../mod/filestorage.php:87 -#: ../../mod/filestorage.php:114 ../../mod/locs.php:77 ../../mod/thing.php:247 -#: ../../mod/thing.php:264 ../../mod/thing.php:299 ../../mod/layouts.php:67 -#: ../../mod/layouts.php:74 ../../mod/layouts.php:85 -#: ../../mod/connedit.php:321 ../../mod/menu.php:61 -#: ../../mod/notifications.php:66 ../../mod/appman.php:66 -#: ../../mod/mood.php:112 ../../mod/mail.php:114 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/message.php:16 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/rate.php:101 ../../mod/page.php:28 -#: ../../mod/page.php:78 ../../mod/profiles.php:188 ../../mod/profiles.php:576 -#: ../../mod/service_limits.php:7 ../../mod/sharedwithme.php:7 -#: ../../index.php:190 ../../index.php:390 -msgid "Permission denied." -msgstr "Behörighet saknas." - -#: ../../include/photos.php:105 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild överskrider webbplatsens storleksbegränsning på %lu byte" - -#: ../../include/photos.php:112 -msgid "Image file is empty." -msgstr "Bildfil är tom." - -#: ../../include/photos.php:141 ../../mod/profile_photo.php:217 -msgid "Unable to process image" -msgstr "Kunde inte bearbeta bild" - -#: ../../include/photos.php:213 -msgid "Photo storage failed." -msgstr "Fotolagring misslyckades." - -#: ../../include/photos.php:355 ../../include/conversation.php:1566 -msgid "Photo Albums" -msgstr "Fotoalbum" - -#: ../../include/photos.php:359 -msgid "Upload New Photos" -msgstr "Ladda upp nya foton" - -#: ../../include/api.php:1084 -msgid "Public Timeline" -msgstr "Offentlig tidslinje" - -#: ../../include/bb2diaspora.php:366 -msgid "Attachments:" -msgstr "Bilagor:" - -#: ../../include/bb2diaspora.php:445 ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l j F Y \\k\\l. H.i" - -#: ../../include/bb2diaspora.php:447 -msgid "Hubzilla event notification:" -msgstr "Händelsenotifiering från Hubzilla:" - -#: ../../include/bb2diaspora.php:451 ../../include/event.php:20 -msgid "Starts:" -msgstr "Börjar:" - -#: ../../include/bb2diaspora.php:459 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Slutar:" - -#: ../../include/bb2diaspora.php:467 ../../include/event.php:40 -#: ../../include/identity.php:894 ../../mod/events.php:595 -#: ../../mod/directory.php:204 -msgid "Location:" -msgstr "Plats:" - -#: ../../include/security.php:357 -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 "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades." - -#: ../../include/diaspora.php:1982 ../../include/conversation.php:164 -#: ../../mod/like.php:348 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gillar %2$ss %3$s" - -#: ../../include/features.php:38 -msgid "General Features" -msgstr "Allmänna funktioner" - -#: ../../include/features.php:40 -msgid "Content Expiration" -msgstr "Tidsbegränsat innehåll" - -#: ../../include/features.php:40 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid" - -#: ../../include/features.php:41 -msgid "Multiple Profiles" -msgstr "Flera profiler" - -#: ../../include/features.php:41 -msgid "Ability to create multiple profiles" -msgstr "Möjlighet att skapa flera profiler" - -#: ../../include/features.php:42 -msgid "Advanced Profiles" -msgstr "Avancerade profiler" - -#: ../../include/features.php:42 -msgid "Additional profile sections and selections" -msgstr "Fler profilinställningar" - -#: ../../include/features.php:43 -msgid "Profile Import/Export" -msgstr "Profilimport/-export" - -#: ../../include/features.php:43 -msgid "Save and load profile details across sites/channels" -msgstr "Spara och ladda profiluppgifter mellan webbplatser/kanaler" - -#: ../../include/features.php:44 -msgid "Web Pages" -msgstr "Webbsidor" - -#: ../../include/features.php:44 -msgid "Provide managed web pages on your channel" -msgstr "Tillhandahåll ordnade webbsidor i din kanal" - -#: ../../include/features.php:45 -msgid "Private Notes" -msgstr "Privata anteckningar" - -#: ../../include/features.php:45 -msgid "Enables a tool to store notes and reminders" -msgstr "Aktivera ett verktyg för att spara anteckningar och påminnelser" - -#: ../../include/features.php:46 -msgid "Navigation Channel Select" -msgstr "Kanalväljare i navigation" - -#: ../../include/features.php:46 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Välj kanal direkt från navigationslistens rullgardinsmeny" - -#: ../../include/features.php:50 -msgid "Extended Identity Sharing" -msgstr "Utökad identitetsdelning" - -#: ../../include/features.php:50 -msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen." - -#: ../../include/features.php:51 -msgid "Expert Mode" -msgstr "Expertläge" - -#: ../../include/features.php:51 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktivera expertläge för att tillåta avancerade inställningar" - -#: ../../include/features.php:52 -msgid "Premium Channel" -msgstr "Premiumkanal" - -#: ../../include/features.php:52 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal" - -#: ../../include/features.php:57 -msgid "Post Composition Features" -msgstr "Skrivfunktioner" - -#: ../../include/features.php:59 -msgid "Use Markdown" -msgstr "Använd Markdown" - -#: ../../include/features.php:59 -msgid "Allow use of \"Markdown\" to format posts" -msgstr "Tillåt att \"Markdown\" används för att formatera inlägg" - -#: ../../include/features.php:60 -msgid "Large Photos" -msgstr "Stora foton" - -#: ../../include/features.php:60 -msgid "" -"Include large (640px) photo thumbnails in posts. If not enabled, use small " -"(320px) photo thumbnails" -msgstr "Inkludera stora (640px) fotominiatyrer i inlägg. Om inte aktiverat används små (320px) fotominiatyrer" - -#: ../../include/features.php:61 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importera kanalinnehåll från andra kanaler eller flöden automatiskt" - -#: ../../include/features.php:62 -msgid "Even More Encryption" -msgstr "Ytterligare kryptering" - -#: ../../include/features.php:62 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel" - -#: ../../include/features.php:63 -msgid "Flag Adult Photos" -msgstr "Flagga vuxenfoton" - -#: ../../include/features.php:63 -msgid "Provide photo edit option to hide adult photos from default album view" -msgstr "Gör det möjligt att inte visa foton som är olämpliga för barn i albums standardvy" - -#: ../../include/features.php:68 -msgid "Network and Stream Filtering" -msgstr "Nätverk och strömfiltrering" - -#: ../../include/features.php:69 -msgid "Search by Date" -msgstr "Sök på datum" - -#: ../../include/features.php:69 -msgid "Ability to select posts by date ranges" -msgstr "Tillåter urval av inlägg baserat på datum" - -#: ../../include/features.php:70 -msgid "Collections Filter" -msgstr "Kretsfilter" - -#: ../../include/features.php:70 -msgid "Enable widget to display Network posts only from selected collections" -msgstr "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar" - -#: ../../include/features.php:71 -msgid "Save search terms for re-use" -msgstr "Spara sökuttryck för återanvändning" - -#: ../../include/features.php:72 -msgid "Network Personal Tab" -msgstr "Personlig nätverksflik" - -#: ../../include/features.php:72 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i" - -#: ../../include/features.php:73 -msgid "Network New Tab" -msgstr "Flik för nytt på nätverket" - -#: ../../include/features.php:73 -msgid "Enable tab to display all new Network activity" -msgstr "Aktivera en flik som visar all ny nätverksaktivitet" - -#: ../../include/features.php:74 -msgid "Affinity Tool" -msgstr "Samhörighetsverktyg" - -#: ../../include/features.php:74 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrera strömaktivitet efter hur nära relationen är" - -#: ../../include/features.php:75 -msgid "Suggest Channels" -msgstr "Föreslå kanaler" - -#: ../../include/features.php:75 -msgid "Show channel suggestions" -msgstr "Visa förslag på kanaler" - -#: ../../include/features.php:80 -msgid "Post/Comment Tools" -msgstr "Inläggs-/kommentarsverktyg" - -#: ../../include/features.php:81 -msgid "Tagging" -msgstr "Taggning" - -#: ../../include/features.php:81 -msgid "Ability to tag existing posts" -msgstr "Möjlighet att tagga befintliga inlägg" - -#: ../../include/features.php:82 -msgid "Post Categories" -msgstr "Inläggskategorier" - -#: ../../include/features.php:82 -msgid "Add categories to your posts" -msgstr "Lägg till kategorier till dina inlägg" - -#: ../../include/features.php:83 -msgid "Ability to file posts under folders" -msgstr "Möjlighet att lägga inlägg i mappar" - -#: ../../include/features.php:84 -msgid "Dislike Posts" -msgstr "Ogilla inlägg" - -#: ../../include/features.php:84 -msgid "Ability to dislike posts/comments" -msgstr "Möjlighet att ogilla inlägg/kommentarer" - -#: ../../include/features.php:85 -msgid "Star Posts" -msgstr "Märk inlägg" - -#: ../../include/features.php:85 -msgid "Ability to mark special posts with a star indicator" -msgstr "Möjlighet att märka speciella inlägg med en stjärna" - -#: ../../include/features.php:86 -msgid "Tag Cloud" -msgstr "Taggmoln" - -#: ../../include/features.php:86 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Tillhandahåll ett personligt taggmoln på din kanalsida" - -#: ../../include/RedDAV/RedBrowser.php:106 -#: ../../include/RedDAV/RedBrowser.php:266 -msgid "parent" -msgstr "en nivå upp" - -#: ../../include/RedDAV/RedBrowser.php:133 -msgid "Principal" -msgstr "Bas" - -#: ../../include/RedDAV/RedBrowser.php:136 -msgid "Addressbook" -msgstr "Adressbok" - -#: ../../include/RedDAV/RedBrowser.php:139 -msgid "Calendar" -msgstr "Kalender" - -#: ../../include/RedDAV/RedBrowser.php:142 -msgid "Schedule Inbox" -msgstr "Schemainkorg" - -#: ../../include/RedDAV/RedBrowser.php:145 -msgid "Schedule Outbox" -msgstr "Schemautkorg" - -#: ../../include/RedDAV/RedBrowser.php:163 ../../include/apps.php:336 -#: ../../include/apps.php:387 ../../include/conversation.php:1022 -#: ../../mod/photos.php:681 ../../mod/photos.php:1100 -#: ../../mod/connedit.php:570 -msgid "Unknown" -msgstr "Okända" - -#: ../../include/RedDAV/RedBrowser.php:225 -#, php-format -msgid "%1$s used" -msgstr "%1$s använt" - -#: ../../include/RedDAV/RedBrowser.php:230 -#, php-format -msgid "%1$s used of %2$s (%3$s%)" -msgstr "%1$s använt av %2$s (%3$s%)" - -#: ../../include/RedDAV/RedBrowser.php:249 ../../include/apps.php:135 -#: ../../include/conversation.php:1572 ../../include/nav.php:98 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Filer" - -#: ../../include/RedDAV/RedBrowser.php:251 -msgid "Total" -msgstr "Totalt" - -#: ../../include/RedDAV/RedBrowser.php:253 -msgid "Shared" -msgstr "Delat" - -#: ../../include/RedDAV/RedBrowser.php:254 -#: ../../include/RedDAV/RedBrowser.php:303 ../../mod/mitem.php:169 -#: ../../mod/menu.php:100 ../../mod/new_channel.php:121 -msgid "Create" -msgstr "Skapa" - -#: ../../include/RedDAV/RedBrowser.php:255 -#: ../../include/RedDAV/RedBrowser.php:305 ../../mod/photos.php:706 -#: ../../mod/photos.php:1214 ../../mod/profile_photo.php:362 -msgid "Upload" -msgstr "Ladda upp" - -#: ../../include/RedDAV/RedBrowser.php:262 ../../mod/settings.php:579 -#: ../../mod/settings.php:605 ../../mod/admin.php:871 -#: ../../mod/sharedwithme.php:100 -msgid "Name" -msgstr "Namn" - -#: ../../include/RedDAV/RedBrowser.php:263 -msgid "Type" -msgstr "Typ" - -#: ../../include/RedDAV/RedBrowser.php:264 ../../mod/sharedwithme.php:101 -msgid "Size" -msgstr "Storlek" - -#: ../../include/RedDAV/RedBrowser.php:265 ../../mod/sharedwithme.php:102 -msgid "Last Modified" -msgstr "Senast ändrad" - -#: ../../include/RedDAV/RedBrowser.php:268 ../../include/apps.php:255 -#: ../../include/conversation.php:640 ../../include/ItemObject.php:120 -#: ../../mod/settings.php:640 ../../mod/photos.php:1038 -#: ../../mod/group.php:176 ../../mod/thing.php:234 ../../mod/connedit.php:533 -#: ../../mod/admin.php:735 ../../mod/admin.php:866 -msgid "Delete" -msgstr "Ta bort" - -#: ../../include/RedDAV/RedBrowser.php:302 -msgid "Create new folder" -msgstr "Skapa ny mapp" - -#: ../../include/RedDAV/RedBrowser.php:304 -msgid "Upload file" -msgstr "Ladda upp fil" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss bokmärken" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Ofta" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Varje timme" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Två gånger dagligen" - -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagligen" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Varje vecka" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Varje månad" - -#: ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 ../../mod/admin.php:731 -#: ../../mod/admin.php:740 ../../boot.php:1552 -msgid "Email" -msgstr "E-post" - -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Serveradministrator" - -#: ../../include/apps.php:129 ../../include/conversation.php:1598 -#: ../../include/nav.php:109 -msgid "Bookmarks" -msgstr "Bokmärken" - -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Adressbok" - -#: ../../include/apps.php:131 ../../include/nav.php:117 ../../boot.php:1550 -msgid "Login" -msgstr "Logga in" - -#: ../../include/apps.php:132 ../../include/nav.php:208 -#: ../../mod/manage.php:150 -msgid "Channel Manager" -msgstr "Kanalhanterare" - -#: ../../include/apps.php:133 ../../include/nav.php:182 -msgid "Matrix" -msgstr "Matris" - -#: ../../include/apps.php:136 ../../include/conversation.php:1609 -#: ../../include/nav.php:113 ../../mod/webpages.php:160 -msgid "Webpages" -msgstr "Webbsidor" - -#: ../../include/apps.php:137 ../../include/nav.php:185 -msgid "Channel Home" -msgstr "Kanalhem" - -#: ../../include/apps.php:138 ../../include/identity.php:1129 -#: ../../include/identity.php:1246 ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profil" - -#: ../../include/apps.php:139 ../../include/conversation.php:1563 -#: ../../include/nav.php:97 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foton" - -#: ../../include/apps.php:140 ../../include/nav.php:204 -#: ../../mod/events.php:446 -msgid "Events" -msgstr "Händelser" - -#: ../../include/apps.php:141 ../../include/nav.php:168 -#: ../../mod/directory.php:334 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/apps.php:142 ../../include/nav.php:160 ../../mod/help.php:67 -#: ../../mod/help.php:72 -msgid "Help" -msgstr "Hjälp" - -#: ../../include/apps.php:143 ../../include/nav.php:196 -msgid "Mail" -msgstr "Privat meddelande" - -#: ../../include/apps.php:144 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Sinnesstämning" - -#: ../../include/apps.php:145 ../../include/conversation.php:945 -msgid "Poke" -msgstr "Puffa" - -#: ../../include/apps.php:146 ../../include/nav.php:103 -msgid "Chat" -msgstr "Chatt" - -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Sond" - -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Föreslå" - -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Slumpvald kanal" - -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Bjud in" - -#: ../../include/apps.php:152 -msgid "Features" -msgstr "Funktioner" - -#: ../../include/apps.php:153 -msgid "Language" -msgstr "Språk" - -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Inlägg" - -#: ../../include/apps.php:155 -msgid "Profile Photo" -msgstr "Profilfoto" - -#: ../../include/apps.php:247 ../../mod/settings.php:81 -#: ../../mod/settings.php:603 -msgid "Update" -msgstr "Uppdatera" - -#: ../../include/apps.php:247 -msgid "Install" -msgstr "Installera" - -#: ../../include/apps.php:252 -msgid "Purchase" -msgstr "Köp" - -#: ../../include/comanche.php:35 ../../mod/admin.php:357 -#: ../../view/theme/apw/php/config.php:185 -msgid "Default" -msgstr "Standard" - -#: ../../include/acl_selectors.php:240 -msgid "Visible to your default audience" -msgstr "Kan ses av förinställda mottagare" - -#: ../../include/acl_selectors.php:241 -msgid "Show" -msgstr "Visa" - -#: ../../include/acl_selectors.php:242 -msgid "Don't show" -msgstr "Visa inte" - -#: ../../include/acl_selectors.php:248 ../../mod/events.php:601 -#: ../../mod/chat.php:209 ../../mod/photos.php:559 ../../mod/photos.php:918 -#: ../../mod/filestorage.php:146 -msgid "Permissions" -msgstr "Behörighet" - -#: ../../include/acl_selectors.php:249 ../../include/ItemObject.php:320 -#: ../../mod/photos.php:1117 -msgid "Close" -msgstr "Stäng" - -#: ../../include/activities.php:39 -msgid " and " -msgstr " och " - -#: ../../include/activities.php:47 -msgid "public profile" -msgstr "offentlig profil" - -#: ../../include/activities.php:56 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ändrade %2$s till "%3$s"" - -#: ../../include/activities.php:57 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besök %1$ss %2$s" - -#: ../../include/activities.php:60 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s har en uppdaterad %2$s (har ändrat %3$s)." - -#: ../../include/conversation.php:126 ../../mod/like.php:101 -msgid "channel" -msgstr "kanal" - -#: ../../include/conversation.php:167 ../../mod/like.php:350 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gillar inte %2$ss %3$s" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s har nu kontakt med %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s puffade %2$s" - -#: ../../include/conversation.php:261 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s är %2$s" - -#: ../../include/conversation.php:639 ../../include/ItemObject.php:126 -msgid "Select" -msgstr "Välj" - -#: ../../include/conversation.php:647 ../../include/ItemObject.php:89 -msgid "Private Message" -msgstr "Privat meddelande" - -#: ../../include/conversation.php:654 ../../include/ItemObject.php:194 -msgid "Message signature validated" -msgstr "Meddelandesignatur bekräftad" - -#: ../../include/conversation.php:655 ../../include/ItemObject.php:195 -msgid "Message signature incorrect" -msgstr "Meddelandesignatur felaktig" - -#: ../../include/conversation.php:675 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Visa %ss profil på %s" - -#: ../../include/conversation.php:690 -msgid "Categories:" -msgstr "Kategorier:" - -#: ../../include/conversation.php:691 -msgid "Filed under:" -msgstr "Postat under:" - -#: ../../include/conversation.php:699 ../../include/ItemObject.php:274 -#, php-format -msgid " from %s" -msgstr "från %s" - -#: ../../include/conversation.php:702 ../../include/ItemObject.php:277 -#, php-format -msgid "last edited: %s" -msgstr "senast redigerat: %s" - -#: ../../include/conversation.php:703 ../../include/ItemObject.php:278 -#, php-format -msgid "Expires: %s" -msgstr "Upphör: %s" - -#: ../../include/conversation.php:718 -msgid "View in context" -msgstr "Visa sammanhang" - -#: ../../include/conversation.php:720 ../../include/conversation.php:1175 -#: ../../include/ItemObject.php:325 ../../mod/editblock.php:152 -#: ../../mod/photos.php:946 ../../mod/editpost.php:121 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:183 -#: ../../mod/mail.php:241 ../../mod/mail.php:356 -msgid "Please wait" -msgstr "Vänta" - -#: ../../include/conversation.php:840 -msgid "remove" -msgstr "ta bort" - -#: ../../include/conversation.php:844 ../../include/nav.php:249 -msgid "Loading..." -msgstr "Laddar..." - -#: ../../include/conversation.php:845 -msgid "Delete Selected Items" -msgstr "Ta bort valda poster" - -#: ../../include/conversation.php:936 -msgid "View Source" -msgstr "Visa källa" - -#: ../../include/conversation.php:937 -msgid "Follow Thread" -msgstr "Följ tråd" - -#: ../../include/conversation.php:938 -msgid "View Status" -msgstr "Visa status" - -#: ../../include/conversation.php:939 ../../include/nav.php:91 -#: ../../mod/connedit.php:484 ../../mod/connedit.php:634 -msgid "View Profile" -msgstr "Visa profil" - -#: ../../include/conversation.php:940 -msgid "View Photos" -msgstr "Visa foton" - -#: ../../include/conversation.php:941 -msgid "Matrix Activity" -msgstr "Matrisaktivitet" - -#: ../../include/conversation.php:943 -msgid "Edit Contact" -msgstr "Redigera kontakt" - -#: ../../include/conversation.php:944 -msgid "Send PM" -msgstr "Skicka meddelande" - -#: ../../include/conversation.php:1043 -#, php-format -msgid "%s likes this." -msgstr "%s gillar det här." - -#: ../../include/conversation.php:1043 -#, php-format -msgid "%s doesn't like this." -msgstr "%s gillar inte det här." - -#: ../../include/conversation.php:1047 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d person gillar det här." -msgstr[1] "%2$d personer gillar det här." - -#: ../../include/conversation.php:1049 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d person gillar inte det här." -msgstr[1] "%2$d personer gillar inte det här." - -#: ../../include/conversation.php:1055 -msgid "and" -msgstr "och" - -#: ../../include/conversation.php:1058 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", och %d annan person" -msgstr[1] ", och %d andra personer" - -#: ../../include/conversation.php:1059 -#, php-format -msgid "%s like this." -msgstr "%s gillar det här." - -#: ../../include/conversation.php:1059 -#, php-format -msgid "%s don't like this." -msgstr "%s gillar inte det här." - -#: ../../include/conversation.php:1116 -msgid "Visible to everybody" -msgstr "Kan ses av alla" - -#: ../../include/conversation.php:1117 ../../mod/mail.php:174 -#: ../../mod/mail.php:289 -msgid "Please enter a link URL:" -msgstr "Ange en länkadress:" - -#: ../../include/conversation.php:1118 -msgid "Please enter a video link/URL:" -msgstr "Ange en videolänkadress:" - -#: ../../include/conversation.php:1119 -msgid "Please enter an audio link/URL:" -msgstr "Ange en ljudlänkadress" - -#: ../../include/conversation.php:1120 -msgid "Tag term:" -msgstr "Tagguttryck" - -#: ../../include/conversation.php:1121 ../../mod/filer.php:49 -msgid "Save to Folder:" -msgstr "Spara i mapp:" - -#: ../../include/conversation.php:1122 -msgid "Where are you right now?" -msgstr "Var är du just nu?" - -#: ../../include/conversation.php:1123 ../../mod/editpost.php:52 -#: ../../mod/mail.php:175 ../../mod/mail.php:290 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Upphör YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1150 ../../mod/editblock.php:198 -#: ../../mod/photos.php:945 ../../mod/editlayout.php:193 -#: ../../mod/editwebpage.php:230 ../../mod/layouts.php:168 -msgid "Share" -msgstr "Dela" - -#: ../../include/conversation.php:1152 ../../mod/editwebpage.php:170 -msgid "Page link title" -msgstr "Titel på sidlänk" - -#: ../../include/conversation.php:1155 -msgid "Post as" -msgstr "Posta som" - -#: ../../include/conversation.php:1156 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:113 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:175 ../../mod/mail.php:238 ../../mod/mail.php:352 -msgid "Upload photo" -msgstr "Ladda upp foto" - -#: ../../include/conversation.php:1157 -msgid "upload photo" -msgstr "ladda upp foto" - -#: ../../include/conversation.php:1158 ../../mod/editblock.php:145 -#: ../../mod/editpost.php:114 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:176 ../../mod/mail.php:239 ../../mod/mail.php:353 -msgid "Attach file" -msgstr "Bifoga fil" - -#: ../../include/conversation.php:1159 -msgid "attach file" -msgstr "bifoga fil" - -#: ../../include/conversation.php:1160 ../../mod/editblock.php:146 -#: ../../mod/editpost.php:115 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:177 ../../mod/mail.php:240 ../../mod/mail.php:354 -msgid "Insert web link" -msgstr "Infoga webblänk" - -#: ../../include/conversation.php:1161 -msgid "web link" -msgstr "webblänk" - -#: ../../include/conversation.php:1162 -msgid "Insert video link" -msgstr "Infoga videolänk" - -#: ../../include/conversation.php:1163 -msgid "video link" -msgstr "videolänk" - -#: ../../include/conversation.php:1164 -msgid "Insert audio link" -msgstr "Infoga ljudlänk" - -#: ../../include/conversation.php:1165 -msgid "audio link" -msgstr "ljudlänk" - -#: ../../include/conversation.php:1166 ../../mod/editblock.php:150 -#: ../../mod/editpost.php:119 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:181 -msgid "Set your location" -msgstr "Ange din plats" - -#: ../../include/conversation.php:1167 -msgid "set location" -msgstr "ange plats" - -#: ../../include/conversation.php:1168 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:182 -msgid "Clear browser location" -msgstr "Rensa webbläsarplats" - -#: ../../include/conversation.php:1169 -msgid "clear location" -msgstr "rensa plats" - -#: ../../include/conversation.php:1171 ../../mod/editblock.php:164 -#: ../../mod/editpost.php:132 ../../mod/editlayout.php:159 -#: ../../mod/editwebpage.php:198 -msgid "Title (optional)" -msgstr "Titel (frivilligt)" - -#: ../../include/conversation.php:1174 ../../mod/editblock.php:167 -#: ../../mod/editpost.php:134 ../../mod/editlayout.php:162 -#: ../../mod/editwebpage.php:200 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorier (frivilligt, kommaseparerad lista)" - -#: ../../include/conversation.php:1176 ../../mod/editblock.php:153 -#: ../../mod/editpost.php:122 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:184 -msgid "Permission settings" -msgstr "Behörighetsinställningar" - -#: ../../include/conversation.php:1177 -msgid "permissions" -msgstr "behörighet" - -#: ../../include/conversation.php:1184 ../../mod/editblock.php:161 -#: ../../mod/editpost.php:129 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:193 -msgid "Public post" -msgstr "Offentligt inlägg" - -#: ../../include/conversation.php:1186 ../../mod/editblock.php:168 -#: ../../mod/editpost.php:135 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:201 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exempel: bob@example.com, mary@example.com" - -#: ../../include/conversation.php:1199 ../../mod/editblock.php:178 -#: ../../mod/editpost.php:146 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:210 ../../mod/mail.php:245 ../../mod/mail.php:359 -msgid "Set expiration date" -msgstr "Ange utgångsdatum" - -#: ../../include/conversation.php:1201 ../../include/ItemObject.php:641 -#: ../../mod/editpost.php:148 ../../mod/mail.php:247 ../../mod/mail.php:361 -msgid "Encrypt text" -msgstr "Kryptera text" - -#: ../../include/conversation.php:1203 ../../mod/events.php:585 -#: ../../mod/editpost.php:150 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1204 ../../mod/events.php:584 -#: ../../mod/fbrowser.php:82 ../../mod/fbrowser.php:117 -#: ../../mod/settings.php:578 ../../mod/settings.php:604 -#: ../../mod/editpost.php:151 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Avbryt" - -#: ../../include/conversation.php:1448 -msgid "Discover" -msgstr "Upptäck" - -#: ../../include/conversation.php:1451 -msgid "Imported public streams" -msgstr "Importerade offentliga strömmar" - -#: ../../include/conversation.php:1456 -msgid "Commented Order" -msgstr "Kommentarsordning" - -#: ../../include/conversation.php:1459 -msgid "Sort by Comment Date" -msgstr "Ordna efter kommentarsdatum" - -#: ../../include/conversation.php:1463 -msgid "Posted Order" -msgstr "Inläggsordning" - -#: ../../include/conversation.php:1466 -msgid "Sort by Post Date" -msgstr "Ordna efter när inlägget skrevs" - -#: ../../include/conversation.php:1474 -msgid "Posts that mention or involve you" -msgstr "Inlägg som nämner eller berör dig" - -#: ../../include/conversation.php:1480 ../../mod/connections.php:212 -#: ../../mod/connections.php:225 ../../mod/menu.php:80 -msgid "New" -msgstr "Nytt" - -#: ../../include/conversation.php:1483 -msgid "Activity Stream - by date" -msgstr "Aktivitetsström - efter datum" - -#: ../../include/conversation.php:1489 -msgid "Starred" -msgstr "Märkt" - -#: ../../include/conversation.php:1492 -msgid "Favourite Posts" -msgstr "Favoritinlägg" - -#: ../../include/conversation.php:1499 -msgid "Spam" -msgstr "Skräp" - -#: ../../include/conversation.php:1502 -msgid "Posts flagged as SPAM" -msgstr "Inlägg markerade som SKRÄP" - -#: ../../include/conversation.php:1542 ../../mod/admin.php:870 -msgid "Channel" -msgstr "Kanal" - -#: ../../include/conversation.php:1545 -msgid "Status Messages and Posts" -msgstr "Statusmeddelanden och inlägg" - -#: ../../include/conversation.php:1554 -msgid "About" -msgstr "Om" - -#: ../../include/conversation.php:1557 -msgid "Profile Details" -msgstr "Profildetaljer" - -#: ../../include/conversation.php:1575 -msgid "Files and Storage" -msgstr "Filer och lagring" - -#: ../../include/conversation.php:1585 ../../include/conversation.php:1588 -msgid "Chatrooms" -msgstr "Chattrum" - -#: ../../include/conversation.php:1601 -msgid "Saved Bookmarks" -msgstr "Sparade bokmärken" - -#: ../../include/conversation.php:1612 -msgid "Manage Webpages" -msgstr "Hantera webbsidor" - -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Spara i mapp" - -#: ../../include/ItemObject.php:142 ../../include/ItemObject.php:154 -#: ../../mod/photos.php:991 ../../mod/photos.php:1003 -msgid "View all" -msgstr "Visa alla" - -#: ../../include/ItemObject.php:151 ../../mod/photos.php:1000 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "ogillar detta" -msgstr[1] "ogillar detta" - -#: ../../include/ItemObject.php:179 -msgid "Add Star" -msgstr "Märk" - -#: ../../include/ItemObject.php:180 -msgid "Remove Star" -msgstr "Ta bort märkning" - -#: ../../include/ItemObject.php:181 -msgid "Toggle Star Status" -msgstr "Växla märkning" - -#: ../../include/ItemObject.php:185 -msgid "starred" -msgstr "märkt" - -#: ../../include/ItemObject.php:203 -msgid "Add Tag" -msgstr "Lägg till en tagg" - -#: ../../include/ItemObject.php:221 ../../mod/photos.php:943 -msgid "I like this (toggle)" -msgstr "Jag gillar det här (växla)" - -#: ../../include/ItemObject.php:222 ../../mod/photos.php:944 -msgid "I don't like this (toggle)" -msgstr "Jag gillar inte det här (växla)" - -#: ../../include/ItemObject.php:226 -msgid "Share This" -msgstr "Dela det här" - -#: ../../include/ItemObject.php:226 -msgid "share" -msgstr "dela" - -#: ../../include/ItemObject.php:243 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d kommentar" -msgstr[1] "%d kommentarer" - -#: ../../include/ItemObject.php:256 ../../include/ItemObject.php:257 -#, php-format -msgid "View %s's profile - %s" -msgstr "Visa %ss profil - %s" - -#: ../../include/ItemObject.php:260 -msgid "to" -msgstr "till" - -#: ../../include/ItemObject.php:261 -msgid "via" -msgstr "via" - -#: ../../include/ItemObject.php:262 -msgid "Wall-to-Wall" -msgstr "Vägg-till-vägg" - -#: ../../include/ItemObject.php:263 -msgid "via Wall-To-Wall:" -msgstr "via vägg-till-vägg" - -#: ../../include/ItemObject.php:299 -msgid "Save Bookmarks" -msgstr "Spara bokmärken" - -#: ../../include/ItemObject.php:300 -msgid "Add to Calendar" -msgstr "Lägg till kalendern" - -#: ../../include/ItemObject.php:309 -msgid "Mark all seen" -msgstr "Märk alla som lästa" - -#: ../../include/ItemObject.php:314 ../../mod/photos.php:1111 -msgctxt "noun" -msgid "Likes" -msgstr "gillar detta" - -#: ../../include/ItemObject.php:315 ../../mod/photos.php:1112 -msgctxt "noun" -msgid "Dislikes" -msgstr "ogillar detta" - -#: ../../include/ItemObject.php:345 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] visa alla" - -#: ../../include/ItemObject.php:626 ../../mod/photos.php:962 -#: ../../mod/photos.php:1072 -msgid "This is you" -msgstr "Det här är du" - -#: ../../include/ItemObject.php:628 ../../include/js_strings.php:6 -#: ../../mod/photos.php:964 ../../mod/photos.php:1074 -msgid "Comment" -msgstr "Kommentera" - -#: ../../include/ItemObject.php:629 ../../include/js_strings.php:22 -#: ../../mod/setup.php:313 ../../mod/setup.php:358 ../../mod/events.php:603 -#: ../../mod/chat.php:177 ../../mod/chat.php:211 ../../mod/settings.php:577 -#: ../../mod/settings.php:689 ../../mod/settings.php:718 -#: ../../mod/settings.php:741 ../../mod/settings.php:823 -#: ../../mod/settings.php:1019 ../../mod/photos.php:565 -#: ../../mod/photos.php:642 ../../mod/photos.php:925 ../../mod/photos.php:965 -#: ../../mod/photos.php:1075 ../../mod/poke.php:166 ../../mod/group.php:81 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/pdledit.php:58 ../../mod/fsuggest.php:108 -#: ../../mod/invite.php:142 ../../mod/filestorage.php:155 -#: ../../mod/import.php:504 ../../mod/locs.php:105 ../../mod/thing.php:284 -#: ../../mod/thing.php:327 ../../mod/connedit.php:653 ../../mod/admin.php:416 -#: ../../mod/admin.php:728 ../../mod/admin.php:864 ../../mod/admin.php:997 -#: ../../mod/admin.php:1196 ../../mod/admin.php:1283 ../../mod/connect.php:93 -#: ../../mod/appman.php:99 ../../mod/mood.php:135 ../../mod/mail.php:355 -#: ../../mod/xchan.php:11 ../../mod/rate.php:153 ../../mod/profiles.php:667 -#: ../../mod/poll.php:68 ../../view/theme/apw/php/config.php:256 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Skicka" - -#: ../../include/ItemObject.php:630 -msgid "Bold" -msgstr "Fet" - -#: ../../include/ItemObject.php:631 -msgid "Italic" -msgstr "Kursiv" - -#: ../../include/ItemObject.php:632 -msgid "Underline" -msgstr "Understruken" - -#: ../../include/ItemObject.php:633 -msgid "Quote" -msgstr "Citat" - -#: ../../include/ItemObject.php:634 -msgid "Code" -msgstr "Kod" - -#: ../../include/ItemObject.php:635 -msgid "Image" -msgstr "Bild" - -#: ../../include/ItemObject.php:636 -msgid "Link" -msgstr "Länk" - -#: ../../include/ItemObject.php:637 -msgid "Video" -msgstr "Video" - -#: ../../include/event.php:376 -msgid "This event has been added to your calendar." -msgstr "Händelsen har lagts till i din kalender." - -#: ../../include/message.php:18 -msgid "No recipient provided." -msgstr "Ingen mottagare angiven." - -#: ../../include/message.php:23 -msgid "[no subject]" -msgstr "[inget ämne]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kunde inte avgöra vem som är avsändare." - -#: ../../include/message.php:200 -msgid "Stored post could not be verified." -msgstr "Den sparade posten kunde inte verifieras." - -#: ../../include/attach.php:242 ../../include/attach.php:296 -msgid "Item was not found." -msgstr "Posten hittades inte." - -#: ../../include/attach.php:352 -msgid "No source file." -msgstr "Ingen källfil." - -#: ../../include/attach.php:369 -msgid "Cannot locate file to replace" -msgstr "Kan inte hitta fil att ersätta" - -#: ../../include/attach.php:387 -msgid "Cannot locate file to revise/update" -msgstr "Kan inte hitta fil att revidera/uppdatera" - -#: ../../include/attach.php:398 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Filen överskrider storleksbegränsningen %d" - -#: ../../include/attach.php:410 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor." - -#: ../../include/attach.php:493 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd." - -#: ../../include/attach.php:505 -msgid "Stored file could not be verified. Upload failed." -msgstr "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad." - -#: ../../include/attach.php:547 ../../include/attach.php:564 -msgid "Path not available." -msgstr "Sökväg inte tillgänglig." - -#: ../../include/attach.php:611 -msgid "Empty pathname" -msgstr "Tom sökväg" - -#: ../../include/attach.php:627 -msgid "duplicate filename or path" -msgstr "filnamn eller sökväg finns redan" - -#: ../../include/attach.php:651 -msgid "Path not found." -msgstr "Sökväg hittas inte." - -#: ../../include/attach.php:702 -msgid "mkdir failed." -msgstr "mkdir misslyckades." - -#: ../../include/attach.php:706 -msgid "database storage failed." -msgstr "databaslagring misslyckades." - -#: ../../include/enotify.php:41 -msgid "Hubzilla Notification" -msgstr "Hubzilla-meddelande" - -#: ../../include/enotify.php:42 -msgid "hubzilla" -msgstr "hubzilla" - -#: ../../include/enotify.php:44 -msgid "Thank You," -msgstr "Tack," - -#: ../../include/enotify.php:46 -#, php-format -msgid "%s Administrator" -msgstr "Administratören för %s" - -#: ../../include/enotify.php:81 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:85 -#, php-format -msgid "[Red:Notify] New mail received at %s" -msgstr "[Red:Meddelande] Nytt meddelande på %s" - -#: ../../include/enotify.php:87 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s skickade ett nytt privat meddelande till dig på %3$s." - -#: ../../include/enotify.php:88 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s skickade %2$s till dig." - -#: ../../include/enotify.php:88 -msgid "a private message" -msgstr "ett privat meddelande" - -#: ../../include/enotify.php:89 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Besök %s för att visa och/eller svara på dina privata meddelanden." - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterade [zrl=%3$s]ett %4$s[/zrl]" - -#: ../../include/enotify.php:152 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s kommenterade [zrl=%3$s]%4$ss %5$s[/zrl]" - -#: ../../include/enotify.php:161 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s kommenterade [zrl=%3$s]ditt %4$s[/zrl]" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Red:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Red:Meddelande] Kommentar till konversation #%1$d av %2$s" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s kommenterade en sak/konversation du har följt." - -#: ../../include/enotify.php:176 ../../include/enotify.php:191 -#: ../../include/enotify.php:217 ../../include/enotify.php:236 -#: ../../include/enotify.php:250 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Besök %s för att visa och/eller svara på konversationen." - -#: ../../include/enotify.php:182 -#, php-format -msgid "[Red:Notify] %s posted to your profile wall" -msgstr "[Red:Meddelande] %s postade till din profilvägg" - -#: ../../include/enotify.php:184 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s postade till din profilvägg på %3$s" - -#: ../../include/enotify.php:186 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s postade till [zrl=%3$s]din vägg[/zrl]" - -#: ../../include/enotify.php:210 -#, php-format -msgid "[Red:Notify] %s tagged you" -msgstr "[Red:Meddelande] %s taggade dig" - -#: ../../include/enotify.php:211 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s taggade dig på %3$s" - -#: ../../include/enotify.php:212 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]taggade dig[/zrl]." - -#: ../../include/enotify.php:225 -#, php-format -msgid "[Red:Notify] %1$s poked you" -msgstr "[Red:Meddelande] %1$s puffade dig" - -#: ../../include/enotify.php:226 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s puffade dig på %3$s" - -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]puffade dig[/zrl]." - -#: ../../include/enotify.php:243 -#, php-format -msgid "[Red:Notify] %s tagged your post" -msgstr "[Red:Meddelande] %s taggade ditt inlägg" - -#: ../../include/enotify.php:244 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s taggade ditt inlägg på %3$s" - -#: ../../include/enotify.php:245 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s taggade [zrl=%3$s]ditt inlägg[/zrl]" - -#: ../../include/enotify.php:257 -msgid "[Red:Notify] Introduction received" -msgstr "[Red:Meddelande] Presentation mottagen" - -#: ../../include/enotify.php:258 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, du har fått en ny kontaktförfrågan från '%2$s' på %3$s" - -#: ../../include/enotify.php:259 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, du har fått [zrl=%2$s]en ny kontaktförfrågan[/zrl] från %3$s." - -#: ../../include/enotify.php:263 ../../include/enotify.php:282 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Du kan besöka deras profil på %s" - -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Besök %s för att bevilja eller avslå kontaktförfrågan." - -#: ../../include/enotify.php:272 -msgid "[Red:Notify] Friend suggestion received" -msgstr "[Red:Meddelande] Vänförslag mottaget" - -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, du har fått ett vänförslag från '%2$s' på %3$s" - -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, du har fått [zrl=%2$s]ett vänförslag[/zrl] angående %3$s från %4$s." - -#: ../../include/enotify.php:280 -msgid "Name:" -msgstr "Namn:" - -#: ../../include/enotify.php:281 -msgid "Photo:" -msgstr "Foto:" - -#: ../../include/enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Besök %s för att bevilja eller avslå förslaget." - -#: ../../include/enotify.php:499 -msgid "[Red:Notify]" -msgstr "[Red:Notifiering]" - -#: ../../include/auth.php:130 -msgid "Logged out." -msgstr "Utloggad." - -#: ../../include/auth.php:271 -msgid "Failed authentication" -msgstr "Inloggning misslyckades" - -#: ../../include/auth.php:285 ../../mod/openid.php:190 -msgid "Login failed." -msgstr "Inloggning misslyckades." - -#: ../../include/network.php:613 -msgid "view full size" -msgstr "visa full storlek" - -#: ../../include/contact_widgets.php:14 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d inbjudan tillgänglig" -msgstr[1] "%d inbjudningar tillgängliga" - -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:420 -msgid "Advanced" -msgstr "Avancerat" - -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Hitta kanaler" - -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Ange namn eller intresse" - -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Ta kontakt/följ" - -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Exempel: Robert Morgenstein, Fiske" - -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:413 -#: ../../mod/directory.php:330 ../../mod/directory.php:335 -msgid "Find" -msgstr "Sök" - -#: ../../include/contact_widgets.php:27 ../../mod/suggest.php:59 -#: ../../mod/directory.php:334 -msgid "Channel Suggestions" -msgstr "Kanalförslag" - -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Slumpvald profil" - -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Bjud in vänner" - -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Avancerat exempel: name=fred and country=iceland" - -#: ../../include/contact_widgets.php:125 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemensam kontakt" -msgstr[1] "%d gemensamma kontakter" - -#: ../../include/contact_widgets.php:130 -msgid "show more" -msgstr "visa fler" - -#: ../../include/dir_fns.php:88 -msgid "Directory Options" -msgstr "Katalogalternativ" - -#: ../../include/dir_fns.php:89 -msgid "Alphabetic" -msgstr "Alfabetisk" - -#: ../../include/dir_fns.php:90 -msgid "Reverse Alphabetic" -msgstr "Omvänd alfabetisk" - -#: ../../include/dir_fns.php:91 -msgid "Newest to Oldest" -msgstr "Nyast till äldst" - -#: ../../include/dir_fns.php:92 -msgid "Oldest to Newest" -msgstr "Äldst till nyast" - -#: ../../include/dir_fns.php:93 -msgid "Public Forums Only" -msgstr "Endast offentliga forum" - -#: ../../include/dir_fns.php:95 -msgid "Sort" -msgstr "Ordning" - -#: ../../include/dir_fns.php:111 -msgid "Enable Safe Search" -msgstr "Aktivera säker sökning" - -#: ../../include/dir_fns.php:113 -msgid "Disable Safe Search" -msgstr "Avaktivera säker sökning" - -#: ../../include/dir_fns.php:115 -msgid "Safe Mode" -msgstr "Säkert läge" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "En borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn." - -#: ../../include/group.php:235 -msgid "Default privacy group for new contacts" -msgstr "Förvald integritetsgrupp för nya kontakter" - -#: ../../include/group.php:254 ../../mod/admin.php:740 -msgid "All Channels" -msgstr "Alla kanaler" - -#: ../../include/group.php:276 -msgid "edit" -msgstr "redigera" - -#: ../../include/group.php:298 -msgid "Collections" -msgstr "Kretsar" - -#: ../../include/group.php:299 -msgid "Edit collection" -msgstr "Redigera krets" - -#: ../../include/group.php:300 -msgid "Create a new collection" -msgstr "Skapa en ny krets" - -#: ../../include/group.php:301 -msgid "Channels not in any collection" -msgstr "Kanaler inte i någon krets" - -#: ../../include/items.php:382 ../../mod/subthread.php:49 -#: ../../mod/group.php:68 ../../mod/like.php:258 ../../mod/profperm.php:23 -#: ../../index.php:389 -msgid "Permission denied" -msgstr "Behörighet saknas" - -#: ../../include/items.php:979 ../../include/items.php:1024 -msgid "(Unknown)" -msgstr "(Okänt)" - -#: ../../include/items.php:1181 -msgid "Visible to anybody on the internet." -msgstr "Kan ses av vem som helst på Internet." - -#: ../../include/items.php:1183 -msgid "Visible to you only." -msgstr "Kan bara ses av dig." - -#: ../../include/items.php:1185 -msgid "Visible to anybody in this network." -msgstr "Kan ses av alla på det här nätverket." - -#: ../../include/items.php:1187 -msgid "Visible to anybody authenticated." -msgstr "Kan ses av alla inloggade." - -#: ../../include/items.php:1189 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Kan ses av alla på %s." - -#: ../../include/items.php:1191 -msgid "Visible to all connections." -msgstr "Kan ses av alla kontakter." - -#: ../../include/items.php:1193 -msgid "Visible to approved connections." -msgstr "Kan ses av godkända kontakter." - -#: ../../include/items.php:1195 -msgid "Visible to specific connections." -msgstr "Kan ses av valda kontakter." - -#: ../../include/items.php:3993 ../../mod/display.php:32 -#: ../../mod/viewsrc.php:20 ../../mod/filestorage.php:27 -#: ../../mod/thing.php:76 ../../mod/admin.php:168 ../../mod/admin.php:901 -#: ../../mod/admin.php:1104 -msgid "Item not found." -msgstr "Posten hittades inte." - -#: ../../include/items.php:4446 ../../mod/group.php:38 ../../mod/group.php:140 -msgid "Collection not found." -msgstr "Kretsen hittades inte." - -#: ../../include/items.php:4461 -msgid "Collection is empty." -msgstr "Kretsen är tom." - -#: ../../include/items.php:4468 -#, php-format -msgid "Collection: %s" -msgstr "Krets: %s" - -#: ../../include/items.php:4479 -#, php-format -msgid "Connection: %s" -msgstr "Kontakt: %s" - -#: ../../include/items.php:4482 -msgid "Connection not found." -msgstr "Kontakten hittades inte." - -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Ta bort den här posten?" - -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] visa färre" - -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] fäll ut" - -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] fäll ihop" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Lösenord för kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Lösenorden stämmer inte överens" - -#: ../../include/js_strings.php:13 ../../mod/photos.php:39 -msgid "everybody" -msgstr "alla" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Hemligt lösenord" - -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Lösenordsledtråd" - -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Observera: Rättigheter har ändrats men har ännu inte skickats in" - -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "stäng alla" - -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Inget nytt här" - -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Betygsätt den här kanalen (detta är offentligt)" - -#: ../../include/js_strings.php:20 ../../mod/rate.php:144 -msgid "Rating" -msgstr "Betyg" - -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Utlåtande (frivilligt)" - -#: ../../include/js_strings.php:24 -msgid "timeago.prefixAgo" -msgstr "för" - -#: ../../include/js_strings.php:25 -msgid "timeago.prefixFromNow" -msgstr "om" - -#: ../../include/js_strings.php:26 -msgid "ago" -msgstr "sedan" - -#: ../../include/js_strings.php:27 -msgid "from now" -msgstr " " - -#: ../../include/js_strings.php:28 -msgid "less than a minute" -msgstr "mindre än en minut" - -#: ../../include/js_strings.php:29 -msgid "about a minute" -msgstr "ungefär en minut" - -#: ../../include/js_strings.php:30 -#, php-format -msgid "%d minutes" -msgstr "%d minuter" - -#: ../../include/js_strings.php:31 -msgid "about an hour" -msgstr "ungefär en timme" - -#: ../../include/js_strings.php:32 -#, php-format -msgid "about %d hours" -msgstr "ungefär %d timmar" - -#: ../../include/js_strings.php:33 -msgid "a day" -msgstr "en dag" - -#: ../../include/js_strings.php:34 -#, php-format -msgid "%d days" -msgstr "%d dagar" - -#: ../../include/js_strings.php:35 -msgid "about a month" -msgstr "ungefär en månad" - -#: ../../include/js_strings.php:36 -#, php-format -msgid "%d months" -msgstr "%d månader" - -#: ../../include/js_strings.php:37 -msgid "about a year" -msgstr "ungefär ett år" - -#: ../../include/js_strings.php:38 -#, php-format -msgid "%d years" -msgstr "%d år" - -#: ../../include/js_strings.php:39 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:40 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/account.php:23 -msgid "Not a valid email address" -msgstr "Inte en giltig e-postadress" - -#: ../../include/account.php:25 -msgid "Your email domain is not among those allowed on this site" -msgstr "Din e-postdomän är inte bland de som tillåts på den här servern" - -#: ../../include/account.php:31 -msgid "Your email address is already registered at this site." -msgstr "Din e-postadress är redan registrerad på den här servern." - -#: ../../include/account.php:64 -msgid "An invitation is required." -msgstr "En inbjudan behövs." - -#: ../../include/account.php:68 -msgid "Invitation could not be verified." -msgstr "Inbjudningen kunde inte bekräftas." - -#: ../../include/account.php:119 -msgid "Please enter the required information." -msgstr "Ange den begärda informationen." - -#: ../../include/account.php:187 -msgid "Failed to store account information." -msgstr "Misslyckades att spara kontoinformation." - -#: ../../include/account.php:245 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registreringsbekräftelse för %s" - -#: ../../include/account.php:313 -#, php-format -msgid "Registration request at %s" -msgstr "Registreringsförfrågan på %s" - -#: ../../include/account.php:315 ../../include/account.php:342 -#: ../../include/account.php:399 -msgid "Administrator" -msgstr "Administratör" - -#: ../../include/account.php:337 -msgid "your registration password" -msgstr "ditt registreringslösenord" - -#: ../../include/account.php:340 ../../include/account.php:397 -#, php-format -msgid "Registration details for %s" -msgstr "Registreringsdetaljer för %s" - -#: ../../include/account.php:406 -msgid "Account approved." -msgstr "Konto godkänt." - -#: ../../include/account.php:440 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrering avslagen för %s" - -#: ../../include/account.php:486 -msgid "Account verified. Please login." -msgstr "Konto bekräftat. Du kan nu logga in." - -#: ../../include/account.php:674 ../../include/account.php:676 -msgid "Click here to upgrade." -msgstr "Klicka här för att uppgradera." - -#: ../../include/account.php:682 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Den här funktionen går utanför vad som anges i ditt avtal." - -#: ../../include/account.php:687 -msgid "This action is not available under your subscription plan." -msgstr "Den här funktionen är inte tillgänglig med ditt avtal." - -#: ../../include/datetime.php:35 -msgid "Miscellaneous" -msgstr "Övrigt" - -#: ../../include/datetime.php:113 -msgid "YYYY-MM-DD or MM-DD" -msgstr "ÅÅÅÅ-MM-DD eller MM-DD" - -#: ../../include/datetime.php:212 ../../mod/events.php:583 -#: ../../mod/appman.php:91 ../../mod/appman.php:92 -msgid "Required" -msgstr "Behövs" - -#: ../../include/datetime.php:231 -msgid "never" -msgstr "aldrig" - -#: ../../include/datetime.php:237 -msgid "less than a second ago" -msgstr "mindre än en sekund sedan" - -#: ../../include/datetime.php:240 -msgid "year" -msgstr "år" - -#: ../../include/datetime.php:240 -msgid "years" -msgstr "år" - -#: ../../include/datetime.php:241 -msgid "month" -msgstr "månad" - -#: ../../include/datetime.php:241 -msgid "months" -msgstr "månader" - -#: ../../include/datetime.php:242 -msgid "week" -msgstr "vecka" - -#: ../../include/datetime.php:242 -msgid "weeks" -msgstr "veckor" - -#: ../../include/datetime.php:243 -msgid "day" -msgstr "dag" - -#: ../../include/datetime.php:243 -msgid "days" -msgstr "dagar" - -#: ../../include/datetime.php:244 -msgid "hour" -msgstr "timme" - -#: ../../include/datetime.php:244 -msgid "hours" -msgstr "timmar" - -#: ../../include/datetime.php:245 -msgid "minute" -msgstr "minut" - -#: ../../include/datetime.php:245 -msgid "minutes" -msgstr "minuter" - -#: ../../include/datetime.php:246 -msgid "second" -msgstr "sekund" - -#: ../../include/datetime.php:246 -msgid "seconds" -msgstr "sekunder" - -#: ../../include/datetime.php:255 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s sedan" - -#: ../../include/datetime.php:463 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss födelsedag" - -#: ../../include/datetime.php:464 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Grattis på födelsedagen %1$s" - -#: ../../include/chat.php:10 -msgid "Missing room name" -msgstr "Rumsnamn saknas" - -#: ../../include/chat.php:19 -msgid "Duplicate room name" -msgstr "Rumsnamnet finns redan" - -#: ../../include/chat.php:68 ../../include/chat.php:76 -msgid "Invalid room specifier." -msgstr "Ogiltig rumsbeskrivning." - -#: ../../include/chat.php:105 -msgid "Room not found." -msgstr "Rummet hittades inte." - -#: ../../include/chat.php:126 -msgid "Room is full" -msgstr "Rummet är fullt" - -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanalen är blockerad på den här servern." - -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Kanalplats saknas." - -#: ../../include/follow.php:83 -msgid "Response from remote channel was incomplete." -msgstr "Svar från den andra kanalen var ofullständigt." - -#: ../../include/follow.php:100 -msgid "Channel was deleted and no longer exists." -msgstr "Kanalen har tagits bort och finns inte längre." - -#: ../../include/follow.php:135 ../../include/follow.php:197 -msgid "Protocol disabled." -msgstr "Protokoll inaktiverat." - -#: ../../include/follow.php:170 -msgid "Channel discovery failed." -msgstr "Kanalsökning misslyckades." - -#: ../../include/follow.php:186 -msgid "local account not found." -msgstr "hittade inte lokalt konto." - -#: ../../include/follow.php:215 -msgid "Cannot connect to yourself." -msgstr "Du kan inte kontakta dig själv." - -#: ../../include/identity.php:31 ../../mod/item.php:1071 -msgid "Unable to obtain identity information from database" -msgstr "Kunde inte hämta från databasen" - -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Tomt namn" - -#: ../../include/identity.php:68 -msgid "Name too long" -msgstr "För långt namn" - -#: ../../include/identity.php:169 -msgid "No account identifier" -msgstr "Ingen kontoidentifierare" - -#: ../../include/identity.php:182 -msgid "Nickname is required." -msgstr "Smeknamn måste anges." - -#: ../../include/identity.php:196 -msgid "Reserved nickname. Please choose another." -msgstr "Reserverat smeknamn. Välj ett annat." - -#: ../../include/identity.php:201 ../../include/dimport.php:34 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern." - -#: ../../include/identity.php:283 -msgid "Unable to retrieve created identity" -msgstr "Kunde inte hämta den skapade identiteten" - -#: ../../include/identity.php:343 -msgid "Default Profile" -msgstr "Standardprofil" - -#: ../../include/identity.php:643 -msgid "Requested channel is not available." -msgstr "Den begärda kanalen är inte tillgänglig" - -#: ../../include/identity.php:691 ../../mod/achievements.php:11 -#: ../../mod/blocks.php:29 ../../mod/profile.php:16 ../../mod/webpages.php:29 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:28 -#: ../../mod/editwebpage.php:28 ../../mod/hcard.php:8 -#: ../../mod/filestorage.php:53 ../../mod/layouts.php:29 -#: ../../mod/connect.php:13 -msgid "Requested profile is not available." -msgstr "Begärd profil är inte tillgänglig." - -#: ../../include/identity.php:854 ../../mod/profiles.php:774 -msgid "Change profile photo" -msgstr "Bytprofilfoto" - -#: ../../include/identity.php:861 -msgid "Profiles" -msgstr "Profiler" - -#: ../../include/identity.php:861 -msgid "Manage/edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/identity.php:862 ../../mod/profiles.php:775 -msgid "Create New Profile" -msgstr "Skapa ny profil" - -#: ../../include/identity.php:865 ../../include/nav.php:95 -msgid "Edit Profile" -msgstr "Redigera profil" - -#: ../../include/identity.php:878 ../../mod/profiles.php:786 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../include/identity.php:881 -msgid "visible to everybody" -msgstr "synlig för alla" - -#: ../../include/identity.php:882 ../../mod/profiles.php:669 -#: ../../mod/profiles.php:790 -msgid "Edit visibility" -msgstr "Redigera synlighet" - -#: ../../include/identity.php:898 ../../include/identity.php:1139 -msgid "Gender:" -msgstr "Kön:" - -#: ../../include/identity.php:899 ../../include/identity.php:1183 -msgid "Status:" -msgstr "Status:" - -#: ../../include/identity.php:900 ../../include/identity.php:1194 -msgid "Homepage:" -msgstr "Hemsida:" - -#: ../../include/identity.php:901 -msgid "Online Now" -msgstr "Online nu" - -#: ../../include/identity.php:983 ../../include/identity.php:1063 -#: ../../mod/ping.php:329 -msgid "g A l F d" -msgstr "l j F \\k\\l G" - -#: ../../include/identity.php:984 ../../include/identity.php:1064 -msgid "F d" -msgstr "j F" - -#: ../../include/identity.php:1029 ../../include/identity.php:1104 -#: ../../mod/ping.php:351 -msgid "[today]" -msgstr "[i dag]" - -#: ../../include/identity.php:1041 -msgid "Birthday Reminders" -msgstr "Födelsedagspåminnelser" - -#: ../../include/identity.php:1042 -msgid "Birthdays this week:" -msgstr "Födelsedagar den här veckan:" - -#: ../../include/identity.php:1097 -msgid "[No description]" -msgstr "[Ingen beskrivning]" - -#: ../../include/identity.php:1115 -msgid "Event Reminders" -msgstr "Händelsepåminnelser" - -#: ../../include/identity.php:1116 -msgid "Events this week:" -msgstr "Händelser den här veckan:" - -#: ../../include/identity.php:1137 ../../mod/settings.php:1025 -msgid "Full Name:" -msgstr "Fullständigt namn:" - -#: ../../include/identity.php:1144 -msgid "Like this channel" -msgstr "Gilla den här kanalen" - -#: ../../include/identity.php:1168 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/identity.php:1169 -msgid "j F" -msgstr "j F" - -#: ../../include/identity.php:1176 -msgid "Birthday:" -msgstr "Födelsedag:" - -#: ../../include/identity.php:1180 -msgid "Age:" -msgstr "Ålder:" - -#: ../../include/identity.php:1189 -#, php-format -msgid "for %1$d %2$s" -msgstr "i %1$d %2$s" - -#: ../../include/identity.php:1192 ../../mod/profiles.php:691 -msgid "Sexual Preference:" -msgstr "Sexuell preferens:" - -#: ../../include/identity.php:1196 ../../mod/profiles.php:693 -msgid "Hometown:" -msgstr "Hemort:" - -#: ../../include/identity.php:1198 -msgid "Tags:" -msgstr "Taggar:" - -#: ../../include/identity.php:1200 ../../mod/profiles.php:694 -msgid "Political Views:" -msgstr "Politisk åskådning:" - -#: ../../include/identity.php:1202 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/identity.php:1204 -msgid "About:" -msgstr "Om:" - -#: ../../include/identity.php:1206 -msgid "Hobbies/Interests:" -msgstr "Fritidssysselsättning/intressen:" - -#: ../../include/identity.php:1208 ../../mod/profiles.php:697 -msgid "Likes:" -msgstr "Gillar:" - -#: ../../include/identity.php:1210 ../../mod/profiles.php:698 -msgid "Dislikes:" -msgstr "Ogillar:" - -#: ../../include/identity.php:1212 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation och sociala nätverk:" - -#: ../../include/identity.php:1214 -msgid "My other channels:" -msgstr "Mina andra kanaler:" - -#: ../../include/identity.php:1216 -msgid "Musical interests:" -msgstr "Musikintressen:" - -#: ../../include/identity.php:1218 -msgid "Books, literature:" -msgstr "Böcker, litteratur:" - -#: ../../include/identity.php:1220 -msgid "Television:" -msgstr "Tv:" - -#: ../../include/identity.php:1222 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/dans/kultur/underhållning:" - -#: ../../include/identity.php:1224 -msgid "Love/Romance:" -msgstr "Kärlek/romantik:" - -#: ../../include/identity.php:1226 -msgid "Work/employment:" -msgstr "Arbete/sysselsättning:" - -#: ../../include/identity.php:1228 -msgid "School/education:" -msgstr "Skola/utbildning:" - -#: ../../include/identity.php:1248 -msgid "Like this thing" -msgstr "Gilla den här saken" - -#: ../../include/nav.php:87 ../../include/nav.php:120 ../../boot.php:1549 -msgid "Logout" -msgstr "Logga ut" - -#: ../../include/nav.php:87 ../../include/nav.php:120 -msgid "End this session" -msgstr "Avsluta sessionen" - -#: ../../include/nav.php:90 ../../include/nav.php:151 -msgid "Home" -msgstr "Hem" - -#: ../../include/nav.php:90 -msgid "Your posts and conversations" -msgstr "Dina inlägg och konversationer" - -#: ../../include/nav.php:91 -msgid "Your profile page" -msgstr "Din profilsida" - -#: ../../include/nav.php:93 -msgid "Edit Profiles" -msgstr "Redigera profiler" - -#: ../../include/nav.php:93 -msgid "Manage/Edit profiles" -msgstr "Hantera/redigera profiler" - -#: ../../include/nav.php:95 -msgid "Edit your profile" -msgstr "Redigera din profil" - -#: ../../include/nav.php:97 -msgid "Your photos" -msgstr "Dina foton" - -#: ../../include/nav.php:98 -msgid "Your files" -msgstr "Dina filer" - -#: ../../include/nav.php:103 -msgid "Your chatrooms" -msgstr "Dina chattrum" - -#: ../../include/nav.php:109 -msgid "Your bookmarks" -msgstr "Dina bokmärken" - -#: ../../include/nav.php:113 -msgid "Your webpages" -msgstr "Dina webbsidor" - -#: ../../include/nav.php:117 -msgid "Sign in" -msgstr "Logga in" - -#: ../../include/nav.php:134 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klicka för att logga ut" - -#: ../../include/nav.php:137 -msgid "Remote authentication" -msgstr "Fjärrinloggning" - -#: ../../include/nav.php:137 -msgid "Click to authenticate to your home hub" -msgstr "Klicka för att autentisera mot din hemmahubb" - -#: ../../include/nav.php:151 -msgid "Home Page" -msgstr "Hemsida" - -#: ../../include/nav.php:155 ../../mod/register.php:224 ../../boot.php:1526 -msgid "Register" -msgstr "Skapa konto" - -#: ../../include/nav.php:155 -msgid "Create an account" -msgstr "Skapa ett konto" - -#: ../../include/nav.php:160 -msgid "Help and documentation" -msgstr "Hjälp och dokumentation" - -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Applikationer, verktyg, länkar, spel" - -#: ../../include/nav.php:165 -msgid "Search site content" -msgstr "Sök innehåll" - -#: ../../include/nav.php:168 -msgid "Channel Directory" -msgstr "Kanalkatalog" - -#: ../../include/nav.php:182 -msgid "Your matrix" -msgstr "Din matris" - -#: ../../include/nav.php:183 -msgid "Mark all matrix notifications seen" -msgstr "Märk alla matrisnotifieringar som lästa" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Kanalhem" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Märk alla kanalnotifieringar som lästa" - -#: ../../include/nav.php:189 ../../mod/connections.php:407 -msgid "Connections" -msgstr "Kontakter" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Meddelanden" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Notifieringar" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Se alla notifieringar" - -#: ../../include/nav.php:194 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Märk alla systemnotifieringar som lästa" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Privat meddelande" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Se alla privata meddelanden" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Märk alla privata meddelanden som lästa" - -#: ../../include/nav.php:199 -msgid "Inbox" -msgstr "Inkorg" - -#: ../../include/nav.php:200 -msgid "Outbox" -msgstr "Utkorg" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Kalender" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Se alla händelser" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Märk alla händelser som lästa" - -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Hantera dina kanaler" - -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Konto-/kanalinställningar" - -#: ../../include/nav.php:218 ../../mod/admin.php:123 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Serverinställning och -konfiguration" - -#: ../../include/nav.php:254 -msgid "@name, #tag, content" -msgstr "@namn, #tagg, innehåll" - -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Vänta..." - -#: ../../include/Contact.php:124 -msgid "New window" -msgstr "Nytt fönster" - -#: ../../include/Contact.php:125 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik" - -#: ../../include/Contact.php:215 ../../mod/admin.php:651 -#, php-format -msgid "User '%s' deleted" -msgstr "Användare '%s' borttagen" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Male" -msgstr "Man" - -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -msgid "Female" -msgstr "Kvinna" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Just nu man" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Just nu kvinna" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Mestadels man" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Mestadels kvinna" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transperson" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Könlös" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Ospecificerat" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Obestämt" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Män" - -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Kvinnor" - -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Bög" - -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisk" - -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Ingen preferens" - -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexuell" - -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Avhållsam" - -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Oskuld" - -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Avvikande" - -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisch" - -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Massor" - -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Ickesexuell" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Singel" - -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Ensam" - -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Ledig" - -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Upptagen" - -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Förälskad" - -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Förtrollad" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Dejtar" - -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Otrogen" - -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Sexmissbrukare" - -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Kompisförhållande" - -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Vardaglig" - -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Förlovad" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Gift" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Inbillat gift" - -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Bor ihop" - -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Sambo" - -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Lycklig" - -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Letar inte" - -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Bedragen" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separerad" - -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Instabilt" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Skild" - -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Inbillat skild" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Änka" - -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Osäkert" - -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Det är komplicerat" - -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Bryr mig inte" - -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Fråga mig" - -#: ../../include/zot.php:673 -msgid "Invalid data packet" -msgstr "Ogiltigt datapaket" - -#: ../../include/zot.php:689 -msgid "Unable to verify channel signature" -msgstr "Kunde inte bekräfta kanalsignatur" - -#: ../../include/zot.php:1933 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kunde inte bekräfta signatur för servern %s" - -#: ../../mod/setup.php:166 -msgid "Hubzilla Server - Setup" -msgstr "Hubzilla-server - inställningar" - -#: ../../mod/setup.php:172 -msgid "Could not connect to database." -msgstr "Kunde inte ansluta till databasen." - -#: ../../mod/setup.php:176 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS." - -#: ../../mod/setup.php:183 -msgid "Could not create table." -msgstr "Kunde inte skapa tabell." - -#: ../../mod/setup.php:189 -msgid "Your site database has been installed." -msgstr "Din serverdatabas har installerats." - -#: ../../mod/setup.php:194 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient." - -#: ../../mod/setup.php:195 ../../mod/setup.php:264 ../../mod/setup.php:662 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Se filen \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:261 -msgid "System check" -msgstr "Systemkontroll" - -#: ../../mod/setup.php:265 ../../mod/events.php:449 ../../mod/photos.php:836 -msgid "Next" -msgstr "Nästa" - -#: ../../mod/setup.php:266 -msgid "Check again" -msgstr "Kontrollera igen" - -#: ../../mod/setup.php:289 -msgid "Database connection" -msgstr "Databasanslutning" - -#: ../../mod/setup.php:290 -msgid "" -"In order to install Hubzilla we need to know how to connect to your " -"database." -msgstr "För att kunna installera Hubzilla behöver vi veta hur databasen ska anslutas." - -#: ../../mod/setup.php:291 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna." - -#: ../../mod/setup.php:292 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter." - -#: ../../mod/setup.php:296 -msgid "Database Server Name" -msgstr "Databasserver" - -#: ../../mod/setup.php:296 -msgid "Default is localhost" -msgstr "Standard är localhost" - -#: ../../mod/setup.php:297 -msgid "Database Port" -msgstr "Databasport" - -#: ../../mod/setup.php:297 -msgid "Communication port number - use 0 for default" -msgstr "Kommunikationsportnummer - använd 0 för standardinställning" - -#: ../../mod/setup.php:298 -msgid "Database Login Name" -msgstr "Loginnamn till databas" - -#: ../../mod/setup.php:299 -msgid "Database Login Password" -msgstr "Lösenord till databas" - -#: ../../mod/setup.php:300 -msgid "Database Name" -msgstr "Databasnamn" - -#: ../../mod/setup.php:301 -msgid "Database Type" -msgstr "Databastyp" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "Site administrator email address" -msgstr "Serveradministratörens e-postadress" - -#: ../../mod/setup.php:303 ../../mod/setup.php:347 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas." - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Website URL" -msgstr "Webbplatsens URL" - -#: ../../mod/setup.php:304 ../../mod/setup.php:349 -msgid "Please use SSL (https) URL if available." -msgstr "Ange en URL med SSL (https) om tillgängligt" - -#: ../../mod/setup.php:307 ../../mod/setup.php:352 -msgid "Please select a default timezone for your website" -msgstr "Välj en standardtidszon för din webbplats" - -#: ../../mod/setup.php:335 -msgid "Site settings" -msgstr "Serverinställningar" - -#: ../../mod/setup.php:395 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH." - -#: ../../mod/setup.php:396 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron." - -#: ../../mod/setup.php:400 -msgid "PHP executable path" -msgstr "Sökväg till PHP-programmet" - -#: ../../mod/setup.php:400 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen." - -#: ../../mod/setup.php:405 -msgid "Command line PHP" -msgstr "Kommandorads-PHP" - -#: ../../mod/setup.php:414 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat." - -#: ../../mod/setup.php:415 -msgid "This is required for message delivery to work." -msgstr "Det här behövs för att meddelandeleverans ska fungera." - -#: ../../mod/setup.php:417 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: ../../mod/setup.php:438 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar" - -#: ../../mod/setup.php:439 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/setup.php:441 -msgid "Generate encryption keys" -msgstr "Generera kryptonycklar" - -#: ../../mod/setup.php:448 -msgid "libCurl PHP module" -msgstr "PHP-modulen libCurl" - -#: ../../mod/setup.php:449 -msgid "GD graphics PHP module" -msgstr "PHP-modulen GD graphics" - -#: ../../mod/setup.php:450 -msgid "OpenSSL PHP module" -msgstr "PHP-modulen OpenSSL" - -#: ../../mod/setup.php:451 -msgid "mysqli or postgres PHP module" -msgstr "PHP-modulen mysqli eller postgres" - -#: ../../mod/setup.php:452 -msgid "mb_string PHP module" -msgstr "PHP-modulen mb_string" - -#: ../../mod/setup.php:453 -msgid "mcrypt PHP module" -msgstr "PHP-modulen mcrypt" - -#: ../../mod/setup.php:458 ../../mod/setup.php:460 -msgid "Apache mod_rewrite module" -msgstr "Apache-modulen mod_rewrite" - -#: ../../mod/setup.php:458 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad." - -#: ../../mod/setup.php:464 ../../mod/setup.php:467 -msgid "proc_open" -msgstr "proc_open" - -#: ../../mod/setup.php:464 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini" - -#: ../../mod/setup.php:472 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fel: PHP-modulen libCURL krävs men är inte installerad." - -#: ../../mod/setup.php:476 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad." - -#: ../../mod/setup.php:480 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fel: PHP-modulen openssl krävs men är inte installerad." - -#: ../../mod/setup.php:484 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Fel: en av PHP-modulerna mysqli eller postgres krävs men är inte installerad." - -#: ../../mod/setup.php:488 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fel: PHP-modulen mb_string krävs men är inte installerad." - -#: ../../mod/setup.php:492 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fel: PHP-modulen mcrypt krävs men är inte installerad." - -#: ../../mod/setup.php:508 -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 "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det." - -#: ../../mod/setup.php:509 -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 "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan." - -#: ../../mod/setup.php:510 -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 "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog." - -#: ../../mod/setup.php:511 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"." - -#: ../../mod/setup.php:514 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php är skrivbar" - -#: ../../mod/setup.php:524 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen." - -#: ../../mod/setup.php:525 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "För att spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter till katalogen %s under Reds toppkatalog." - -#: ../../mod/setup.php:526 ../../mod/setup.php:544 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen." - -#: ../../mod/setup.php:527 -#, 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 "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättighet endast för %s - inte för mallfilerna (.tpl) som finns där." - -#: ../../mod/setup.php:530 -#, php-format -msgid "%s is writable" -msgstr "%s är skrivbar" - -#: ../../mod/setup.php:543 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog." - -#: ../../mod/setup.php:547 -msgid "store is writable" -msgstr "store är skrivbar" - -#: ../../mod/setup.php:577 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern." - -#: ../../mod/setup.php:578 -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 "Om du har https-åtkomst till din webbplats eller tillåter anslutningar till TCP-port 443 (https-porten) MÅSTE du använda ett certifikat som kan verifieras av webbläsare. Du FÅR INTE använda självsignerade certifikat!" - -#: ../../mod/setup.php:579 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Restriktionen finns eftersom offentliga inlägg från dig kan innehålla till exempel referenser till bilder på din egen hubb." - -#: ../../mod/setup.php:580 -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 "Om ditt certifikat inte känns igen kommer medlemmar på andra webbplatser (som själv kan ha giltiga certifikat) att få en varning på sin egen webbplats om säkerhetsproblem." - -#: ../../mod/setup.php:581 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Detta kan orsaka problem med användbarheten (inte bara på din egen server) så vi måste trycka på det här kravet." - -#: ../../mod/setup.php:582 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Det finns leverantörer som utfärdar gratis certifikat som känns igen av webbläsare." - -#: ../../mod/setup.php:584 -msgid "SSL certificate validation" -msgstr "SSL-certifikatvalidering" - -#: ../../mod/setup.php:590 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite i .htaccess fungerar inte. Kolla din serverkonfiguration. Test: " - -#: ../../mod/setup.php:592 -msgid "Url rewrite is working" -msgstr "URL rewrite fungerar" - -#: ../../mod/setup.php:602 -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 "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot." - -#: ../../mod/setup.php:625 -msgid "Errors encountered creating database tables." -msgstr "Fel inträffade när databastabeller skulle skapas." - -#: ../../mod/setup.php:660 -msgid "

What next

" -msgstr "

Nästa steg

" - -#: ../../mod/setup.php:661 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]" - -#: ../../mod/register.php:44 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon." - -#: ../../mod/register.php:50 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades." - -#: ../../mod/register.php:84 -msgid "Passwords do not match." -msgstr "Lösenorden stämmer inte överens." - -#: ../../mod/register.php:117 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner." - -#: ../../mod/register.php:123 -msgid "Your registration is pending approval by the site owner." -msgstr "Din registrering väntar på att bli godkänd av serverägaren." - -#: ../../mod/register.php:126 -msgid "Your registration can not be processed." -msgstr "Din registrering kan inte behandlas." - -#: ../../mod/register.php:163 -msgid "Registration on this site/hub is by approval only." -msgstr "Registrering på den här servern/hubben måste godkännas." - -#: ../../mod/register.php:164 -msgid "Register at another affiliated site/hub" -msgstr "Skapa konto på en annan ansluten server/hubb" - -#: ../../mod/register.php:174 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon." - -#: ../../mod/register.php:185 -msgid "Terms of Service" -msgstr "användarvillkor" - -#: ../../mod/register.php:191 -#, php-format -msgid "I accept the %s for this website" -msgstr "Jag accepterar den här webbplatsens %s" - -#: ../../mod/register.php:193 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Jag är över 13 år och accepterar den här webbplatsens %s" - -#: ../../mod/register.php:207 ../../mod/admin.php:417 -msgid "Registration" -msgstr "Registrering" - -#: ../../mod/register.php:212 -msgid "Membership on this site is by invitation only." -msgstr "Medlemskap på den här servern kan endast fås genom inbjudan." - -#: ../../mod/register.php:213 -msgid "Please enter your invitation code" -msgstr "Ange din inbjudningskod" - -#: ../../mod/register.php:216 -msgid "Your email address" -msgstr "Din e-postadress" - -#: ../../mod/register.php:217 -msgid "Choose a password" -msgstr "Välj ett lösenord" - -#: ../../mod/register.php:218 -msgid "Please re-enter your password" -msgstr "Ange lösenordet igen" - -#: ../../mod/network.php:84 -msgid "No such group" -msgstr "Ingen sådan grupp" - -#: ../../mod/network.php:122 -msgid "Search Results For:" -msgstr "Sökresultat för:" - -#: ../../mod/network.php:176 -msgid "Collection is empty" -msgstr "Kretsen är tom" - -#: ../../mod/network.php:184 -msgid "Collection: " -msgstr "Krets: " - -#: ../../mod/network.php:197 -msgid "Connection: " -msgstr "Kontakt:" - -#: ../../mod/network.php:200 -msgid "Invalid connection." -msgstr "Ogiltig kontakt." - -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Lite text om vad man kan göra som ny här" - -#: ../../mod/home.php:48 -msgid "Hubzilla - "The Network"" -msgstr "Hubzilla - "Nätverket"" - -#: ../../mod/home.php:101 -#, php-format -msgid "Welcome to %s" -msgstr "Välkommen till %s" - -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar." - -#: ../../mod/uexport.php:33 ../../mod/uexport.php:34 -msgid "Export Channel" -msgstr "Exportera kanal" - -#: ../../mod/uexport.php:35 -msgid "" -"Export your basic channel information to a small 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 hub, but\tdoes not contain your " -"content." -msgstr "Exportera kanalens basinformation till en liten fil. Denna fungerar som en säkerhetskopia av dina anslutningar, behörigheter, profil, och grundläggande data, och kan användas för att importera dina data till en ny hubb, men tar inte med ditt innehåll." - -#: ../../mod/uexport.php:36 -msgid "Export Content" -msgstr "Exportera innehåll" - -#: ../../mod/uexport.php:37 -msgid "" -"Export your channel information and all the content to a JSON backup. This " -"backs up all of your connections, permissions, profile data and all of your " -"content, but is generally not suitable for importing a channel to a new hub " -"as this file may be VERY large. Please be patient - it may take several " -"minutes for this download to begin." -msgstr "Exportera din kanalinformation och allt innehåll till en säkerhetskopia i JSON-format. Detta kopierar alla dina anslutningar, behörigheter, profildata och allt ditt innehåll, men är generellt inte lämpligt för att importera en kanal till en ny hubb, eftersom filen kan vara VÄLDIGT stor. Ha tålamod - det kan ta flera minuter innan nedladdningen börjar." - -#: ../../mod/post.php:229 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen." - -#: ../../mod/post.php:261 ../../mod/openid.php:72 ../../mod/openid.php:180 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Välkommen %s. Fjärrinloggning lyckades." - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Tillåt anslutning av applikation" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Återgå till din applikation och ange den här säkerhetskoden:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Logga in för att fortsätta." - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?" - -#: ../../mod/api.php:105 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:396 -msgid "Yes" -msgstr "Ja" - -#: ../../mod/api.php:106 ../../mod/settings.php:955 ../../mod/settings.php:960 -#: ../../mod/settings.php:1045 ../../mod/admin.php:394 -msgid "No" -msgstr "Nej" - -#: ../../mod/events.php:85 -msgid "Event can not end before it has started." -msgstr "Händelser kan inte sluta innan de börjat." - -#: ../../mod/events.php:90 -msgid "Event title and start time are required." -msgstr "Händelsen behöver titel och starttid." - -#: ../../mod/events.php:104 -msgid "Event not found." -msgstr "Händelsen hittades inte." - -#: ../../mod/events.php:373 -msgid "l, F j" -msgstr "l, j F" - -#: ../../mod/events.php:395 -msgid "Edit event" -msgstr "Redigera händelse" - -#: ../../mod/events.php:447 -msgid "Create New Event" -msgstr "Skapa ny händelse" - -#: ../../mod/events.php:448 ../../mod/photos.php:827 -msgid "Previous" -msgstr "Föregående" - -#: ../../mod/events.php:450 -msgid "Export" -msgstr "Exportera" - -#: ../../mod/events.php:575 -msgid "Event details" -msgstr "Detaljer för händelse" - -#: ../../mod/events.php:576 -msgid "Starting date and Title are required." -msgstr "Startdatum och titel är obligatoriska." - -#: ../../mod/events.php:578 -msgid "Categories (comma-separated list)" -msgstr "Kategorier (kommaseparerad lista)" - -#: ../../mod/events.php:580 -msgid "Event Starts:" -msgstr "Händelsen börjar:" - -#: ../../mod/events.php:587 -msgid "Finish date/time is not known or not relevant" -msgstr "Slutdatum/tid är okänt eller inte relevant" - -#: ../../mod/events.php:589 -msgid "Event Finishes:" -msgstr "Händelsen slutar:" - -#: ../../mod/events.php:591 ../../mod/events.php:592 -msgid "Adjust for viewer timezone" -msgstr "Justera för betraktarens tidszon" - -#: ../../mod/events.php:593 -msgid "Description:" -msgstr "Beskrivning:" - -#: ../../mod/events.php:597 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:599 -msgid "Share this event" -msgstr "Dela den här händelsen" - -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Post inte tillgänglig." - -#: ../../mod/probe.php:23 ../../mod/probe.php:29 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Hämtning av URL returnerade fel: %1$s" - -#: ../../mod/blocks.php:99 -msgid "Block Name" -msgstr "Blocknamn" - -#: ../../mod/block.php:27 ../../mod/page.php:33 -msgid "Invalid item." -msgstr "Ogiltig post." - -#: ../../mod/block.php:39 ../../mod/wall_upload.php:29 ../../mod/page.php:45 -msgid "Channel not found." -msgstr "Kanalen hittas inte." - -#: ../../mod/block.php:75 ../../mod/display.php:102 ../../mod/help.php:79 -#: ../../mod/page.php:81 ../../index.php:241 -msgid "Page not found." -msgstr "Sidan hittas inte." - -#: ../../mod/mitem.php:24 ../../mod/menu.php:108 -msgid "Menu not found." -msgstr "Menyn hittades inte." - -#: ../../mod/mitem.php:67 -msgid "Menu element updated." -msgstr "Menyval uppdaterat." - -#: ../../mod/mitem.php:71 -msgid "Unable to update menu element." -msgstr "Kunde inte uppdatera menyval." - -#: ../../mod/mitem.php:77 -msgid "Menu element added." -msgstr "Menyval tillagt." - -#: ../../mod/mitem.php:81 -msgid "Unable to add menu element." -msgstr "Kunde inte lägga till menyval." - -#: ../../mod/mitem.php:111 ../../mod/menu.php:136 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Hittades inte." - -#: ../../mod/mitem.php:127 -msgid "Manage Menu Elements" -msgstr "Hantera menyval" - -#: ../../mod/mitem.php:130 -msgid "Edit menu" -msgstr "Redigera meny" - -#: ../../mod/mitem.php:133 -msgid "Edit element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:134 -msgid "Drop element" -msgstr "Ta bort menyval" - -#: ../../mod/mitem.php:135 -msgid "New element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:136 -msgid "Edit this menu container" -msgstr "Redigera den här menysamlaren" - -#: ../../mod/mitem.php:137 -msgid "Add menu element" -msgstr "Lägg till menyval" - -#: ../../mod/mitem.php:138 -msgid "Delete this menu item" -msgstr "Ta bort det här menyvalet" - -#: ../../mod/mitem.php:139 -msgid "Edit this menu item" -msgstr "Redigera det här menyvalet" - -#: ../../mod/mitem.php:158 -msgid "New Menu Element" -msgstr "Nytt menyval" - -#: ../../mod/mitem.php:160 ../../mod/mitem.php:203 -msgid "Menu Item Permissions" -msgstr "Behörighet för menyval" - -#: ../../mod/mitem.php:161 ../../mod/mitem.php:204 ../../mod/settings.php:1052 -msgid "(click to open/close)" -msgstr "(klicka för att öppna/stänga)" - -#: ../../mod/mitem.php:163 ../../mod/mitem.php:207 -msgid "Link text" -msgstr "Länktext" - -#: ../../mod/mitem.php:164 ../../mod/mitem.php:208 -msgid "URL of link" -msgstr "Länkens URL" - -#: ../../mod/mitem.php:165 ../../mod/mitem.php:209 -msgid "Use Hubzilla magic-auth if available" -msgstr "Använd Hubzilla magic-auth om tillgängligt" - -#: ../../mod/mitem.php:166 ../../mod/mitem.php:210 -msgid "Open link in new window" -msgstr "Öppna länk i nytt fönster" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Order in list" -msgstr "Ordningstal i listan" - -#: ../../mod/mitem.php:168 ../../mod/mitem.php:212 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Större tal sjunker till botten av listan" - -#: ../../mod/mitem.php:181 -msgid "Menu item not found." -msgstr "Menyval hittas inte." - -#: ../../mod/mitem.php:190 -msgid "Menu item deleted." -msgstr "Menyval borttaget." - -#: ../../mod/mitem.php:192 -msgid "Menu item could not be deleted." -msgstr "Menyval kunde inte tas bort." - -#: ../../mod/mitem.php:201 -msgid "Edit Menu Element" -msgstr "Redigera menyval" - -#: ../../mod/mitem.php:213 ../../mod/menu.php:130 -msgid "Modify" -msgstr "Ändra" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s följer %2$ss %3$s" - -#: ../../mod/rpost.php:97 ../../mod/editpost.php:42 -msgid "Edit post" -msgstr "Redigera inlägg" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "Inga potentiella sid-ombud funna." - -#: ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegera sidhantering" - -#: ../../mod/delegate.php:123 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på." - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "Befintliga sid-ansvariga" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "Befintliga sid-ombud" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "Potentiella ombud" - -#: ../../mod/delegate.php:130 ../../mod/photos.php:873 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Ta bort" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Lägg till" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Inga poster." - -#: ../../mod/rbmark.php:88 -msgid "Select a bookmark folder" -msgstr "Välj en bokmärkeskatalog" - -#: ../../mod/rbmark.php:93 -msgid "Save Bookmark" -msgstr "Spara bokmärke" - -#: ../../mod/rbmark.php:94 -msgid "URL of bookmark" -msgstr "Bokmärkets URL" - -#: ../../mod/rbmark.php:95 ../../mod/appman.php:93 -msgid "Description" -msgstr "Beskrivning" - -#: ../../mod/rbmark.php:99 -msgid "Or enter new bookmark folder name" -msgstr "Eller ange nytt namn på bokmärkeskatalog" - -#: ../../mod/pubsites.php:16 -msgid "Public Sites" -msgstr "Offentliga servrar" - -#: ../../mod/pubsites.php:19 -msgid "" -"The listed sites allow public registration into the Hubzilla. All sites in" -" the matrix are interlinked so membership on any of them conveys membership " -"in the matrix as a whole. Some sites may require subscription or provide " -"tiered service plans. The provider links may provide " -"additional details." -msgstr "De listade servrarna tillåter offentlig registrering i Hubzilla. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer." - -#: ../../mod/pubsites.php:25 -msgid "Site URL" -msgstr "Server-URL" - -#: ../../mod/pubsites.php:25 -msgid "Access Type" -msgstr "Åtkomsttyp" - -#: ../../mod/pubsites.php:25 -msgid "Registration Policy" -msgstr "Registreringspolicy" - -#: ../../mod/pubsites.php:25 ../../mod/profiles.php:454 -msgid "Location" -msgstr "Plats" - -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Du måste vara inloggad för att se den här sidan." - -#: ../../mod/channel.php:87 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan." - -#: ../../mod/cloud.php:120 -msgid "Hubzilla - Guests: Username: {your email address}, Password: +++" -msgstr "Hubzilla - Gäster: Användarnamn {din e-postadress}, Lösenord: +++" - -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Logga in." - -#: ../../mod/chat.php:167 -msgid "Room not found" -msgstr "Rum hittas inte" - -#: ../../mod/chat.php:178 -msgid "Leave Room" -msgstr "Lämna rummet" - -#: ../../mod/chat.php:179 -msgid "Delete This Room" -msgstr "Ta bort det här rummet" - -#: ../../mod/chat.php:180 -msgid "I am away right now" -msgstr "Jag är borta för tillfället" - -#: ../../mod/chat.php:181 -msgid "I am online" -msgstr "Jag är online" - -#: ../../mod/chat.php:183 -msgid "Bookmark this room" -msgstr "Bokmärk det här rummet" - -#: ../../mod/chat.php:207 ../../mod/chat.php:229 -msgid "New Chatroom" -msgstr "Nytt chattrum" - -#: ../../mod/chat.php:208 -msgid "Chatroom Name" -msgstr "Namn på chattrum" - -#: ../../mod/chat.php:225 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss chattrum" - -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Borta" - -#: ../../mod/chatsvc.php:115 -msgid "Online" -msgstr "Online" - -#: ../../mod/rmagic.php:38 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat." - -#: ../../mod/rmagic.php:38 -msgid "The error message was:" -msgstr "Felmeddelandet var:" - -#: ../../mod/rmagic.php:42 -msgid "Authentication failed." -msgstr "Inloggning misslyckades." - -#: ../../mod/rmagic.php:82 -msgid "Remote Authentication" -msgstr "Fjärrinloggning" - -#: ../../mod/rmagic.php:83 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Ange din kanaladress (t.ex. kanal@example.com)" - -#: ../../mod/rmagic.php:84 -msgid "Authenticate" -msgstr "Autentisera" - -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats." - -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Ta bort den här kanalen" - -#: ../../mod/removeme.php:58 -msgid "" -"This will completely remove this channel from the network. Once this has " -"been done it is not recoverable." -msgstr "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den." - -#: ../../mod/removeme.php:59 ../../mod/removeaccount.php:59 -msgid "Please enter your password for verification:" -msgstr "Ange ditt lösenord för att bekräfta:" - -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Ta bort den här kanalen och alla dess kloner från nätverket" - -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket" - -#: ../../mod/removeme.php:61 -msgid "Remove Channel" -msgstr "Ta bort kanal" - -#: ../../mod/search.php:13 ../../mod/photos.php:429 ../../mod/display.php:9 -#: ../../mod/viewconnections.php:17 ../../mod/directory.php:22 -#: ../../mod/ratings.php:81 -msgid "Public access denied." -msgstr "Offentlig behörighet saknas." - -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ingen kanal." - -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Gemensamma kontakter" - -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Inga gemensamma kontakter." - -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Inget giltigt konto hittades." - -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Lösenordsåterställning har skickats. Kontrollera din e-post." - -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:102 -#, php-format -msgid "Site Member (%s)" -msgstr "Servermedlem (%s)" - -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Lösenordsåterställning begärd på %s" - -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades." - -#: ../../mod/lostpass.php:85 ../../boot.php:1558 -msgid "Password Reset" -msgstr "Lösenordsåterställning" - -#: ../../mod/lostpass.php:86 -msgid "Your password has been reset as requested." -msgstr "Ditt lösenord har återställts som begärt." - -#: ../../mod/lostpass.php:87 -msgid "Your new password is" -msgstr "Ditt nya lösenord är" - -#: ../../mod/lostpass.php:88 -msgid "Save or copy your new password - and then" -msgstr "Spara eller kopiera ditt nya lösenord - " - -#: ../../mod/lostpass.php:89 -msgid "click here to login" -msgstr "klicka sedan här för att logga in" - -#: ../../mod/lostpass.php:90 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has changed at %s" -msgstr "Ditt lösenord byttes på %s" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Glömt lösenordet?" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner." - -#: ../../mod/lostpass.php:124 -msgid "Email Address" -msgstr "E-postadress" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Återställ" - -#: ../../mod/item.php:163 -msgid "Unable to locate original post." -msgstr "Kunde inte hitta originalinlägget." - -#: ../../mod/item.php:422 -msgid "Empty post discarded." -msgstr "Tomt inlägg förkastat." - -#: ../../mod/item.php:464 -msgid "Executable content type not permitted to this channel." -msgstr "Körbart innehåll tillåts inte i den här kanalen." - -#: ../../mod/item.php:858 -msgid "System error. Post not saved." -msgstr "Systemfel. Inlägget inte sparat." - -#: ../../mod/item.php:1076 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du har nått din gräns på %1$.0f toppnivåinlägg." - -#: ../../mod/item.php:1082 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du har nått din gräns på %1$.0f webbsidor." - -#: ../../mod/connections.php:37 ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Kunde inte komma åt kontaktuppgifter." - -#: ../../mod/connections.php:51 ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Kunde inte hitta vald profil." - -#: ../../mod/connections.php:94 ../../mod/connedit.php:204 -msgid "Connection updated." -msgstr "Kontakt uppdaterad." - -#: ../../mod/connections.php:96 ../../mod/connedit.php:206 -msgid "Failed to update connection record." -msgstr "Misslyckades att uppdatera kontaktuppgifter." - -#: ../../mod/connections.php:192 ../../mod/connections.php:293 -msgid "Blocked" -msgstr "Blockerade" - -#: ../../mod/connections.php:197 ../../mod/connections.php:300 -msgid "Ignored" -msgstr "Ignorerade" - -#: ../../mod/connections.php:202 ../../mod/connections.php:314 -msgid "Hidden" -msgstr "Dolda" - -#: ../../mod/connections.php:207 ../../mod/connections.php:307 -msgid "Archived" -msgstr "Arkiverade" - -#: ../../mod/connections.php:231 ../../mod/connections.php:246 -msgid "All" -msgstr "Alla" - -#: ../../mod/connections.php:271 -msgid "Suggest new connections" -msgstr "Föreslå nya kontakter" - -#: ../../mod/connections.php:274 -msgid "New Connections" -msgstr "Nya kontakter" - -#: ../../mod/connections.php:277 -msgid "Show pending (new) connections" -msgstr "Visa väntande (nya) kontakter" - -#: ../../mod/connections.php:280 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alla kontakter" - -#: ../../mod/connections.php:283 -msgid "Show all connections" -msgstr "Visa alla kontakter" - -#: ../../mod/connections.php:286 -msgid "Unblocked" -msgstr "Ej blockerade" - -#: ../../mod/connections.php:289 -msgid "Only show unblocked connections" -msgstr "Visa endast ej blockerade kontakter" - -#: ../../mod/connections.php:296 -msgid "Only show blocked connections" -msgstr "Visa endast blockerade kontakter" - -#: ../../mod/connections.php:303 -msgid "Only show ignored connections" -msgstr "Visa endast ignorerade kontakter" - -#: ../../mod/connections.php:310 -msgid "Only show archived connections" -msgstr "Visa endast arkiverade kontakter" - -#: ../../mod/connections.php:317 -msgid "Only show hidden connections" -msgstr "Visa endast dolda kontakter" - -#: ../../mod/connections.php:372 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" - -#: ../../mod/connections.php:373 -msgid "Edit connection" -msgstr "Redigera kontakt" - -#: ../../mod/connections.php:411 -msgid "Search your connections" -msgstr "Sök bland dina kontakter" - -#: ../../mod/connections.php:412 -msgid "Finding: " -msgstr "Sökning efter: " - -#: ../../mod/editblock.php:79 ../../mod/editblock.php:95 -#: ../../mod/editpost.php:20 ../../mod/editlayout.php:78 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Posten hittas inte" - -#: ../../mod/editblock.php:115 -msgid "Edit Block" -msgstr "Redigera block" - -#: ../../mod/editblock.php:125 -msgid "Delete block?" -msgstr "Ta bort block?" - -#: ../../mod/editblock.php:147 ../../mod/editpost.php:116 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:178 -msgid "Insert YouTube video" -msgstr "Infoga Youtube-video" - -#: ../../mod/editblock.php:148 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:179 -msgid "Insert Vorbis [.ogg] video" -msgstr "Infoga Vorbis [.ogg]-video" - -#: ../../mod/editblock.php:149 ../../mod/editpost.php:118 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:180 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Infoga Vorbis [.ogg]-ljud" - -#: ../../mod/editblock.php:183 -msgid "Delete Block" -msgstr "Ta bort block" - -#: ../../mod/settings.php:73 -msgid "Name is required" -msgstr "Namn är obligatoriskt" - -#: ../../mod/settings.php:77 -msgid "Key and Secret are required" -msgstr "Nyckel och kod är obligatoriska" - -#: ../../mod/settings.php:222 -msgid "Passwords do not match. Password unchanged." -msgstr "Lösenorden stämmer inte överens. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:226 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Tomma lösenord tillåts inte. Lösenordet har inte ändrats." - -#: ../../mod/settings.php:240 -msgid "Password changed." -msgstr "Lösenordet ändrat." - -#: ../../mod/settings.php:242 -msgid "Password update failed. Please try again." -msgstr "Lösenordsuppdatering misslyckades. Försök igen." - -#: ../../mod/settings.php:256 -msgid "Not valid email." -msgstr "Inte en giltig e-postadress." - -#: ../../mod/settings.php:259 -msgid "Protected email address. Cannot change to that email." -msgstr "Skyddad e-postadress. Kan inte ändra till den." - -#: ../../mod/settings.php:268 -msgid "System failure storing new email. Please try again." -msgstr "Systemfel när ny e-postadress skulle sparas. Försök igen." - -#: ../../mod/settings.php:507 -msgid "Settings updated." -msgstr "Inställningar uppdaterade." - -#: ../../mod/settings.php:576 ../../mod/settings.php:602 -#: ../../mod/settings.php:638 -msgid "Add application" -msgstr "Lägg till applikation" - -#: ../../mod/settings.php:579 -msgid "Name of application" -msgstr "Applikationens namn" - -#: ../../mod/settings.php:580 ../../mod/settings.php:606 -msgid "Consumer Key" -msgstr "Nyckel för konsument" - -#: ../../mod/settings.php:580 ../../mod/settings.php:581 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatiskt genererad - ändra om så önskas. Maxlängd 20" - -#: ../../mod/settings.php:581 ../../mod/settings.php:607 -msgid "Consumer Secret" -msgstr "Kod för konsument" - -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -msgid "Redirect" -msgstr "Omdirigering" - -#: ../../mod/settings.php:582 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det" - -#: ../../mod/settings.php:583 ../../mod/settings.php:609 -msgid "Icon url" -msgstr "Ikon-URL" - -#: ../../mod/settings.php:583 -msgid "Optional" -msgstr "Frivillig" - -#: ../../mod/settings.php:594 -msgid "You can't edit this application." -msgstr "Du kan inte redigera den här applikationen." - -#: ../../mod/settings.php:637 -msgid "Connected Apps" -msgstr "Anslutna appar" - -#: ../../mod/settings.php:641 -msgid "Client key starts with" -msgstr "Klientnyckel börjar med" - -#: ../../mod/settings.php:642 -msgid "No name" -msgstr "Inget namn" - -#: ../../mod/settings.php:643 -msgid "Remove authorization" -msgstr "Ta bort behörighet" - -#: ../../mod/settings.php:654 -msgid "No feature settings configured" -msgstr "Inga tilläggsinställningar konfigurerade" - -#: ../../mod/settings.php:662 -msgid "Feature Settings" -msgstr "Tilläggsinställningar" - -#: ../../mod/settings.php:685 -msgid "Account Settings" -msgstr "Kontoinställningar" - -#: ../../mod/settings.php:686 -msgid "Password Settings" -msgstr "Lösenordsinställningar" - -#: ../../mod/settings.php:687 -msgid "New Password:" -msgstr "Nytt lösenord:" - -#: ../../mod/settings.php:688 -msgid "Confirm:" -msgstr "Bekräfta:" - -#: ../../mod/settings.php:688 -msgid "Leave password fields blank unless changing" -msgstr "Lämna lösenordsfälten blanka om lösenordet inte ska ändras" - -#: ../../mod/settings.php:690 ../../mod/settings.php:1026 -msgid "Email Address:" -msgstr "E-postadress" - -#: ../../mod/settings.php:691 ../../mod/removeaccount.php:61 -msgid "Remove Account" -msgstr "Ta bort konto" - -#: ../../mod/settings.php:692 -msgid "Remove this account from this server including all its channels" -msgstr "Ta bort det här kontot från servern, inklusive alla dess kanaler" - -#: ../../mod/settings.php:693 ../../mod/settings.php:1107 -msgid "Warning: This action is permanent and cannot be reversed." -msgstr "Varning: Den här handlingen är permanent och kan inte återställas." - -#: ../../mod/settings.php:709 -msgid "Off" -msgstr "Av" - -#: ../../mod/settings.php:709 -msgid "On" -msgstr "På" - -#: ../../mod/settings.php:716 -msgid "Additional Features" -msgstr "Tilläggsfunktioner" - -#: ../../mod/settings.php:740 -msgid "Connector Settings" -msgstr "Anslutningsinställningar" - -#: ../../mod/settings.php:779 -msgid "No special theme for mobile devices" -msgstr "Inget särskilt tema för mobila enheter" - -#: ../../mod/settings.php:782 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimentellt)" - -#: ../../mod/settings.php:785 ../../mod/admin.php:367 -msgid "mobile" -msgstr "mobilt" - -#: ../../mod/settings.php:821 -msgid "Display Settings" -msgstr "Utseende" - -#: ../../mod/settings.php:827 -msgid "Display Theme:" -msgstr "Tema för utseende:" - -#: ../../mod/settings.php:828 -msgid "Mobile Theme:" -msgstr "Mobilt tema:" - -#: ../../mod/settings.php:829 -msgid "Enable user zoom on mobile devices" -msgstr "Tillåt användare att zooma på mobila enheter" - -#: ../../mod/settings.php:830 -msgid "Update browser every xx seconds" -msgstr "Uppdatera webbläsaren var xx sekund" - -#: ../../mod/settings.php:830 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minst 10 sekunder, inget maximum" - -#: ../../mod/settings.php:831 -msgid "Maximum number of conversations to load at any time:" -msgstr "Högsta antal konversationer att ladda åt gången:" - -#: ../../mod/settings.php:831 -msgid "Maximum of 100 items" -msgstr "Maximalt 100 poster" - -#: ../../mod/settings.php:832 -msgid "Don't show emoticons" -msgstr "Visa inte känsloikoner" - -#: ../../mod/settings.php:833 -msgid "Link post titles to source" -msgstr "Länka inläggstitlar till källan" - -#: ../../mod/settings.php:834 -msgid "System Page Layout Editor - (advanced)" -msgstr "Redigera systemets sidlayout (avancerat)" - -#: ../../mod/settings.php:837 -msgid "Use blog/list mode on channel page" -msgstr "Använd blogg-/listläge på kanalsida" - -#: ../../mod/settings.php:837 ../../mod/settings.php:838 -msgid "(comments displayed separately)" -msgstr "(kommentarer visas separat)" - -#: ../../mod/settings.php:838 -msgid "Use blog/list mode on matrix page" -msgstr "Använd blogg-/listläge på matrissida" - -#: ../../mod/settings.php:839 -msgid "Channel page max height of content (in pixels)" -msgstr "Maxhöjd för innehåll på kanalsidor (i pixels)" - -#: ../../mod/settings.php:839 ../../mod/settings.php:840 -msgid "click to expand content exceeding this height" -msgstr "klicka för att fälla ut innehåll som överskrider den här höjden" - -#: ../../mod/settings.php:840 -msgid "Matrix page max height of content (in pixels)" -msgstr "Maxhöjd för innehåll på matrissidan (i pixels)" - -#: ../../mod/settings.php:874 -msgid "Nobody except yourself" -msgstr "Ingen utom dig själv" - -#: ../../mod/settings.php:875 -msgid "Only those you specifically allow" -msgstr "Endast utvalda" - -#: ../../mod/settings.php:876 -msgid "Approved connections" -msgstr "Godkända kontakter" - -#: ../../mod/settings.php:877 -msgid "Any connections" -msgstr "Alla kontakter" - -#: ../../mod/settings.php:878 -msgid "Anybody on this website" -msgstr "Vem som helst på den här servern" - -#: ../../mod/settings.php:879 -msgid "Anybody in this network" -msgstr "Vem som helst i det här nätverket" - -#: ../../mod/settings.php:880 -msgid "Anybody authenticated" -msgstr "Vem som helst som har autentiserat sig" - -#: ../../mod/settings.php:881 -msgid "Anybody on the internet" -msgstr "Vem som helst på Internet" - -#: ../../mod/settings.php:955 -msgid "Publish your default profile in the network directory" -msgstr "Publicera din standardprofil i nätverkskatalogen" - -#: ../../mod/settings.php:960 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar" - -#: ../../mod/settings.php:964 ../../mod/profile_photo.php:366 -msgid "or" -msgstr "eller" - -#: ../../mod/settings.php:969 -msgid "Your channel address is" -msgstr "Din kanaladress är" - -#: ../../mod/settings.php:1017 -msgid "Channel Settings" -msgstr "Kanalinställningar" - -#: ../../mod/settings.php:1024 -msgid "Basic Settings" -msgstr "Grundläggande inställningar" - -#: ../../mod/settings.php:1027 -msgid "Your Timezone:" -msgstr "Din tidszon:" - -#: ../../mod/settings.php:1028 -msgid "Default Post Location:" -msgstr "Standardplats:" - -#: ../../mod/settings.php:1028 -msgid "Geographical location to display on your posts" -msgstr "Geografisk plats att visa för dina inlägg" - -#: ../../mod/settings.php:1029 -msgid "Use Browser Location:" -msgstr "Använd webbläsarens position:" - -#: ../../mod/settings.php:1031 -msgid "Adult Content" -msgstr "Innehåll olämpligt för barn" - -#: ../../mod/settings.php:1031 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Den här kanalen publicerar ofta eller regelbundet innehåll som är olämpligt för barn. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)" - -#: ../../mod/settings.php:1033 -msgid "Security and Privacy Settings" -msgstr "Säkerhets- och integritetsinställningar" - -#: ../../mod/settings.php:1035 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Dina behörigheter har redan ställts in. Klicka för att visa/ändra" - -#: ../../mod/settings.php:1037 -msgid "Hide my online presence" -msgstr "Visa inte min online-närvaro" - -#: ../../mod/settings.php:1037 -msgid "Prevents displaying in your profile that you are online" -msgstr "Förhindrar att det syns i din profil att du är online" - -#: ../../mod/settings.php:1039 -msgid "Simple Privacy Settings:" -msgstr "Enkla integritetsinställningar:" - -#: ../../mod/settings.php:1040 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)" - -#: ../../mod/settings.php:1041 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)" - -#: ../../mod/settings.php:1042 -msgid "Private - default private, never open or public" -msgstr "Privat - privat som standard, aldrig öppet eller offentligt" - -#: ../../mod/settings.php:1043 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockera - som standard blockerat till/från alla" - -#: ../../mod/settings.php:1045 -msgid "Allow others to tag your posts" -msgstr "Låt andra tagga dina inlägg" - -#: ../../mod/settings.php:1045 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll" - -#: ../../mod/settings.php:1047 -msgid "Advanced Privacy Settings" -msgstr "Avancerade integritetsinställningar" - -#: ../../mod/settings.php:1049 -msgid "Expire other channel content after this many days" -msgstr "Låt annat kanalinnehåll upphöra efter efter så här många dagar" - -#: ../../mod/settings.php:1049 -msgid "0 or blank prevents expiration" -msgstr "0 eller blankt förhindrar upphörande" - -#: ../../mod/settings.php:1050 -msgid "Maximum Friend Requests/Day:" -msgstr "Högsta antal vänförfrågningar per dag:" - -#: ../../mod/settings.php:1050 -msgid "May reduce spam activity" -msgstr "Kan reducera spamaktivitet" - -#: ../../mod/settings.php:1051 -msgid "Default Post Permissions" -msgstr "Standardbehörighet för inlägg" - -#: ../../mod/settings.php:1056 -msgid "Channel permissions category:" -msgstr "Kanalens behörighetskategori:" - -#: ../../mod/settings.php:1062 -msgid "Maximum private messages per day from unknown people:" -msgstr "Högsta antal privata meddelanden per dag från okända personer:" - -#: ../../mod/settings.php:1062 -msgid "Useful to reduce spamming" -msgstr "Användbart för att minska skräputskick" - -#: ../../mod/settings.php:1065 -msgid "Notification Settings" -msgstr "Notifieringsinställningar" - -#: ../../mod/settings.php:1066 -msgid "By default post a status message when:" -msgstr "Skicka som standard ett statusmeddelande när:" - -#: ../../mod/settings.php:1067 -msgid "accepting a friend request" -msgstr "du accepterar en vänförfrågan" - -#: ../../mod/settings.php:1068 -msgid "joining a forum/community" -msgstr "du går med i ett forum/en gemenskap" - -#: ../../mod/settings.php:1069 -msgid "making an interesting profile change" -msgstr "du gör en intressant ändring av profilen" - -#: ../../mod/settings.php:1070 -msgid "Send a notification email when:" -msgstr "Skicka en notifiering via e-post när:" - -#: ../../mod/settings.php:1071 -msgid "You receive a connection request" -msgstr "Du får en kontaktförfrågan" - -#: ../../mod/settings.php:1072 -msgid "Your connections are confirmed" -msgstr "Dina kontakter bekräftas" - -#: ../../mod/settings.php:1073 -msgid "Someone writes on your profile wall" -msgstr "Någon skriver på din profilvägg" - -#: ../../mod/settings.php:1074 -msgid "Someone writes a followup comment" -msgstr "Någon skriver en uppföljande kommentar" - -#: ../../mod/settings.php:1075 -msgid "You receive a private message" -msgstr "Du tar emot ett privat meddelande" - -#: ../../mod/settings.php:1076 -msgid "You receive a friend suggestion" -msgstr "Du tar emot ett vänförslag" - -#: ../../mod/settings.php:1077 -msgid "You are tagged in a post" -msgstr "Du taggas i ett inlägg" - -#: ../../mod/settings.php:1078 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du puffas/stöts till/etc. i ett inlägg" - -#: ../../mod/settings.php:1081 -msgid "Show visual notifications including:" -msgstr "Visa visuella notifieringar vid:" - -#: ../../mod/settings.php:1083 -msgid "Unseen matrix activity" -msgstr "Oläst matrisaktivitet" - -#: ../../mod/settings.php:1084 -msgid "Unseen channel activity" -msgstr "Oläst kanalaktivitet" - -#: ../../mod/settings.php:1085 -msgid "Unseen private messages" -msgstr "Olästa privata meddelanden" - -#: ../../mod/settings.php:1085 ../../mod/settings.php:1090 -#: ../../mod/settings.php:1091 ../../mod/settings.php:1092 -msgid "Recommended" -msgstr "Rekommenderas" - -#: ../../mod/settings.php:1086 -msgid "Upcoming events" -msgstr "Kommande händelser" - -#: ../../mod/settings.php:1087 -msgid "Events today" -msgstr "Dagens händelser" - -#: ../../mod/settings.php:1088 -msgid "Upcoming birthdays" -msgstr "Kommande födelsedagar" - -#: ../../mod/settings.php:1088 -msgid "Not available in all themes" -msgstr "Inte tillgänglig i alla teman" - -#: ../../mod/settings.php:1089 -msgid "System (personal) notifications" -msgstr "Systemmeddelanden (personliga)" - -#: ../../mod/settings.php:1090 -msgid "System info messages" -msgstr "Systemmeddelanden" - -#: ../../mod/settings.php:1091 -msgid "System critical alerts" -msgstr "Systemkritiska varningar" - -#: ../../mod/settings.php:1092 -msgid "New connections" -msgstr "Nya kontakter" - -#: ../../mod/settings.php:1093 -msgid "System Registrations" -msgstr "Systemregistreringar" - -#: ../../mod/settings.php:1094 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Visa även nya väggmeddelanden, privata meddelanden, och anslutningar under Meddelanden" - -#: ../../mod/settings.php:1096 -msgid "Notify me of events this many days in advance" -msgstr "Meddela mig om händelser så här många dagar i förväg" - -#: ../../mod/settings.php:1096 -msgid "Must be greater than 0" -msgstr "Måste vara större än 0" - -#: ../../mod/settings.php:1098 -msgid "Advanced Account/Page Type Settings" -msgstr "Avancerade konto-/sidtypsinställningar" - -#: ../../mod/settings.php:1099 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändra det här kontots beteende i särskilda situationer" - -#: ../../mod/settings.php:1102 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!" - -#: ../../mod/settings.php:1103 -msgid "Miscellaneous Settings" -msgstr "Diverse inställningar" - -#: ../../mod/settings.php:1105 -msgid "Personal menu to display in your channel pages" -msgstr "Personlig meny att visa i dina kanalsidor" - -#: ../../mod/settings.php:1106 -msgid "Remove this channel" -msgstr "Ta bort den här kanalen" - -#: ../../mod/filer.php:49 -msgid "- select -" -msgstr "- välj -" - -#: ../../mod/siteinfo.php:93 -#, php-format -msgid "Version %s" -msgstr "Version %s" - -#: ../../mod/siteinfo.php:114 -msgid "Installed plugins/addons/apps:" -msgstr "Installerade tillägg/moduler/appar:" - -#: ../../mod/siteinfo.php:127 -msgid "No installed plugins/addons/apps" -msgstr "Inga installerade tillägg/moduler/appar" - -#: ../../mod/siteinfo.php:136 -msgid "Red" -msgstr "Red" - -#: ../../mod/siteinfo.php:137 -msgid "" -"This is a hub of the Hubzilla - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Det här är en hubb som ingår i Hubzilla - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd." - -#: ../../mod/siteinfo.php:139 -msgid "Tag: " -msgstr "Tagg: " - -#: ../../mod/siteinfo.php:141 -msgid "Last background fetch: " -msgstr "Senaste bakgrundshämtning: " - -#: ../../mod/siteinfo.php:144 -msgid "Running at web location" -msgstr "Kör på webbutrymmet" - -#: ../../mod/siteinfo.php:145 -msgid "" -"Please visit Redmatrix.me to learn more" -" about the Hubzilla." -msgstr "Besök Redmatrix.me för att lära dig mer om Hubzilla." - -#: ../../mod/siteinfo.php:146 -msgid "Bug reports and issues: please visit" -msgstr "Buggrapporter och problem: besök" - -#: ../../mod/siteinfo.php:149 -msgid "" -"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot " -"com" -msgstr "Förslag, uppskattning, etc. - maila \"hubzilla\" at librelist - dot com" - -#: ../../mod/siteinfo.php:151 -msgid "Site Administrators" -msgstr "Serveradministratörer" - -#: ../../mod/photos.php:77 -msgid "Page owner information could not be retrieved." -msgstr "Information om sidans ägare kunde inte hittas." - -#: ../../mod/photos.php:97 -msgid "Album not found." -msgstr "Albumet hittades inte." - -#: ../../mod/photos.php:119 ../../mod/photos.php:643 -msgid "Delete Album" -msgstr "Ta bort album" - -#: ../../mod/photos.php:159 ../../mod/photos.php:926 -msgid "Delete Photo" -msgstr "Ta bort foto" - -#: ../../mod/photos.php:440 -msgid "No photos selected" -msgstr "Inga foton valda" - -#: ../../mod/photos.php:484 -msgid "Access to this item is restricted." -msgstr "Åtkomst till den här posten är begränsat." - -#: ../../mod/photos.php:523 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB av %2$.2f MB fotolagring använt." - -#: ../../mod/photos.php:526 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB fotolagring använt." - -#: ../../mod/photos.php:550 -msgid "Upload Photos" -msgstr "Ladda upp foton" - -#: ../../mod/photos.php:554 ../../mod/photos.php:636 ../../mod/photos.php:911 -msgid "Enter a new album name" -msgstr "Ange ett nytt albumnamn" - -#: ../../mod/photos.php:555 ../../mod/photos.php:637 ../../mod/photos.php:912 -msgid "or select an existing one (doubleclick)" -msgstr "eller välj ett befintligt (dubbelklicka)" - -#: ../../mod/photos.php:556 -msgid "Do not show a status post for this upload" -msgstr "Visa inte en statusuppdatering för den här uppladdningen" - -#: ../../mod/photos.php:584 -msgid "Album name could not be decoded" -msgstr "Albumnamn kunde inte tolkas" - -#: ../../mod/photos.php:625 ../../mod/photos.php:1135 -#: ../../mod/photos.php:1151 -msgid "Contact Photos" -msgstr "Kontaktfoton" - -#: ../../mod/photos.php:649 -msgid "Show Newest First" -msgstr "Visa nyast först" - -#: ../../mod/photos.php:651 -msgid "Show Oldest First" -msgstr "Visa äldst först" - -#: ../../mod/photos.php:675 ../../mod/photos.php:1183 -msgid "View Photo" -msgstr "Visa foto" - -#: ../../mod/photos.php:704 -msgid "Edit Album" -msgstr "Redigera album" - -#: ../../mod/photos.php:749 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Behörighet saknas. Åtkomst till den här posten kan vara begränsat." - -#: ../../mod/photos.php:751 -msgid "Photo not available" -msgstr "Foto inte tillgängligt" - -#: ../../mod/photos.php:809 -msgid "Use as profile photo" -msgstr "Använd som profilfoto" - -#: ../../mod/photos.php:816 -msgid "Private Photo" -msgstr "Privat foto" - -#: ../../mod/photos.php:831 -msgid "View Full Size" -msgstr "Visa fullstorlek" - -#: ../../mod/photos.php:905 -msgid "Edit photo" -msgstr "Redigera foto" - -#: ../../mod/photos.php:907 -msgid "Rotate CW (right)" -msgstr "Rotera medurs (höger)" - -#: ../../mod/photos.php:908 -msgid "Rotate CCW (left)" -msgstr "Rotera moturs (vänster)" - -#: ../../mod/photos.php:915 -msgid "Caption" -msgstr "Bildtext" - -#: ../../mod/photos.php:917 -msgid "Add a Tag" -msgstr "Lägg till en tagg" - -#: ../../mod/photos.php:921 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Exempel: @bob, @Barbara_Jensen, @jim@example.com" - -#: ../../mod/photos.php:924 -msgid "Flag as adult in album view" -msgstr "Flagga som olämpligt för barn i albumvyn" - -#: ../../mod/photos.php:1101 -msgid "In This Photo:" -msgstr "På fotot:" - -#: ../../mod/photos.php:1189 -msgid "View Album" -msgstr "Visa album" - -#: ../../mod/photos.php:1212 -msgid "Recent Photos" -msgstr "Nya foton" - -#: ../../mod/acl.php:228 -msgid "network" -msgstr "nätverk" - -#: ../../mod/acl.php:238 -msgid "RSS" -msgstr "RSS" - -#: ../../mod/poke.php:159 -msgid "Poke/Prod" -msgstr "Puffa/stöt till" - -#: ../../mod/poke.php:160 -msgid "poke, prod or do other things to somebody" -msgstr "puffa, stöt till eller gör andra saker mot någon" - -#: ../../mod/poke.php:161 -msgid "Recipient" -msgstr "Mottagare" - -#: ../../mod/poke.php:162 -msgid "Choose what you wish to do to recipient" -msgstr "Välj vad du önskar göra med mottagaren" - -#: ../../mod/poke.php:165 -msgid "Make this post private" -msgstr "Gör det här inlägget privat" - -#: ../../mod/manage.php:138 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du har skapat %1$.0f av %2$.0f tillåtna kanaler." - -#: ../../mod/manage.php:146 -msgid "Create a new channel" -msgstr "Skapa en ny kanal" - -#: ../../mod/manage.php:151 -msgid "Current Channel" -msgstr "Nuvarande kanal" - -#: ../../mod/manage.php:153 -msgid "Switch to one of your channels by selecting it." -msgstr "Växla till en av dina kanaler genom att välja den." - -#: ../../mod/manage.php:154 -msgid "Default Channel" -msgstr "Standardkanal" - -#: ../../mod/manage.php:155 -msgid "Make Default" -msgstr "Gör till standard" - -#: ../../mod/manage.php:158 -#, php-format -msgid "%d new messages" -msgstr "%d nya meddelanden" - -#: ../../mod/manage.php:159 -#, php-format -msgid "%d new introductions" -msgstr "%d nya presentationer" - -#: ../../mod/dirsearch.php:20 ../../mod/regdir.php:22 -msgid "This site is not a directory server" -msgstr "Den här servern är inte en katalogserver" - -#: ../../mod/bookmarks.php:38 -msgid "Bookmark added" -msgstr "Bokmärke tillagt" - -#: ../../mod/bookmarks.php:60 -msgid "My Bookmarks" -msgstr "Mina bokmärken" - -#: ../../mod/bookmarks.php:71 -msgid "My Connections Bookmarks" -msgstr "Mina kontakters bokmärken" - -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Posten går ej att redigera" - -#: ../../mod/editpost.php:53 -msgid "Delete item?" -msgstr "Ta bort posten?" - -#: ../../mod/group.php:20 -msgid "Collection created." -msgstr "Krets skapad." - -#: ../../mod/group.php:26 -msgid "Could not create collection." -msgstr "Kunde inte skapa krets." - -#: ../../mod/group.php:54 -msgid "Collection updated." -msgstr "Kretsen uppdaterad." - -#: ../../mod/group.php:86 -msgid "Create a collection of channels." -msgstr "Skapa en krets av kanaler." - -#: ../../mod/group.php:87 ../../mod/group.php:183 -msgid "Collection Name: " -msgstr "Namn på krets: " - -#: ../../mod/group.php:89 ../../mod/group.php:186 -msgid "Members are visible to other channels" -msgstr "Medlemmar kan ses av andra kanaler" - -#: ../../mod/group.php:107 -msgid "Collection removed." -msgstr "Krets borttagen." - -#: ../../mod/group.php:109 -msgid "Unable to remove collection." -msgstr "Kunde inte ta bort krets." - -#: ../../mod/group.php:182 -msgid "Collection Editor" -msgstr "Redigera krets" - -#: ../../mod/group.php:196 -msgid "Members" -msgstr "Medlemmar" - -#: ../../mod/group.php:198 -msgid "All Connected Channels" -msgstr "Alla anslutna kanaler" - -#: ../../mod/group.php:233 -msgid "Click on a channel to add or remove." -msgstr "Klicka på en kanal för att lägga till eller ta bort." - -#: ../../mod/ping.php:266 -msgid "sent you a private message" -msgstr "skickade ett privat meddelande till dig" - -#: ../../mod/ping.php:319 -msgid "added your channel" -msgstr "lade till din kanal" - -#: ../../mod/ping.php:360 -msgid "posted an event" -msgstr "skapade en händelse" - -#: ../../mod/editlayout.php:108 -msgid "Edit Layout" -msgstr "Redigera layout" - -#: ../../mod/editlayout.php:117 -msgid "Delete layout?" -msgstr "Ta bort layout?" - -#: ../../mod/editlayout.php:178 -msgid "Delete Layout" -msgstr "Ta bort layout" - -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Misslyckades att skapa källa. Ingen kanal vald." - -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Källa skapad." - -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Källa uppdaterad." - -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" - -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Hantera fjärrkällor med innehåll för din kanal." - -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Ny källa" - -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar." - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importera endast innehåll med de här orden (ett per rad)" - -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Lämna blankt för att importera allt offentligt innehåll" - -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -#: ../../mod/new_channel.php:112 -msgid "Channel Name" -msgstr "Kanalnamn" - -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Källa hittades inte." - -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Redigera källa" - -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Ta bort källa" - -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Källa borttagen" - -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Kunde inte ta bort källa." - -#: ../../mod/follow.php:25 -msgid "Channel added." -msgstr "Kanal tillagd." - -#: ../../mod/pdledit.php:13 -msgid "Layout updated." -msgstr "Layout uppdaterad." - -#: ../../mod/pdledit.php:28 ../../mod/pdledit.php:53 -msgid "Edit System Page Description" -msgstr "Redigera systemsidbeskrivning" - -#: ../../mod/pdledit.php:48 -msgid "Layout not found." -msgstr "Layout hittas inte." - -#: ../../mod/pdledit.php:54 -msgid "Module Name:" -msgstr "Modulnamn:" - -#: ../../mod/pdledit.php:55 ../../mod/layouts.php:107 -msgid "Layout Help" -msgstr "Layouthjälp" - -#: ../../mod/editwebpage.php:140 -msgid "Edit Webpage" -msgstr "Redigera webbsida" - -#: ../../mod/editwebpage.php:150 -msgid "Delete webpage?" -msgstr "Ta bort webbsida?" - -#: ../../mod/editwebpage.php:215 -msgid "Delete Webpage" -msgstr "Ta bort webbsida" - -#: ../../mod/impel.php:33 -msgid "webpage" -msgstr "webbsida" - -#: ../../mod/impel.php:38 -msgid "block" -msgstr "block" - -#: ../../mod/impel.php:43 -msgid "layout" -msgstr "layout" - -#: ../../mod/impel.php:117 -#, php-format -msgid "%s element installed" -msgstr "%selement installerat" - -#: ../../mod/profile_photo.php:108 -msgid "Image uploaded but image cropping failed." -msgstr "Bilden laddades upp men beskärning misslyckades." - -#: ../../mod/profile_photo.php:162 -msgid "Image resize failed." -msgstr "Ändring av bildstorlek misslyckades." - -#: ../../mod/profile_photo.php:206 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt." - -#: ../../mod/profile_photo.php:233 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bilden överskrider storleksbegränsningen %d" - -#: ../../mod/profile_photo.php:242 -msgid "Unable to process image." -msgstr "Kunde inte behandla bilden." - -#: ../../mod/profile_photo.php:291 ../../mod/profile_photo.php:340 -msgid "Photo not available." -msgstr "Fotot är inte tillgängligt." - -#: ../../mod/profile_photo.php:359 -msgid "Upload File:" -msgstr "Ladda upp fil:" - -#: ../../mod/profile_photo.php:360 -msgid "Select a profile:" -msgstr "Välj en profil:" - -#: ../../mod/profile_photo.php:361 -msgid "Upload Profile Photo" -msgstr "Ladda upp profilfoto" - -#: ../../mod/profile_photo.php:366 -msgid "skip this step" -msgstr "hoppa över det här steget" - -#: ../../mod/profile_photo.php:366 -msgid "select a photo from your photo albums" -msgstr "välj ett foto från dina fotoalbum" - -#: ../../mod/profile_photo.php:382 -msgid "Crop Image" -msgstr "Beskär bild" - -#: ../../mod/profile_photo.php:383 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Justera bildens beskärning för bästa utseende." - -#: ../../mod/profile_photo.php:385 -msgid "Done Editing" -msgstr "Klar med redigering" - -#: ../../mod/profile_photo.php:428 -msgid "Image uploaded successfully." -msgstr "Bilduppladdning lyckades." - -#: ../../mod/profile_photo.php:430 -msgid "Image upload failed." -msgstr "Bilduppladdning misslyckades." - -#: ../../mod/profile_photo.php:439 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Krympning av bilden [%s] misslyckades." - -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Kontakten hittades inte." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Vänförfrågan skickad." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Föreslå vänner" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Föreslå en vän för %s" - -#: ../../mod/help.php:49 ../../mod/help.php:55 ../../mod/help.php:61 -msgid "Help:" -msgstr "Hjälp:" - -#: ../../mod/help.php:76 ../../index.php:238 -msgid "Not Found" -msgstr "Hittas inte" - -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Gilla/ogilla" - -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Den här åtgärden fungerar bara för medlemmar." - -#: ../../mod/like.php:21 -msgid "" -"Please login with your Hubzilla ID or register as a new Redmatrix.member to continue." -msgstr "Logga in med ditt Hubzilla-ID eller registrera dig som ny Redmatrix.medlem för att fortsätta." - -#: ../../mod/like.php:89 ../../mod/like.php:116 ../../mod/like.php:154 -msgid "Invalid request." -msgstr "Ogiltig begäran." - -#: ../../mod/like.php:131 -msgid "thing" -msgstr "sak" - -#: ../../mod/like.php:177 -msgid "Channel unavailable." -msgstr "Kanalen kan ej nås." - -#: ../../mod/like.php:216 -msgid "Previous action reversed." -msgstr "Föregående åtgärd återställdes." - -#: ../../mod/like.php:352 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s instämmer med %2$ss %3$s" - -#: ../../mod/like.php:354 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s instämmer inte med %2$ss %3$s" - -#: ../../mod/like.php:356 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s tar inte ställning angående %2$ss %3$s" - -#: ../../mod/like.php:442 -msgid "Action completed." -msgstr "Åtgärden slutfördes." - -#: ../../mod/like.php:443 -msgid "Thank you." -msgstr "Tack." - -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Gränsen för totalt antal inbjudningar överskriden." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Inte en giltig e-postadress." - -#: ../../mod/invite.php:76 -msgid "Please join us on Red" -msgstr "Gå med oss i Red" - -#: ../../mod/invite.php:87 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Inbjudningsgränsen överskriden. Kontakta din serveradministratör." - -#: ../../mod/invite.php:92 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Leverans av meddelande misslyckades." - -#: ../../mod/invite.php:96 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d meddelande sänt." -msgstr[1] "%d meddelanden sända." - -#: ../../mod/invite.php:115 -msgid "You have no more invitations available" -msgstr "Du har inga fler inbjudningar kvar" - -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Skicka inbjudan" - -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Ange e-postadresser, en per rad:" - -#: ../../mod/invite.php:131 ../../mod/mail.php:235 ../../mod/mail.php:348 -msgid "Your message:" -msgstr "Ditt meddelande:" - -#: ../../mod/invite.php:132 -msgid "Please join my community on Hubzilla." -msgstr "Gå med mig i gemenskapen på Hubzilla." - -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code: " -msgstr "Du kommer att behöva den här inbjudningskoden: " - -#: ../../mod/invite.php:135 -msgid "1. Register at any Hubzilla location (they are all inter-connected)" -msgstr "1. Skapa konto på en Hubzilla-server (alla är ihopkopplade)" - -#: ../../mod/invite.php:137 -msgid "2. Enter my Hubzilla network address into the site searchbar." -msgstr "2. Ange min Hubzilla-adress i webbplatsens sökruta." - -#: ../../mod/invite.php:138 -msgid "or visit " -msgstr "eller besök " - -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klicka [Ta kontakt]" - -#: ../../mod/filestorage.php:81 -msgid "Permission Denied." -msgstr "Behörighet saknas." - -#: ../../mod/filestorage.php:97 -msgid "File not found." -msgstr "Filen hittas inte." - -#: ../../mod/filestorage.php:140 -msgid "Edit file permissions" -msgstr "Redigera filrättigheter" - -#: ../../mod/filestorage.php:149 -msgid "Set/edit permissions" -msgstr "Ställ in/ändra behörigheter" - -#: ../../mod/filestorage.php:150 -msgid "Include all files and sub folders" -msgstr "Inkludera alla filer och underkataloger" - -#: ../../mod/filestorage.php:151 -msgid "Return to file list" -msgstr "Återgå till fillistan" - -#: ../../mod/filestorage.php:153 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg" - -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida" - -#: ../../mod/filestorage.php:156 -msgid "Attach this file to a new post" -msgstr "Bifoga den här filen till ett nytt inlägg" - -#: ../../mod/filestorage.php:157 -msgid "Show URL to this file" -msgstr "Visa URL till den här filen" - -#: ../../mod/filestorage.php:158 -msgid "Do not show in shared with me folder of your connections" -msgstr "Visa inte i dina kontakters mapp med delat material" - -#: ../../mod/dav.php:121 -msgid "Hubzilla channel" -msgstr "Hubzilla-kanal" - -#: ../../mod/lockview.php:31 -msgid "Remote privacy information not available." -msgstr "Icke-lokal integritetsinformation är inte tillgänglig" - -#: ../../mod/lockview.php:52 -msgid "Visible to:" -msgstr "Kan ses av:" - -#: ../../mod/import.php:25 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Din tjänstenivå tillåter bara %d kanaler." - -#: ../../mod/import.php:51 -msgid "Nothing to import." -msgstr "Inget att importera." - -#: ../../mod/import.php:75 -msgid "Unable to download data from old server" -msgstr "Kunde inte ladda ner data från den gamla servern" - -#: ../../mod/import.php:81 -msgid "Imported file is empty." -msgstr "Den importerade filen är tom." - -#: ../../mod/import.php:106 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades." - -#: ../../mod/import.php:127 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Kan inte skapa en unik kanaladress. Import misslyckades." - -#: ../../mod/import.php:147 -msgid "Channel clone failed. Import failed." -msgstr "Kloning av kanalen misslyckades. Import misslyckades." - -#: ../../mod/import.php:157 -msgid "Cloned channel not found. Import failed." -msgstr "Den klonade kanalen hittas inte. Import misslyckades." - -#: ../../mod/import.php:475 -msgid "Import completed." -msgstr "Import slutförd." - -#: ../../mod/import.php:487 -msgid "You must be logged in to use this feature." -msgstr "Du måste vara inloggad för att kunna använda den här funktionen." - -#: ../../mod/import.php:492 -msgid "Import Channel" -msgstr "Importera kanal" - -#: ../../mod/import.php:493 -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. Only identity and connections/relationships will " -"be imported. Importation of content is not yet available." -msgstr "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte." - -#: ../../mod/import.php:494 -msgid "File to Upload" -msgstr "Fil att ladda upp" - -#: ../../mod/import.php:495 -msgid "Or provide the old server/hub details" -msgstr "Eller ge uppgifter om den gamla servern/hubben" - -#: ../../mod/import.php:496 -msgid "Your old identity address (xyz@example.com)" -msgstr "Din gamla identitetsadress (xyz@example.com)" - -#: ../../mod/import.php:497 -msgid "Your old login email address" -msgstr "Din gamla e-postadress för inloggning" - -#: ../../mod/import.php:498 -msgid "Your old login password" -msgstr "Ditt gamla inloggningslösenord" - -#: ../../mod/import.php:499 -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 "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media." - -#: ../../mod/import.php:500 -msgid "Make this hub my primary location" -msgstr "Gör den här hubben till min primära plats" - -#: ../../mod/import.php:501 -msgid "Import existing posts if possible" -msgstr "Importera befintliga inlägg om möjligt" - -#: ../../mod/locs.php:21 ../../mod/locs.php:52 -msgid "Location not found." -msgstr "Platsen hittades inte." - -#: ../../mod/locs.php:56 -msgid "Primary location cannot be removed." -msgstr "Huvudplatsen kan inte tas bort." - -#: ../../mod/locs.php:88 -msgid "No locations found." -msgstr "Inga platser hittades." - -#: ../../mod/locs.php:101 -msgid "Manage Channel Locations" -msgstr "Hantera kanalplatser" - -#: ../../mod/locs.php:102 -msgid "Location (address)" -msgstr "Plats (adress)" - -#: ../../mod/locs.php:103 -msgid "Primary Location" -msgstr "Huvudplats" - -#: ../../mod/locs.php:104 -msgid "Drop location" -msgstr "Ta bort plats" - -#: ../../mod/thing.php:96 -msgid "Thing updated" -msgstr "Föremål uppdaterat" - -#: ../../mod/thing.php:156 -msgid "Object store: failed" -msgstr "Objektlagring: misslyckades" - -#: ../../mod/thing.php:160 -msgid "Thing added" -msgstr "Föremål tillagt" - -#: ../../mod/thing.php:180 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../mod/thing.php:232 -msgid "Show Thing" -msgstr "Visa föremål" - -#: ../../mod/thing.php:239 -msgid "item not found." -msgstr "föremål hittades inte." - -#: ../../mod/thing.php:270 -msgid "Edit Thing" -msgstr "Redigera föremål" - -#: ../../mod/thing.php:272 ../../mod/thing.php:319 -msgid "Select a profile" -msgstr "Välj en profil" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Post an activity" -msgstr "Posta en aktivitet" - -#: ../../mod/thing.php:276 ../../mod/thing.php:322 -msgid "Only sends to viewers of the applicable profile" -msgstr "Skickar bara till de som tittar på den aktuella profilen" - -#: ../../mod/thing.php:278 ../../mod/thing.php:324 -msgid "Name of thing e.g. something" -msgstr "Namn på föremål, t.ex. någonting" - -#: ../../mod/thing.php:280 ../../mod/thing.php:325 -msgid "URL of thing (optional)" -msgstr "URL för föremål (frivilligt)" - -#: ../../mod/thing.php:282 ../../mod/thing.php:326 -msgid "URL for photo of thing (optional)" -msgstr "URL för foto på föremål (frivilligt)" - -#: ../../mod/thing.php:317 -msgid "Add Thing to your Profile" -msgstr "Lägg till föremål till din profil" - -#: ../../mod/layouts.php:110 -msgid "Help with this feature" -msgstr "Hjälp för den här funktionen" - -#: ../../mod/layouts.php:130 -msgid "Layout Name" -msgstr "Layoutnamn" - -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s taggade%2$ss %3$s med %4$s" - -#: ../../mod/connedit.php:252 -msgid "is now connected to" -msgstr "har nu kontakt med" - -#: ../../mod/connedit.php:365 -msgid "Could not access address book record." -msgstr "Kunde inte komma åt adressboksuppgifter." - -#: ../../mod/connedit.php:379 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Uppdatering misslyckades - kanalen är inte tillgänglig." - -#: ../../mod/connedit.php:386 -msgid "Channel has been unblocked" -msgstr "Kanalen är inte längre blockerad" - -#: ../../mod/connedit.php:387 -msgid "Channel has been blocked" -msgstr "Kanalen har blockerats" - -#: ../../mod/connedit.php:391 ../../mod/connedit.php:403 -#: ../../mod/connedit.php:415 ../../mod/connedit.php:427 -#: ../../mod/connedit.php:443 -msgid "Unable to set address book parameters." -msgstr "Kunde inte ställa in adressboksparametrar." - -#: ../../mod/connedit.php:398 -msgid "Channel has been unignored" -msgstr "Kanalen ignoreras inte längre" - -#: ../../mod/connedit.php:399 -msgid "Channel has been ignored" -msgstr "Kanalen har ignorerats" - -#: ../../mod/connedit.php:410 -msgid "Channel has been unarchived" -msgstr "Kanalen arkiveras inte längre" - -#: ../../mod/connedit.php:411 -msgid "Channel has been archived" -msgstr "Kanalen har arkiverats" - -#: ../../mod/connedit.php:422 -msgid "Channel has been unhidden" -msgstr "Kanalen döljs inte längre" - -#: ../../mod/connedit.php:423 -msgid "Channel has been hidden" -msgstr "Kanalen har dolts" - -#: ../../mod/connedit.php:438 -msgid "Channel has been approved" -msgstr "Kanalen har godkänts" - -#: ../../mod/connedit.php:439 -msgid "Channel has been unapproved" -msgstr "Kanalen är inte godkänd längre" - -#: ../../mod/connedit.php:467 -msgid "Connection has been removed." -msgstr "Kontakten har tagits bort." - -#: ../../mod/connedit.php:487 -#, php-format -msgid "View %s's profile" -msgstr "Visa %ss profil" - -#: ../../mod/connedit.php:491 -msgid "Refresh Permissions" -msgstr "Uppdatera behörigheter" - -#: ../../mod/connedit.php:494 -msgid "Fetch updated permissions" -msgstr "Hämta uppdaterade behörigheter" - -#: ../../mod/connedit.php:498 -msgid "Recent Activity" -msgstr "Senaste aktiviteten" - -#: ../../mod/connedit.php:501 -msgid "View recent posts and comments" -msgstr "Visa de senaste inläggen och kommentarerna" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "Avblockera" - -#: ../../mod/connedit.php:507 ../../mod/connedit.php:694 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "Blockera" - -#: ../../mod/connedit.php:510 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blockera (eller ta bort blockering av) all kommunikation med den här kontakten" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -msgid "Unignore" -msgstr "Sluta att ignorera" - -#: ../../mod/connedit.php:514 ../../mod/connedit.php:695 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorera" - -#: ../../mod/connedit.php:517 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorera (eller sluta att ignorera) all inkommande kommunikation från den här kontakten" - -#: ../../mod/connedit.php:520 -msgid "Unarchive" -msgstr "Sluta att arkivera" - -#: ../../mod/connedit.php:520 -msgid "Archive" -msgstr "Arkivera" - -#: ../../mod/connedit.php:523 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Arkivera (eller sluta att arkivera) den här kontakten - märk kanalen som död men behåll innehåll" - -#: ../../mod/connedit.php:526 -msgid "Unhide" -msgstr "Sluta att dölja" - -#: ../../mod/connedit.php:526 -msgid "Hide" -msgstr "Dölj" - -#: ../../mod/connedit.php:529 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Dölj eller sluta att dölja den här kontakten från dina övriga kontakter" - -#: ../../mod/connedit.php:536 -msgid "Delete this connection" -msgstr "Ta bort den här kontakten" - -#: ../../mod/connedit.php:611 ../../mod/connedit.php:649 -msgid "Approve this connection" -msgstr "Godkänn den här kontakten" - -#: ../../mod/connedit.php:611 -msgid "Accept connection to allow communication" -msgstr "Acceptera kontakten för att tillåta kommunikation" - -#: ../../mod/connedit.php:627 -#, php-format -msgid "Connections: settings for %s" -msgstr "Kontakter: inställningar för %s" - -#: ../../mod/connedit.php:628 -msgid "Apply these permissions automatically" -msgstr "Använd de här rättigheterna automatiskt" - -#: ../../mod/connedit.php:632 -msgid "Apply the permissions indicated on this page to all new connections." -msgstr "Använd rättigheterna angivna på den här sidan för alla nya kontakter." - -#: ../../mod/connedit.php:636 -msgid "Slide to adjust your degree of friendship" -msgstr "Dra för att justera er vänskapsnivå" - -#: ../../mod/connedit.php:637 ../../mod/rate.php:147 -msgid "Rating (this information is public)" -msgstr "Betyg (den här informationen är offentlig)" - -#: ../../mod/connedit.php:638 ../../mod/rate.php:148 -msgid "Optionally explain your rating (this information is public)" -msgstr "Frivillig kommentar till betyget (den här informationen är offentlig)" - -#: ../../mod/connedit.php:645 -msgid "" -"Default permissions for your channel type have (just) been applied. They " -"have not yet been submitted. Please review the permissions on this page and " -"make any desired changes at this time. This new connection may not " -"be able to communicate with you until you submit this page, which will " -"install and apply the selected permissions." -msgstr "Standardbehörigheterna för din kanaltyp har (precis) tillämpats. De har ännu inte sparats. Titta igenom behörigheterna på den här sidan och gör önskade ändringar nu. Den här kontakten kan inte kommunicera med dig förrän du sparar den här sidan, då de valda behörigheterna installeras och träder i kraft." - -#: ../../mod/connedit.php:648 -msgid "inherited" -msgstr "ärvd" - -#: ../../mod/connedit.php:651 -msgid "Connection has no individual permissions!" -msgstr "Kontakten har inga individuella behörigheter!" - -#: ../../mod/connedit.php:652 -msgid "" -"This may be appropriate based on your privacy " -"settings, though you may wish to review the \"Advanced Permissions\"." -msgstr "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"." - -#: ../../mod/connedit.php:654 -msgid "Profile Visibility" -msgstr "Profilsynlighet" - -#: ../../mod/connedit.php:655 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt." - -#: ../../mod/connedit.php:656 -msgid "Contact Information / Notes" -msgstr "Kontaktinformation / anteckningar" - -#: ../../mod/connedit.php:657 -msgid "Edit contact notes" -msgstr "Redigera anteckningar för kontakten" - -#: ../../mod/connedit.php:659 -msgid "Their Settings" -msgstr "Deras inställningar" - -#: ../../mod/connedit.php:660 -msgid "My Settings" -msgstr "Mina inställningar" - -#: ../../mod/connedit.php:662 -msgid "" -"Default permissions for this channel type have (just) been applied. They " -"have not been saved and there are currently no stored default " -"permissions. Please review/edit the applied settings and click [Submit] to " -"finalize." -msgstr "Standardbehörigheterna för den här kanaltypen har (precis) tillämpats. De har inte sparats och det finns för närvarande inga sparade standardbehörigheter. Titta igenom/ändra de tillämpade inställningarna och klicka [Spara] för att avsluta." - -#: ../../mod/connedit.php:663 -msgid "Clear/Disable Automatic Permissions" -msgstr "Rensa/inaktivera automatiska behörigheter" - -#: ../../mod/connedit.php:664 -msgid "Forum Members" -msgstr "Forummedlemmar" - -#: ../../mod/connedit.php:665 -msgid "Soapbox" -msgstr "Talarstol" - -#: ../../mod/connedit.php:666 -msgid "Full Sharing (typical social network permissions)" -msgstr "Full delning (typiska behörigheter för sociala nätverk)" - -#: ../../mod/connedit.php:667 -msgid "Cautious Sharing " -msgstr "Försiktig delning" - -#: ../../mod/connedit.php:668 -msgid "Follow Only" -msgstr "Följ endast" - -#: ../../mod/connedit.php:669 -msgid "Individual Permissions" -msgstr "Individuella behörigheter" - -#: ../../mod/connedit.php:670 -msgid "" -"Some permissions may be inherited from your channel privacy settings, which have higher priority than " -"individual settings. Changing those inherited settings on this page will " -"have no effect." -msgstr "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt." - -#: ../../mod/connedit.php:671 -msgid "Advanced Permissions" -msgstr "Avancerade behörighetsinställningar" - -#: ../../mod/connedit.php:672 -msgid "Simple Permissions (select one and submit)" -msgstr "Enkla behörighetsinställningar (välj en och spara)" - -#: ../../mod/connedit.php:676 -#, php-format -msgid "Visit %s's profile - %s" -msgstr "Besök %ss profil - %s" - -#: ../../mod/connedit.php:677 -msgid "Block/Unblock contact" -msgstr "Blockera/häv blockering av kontakt" - -#: ../../mod/connedit.php:678 -msgid "Ignore contact" -msgstr "Ignorera kontakt" - -#: ../../mod/connedit.php:679 -msgid "Repair URL settings" -msgstr "Reparera URL-inställningar" - -#: ../../mod/connedit.php:680 -msgid "View conversations" -msgstr "Visa konversationer" - -#: ../../mod/connedit.php:682 -msgid "Delete contact" -msgstr "Ta bort kontakt" - -#: ../../mod/connedit.php:686 -msgid "Last update:" -msgstr "Senaste uppdatering:" - -#: ../../mod/connedit.php:688 -msgid "Update public posts" -msgstr "Uppdatera offentliga inlägg" - -#: ../../mod/connedit.php:690 -msgid "Update now" -msgstr "Uppdatera nu" - -#: ../../mod/connedit.php:696 -msgid "Currently blocked" -msgstr "Blockerad" - -#: ../../mod/connedit.php:697 -msgid "Currently ignored" -msgstr "Ignorerad" - -#: ../../mod/connedit.php:698 -msgid "Currently archived" -msgstr "Arkiverad" - -#: ../../mod/connedit.php:699 -msgid "Currently pending" -msgstr "Inväntar svar" - -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tagg borttagen" - -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Ta bort innehållstagg" - -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Välj en tagg att ta bort: " - -#: ../../mod/admin.php:52 -msgid "Theme settings updated." -msgstr "Temainställningar uppdaterade." - -#: ../../mod/admin.php:97 ../../mod/admin.php:415 -msgid "Site" -msgstr "Server" - -#: ../../mod/admin.php:98 -msgid "Accounts" -msgstr "Konton" - -#: ../../mod/admin.php:99 ../../mod/admin.php:863 -msgid "Channels" -msgstr "Kanaler" - -#: ../../mod/admin.php:100 ../../mod/admin.php:954 ../../mod/admin.php:996 -msgid "Plugins" -msgstr "Tillägg" - -#: ../../mod/admin.php:101 ../../mod/admin.php:1159 ../../mod/admin.php:1195 -msgid "Themes" -msgstr "Teman" - -#: ../../mod/admin.php:102 ../../mod/admin.php:517 -msgid "Server" -msgstr "Server" - -#: ../../mod/admin.php:103 -msgid "Profile Config" -msgstr "Profilkonfiguration" - -#: ../../mod/admin.php:104 -msgid "DB updates" -msgstr "Databasuppdateringar" - -#: ../../mod/admin.php:118 ../../mod/admin.php:125 ../../mod/admin.php:1282 -msgid "Logs" -msgstr "Loggar" - -#: ../../mod/admin.php:124 -msgid "Plugin Features" -msgstr "Tilläggsfunktioner" - -#: ../../mod/admin.php:126 -msgid "User registrations waiting for confirmation" -msgstr "Användarregistreringar som behöver bekräftas" - -#: ../../mod/admin.php:206 -msgid "Message queues" -msgstr "Meddelandeköer" - -#: ../../mod/admin.php:211 ../../mod/admin.php:414 ../../mod/admin.php:516 -#: ../../mod/admin.php:726 ../../mod/admin.php:862 ../../mod/admin.php:953 -#: ../../mod/admin.php:995 ../../mod/admin.php:1158 ../../mod/admin.php:1194 -#: ../../mod/admin.php:1281 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "Sammanfattning" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "Registrerade användare" - -#: ../../mod/admin.php:216 ../../mod/admin.php:520 -msgid "Pending registrations" -msgstr "Pågående registreringar" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "Version" - -#: ../../mod/admin.php:219 ../../mod/admin.php:521 -msgid "Active plugins" -msgstr "Aktiva tillägg" - -#: ../../mod/admin.php:330 -msgid "Site settings updated." -msgstr "Serverinställningar uppdaterade." - -#: ../../mod/admin.php:369 -msgid "experimental" -msgstr "experimentellt" - -#: ../../mod/admin.php:371 -msgid "unsupported" -msgstr "stöds ej" - -#: ../../mod/admin.php:395 -msgid "Yes - with approval" -msgstr "Ja - med godkännande" - -#: ../../mod/admin.php:401 -msgid "My site is not a public server" -msgstr "Min server är inte offentlig" - -#: ../../mod/admin.php:402 -msgid "My site has paid access only" -msgstr "Min server har endast åtkomst mot betalning" - -#: ../../mod/admin.php:403 -msgid "My site has free access only" -msgstr "Min server har endast gratis åtkomst" - -#: ../../mod/admin.php:404 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Min server erbjuder gratis konton med uppgradering mot betalning" - -#: ../../mod/admin.php:418 -msgid "File upload" -msgstr "Filuppladdning" - -#: ../../mod/admin.php:419 -msgid "Policies" -msgstr "Policyer" - -#: ../../mod/admin.php:424 -msgid "Site name" -msgstr "Servernamn" - -#: ../../mod/admin.php:425 -msgid "Banner/Logo" -msgstr "Banner/logga" - -#: ../../mod/admin.php:426 -msgid "Administrator Information" -msgstr "Administratörsinformation" - -#: ../../mod/admin.php:426 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinfo till sidadministratörer. Visas på sidinfosidan. BBCode kan användas här" - -#: ../../mod/admin.php:427 -msgid "System language" -msgstr "Systemspråk" - -#: ../../mod/admin.php:428 -msgid "System theme" -msgstr "Systemtema" - -#: ../../mod/admin.php:428 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Förvalt systemtema - kan åsidosättas i användarprofiler - ändra temainställningar" - -#: ../../mod/admin.php:429 -msgid "Mobile system theme" -msgstr "Mobilt systemtema" - -#: ../../mod/admin.php:429 -msgid "Theme for mobile devices" -msgstr "Tema för mobila enheter" - -#: ../../mod/admin.php:431 -msgid "Enable Diaspora Protocol" -msgstr "Aktivera protokoll för Diaspora" - -#: ../../mod/admin.php:431 -msgid "Communicate with Diaspora and Friendica - experimental" -msgstr "Kommunicera med Diaspora och Friendica - experimentellt" - -#: ../../mod/admin.php:432 -msgid "Allow Feeds as Connections" -msgstr "Tillåt flöden som kontakter" - -#: ../../mod/admin.php:432 -msgid "(Heavy system resource usage)" -msgstr "(systemresurskrävande)" - -#: ../../mod/admin.php:433 -msgid "Maximum image size" -msgstr "Maximal bildstorlek" - -#: ../../mod/admin.php:433 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximal storlek i byte för uppladdade bilder. Standard är 0, vilket innebär ingen storleksbegränsning." - -#: ../../mod/admin.php:434 -msgid "Does this site allow new member registration?" -msgstr "Tillåter den här servern nya medlemmar att registrera sig?" - -#: ../../mod/admin.php:435 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Vilket beskriver bäst kontotypen som erbjuds på den här hubben?" - -#: ../../mod/admin.php:436 -msgid "Register text" -msgstr "Registreringstext" - -#: ../../mod/admin.php:436 -msgid "Will be displayed prominently on the registration page." -msgstr "Visas tydligt på registreringssidan." - -#: ../../mod/admin.php:437 -msgid "Accounts abandoned after x days" -msgstr "Konto övergivet efter x dagar" - -#: ../../mod/admin.php:437 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Slösar inte systemresurser genom att fråga externa servrar efter övergivna konton. 0 innebär ingen tidsbegränsning." - -#: ../../mod/admin.php:438 -msgid "Allowed friend domains" -msgstr "Tillåtna vändomäner" - -#: ../../mod/admin.php:438 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Kommaseparerad lista med domäner som tillåts att upprätta ett vänförhållande med den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." - -#: ../../mod/admin.php:439 -msgid "Allowed email domains" -msgstr "Tillåtna e-postdomäner" - -#: ../../mod/admin.php:439 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Kommaseparerad lista med domäner som tillåts i e-postadresser för registreringar på den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner." - -#: ../../mod/admin.php:440 -msgid "Not allowed email domains" -msgstr "Otillåtna e-postdomäner" - -#: ../../mod/admin.php:440 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Kommaseparerad lista med domäner som inte tillåts i e-postadresser för registrering på den här webbplatsen. Jokertecken är tillåtna. Töm för att tillåta alla domäner såvida inte tillåtna domäner har angivits." - -#: ../../mod/admin.php:441 -msgid "Block public" -msgstr "Blockera offentlig åtkomst" - -#: ../../mod/admin.php:441 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Välj för att blockera åtkomst till alla personliga sidor som annars skulle vara offentliga på den här servern om man inte är inloggad." - -#: ../../mod/admin.php:442 -msgid "Verify Email Addresses" -msgstr "Bekräfta e-postadress" - -#: ../../mod/admin.php:442 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Välj för att bekräfta e-postadresser som används för kontoregistrering (rekommenderas)." - -#: ../../mod/admin.php:443 -msgid "Force publish" -msgstr "Tvinga publicering" - -#: ../../mod/admin.php:443 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Välj för att tvinga alla profiler på den här servern att listas i serverkatalogen." - -#: ../../mod/admin.php:444 -msgid "Disable discovery tab" -msgstr "Inaktivera upptäck-fliken" - -#: ../../mod/admin.php:444 -msgid "" -"Remove the tab in the network view with public content pulled from sources " -"chosen for this site." -msgstr "Ta bort fliken i nätverksvyn med offentligt innehåll som hämtas från källor valda för den här servern." - -#: ../../mod/admin.php:445 -msgid "No login on Homepage" -msgstr "Ingen inloggning på hemsidan" - -#: ../../mod/admin.php:445 -msgid "" -"Check to hide the login form from your sites homepage when visitors arrive " -"who are not logged in (e.g. when you put the content of the homepage in via " -"the site channel)." -msgstr "Välj för att gömma inloggningsformuläret från serverns hemsida för oinloggade besökare (t.ex. när du lägger in hemsideinnehållet via serverkanalen)." - -#: ../../mod/admin.php:447 -msgid "Proxy user" -msgstr "Proxyanvändare" - -#: ../../mod/admin.php:448 -msgid "Proxy URL" -msgstr "Proxy-URL" - -#: ../../mod/admin.php:449 -msgid "Network timeout" -msgstr "Nätverkstimeout" - -#: ../../mod/admin.php:449 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Värde i sekunder. Sätt till 0 för obegränsat (ej rekommenderat)." - -#: ../../mod/admin.php:450 -msgid "Delivery interval" -msgstr "Leveransintervall" - -#: ../../mod/admin.php:450 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Fördröj leveransprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Rekommenderat: 4-5 för delade värdar, 2-3 för virtuella privata servrar. 0-1 för stora dedikerade servrar." - -#: ../../mod/admin.php:451 -msgid "Poll interval" -msgstr "Hämtningsintervall" - -#: ../../mod/admin.php:451 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Fördröj hämtningsprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Om 0 används leveransintervallet." - -#: ../../mod/admin.php:452 -msgid "Maximum Load Average" -msgstr "Maximal genomsnittsbelastning" - -#: ../../mod/admin.php:452 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximal systembelastning innan leverans- och hämtningsprocesser skjuts upp - standard är 50." - -#: ../../mod/admin.php:508 -msgid "No server found" -msgstr "Ingen server hittad" - -#: ../../mod/admin.php:515 ../../mod/admin.php:740 -msgid "ID" -msgstr "ID" - -#: ../../mod/admin.php:515 -msgid "for channel" -msgstr "för kanal" - -#: ../../mod/admin.php:515 -msgid "on server" -msgstr "på server" - -#: ../../mod/admin.php:515 -msgid "Status" -msgstr "Status" - -#: ../../mod/admin.php:536 -msgid "Update has been marked successful" -msgstr "Uppdatering har markerats som genomförd" - -#: ../../mod/admin.php:546 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Körning av %s misslyckades. Kontrollera systemloggarna." - -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Uppdatering %s genomfördes utan problem." - -#: ../../mod/admin.php:553 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Uppdatering %s returnerade ingen status. Oklart om den lyckades." - -#: ../../mod/admin.php:556 -#, php-format -msgid "Update function %s could not be found." -msgstr "Uppdateringsfunktion %s kunde inte hittas." - -#: ../../mod/admin.php:571 -msgid "No failed updates." -msgstr "Inga misslyckade uppdateringar." - -#: ../../mod/admin.php:575 -msgid "Failed Updates" -msgstr "Misslyckade uppdateringar" - -#: ../../mod/admin.php:577 -msgid "Mark success (if update was manually applied)" -msgstr "Markera som genomförd (om uppdateringen gjordes manuellt)" - -#: ../../mod/admin.php:578 -msgid "Attempt to execute this update step automatically" -msgstr "Försök att köra den här uppdateringen automatiskt" - -#: ../../mod/admin.php:604 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s användare blockerad/avblockerad" -msgstr[1] "%s användare blockerade/avblockerade" - -#: ../../mod/admin.php:611 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s användare borttagen" -msgstr[1] "%s användare borttagna" - -#: ../../mod/admin.php:640 -msgid "Account not found" -msgstr "Konto hittas inte" - -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' unblocked" -msgstr "Användare '%s' avblockerad" - -#: ../../mod/admin.php:660 -#, php-format -msgid "User '%s' blocked" -msgstr "Användare '%s' blockerad" - -#: ../../mod/admin.php:727 ../../mod/admin.php:739 -msgid "Users" -msgstr "Användare" - -#: ../../mod/admin.php:729 ../../mod/admin.php:865 -msgid "select all" -msgstr "välj alla" - -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "Användarregistreringar som inväntar bekräftelse" - -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Ansökningsdatum" - -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "Inga registreringar." - -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "Godkänn" - -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Avslå" - -#: ../../mod/admin.php:740 -msgid "Register date" -msgstr "Registreringsdatum" - -#: ../../mod/admin.php:740 -msgid "Last login" -msgstr "Senaste inloggning" - -#: ../../mod/admin.php:740 -msgid "Expires" -msgstr "Upphör att gälla" - -#: ../../mod/admin.php:740 -msgid "Service Class" -msgstr "Tjänsteklass" - -#: ../../mod/admin.php:742 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valda användare kommer att tas bort!\\n\\nAllt dessa användare har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:743 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Användaren {0} kommer att tas bort!\\n\\nAllt den här användaren har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:776 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanal censurerad/avcensurerad" -msgstr[1] "%s kanaler censurerade/avcensurerade" - -#: ../../mod/admin.php:783 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanal borttagen" -msgstr[1] "%s kanaler borttagna" - -#: ../../mod/admin.php:802 -msgid "Channel not found" -msgstr "Kanal hittas inte" - -#: ../../mod/admin.php:813 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanalen '%s' togs bort" - -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' avcensurerad" - -#: ../../mod/admin.php:824 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' censurerad" - -#: ../../mod/admin.php:867 -msgid "Censor" -msgstr "Censurera" - -#: ../../mod/admin.php:868 -msgid "Uncensor" -msgstr "Avcensurera" - -#: ../../mod/admin.php:871 -msgid "UID" -msgstr "UID" - -#: ../../mod/admin.php:871 ../../mod/profiles.php:447 -msgid "Address" -msgstr "Adress" - -#: ../../mod/admin.php:873 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Valda kanaler kommer att tas bort!\\n\\nAllt som har postats i de kanalerna på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:874 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanalen {0} kommer att tas bort!\\n\\nAllt som har postats i den här kanalen på den här servern kommer att raderas permanent!\\n\\nÄr du säker?" - -#: ../../mod/admin.php:913 -#, php-format -msgid "Plugin %s disabled." -msgstr "Tillägg %s inaktiverat." - -#: ../../mod/admin.php:917 -#, php-format -msgid "Plugin %s enabled." -msgstr "Tillägg %s aktiverat." - -#: ../../mod/admin.php:927 ../../mod/admin.php:1129 -msgid "Disable" -msgstr "Inaktivera" - -#: ../../mod/admin.php:929 ../../mod/admin.php:1131 -msgid "Enable" -msgstr "Aktivera" - -#: ../../mod/admin.php:955 ../../mod/admin.php:1160 -msgid "Toggle" -msgstr "Växla" - -#: ../../mod/admin.php:963 ../../mod/admin.php:1170 -msgid "Author: " -msgstr "Författare:" - -#: ../../mod/admin.php:964 ../../mod/admin.php:1171 -msgid "Maintainer: " -msgstr "Underhållare:" - -#: ../../mod/admin.php:1093 -msgid "No themes found." -msgstr "Inga teman funna." - -#: ../../mod/admin.php:1152 -msgid "Screenshot" -msgstr "Skärmdump" - -#: ../../mod/admin.php:1200 -msgid "[Experimental]" -msgstr "[Experimentellt]" - -#: ../../mod/admin.php:1201 -msgid "[Unsupported]" -msgstr "[Utan support]" - -#: ../../mod/admin.php:1228 -msgid "Log settings updated." -msgstr "Logginställningar uppdaterade." - -#: ../../mod/admin.php:1284 -msgid "Clear" -msgstr "Rensa" - -#: ../../mod/admin.php:1290 -msgid "Debugging" -msgstr "Avlusning" - -#: ../../mod/admin.php:1291 -msgid "Log file" -msgstr "Loggfil" - -#: ../../mod/admin.php:1291 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Måste vara skrivbar för webbservern. Anges relativt Reds toppkatalog." - -#: ../../mod/admin.php:1292 -msgid "Log level" -msgstr "Loggnivå" - -#: ../../mod/admin.php:1339 -msgid "New Profile Field" -msgstr "Nytt profilfält" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "Field nickname" -msgstr "Smeknamn på fält" - -#: ../../mod/admin.php:1340 ../../mod/admin.php:1361 -msgid "System name of field" -msgstr "Systemnamn på fält" - -#: ../../mod/admin.php:1341 ../../mod/admin.php:1362 -msgid "Input type" -msgstr "Datatyp" - -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Field Name" -msgstr "Fältnamn" - -#: ../../mod/admin.php:1342 ../../mod/admin.php:1363 -msgid "Label on profile pages" -msgstr "Beteckning på profilsidor" - -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Help text" -msgstr "Hjälptext" - -#: ../../mod/admin.php:1343 ../../mod/admin.php:1364 -msgid "Additional info (optional)" -msgstr "Ytterligare info (frivilligt)" - -#: ../../mod/admin.php:1354 -msgid "Field definition not found" -msgstr "Fältdefinition hittades inte" - -#: ../../mod/admin.php:1360 -msgid "Edit Profile Field" -msgstr "Redigera profilfält" - -#: ../../mod/menu.php:31 -msgid "Menu updated." -msgstr "Meny uppdaterad." - -#: ../../mod/menu.php:35 -msgid "Unable to update menu." -msgstr "Kunde inte uppdatera meny." - -#: ../../mod/menu.php:40 -msgid "Menu created." -msgstr "Meny skapad." - -#: ../../mod/menu.php:44 -msgid "Unable to create menu." -msgstr "Kunde inte skapa meny." - -#: ../../mod/menu.php:76 -msgid "Manage Menus" -msgstr "Hantera menyer" - -#: ../../mod/menu.php:79 -msgid "Drop" -msgstr "Ta bort" - -#: ../../mod/menu.php:81 -msgid "Bookmarks allowed" -msgstr "Bokmärken tillåtna" - -#: ../../mod/menu.php:82 -msgid "Create a new menu" -msgstr "Skapa en ny meny" - -#: ../../mod/menu.php:83 -msgid "Delete this menu" -msgstr "Ta bort den här menyn" - -#: ../../mod/menu.php:84 ../../mod/menu.php:125 -msgid "Edit menu contents" -msgstr "Redigera menyinnehåll" - -#: ../../mod/menu.php:85 -msgid "Edit this menu" -msgstr "Redigera den här menyn" - -#: ../../mod/menu.php:96 -msgid "New Menu" -msgstr "Ny meny" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Menu name" -msgstr "Menynamn" - -#: ../../mod/menu.php:97 ../../mod/menu.php:126 -msgid "Must be unique, only seen by you" -msgstr "Måste vara unikt, ses endast av dig" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title" -msgstr "Menytitel" - -#: ../../mod/menu.php:98 ../../mod/menu.php:127 -msgid "Menu title as seen by others" -msgstr "Menytitel som andra ser den" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Allow bookmarks" -msgstr "Tillåt bokmärken" - -#: ../../mod/menu.php:99 ../../mod/menu.php:128 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menyn kan användas för att spara bokmärken" - -#: ../../mod/menu.php:114 -msgid "Menu deleted." -msgstr "Meny borttagen." - -#: ../../mod/menu.php:116 -msgid "Menu could not be deleted." -msgstr "Menyn kunde inte tas bort." - -#: ../../mod/menu.php:122 -msgid "Edit Menu" -msgstr "Redigera meny" - -#: ../../mod/menu.php:124 -msgid "Add or remove entries to this menu" -msgstr "Lägg till eller ta bort menyval" - -#: ../../mod/match.php:16 -msgid "Profile Match" -msgstr "Profilträff" - -#: ../../mod/match.php:24 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil." - -#: ../../mod/match.php:61 -msgid "is interested in:" -msgstr "är intresserad av:" - -#: ../../mod/match.php:69 -msgid "No matches" -msgstr "Inga träffar" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ogiltigt ID på förfrågan." - -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Förkasta" - -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Inga fler systemnotifieringar." - -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systemnotifieringar" - -#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 -#: ../../mod/update_network.php:23 ../../mod/update_search.php:46 -#: ../../mod/update_home.php:21 -msgid "[Embedded content - reload page to view]" -msgstr "[Inbäddat innehåll - ladda om sidan för att visa]" - -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Fortsätt" - -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Inställning av premiumkanal" - -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Aktivera kontaktrestriktioner för premiumkanal" - -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc." - -#: ../../mod/connect.php:90 ../../mod/connect.php:110 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:" - -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentiella kontakter kommer sedan att se följande text innan de går vidare:" - -#: ../../mod/connect.php:92 ../../mod/connect.php:113 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan." - -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Inga specifika instruktioner har givits av kanalägaren.)" - -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Begränsad kanal eller premiumkanal" - -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App installerad." - -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Felaktig app." - -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Bädda in kod" - -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Redigera app" - -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Skapa app" - -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Namn på app" - -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Adress (URL) för app" - -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Fotoikon URL" - -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixlar - valfri" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versions-ID" - -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Pris på app" - -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Adress (URL) för att köpa app" - -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Ange din nuvarande sinnesstämning och visa för dina vänner" - -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Kunde inte hitta mottagare." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Kunde inte kommunicera med den begärda kanalen." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Kan inte bekräfta den begärda kanalen." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka." - -#: ../../mod/mail.php:139 -msgid "Message deleted." -msgstr "Meddelande borttaget." - -#: ../../mod/mail.php:156 -msgid "Message recalled." -msgstr "Meddelande återkallat." - -#: ../../mod/mail.php:225 -msgid "Send Private Message" -msgstr "Skicka privat meddelande." - -#: ../../mod/mail.php:226 ../../mod/mail.php:343 -msgid "To:" -msgstr "Till:" - -#: ../../mod/mail.php:231 ../../mod/mail.php:345 -msgid "Subject:" -msgstr "Ämne:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Skicka" - -#: ../../mod/mail.php:269 -msgid "Message not found." -msgstr "Meddelandet hittades inte." - -#: ../../mod/mail.php:312 -msgid "Delete message" -msgstr "Ta bort meddelande" - -#: ../../mod/mail.php:313 -msgid "Recall message" -msgstr "Återkalla meddelande" - -#: ../../mod/mail.php:315 -msgid "Message has been recalled." -msgstr "Meddelandet har återkallats." - -#: ../../mod/mail.php:332 -msgid "Private Conversation" -msgstr "Privat konversation" - -#: ../../mod/mail.php:336 ../../mod/message.php:72 -msgid "Delete conversation" -msgstr "Ta bort konversation" - -#: ../../mod/mail.php:338 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida." - -#: ../../mod/mail.php:342 -msgid "Send Reply" -msgstr "Skicka svar" - -#: ../../mod/viewconnections.php:58 -msgid "No connections." -msgstr "Inga kontakter." - -#: ../../mod/viewconnections.php:71 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besök %ss profil [%s]" - -#: ../../mod/magic.php:70 -msgid "Hub not found." -msgstr "Hubb hittades inte." - -#: ../../mod/vote.php:97 -msgid "Total votes" -msgstr "Totalt antal röster" - -#: ../../mod/vote.php:98 -msgid "Average Rating" -msgstr "Genomsnittsbetyg" - -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Protokollfel för OpenID. Inget ID returnerades." - -#: ../../mod/wall_upload.php:35 -msgid "Wall Photos" -msgstr "Väggfoton" - -#: ../../mod/message.php:41 -msgid "Conversation removed." -msgstr "Konversation borttagen." - -#: ../../mod/message.php:56 -msgid "No messages." -msgstr "Inga meddelanden." - -#: ../../mod/message.php:74 -msgid "D, d M Y - g:i A" -msgstr "D, j M Y - H:i" - -#: ../../mod/new_channel.php:109 -msgid "Add a Channel" -msgstr "Lägg till en kanal" - -#: ../../mod/new_channel.php:110 -msgid "" -"A channel is your own collection of related web pages. A channel can be used" -" to hold social network profiles, blogs, conversation groups and forums, " -"celebrity pages, and much more. You may create as many channels as your " -"service provider allows." -msgstr "En kanal är din egen samling av relaterade webbsidor. En kanal kan användas för att innehålla sociala nätverksprofiler, bloggar, konversationsgrupper och forum, fansidor, och mycket mer. Du kan skapa så många kanaler som din tjänsteleverantör tillåter." - -#: ../../mod/new_channel.php:113 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" " -msgstr "Exempel: \"Bob Jameson\", \"Lisa och hennes hästar\", \"Fotboll\", \"Flyggruppen\" " - -#: ../../mod/new_channel.php:114 -msgid "Choose a short nickname" -msgstr "Välj ett kort smeknamn" - -#: ../../mod/new_channel.php:115 -msgid "" -"Your nickname will be used to create an easily remembered channel address " -"(like an email address) which you can share with others." -msgstr "Ditt smeknamn används för att skapa en kanaladress som är lätt att komma ihåg (som en e-postadress) som du kan dela med andra." - -#: ../../mod/new_channel.php:116 -msgid "Or import an existing channel from another location" -msgstr "Eller importera en befintlig kanal från en annan plats" - -#: ../../mod/new_channel.php:118 -msgid "" -"Please choose a channel type (such as social networking or community forum) " -"and privacy requirements so we can select the best permissions for you" -msgstr "Välj en kanaltyp (som till exempel socialt nätverkande eller gemenskapsforum) och integritetskrav, så kan vi välja de bästa behörigheterna åt dig" - -#: ../../mod/new_channel.php:119 -msgid "Channel Type" -msgstr "Kanaltyp" - -#: ../../mod/new_channel.php:119 -msgid "Read more about roles" -msgstr "Läs mer om roller" - -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan-sökning" - -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Sök efter xchan som börjar med (eller webbie): " - -#: ../../mod/zfinger.php:23 -msgid "invalid target signature" -msgstr "ogiltig målsignatur" - -#: ../../mod/rate.php:146 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Fjärrkanal [%s] (ännu inte känd på den här webbplatsen)" - -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Kunde inte hitta din hubb." - -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Sändning lyckades." - -#: ../../mod/directory.php:188 ../../mod/profiles.php:728 -msgid "Age: " -msgstr "Ålder:" - -#: ../../mod/directory.php:194 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d betyg" -msgstr[1] "%d betyg" - -#: ../../mod/directory.php:206 -msgid "Gender: " -msgstr "Kön:" - -#: ../../mod/directory.php:208 -msgid "Status: " -msgstr "Status: " - -#: ../../mod/directory.php:210 -msgid "Homepage: " -msgstr "Hemsida: " - -#: ../../mod/directory.php:213 -msgid "Hometown: " -msgstr "Hemort: " - -#: ../../mod/directory.php:215 -msgid "About: " -msgstr "Om: " - -#: ../../mod/directory.php:273 -msgid "Public Forum:" -msgstr "Offentligt forum:" - -#: ../../mod/directory.php:276 -msgid "Keywords: " -msgstr "Nyckelord: " - -#: ../../mod/directory.php:331 -msgid "Finding:" -msgstr "Sökning efter:" - -#: ../../mod/directory.php:336 -msgid "next page" -msgstr "nästa sida" - -#: ../../mod/directory.php:336 -msgid "previous page" -msgstr "föregående sida" - -#: ../../mod/directory.php:353 -msgid "No entries (some entries may be hidden)." -msgstr "Inga resultat (vissa resultat kan vara dolda)." - -#: ../../mod/ratings.php:68 -msgid "No ratings" -msgstr "Inga betyg" - -#: ../../mod/ratings.php:94 -msgid "Ratings" -msgstr "Betyg" - -#: ../../mod/ratings.php:95 -msgid "Rating: " -msgstr "Betyg: " - -#: ../../mod/ratings.php:96 -msgid "Description: " -msgstr "Beskrivning: " - -#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 -#: ../../mod/profiles.php:231 ../../mod/profiles.php:600 -msgid "Profile not found." -msgstr "Profil hittades inte." - -#: ../../mod/profiles.php:38 -msgid "Profile deleted." -msgstr "Profil borttagen." - -#: ../../mod/profiles.php:56 ../../mod/profiles.php:92 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:77 ../../mod/profiles.php:120 -msgid "New profile created." -msgstr "Ny profil skapad." - -#: ../../mod/profiles.php:98 -msgid "Profile unavailable to clone." -msgstr "Profil inte tillgänglig för kloning." - -#: ../../mod/profiles.php:136 -msgid "Profile unavailable to export." -msgstr "Profil inte tillgänglig för export." - -#: ../../mod/profiles.php:241 -msgid "Profile Name is required." -msgstr "Profilnamn krävs." - -#: ../../mod/profiles.php:404 -msgid "Marital Status" -msgstr "Civilstånd" - -#: ../../mod/profiles.php:408 -msgid "Romantic Partner" -msgstr "Romantisk partner" - -#: ../../mod/profiles.php:412 -msgid "Likes" -msgstr "Gillar" - -#: ../../mod/profiles.php:416 -msgid "Dislikes" -msgstr "Ogillar" - -#: ../../mod/profiles.php:420 -msgid "Work/Employment" -msgstr "Arbete/sysselsättning" - -#: ../../mod/profiles.php:423 -msgid "Religion" -msgstr "Religion" - -#: ../../mod/profiles.php:427 -msgid "Political Views" -msgstr "Politisk åskådning" - -#: ../../mod/profiles.php:431 -msgid "Gender" -msgstr "Kön" - -#: ../../mod/profiles.php:435 -msgid "Sexual Preference" -msgstr "Sexuell preferens" - -#: ../../mod/profiles.php:439 -msgid "Homepage" -msgstr "Hemsida" - -#: ../../mod/profiles.php:443 -msgid "Interests" -msgstr "Intressen" - -#: ../../mod/profiles.php:537 -msgid "Profile updated." -msgstr "Profil uppdaterad." - -#: ../../mod/profiles.php:626 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Dölj din kontakt-/vänlista för de som ser den här profilen" - -#: ../../mod/profiles.php:666 -msgid "Edit Profile Details" -msgstr "Redigera profildetaljer" - -#: ../../mod/profiles.php:668 -msgid "View this profile" -msgstr "Visa den här profilen" - -#: ../../mod/profiles.php:670 -msgid "Change Profile Photo" -msgstr "Byt profilfoto" - -#: ../../mod/profiles.php:671 -msgid "Create a new profile using these settings" -msgstr "Skapa en ny profil utifrån de här inställningarna" - -#: ../../mod/profiles.php:672 -msgid "Clone this profile" -msgstr "Klona den här profilen" - -#: ../../mod/profiles.php:673 -msgid "Delete this profile" -msgstr "Ta bort den här profilen" - -#: ../../mod/profiles.php:675 -msgid "Import profile from file" -msgstr "Importera profil från fil" - -#: ../../mod/profiles.php:676 -msgid "Export profile to file" -msgstr "Exportera profil som fil" - -#: ../../mod/profiles.php:677 -msgid "Profile Name:" -msgstr "Profilnamn:" - -#: ../../mod/profiles.php:678 -msgid "Your Full Name:" -msgstr "Ditt fulllständiga namn:" - -#: ../../mod/profiles.php:679 -msgid "Title/Description:" -msgstr "Titel/beskrivning:" - -#: ../../mod/profiles.php:680 -msgid "Your Gender:" -msgstr "Ditt kön:" - -#: ../../mod/profiles.php:681 -msgid "Birthday :" -msgstr "Födelsedag:" - -#: ../../mod/profiles.php:682 -msgid "Street Address:" -msgstr "Gatuadress:" - -#: ../../mod/profiles.php:683 -msgid "Locality/City:" -msgstr "Ort:" - -#: ../../mod/profiles.php:684 -msgid "Postal/Zip Code:" -msgstr "Postnummer:" - -#: ../../mod/profiles.php:685 -msgid "Country:" -msgstr "Land:" - -#: ../../mod/profiles.php:686 -msgid "Region/State:" -msgstr "Region:" - -#: ../../mod/profiles.php:687 -msgid " Marital Status:" -msgstr " Civilstånd:" - -#: ../../mod/profiles.php:688 -msgid "Who: (if applicable)" -msgstr "Vem: (om tillämpligt)" - -#: ../../mod/profiles.php:689 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exempel: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:690 -msgid "Since [date]:" -msgstr "Sedan [datum]" - -#: ../../mod/profiles.php:692 -msgid "Homepage URL:" -msgstr "Hemsideadress:" - -#: ../../mod/profiles.php:695 -msgid "Religious Views:" -msgstr "Religion/livsåskådning:" - -#: ../../mod/profiles.php:696 -msgid "Keywords:" -msgstr "Nyckelord:" - -#: ../../mod/profiles.php:699 -msgid "Example: fishing photography software" -msgstr "Exempel: fiske fotografering mjukvara" - -#: ../../mod/profiles.php:700 -msgid "Used in directory listings" -msgstr "Används i kataloglistningar" - -#: ../../mod/profiles.php:701 -msgid "Tell us about yourself..." -msgstr "Beskriv dig själv..." - -#: ../../mod/profiles.php:702 -msgid "Hobbies/Interests" -msgstr "Fritidssysselsättning/intressen" - -#: ../../mod/profiles.php:703 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformation och sociala nätverk" - -#: ../../mod/profiles.php:704 -msgid "My other channels" -msgstr "Mina andra kanaler" - -#: ../../mod/profiles.php:705 -msgid "Musical interests" -msgstr "Musikintressen" - -#: ../../mod/profiles.php:706 -msgid "Books, literature" -msgstr "Böcker, litteratur" - -#: ../../mod/profiles.php:707 -msgid "Television" -msgstr "Tv" - -#: ../../mod/profiles.php:708 -msgid "Film/dance/culture/entertainment" -msgstr "Film/dans/kultur/underhållning" - -#: ../../mod/profiles.php:709 -msgid "Love/romance" -msgstr "Kärlek/romantik" - -#: ../../mod/profiles.php:710 -msgid "Work/employment" -msgstr "Arbete/sysselsättning" - -#: ../../mod/profiles.php:711 -msgid "School/education" -msgstr "Skola/utbildning" - -#: ../../mod/profiles.php:717 -msgid "This is your default profile." -msgstr "Det här är din standardprofil." - -#: ../../mod/profiles.php:771 -msgid "Edit/Manage Profiles" -msgstr "Redigera/hantera profiler" - -#: ../../mod/profiles.php:772 -msgid "Add profile things" -msgstr "Lägg till profilsaker" - -#: ../../mod/profiles.php:773 -msgid "Include desirable objects in your profile" -msgstr "Inkludera fina prylar i din profil" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ogiltigt profil-ID." - -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Redigera profilsynlighet" - -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klicka på en kontakt för att lägga till eller ta bort." - -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Kan ses av" - -#: ../../mod/poll.php:64 -msgid "Poll" -msgstr "Opinionsundersökning" - -#: ../../mod/poll.php:69 -msgid "View Results" -msgstr "Visa resultat" - -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Borttagning av konto tillåts inte inom 48 timmar efter att kontolösenordet har ändrats." - -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Ta bort kontot" - -#: ../../mod/removeaccount.php:58 -msgid "" -"This will completely remove this account including all its channels from the" -" network. Once this has been done it is not recoverable." -msgstr "Det här kommer att ta bort kontot fullständigt från nätverket, inklusive alla dess kanaler. När detta har gjorts går det inte att ångra." - -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Ta bort kontot, alla dess kanaler och alla kanalkopior från nätverket" - -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Som standard tas bara instanser av kanaler som finns på den här servern bort från nätverket" - -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Inga tjänsteklassbegränsningar hittades." - -#: ../../mod/sharedwithme.php:99 -msgid "Files: shared with me" -msgstr "Filer: delade med mig" - -#: ../../mod/sharedwithme.php:103 -msgid "Remove all files" -msgstr "Ta bort alla filer" - -#: ../../mod/sharedwithme.php:104 -msgid "Remove this file" -msgstr "Ta bort den här filen" - -#: ../../view/theme/apw/php/config.php:202 -#: ../../view/theme/apw/php/config.php:236 -msgid "Schema Default" -msgstr "Schemats standard" - -#: ../../view/theme/apw/php/config.php:203 -msgid "Sans-Serif" -msgstr "Sans-serif" - -#: ../../view/theme/apw/php/config.php:204 -msgid "Monospace" -msgstr "Monospace" - -#: ../../view/theme/apw/php/config.php:259 -#: ../../view/theme/redbasic/php/config.php:102 -msgid "Theme settings" -msgstr "Temainställningar" - -#: ../../view/theme/apw/php/config.php:260 -#: ../../view/theme/redbasic/php/config.php:103 -msgid "Set scheme" -msgstr "Välj variant" - -#: ../../view/theme/apw/php/config.php:261 -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set font-size for posts and comments" -msgstr "Välj textstorlek för inlägg och kommentarer" - -#: ../../view/theme/apw/php/config.php:262 -msgid "Set font face" -msgstr "Välj teckensnitt" - -#: ../../view/theme/apw/php/config.php:263 -msgid "Set iconset" -msgstr "Välj ikontema" - -#: ../../view/theme/apw/php/config.php:264 -msgid "Set big shadow size, default 15px 15px 15px" -msgstr "Välj stor skuggstorlek, standard 15px 15px 15px " - -#: ../../view/theme/apw/php/config.php:265 -msgid "Set small shadow size, default 5px 5px 5px" -msgstr "Välj liten skuggstorlek, standard 5px 5px 5px" - -#: ../../view/theme/apw/php/config.php:266 -msgid "Set shadow color, default #000" -msgstr "Välj skuggfärg, standard #000" - -#: ../../view/theme/apw/php/config.php:267 -msgid "Set radius size, default 5px" -msgstr "Välj radie, standard 5px" - -#: ../../view/theme/apw/php/config.php:268 -msgid "Set line-height for posts and comments" -msgstr "Välj radhöjd för inlägg och kommentarer" - -#: ../../view/theme/apw/php/config.php:269 -msgid "Set background image" -msgstr "Välj bakgrundsbild" - -#: ../../view/theme/apw/php/config.php:270 -msgid "Set background attachment" -msgstr "Välj fixerad bakgrund" - -#: ../../view/theme/apw/php/config.php:271 -msgid "Set background color" -msgstr "Välj bakgrundsfärg" - -#: ../../view/theme/apw/php/config.php:272 -msgid "Set section background image" -msgstr "Välj bakgrundsbild för avsnitt" - -#: ../../view/theme/apw/php/config.php:273 -msgid "Set section background color" -msgstr "Välj bakgrundsfärg för avsnitt" - -#: ../../view/theme/apw/php/config.php:274 -msgid "Set color of items - use hex" -msgstr "Välj färg på inlägg - använd hex" - -#: ../../view/theme/apw/php/config.php:275 -msgid "Set color of links - use hex" -msgstr "Välj färg på länkar - använd hex" - -#: ../../view/theme/apw/php/config.php:276 -msgid "Set max-width for items. Default 400px" -msgstr "Välj största bredd för inlägg. Standard 400px" - -#: ../../view/theme/apw/php/config.php:277 -msgid "Set min-width for items. Default 240px" -msgstr "Välj minsta bredd för inlägg. Standard 240px" - -#: ../../view/theme/apw/php/config.php:278 -msgid "Set the generic content wrapper width. Default 48%" -msgstr "Välj bredd på fältet för allmänt innehåll. Standard 48%" - -#: ../../view/theme/apw/php/config.php:279 -msgid "Set color of fonts - use hex" -msgstr "Välj textfärg - använd hex" - -#: ../../view/theme/apw/php/config.php:280 -msgid "Set background-size element" -msgstr "Välj bakgrundsskala" - -#: ../../view/theme/apw/php/config.php:281 -msgid "Item opacity" -msgstr "Inläggsopacitet" - -#: ../../view/theme/apw/php/config.php:282 -msgid "Display post previews only" -msgstr "Visa endast förhandsgranskning av inlägg" - -#: ../../view/theme/apw/php/config.php:283 -msgid "Display side bar on channel page" -msgstr "Visa sidolist på kanalsidan" - -#: ../../view/theme/apw/php/config.php:284 -msgid "Colour of the navigation bar" -msgstr "Färg på navigeringslisten" - -#: ../../view/theme/apw/php/config.php:285 -msgid "Item float" -msgstr "Flytning för inlägg" - -#: ../../view/theme/apw/php/config.php:286 -msgid "Left offset of the section element" -msgstr "Vänster offset för avsnittselementet" - -#: ../../view/theme/apw/php/config.php:287 -msgid "Right offset of the section element" -msgstr "Höger offset för avsnittselementet" - -#: ../../view/theme/apw/php/config.php:288 -msgid "Section width" -msgstr "Avsnittsbredd" - -#: ../../view/theme/apw/php/config.php:289 -msgid "Left offset of the aside" -msgstr "Vänster offset för sidoelement" - -#: ../../view/theme/apw/php/config.php:290 -msgid "Right offset of the aside element" -msgstr "Höger offset för sidoelement" - -#: ../../view/theme/redbasic/php/config.php:84 -msgid "Light (Hubzilla default)" -msgstr "Light (standard för Hubzilla)" - -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Narrow navbar" -msgstr "Smal navigeringslist" - -#: ../../view/theme/redbasic/php/config.php:105 -msgid "Navigation bar background color" -msgstr "Navigeringslistens bakgrundsfärg" - -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Navigation bar gradient top color" -msgstr "Övre gradientfärg i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:107 -msgid "Navigation bar gradient bottom color" -msgstr "Undre gradientfärg i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:108 -msgid "Navigation active button gradient top color" -msgstr "Övre gradientfärg på aktiv knapp i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:109 -msgid "Navigation active button gradient bottom color" -msgstr "Undre gradientfärg på aktiv knapp i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Navigation bar border color " -msgstr "Färg på navigeringslistens kant" - -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Navigation bar icon color " -msgstr "Färg på ikoner i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar active icon color " -msgstr "Färg på aktiv ikon i navigeringslisten" - -#: ../../view/theme/redbasic/php/config.php:113 -msgid "link color" -msgstr "Länkfärg" - -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Set font-color for banner" -msgstr "Välj textfärg för sidhuvudet" - -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Set the background color" -msgstr "Välj bakgrundsfärg" - -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Set the background image" -msgstr "Välj bakgrundsbild" - -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Set the background color of items" -msgstr "Välj bakgrundsfärg för inlägg" - -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Set the background color of comments" -msgstr "Välj bakgrundsfärg för kommentarer" - -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Set the border color of comments" -msgstr "Välj kantfärg för kommentarer" - -#: ../../view/theme/redbasic/php/config.php:120 -msgid "Set the indent for comments" -msgstr "Välj indrag för kommentarer" - -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set the basic color for item icons" -msgstr "Välj basfärg för inläggsikoner" - -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the hover color for item icons" -msgstr "Välj färg på inläggsikon under muspekare" - -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set font-size for the entire application" -msgstr "Välj textstorlek för hela applikationen" - -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set font-color for posts and comments" -msgstr "Välj textfärg för inlägg och kommentarer" - -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set radius of corners" -msgstr "Välj hörnradie" - -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set shadow depth of photos" -msgstr "Välj skuggdjup för foton" - -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set maximum width of conversation regions" -msgstr "Välj maxbredd på konversationsfält" - -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Center conversation regions" -msgstr "Centrera konversationsfält" - -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set minimum opacity of nav bar - to hide it" -msgstr "Välj lägsta opacitet för navigeringslisten - för att dölja den" - -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set size of conversation author photo" -msgstr "Välj storlek på foto för trådskapare" - -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set size of followup author photos" -msgstr "Välj storlek på svarande personers foton" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Sloppy photo albums" -msgstr "Oordnade fotoalbum" - -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Are you a clean desk or a messy desk person?" -msgstr "Föredrar du ett tomt eller stökigt skrivbord?" - -#: ../../boot.php:1355 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "Uppdatering %s misslyckades. Se felloggar." - -#: ../../boot.php:1358 -#, php-format -msgid "Update Error at %s" -msgstr "Uppdateringsfel på %s" - -#: ../../boot.php:1525 -msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "Skapa ett konto för att komma åt tjänster och applikationer inom Hubzilla" - -#: ../../boot.php:1553 -msgid "Password" -msgstr "Lösenord" - -#: ../../boot.php:1554 -msgid "Remember me" -msgstr "Kom ihåg mig" - -#: ../../boot.php:1557 -msgid "Forgot your password?" -msgstr "Glömt lösenordet?" - -#: ../../boot.php:1650 -msgid "permission denied" -msgstr "behörighet saknas" - -#: ../../boot.php:1651 -msgid "Got Zot?" -msgstr "Got Zot?" - -#: ../../boot.php:2134 -msgid "toggle mobile" -msgstr "växla mobil" diff --git a/view/sv/hstrings.php b/view/sv/hstrings.php deleted file mode 100644 index c0adcb943..000000000 --- a/view/sv/hstrings.php +++ /dev/null @@ -1,2019 +0,0 @@ - "gillar detta", - 1 => "gillar detta", -); -App::$strings["Image/photo"] = "Bild/foto"; -App::$strings["Encrypted content"] = "Krypterat innehåll"; -App::$strings["Install design element: "] = "Installera designelement: "; -App::$strings["QR code"] = "QR-kod"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s skrev följande %2\$s %3\$s"; -App::$strings["post"] = "post"; -App::$strings["Different viewers will see this text differently"] = "Olika betraktare kan se den här texten ollika"; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 skrev:"; -App::$strings["prev"] = "föregående"; -App::$strings["first"] = "första"; -App::$strings["last"] = "sista"; -App::$strings["next"] = "nästa"; -App::$strings["older"] = "äldre"; -App::$strings["newer"] = "nyare"; -App::$strings["No connections"] = "Inga kontakter"; -App::$strings["%d Connection"] = array( - 0 => "%d kontakt", - 1 => "%d kontakter", -); -App::$strings["View Connections"] = "Visa kontakter"; -App::$strings["Search"] = "Sök"; -App::$strings["poke"] = "puffa"; -App::$strings["poked"] = "puffade"; -App::$strings["ping"] = "pinga"; -App::$strings["pinged"] = "pingade"; -App::$strings["prod"] = "stöt till"; -App::$strings["prodded"] = "stötte till"; -App::$strings["slap"] = "daska till"; -App::$strings["slapped"] = "daskade till"; -App::$strings["finger"] = "fingra på"; -App::$strings["fingered"] = "fingrade på"; -App::$strings["rebuff"] = "stöt tillbaka"; -App::$strings["rebuffed"] = "stötte tillbaks"; -App::$strings["happy"] = "glad"; -App::$strings["sad"] = "ledsen"; -App::$strings["mellow"] = "lugn"; -App::$strings["tired"] = "trött"; -App::$strings["perky"] = "uppåt"; -App::$strings["angry"] = "arg"; -App::$strings["stupified"] = "virrig"; -App::$strings["puzzled"] = "förbryllad"; -App::$strings["interested"] = "intresserad"; -App::$strings["bitter"] = "bitter"; -App::$strings["cheerful"] = "munter"; -App::$strings["alive"] = "pigg"; -App::$strings["annoyed"] = "irriterad"; -App::$strings["anxious"] = "bekymrad"; -App::$strings["cranky"] = "grinig"; -App::$strings["disturbed"] = "besvärad"; -App::$strings["frustrated"] = "frustrerad"; -App::$strings["depressed"] = "deprimerad"; -App::$strings["motivated"] = "motiverad"; -App::$strings["relaxed"] = "avslappnad"; -App::$strings["surprised"] = "förvånad"; -App::$strings["Monday"] = "måndag"; -App::$strings["Tuesday"] = "tisdag"; -App::$strings["Wednesday"] = "onsdag"; -App::$strings["Thursday"] = "torsdag"; -App::$strings["Friday"] = "fredag"; -App::$strings["Saturday"] = "lördag"; -App::$strings["Sunday"] = "söndag"; -App::$strings["January"] = "januari"; -App::$strings["February"] = "februari"; -App::$strings["March"] = "mars"; -App::$strings["April"] = "april"; -App::$strings["May"] = "maj"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "augusti"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "december"; -App::$strings["unknown.???"] = "okänt.???"; -App::$strings["bytes"] = "byte"; -App::$strings["remove category"] = "ta bort kategori"; -App::$strings["remove from file"] = "ta bort från fil"; -App::$strings["Click to open/close"] = "Klicka för att öppna/stänga"; -App::$strings["Link to Source"] = "Länk till källa"; -App::$strings["Select a page layout: "] = "Välj en sidlayout: "; -App::$strings["default"] = "standard"; -App::$strings["Page content type: "] = "Typ av sidinnehåll: "; -App::$strings["Select an alternate language"] = "Välj ett alternativt språk"; -App::$strings["photo"] = "foto"; -App::$strings["event"] = "händelse"; -App::$strings["status"] = "status"; -App::$strings["comment"] = "kommentar"; -App::$strings["activity"] = "aktivitet"; -App::$strings["Design"] = "Design"; -App::$strings["Blocks"] = "Block"; -App::$strings["Menus"] = "Menyer"; -App::$strings["Layouts"] = "Layouter"; -App::$strings["Pages"] = "Sidor"; -App::$strings["Collection"] = "Samling"; -App::$strings["New Page"] = "Ny sida"; -App::$strings["Edit"] = "Redigera"; -App::$strings["View"] = "Visa"; -App::$strings["Preview"] = "Förhandsgranska"; -App::$strings["Actions"] = "Åtgärder"; -App::$strings["Page Link"] = "Länk"; -App::$strings["Title"] = "Titel"; -App::$strings["Created"] = "Skapad"; -App::$strings["Edited"] = "Ändrad"; -App::$strings["Embedded content"] = "Inbäddat innehåll"; -App::$strings["Embedding disabled"] = "Inbäddning inaktiverat"; -App::$strings["Permission denied."] = "Behörighet saknas."; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild överskrider webbplatsens storleksbegränsning på %lu byte"; -App::$strings["Image file is empty."] = "Bildfil är tom."; -App::$strings["Unable to process image"] = "Kunde inte bearbeta bild"; -App::$strings["Photo storage failed."] = "Fotolagring misslyckades."; -App::$strings["Photo Albums"] = "Fotoalbum"; -App::$strings["Upload New Photos"] = "Ladda upp nya foton"; -App::$strings["Public Timeline"] = "Offentlig tidslinje"; -App::$strings["Attachments:"] = "Bilagor:"; -App::$strings["l F d, Y \\@ g:i A"] = "l j F Y \\k\\l. H.i"; -App::$strings["Hubzilla event notification:"] = "Händelsenotifiering från Hubzilla:"; -App::$strings["Starts:"] = "Börjar:"; -App::$strings["Finishes:"] = "Slutar:"; -App::$strings["Location:"] = "Plats:"; -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."] = "Formulärets kontrollkod var inte korrekt. Antagligen beror det på att formuläret har varit öppet för länge (> 3 timmar) innan det skickades."; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gillar %2\$ss %3\$s"; -App::$strings["General Features"] = "Allmänna funktioner"; -App::$strings["Content Expiration"] = "Tidsbegränsat innehåll"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ta bort inlägg/kommentarer och/eller privata meddelanden efter en tid"; -App::$strings["Multiple Profiles"] = "Flera profiler"; -App::$strings["Ability to create multiple profiles"] = "Möjlighet att skapa flera profiler"; -App::$strings["Advanced Profiles"] = "Avancerade profiler"; -App::$strings["Additional profile sections and selections"] = "Fler profilinställningar"; -App::$strings["Profile Import/Export"] = "Profilimport/-export"; -App::$strings["Save and load profile details across sites/channels"] = "Spara och ladda profiluppgifter mellan webbplatser/kanaler"; -App::$strings["Web Pages"] = "Webbsidor"; -App::$strings["Provide managed web pages on your channel"] = "Tillhandahåll ordnade webbsidor i din kanal"; -App::$strings["Private Notes"] = "Privata anteckningar"; -App::$strings["Enables a tool to store notes and reminders"] = "Aktivera ett verktyg för att spara anteckningar och påminnelser"; -App::$strings["Navigation Channel Select"] = "Kanalväljare i navigation"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Välj kanal direkt från navigationslistens rullgardinsmeny"; -App::$strings["Extended Identity Sharing"] = "Utökad identitetsdelning"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Dela din identitet med alla webbplatser på Internet. Om inaktiverat är identiteten bara delad med platser i matrisen."; -App::$strings["Expert Mode"] = "Expertläge"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Aktivera expertläge för att tillåta avancerade inställningar"; -App::$strings["Premium Channel"] = "Premiumkanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Låter dig ange begränsningar och villkor för dem som vill ansluta till din kanal"; -App::$strings["Post Composition Features"] = "Skrivfunktioner"; -App::$strings["Use Markdown"] = "Använd Markdown"; -App::$strings["Allow use of \"Markdown\" to format posts"] = "Tillåt att \"Markdown\" används för att formatera inlägg"; -App::$strings["Large Photos"] = "Stora foton"; -App::$strings["Include large (640px) photo thumbnails in posts. If not enabled, use small (320px) photo thumbnails"] = "Inkludera stora (640px) fotominiatyrer i inlägg. Om inte aktiverat används små (320px) fotominiatyrer"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importera kanalinnehåll från andra kanaler eller flöden automatiskt"; -App::$strings["Even More Encryption"] = "Ytterligare kryptering"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Tillåt änd-till-änd-kryptering av innehåll med en delad hemlig nyckel"; -App::$strings["Flag Adult Photos"] = "Flagga vuxenfoton"; -App::$strings["Provide photo edit option to hide adult photos from default album view"] = "Gör det möjligt att inte visa foton som är olämpliga för barn i albums standardvy"; -App::$strings["Network and Stream Filtering"] = "Nätverk och strömfiltrering"; -App::$strings["Search by Date"] = "Sök på datum"; -App::$strings["Ability to select posts by date ranges"] = "Tillåter urval av inlägg baserat på datum"; -App::$strings["Collections Filter"] = "Kretsfilter"; -App::$strings["Enable widget to display Network posts only from selected collections"] = "Aktivera en väljare för att visa nätverksinlägg från enbart valda kretsar"; -App::$strings["Save search terms for re-use"] = "Spara sökuttryck för återanvändning"; -App::$strings["Network Personal Tab"] = "Personlig nätverksflik"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktivera en flik som visar endast de nätverksinlägg som du har deltagit i"; -App::$strings["Network New Tab"] = "Flik för nytt på nätverket"; -App::$strings["Enable tab to display all new Network activity"] = "Aktivera en flik som visar all ny nätverksaktivitet"; -App::$strings["Affinity Tool"] = "Samhörighetsverktyg"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrera strömaktivitet efter hur nära relationen är"; -App::$strings["Suggest Channels"] = "Föreslå kanaler"; -App::$strings["Show channel suggestions"] = "Visa förslag på kanaler"; -App::$strings["Post/Comment Tools"] = "Inläggs-/kommentarsverktyg"; -App::$strings["Tagging"] = "Taggning"; -App::$strings["Ability to tag existing posts"] = "Möjlighet att tagga befintliga inlägg"; -App::$strings["Post Categories"] = "Inläggskategorier"; -App::$strings["Add categories to your posts"] = "Lägg till kategorier till dina inlägg"; -App::$strings["Ability to file posts under folders"] = "Möjlighet att lägga inlägg i mappar"; -App::$strings["Dislike Posts"] = "Ogilla inlägg"; -App::$strings["Ability to dislike posts/comments"] = "Möjlighet att ogilla inlägg/kommentarer"; -App::$strings["Star Posts"] = "Märk inlägg"; -App::$strings["Ability to mark special posts with a star indicator"] = "Möjlighet att märka speciella inlägg med en stjärna"; -App::$strings["Tag Cloud"] = "Taggmoln"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Tillhandahåll ett personligt taggmoln på din kanalsida"; -App::$strings["parent"] = "en nivå upp"; -App::$strings["Principal"] = "Bas"; -App::$strings["Addressbook"] = "Adressbok"; -App::$strings["Calendar"] = "Kalender"; -App::$strings["Schedule Inbox"] = "Schemainkorg"; -App::$strings["Schedule Outbox"] = "Schemautkorg"; -App::$strings["Unknown"] = "Okända"; -App::$strings["%1\$s used"] = "%1\$s använt"; -App::$strings["%1\$s used of %2\$s (%3\$s%)"] = "%1\$s använt av %2\$s (%3\$s%)"; -App::$strings["Files"] = "Filer"; -App::$strings["Total"] = "Totalt"; -App::$strings["Shared"] = "Delat"; -App::$strings["Create"] = "Skapa"; -App::$strings["Upload"] = "Ladda upp"; -App::$strings["Name"] = "Namn"; -App::$strings["Type"] = "Typ"; -App::$strings["Size"] = "Storlek"; -App::$strings["Last Modified"] = "Senast ändrad"; -App::$strings["Delete"] = "Ta bort"; -App::$strings["Create new folder"] = "Skapa ny mapp"; -App::$strings["Upload file"] = "Ladda upp fil"; -App::$strings["%1\$s's bookmarks"] = "%1\$ss bokmärken"; -App::$strings["Frequently"] = "Ofta"; -App::$strings["Hourly"] = "Varje timme"; -App::$strings["Twice daily"] = "Två gånger dagligen"; -App::$strings["Daily"] = "Dagligen"; -App::$strings["Weekly"] = "Varje vecka"; -App::$strings["Monthly"] = "Varje månad"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "E-post"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot!"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Site Admin"] = "Serveradministrator"; -App::$strings["Bookmarks"] = "Bokmärken"; -App::$strings["Address Book"] = "Adressbok"; -App::$strings["Login"] = "Logga in"; -App::$strings["Channel Manager"] = "Kanalhanterare"; -App::$strings["Matrix"] = "Matris"; -App::$strings["Webpages"] = "Webbsidor"; -App::$strings["Channel Home"] = "Kanalhem"; -App::$strings["Profile"] = "Profil"; -App::$strings["Photos"] = "Foton"; -App::$strings["Events"] = "Händelser"; -App::$strings["Directory"] = "Katalog"; -App::$strings["Help"] = "Hjälp"; -App::$strings["Mail"] = "Privat meddelande"; -App::$strings["Mood"] = "Sinnesstämning"; -App::$strings["Poke"] = "Puffa"; -App::$strings["Chat"] = "Chatt"; -App::$strings["Probe"] = "Sond"; -App::$strings["Suggest"] = "Föreslå"; -App::$strings["Random Channel"] = "Slumpvald kanal"; -App::$strings["Invite"] = "Bjud in"; -App::$strings["Features"] = "Funktioner"; -App::$strings["Language"] = "Språk"; -App::$strings["Post"] = "Inlägg"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Update"] = "Uppdatera"; -App::$strings["Install"] = "Installera"; -App::$strings["Purchase"] = "Köp"; -App::$strings["Default"] = "Standard"; -App::$strings["Visible to your default audience"] = "Kan ses av förinställda mottagare"; -App::$strings["Show"] = "Visa"; -App::$strings["Don't show"] = "Visa inte"; -App::$strings["Permissions"] = "Behörighet"; -App::$strings["Close"] = "Stäng"; -App::$strings[" and "] = " och "; -App::$strings["public profile"] = "offentlig profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ändrade %2\$s till "%3\$s""; -App::$strings["Visit %1\$s's %2\$s"] = "Besök %1\$ss %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s har en uppdaterad %2\$s (har ändrat %3\$s)."; -App::$strings["channel"] = "kanal"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gillar inte %2\$ss %3\$s"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s har nu kontakt med %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s puffade %2\$s"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s är %2\$s"; -App::$strings["Select"] = "Välj"; -App::$strings["Private Message"] = "Privat meddelande"; -App::$strings["Message signature validated"] = "Meddelandesignatur bekräftad"; -App::$strings["Message signature incorrect"] = "Meddelandesignatur felaktig"; -App::$strings["View %s's profile @ %s"] = "Visa %ss profil på %s"; -App::$strings["Categories:"] = "Kategorier:"; -App::$strings["Filed under:"] = "Postat under:"; -App::$strings[" from %s"] = "från %s"; -App::$strings["last edited: %s"] = "senast redigerat: %s"; -App::$strings["Expires: %s"] = "Upphör: %s"; -App::$strings["View in context"] = "Visa sammanhang"; -App::$strings["Please wait"] = "Vänta"; -App::$strings["remove"] = "ta bort"; -App::$strings["Loading..."] = "Laddar..."; -App::$strings["Delete Selected Items"] = "Ta bort valda poster"; -App::$strings["View Source"] = "Visa källa"; -App::$strings["Follow Thread"] = "Följ tråd"; -App::$strings["View Status"] = "Visa status"; -App::$strings["View Profile"] = "Visa profil"; -App::$strings["View Photos"] = "Visa foton"; -App::$strings["Matrix Activity"] = "Matrisaktivitet"; -App::$strings["Edit Contact"] = "Redigera kontakt"; -App::$strings["Send PM"] = "Skicka meddelande"; -App::$strings["%s likes this."] = "%s gillar det här."; -App::$strings["%s doesn't like this."] = "%s gillar inte det här."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d person gillar det här.", - 1 => "%2\$d personer gillar det här.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d person gillar inte det här.", - 1 => "%2\$d personer gillar inte det här.", -); -App::$strings["and"] = "och"; -App::$strings[", and %d other people"] = array( - 0 => ", och %d annan person", - 1 => ", och %d andra personer", -); -App::$strings["%s like this."] = "%s gillar det här."; -App::$strings["%s don't like this."] = "%s gillar inte det här."; -App::$strings["Visible to everybody"] = "Kan ses av alla"; -App::$strings["Please enter a link URL:"] = "Ange en länkadress:"; -App::$strings["Please enter a video link/URL:"] = "Ange en videolänkadress:"; -App::$strings["Please enter an audio link/URL:"] = "Ange en ljudlänkadress"; -App::$strings["Tag term:"] = "Tagguttryck"; -App::$strings["Save to Folder:"] = "Spara i mapp:"; -App::$strings["Where are you right now?"] = "Var är du just nu?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Upphör YYYY-MM-DD HH:MM"; -App::$strings["Share"] = "Dela"; -App::$strings["Page link title"] = "Titel på sidlänk"; -App::$strings["Post as"] = "Posta som"; -App::$strings["Upload photo"] = "Ladda upp foto"; -App::$strings["upload photo"] = "ladda upp foto"; -App::$strings["Attach file"] = "Bifoga fil"; -App::$strings["attach file"] = "bifoga fil"; -App::$strings["Insert web link"] = "Infoga webblänk"; -App::$strings["web link"] = "webblänk"; -App::$strings["Insert video link"] = "Infoga videolänk"; -App::$strings["video link"] = "videolänk"; -App::$strings["Insert audio link"] = "Infoga ljudlänk"; -App::$strings["audio link"] = "ljudlänk"; -App::$strings["Set your location"] = "Ange din plats"; -App::$strings["set location"] = "ange plats"; -App::$strings["Clear browser location"] = "Rensa webbläsarplats"; -App::$strings["clear location"] = "rensa plats"; -App::$strings["Title (optional)"] = "Titel (frivilligt)"; -App::$strings["Categories (optional, comma-separated list)"] = "Kategorier (frivilligt, kommaseparerad lista)"; -App::$strings["Permission settings"] = "Behörighetsinställningar"; -App::$strings["permissions"] = "behörighet"; -App::$strings["Public post"] = "Offentligt inlägg"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Exempel: bob@example.com, mary@example.com"; -App::$strings["Set expiration date"] = "Ange utgångsdatum"; -App::$strings["Encrypt text"] = "Kryptera text"; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Avbryt"; -App::$strings["Discover"] = "Upptäck"; -App::$strings["Imported public streams"] = "Importerade offentliga strömmar"; -App::$strings["Commented Order"] = "Kommentarsordning"; -App::$strings["Sort by Comment Date"] = "Ordna efter kommentarsdatum"; -App::$strings["Posted Order"] = "Inläggsordning"; -App::$strings["Sort by Post Date"] = "Ordna efter när inlägget skrevs"; -App::$strings["Posts that mention or involve you"] = "Inlägg som nämner eller berör dig"; -App::$strings["New"] = "Nytt"; -App::$strings["Activity Stream - by date"] = "Aktivitetsström - efter datum"; -App::$strings["Starred"] = "Märkt"; -App::$strings["Favourite Posts"] = "Favoritinlägg"; -App::$strings["Spam"] = "Skräp"; -App::$strings["Posts flagged as SPAM"] = "Inlägg markerade som SKRÄP"; -App::$strings["Channel"] = "Kanal"; -App::$strings["Status Messages and Posts"] = "Statusmeddelanden och inlägg"; -App::$strings["About"] = "Om"; -App::$strings["Profile Details"] = "Profildetaljer"; -App::$strings["Files and Storage"] = "Filer och lagring"; -App::$strings["Chatrooms"] = "Chattrum"; -App::$strings["Saved Bookmarks"] = "Sparade bokmärken"; -App::$strings["Manage Webpages"] = "Hantera webbsidor"; -App::$strings["Save to Folder"] = "Spara i mapp"; -App::$strings["View all"] = "Visa alla"; -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "ogillar detta", - 1 => "ogillar detta", -); -App::$strings["Add Star"] = "Märk"; -App::$strings["Remove Star"] = "Ta bort märkning"; -App::$strings["Toggle Star Status"] = "Växla märkning"; -App::$strings["starred"] = "märkt"; -App::$strings["Add Tag"] = "Lägg till en tagg"; -App::$strings["I like this (toggle)"] = "Jag gillar det här (växla)"; -App::$strings["I don't like this (toggle)"] = "Jag gillar inte det här (växla)"; -App::$strings["Share This"] = "Dela det här"; -App::$strings["share"] = "dela"; -App::$strings["%d comment"] = array( - 0 => "%d kommentar", - 1 => "%d kommentarer", -); -App::$strings["View %s's profile - %s"] = "Visa %ss profil - %s"; -App::$strings["to"] = "till"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Vägg-till-vägg"; -App::$strings["via Wall-To-Wall:"] = "via vägg-till-vägg"; -App::$strings["Save Bookmarks"] = "Spara bokmärken"; -App::$strings["Add to Calendar"] = "Lägg till kalendern"; -App::$strings["Mark all seen"] = "Märk alla som lästa"; -App::$strings["__ctx:noun__ Likes"] = "gillar detta"; -App::$strings["__ctx:noun__ Dislikes"] = "ogillar detta"; -App::$strings["[+] show all"] = "[+] visa alla"; -App::$strings["This is you"] = "Det här är du"; -App::$strings["Comment"] = "Kommentera"; -App::$strings["Submit"] = "Skicka"; -App::$strings["Bold"] = "Fet"; -App::$strings["Italic"] = "Kursiv"; -App::$strings["Underline"] = "Understruken"; -App::$strings["Quote"] = "Citat"; -App::$strings["Code"] = "Kod"; -App::$strings["Image"] = "Bild"; -App::$strings["Link"] = "Länk"; -App::$strings["Video"] = "Video"; -App::$strings["This event has been added to your calendar."] = "Händelsen har lagts till i din kalender."; -App::$strings["No recipient provided."] = "Ingen mottagare angiven."; -App::$strings["[no subject]"] = "[inget ämne]"; -App::$strings["Unable to determine sender."] = "Kunde inte avgöra vem som är avsändare."; -App::$strings["Stored post could not be verified."] = "Den sparade posten kunde inte verifieras."; -App::$strings["Item was not found."] = "Posten hittades inte."; -App::$strings["No source file."] = "Ingen källfil."; -App::$strings["Cannot locate file to replace"] = "Kan inte hitta fil att ersätta"; -App::$strings["Cannot locate file to revise/update"] = "Kan inte hitta fil att revidera/uppdatera"; -App::$strings["File exceeds size limit of %d"] = "Filen överskrider storleksbegränsningen %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Du har nått begränsningen %1$.0f megabyte utrymme för bilagor."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Filuppladdning misslyckades. Möjlig systembegränsning eller avbruten åtgärd."; -App::$strings["Stored file could not be verified. Upload failed."] = "Den lagrade filen kunde inte verifieras. Uppladdning misslyckad."; -App::$strings["Path not available."] = "Sökväg inte tillgänglig."; -App::$strings["Empty pathname"] = "Tom sökväg"; -App::$strings["duplicate filename or path"] = "filnamn eller sökväg finns redan"; -App::$strings["Path not found."] = "Sökväg hittas inte."; -App::$strings["mkdir failed."] = "mkdir misslyckades."; -App::$strings["database storage failed."] = "databaslagring misslyckades."; -App::$strings["Hubzilla Notification"] = "Hubzilla-meddelande"; -App::$strings["hubzilla"] = "hubzilla"; -App::$strings["Thank You,"] = "Tack,"; -App::$strings["%s Administrator"] = "Administratören för %s"; -App::$strings["%s "] = "%s "; -App::$strings["[Red:Notify] New mail received at %s"] = "[Red:Meddelande] Nytt meddelande på %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s skickade ett nytt privat meddelande till dig på %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s skickade %2\$s till dig."; -App::$strings["a private message"] = "ett privat meddelande"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Besök %s för att visa och/eller svara på dina privata meddelanden."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ett %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]%4\$ss %5\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s kommenterade [zrl=%3\$s]ditt %4\$s[/zrl]"; -App::$strings["[Red:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Red:Meddelande] Kommentar till konversation #%1\$d av %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s kommenterade en sak/konversation du har följt."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Besök %s för att visa och/eller svara på konversationen."; -App::$strings["[Red:Notify] %s posted to your profile wall"] = "[Red:Meddelande] %s postade till din profilvägg"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s postade till din profilvägg på %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s postade till [zrl=%3\$s]din vägg[/zrl]"; -App::$strings["[Red:Notify] %s tagged you"] = "[Red:Meddelande] %s taggade dig"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s taggade dig på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]taggade dig[/zrl]."; -App::$strings["[Red:Notify] %1\$s poked you"] = "[Red:Meddelande] %1\$s puffade dig"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s puffade dig på %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]puffade dig[/zrl]."; -App::$strings["[Red:Notify] %s tagged your post"] = "[Red:Meddelande] %s taggade ditt inlägg"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s taggade ditt inlägg på %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s taggade [zrl=%3\$s]ditt inlägg[/zrl]"; -App::$strings["[Red:Notify] Introduction received"] = "[Red:Meddelande] Presentation mottagen"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, du har fått en ny kontaktförfrågan från '%2\$s' på %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, du har fått [zrl=%2\$s]en ny kontaktförfrågan[/zrl] från %3\$s."; -App::$strings["You may visit their profile at %s"] = "Du kan besöka deras profil på %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Besök %s för att bevilja eller avslå kontaktförfrågan."; -App::$strings["[Red:Notify] Friend suggestion received"] = "[Red:Meddelande] Vänförslag mottaget"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, du har fått ett vänförslag från '%2\$s' på %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, du har fått [zrl=%2\$s]ett vänförslag[/zrl] angående %3\$s från %4\$s."; -App::$strings["Name:"] = "Namn:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Besök %s för att bevilja eller avslå förslaget."; -App::$strings["[Red:Notify]"] = "[Red:Notifiering]"; -App::$strings["Logged out."] = "Utloggad."; -App::$strings["Failed authentication"] = "Inloggning misslyckades"; -App::$strings["Login failed."] = "Inloggning misslyckades."; -App::$strings["view full size"] = "visa full storlek"; -App::$strings["%d invitation available"] = array( - 0 => "%d inbjudan tillgänglig", - 1 => "%d inbjudningar tillgängliga", -); -App::$strings["Advanced"] = "Avancerat"; -App::$strings["Find Channels"] = "Hitta kanaler"; -App::$strings["Enter name or interest"] = "Ange namn eller intresse"; -App::$strings["Connect/Follow"] = "Ta kontakt/följ"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Exempel: Robert Morgenstein, Fiske"; -App::$strings["Find"] = "Sök"; -App::$strings["Channel Suggestions"] = "Kanalförslag"; -App::$strings["Random Profile"] = "Slumpvald profil"; -App::$strings["Invite Friends"] = "Bjud in vänner"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Avancerat exempel: name=fred and country=iceland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemensam kontakt", - 1 => "%d gemensamma kontakter", -); -App::$strings["show more"] = "visa fler"; -App::$strings["Directory Options"] = "Katalogalternativ"; -App::$strings["Alphabetic"] = "Alfabetisk"; -App::$strings["Reverse Alphabetic"] = "Omvänd alfabetisk"; -App::$strings["Newest to Oldest"] = "Nyast till äldst"; -App::$strings["Oldest to Newest"] = "Äldst till nyast"; -App::$strings["Public Forums Only"] = "Endast offentliga forum"; -App::$strings["Sort"] = "Ordning"; -App::$strings["Enable Safe Search"] = "Aktivera säker sökning"; -App::$strings["Disable Safe Search"] = "Avaktivera säker sökning"; -App::$strings["Safe Mode"] = "Säkert läge"; -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 borttagen grupp med det här namnet återskapades. Befintliga rättigheter till saker kan gälla för den här gruppen och alla framtida medlemmar. Om det här inte är vad du avsåg, skapa i stället en annan grupp med ett annat namn."; -App::$strings["Default privacy group for new contacts"] = "Förvald integritetsgrupp för nya kontakter"; -App::$strings["All Channels"] = "Alla kanaler"; -App::$strings["edit"] = "redigera"; -App::$strings["Collections"] = "Kretsar"; -App::$strings["Edit collection"] = "Redigera krets"; -App::$strings["Create a new collection"] = "Skapa en ny krets"; -App::$strings["Channels not in any collection"] = "Kanaler inte i någon krets"; -App::$strings["Permission denied"] = "Behörighet saknas"; -App::$strings["(Unknown)"] = "(Okänt)"; -App::$strings["Visible to anybody on the internet."] = "Kan ses av vem som helst på Internet."; -App::$strings["Visible to you only."] = "Kan bara ses av dig."; -App::$strings["Visible to anybody in this network."] = "Kan ses av alla på det här nätverket."; -App::$strings["Visible to anybody authenticated."] = "Kan ses av alla inloggade."; -App::$strings["Visible to anybody on %s."] = "Kan ses av alla på %s."; -App::$strings["Visible to all connections."] = "Kan ses av alla kontakter."; -App::$strings["Visible to approved connections."] = "Kan ses av godkända kontakter."; -App::$strings["Visible to specific connections."] = "Kan ses av valda kontakter."; -App::$strings["Item not found."] = "Posten hittades inte."; -App::$strings["Collection not found."] = "Kretsen hittades inte."; -App::$strings["Collection is empty."] = "Kretsen är tom."; -App::$strings["Collection: %s"] = "Krets: %s"; -App::$strings["Connection: %s"] = "Kontakt: %s"; -App::$strings["Connection not found."] = "Kontakten hittades inte."; -App::$strings["Delete this item?"] = "Ta bort den här posten?"; -App::$strings["[-] show less"] = "[-] visa färre"; -App::$strings["[+] expand"] = "[+] fäll ut"; -App::$strings["[-] collapse"] = "[-] fäll ihop"; -App::$strings["Password too short"] = "Lösenord för kort"; -App::$strings["Passwords do not match"] = "Lösenorden stämmer inte överens"; -App::$strings["everybody"] = "alla"; -App::$strings["Secret Passphrase"] = "Hemligt lösenord"; -App::$strings["Passphrase hint"] = "Lösenordsledtråd"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Observera: Rättigheter har ändrats men har ännu inte skickats in"; -App::$strings["close all"] = "stäng alla"; -App::$strings["Nothing new here"] = "Inget nytt här"; -App::$strings["Rate This Channel (this is public)"] = "Betygsätt den här kanalen (detta är offentligt)"; -App::$strings["Rating"] = "Betyg"; -App::$strings["Describe (optional)"] = "Utlåtande (frivilligt)"; -App::$strings["timeago.prefixAgo"] = "för"; -App::$strings["timeago.prefixFromNow"] = "om"; -App::$strings["ago"] = "sedan"; -App::$strings["from now"] = " "; -App::$strings["less than a minute"] = "mindre än en minut"; -App::$strings["about a minute"] = "ungefär en minut"; -App::$strings["%d minutes"] = "%d minuter"; -App::$strings["about an hour"] = "ungefär en timme"; -App::$strings["about %d hours"] = "ungefär %d timmar"; -App::$strings["a day"] = "en dag"; -App::$strings["%d days"] = "%d dagar"; -App::$strings["about a month"] = "ungefär en månad"; -App::$strings["%d months"] = "%d månader"; -App::$strings["about a year"] = "ungefär ett år"; -App::$strings["%d years"] = "%d år"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["Not a valid email address"] = "Inte en giltig e-postadress"; -App::$strings["Your email domain is not among those allowed on this site"] = "Din e-postdomän är inte bland de som tillåts på den här servern"; -App::$strings["Your email address is already registered at this site."] = "Din e-postadress är redan registrerad på den här servern."; -App::$strings["An invitation is required."] = "En inbjudan behövs."; -App::$strings["Invitation could not be verified."] = "Inbjudningen kunde inte bekräftas."; -App::$strings["Please enter the required information."] = "Ange den begärda informationen."; -App::$strings["Failed to store account information."] = "Misslyckades att spara kontoinformation."; -App::$strings["Registration confirmation for %s"] = "Registreringsbekräftelse för %s"; -App::$strings["Registration request at %s"] = "Registreringsförfrågan på %s"; -App::$strings["Administrator"] = "Administratör"; -App::$strings["your registration password"] = "ditt registreringslösenord"; -App::$strings["Registration details for %s"] = "Registreringsdetaljer för %s"; -App::$strings["Account approved."] = "Konto godkänt."; -App::$strings["Registration revoked for %s"] = "Registrering avslagen för %s"; -App::$strings["Account verified. Please login."] = "Konto bekräftat. Du kan nu logga in."; -App::$strings["Click here to upgrade."] = "Klicka här för att uppgradera."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Den här funktionen går utanför vad som anges i ditt avtal."; -App::$strings["This action is not available under your subscription plan."] = "Den här funktionen är inte tillgänglig med ditt avtal."; -App::$strings["Miscellaneous"] = "Övrigt"; -App::$strings["YYYY-MM-DD or MM-DD"] = "ÅÅÅÅ-MM-DD eller MM-DD"; -App::$strings["Required"] = "Behövs"; -App::$strings["never"] = "aldrig"; -App::$strings["less than a second ago"] = "mindre än en sekund sedan"; -App::$strings["year"] = "år"; -App::$strings["years"] = "år"; -App::$strings["month"] = "månad"; -App::$strings["months"] = "månader"; -App::$strings["week"] = "vecka"; -App::$strings["weeks"] = "veckor"; -App::$strings["day"] = "dag"; -App::$strings["days"] = "dagar"; -App::$strings["hour"] = "timme"; -App::$strings["hours"] = "timmar"; -App::$strings["minute"] = "minut"; -App::$strings["minutes"] = "minuter"; -App::$strings["second"] = "sekund"; -App::$strings["seconds"] = "sekunder"; -App::$strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sedan"; -App::$strings["%1\$s's birthday"] = "%1\$ss födelsedag"; -App::$strings["Happy Birthday %1\$s"] = "Grattis på födelsedagen %1\$s"; -App::$strings["Missing room name"] = "Rumsnamn saknas"; -App::$strings["Duplicate room name"] = "Rumsnamnet finns redan"; -App::$strings["Invalid room specifier."] = "Ogiltig rumsbeskrivning."; -App::$strings["Room not found."] = "Rummet hittades inte."; -App::$strings["Room is full"] = "Rummet är fullt"; -App::$strings["Channel is blocked on this site."] = "Kanalen är blockerad på den här servern."; -App::$strings["Channel location missing."] = "Kanalplats saknas."; -App::$strings["Response from remote channel was incomplete."] = "Svar från den andra kanalen var ofullständigt."; -App::$strings["Channel was deleted and no longer exists."] = "Kanalen har tagits bort och finns inte längre."; -App::$strings["Protocol disabled."] = "Protokoll inaktiverat."; -App::$strings["Channel discovery failed."] = "Kanalsökning misslyckades."; -App::$strings["local account not found."] = "hittade inte lokalt konto."; -App::$strings["Cannot connect to yourself."] = "Du kan inte kontakta dig själv."; -App::$strings["Unable to obtain identity information from database"] = "Kunde inte hämta från databasen"; -App::$strings["Empty name"] = "Tomt namn"; -App::$strings["Name too long"] = "För långt namn"; -App::$strings["No account identifier"] = "Ingen kontoidentifierare"; -App::$strings["Nickname is required."] = "Smeknamn måste anges."; -App::$strings["Reserved nickname. Please choose another."] = "Reserverat smeknamn. Välj ett annat."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Smeknamnet innehåller otillåtna tecken eller är redan upptaget på den här servern."; -App::$strings["Unable to retrieve created identity"] = "Kunde inte hämta den skapade identiteten"; -App::$strings["Default Profile"] = "Standardprofil"; -App::$strings["Requested channel is not available."] = "Den begärda kanalen är inte tillgänglig"; -App::$strings["Requested profile is not available."] = "Begärd profil är inte tillgänglig."; -App::$strings["Change profile photo"] = "Bytprofilfoto"; -App::$strings["Profiles"] = "Profiler"; -App::$strings["Manage/edit profiles"] = "Hantera/redigera profiler"; -App::$strings["Create New Profile"] = "Skapa ny profil"; -App::$strings["Edit Profile"] = "Redigera profil"; -App::$strings["Profile Image"] = "Profilbild"; -App::$strings["visible to everybody"] = "synlig för alla"; -App::$strings["Edit visibility"] = "Redigera synlighet"; -App::$strings["Gender:"] = "Kön:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Hemsida:"; -App::$strings["Online Now"] = "Online nu"; -App::$strings["g A l F d"] = "l j F \\k\\l G"; -App::$strings["F d"] = "j F"; -App::$strings["[today]"] = "[i dag]"; -App::$strings["Birthday Reminders"] = "Födelsedagspåminnelser"; -App::$strings["Birthdays this week:"] = "Födelsedagar den här veckan:"; -App::$strings["[No description]"] = "[Ingen beskrivning]"; -App::$strings["Event Reminders"] = "Händelsepåminnelser"; -App::$strings["Events this week:"] = "Händelser den här veckan:"; -App::$strings["Full Name:"] = "Fullständigt namn:"; -App::$strings["Like this channel"] = "Gilla den här kanalen"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Födelsedag:"; -App::$strings["Age:"] = "Ålder:"; -App::$strings["for %1\$d %2\$s"] = "i %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuell preferens:"; -App::$strings["Hometown:"] = "Hemort:"; -App::$strings["Tags:"] = "Taggar:"; -App::$strings["Political Views:"] = "Politisk åskådning:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["About:"] = "Om:"; -App::$strings["Hobbies/Interests:"] = "Fritidssysselsättning/intressen:"; -App::$strings["Likes:"] = "Gillar:"; -App::$strings["Dislikes:"] = "Ogillar:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation och sociala nätverk:"; -App::$strings["My other channels:"] = "Mina andra kanaler:"; -App::$strings["Musical interests:"] = "Musikintressen:"; -App::$strings["Books, literature:"] = "Böcker, litteratur:"; -App::$strings["Television:"] = "Tv:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/dans/kultur/underhållning:"; -App::$strings["Love/Romance:"] = "Kärlek/romantik:"; -App::$strings["Work/employment:"] = "Arbete/sysselsättning:"; -App::$strings["School/education:"] = "Skola/utbildning:"; -App::$strings["Like this thing"] = "Gilla den här saken"; -App::$strings["Logout"] = "Logga ut"; -App::$strings["End this session"] = "Avsluta sessionen"; -App::$strings["Home"] = "Hem"; -App::$strings["Your posts and conversations"] = "Dina inlägg och konversationer"; -App::$strings["Your profile page"] = "Din profilsida"; -App::$strings["Edit Profiles"] = "Redigera profiler"; -App::$strings["Manage/Edit profiles"] = "Hantera/redigera profiler"; -App::$strings["Edit your profile"] = "Redigera din profil"; -App::$strings["Your photos"] = "Dina foton"; -App::$strings["Your files"] = "Dina filer"; -App::$strings["Your chatrooms"] = "Dina chattrum"; -App::$strings["Your bookmarks"] = "Dina bokmärken"; -App::$strings["Your webpages"] = "Dina webbsidor"; -App::$strings["Sign in"] = "Logga in"; -App::$strings["%s - click to logout"] = "%s - klicka för att logga ut"; -App::$strings["Remote authentication"] = "Fjärrinloggning"; -App::$strings["Click to authenticate to your home hub"] = "Klicka för att autentisera mot din hemmahubb"; -App::$strings["Home Page"] = "Hemsida"; -App::$strings["Register"] = "Skapa konto"; -App::$strings["Create an account"] = "Skapa ett konto"; -App::$strings["Help and documentation"] = "Hjälp och dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Applikationer, verktyg, länkar, spel"; -App::$strings["Search site content"] = "Sök innehåll"; -App::$strings["Channel Directory"] = "Kanalkatalog"; -App::$strings["Your matrix"] = "Din matris"; -App::$strings["Mark all matrix notifications seen"] = "Märk alla matrisnotifieringar som lästa"; -App::$strings["Channel home"] = "Kanalhem"; -App::$strings["Mark all channel notifications seen"] = "Märk alla kanalnotifieringar som lästa"; -App::$strings["Connections"] = "Kontakter"; -App::$strings["Notices"] = "Meddelanden"; -App::$strings["Notifications"] = "Notifieringar"; -App::$strings["See all notifications"] = "Se alla notifieringar"; -App::$strings["Mark all system notifications seen"] = "Märk alla systemnotifieringar som lästa"; -App::$strings["Private mail"] = "Privat meddelande"; -App::$strings["See all private messages"] = "Se alla privata meddelanden"; -App::$strings["Mark all private messages seen"] = "Märk alla privata meddelanden som lästa"; -App::$strings["Inbox"] = "Inkorg"; -App::$strings["Outbox"] = "Utkorg"; -App::$strings["Event Calendar"] = "Kalender"; -App::$strings["See all events"] = "Se alla händelser"; -App::$strings["Mark all events seen"] = "Märk alla händelser som lästa"; -App::$strings["Manage Your Channels"] = "Hantera dina kanaler"; -App::$strings["Account/Channel Settings"] = "Konto-/kanalinställningar"; -App::$strings["Admin"] = "Administration"; -App::$strings["Site Setup and Configuration"] = "Serverinställning och -konfiguration"; -App::$strings["@name, #tag, content"] = "@namn, #tagg, innehåll"; -App::$strings["Please wait..."] = "Vänta..."; -App::$strings["New window"] = "Nytt fönster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Öppna den valda platsen i ett annat fönster eller en annan webbläsarflik"; -App::$strings["User '%s' deleted"] = "Användare '%s' borttagen"; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Kvinna"; -App::$strings["Currently Male"] = "Just nu man"; -App::$strings["Currently Female"] = "Just nu kvinna"; -App::$strings["Mostly Male"] = "Mestadels man"; -App::$strings["Mostly Female"] = "Mestadels kvinna"; -App::$strings["Transgender"] = "Transperson"; -App::$strings["Intersex"] = "Intersexuell"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Hermafrodit"; -App::$strings["Neuter"] = "Könlös"; -App::$strings["Non-specific"] = "Ospecificerat"; -App::$strings["Undecided"] = "Obestämt"; -App::$strings["Males"] = "Män"; -App::$strings["Females"] = "Kvinnor"; -App::$strings["Gay"] = "Bög"; -App::$strings["Lesbian"] = "Lesbisk"; -App::$strings["No Preference"] = "Ingen preferens"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Avhållsam"; -App::$strings["Virgin"] = "Oskuld"; -App::$strings["Deviant"] = "Avvikande"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Massor"; -App::$strings["Nonsexual"] = "Ickesexuell"; -App::$strings["Single"] = "Singel"; -App::$strings["Lonely"] = "Ensam"; -App::$strings["Available"] = "Ledig"; -App::$strings["Unavailable"] = "Upptagen"; -App::$strings["Has crush"] = "Förälskad"; -App::$strings["Infatuated"] = "Förtrollad"; -App::$strings["Dating"] = "Dejtar"; -App::$strings["Unfaithful"] = "Otrogen"; -App::$strings["Sex Addict"] = "Sexmissbrukare"; -App::$strings["Friends/Benefits"] = "Kompisförhållande"; -App::$strings["Casual"] = "Vardaglig"; -App::$strings["Engaged"] = "Förlovad"; -App::$strings["Married"] = "Gift"; -App::$strings["Imaginarily married"] = "Inbillat gift"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Bor ihop"; -App::$strings["Common law"] = "Sambo"; -App::$strings["Happy"] = "Lycklig"; -App::$strings["Not looking"] = "Letar inte"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Bedragen"; -App::$strings["Separated"] = "Separerad"; -App::$strings["Unstable"] = "Instabilt"; -App::$strings["Divorced"] = "Skild"; -App::$strings["Imaginarily divorced"] = "Inbillat skild"; -App::$strings["Widowed"] = "Änka"; -App::$strings["Uncertain"] = "Osäkert"; -App::$strings["It's complicated"] = "Det är komplicerat"; -App::$strings["Don't care"] = "Bryr mig inte"; -App::$strings["Ask me"] = "Fråga mig"; -App::$strings["Invalid data packet"] = "Ogiltigt datapaket"; -App::$strings["Unable to verify channel signature"] = "Kunde inte bekräfta kanalsignatur"; -App::$strings["Unable to verify site signature for %s"] = "Kunde inte bekräfta signatur för servern %s"; -App::$strings["Hubzilla Server - Setup"] = "Hubzilla-server - inställningar"; -App::$strings["Could not connect to database."] = "Kunde inte ansluta till databasen."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Kunde inte ansluta till den angivna server-URL:en. Möjligt problem med SSL-certifikat eller DNS."; -App::$strings["Could not create table."] = "Kunde inte skapa tabell."; -App::$strings["Your site database has been installed."] = "Din serverdatabas har installerats."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Du kan behöva importera filen \"install/schema_xxx.sql\" manuellt med en databasklient."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Se filen \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemkontroll"; -App::$strings["Next"] = "Nästa"; -App::$strings["Check again"] = "Kontrollera igen"; -App::$strings["Database connection"] = "Databasanslutning"; -App::$strings["In order to install Hubzilla we need to know how to connect to your database."] = "För att kunna installera Hubzilla behöver vi veta hur databasen ska anslutas."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Kontakta din servervärd eller administratör om du har frågor om de här inställningarna."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databasen du anger nedan måste finnas. Om den inte gör det, skapa den innan du fortsätter."; -App::$strings["Database Server Name"] = "Databasserver"; -App::$strings["Default is localhost"] = "Standard är localhost"; -App::$strings["Database Port"] = "Databasport"; -App::$strings["Communication port number - use 0 for default"] = "Kommunikationsportnummer - använd 0 för standardinställning"; -App::$strings["Database Login Name"] = "Loginnamn till databas"; -App::$strings["Database Login Password"] = "Lösenord till databas"; -App::$strings["Database Name"] = "Databasnamn"; -App::$strings["Database Type"] = "Databastyp"; -App::$strings["Site administrator email address"] = "Serveradministratörens e-postadress"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Ditt kontos e-postadress måste stämma med den här för att webbgränssnittet för administration ska kunna användas."; -App::$strings["Website URL"] = "Webbplatsens URL"; -App::$strings["Please use SSL (https) URL if available."] = "Ange en URL med SSL (https) om tillgängligt"; -App::$strings["Please select a default timezone for your website"] = "Välj en standardtidszon för din webbplats"; -App::$strings["Site settings"] = "Serverinställningar"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Kunde inte hitta en kommandoradsversion av PHP i webbserverns PATH."; -App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "Om du inte har en kommandoradsversion av PHP installerad på servern kommer du inte att kunna köra bakgrundshämtning via cron."; -App::$strings["PHP executable path"] = "Sökväg till PHP-programmet"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Ange hela sökvägen till php-programfilen. Du kan lämna det här blankt för att fortsätta installationen."; -App::$strings["Command line PHP"] = "Kommandorads-PHP"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Kommandoradsversionen av PHP på ditt system har inte \"register_argc_argv\" aktiverat."; -App::$strings["This is required for message delivery to work."] = "Det här behövs för att meddelandeleverans ska fungera."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fel: \"openssl_pkey_new\"-funktionen på det här systemet kan inte generera kryptonycklar"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Om systemet kör Windows, se \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generera kryptonycklar"; -App::$strings["libCurl PHP module"] = "PHP-modulen libCurl"; -App::$strings["GD graphics PHP module"] = "PHP-modulen GD graphics"; -App::$strings["OpenSSL PHP module"] = "PHP-modulen OpenSSL"; -App::$strings["mysqli or postgres PHP module"] = "PHP-modulen mysqli eller postgres"; -App::$strings["mb_string PHP module"] = "PHP-modulen mb_string"; -App::$strings["mcrypt PHP module"] = "PHP-modulen mcrypt"; -App::$strings["Apache mod_rewrite module"] = "Apache-modulen mod_rewrite"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fel: Apache-webbserverns mod-rewrite-modul krävs men är inte installerad."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fel: proc_open krävs men är antingen inte installerad eller har inaktiverats i php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Fel: PHP-modulen libCURL krävs men är inte installerad."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fel: PHP-modulen GD graphics med JPEG-stöd krävs men är inte installerad."; -App::$strings["Error: openssl PHP module required but not installed."] = "Fel: PHP-modulen openssl krävs men är inte installerad."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fel: en av PHP-modulerna mysqli eller postgres krävs men är inte installerad."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Fel: PHP-modulen mb_string krävs men är inte installerad."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Fel: PHP-modulen mcrypt krävs men är inte installerad."; -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."] = "Webbinstallationen måste kunna skapa filen \".htconfig.php\" i toppkatalogen på din webbserver men kan inte göra det."; -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."] = "Det är ofta en behörighetsinställning som gör att webbservern inte kan skriva filer i din katalog - även om du kan."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Efter den här proceduren kommer vi att ge dig en text att spara i filen .htconfig.php i Reds toppkatalog."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativt kan du hoppa över den här proceduren och göra en manuell installation. För instruktioner, se filen \"install/INSTALL.txt\"."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php är skrivbar"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red använder mallmotorn Smarty3 för att rendera webbvyerna. Smarty3 kompilerar mallar till PHP för att snabba upp renderingen."; -App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "För att spara de här kompilerade mallarna behöver webbservern ha skrivrättigheter till katalogen %s under Reds toppkatalog."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Försäkra dig om att användaren som din webbserver kör som (t.ex. www-data) har skrivrättigheter till den här katalogen."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Observera: som en säkerhetsåtgärd bör du ge webbservern skrivrättighet endast för %s - inte för mallfilerna (.tpl) som finns där."; -App::$strings["%s is writable"] = "%s är skrivbar"; -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 använder katalogen store för att spara uppladdade filer. Webbservern behöver ha skrivrättigheter till katalogen store under Reds toppkatalog."; -App::$strings["store is writable"] = "store är skrivbar"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL-certifikatet kan inte valideras. Fixa certifikatet eller inaktivera https-åtkomst till den här servern."; -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!"] = "Om du har https-åtkomst till din webbplats eller tillåter anslutningar till TCP-port 443 (https-porten) MÅSTE du använda ett certifikat som kan verifieras av webbläsare. Du FÅR INTE använda självsignerade certifikat!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Restriktionen finns eftersom offentliga inlägg från dig kan innehålla till exempel referenser till bilder på din egen hubb."; -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."] = "Om ditt certifikat inte känns igen kommer medlemmar på andra webbplatser (som själv kan ha giltiga certifikat) att få en varning på sin egen webbplats om säkerhetsproblem."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Detta kan orsaka problem med användbarheten (inte bara på din egen server) så vi måste trycka på det här kravet."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Det finns leverantörer som utfärdar gratis certifikat som känns igen av webbläsare."; -App::$strings["SSL certificate validation"] = "SSL-certifikatvalidering"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite i .htaccess fungerar inte. Kolla din serverkonfiguration. Test: "; -App::$strings["Url rewrite is working"] = "URL rewrite fungerar"; -App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databaskonfigurationsfilen \".htconfig.php\" kunde inte skrivas. Använd den bifogade texten för att skapa en konfigurationsfil i din webbservers rot."; -App::$strings["Errors encountered creating database tables."] = "Fel inträffade när databastabeller skulle skapas."; -App::$strings["

What next

"] = "

Nästa steg

"; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "VIKTIGT: Du behöver ställa in en schemalagd för hämtningsrutinen [manuellt]"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximalt antal dagliga serverregistreringar överskridet. Försök igen i morgon."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Välj huruvida du accepterar användarvillkoren. Registrering misslyckades."; -App::$strings["Passwords do not match."] = "Lösenorden stämmer inte överens."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrering lyckades. Kontrollera din e-post för valideringsinstruktioner."; -App::$strings["Your registration is pending approval by the site owner."] = "Din registrering väntar på att bli godkänd av serverägaren."; -App::$strings["Your registration can not be processed."] = "Din registrering kan inte behandlas."; -App::$strings["Registration on this site/hub is by approval only."] = "Registrering på den här servern/hubben måste godkännas."; -App::$strings["Register at another affiliated site/hub"] = "Skapa konto på en annan ansluten server/hubb"; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Antal dagliga registreringar som tillåts på den här servern har överskridits. Försök igen i morgon."; -App::$strings["Terms of Service"] = "användarvillkor"; -App::$strings["I accept the %s for this website"] = "Jag accepterar den här webbplatsens %s"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Jag är över 13 år och accepterar den här webbplatsens %s"; -App::$strings["Registration"] = "Registrering"; -App::$strings["Membership on this site is by invitation only."] = "Medlemskap på den här servern kan endast fås genom inbjudan."; -App::$strings["Please enter your invitation code"] = "Ange din inbjudningskod"; -App::$strings["Your email address"] = "Din e-postadress"; -App::$strings["Choose a password"] = "Välj ett lösenord"; -App::$strings["Please re-enter your password"] = "Ange lösenordet igen"; -App::$strings["No such group"] = "Ingen sådan grupp"; -App::$strings["Search Results For:"] = "Sökresultat för:"; -App::$strings["Collection is empty"] = "Kretsen är tom"; -App::$strings["Collection: "] = "Krets: "; -App::$strings["Connection: "] = "Kontakt:"; -App::$strings["Invalid connection."] = "Ogiltig kontakt."; -App::$strings["Some blurb about what to do when you're new here"] = "Lite text om vad man kan göra som ny här"; -App::$strings["Hubzilla - "The Network""] = "Hubzilla - "Nätverket""; -App::$strings["Welcome to %s"] = "Välkommen till %s"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Inga förslag tillgängliga. Om det här är en ny server, försök igen om 24 timmar."; -App::$strings["Export Channel"] = "Exportera kanal"; -App::$strings["Export your basic channel information to a small 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 hub, but\tdoes not contain your content."] = "Exportera kanalens basinformation till en liten fil. Denna fungerar som en säkerhetskopia av dina anslutningar, behörigheter, profil, och grundläggande data, och kan användas för att importera dina data till en ny hubb, men tar inte med ditt innehåll."; -App::$strings["Export Content"] = "Exportera innehåll"; -App::$strings["Export your channel information and all the content to a JSON backup. This backs up all of your connections, permissions, profile data and all of your content, but is generally not suitable for importing a channel to a new hub as this file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportera din kanalinformation och allt innehåll till en säkerhetskopia i JSON-format. Detta kopierar alla dina anslutningar, behörigheter, profildata och allt ditt innehåll, men är generellt inte lämpligt för att importera en kanal till en ny hubb, eftersom filen kan vara VÄLDIGT stor. Ha tålamod - det kan ta flera minuter innan nedladdningen börjar."; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fjärrinloggning blockerades. Du är inloggad på den här servern lokalt. Logga ut och försök igen."; -App::$strings["Welcome %s. Remote authentication successful."] = "Välkommen %s. Fjärrinloggning lyckades."; -App::$strings["Authorize application connection"] = "Tillåt anslutning av applikation"; -App::$strings["Return to your app and insert this Securty Code:"] = "Återgå till din applikation och ange den här säkerhetskoden:"; -App::$strings["Please login to continue."] = "Logga in för att fortsätta."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vill du låta den här applikationen få tillgång till dina inlägg och kontakter, och/eller skapa nya inlägg åt dig?"; -App::$strings["Yes"] = "Ja"; -App::$strings["No"] = "Nej"; -App::$strings["Event can not end before it has started."] = "Händelser kan inte sluta innan de börjat."; -App::$strings["Event title and start time are required."] = "Händelsen behöver titel och starttid."; -App::$strings["Event not found."] = "Händelsen hittades inte."; -App::$strings["l, F j"] = "l, j F"; -App::$strings["Edit event"] = "Redigera händelse"; -App::$strings["Create New Event"] = "Skapa ny händelse"; -App::$strings["Previous"] = "Föregående"; -App::$strings["Export"] = "Exportera"; -App::$strings["Event details"] = "Detaljer för händelse"; -App::$strings["Starting date and Title are required."] = "Startdatum och titel är obligatoriska."; -App::$strings["Categories (comma-separated list)"] = "Kategorier (kommaseparerad lista)"; -App::$strings["Event Starts:"] = "Händelsen börjar:"; -App::$strings["Finish date/time is not known or not relevant"] = "Slutdatum/tid är okänt eller inte relevant"; -App::$strings["Event Finishes:"] = "Händelsen slutar:"; -App::$strings["Adjust for viewer timezone"] = "Justera för betraktarens tidszon"; -App::$strings["Description:"] = "Beskrivning:"; -App::$strings["Title:"] = "Titel:"; -App::$strings["Share this event"] = "Dela den här händelsen"; -App::$strings["Item not available."] = "Post inte tillgänglig."; -App::$strings["Fetching URL returns error: %1\$s"] = "Hämtning av URL returnerade fel: %1\$s"; -App::$strings["Block Name"] = "Blocknamn"; -App::$strings["Invalid item."] = "Ogiltig post."; -App::$strings["Channel not found."] = "Kanalen hittas inte."; -App::$strings["Page not found."] = "Sidan hittas inte."; -App::$strings["Menu not found."] = "Menyn hittades inte."; -App::$strings["Menu element updated."] = "Menyval uppdaterat."; -App::$strings["Unable to update menu element."] = "Kunde inte uppdatera menyval."; -App::$strings["Menu element added."] = "Menyval tillagt."; -App::$strings["Unable to add menu element."] = "Kunde inte lägga till menyval."; -App::$strings["Not found."] = "Hittades inte."; -App::$strings["Manage Menu Elements"] = "Hantera menyval"; -App::$strings["Edit menu"] = "Redigera meny"; -App::$strings["Edit element"] = "Redigera menyval"; -App::$strings["Drop element"] = "Ta bort menyval"; -App::$strings["New element"] = "Nytt menyval"; -App::$strings["Edit this menu container"] = "Redigera den här menysamlaren"; -App::$strings["Add menu element"] = "Lägg till menyval"; -App::$strings["Delete this menu item"] = "Ta bort det här menyvalet"; -App::$strings["Edit this menu item"] = "Redigera det här menyvalet"; -App::$strings["New Menu Element"] = "Nytt menyval"; -App::$strings["Menu Item Permissions"] = "Behörighet för menyval"; -App::$strings["(click to open/close)"] = "(klicka för att öppna/stänga)"; -App::$strings["Link text"] = "Länktext"; -App::$strings["URL of link"] = "Länkens URL"; -App::$strings["Use Hubzilla magic-auth if available"] = "Använd Hubzilla magic-auth om tillgängligt"; -App::$strings["Open link in new window"] = "Öppna länk i nytt fönster"; -App::$strings["Order in list"] = "Ordningstal i listan"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Större tal sjunker till botten av listan"; -App::$strings["Menu item not found."] = "Menyval hittas inte."; -App::$strings["Menu item deleted."] = "Menyval borttaget."; -App::$strings["Menu item could not be deleted."] = "Menyval kunde inte tas bort."; -App::$strings["Edit Menu Element"] = "Redigera menyval"; -App::$strings["Modify"] = "Ändra"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s följer %2\$ss %3\$s"; -App::$strings["Edit post"] = "Redigera inlägg"; -App::$strings["No potential page delegates located."] = "Inga potentiella sid-ombud funna."; -App::$strings["Delegate Page Management"] = "Delegera sidhantering"; -App::$strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Ombud kan hantera alla aspekter av det här kontot/den här sidan förutom grundläggande kontoinställningar. Delegera inte ditt personliga konto till någon som du inte litar fullständigt på."; -App::$strings["Existing Page Managers"] = "Befintliga sid-ansvariga"; -App::$strings["Existing Page Delegates"] = "Befintliga sid-ombud"; -App::$strings["Potential Delegates"] = "Potentiella ombud"; -App::$strings["Remove"] = "Ta bort"; -App::$strings["Add"] = "Lägg till"; -App::$strings["No entries."] = "Inga poster."; -App::$strings["Select a bookmark folder"] = "Välj en bokmärkeskatalog"; -App::$strings["Save Bookmark"] = "Spara bokmärke"; -App::$strings["URL of bookmark"] = "Bokmärkets URL"; -App::$strings["Description"] = "Beskrivning"; -App::$strings["Or enter new bookmark folder name"] = "Eller ange nytt namn på bokmärkeskatalog"; -App::$strings["Public Sites"] = "Offentliga servrar"; -App::$strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links may provide additional details."] = "De listade servrarna tillåter offentlig registrering i Hubzilla. Alla servrar i matrisen är sammankopplade, så medlemskap i en av dem medför medlemskap i matrisen som helhet. Vissa servrar kan kräva abonnemang eller erbjuda uppdelade tjänstenivåer. Leverantörslänkarna kan ge ytterligare detaljer."; -App::$strings["Site URL"] = "Server-URL"; -App::$strings["Access Type"] = "Åtkomsttyp"; -App::$strings["Registration Policy"] = "Registreringspolicy"; -App::$strings["Location"] = "Plats"; -App::$strings["You must be logged in to see this page."] = "Du måste vara inloggad för att se den här sidan."; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Otillräckliga behörigheter. Förfrågan omdirigerad till profilsidan."; -App::$strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Hubzilla - Gäster: Användarnamn {din e-postadress}, Lösenord: +++"; -App::$strings["Please login."] = "Logga in."; -App::$strings["Room not found"] = "Rum hittas inte"; -App::$strings["Leave Room"] = "Lämna rummet"; -App::$strings["Delete This Room"] = "Ta bort det här rummet"; -App::$strings["I am away right now"] = "Jag är borta för tillfället"; -App::$strings["I am online"] = "Jag är online"; -App::$strings["Bookmark this room"] = "Bokmärk det här rummet"; -App::$strings["New Chatroom"] = "Nytt chattrum"; -App::$strings["Chatroom Name"] = "Namn på chattrum"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss chattrum"; -App::$strings["Away"] = "Borta"; -App::$strings["Online"] = "Online"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Vi drabbades av ett problem vid inloggningen med OpenID:t du uppgav. Kontrollera att ID:t är korrekt stavat."; -App::$strings["The error message was:"] = "Felmeddelandet var:"; -App::$strings["Authentication failed."] = "Inloggning misslyckades."; -App::$strings["Remote Authentication"] = "Fjärrinloggning"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Ange din kanaladress (t.ex. kanal@example.com)"; -App::$strings["Authenticate"] = "Autentisera"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Borttagning av kanal tillåts inte inom 48 timmar efter att kontolösenordet har ändrats."; -App::$strings["Remove This Channel"] = "Ta bort den här kanalen"; -App::$strings["This will completely remove this channel from the network. Once this has been done it is not recoverable."] = "Det här kommer att ta bort den här kanalen helt från nätverket. När det är gjort går det inte att återställa den."; -App::$strings["Please enter your password for verification:"] = "Ange ditt lösenord för att bekräfta:"; -App::$strings["Remove this channel and all its clones from the network"] = "Ta bort den här kanalen och alla dess kloner från nätverket"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Som standard kommer bara den här hubbens instans av kanalen att tas bort från nätverket"; -App::$strings["Remove Channel"] = "Ta bort kanal"; -App::$strings["Public access denied."] = "Offentlig behörighet saknas."; -App::$strings["No channel."] = "Ingen kanal."; -App::$strings["Common connections"] = "Gemensamma kontakter"; -App::$strings["No connections in common."] = "Inga gemensamma kontakter."; -App::$strings["No valid account found."] = "Inget giltigt konto hittades."; -App::$strings["Password reset request issued. Check your email."] = "Lösenordsåterställning har skickats. Kontrollera din e-post."; -App::$strings["Site Member (%s)"] = "Servermedlem (%s)"; -App::$strings["Password reset requested at %s"] = "Lösenordsåterställning begärd på %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Begäran kunde inte bekräftas. (Du kan ha skickat den tidigare.) Lösenordsåterställningen misslyckades."; -App::$strings["Password Reset"] = "Lösenordsåterställning"; -App::$strings["Your password has been reset as requested."] = "Ditt lösenord har återställts som begärt."; -App::$strings["Your new password is"] = "Ditt nya lösenord är"; -App::$strings["Save or copy your new password - and then"] = "Spara eller kopiera ditt nya lösenord - "; -App::$strings["click here to login"] = "klicka sedan här för att logga in"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Ditt lösenord kan bytas från sidan Inställningar när du är inloggad."; -App::$strings["Your password has changed at %s"] = "Ditt lösenord byttes på %s"; -App::$strings["Forgot your Password?"] = "Glömt lösenordet?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Ange din e-postadress och skicka för att återställa ditt lösenord. Kontrollera sedan din e-post för vidare instruktioner."; -App::$strings["Email Address"] = "E-postadress"; -App::$strings["Reset"] = "Återställ"; -App::$strings["Unable to locate original post."] = "Kunde inte hitta originalinlägget."; -App::$strings["Empty post discarded."] = "Tomt inlägg förkastat."; -App::$strings["Executable content type not permitted to this channel."] = "Körbart innehåll tillåts inte i den här kanalen."; -App::$strings["System error. Post not saved."] = "Systemfel. Inlägget inte sparat."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du har nått din gräns på %1$.0f toppnivåinlägg."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du har nått din gräns på %1$.0f webbsidor."; -App::$strings["Could not access contact record."] = "Kunde inte komma åt kontaktuppgifter."; -App::$strings["Could not locate selected profile."] = "Kunde inte hitta vald profil."; -App::$strings["Connection updated."] = "Kontakt uppdaterad."; -App::$strings["Failed to update connection record."] = "Misslyckades att uppdatera kontaktuppgifter."; -App::$strings["Blocked"] = "Blockerade"; -App::$strings["Ignored"] = "Ignorerade"; -App::$strings["Hidden"] = "Dolda"; -App::$strings["Archived"] = "Arkiverade"; -App::$strings["All"] = "Alla"; -App::$strings["Suggest new connections"] = "Föreslå nya kontakter"; -App::$strings["New Connections"] = "Nya kontakter"; -App::$strings["Show pending (new) connections"] = "Visa väntande (nya) kontakter"; -App::$strings["All Connections"] = "Alla kontakter"; -App::$strings["Show all connections"] = "Visa alla kontakter"; -App::$strings["Unblocked"] = "Ej blockerade"; -App::$strings["Only show unblocked connections"] = "Visa endast ej blockerade kontakter"; -App::$strings["Only show blocked connections"] = "Visa endast blockerade kontakter"; -App::$strings["Only show ignored connections"] = "Visa endast ignorerade kontakter"; -App::$strings["Only show archived connections"] = "Visa endast arkiverade kontakter"; -App::$strings["Only show hidden connections"] = "Visa endast dolda kontakter"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Redigera kontakt"; -App::$strings["Search your connections"] = "Sök bland dina kontakter"; -App::$strings["Finding: "] = "Sökning efter: "; -App::$strings["Item not found"] = "Posten hittas inte"; -App::$strings["Edit Block"] = "Redigera block"; -App::$strings["Delete block?"] = "Ta bort block?"; -App::$strings["Insert YouTube video"] = "Infoga Youtube-video"; -App::$strings["Insert Vorbis [.ogg] video"] = "Infoga Vorbis [.ogg]-video"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Infoga Vorbis [.ogg]-ljud"; -App::$strings["Delete Block"] = "Ta bort block"; -App::$strings["Name is required"] = "Namn är obligatoriskt"; -App::$strings["Key and Secret are required"] = "Nyckel och kod är obligatoriska"; -App::$strings["Passwords do not match. Password unchanged."] = "Lösenorden stämmer inte överens. Lösenordet har inte ändrats."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Tomma lösenord tillåts inte. Lösenordet har inte ändrats."; -App::$strings["Password changed."] = "Lösenordet ändrat."; -App::$strings["Password update failed. Please try again."] = "Lösenordsuppdatering misslyckades. Försök igen."; -App::$strings["Not valid email."] = "Inte en giltig e-postadress."; -App::$strings["Protected email address. Cannot change to that email."] = "Skyddad e-postadress. Kan inte ändra till den."; -App::$strings["System failure storing new email. Please try again."] = "Systemfel när ny e-postadress skulle sparas. Försök igen."; -App::$strings["Settings updated."] = "Inställningar uppdaterade."; -App::$strings["Add application"] = "Lägg till applikation"; -App::$strings["Name of application"] = "Applikationens namn"; -App::$strings["Consumer Key"] = "Nyckel för konsument"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatiskt genererad - ändra om så önskas. Maxlängd 20"; -App::$strings["Consumer Secret"] = "Kod för konsument"; -App::$strings["Redirect"] = "Omdirigering"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Omdirigerings-URI - lämna blankt om inte din applikation specifikt behöver det"; -App::$strings["Icon url"] = "Ikon-URL"; -App::$strings["Optional"] = "Frivillig"; -App::$strings["You can't edit this application."] = "Du kan inte redigera den här applikationen."; -App::$strings["Connected Apps"] = "Anslutna appar"; -App::$strings["Client key starts with"] = "Klientnyckel börjar med"; -App::$strings["No name"] = "Inget namn"; -App::$strings["Remove authorization"] = "Ta bort behörighet"; -App::$strings["No feature settings configured"] = "Inga tilläggsinställningar konfigurerade"; -App::$strings["Feature Settings"] = "Tilläggsinställningar"; -App::$strings["Account Settings"] = "Kontoinställningar"; -App::$strings["Password Settings"] = "Lösenordsinställningar"; -App::$strings["New Password:"] = "Nytt lösenord:"; -App::$strings["Confirm:"] = "Bekräfta:"; -App::$strings["Leave password fields blank unless changing"] = "Lämna lösenordsfälten blanka om lösenordet inte ska ändras"; -App::$strings["Email Address:"] = "E-postadress"; -App::$strings["Remove Account"] = "Ta bort konto"; -App::$strings["Remove this account from this server including all its channels"] = "Ta bort det här kontot från servern, inklusive alla dess kanaler"; -App::$strings["Warning: This action is permanent and cannot be reversed."] = "Varning: Den här handlingen är permanent och kan inte återställas."; -App::$strings["Off"] = "Av"; -App::$strings["On"] = "På"; -App::$strings["Additional Features"] = "Tilläggsfunktioner"; -App::$strings["Connector Settings"] = "Anslutningsinställningar"; -App::$strings["No special theme for mobile devices"] = "Inget särskilt tema för mobila enheter"; -App::$strings["%s - (Experimental)"] = "%s - (experimentellt)"; -App::$strings["mobile"] = "mobilt"; -App::$strings["Display Settings"] = "Utseende"; -App::$strings["Display Theme:"] = "Tema för utseende:"; -App::$strings["Mobile Theme:"] = "Mobilt tema:"; -App::$strings["Enable user zoom on mobile devices"] = "Tillåt användare att zooma på mobila enheter"; -App::$strings["Update browser every xx seconds"] = "Uppdatera webbläsaren var xx sekund"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minst 10 sekunder, inget maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Högsta antal konversationer att ladda åt gången:"; -App::$strings["Maximum of 100 items"] = "Maximalt 100 poster"; -App::$strings["Don't show emoticons"] = "Visa inte känsloikoner"; -App::$strings["Link post titles to source"] = "Länka inläggstitlar till källan"; -App::$strings["System Page Layout Editor - (advanced)"] = "Redigera systemets sidlayout (avancerat)"; -App::$strings["Use blog/list mode on channel page"] = "Använd blogg-/listläge på kanalsida"; -App::$strings["(comments displayed separately)"] = "(kommentarer visas separat)"; -App::$strings["Use blog/list mode on matrix page"] = "Använd blogg-/listläge på matrissida"; -App::$strings["Channel page max height of content (in pixels)"] = "Maxhöjd för innehåll på kanalsidor (i pixels)"; -App::$strings["click to expand content exceeding this height"] = "klicka för att fälla ut innehåll som överskrider den här höjden"; -App::$strings["Matrix page max height of content (in pixels)"] = "Maxhöjd för innehåll på matrissidan (i pixels)"; -App::$strings["Nobody except yourself"] = "Ingen utom dig själv"; -App::$strings["Only those you specifically allow"] = "Endast utvalda"; -App::$strings["Approved connections"] = "Godkända kontakter"; -App::$strings["Any connections"] = "Alla kontakter"; -App::$strings["Anybody on this website"] = "Vem som helst på den här servern"; -App::$strings["Anybody in this network"] = "Vem som helst i det här nätverket"; -App::$strings["Anybody authenticated"] = "Vem som helst som har autentiserat sig"; -App::$strings["Anybody on the internet"] = "Vem som helst på Internet"; -App::$strings["Publish your default profile in the network directory"] = "Publicera din standardprofil i nätverkskatalogen"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Tillåt oss att föreslå dig som möjlig vän för nya medlemmar"; -App::$strings["or"] = "eller"; -App::$strings["Your channel address is"] = "Din kanaladress är"; -App::$strings["Channel Settings"] = "Kanalinställningar"; -App::$strings["Basic Settings"] = "Grundläggande inställningar"; -App::$strings["Your Timezone:"] = "Din tidszon:"; -App::$strings["Default Post Location:"] = "Standardplats:"; -App::$strings["Geographical location to display on your posts"] = "Geografisk plats att visa för dina inlägg"; -App::$strings["Use Browser Location:"] = "Använd webbläsarens position:"; -App::$strings["Adult Content"] = "Innehåll olämpligt för barn"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Den här kanalen publicerar ofta eller regelbundet innehåll som är olämpligt för barn. (Tagga allt pornografiskt material och/eller nakenhet med #NSFW, tack)"; -App::$strings["Security and Privacy Settings"] = "Säkerhets- och integritetsinställningar"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Dina behörigheter har redan ställts in. Klicka för att visa/ändra"; -App::$strings["Hide my online presence"] = "Visa inte min online-närvaro"; -App::$strings["Prevents displaying in your profile that you are online"] = "Förhindrar att det syns i din profil att du är online"; -App::$strings["Simple Privacy Settings:"] = "Enkla integritetsinställningar:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Väldigt offentligt - extremt tillåtande (bör användas försiktigt)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Typiskt - offentligt som standard, privat när så önskas (liknande behörigheter som på sociala nätverk men med förbättrad integritet)"; -App::$strings["Private - default private, never open or public"] = "Privat - privat som standard, aldrig öppet eller offentligt"; -App::$strings["Blocked - default blocked to/from everybody"] = "Blockera - som standard blockerat till/från alla"; -App::$strings["Allow others to tag your posts"] = "Låt andra tagga dina inlägg"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Ofta använt av gemenskapen för att i efterhand flagga olämpligt innehåll"; -App::$strings["Advanced Privacy Settings"] = "Avancerade integritetsinställningar"; -App::$strings["Expire other channel content after this many days"] = "Låt annat kanalinnehåll upphöra efter efter så här många dagar"; -App::$strings["0 or blank prevents expiration"] = "0 eller blankt förhindrar upphörande"; -App::$strings["Maximum Friend Requests/Day:"] = "Högsta antal vänförfrågningar per dag:"; -App::$strings["May reduce spam activity"] = "Kan reducera spamaktivitet"; -App::$strings["Default Post Permissions"] = "Standardbehörighet för inlägg"; -App::$strings["Channel permissions category:"] = "Kanalens behörighetskategori:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Högsta antal privata meddelanden per dag från okända personer:"; -App::$strings["Useful to reduce spamming"] = "Användbart för att minska skräputskick"; -App::$strings["Notification Settings"] = "Notifieringsinställningar"; -App::$strings["By default post a status message when:"] = "Skicka som standard ett statusmeddelande när:"; -App::$strings["accepting a friend request"] = "du accepterar en vänförfrågan"; -App::$strings["joining a forum/community"] = "du går med i ett forum/en gemenskap"; -App::$strings["making an interesting profile change"] = "du gör en intressant ändring av profilen"; -App::$strings["Send a notification email when:"] = "Skicka en notifiering via e-post när:"; -App::$strings["You receive a connection request"] = "Du får en kontaktförfrågan"; -App::$strings["Your connections are confirmed"] = "Dina kontakter bekräftas"; -App::$strings["Someone writes on your profile wall"] = "Någon skriver på din profilvägg"; -App::$strings["Someone writes a followup comment"] = "Någon skriver en uppföljande kommentar"; -App::$strings["You receive a private message"] = "Du tar emot ett privat meddelande"; -App::$strings["You receive a friend suggestion"] = "Du tar emot ett vänförslag"; -App::$strings["You are tagged in a post"] = "Du taggas i ett inlägg"; -App::$strings["You are poked/prodded/etc. in a post"] = "Du puffas/stöts till/etc. i ett inlägg"; -App::$strings["Show visual notifications including:"] = "Visa visuella notifieringar vid:"; -App::$strings["Unseen matrix activity"] = "Oläst matrisaktivitet"; -App::$strings["Unseen channel activity"] = "Oläst kanalaktivitet"; -App::$strings["Unseen private messages"] = "Olästa privata meddelanden"; -App::$strings["Recommended"] = "Rekommenderas"; -App::$strings["Upcoming events"] = "Kommande händelser"; -App::$strings["Events today"] = "Dagens händelser"; -App::$strings["Upcoming birthdays"] = "Kommande födelsedagar"; -App::$strings["Not available in all themes"] = "Inte tillgänglig i alla teman"; -App::$strings["System (personal) notifications"] = "Systemmeddelanden (personliga)"; -App::$strings["System info messages"] = "Systemmeddelanden"; -App::$strings["System critical alerts"] = "Systemkritiska varningar"; -App::$strings["New connections"] = "Nya kontakter"; -App::$strings["System Registrations"] = "Systemregistreringar"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Visa även nya väggmeddelanden, privata meddelanden, och anslutningar under Meddelanden"; -App::$strings["Notify me of events this many days in advance"] = "Meddela mig om händelser så här många dagar i förväg"; -App::$strings["Must be greater than 0"] = "Måste vara större än 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Avancerade konto-/sidtypsinställningar"; -App::$strings["Change the behaviour of this account for special situations"] = "Ändra det här kontots beteende i särskilda situationer"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktivera expertläge (i Inställningar > Ytterligare funktioner) för att göra ändringar!"; -App::$strings["Miscellaneous Settings"] = "Diverse inställningar"; -App::$strings["Personal menu to display in your channel pages"] = "Personlig meny att visa i dina kanalsidor"; -App::$strings["Remove this channel"] = "Ta bort den här kanalen"; -App::$strings["- select -"] = "- välj -"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installerade tillägg/moduler/appar:"; -App::$strings["No installed plugins/addons/apps"] = "Inga installerade tillägg/moduler/appar"; -App::$strings["Red"] = "Red"; -App::$strings["This is a hub of the Hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Det här är en hubb som ingår i Hubzilla - ett globalt samverkande nätverk av decentraliserade webbplatser med bättre integritetskydd."; -App::$strings["Tag: "] = "Tagg: "; -App::$strings["Last background fetch: "] = "Senaste bakgrundshämtning: "; -App::$strings["Running at web location"] = "Kör på webbutrymmet"; -App::$strings["Please visit Redmatrix.me to learn more about the Hubzilla."] = "Besök Redmatrix.me för att lära dig mer om Hubzilla."; -App::$strings["Bug reports and issues: please visit"] = "Buggrapporter och problem: besök"; -App::$strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Förslag, uppskattning, etc. - maila \"hubzilla\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Serveradministratörer"; -App::$strings["Page owner information could not be retrieved."] = "Information om sidans ägare kunde inte hittas."; -App::$strings["Album not found."] = "Albumet hittades inte."; -App::$strings["Delete Album"] = "Ta bort album"; -App::$strings["Delete Photo"] = "Ta bort foto"; -App::$strings["No photos selected"] = "Inga foton valda"; -App::$strings["Access to this item is restricted."] = "Åtkomst till den här posten är begränsat."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB av %2$.2f MB fotolagring använt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB fotolagring använt."; -App::$strings["Upload Photos"] = "Ladda upp foton"; -App::$strings["Enter a new album name"] = "Ange ett nytt albumnamn"; -App::$strings["or select an existing one (doubleclick)"] = "eller välj ett befintligt (dubbelklicka)"; -App::$strings["Do not show a status post for this upload"] = "Visa inte en statusuppdatering för den här uppladdningen"; -App::$strings["Album name could not be decoded"] = "Albumnamn kunde inte tolkas"; -App::$strings["Contact Photos"] = "Kontaktfoton"; -App::$strings["Show Newest First"] = "Visa nyast först"; -App::$strings["Show Oldest First"] = "Visa äldst först"; -App::$strings["View Photo"] = "Visa foto"; -App::$strings["Edit Album"] = "Redigera album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Behörighet saknas. Åtkomst till den här posten kan vara begränsat."; -App::$strings["Photo not available"] = "Foto inte tillgängligt"; -App::$strings["Use as profile photo"] = "Använd som profilfoto"; -App::$strings["Private Photo"] = "Privat foto"; -App::$strings["View Full Size"] = "Visa fullstorlek"; -App::$strings["Edit photo"] = "Redigera foto"; -App::$strings["Rotate CW (right)"] = "Rotera medurs (höger)"; -App::$strings["Rotate CCW (left)"] = "Rotera moturs (vänster)"; -App::$strings["Caption"] = "Bildtext"; -App::$strings["Add a Tag"] = "Lägg till en tagg"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exempel: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Flagga som olämpligt för barn i albumvyn"; -App::$strings["In This Photo:"] = "På fotot:"; -App::$strings["View Album"] = "Visa album"; -App::$strings["Recent Photos"] = "Nya foton"; -App::$strings["network"] = "nätverk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Poke/Prod"] = "Puffa/stöt till"; -App::$strings["poke, prod or do other things to somebody"] = "puffa, stöt till eller gör andra saker mot någon"; -App::$strings["Recipient"] = "Mottagare"; -App::$strings["Choose what you wish to do to recipient"] = "Välj vad du önskar göra med mottagaren"; -App::$strings["Make this post private"] = "Gör det här inlägget privat"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du har skapat %1$.0f av %2$.0f tillåtna kanaler."; -App::$strings["Create a new channel"] = "Skapa en ny kanal"; -App::$strings["Current Channel"] = "Nuvarande kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Växla till en av dina kanaler genom att välja den."; -App::$strings["Default Channel"] = "Standardkanal"; -App::$strings["Make Default"] = "Gör till standard"; -App::$strings["%d new messages"] = "%d nya meddelanden"; -App::$strings["%d new introductions"] = "%d nya presentationer"; -App::$strings["This site is not a directory server"] = "Den här servern är inte en katalogserver"; -App::$strings["Bookmark added"] = "Bokmärke tillagt"; -App::$strings["My Bookmarks"] = "Mina bokmärken"; -App::$strings["My Connections Bookmarks"] = "Mina kontakters bokmärken"; -App::$strings["Item is not editable"] = "Posten går ej att redigera"; -App::$strings["Delete item?"] = "Ta bort posten?"; -App::$strings["Collection created."] = "Krets skapad."; -App::$strings["Could not create collection."] = "Kunde inte skapa krets."; -App::$strings["Collection updated."] = "Kretsen uppdaterad."; -App::$strings["Create a collection of channels."] = "Skapa en krets av kanaler."; -App::$strings["Collection Name: "] = "Namn på krets: "; -App::$strings["Members are visible to other channels"] = "Medlemmar kan ses av andra kanaler"; -App::$strings["Collection removed."] = "Krets borttagen."; -App::$strings["Unable to remove collection."] = "Kunde inte ta bort krets."; -App::$strings["Collection Editor"] = "Redigera krets"; -App::$strings["Members"] = "Medlemmar"; -App::$strings["All Connected Channels"] = "Alla anslutna kanaler"; -App::$strings["Click on a channel to add or remove."] = "Klicka på en kanal för att lägga till eller ta bort."; -App::$strings["sent you a private message"] = "skickade ett privat meddelande till dig"; -App::$strings["added your channel"] = "lade till din kanal"; -App::$strings["posted an event"] = "skapade en händelse"; -App::$strings["Edit Layout"] = "Redigera layout"; -App::$strings["Delete layout?"] = "Ta bort layout?"; -App::$strings["Delete Layout"] = "Ta bort layout"; -App::$strings["Failed to create source. No channel selected."] = "Misslyckades att skapa källa. Ingen kanal vald."; -App::$strings["Source created."] = "Källa skapad."; -App::$strings["Source updated."] = "Källa uppdaterad."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Hantera fjärrkällor med innehåll för din kanal."; -App::$strings["New Source"] = "Ny källa"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importera allt eller valt innehåll från följande kanal till den här kanalen och distribuera det enligt dina kanalinställningar."; -App::$strings["Only import content with these words (one per line)"] = "Importera endast innehåll med de här orden (ett per rad)"; -App::$strings["Leave blank to import all public content"] = "Lämna blankt för att importera allt offentligt innehåll"; -App::$strings["Channel Name"] = "Kanalnamn"; -App::$strings["Source not found."] = "Källa hittades inte."; -App::$strings["Edit Source"] = "Redigera källa"; -App::$strings["Delete Source"] = "Ta bort källa"; -App::$strings["Source removed"] = "Källa borttagen"; -App::$strings["Unable to remove source."] = "Kunde inte ta bort källa."; -App::$strings["Channel added."] = "Kanal tillagd."; -App::$strings["Layout updated."] = "Layout uppdaterad."; -App::$strings["Edit System Page Description"] = "Redigera systemsidbeskrivning"; -App::$strings["Layout not found."] = "Layout hittas inte."; -App::$strings["Module Name:"] = "Modulnamn:"; -App::$strings["Layout Help"] = "Layouthjälp"; -App::$strings["Edit Webpage"] = "Redigera webbsida"; -App::$strings["Delete webpage?"] = "Ta bort webbsida?"; -App::$strings["Delete Webpage"] = "Ta bort webbsida"; -App::$strings["webpage"] = "webbsida"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["%s element installed"] = "%selement installerat"; -App::$strings["Image uploaded but image cropping failed."] = "Bilden laddades upp men beskärning misslyckades."; -App::$strings["Image resize failed."] = "Ändring av bildstorlek misslyckades."; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-uppdatera sidan eller rensa webbläsarcachen om det nya fotot inte visas direkt."; -App::$strings["Image exceeds size limit of %d"] = "Bilden överskrider storleksbegränsningen %d"; -App::$strings["Unable to process image."] = "Kunde inte behandla bilden."; -App::$strings["Photo not available."] = "Fotot är inte tillgängligt."; -App::$strings["Upload File:"] = "Ladda upp fil:"; -App::$strings["Select a profile:"] = "Välj en profil:"; -App::$strings["Upload Profile Photo"] = "Ladda upp profilfoto"; -App::$strings["skip this step"] = "hoppa över det här steget"; -App::$strings["select a photo from your photo albums"] = "välj ett foto från dina fotoalbum"; -App::$strings["Crop Image"] = "Beskär bild"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Justera bildens beskärning för bästa utseende."; -App::$strings["Done Editing"] = "Klar med redigering"; -App::$strings["Image uploaded successfully."] = "Bilduppladdning lyckades."; -App::$strings["Image upload failed."] = "Bilduppladdning misslyckades."; -App::$strings["Image size reduction [%s] failed."] = "Krympning av bilden [%s] misslyckades."; -App::$strings["Contact not found."] = "Kontakten hittades inte."; -App::$strings["Friend suggestion sent."] = "Vänförfrågan skickad."; -App::$strings["Suggest Friends"] = "Föreslå vänner"; -App::$strings["Suggest a friend for %s"] = "Föreslå en vän för %s"; -App::$strings["Help:"] = "Hjälp:"; -App::$strings["Not Found"] = "Hittas inte"; -App::$strings["Like/Dislike"] = "Gilla/ogilla"; -App::$strings["This action is restricted to members."] = "Den här åtgärden fungerar bara för medlemmar."; -App::$strings["Please login with your Hubzilla ID or register as a new Redmatrix.member to continue."] = "Logga in med ditt Hubzilla-ID eller registrera dig som ny Redmatrix.medlem för att fortsätta."; -App::$strings["Invalid request."] = "Ogiltig begäran."; -App::$strings["thing"] = "sak"; -App::$strings["Channel unavailable."] = "Kanalen kan ej nås."; -App::$strings["Previous action reversed."] = "Föregående åtgärd återställdes."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s instämmer med %2\$ss %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s instämmer inte med %2\$ss %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s tar inte ställning angående %2\$ss %3\$s"; -App::$strings["Action completed."] = "Åtgärden slutfördes."; -App::$strings["Thank you."] = "Tack."; -App::$strings["Total invitation limit exceeded."] = "Gränsen för totalt antal inbjudningar överskriden."; -App::$strings["%s : Not a valid email address."] = "%s: Inte en giltig e-postadress."; -App::$strings["Please join us on Red"] = "Gå med oss i Red"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Inbjudningsgränsen överskriden. Kontakta din serveradministratör."; -App::$strings["%s : Message delivery failed."] = "%s : Leverans av meddelande misslyckades."; -App::$strings["%d message sent."] = array( - 0 => "%d meddelande sänt.", - 1 => "%d meddelanden sända.", -); -App::$strings["You have no more invitations available"] = "Du har inga fler inbjudningar kvar"; -App::$strings["Send invitations"] = "Skicka inbjudan"; -App::$strings["Enter email addresses, one per line:"] = "Ange e-postadresser, en per rad:"; -App::$strings["Your message:"] = "Ditt meddelande:"; -App::$strings["Please join my community on Hubzilla."] = "Gå med mig i gemenskapen på Hubzilla."; -App::$strings["You will need to supply this invitation code: "] = "Du kommer att behöva den här inbjudningskoden: "; -App::$strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Skapa konto på en Hubzilla-server (alla är ihopkopplade)"; -App::$strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Ange min Hubzilla-adress i webbplatsens sökruta."; -App::$strings["or visit "] = "eller besök "; -App::$strings["3. Click [Connect]"] = "3. Klicka [Ta kontakt]"; -App::$strings["Permission Denied."] = "Behörighet saknas."; -App::$strings["File not found."] = "Filen hittas inte."; -App::$strings["Edit file permissions"] = "Redigera filrättigheter"; -App::$strings["Set/edit permissions"] = "Ställ in/ändra behörigheter"; -App::$strings["Include all files and sub folders"] = "Inkludera alla filer och underkataloger"; -App::$strings["Return to file list"] = "Återgå till fillistan"; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopiera/klistra in den här koden för att bifoga filen i ett inlägg"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopiera/klistra in den här URL:en för att länka till filen från en webbsida"; -App::$strings["Attach this file to a new post"] = "Bifoga den här filen till ett nytt inlägg"; -App::$strings["Show URL to this file"] = "Visa URL till den här filen"; -App::$strings["Do not show in shared with me folder of your connections"] = "Visa inte i dina kontakters mapp med delat material"; -App::$strings["Hubzilla channel"] = "Hubzilla-kanal"; -App::$strings["Remote privacy information not available."] = "Icke-lokal integritetsinformation är inte tillgänglig"; -App::$strings["Visible to:"] = "Kan ses av:"; -App::$strings["Your service plan only allows %d channels."] = "Din tjänstenivå tillåter bara %d kanaler."; -App::$strings["Nothing to import."] = "Inget att importera."; -App::$strings["Unable to download data from old server"] = "Kunde inte ladda ner data från den gamla servern"; -App::$strings["Imported file is empty."] = "Den importerade filen är tom."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan inte skapa ett dubblerat kanal-ID på det här systemet. Import misslyckades."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Kan inte skapa en unik kanaladress. Import misslyckades."; -App::$strings["Channel clone failed. Import failed."] = "Kloning av kanalen misslyckades. Import misslyckades."; -App::$strings["Cloned channel not found. Import failed."] = "Den klonade kanalen hittas inte. Import misslyckades."; -App::$strings["Import completed."] = "Import slutförd."; -App::$strings["You must be logged in to use this feature."] = "Du måste vara inloggad för att kunna använda den här funktionen."; -App::$strings["Import Channel"] = "Importera kanal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file. Only identity and connections/relationships will be imported. Importation of content is not yet available."] = "Använd det här formuläret för att importera en befintlig kanal från en annan server/hubb. Du kan få kanal-ID:t från den gamla servern/hubben över nätverket eller tillhandahålla en exportfil. Endast identitet och kontakter/relationer kommer att importeras. Import av innehåll stöds ännu inte."; -App::$strings["File to Upload"] = "Fil att ladda upp"; -App::$strings["Or provide the old server/hub details"] = "Eller ge uppgifter om den gamla servern/hubben"; -App::$strings["Your old identity address (xyz@example.com)"] = "Din gamla identitetsadress (xyz@example.com)"; -App::$strings["Your old login email address"] = "Din gamla e-postadress för inloggning"; -App::$strings["Your old login password"] = "Ditt gamla inloggningslösenord"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Ange i bägge fallen om den här hubben ska vara din nya primära adress eller om den gamla platsen ska fortsätta att ha den rollen. Du kommer att kunna posta från båda platser, men bara en kan vara primärt utrymme för filer, foton och media."; -App::$strings["Make this hub my primary location"] = "Gör den här hubben till min primära plats"; -App::$strings["Import existing posts if possible"] = "Importera befintliga inlägg om möjligt"; -App::$strings["Location not found."] = "Platsen hittades inte."; -App::$strings["Primary location cannot be removed."] = "Huvudplatsen kan inte tas bort."; -App::$strings["No locations found."] = "Inga platser hittades."; -App::$strings["Manage Channel Locations"] = "Hantera kanalplatser"; -App::$strings["Location (address)"] = "Plats (adress)"; -App::$strings["Primary Location"] = "Huvudplats"; -App::$strings["Drop location"] = "Ta bort plats"; -App::$strings["Thing updated"] = "Föremål uppdaterat"; -App::$strings["Object store: failed"] = "Objektlagring: misslyckades"; -App::$strings["Thing added"] = "Föremål tillagt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Visa föremål"; -App::$strings["item not found."] = "föremål hittades inte."; -App::$strings["Edit Thing"] = "Redigera föremål"; -App::$strings["Select a profile"] = "Välj en profil"; -App::$strings["Post an activity"] = "Posta en aktivitet"; -App::$strings["Only sends to viewers of the applicable profile"] = "Skickar bara till de som tittar på den aktuella profilen"; -App::$strings["Name of thing e.g. something"] = "Namn på föremål, t.ex. någonting"; -App::$strings["URL of thing (optional)"] = "URL för föremål (frivilligt)"; -App::$strings["URL for photo of thing (optional)"] = "URL för foto på föremål (frivilligt)"; -App::$strings["Add Thing to your Profile"] = "Lägg till föremål till din profil"; -App::$strings["Help with this feature"] = "Hjälp för den här funktionen"; -App::$strings["Layout Name"] = "Layoutnamn"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s taggade%2\$ss %3\$s med %4\$s"; -App::$strings["is now connected to"] = "har nu kontakt med"; -App::$strings["Could not access address book record."] = "Kunde inte komma åt adressboksuppgifter."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Uppdatering misslyckades - kanalen är inte tillgänglig."; -App::$strings["Channel has been unblocked"] = "Kanalen är inte längre blockerad"; -App::$strings["Channel has been blocked"] = "Kanalen har blockerats"; -App::$strings["Unable to set address book parameters."] = "Kunde inte ställa in adressboksparametrar."; -App::$strings["Channel has been unignored"] = "Kanalen ignoreras inte längre"; -App::$strings["Channel has been ignored"] = "Kanalen har ignorerats"; -App::$strings["Channel has been unarchived"] = "Kanalen arkiveras inte längre"; -App::$strings["Channel has been archived"] = "Kanalen har arkiverats"; -App::$strings["Channel has been unhidden"] = "Kanalen döljs inte längre"; -App::$strings["Channel has been hidden"] = "Kanalen har dolts"; -App::$strings["Channel has been approved"] = "Kanalen har godkänts"; -App::$strings["Channel has been unapproved"] = "Kanalen är inte godkänd längre"; -App::$strings["Connection has been removed."] = "Kontakten har tagits bort."; -App::$strings["View %s's profile"] = "Visa %ss profil"; -App::$strings["Refresh Permissions"] = "Uppdatera behörigheter"; -App::$strings["Fetch updated permissions"] = "Hämta uppdaterade behörigheter"; -App::$strings["Recent Activity"] = "Senaste aktiviteten"; -App::$strings["View recent posts and comments"] = "Visa de senaste inläggen och kommentarerna"; -App::$strings["Unblock"] = "Avblockera"; -App::$strings["Block"] = "Blockera"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blockera (eller ta bort blockering av) all kommunikation med den här kontakten"; -App::$strings["Unignore"] = "Sluta att ignorera"; -App::$strings["Ignore"] = "Ignorera"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorera (eller sluta att ignorera) all inkommande kommunikation från den här kontakten"; -App::$strings["Unarchive"] = "Sluta att arkivera"; -App::$strings["Archive"] = "Arkivera"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Arkivera (eller sluta att arkivera) den här kontakten - märk kanalen som död men behåll innehåll"; -App::$strings["Unhide"] = "Sluta att dölja"; -App::$strings["Hide"] = "Dölj"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Dölj eller sluta att dölja den här kontakten från dina övriga kontakter"; -App::$strings["Delete this connection"] = "Ta bort den här kontakten"; -App::$strings["Approve this connection"] = "Godkänn den här kontakten"; -App::$strings["Accept connection to allow communication"] = "Acceptera kontakten för att tillåta kommunikation"; -App::$strings["Connections: settings for %s"] = "Kontakter: inställningar för %s"; -App::$strings["Apply these permissions automatically"] = "Använd de här rättigheterna automatiskt"; -App::$strings["Apply the permissions indicated on this page to all new connections."] = "Använd rättigheterna angivna på den här sidan för alla nya kontakter."; -App::$strings["Slide to adjust your degree of friendship"] = "Dra för att justera er vänskapsnivå"; -App::$strings["Rating (this information is public)"] = "Betyg (den här informationen är offentlig)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Frivillig kommentar till betyget (den här informationen är offentlig)"; -App::$strings["Default permissions for your channel type have (just) been applied. They have not yet been submitted. Please review the permissions on this page and make any desired changes at this time. This new connection may not be able to communicate with you until you submit this page, which will install and apply the selected permissions."] = "Standardbehörigheterna för din kanaltyp har (precis) tillämpats. De har ännu inte sparats. Titta igenom behörigheterna på den här sidan och gör önskade ändringar nu. Den här kontakten kan inte kommunicera med dig förrän du sparar den här sidan, då de valda behörigheterna installeras och träder i kraft."; -App::$strings["inherited"] = "ärvd"; -App::$strings["Connection has no individual permissions!"] = "Kontakten har inga individuella behörigheter!"; -App::$strings["This may be appropriate based on your privacy settings, though you may wish to review the \"Advanced Permissions\"."] = "Det här kan vara lämpligt beroende på dina integritetsinställningar, men du vill kanske se över de \"Avancerade inställningarna\"."; -App::$strings["Profile Visibility"] = "Profilsynlighet"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Välj profilen som du vill ska synas när %s ser din profil på ett säkert sätt."; -App::$strings["Contact Information / Notes"] = "Kontaktinformation / anteckningar"; -App::$strings["Edit contact notes"] = "Redigera anteckningar för kontakten"; -App::$strings["Their Settings"] = "Deras inställningar"; -App::$strings["My Settings"] = "Mina inställningar"; -App::$strings["Default permissions for this channel type have (just) been applied. They have not been saved and there are currently no stored default permissions. Please review/edit the applied settings and click [Submit] to finalize."] = "Standardbehörigheterna för den här kanaltypen har (precis) tillämpats. De har inte sparats och det finns för närvarande inga sparade standardbehörigheter. Titta igenom/ändra de tillämpade inställningarna och klicka [Spara] för att avsluta."; -App::$strings["Clear/Disable Automatic Permissions"] = "Rensa/inaktivera automatiska behörigheter"; -App::$strings["Forum Members"] = "Forummedlemmar"; -App::$strings["Soapbox"] = "Talarstol"; -App::$strings["Full Sharing (typical social network permissions)"] = "Full delning (typiska behörigheter för sociala nätverk)"; -App::$strings["Cautious Sharing "] = "Försiktig delning"; -App::$strings["Follow Only"] = "Följ endast"; -App::$strings["Individual Permissions"] = "Individuella behörigheter"; -App::$strings["Some permissions may be inherited from your channel privacy settings, which have higher priority than individual settings. Changing those inherited settings on this page will have no effect."] = "Vissa behörigheter kan ärvas från din kanals integritetsinställningar, vilka har högre prioritet än individuella inställningar. Ändring av de ärvda inställningarna på den här sidan har ingen effekt."; -App::$strings["Advanced Permissions"] = "Avancerade behörighetsinställningar"; -App::$strings["Simple Permissions (select one and submit)"] = "Enkla behörighetsinställningar (välj en och spara)"; -App::$strings["Visit %s's profile - %s"] = "Besök %ss profil - %s"; -App::$strings["Block/Unblock contact"] = "Blockera/häv blockering av kontakt"; -App::$strings["Ignore contact"] = "Ignorera kontakt"; -App::$strings["Repair URL settings"] = "Reparera URL-inställningar"; -App::$strings["View conversations"] = "Visa konversationer"; -App::$strings["Delete contact"] = "Ta bort kontakt"; -App::$strings["Last update:"] = "Senaste uppdatering:"; -App::$strings["Update public posts"] = "Uppdatera offentliga inlägg"; -App::$strings["Update now"] = "Uppdatera nu"; -App::$strings["Currently blocked"] = "Blockerad"; -App::$strings["Currently ignored"] = "Ignorerad"; -App::$strings["Currently archived"] = "Arkiverad"; -App::$strings["Currently pending"] = "Inväntar svar"; -App::$strings["Tag removed"] = "Tagg borttagen"; -App::$strings["Remove Item Tag"] = "Ta bort innehållstagg"; -App::$strings["Select a tag to remove: "] = "Välj en tagg att ta bort: "; -App::$strings["Theme settings updated."] = "Temainställningar uppdaterade."; -App::$strings["Site"] = "Server"; -App::$strings["Accounts"] = "Konton"; -App::$strings["Channels"] = "Kanaler"; -App::$strings["Plugins"] = "Tillägg"; -App::$strings["Themes"] = "Teman"; -App::$strings["Server"] = "Server"; -App::$strings["Profile Config"] = "Profilkonfiguration"; -App::$strings["DB updates"] = "Databasuppdateringar"; -App::$strings["Logs"] = "Loggar"; -App::$strings["Plugin Features"] = "Tilläggsfunktioner"; -App::$strings["User registrations waiting for confirmation"] = "Användarregistreringar som behöver bekräftas"; -App::$strings["Message queues"] = "Meddelandeköer"; -App::$strings["Administration"] = "Administration"; -App::$strings["Summary"] = "Sammanfattning"; -App::$strings["Registered users"] = "Registrerade användare"; -App::$strings["Pending registrations"] = "Pågående registreringar"; -App::$strings["Version"] = "Version"; -App::$strings["Active plugins"] = "Aktiva tillägg"; -App::$strings["Site settings updated."] = "Serverinställningar uppdaterade."; -App::$strings["experimental"] = "experimentellt"; -App::$strings["unsupported"] = "stöds ej"; -App::$strings["Yes - with approval"] = "Ja - med godkännande"; -App::$strings["My site is not a public server"] = "Min server är inte offentlig"; -App::$strings["My site has paid access only"] = "Min server har endast åtkomst mot betalning"; -App::$strings["My site has free access only"] = "Min server har endast gratis åtkomst"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Min server erbjuder gratis konton med uppgradering mot betalning"; -App::$strings["File upload"] = "Filuppladdning"; -App::$strings["Policies"] = "Policyer"; -App::$strings["Site name"] = "Servernamn"; -App::$strings["Banner/Logo"] = "Banner/logga"; -App::$strings["Administrator Information"] = "Administratörsinformation"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinfo till sidadministratörer. Visas på sidinfosidan. BBCode kan användas här"; -App::$strings["System language"] = "Systemspråk"; -App::$strings["System theme"] = "Systemtema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Förvalt systemtema - kan åsidosättas i användarprofiler - ändra temainställningar"; -App::$strings["Mobile system theme"] = "Mobilt systemtema"; -App::$strings["Theme for mobile devices"] = "Tema för mobila enheter"; -App::$strings["Enable Diaspora Protocol"] = "Aktivera protokoll för Diaspora"; -App::$strings["Communicate with Diaspora and Friendica - experimental"] = "Kommunicera med Diaspora och Friendica - experimentellt"; -App::$strings["Allow Feeds as Connections"] = "Tillåt flöden som kontakter"; -App::$strings["(Heavy system resource usage)"] = "(systemresurskrävande)"; -App::$strings["Maximum image size"] = "Maximal bildstorlek"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximal storlek i byte för uppladdade bilder. Standard är 0, vilket innebär ingen storleksbegränsning."; -App::$strings["Does this site allow new member registration?"] = "Tillåter den här servern nya medlemmar att registrera sig?"; -App::$strings["Which best describes the types of account offered by this hub?"] = "Vilket beskriver bäst kontotypen som erbjuds på den här hubben?"; -App::$strings["Register text"] = "Registreringstext"; -App::$strings["Will be displayed prominently on the registration page."] = "Visas tydligt på registreringssidan."; -App::$strings["Accounts abandoned after x days"] = "Konto övergivet efter x dagar"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Slösar inte systemresurser genom att fråga externa servrar efter övergivna konton. 0 innebär ingen tidsbegränsning."; -App::$strings["Allowed friend domains"] = "Tillåtna vändomäner"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparerad lista med domäner som tillåts att upprätta ett vänförhållande med den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner."; -App::$strings["Allowed email domains"] = "Tillåtna e-postdomäner"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Kommaseparerad lista med domäner som tillåts i e-postadresser för registreringar på den här servern. Jokertecken är tillåtna. Töm för att tillåta alla domäner."; -App::$strings["Not allowed email domains"] = "Otillåtna e-postdomäner"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Kommaseparerad lista med domäner som inte tillåts i e-postadresser för registrering på den här webbplatsen. Jokertecken är tillåtna. Töm för att tillåta alla domäner såvida inte tillåtna domäner har angivits."; -App::$strings["Block public"] = "Blockera offentlig åtkomst"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Välj för att blockera åtkomst till alla personliga sidor som annars skulle vara offentliga på den här servern om man inte är inloggad."; -App::$strings["Verify Email Addresses"] = "Bekräfta e-postadress"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Välj för att bekräfta e-postadresser som används för kontoregistrering (rekommenderas)."; -App::$strings["Force publish"] = "Tvinga publicering"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Välj för att tvinga alla profiler på den här servern att listas i serverkatalogen."; -App::$strings["Disable discovery tab"] = "Inaktivera upptäck-fliken"; -App::$strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Ta bort fliken i nätverksvyn med offentligt innehåll som hämtas från källor valda för den här servern."; -App::$strings["No login on Homepage"] = "Ingen inloggning på hemsidan"; -App::$strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Välj för att gömma inloggningsformuläret från serverns hemsida för oinloggade besökare (t.ex. när du lägger in hemsideinnehållet via serverkanalen)."; -App::$strings["Proxy user"] = "Proxyanvändare"; -App::$strings["Proxy URL"] = "Proxy-URL"; -App::$strings["Network timeout"] = "Nätverkstimeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Värde i sekunder. Sätt till 0 för obegränsat (ej rekommenderat)."; -App::$strings["Delivery interval"] = "Leveransintervall"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Fördröj leveransprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Rekommenderat: 4-5 för delade värdar, 2-3 för virtuella privata servrar. 0-1 för stora dedikerade servrar."; -App::$strings["Poll interval"] = "Hämtningsintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Fördröj hämtningsprocesser som görs i bakgrunden så här många sekunder för att reducera systembelastningen. Om 0 används leveransintervallet."; -App::$strings["Maximum Load Average"] = "Maximal genomsnittsbelastning"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximal systembelastning innan leverans- och hämtningsprocesser skjuts upp - standard är 50."; -App::$strings["No server found"] = "Ingen server hittad"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "för kanal"; -App::$strings["on server"] = "på server"; -App::$strings["Status"] = "Status"; -App::$strings["Update has been marked successful"] = "Uppdatering har markerats som genomförd"; -App::$strings["Executing %s failed. Check system logs."] = "Körning av %s misslyckades. Kontrollera systemloggarna."; -App::$strings["Update %s was successfully applied."] = "Uppdatering %s genomfördes utan problem."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Uppdatering %s returnerade ingen status. Oklart om den lyckades."; -App::$strings["Update function %s could not be found."] = "Uppdateringsfunktion %s kunde inte hittas."; -App::$strings["No failed updates."] = "Inga misslyckade uppdateringar."; -App::$strings["Failed Updates"] = "Misslyckade uppdateringar"; -App::$strings["Mark success (if update was manually applied)"] = "Markera som genomförd (om uppdateringen gjordes manuellt)"; -App::$strings["Attempt to execute this update step automatically"] = "Försök att köra den här uppdateringen automatiskt"; -App::$strings["%s user blocked/unblocked"] = array( - 0 => "%s användare blockerad/avblockerad", - 1 => "%s användare blockerade/avblockerade", -); -App::$strings["%s user deleted"] = array( - 0 => "%s användare borttagen", - 1 => "%s användare borttagna", -); -App::$strings["Account not found"] = "Konto hittas inte"; -App::$strings["User '%s' unblocked"] = "Användare '%s' avblockerad"; -App::$strings["User '%s' blocked"] = "Användare '%s' blockerad"; -App::$strings["Users"] = "Användare"; -App::$strings["select all"] = "välj alla"; -App::$strings["User registrations waiting for confirm"] = "Användarregistreringar som inväntar bekräftelse"; -App::$strings["Request date"] = "Ansökningsdatum"; -App::$strings["No registrations."] = "Inga registreringar."; -App::$strings["Approve"] = "Godkänn"; -App::$strings["Deny"] = "Avslå"; -App::$strings["Register date"] = "Registreringsdatum"; -App::$strings["Last login"] = "Senaste inloggning"; -App::$strings["Expires"] = "Upphör att gälla"; -App::$strings["Service Class"] = "Tjänsteklass"; -App::$strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valda användare kommer att tas bort!\\n\\nAllt dessa användare har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?"; -App::$strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Användaren {0} kommer att tas bort!\\n\\nAllt den här användaren har postat på den här servern kommer att raderas permanent!\\n\\nÄr du säker?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanal censurerad/avcensurerad", - 1 => "%s kanaler censurerade/avcensurerade", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanal borttagen", - 1 => "%s kanaler borttagna", -); -App::$strings["Channel not found"] = "Kanal hittas inte"; -App::$strings["Channel '%s' deleted"] = "Kanalen '%s' togs bort"; -App::$strings["Channel '%s' uncensored"] = "Kanal '%s' avcensurerad"; -App::$strings["Channel '%s' censored"] = "Kanal '%s' censurerad"; -App::$strings["Censor"] = "Censurera"; -App::$strings["Uncensor"] = "Avcensurera"; -App::$strings["UID"] = "UID"; -App::$strings["Address"] = "Adress"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valda kanaler kommer att tas bort!\\n\\nAllt som har postats i de kanalerna på den här servern kommer att raderas permanent!\\n\\nÄr du säker?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanalen {0} kommer att tas bort!\\n\\nAllt som har postats i den här kanalen på den här servern kommer att raderas permanent!\\n\\nÄr du säker?"; -App::$strings["Plugin %s disabled."] = "Tillägg %s inaktiverat."; -App::$strings["Plugin %s enabled."] = "Tillägg %s aktiverat."; -App::$strings["Disable"] = "Inaktivera"; -App::$strings["Enable"] = "Aktivera"; -App::$strings["Toggle"] = "Växla"; -App::$strings["Author: "] = "Författare:"; -App::$strings["Maintainer: "] = "Underhållare:"; -App::$strings["No themes found."] = "Inga teman funna."; -App::$strings["Screenshot"] = "Skärmdump"; -App::$strings["[Experimental]"] = "[Experimentellt]"; -App::$strings["[Unsupported]"] = "[Utan support]"; -App::$strings["Log settings updated."] = "Logginställningar uppdaterade."; -App::$strings["Clear"] = "Rensa"; -App::$strings["Debugging"] = "Avlusning"; -App::$strings["Log file"] = "Loggfil"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Måste vara skrivbar för webbservern. Anges relativt Reds toppkatalog."; -App::$strings["Log level"] = "Loggnivå"; -App::$strings["New Profile Field"] = "Nytt profilfält"; -App::$strings["Field nickname"] = "Smeknamn på fält"; -App::$strings["System name of field"] = "Systemnamn på fält"; -App::$strings["Input type"] = "Datatyp"; -App::$strings["Field Name"] = "Fältnamn"; -App::$strings["Label on profile pages"] = "Beteckning på profilsidor"; -App::$strings["Help text"] = "Hjälptext"; -App::$strings["Additional info (optional)"] = "Ytterligare info (frivilligt)"; -App::$strings["Field definition not found"] = "Fältdefinition hittades inte"; -App::$strings["Edit Profile Field"] = "Redigera profilfält"; -App::$strings["Menu updated."] = "Meny uppdaterad."; -App::$strings["Unable to update menu."] = "Kunde inte uppdatera meny."; -App::$strings["Menu created."] = "Meny skapad."; -App::$strings["Unable to create menu."] = "Kunde inte skapa meny."; -App::$strings["Manage Menus"] = "Hantera menyer"; -App::$strings["Drop"] = "Ta bort"; -App::$strings["Bookmarks allowed"] = "Bokmärken tillåtna"; -App::$strings["Create a new menu"] = "Skapa en ny meny"; -App::$strings["Delete this menu"] = "Ta bort den här menyn"; -App::$strings["Edit menu contents"] = "Redigera menyinnehåll"; -App::$strings["Edit this menu"] = "Redigera den här menyn"; -App::$strings["New Menu"] = "Ny meny"; -App::$strings["Menu name"] = "Menynamn"; -App::$strings["Must be unique, only seen by you"] = "Måste vara unikt, ses endast av dig"; -App::$strings["Menu title"] = "Menytitel"; -App::$strings["Menu title as seen by others"] = "Menytitel som andra ser den"; -App::$strings["Allow bookmarks"] = "Tillåt bokmärken"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menyn kan användas för att spara bokmärken"; -App::$strings["Menu deleted."] = "Meny borttagen."; -App::$strings["Menu could not be deleted."] = "Menyn kunde inte tas bort."; -App::$strings["Edit Menu"] = "Redigera meny"; -App::$strings["Add or remove entries to this menu"] = "Lägg till eller ta bort menyval"; -App::$strings["Profile Match"] = "Profilträff"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Inga nyckelord att matcha mot. Lägg till några nyckelord i din standardprofil."; -App::$strings["is interested in:"] = "är intresserad av:"; -App::$strings["No matches"] = "Inga träffar"; -App::$strings["Invalid request identifier."] = "Ogiltigt ID på förfrågan."; -App::$strings["Discard"] = "Förkasta"; -App::$strings["No more system notifications."] = "Inga fler systemnotifieringar."; -App::$strings["System Notifications"] = "Systemnotifieringar"; -App::$strings["[Embedded content - reload page to view]"] = "[Inbäddat innehåll - ladda om sidan för att visa]"; -App::$strings["Continue"] = "Fortsätt"; -App::$strings["Premium Channel Setup"] = "Inställning av premiumkanal"; -App::$strings["Enable premium channel connection restrictions"] = "Aktivera kontaktrestriktioner för premiumkanal"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Ange dina restriktioner och villkor, som Paypal-kvitto, användarriktlinjer, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Den här kanalen kan kräva ytterligare steg eller godkännande av följande villkor innan anslutning:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentiella kontakter kommer sedan att se följande text innan de går vidare:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Genom att fortsätta intygar jag att jag har följt alla instruktioner som ges på den här sidan."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Inga specifika instruktioner har givits av kanalägaren.)"; -App::$strings["Restricted or Premium Channel"] = "Begränsad kanal eller premiumkanal"; -App::$strings["App installed."] = "App installerad."; -App::$strings["Malformed app."] = "Felaktig app."; -App::$strings["Embed code"] = "Bädda in kod"; -App::$strings["Edit App"] = "Redigera app"; -App::$strings["Create App"] = "Skapa app"; -App::$strings["Name of app"] = "Namn på app"; -App::$strings["Location (URL) of app"] = "Adress (URL) för app"; -App::$strings["Photo icon URL"] = "Fotoikon URL"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixlar - valfri"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Pris på app"; -App::$strings["Location (URL) to purchase app"] = "Adress (URL) för att köpa app"; -App::$strings["Set your current mood and tell your friends"] = "Ange din nuvarande sinnesstämning och visa för dina vänner"; -App::$strings["Unable to lookup recipient."] = "Kunde inte hitta mottagare."; -App::$strings["Unable to communicate with requested channel."] = "Kunde inte kommunicera med den begärda kanalen."; -App::$strings["Cannot verify requested channel."] = "Kan inte bekräfta den begärda kanalen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Den valda kanalen har restriktioner för privata meddelanden. Misslyckades att skicka."; -App::$strings["Message deleted."] = "Meddelande borttaget."; -App::$strings["Message recalled."] = "Meddelande återkallat."; -App::$strings["Send Private Message"] = "Skicka privat meddelande."; -App::$strings["To:"] = "Till:"; -App::$strings["Subject:"] = "Ämne:"; -App::$strings["Send"] = "Skicka"; -App::$strings["Message not found."] = "Meddelandet hittades inte."; -App::$strings["Delete message"] = "Ta bort meddelande"; -App::$strings["Recall message"] = "Återkalla meddelande"; -App::$strings["Message has been recalled."] = "Meddelandet har återkallats."; -App::$strings["Private Conversation"] = "Privat konversation"; -App::$strings["Delete conversation"] = "Ta bort konversation"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Ingen säker kommunikationskanal tillgänglig. Du kan möjligtvis svara från avsändarens profilsida."; -App::$strings["Send Reply"] = "Skicka svar"; -App::$strings["No connections."] = "Inga kontakter."; -App::$strings["Visit %s's profile [%s]"] = "Besök %ss profil [%s]"; -App::$strings["Hub not found."] = "Hubb hittades inte."; -App::$strings["Total votes"] = "Totalt antal röster"; -App::$strings["Average Rating"] = "Genomsnittsbetyg"; -App::$strings["OpenID protocol error. No ID returned."] = "Protokollfel för OpenID. Inget ID returnerades."; -App::$strings["Wall Photos"] = "Väggfoton"; -App::$strings["Conversation removed."] = "Konversation borttagen."; -App::$strings["No messages."] = "Inga meddelanden."; -App::$strings["D, d M Y - g:i A"] = "D, j M Y - H:i"; -App::$strings["Add a Channel"] = "Lägg till en kanal"; -App::$strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "En kanal är din egen samling av relaterade webbsidor. En kanal kan användas för att innehålla sociala nätverksprofiler, bloggar, konversationsgrupper och forum, fansidor, och mycket mer. Du kan skapa så många kanaler som din tjänsteleverantör tillåter."; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exempel: \"Bob Jameson\", \"Lisa och hennes hästar\", \"Fotboll\", \"Flyggruppen\" "; -App::$strings["Choose a short nickname"] = "Välj ett kort smeknamn"; -App::$strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Ditt smeknamn används för att skapa en kanaladress som är lätt att komma ihåg (som en e-postadress) som du kan dela med andra."; -App::$strings["Or import an existing channel from another location"] = "Eller importera en befintlig kanal från en annan plats"; -App::$strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Välj en kanaltyp (som till exempel socialt nätverkande eller gemenskapsforum) och integritetskrav, så kan vi välja de bästa behörigheterna åt dig"; -App::$strings["Channel Type"] = "Kanaltyp"; -App::$strings["Read more about roles"] = "Läs mer om roller"; -App::$strings["Xchan Lookup"] = "Xchan-sökning"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Sök efter xchan som börjar med (eller webbie): "; -App::$strings["invalid target signature"] = "ogiltig målsignatur"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Fjärrkanal [%s] (ännu inte känd på den här webbplatsen)"; -App::$strings["Unable to find your hub."] = "Kunde inte hitta din hubb."; -App::$strings["Post successful."] = "Sändning lyckades."; -App::$strings["Age: "] = "Ålder:"; -App::$strings["%d rating"] = array( - 0 => "%d betyg", - 1 => "%d betyg", -); -App::$strings["Gender: "] = "Kön:"; -App::$strings["Status: "] = "Status: "; -App::$strings["Homepage: "] = "Hemsida: "; -App::$strings["Hometown: "] = "Hemort: "; -App::$strings["About: "] = "Om: "; -App::$strings["Public Forum:"] = "Offentligt forum:"; -App::$strings["Keywords: "] = "Nyckelord: "; -App::$strings["Finding:"] = "Sökning efter:"; -App::$strings["next page"] = "nästa sida"; -App::$strings["previous page"] = "föregående sida"; -App::$strings["No entries (some entries may be hidden)."] = "Inga resultat (vissa resultat kan vara dolda)."; -App::$strings["No ratings"] = "Inga betyg"; -App::$strings["Ratings"] = "Betyg"; -App::$strings["Rating: "] = "Betyg: "; -App::$strings["Description: "] = "Beskrivning: "; -App::$strings["Profile not found."] = "Profil hittades inte."; -App::$strings["Profile deleted."] = "Profil borttagen."; -App::$strings["Profile-"] = "Profil-"; -App::$strings["New profile created."] = "Ny profil skapad."; -App::$strings["Profile unavailable to clone."] = "Profil inte tillgänglig för kloning."; -App::$strings["Profile unavailable to export."] = "Profil inte tillgänglig för export."; -App::$strings["Profile Name is required."] = "Profilnamn krävs."; -App::$strings["Marital Status"] = "Civilstånd"; -App::$strings["Romantic Partner"] = "Romantisk partner"; -App::$strings["Likes"] = "Gillar"; -App::$strings["Dislikes"] = "Ogillar"; -App::$strings["Work/Employment"] = "Arbete/sysselsättning"; -App::$strings["Religion"] = "Religion"; -App::$strings["Political Views"] = "Politisk åskådning"; -App::$strings["Gender"] = "Kön"; -App::$strings["Sexual Preference"] = "Sexuell preferens"; -App::$strings["Homepage"] = "Hemsida"; -App::$strings["Interests"] = "Intressen"; -App::$strings["Profile updated."] = "Profil uppdaterad."; -App::$strings["Hide your contact/friend list from viewers of this profile?"] = "Dölj din kontakt-/vänlista för de som ser den här profilen"; -App::$strings["Edit Profile Details"] = "Redigera profildetaljer"; -App::$strings["View this profile"] = "Visa den här profilen"; -App::$strings["Change Profile Photo"] = "Byt profilfoto"; -App::$strings["Create a new profile using these settings"] = "Skapa en ny profil utifrån de här inställningarna"; -App::$strings["Clone this profile"] = "Klona den här profilen"; -App::$strings["Delete this profile"] = "Ta bort den här profilen"; -App::$strings["Import profile from file"] = "Importera profil från fil"; -App::$strings["Export profile to file"] = "Exportera profil som fil"; -App::$strings["Profile Name:"] = "Profilnamn:"; -App::$strings["Your Full Name:"] = "Ditt fulllständiga namn:"; -App::$strings["Title/Description:"] = "Titel/beskrivning:"; -App::$strings["Your Gender:"] = "Ditt kön:"; -App::$strings["Birthday :"] = "Födelsedag:"; -App::$strings["Street Address:"] = "Gatuadress:"; -App::$strings["Locality/City:"] = "Ort:"; -App::$strings["Postal/Zip Code:"] = "Postnummer:"; -App::$strings["Country:"] = "Land:"; -App::$strings["Region/State:"] = "Region:"; -App::$strings[" Marital Status:"] = " Civilstånd:"; -App::$strings["Who: (if applicable)"] = "Vem: (om tillämpligt)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exempel: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since [date]:"] = "Sedan [datum]"; -App::$strings["Homepage URL:"] = "Hemsideadress:"; -App::$strings["Religious Views:"] = "Religion/livsåskådning:"; -App::$strings["Keywords:"] = "Nyckelord:"; -App::$strings["Example: fishing photography software"] = "Exempel: fiske fotografering mjukvara"; -App::$strings["Used in directory listings"] = "Används i kataloglistningar"; -App::$strings["Tell us about yourself..."] = "Beskriv dig själv..."; -App::$strings["Hobbies/Interests"] = "Fritidssysselsättning/intressen"; -App::$strings["Contact information and Social Networks"] = "Kontaktinformation och sociala nätverk"; -App::$strings["My other channels"] = "Mina andra kanaler"; -App::$strings["Musical interests"] = "Musikintressen"; -App::$strings["Books, literature"] = "Böcker, litteratur"; -App::$strings["Television"] = "Tv"; -App::$strings["Film/dance/culture/entertainment"] = "Film/dans/kultur/underhållning"; -App::$strings["Love/romance"] = "Kärlek/romantik"; -App::$strings["Work/employment"] = "Arbete/sysselsättning"; -App::$strings["School/education"] = "Skola/utbildning"; -App::$strings["This is your default profile."] = "Det här är din standardprofil."; -App::$strings["Edit/Manage Profiles"] = "Redigera/hantera profiler"; -App::$strings["Add profile things"] = "Lägg till profilsaker"; -App::$strings["Include desirable objects in your profile"] = "Inkludera fina prylar i din profil"; -App::$strings["Invalid profile identifier."] = "Ogiltigt profil-ID."; -App::$strings["Profile Visibility Editor"] = "Redigera profilsynlighet"; -App::$strings["Click on a contact to add or remove."] = "Klicka på en kontakt för att lägga till eller ta bort."; -App::$strings["Visible To"] = "Kan ses av"; -App::$strings["Poll"] = "Opinionsundersökning"; -App::$strings["View Results"] = "Visa resultat"; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Borttagning av konto tillåts inte inom 48 timmar efter att kontolösenordet har ändrats."; -App::$strings["Remove This Account"] = "Ta bort kontot"; -App::$strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Det här kommer att ta bort kontot fullständigt från nätverket, inklusive alla dess kanaler. När detta har gjorts går det inte att ångra."; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Ta bort kontot, alla dess kanaler och alla kanalkopior från nätverket"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Som standard tas bara instanser av kanaler som finns på den här servern bort från nätverket"; -App::$strings["No service class restrictions found."] = "Inga tjänsteklassbegränsningar hittades."; -App::$strings["Files: shared with me"] = "Filer: delade med mig"; -App::$strings["Remove all files"] = "Ta bort alla filer"; -App::$strings["Remove this file"] = "Ta bort den här filen"; -App::$strings["Schema Default"] = "Schemats standard"; -App::$strings["Sans-Serif"] = "Sans-serif"; -App::$strings["Monospace"] = "Monospace"; -App::$strings["Theme settings"] = "Temainställningar"; -App::$strings["Set scheme"] = "Välj variant"; -App::$strings["Set font-size for posts and comments"] = "Välj textstorlek för inlägg och kommentarer"; -App::$strings["Set font face"] = "Välj teckensnitt"; -App::$strings["Set iconset"] = "Välj ikontema"; -App::$strings["Set big shadow size, default 15px 15px 15px"] = "Välj stor skuggstorlek, standard 15px 15px 15px "; -App::$strings["Set small shadow size, default 5px 5px 5px"] = "Välj liten skuggstorlek, standard 5px 5px 5px"; -App::$strings["Set shadow color, default #000"] = "Välj skuggfärg, standard #000"; -App::$strings["Set radius size, default 5px"] = "Välj radie, standard 5px"; -App::$strings["Set line-height for posts and comments"] = "Välj radhöjd för inlägg och kommentarer"; -App::$strings["Set background image"] = "Välj bakgrundsbild"; -App::$strings["Set background attachment"] = "Välj fixerad bakgrund"; -App::$strings["Set background color"] = "Välj bakgrundsfärg"; -App::$strings["Set section background image"] = "Välj bakgrundsbild för avsnitt"; -App::$strings["Set section background color"] = "Välj bakgrundsfärg för avsnitt"; -App::$strings["Set color of items - use hex"] = "Välj färg på inlägg - använd hex"; -App::$strings["Set color of links - use hex"] = "Välj färg på länkar - använd hex"; -App::$strings["Set max-width for items. Default 400px"] = "Välj största bredd för inlägg. Standard 400px"; -App::$strings["Set min-width for items. Default 240px"] = "Välj minsta bredd för inlägg. Standard 240px"; -App::$strings["Set the generic content wrapper width. Default 48%"] = "Välj bredd på fältet för allmänt innehåll. Standard 48%"; -App::$strings["Set color of fonts - use hex"] = "Välj textfärg - använd hex"; -App::$strings["Set background-size element"] = "Välj bakgrundsskala"; -App::$strings["Item opacity"] = "Inläggsopacitet"; -App::$strings["Display post previews only"] = "Visa endast förhandsgranskning av inlägg"; -App::$strings["Display side bar on channel page"] = "Visa sidolist på kanalsidan"; -App::$strings["Colour of the navigation bar"] = "Färg på navigeringslisten"; -App::$strings["Item float"] = "Flytning för inlägg"; -App::$strings["Left offset of the section element"] = "Vänster offset för avsnittselementet"; -App::$strings["Right offset of the section element"] = "Höger offset för avsnittselementet"; -App::$strings["Section width"] = "Avsnittsbredd"; -App::$strings["Left offset of the aside"] = "Vänster offset för sidoelement"; -App::$strings["Right offset of the aside element"] = "Höger offset för sidoelement"; -App::$strings["Light (Hubzilla default)"] = "Light (standard för Hubzilla)"; -App::$strings["Narrow navbar"] = "Smal navigeringslist"; -App::$strings["Navigation bar background color"] = "Navigeringslistens bakgrundsfärg"; -App::$strings["Navigation bar gradient top color"] = "Övre gradientfärg i navigeringslisten"; -App::$strings["Navigation bar gradient bottom color"] = "Undre gradientfärg i navigeringslisten"; -App::$strings["Navigation active button gradient top color"] = "Övre gradientfärg på aktiv knapp i navigeringslisten"; -App::$strings["Navigation active button gradient bottom color"] = "Undre gradientfärg på aktiv knapp i navigeringslisten"; -App::$strings["Navigation bar border color "] = "Färg på navigeringslistens kant"; -App::$strings["Navigation bar icon color "] = "Färg på ikoner i navigeringslisten"; -App::$strings["Navigation bar active icon color "] = "Färg på aktiv ikon i navigeringslisten"; -App::$strings["link color"] = "Länkfärg"; -App::$strings["Set font-color for banner"] = "Välj textfärg för sidhuvudet"; -App::$strings["Set the background color"] = "Välj bakgrundsfärg"; -App::$strings["Set the background image"] = "Välj bakgrundsbild"; -App::$strings["Set the background color of items"] = "Välj bakgrundsfärg för inlägg"; -App::$strings["Set the background color of comments"] = "Välj bakgrundsfärg för kommentarer"; -App::$strings["Set the border color of comments"] = "Välj kantfärg för kommentarer"; -App::$strings["Set the indent for comments"] = "Välj indrag för kommentarer"; -App::$strings["Set the basic color for item icons"] = "Välj basfärg för inläggsikoner"; -App::$strings["Set the hover color for item icons"] = "Välj färg på inläggsikon under muspekare"; -App::$strings["Set font-size for the entire application"] = "Välj textstorlek för hela applikationen"; -App::$strings["Set font-color for posts and comments"] = "Välj textfärg för inlägg och kommentarer"; -App::$strings["Set radius of corners"] = "Välj hörnradie"; -App::$strings["Set shadow depth of photos"] = "Välj skuggdjup för foton"; -App::$strings["Set maximum width of conversation regions"] = "Välj maxbredd på konversationsfält"; -App::$strings["Center conversation regions"] = "Centrera konversationsfält"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Välj lägsta opacitet för navigeringslisten - för att dölja den"; -App::$strings["Set size of conversation author photo"] = "Välj storlek på foto för trådskapare"; -App::$strings["Set size of followup author photos"] = "Välj storlek på svarande personers foton"; -App::$strings["Sloppy photo albums"] = "Oordnade fotoalbum"; -App::$strings["Are you a clean desk or a messy desk person?"] = "Föredrar du ett tomt eller stökigt skrivbord?"; -App::$strings["Update %s failed. See error logs."] = "Uppdatering %s misslyckades. Se felloggar."; -App::$strings["Update Error at %s"] = "Uppdateringsfel på %s"; -App::$strings["Create an account to access services and applications within the Hubzilla"] = "Skapa ett konto för att komma åt tjänster och applikationer inom Hubzilla"; -App::$strings["Password"] = "Lösenord"; -App::$strings["Remember me"] = "Kom ihåg mig"; -App::$strings["Forgot your password?"] = "Glömt lösenordet?"; -App::$strings["permission denied"] = "behörighet saknas"; -App::$strings["Got Zot?"] = "Got Zot?"; -App::$strings["toggle mobile"] = "växla mobil"; diff --git a/view/tpl/build_query.tpl b/view/tpl/build_query.tpl index 2c55a8140..01852500b 100755 --- a/view/tpl/build_query.tpl +++ b/view/tpl/build_query.tpl @@ -17,6 +17,7 @@ var bParam_wall = {{$wall}}; var bParam_list = {{$list}}; var bParam_fh = {{$fh}}; + var bParam_dm = {{$dm}}; var bParam_static = {{$static}}; var bParam_search = "{{$search}}"; @@ -49,6 +50,7 @@ if(bParam_wall != 0) bCmd = bCmd + "&wall=" + bParam_wall; if(bParam_list != 0) bCmd = bCmd + "&list=" + bParam_list; if(bParam_fh != 0) bCmd = bCmd + "&fh=" + bParam_fh; + if(bParam_dm != 0) bCmd = bCmd + "&dm=" + bParam_dm; if(bParam_search != "") bCmd = bCmd + "&search=" + bParam_search; if(bParam_xchan != "") bCmd = bCmd + "&xchan=" + bParam_xchan; if(bParam_order != "") bCmd = bCmd + "&order=" + bParam_order; diff --git a/view/tpl/siteinfo.tpl b/view/tpl/siteinfo.tpl index 4d9c53656..19ce35e35 100755 --- a/view/tpl/siteinfo.tpl +++ b/view/tpl/siteinfo.tpl @@ -20,7 +20,7 @@

{{$prj_header}}

-
{{$prj_name}} ({{$z_server_role}})
+
{{$prj_name}}
{{if $prj_version}}
{{$prj_version}}
@@ -29,11 +29,11 @@

{{$prj_linktxt}}

-
{{$prj_link}}
+

{{$prj_srctxt}}

-
{{$prj_src}}
+

{{$prj_transport}} ({{$transport_link}})